@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --primary: #6ee7b7;
  --secondary: #fbcd53;
  --gray: #ebf3fe;
  --gray-secondary: whitesmoke;
  --black: #383838;
  --white: #ffffff;
  --header: "Space Grotesk", sans-serif;
  --paragraph: "Open Sans", sans-serif;
}

* {
  font-family: var(--paragraph);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*::before, 
*::after {
  box-sizing: border-box;
}

/* Regular */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Light Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Semibold */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Semibold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Bold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* ExtraBold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/open-sans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

html, 
body {
  overflow-x: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

body {
  background-color: var(--dark);
}

a:hover, 
a:hover * {
  cursor: pointer !important;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
  color: var(--black);
}

h1 {
  font-family: var(--header);
}

h2 {
  color: var(--black);
  font-size: 26px;
  font-weight: normal;
}

h3 {
  font-size: 18px;
  line-height: 1;
}

p {
  padding-bottom: 20px;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
}

.container-larger {
  max-width: 1250px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.row > * {
  flex: 1;
}

.col {
  flex: 1;
}

.v-center {
  align-items: center;
}

.center {
  text-align: center;
}

.g-50 {
  gap: 50px !important;
}

.g-25 {
  gap: 25px !important;
}

.btn {
  font-family: var(--header);
  color: var(--black);
  background: var(--primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 25px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

img {
  max-width: 100%;
}


nav {
  position: fixed;
  width: 100%;
  z-index: 10;
  height: 100px;
  justify-content: center;
  background: var(--white);
  display: flex;
}

nav .row {
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 50px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links ul a {
  font-family: var(--header);
  color: var(--black);
  text-decoration: none;
  font-size: 21px;
  font-weight: 500;
}

.logo {
  flex: .5;
}

.logo img {
  width: 250px;
}

main {
  padding-top: 100px;
}

h1 {
  font-size: 34px;
  line-height: 1;
}

.shape {
  background-color: var(--gray);
  width: 350px;
  height: 765px;
  position: absolute;
  top: 0;
  right: -50px;
  border-radius: 200px 0 0;
}

section .container {
  position: relative;
}

.s-01 .right {
  text-align: right;
}

.s-01 .device {
  width: 90%;
  position: relative;
  z-index: 4;
  padding-top: 25px;
}

.reviews-top {
  display: flex;
  align-items: center;
}

.reviews-top p {
  padding: 0;
}

.star {
  color: gold;
  font-size: 21px;
}

.reviews-top img {
  height: 80px;
  padding: 0 10px;
}

header {
  padding: 25px 0;
}

.s-02 {
  margin-top: -100px;
}

.s-02 .box {
  background-color: var(--black);
  border-radius: 50px;
  height: 500px;
  background-image: url('../assets/images/hero-1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
  align-items: end;
  display: flex;
}

.s-02 .content {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.s-02 header {
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.s-02 header h2 {
  color: var(--white);
}

.s-02 .content a {
  font-family: var(--header);
  color: var(--primary);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
}

.s-02 .gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.s-02 .box {
  overflow: hidden;
  position: relative;
}

.s-02 .element {
  position: absolute;
  bottom: -100px;
  height: 250px;
  right: -100px;
}

.s-03 img {
  border-radius: 50px;
}

section.s-03,
section.s-04,
section.s-05,
section.s-06,
section.s-07,
section.s-08,
section.s-09,
section.s-10,
section.s-11,
section.s-12,
section.s-13,
section.s-14, 
section.s-15 {
  padding: 75px 0;
}

.header-02 h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.s-03 .block-content {
  display: flex;
  gap: 10px;
}

.s-03 .block-content img {
  width: 35px;
  max-width: 35px;
}

.s-03 .block-content h3 {
  font-family: var(--header);
  margin-bottom: 5px;
}

.s-03 .blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

.s-03 p {
  padding-bottom: 0;
}

.s-03 header {
  padding: 25px 0 35px;
}

.s-03 .left img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}

.s-04 {
  background: var(--gray-secondary);
}

.header-02 h2, 
.header-02 span {
  font-family: var(--header);
  margin: 0;
  padding: 0;
}

.header-02 h2 {
  font-size: 34px;
  line-height: 1.1;
}

.header-02 span {
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.s-04 .steps {
  display: flex;
  text-align: center;
}

.s-04 .steps > div {
  flex: 1;
}

.s-04 .left {
  flex: .5;
}

.s-04 .step > div {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--header);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 275px;
  width: 100%;
  text-align: left;
  background: var(--gray-secondary);
  justify-content: center;
}

.s-04 .step p {
  padding: 0;
}

.s-04 .step p, 
.s-04 .step span {
  font-family: var(--header);
}

.s-04 .step > div > span {
  height: 75px;
  width: 75px;
  background: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 0;
  font-size: 36px;
}

.step-2 {
  text-align: right;
  margin-left: -80px;
  margin-right: -80px;
}

.step-2 div {
  text-align: left;
}

.step-3 {
  align-items: flex-end;
  display: flex;
}

.s-04 .step img {
  max-width: 75%;
}

.s-04 .row {
  align-items: center;
}

section.s-05 {
  padding: 0;
}

.s-05 .row {
  gap: 0;
}

.s-05 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-06 {
  background-color: var(--primary);
}

.s-06 header span {
  color: var(--black);
}

.s-06 h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.s-06 p {
  font-size: 21px;
  padding: 0;
  line-height: 1.5;
}

.s-06 .row {
  align-items: center;
}

.s-06 img {
  border-radius: 50px;
}

.s-06 header {
  padding-bottom: 75px;
}

.s-06 .content {
  padding: 0 25px;
}

.s-07 {
  background-color: var(--black);
}

.s-07 h3 {
  color: var(--primary);
  font-family: var(--header);
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 500;
}

.s-07 p {
  color: var(--white);
  padding: 0;
  font-size: 18px;
}

.s-08 img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

.s-08 .row > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-08 .row > div p {
  line-height: 1.5;
  padding: 0;
  font-size: 18px;
}

.s-08 header {
  margin-bottom: 25px;
}

section.s-09 {
  padding: 0;
}

.s-09 .bg {
  background-image: url('../assets/images/IMAGE-Div6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
}

.s-09 .box {
  background: var(--black);
  border-radius: 50px;
  overflow: hidden;
}

.s-09 .box h2, 
.s-09 .box p {
  color: var(--white);
}

.s-09 .box h2 {
  font-size: 34px;
  line-height: 1.1;
  font-family: var(--header);
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.s-09 .box p {
  font-size: 18px;
  font-family: var(--header);
  padding: 0;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--white);
  display: inline-block;
  width: auto;
}

.s-09 .content {
  padding: 50px 75px 75px;
}

.s-09 .content p {
  display: inline-flex;
}

.s-09 .content p span:first-child {
  width: 350px;
  max-width: 100%;
}

.s-09 .content p:last-child {
  margin: 0;
}

.s-09 header {
  padding-bottom: 50px;
}

.s-09 .row {
  gap: 0;
}

.s-10 header {
  text-align: center;
}

span.span-alt {
  display: inline-block;
  background: var(--primary);
  padding: 10px 25px;
  border-radius: 25px;
  color: var(--black);
  font-size: 16px;
  margin-top: 15px;
}

section.s-10 {
  padding-bottom: 0;
}

section.s-11 {
  padding-top: 50px;
}

section.s-11 .content {
  padding: 25px 50px;
}

.s-11 h2 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.s-11 h2 span {
  font-family: var(--header);
  margin: 0;
  padding: 0;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
}

.s-11 p {
  line-height: 1.5;
  font-size: 14px;
}

.s-11 ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
}

.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product > div:last-child {
  text-align: center;
}

.s-12 img {
  width: 100%;
}

.s-12 .row {
  align-items: center;
}

.s-12 .row > div:first-child {
  flex: .5;
}

.s-12 .content h2 {
  font-family: var(--header);
  margin: 0;
  padding: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 15px;
}

.s-12 .content p {
  font-size: 18px;
  margin-bottom: 25px;
  padding-bottom: 0;
}

.s-12 .box {
  background: var(--gray);
  border-radius: 0 100px 0 0;
}

.s-12 .content .btn {
  background: var(--black);
  color: var(--white);
}

section.s-12 {
  padding: 0;
  padding-top: 25px;
}

.s-12 .content {
  padding-right: 50px;
}

.s-13 header {
  text-align: center;
  padding-bottom: 50px;
}

.review {
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid gainsboro;
  margin-bottom: 25px;
}

.review img {
  width: 100px;
  height: 90px;
  display: block;
  border-radius: 300%;
  object-fit: cover;
  box-shadow: 2px 5px 12px 0px #0000003d;
}

.review > div:first-child {
  flex: .1;
}

.review h3, 
.review h4, 
.review p {
  font-family: var(--header);
}

.review h3 {
  font-size: 21px;
  margin-bottom: 5px;
}

.review h4 {
  font-weight: 400;
  opacity: .75;
}

.review p {
  margin-top: 5px;
}

.s-13 .row {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 25px;
}

.s-14 {
  background-color: var(--gray-secondary);
}

.s-14 header {
  text-align: center;
}

.s-14 img {
  width: 100%;
  height: 100%;
}

.s-14 header {
  align-items: center;
}

.s-14 .row {
  max-width: 800px;
  width: 100%;
  margin: auto;
  align-items: center;
}

.s-14 img {
  padding: 10px;
}

.s-14 header {
  padding-top: 0;
}

.s-13 .row:last-child {
  border-bottom: none;
}

.s-03 header h2 {
  margin-bottom: 10px;
}

footer {
  background-color: var(--black);
  color: var(--white);
  padding: 50px 0;
}

footer ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-bottom: 15px;
}

footer a {
  color: var(--white);
  font-family: var(--header);
  text-decoration: none;
  font-size: 18px;
}

footer p {
  color: var(--white);
  opacity: .75;
}

footer .logo {
  filter: invert(1) brightness(100);
  width: 250px;
}

footer .row > div:last-child {
  flex: .5;
  text-align: right;
}

.mobile-menu-btn,
.mobile-menu {
  display: none;
}

.mobile-only {
  display: none;
}

.mobile-menu.active {
  padding: 100px 20px 35px !important;
  display: block;
  position: fixed;
  background: white;
  z-index: 5;
  width: 100%;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu ul a {
  text-decoration: none;
  font-family: var(--header);
  font-size: 24px;
  color: black;
}
.mobile-menu-btn,
.mobile-menu {
  display: none;
}

.mobile-only {
  display: none;
}

.mobile-menu.active {
  padding: 100px 20px 35px !important;
  display: block;
  position: fixed;
  background: white;
  z-index: 5;
  width: 100%;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu ul a {
  text-decoration: none;
  font-family: var(--header);
  font-size: 24px;
  color: black;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  background: var(--white);
  width: 95%;
  max-width: 600px;
  height: 650px;
  padding: 20px;
  overflow-y: scroll;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 16px;
  cursor: pointer;
  z-index: 10;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 18px;
  font-family: var(--header);
  color: var(--black);
  background: var(--primary);
  align-items: center;
  justify-content: center;
  display: flex;
}

.modal-content {
  scrollbar-color: var(--primary) transparent;
}

.modal-content::-webkit-scrollbar {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.modal-content h2 {
  font-family: var(--header);
  font-weight: 800;
  text-align: center;
  font-size: 36px;
}

.s-15 {
  background-image: url('../assets/images/techforhumanity-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.s-15 p {
  color: var(--white);
  padding: 0;
  line-height: 1.5;
}

.s-15 .row {
  display: flex;
  align-items: center;
}

.s-15 img {
  flex: .2;
  width: 30px;
}