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

:root {
  --primary-color: #08c0dd;
  --secondary-color: rgb(38, 36, 49);
  --bright-secondary-color: rgb(47, 44, 61);
}

html,
body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bright-secondary-color);
  scroll-behavior: smooth;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: white;
}

ul {
  list-style: none;
}

/* Utility */

.btn-style {
  padding: 1rem 2rem;
  border: 2px solid transparent;
  background-color: var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s;
}

.btn-style:hover {
  background-color: var(--secondary-color);
  border-color: var(--primary-color);
}

.icons-styles {
  font-size: 4rem;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Containers */

.container {
  max-width: 1110px;
  /* padding: 0 2rem; */
  margin: 0 auto;
}

/* navbar */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  z-index: 1;
  transition: all 0.4s;
}
/* When Scrolling  */
.scrollChange {
  background-color: rgba(38, 36, 49, 0.8);
  backdrop-filter: blur(10px);
}

.flex-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  max-width: 100%;
  width: 112px;
}

.main-menu-items,
.mb-main-menu-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  li {
    font-weight: 600;
  }
}

.main-menu-items a {
  transition: all 0.3s;
}

.mb-main-menu-items a {
  transition: all 0.3s;
}

.main-menu-items a:hover,
.mb-main-menu-items a:hover {
  color: var(--primary-color);
}

.main-menu-items li:nth-of-type(6) i,
.main-menu-items li:nth-of-type(7) i {
  color: var(--primary-color);
  transition: all 0.3s;
  &:hover {
    color: white;
  }
}

.mb-main-menu-items li:nth-of-type(6) i,
.mb-main-menu-items li:nth-of-type(7) i {
  color: var(--primary-color);
  transition: all 0.3s;
  &:hover {
    color: white;
  }
}

.mb-main-menu-items.active {
  transform: translateX(0);
  overflow-x: hidden;
}

/* Mobile-navbar */
.mobile-menu {
  display: none;
}

.hamburger-icon i {
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.mb-main-menu-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  padding: 3rem 0;
  flex-direction: column;
  background-color: rgb(38, 36, 49);
  opacity: 0.96;
  transition: all 0.4s;
  transform: translateX(100%);
  overflow-x: hidden;

  li {
    font-weight: 400;
  }
}

/* Hero section */

.hero {
  padding: 11.5rem 2rem 8rem;
  background: url('../images/hero-background.jpg') no-repeat center/cover;
}

.flex-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-image img {
  max-width: 500px;
  border-radius: 50px;
}

.hero-info {
  max-width: 500px;
}

.hero-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  line-height: 4.2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.blue-word {
  color: var(--primary-color);
}

.hero-description {
  color: white;
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-buttons i {
  margin-right: 8px;
}

/* Testimonials Section */

.testimonials {
  padding: 4rem 2rem;
  background-color: var(--secondary-color);
}

.review-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 3.4rem;
  text-align: center;
}

.testimonial-review {
  color: white;
  font-style: italic;
  margin: 2rem 0;
}

.testimonial-image {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 48px;
}

.testimonial-name {
  color: white;
}

/* Features Section */
.freatures {
  padding: 6rem 2rem;
}

.features-topic-title {
  text-align: center;
  color: white;
  font-size: 2.3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.features-topic-description {
  color: white;
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 600px;
}

.features-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.left-row,
.right-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6rem;
}

.feature {
  display: flex;
  gap: 1.5rem;
  max-width: 400px;
  justify-content: start;
  align-items: start;
  text-align: right;
}

.right-row .feature {
  justify-content: start;
  align-items: start;
  text-align: left;
}

.feature-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-description {
  color: white;
}

.features-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 39px;
}

/* Preview */
.preview {
  background: black url('../images/video-background.jpg') no-repeat center/cover;
  padding: 6rem 2rem;
}

