* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  scroll-behavior: smooth;
}

body{
  color: var(--primary-color);
}

:root {
  --primary-color: #1d2128;
  --secondary-color: #f8f5f1;
  --success-color: #446b16;
  --lightGreen-color: #e3f7d7;
  --darkGreen-color: #00413f;
  --text-color: #1d2128;
  --blue-color:#3a3d42;
  --text-muted: #494949;
  --light-color: #ecf0f4;
  --white-color: #ffffff;
}

a{
  color:var(--primary-color);
  text-decoration: none;
}

svg {
  fill: var(--primary-color);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 120px;
  border-bottom: 1px solid var(--text-color);
  background-color: var(--secondary-color);
}

/* Navigation: Logo */
#logo img {
  width: 7rem;
}

/* Navigation: Links */
.navbar ul {
  display: flex;
  gap: 1.7rem;
}

.navbar ul li {
  list-style: none;
  display: flex;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.1rem;
  position: relative;
}

.underline__effect::after {
  content: "";
  background-color: var(--primary-color);
  height: 1px;
  width: 0%;
  position: absolute;
  display: block;
  transition: all 0.28s;
  right: 0;
}

.underline__effect:hover::after {
  background-color: var(--primary-color);
  width: 100%;
  transition: all 0.28s;
  left: 0;
}

/* Navigation: Button */
.btn {
  display: flex;
  align-items: center;
  color: var(--light-color);
  background-color: var(--primary-color);
  padding: 20px 24px;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.28s;
}

.btn i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.btn p {
  color: var(--secondary-color);
  font-size: 1rem;
}

.btn:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  transition: all 0.28s;
  color: var(--primary-color);
}

.btn:hover i,
.btn:hover p {
  color: var(--primary-color);
}

.btn-w {
  display: inline-block;
}

.btn__green {
  background-color: var(--darkGreen-color);
  font-weight: 300;
}

.btn__green:hover {
  color: var(--darkGreen-color);
  border-color: var(--darkGreen-color);
}

/* Hero Section */
section {
  padding: 60px 0;
}

.container {
  width: 80%;
  margin: auto;
}

#hero {
  background-color: var(--secondary-color);
}

#hero .container {
  display: flex;
  align-items: center;
}

/* Hero Section: Content */
.feature__content {
  width: 50%;
}

.feature__content h1 {
  font-size: 4rem;
  font-weight: 700;
  padding-right: 70px;
  margin-bottom: 5px;
}

.feature__content p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 35px;
}

.btn__group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn__group .main-btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  padding: 16px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.28s;
}

.btn__group .main-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transition: all 0.28s;
}

.btn__group a:last-child {
  text-decoration: underline;
}


/* Hero Section: Image */
.feature__image {
  width: 50%;
  text-align: center;
}

.feature__image img {
  width: 100%;
}

h1 {
  mask-clip: text;
  background: linear-gradient(lightblue pink purple);
}

/* Compatible */
#compatible {
  background-color: var(--primary-color);
}

#compatible .container {
  display: flex;
  align-items: center;
}

/* Compatible: Content  */
#compatible .content {
  width: 30%;
}

#compatible .content h3 {
  color: var(--secondary-color);
  font-weight: 300;
  font-size: 1.1rem;
}

/* Compatible: softwares  */
#compatible .softwares {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
}

#compatible img {
  aspect-ratio: 2/1;
  object-fit: contain;
  width: 20%;
}

/* Tools Section */
.sub__heading {
  text-align: center;
}

.sub__heading h2 {
  font-size: 3.2rem;
  font-weight: 800;
}

.sub__heading p {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
}

#tools .card__group {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}

#tools .card__group .card {
  width: 22%;
  padding: 60px 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0px 0px 14px 2px #0000001a;
}

#tools .card .card__icon {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

#tools .card__icon i {
  font-size: 3.5rem;
}

#tools .card__content h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.2rem;
}

#tools .card__content p {
  font-size: 0.99rem;
  font-weight: 500;
  padding: 0 2px;
  color: var(--text-muted);
}

/* Projects Section */
/* Projects Section: Card Group */
#projects .card__group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#projects .card {
  width: 48%;
  border: 1px solid #0000001a;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
}

#projects .card__img {
  width: 100%;
  border-radius: 2px;
}

