:root {
  --bs-primary: #F2F556;
  --bs-primary-hover: #f5f77e;
  --bs-secondary: #0A0B1C;
  --bs-secondary-hover: #16172e;
  --bs-font-sans-serif: 'Satoshi', sans-serif;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'),
    url('../fonts/Satoshi-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2'),
    url('../fonts/Satoshi-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
    url('../fonts/Satoshi-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2'),
    url('../fonts/Satoshi-BlackItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
    url('../fonts/Satoshi-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
    url('../fonts/Satoshi-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
    url('../fonts/Satoshi-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
    url('../fonts/Satoshi-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2'),
    url('../fonts/Satoshi-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2'),
    url('../fonts/Satoshi-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: var(--bs-white);
  text-decoration: none;
  transition: 0.1s ease-in-out all;
}

a:hover {
  text-decoration: none;
  color: var(--bs-primary);
}

p {
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}

b {
  font-weight: c;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-secondary);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}

body {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  font-family: var(--bs-font-sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

/* HEADING */

.heading-01 {
  font-size: 60px;
}

.heading-02 {
  font-size: 48px;
}

.heading-03 {
  font-size: 36px;
}

.heading-04 {
  font-size: 32px;
}

.heading-05 {
  font-size: 24px;
}

/* TEXT COLOR */

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

/* BACKGROUND COLOR */

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

/* FORM */

.form-control,
.form-control:focus {
  padding: 16px 32px;
  font-size: 16px;
  height: 56px;
  border-radius: 56px;
  background-color: var(--bs-secondary);
  border-color: var(--bs-white);
  color: var(--bs-white);
  box-shadow: none !important;
}

.form-control::-webkit-input-placeholder {
  color: var(--bs-white);
}

.form-control::-moz-placeholder {
  color: var(--bs-white);
}

.form-control:-ms-input-placeholder {
  color: var(--bs-white);
}

.form-control:-moz-placeholder {
  color: var(--bs-white);
}

/* BUTTON */

.btn {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  justify-content: center;
  transition: 0.3s ease-in-out all;
  box-shadow: none !important;
  border: 0;
}

.btn-primary {
  --bs-btn-color: var(--bs-secondary);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-secondary);
  --bs-btn-hover-bg: var(--bs-primary-hover);
  --bs-btn-hover-border-color: var(--bs-primary-hover);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-secondary);
  --bs-btn-active-bg: var(--bs-primary-hover);
  --bs-btn-active-border-color: var(--bs-primary-hover);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--bs-secondary);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-secondary {
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs---bs-white);
  --bs-btn-hover-color: var(--bs---bs-white);
  --bs-btn-hover-bg: var(--bs-secondary-hover);
  --bs-btn-hover-border-color: var(--bs-secondary-hover);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-secondary-hover);
  --bs-btn-active-border-color: var(--bs-secondary-hover);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--bs-white);
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}

/* HEADER */

.header {
  position: relative;
  padding: 24px 0;
  background-color: var(--bs-secondary);
}

.navbar-toggler {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
  --bs-nav-link-font-weight: 700;
  --bs-nav-link-color: var(--bs-whitw);
  --bs-nav-link-hover-color: var(--bs-primary);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}

/* HERO SECTION */

.section-hero {
  padding: 30px 0 80px;
}

.hero-content {
  max-width: 590px;
  font-weight: 500;
}

.hero-content .heading-01 {
  font-weight: 900;
}

.hero-content-review {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
}

.hero-content-review span {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ABOUT SECTION */

.section-about {
  padding: 24px 0 36px;
}

.about-box {
  max-width: 470px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  margin-top: -64px;
}

.about-box-list {
  height: 225px;
  width: 225px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0px 40px 60px 0px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(36px);
  border: 1px solid var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--bs-secondary);
  font-size: 54px;
  font-weight: 900;
  padding: 16px;
  text-align: center;
}

.about-box-list:nth-child(1) {
  border-radius: 255px 255px 0 255px;
}

.about-box-list:nth-child(2) {
  border-radius: 255px 255px 255px 0;
}

.about-box-list:nth-child(3) {
  border-radius: 255px 0 255px 255px;
}

.about-box-list:nth-child(4) {
  border-radius: 0 255px 255px 255px;
}

.about-box-list span {
  font-size: 16px;
  font-weight: 700;
}

/* FEATURE SECTION */

.section-feature {
  padding: 72px 0 100px;
}

.section-feature .row:last-child {
  margin-top: 72px;
}

.card-feature {
  text-align: center;
  border-radius: 24px;
  border: 1px solid var(--bs-white);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0px 40px 60px 0px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  overflow: hidden;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-feature-image {
  width: 216px;
  height: 216px;
  background-color: var(--bs-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -80px auto 0;
}

.card-feature-image img {
  margin-top: 65px;
}

.card-feature-content {
  padding: 24px 50px 32px;
  flex: 1 1 auto;
}

.card-feature-content p {
  font-size: 18px;
}

/* FEATURE SECTION */

.section-work {
  padding-bottom: 50px;
}

.work-content {
  color: var(--bs-white);
}

.work-list {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work-list-item {
  display: flex;
  gap: 24px;
  align-items: center;
}

.work-list-image {
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  border-radius: 64px;
}

.work-list-text {
  font-size: 18px;
  margin-top: 2px;
  flex: 1 1 0;
}

.work-list-text p {
  margin-top: 4px;
}

.work-app {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* VIDEO SECTION */

.section-video {
  padding: 50px 0 100px;
}

.video-play {
  position: relative;
}

.video-play .img-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-item {
  display: none;
}

/* SCREENSHOT SECTION */

.section-screenshot {
  padding-bottom: 48px;
}

/* TESTIMONIAL SECTION */

.section-testimonial {
  padding: 100px 0;
}

.card-testimonial {
  position: relative;
}

.card-testimonial-image {
  position: relative;
  z-index: 1;
  margin-bottom: -50px;
}

.card-testimonial-image img {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  display: block;
  border-radius: 100%;
}

.card-testimonial-content {
  padding: 64px 18px 30px;
  border-radius: 24px;
  border: 1px solid var(--bs-white);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0px 40px 60px 0px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-testimonial-content::before,
.card-testimonial-content::after {
  content: "";
  position: absolute;
  bottom: 28px;
  height: 98px;
  width: 98px;
  background-color: var(--bs-primary);
  border-radius: 98px;
  z-index: -1;
}

.card-testimonial-content::before {
  left: -49px;
}

.card-testimonial-content::after {
  right: -49px;
}

.card-testimonial-content h6 {
  margin-top: 20px;
  margin-bottom: 4px;
}

.card-testimonial-content p {
  font-size: 16px;
}

/* SCREENSHOT SECTION */

.screenshot-slider {
  padding-top: 72px;
  padding-bottom: 48px;
  position: relative;
}

.screenshot-slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 358px;
  background-color: var(--bs-primary);
}

.screenshot-slider .swiper-slide {
  width: 300px;
  height: 680px;
}

.screenshot-slider .swiper-slide img {
  display: block;
  width: 100%;
}

/* DOWNLOAD APP SECTION */

.section-download {
  padding: 72px 0;
}

.download-content p {
  margin-bottom: 12px;
}

.download-app {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

/* FOOTER */

.footer-top {
  padding: 72px 0;
}

.footer-logo img {
  max-width: 80px;
  margin-bottom: 32px;
}

.footer-newsletter {
  margin-bottom: 32px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 32px;
}

.footer-newsletter .btn {
  width: 90px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  height: 36px;
  width: 36px;
  background-color: var(--bs-primary);
  border-radius: 36px;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out all;
}

.footer-social a:hover {
  background-color: var(--bs-primary-hover);
}

.footer-link h6,
.footer-app h6 {
  color: var(--bs-white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 32px;
}

.footer-link {
  font-size: 16px;
}

.footer-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}

.footer-link li {
  margin-top: 32px;
}

.footer-app {
  max-width: 190px;
}

.footer-app a {
  display: block;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  padding: 32px 0;
  font-size: 16px;
  text-align: center;
}