.preview-title {
  color: white;
  text-transform: uppercase;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.preview-description {
  color: white;
  margin-bottom: 4rem;
  text-align: center;
}

.preview-vedio-wrappar {
  text-align: center;
  position: relative;
}

.preview-vedio {
  /* padding: 1.5rem 2rem; */
  width: 70px;
  height: 70px;
  border-radius: 60px;
  border: none;
  font-size: 2rem;
  color: white;
  background-color: var(--primary-color);
  cursor: pointer;
  position: absolute;
  z-index: 100;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  i {
    margin: 5px -6px 0 0;
  }
}

.preview-vedio::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 60px;
  background-color: #08c0dd;
  animation: pulse-border 1500ms ease-out infinite;
}

/* Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.4);
  margin: 10% auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  border: 1px solid white;
  position: relative;
}

.close-modal-button {
  color: white;
  font-size: 40px;
  position: absolute;
  top: -10px;
  right: 10px;
  cursor: pointer;
}

.preview-image {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  text-align: center;
}
@keyframes pulse-border {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  to {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Details Section */

.details {
  padding: 9rem 2rem;
  background-color: var(--secondary-color);
}

.details-container {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}
.detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.details-container .detail:last-of-type {
  flex-direction: row-reverse;
}

.detail-image-topic {
  width: 100%;
}

.detail-image-topic img {
  border-radius: 50px;
}

.detail-text-info {
  max-width: 500px;
  color: white;
}

.detail-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.detail-description {
  margin-bottom: 2rem;
}

.detail-button {
  display: inline-block;
  padding: 0.5rem 2rem;
}

.details-customers-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7rem;
}

.customer-icon .icons-styles {
  margin: 0;
}

.customer-icon {
  text-align: center;
}

.details-customers-numbers {
  color: white;
  margin: 1rem 0 0;
  font-size: 3.5rem;
  font-weight: 600;
}

.details-customers-condition {
  color: white;
  font-size: 1.3rem;
}

/* Images Section */

.image img {
  width: 100%;
  max-width: 200px;
}

.screenshots {
  padding: 6rem 2rem;
}

.screenshots-topic {
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}

.screenshots-topic-title {
  color: white;
  text-transform: uppercase;
  font-size: 2.3rem;
  border-bottom: 2px solid var(--primary-color);
}

.image-1 img,
.image-3 img,
.image-4 img,
.image-5 img {
  border-radius: 20px;
  height: 100%;
}

.image-2 img {
  height: 100%;
}

.image-1 img {
  object-fit: cover;
}