#projects .card__img img {
  min-width: 70%;
  max-width: 100%;
  height:225px;
  margin-bottom: 28px;
  border-radius: 6px;
  display: inline-block;
  object-fit: cover;
  box-shadow: 0px 9px 14px 0 rgb(0 0 0 / 15%);
}

#projects .card__content h4 {
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Mobile-First Section */
#mobile__first .container {
  background-color: #fbf5f3;
  padding: 70px 60px;
  border-radius: 35px;
  display: flex;
  align-items: center;
}

/* Mobile-First Section: content */
.mobile__content {
  width: 50%;
}

.mobile__content h3 {
  font-size: 3.4rem;
  margin-bottom: 16px;
}

.mobile__content > p {
  font-size: 1.2rem;
  font-weight: 500;
  width: 55%;
  margin-bottom: 35px;
  color:var(--text-muted);
}

.mobile__content ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 65%;
  margin-bottom: 40px;
}

.mobile__content li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mobile__content li p {
  font-size: 1.01rem;
  font-weight: 500;
  color:var(--text-muted);
}

/* Mobile-First Section: image */
.mobile__image {
  width: 50%;
}

.mobile__image img {
  width: 100%;
}

/* Store Section */
#store .sub__heading svg{
  width: 70px;
}

/* Store Section: Cards */
#store .card__container {
  display: flex;
  margin-top: 70px;
  gap: 1rem;
}

#store .card__group {
  width: 33%;
}

#store .card {
  width: 100%;
  padding: 45px 50px;
  border-radius: 12px;
  background-color: var(--light-color);
  margin-bottom: 20px;
  text-align: center;
}

/* Store Section: Cards Image*/
#store .card img {
  width: 75%;
  margin-bottom: 12px;
}

.sm__img {
  width: 50% !important;
}

.md__img {
  width: 63% !important;
}

/* Store Section: Cards Content*/
#store .card .card__content {
  text-align: center;
}

#store .card .card__content h3 {
  font-size: 1.5rem;
  margin-bottom: 7px;
}

#store .card .card__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3rem;
}

/* Support Section */
#support {
  padding-bottom: 0;
  margin-bottom: -100px;
  z-index: 0;
  position:relative;
}

#support .container {
  background-color: var(--lightGreen-color);
  padding: 90px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}

/* Support Section: Content */
#support .support__content {
  width: 70%;
}

#support .support__content p,
#support .support__content h2 {
  color: var(--darkGreen-color);
}

#support .icon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 12px;
}

#support .icon P {
  font-size: 1rem;
}

#support .support__content h2 {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

#support .support__content > p {
  width: 80%;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 40px;
}

#support .support__featureImg {
  width: 40%;
}

#support .list__group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 1rem;
}

#support .list__card {
  background-color: var(--white-color);
  padding: 20px 30px;
  border-radius: 8px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#support .card__intro {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#support .card__intro i {
  font-size: 2.5rem;
}

#support .card__intro i,
#support .card__btn i {
  color: var(--darkGreen-color);
}

.card__icons {
  width: 50px;
  text-align: center;
}

#support .card__btn i {
  font-size: 2.3rem;
}

#support .card__intro h5 {
  color: var(--darkGreen-color);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  padding: 160px 0 30px;
}

/* Footer: Content */
.footer-content {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-content svg,
.footer-content h3,
.footer-content i,
.footer-content p {
  color: var(--white-color);
  fill: var(--white-color);
}

.footer-content svg {
  margin-bottom: 20px;
  width: 3rem;
  height: auto;
}

.footer-content .title {
  font-size: 2.6rem;
  margin-bottom: 30px;
}

.footer-content .btn-dark {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  background-color: var(--white-color);
  padding: 20px 24px;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.28s;
}

.footer-content .btn-dark:hover {
  background-color: var(--light-color);
  transition: all 0.28s;
}

.footer-content .btn-dark p,
.footer-content .btn-dark i {
  color: var(--primary-color);
}

footer .label-group{
  color:var(--white-color);
  display:flex;
  justify-content:center;
  margin:50px 0;
  gap:5rem;
}

footer .label{
  display:flex;
  align-items:center;
  gap:1.5rem;
  margin-bottom:20px;
}

footer .label i{
  font-size:1.9rem;
}

footer .label p{
  font-size:1.1rem;
}

footer .copyright{
  display:flex;
  justify-content: space-between;
  align-items:center;
  color:var(--blue-color);
}

footer .copyright h5{
  font-size:1.4rem;
  font-weight:900;
}