@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-white-100: hsl(220, 10%, 100%);
  --color-white-200: hsl(220, 10%, 95%);
  --color-white-300: hsl(220, 10%, 85%);
  --color-white-400: hsl(220, 10%, 65%);
  --color-white-500: hsl(220, 10%, 50%);
  --color-black-100: hsl(240, 5%, 15%);
  --color-black-200: hsl(240, 5%, 12%);
  --color-black-300: hsl(240, 5%, 09%);
  --color-black-400: hsl(240, 5%, 06%);
  --color-black-500: hsl(240, 5%, 03%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  transition: all 0.3s ease;
}

main,
section {
  overflow: hidden;
}
body li{
  font-weight: 500;
}
.main {
  padding-top: 95px;
}
.section {
  padding: 50px 0;
}
.main-section {
  background-image: url(../img/Landing_page_bg.svg);
  background-size: cover;
  background-position: 100% 100%;
}
.section.main-section {
  padding: 100px 0 130px 0;
}
.main-section img {
  display: inline-block;
}
.main-section h1 {
  color: #d15fec;
  font-size: 58px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: 0;
}
.main-section p {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background: none;
  box-shadow: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img,
picture {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.header {
  position: fixed;
  /* top: 1.5rem; */
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
  background: linear-gradient(90deg, #d85fee 0%, #905ae3 100%);
}
.header.is-sticky {
  top: 0;
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  column-gap: 2rem;
}

.brand {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
}
.brand img {
  margin-right: 12px;
}
.brand:hover {
  color: white;
  text-decoration: none;
}
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-block: 6rem 2rem;
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.35s ease;
}
.menu.is-active {
  right: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* row-gap: 1.5rem; */
}
.menu-link {
  color: #fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
}
.menu-link:hover {
  text-decoration: none;
  color: #f7e8e8;
}
.menu-block {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

@media only screen and (min-width: 992px) {
  .menu {
    position: relative;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    padding: unset;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
    margin-inline: auto;
    margin-bottom: 0 !important;
  }
}

.burger {
  position: relative;
  display: block;
  width: 2rem;
  height: 1rem;
  z-index: 99;
  visibility: visible;
}
@media only screen and (min-width: 992px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 5px;
  line-height: 1.25;
  background-color: #fff;
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0.25rem;
}
.burger-line:nth-child(2) {
  top: 0.75rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.wrapper-column {
  display: grid;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 90dvh;
}
.wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
  column-gap: 2rem;
  text-align: center;
}
.is-active .menu-link {
  color: black;
}
.is-active .burger-line {
  background-color: #fff;
}

.main-section .logo-purple {
  width: 150px;
}
.main-section .appstore {
  width: 250px;
}
.woman {
  animation: MoveUpDown 4s linear infinite;
}

.left-section {
  background-image: url("../img/Left_page_bg.svg");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
.right-section {
  background-image: url("../img/Right_page_bg.svg");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}
.center-section {
  background-image: url("../img/Purple_obj_bg.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.section.content-section h2 {
  color: #000;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section.content-section h3 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section.content-section p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}
.section.content-section .three-phones p {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
.list-bullet li {
  list-style-type: disc;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
}
.list-bullet {
  padding-left: 24px;
}
@keyframes MoveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.accordion .card-header {
  transition: 0.3s all ease-in-out;
  border-radius: 13px;
  background: linear-gradient(270deg, #905ae3 0%, #d75fee 100%);
  margin-bottom: 16px;
}
.accordion .card-header .card-title {
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.accordion .card-header .card-title:hover {
  color: white;
}
.accordion .card-header i {
  margin-right: 5px;
}
.benefits-text-wrap a {
  color: #d85fee;
  transition: 0.3s all ease-in-out;
}
.benefits-text-wrap a:hover {
  color: #d85fee;
}
.section.content-section .benefits-text-wrap p {
  font-size: 16px;
  margin-bottom: 12px;
}
.font-bold {
  font-weight: bold !important;
}
#accordion {
  margin-top: 30px;
}
.card-title i {
  font-size: 14px;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.accordion .card-body {
  padding: 0;
}
.benefits-text-wrap {
  padding: 12px;
}
.wrap-contact {
  margin-bottom: 150px;
  border-radius: 30px;
  background: linear-gradient(270deg, #905ae3 0%, #d75fee 100%);
}
.wrap-contact p {
  color: white;
  margin-bottom: 0;
  padding: 14px 24px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.wrap-contact a {
  color: black;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: white;
  padding: 14px 24px;
  display: inline-block;
  margin: 32px 24px;
  border-radius: 50px;
}
footer {
  background-image: url("../img/footer.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
footer a {
  display: block;
  transition: 0.3s all ease-in-out;
}
.trademark {
  margin: 130px 0 50px 0;
}
.logo-footer {
  margin-bottom: 30px;
}
footer p {
  margin-bottom: 12px;
}
.appstore-footer {
  margin-top: 30px;
}
footer a:hover {
  color: #8f59e3;
  text-decoration: none;
}
.refid {
  position: relative;
  top: -80px;
}
@media screen and (max-width: 992px) {
  .brand img {
    width: 60px;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #d85fee 0%, #905ae3 100%);
  }
  .is-active .menu-link {
  color: white;
}
  .section,
  .section.main-section {
    padding: 50px 0;
  }

  .main-section .logo-purple {
    width: 100px;
  }
  .main-section .appstore {
    width: 200px;
  }
  .menu-link {
    margin-bottom: 16px;
    display: block;
        color: white;
    font-weight: bold;
    font-size: 24px;
            color: white;
        border: 2px solid white;
        border-radius: 20px;
        padding: 8px 20px;
  }
  body .menu-link:hover{
    background-color: white;
    color: #b15de8;
  }
}
@media screen and (max-width: 768px) {
  .main-section .logo-purple {
    width: 100px;
  }
  .main-section .appstore {
    width: 200px;
  }
  .main-section .woman {
    width: 60%;
    margin-top: 30px;
  }
  .phone-left-right-section {
    width: 200px;
  }
  .section.content-section h2,
  .section.content-section h3 {
    font-size: 40px;
    font-weight: bold;
  }
  .section.content-section p,
  .section.content-section .three-phones p,
  .list-bullet li {
    font-size: 16px;
  }
  .three-phones img {
    width: 150px;
  }
  .left-section,
  .right-section {
    background-size: cover;
    background-position: center center;
  }
  .center-section {
    background-size: cover;
    background-position: center center;
  }
  .wrap-contact a {
    margin: 0 0 24px 0;
  }
  .wrap-contact .d-flex {
    justify-content: center;
  }
  #accordion {
    margin-top: 0;
  }
  .appstore-footer {
    margin-bottom: 30px;
  }
  .trademark {
    margin: 40px 0 30px 0;
  }
}
@media screen and (max-width: 576px) {
  .section,
  .section.main-section {
    padding: 30px 0;
  }
  .main-section .logo-purple {
    width: 100px;
  }
  .main-section .appstore {
    width: 200px;
  }
  .main-section .woman {
    width: 70%;
    margin-top: 30px;
  }
  .main-section h1 {
    font-size: 48px;
    margin-top: 12px;
  }
  .main-section p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .section.content-section h2,
  .section.content-section h3 {
    font-size: 32px;
  }
}