.flex-screenshots {
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Download Section */
.download {
  background: black url('../images/download-background.jpg') no-repeat
    center/cover;
  padding: 13rem 2rem 10rem;
}

.flex-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.download-content {
  max-width: 500px;
}

.download-content .hero-buttons {
  width: 100%;
}

.download-text {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.download-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 40px;
}

/* Footer */

.footer {
  padding: 4rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 6rem;
}

.about-footer .about-title {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-footer .about-description {
  color: rgb(159, 156, 175);
  font-size: 0.9rem;
  width: 100%;
}

.footer-links-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-links .links a {
  font-size: 0.9rem;
  color: rgb(159, 156, 175);
  transition: all 0.3s;
}

.footer-links .links li {
  margin-bottom: -2px;
}

.socials i {
  color: rgb(159, 156, 175);
  font-size: 2.7rem;
  margin-right: 0.9rem;
  transition: all 0.3s;
}

.footer-links .links a:hover,
.socials i:hover {
  color: white;
}

/* Details Page */

.hero-details-page {
  padding: 10rem 2rem 6rem;
  background: black url('../images/hero-background.jpg') no-repeat center
    center/cover;
}

.inner-header-hero {
  color: white;
  font-size: 2rem;
}

/* Pricing-Options */
.pricing {
  padding: 4rem 2rem;
  /* background-color: var(--bright-secondary); */
}

.pricing-title {
  color: white;
  font-size: 2.3rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  max-width: 327px;
  margin: 0 auto 2.1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.pricing-box-content {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  text-align: center;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.card .pricing-card-title-option {
  color: white;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.card .pricing-card-fees-option {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card .pricing-card-features-option-list {
  text-align: left;
  color: white;
  font-weight: 300;
}

.card .pricing-card-features-option-items {
  margin-bottom: 1rem;
}

.card .pricing-card-features-option-items:first-of-type {
  line-height: 1.9;
}

.card .pricing-card-features-option-items i {
  color: var(--primary-color);
  font-weight: 600;
  margin-right: 0.5rem;
}

.card .btn-style {
  padding: 0.5rem 2.3rem;
  display: block;
  justify-self: center;
}

.pricing-note {
  padding: 3rem 2rem;
  background-color: var(--secondary-color);
}

.pricing-note-text {
  color: rgb(159, 156, 175);
  text-align: center;
}

/* Features */

.features {
  padding: 4rem 2rem;
}

.feature-topic-title {
  color: white;
  font-size: 2.3rem;
  font-weight: 700;
  max-width: 200px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 20px;
}

.feature-item-title {
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-item-description {
  color: white;
}

.feature-item-icon i {
  margin: 0;
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
  /* Hero */

  .hero {
    padding: 10rem 2rem 8rem;
  }
  .flex-hero {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.3rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: normal;
    text-align: center;
    gap: 1rem;
  }

  .hero-image img {
    max-width: 450px;
  }

  .hero-description {
    width: 100%;
    text-align: center;
  }

  /* Testimonials-section */

  .testimonials {
    padding: 4rem 2rem;
  }
  .review-testimonials .testimonial:first-of-type {
    display: none;
  }

  .review-testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }

  .testimonial {
    padding: 0;
  }

  /* Features */
  .features-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-self: center;
    justify-self: center;
  }

  .features-image {
    max-width: 300px;
    order: 1;
    align-self: center;
    justify-self: center;
  }

  .features-lists .left-row,
  .right-row {
    order: 2;
  }
  .left-row {
    gap: 2rem;
  }
  .right-row {
    gap: 2rem;
  }

  .left-row .feature-text {
    order: 2;
  }

  .left-row .feature-title,
  .right-row .feature-title {
    text-align: center;
  }

  .left-row .feature-description,
  .right-row .feature-description {
    text-align: center;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .right-row .feature {
    align-items: center;
    justify-content: center;
  }

  .features-topic-description {
    padding: 0;
  }

  /* Details-section */
  .details-container {
    gap: 0;
  }
  .detail {
    flex-direction: column;
    align-self: center;
    justify-self: center;
    gap: 4rem;
  }

  .details-container .detail:last-of-type {
    flex-direction: column-reverse;
  }

  .detail-image-topic {
    max-width: 400px;
  }

  .detail-image-topic img {
    width: 100%;
  }

  .detail-text-info {
    max-width: 400px;
    text-align: center;
  }

  .details-customers-icons {
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 0;
  }

  /* Download Section */

  .download {
    padding-top: 10rem;
  }
  .flex-download {
    flex-direction: column;
  }

  .download-content {
    order: 2;
  }

  .download-image {
    order: 1;
  }

  .download-content .hero-buttons .btn-style {
    padding: 0.7rem 0;
    text-align: center;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }

  .about-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-footer .about-description {
    font-size: 1rem;
  }

  .footer-links {
    margin: 0 auto;
    text-align: center;
  }
  .footer-links .links a {
    font-size: 1rem;
  }

  .socials {
    margin: 0 auto;
  }

  .socials i {
    font-size: 3rem;
  }

  /* Details Page */
  /* Pricing Section */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .pricing-box-content {
    max-width: 300px;
    align-self: center;
    justify-self: center;
    margin-bottom: 1rem;
  }

  .card .btn-style {
    padding: 0.5rem 2.3rem;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .main-menu-lists {
    display: none;
  }

  /* Mobile navbar */
  .mobile-menu {
    display: initial;
  }

  /* Hero */
  .hero-buttons {
    width: 100%;
  }
  /* Testimonials */

  .testimonials {
    padding: 3rem 2rem;
  }
  .review-testimonials .testimonial:nth-of-type(2) {
    display: none;
  }
  .review-testimonials {
    grid-template-columns: 1fr;
  }

  /* Modal */

  .modal {
    padding: 40px;
  }
  .modal-content {
    margin: 40% auto;
  }
  .modal-content iframe {
    width: 100%;
  }

  /* Details page */
  /* Features */
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 567px) {
  /* Hero-section */
  .hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-buttons {
    width: 70%;
  }

  .hero-image img {
    max-width: 350px;
  }
}
