* {
  font-family: "Kumbh Sans", serif;

  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
:root {
  --bright-red: hsl(12, 88%, 59%);
  --dark-blue: hsl(228, 39%, 23%);

  --dark-grayish-blue: hsl(227, 12%, 61%);
  --very-dark-blue: hsl(233, 12%, 13%);
  --very-pale-red: hsl(13, 100%, 96%);
  --very-light-gray: hsl(0, 0%, 98%);

  --weight-bold: 700;
  --weight-medium: 500;
  --weight-light: 400;
}
a {
  color: initial;
  text-decoration: none;
}
li {
  list-style: none;
}
button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
img {
  user-select: none;
}
::selection {
  background-color: var(--bright-red);
  color: white;
}
.btn-style-1,
.btn-style-2 {
  height: 40px;
  font-size: 0.8rem;
  border-radius: 100px;
  box-shadow: 0 5px 10px hsla(12, 88%, 59%, 0.36);
  padding-inline: 25px;
  position: relative;
  transition: all 0.5s;
}
.btn-style-1 {
  background-color: var(--bright-red);
  color: var(--very-light-gray);
  font-weight: var(--weight-medium);
}
.btn-style-2 {
  background-color: var(--very-light-gray);
  color: var(--bright-red);
  font-weight: var(--weight-medium);
  transition: all 0.5s;
}
.btn-style-1:hover,
.btn-style-2:hover {
  box-shadow: 0 5px 10px hsla(12, 88%, 59%, 0.6);
  opacity: 75%;
}
h1 {
  color: var(--dark-blue);
}
p {
  color: var(--dark-grayish-blue);
}
input {
  color: var(--dark-blue) !important;
  padding-inline: 20px;
}
.padInl {
  padding-inline: 120px;
}
.bg-tablet-pattern {
  z-index: -1;
  position: absolute;
  top: -40%;
  right: -10%;
}

body {
  /* background-color: red; */
  overflow-x: hidden;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  /* background-color: lightblue; */
  justify-content: space-between;
  padding-block: 45px;
}
nav .logo {
  display: flex;
}
nav ul {
  display: flex;
  gap: 40px;
}
nav ul li a {
  text-transform: capitalize;
  font-weight: var(--weight-medium);
  font-size: 0.9rem;
  color: var(--dark-blue);
  /* transition: opacity 0.4s; */
  transition: all 0.4s;
}
nav ul li a:hover {
  opacity: 50%;
}
/* /Nav */

/* ============ */

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
header .header-text-container h1 {
  font-size: 2.3rem;
}
header .header-text-container p {
  width: 90%;
}

header .header-image-container {
}
header .header-image-container img {
  width: 480px;
}
/* /Header */

/* ============ */

/* Descreption Section */
.descreption-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;

  padding-block: 80px;
}
.descreption-section .descreption-section-tablet-pattern {
  position: absolute;
  left: -500px;
  top: 300px;
  z-index: -1;
  opacity: 80%;
}

.descreption-section .left-side {
  /* background-color: lightskyblue; */
  width: 50%;
}
.descreption-section .left-side h1 {
  font-size: 2rem;
}
.descreption-section .left-side p {
  font-size: 0.9rem;
  margin-top: 20px;
}

.descreption-section .right-side {
  display: grid;
  gap: 50px;
}
.descreption-section .right-side .single-num {
  gap: 10px;
  /* background-color: lightblue; */
  width: 450px;
}
.descreption-section .right-side .single-num div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.descreption-section .right-side .single-num div h4 {
  background-color: var(--bright-red);
  font-weight: var(--weight-medium);
  border-radius: 100px;
  font-size: 0.8rem;
  color: white;
  width: 46px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.descreption-section .right-side .single-num div h5 {
  font-size: 0.86rem;
  color: var(--dark-blue);
}
.descreption-section .right-side .single-num p {
  font-size: 0.75rem;
  line-height: 16px;
  position: relative;
  left: 56px;
  width: 80%;
}
/* /Descreption Section */

/* ============ */

/* Comments Section */
.comments-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.comments-section h1 {
  font-size: 2rem;
}
.comments-section .cards {
  display: flex;
  justify-content: center;
  margin-block: 120px 90px;
  gap: 10px;
}

.comments-section .cards .card {
  gap: 100px;
  text-align: center;
  width: calc(100% / 4 - 5px * 4);
  padding: 10px 10px;
  border-radius: 10px;
  background-color: var(--very-light-gray);
  position: relative;
}
.comments-section .cards .card img {
  width: 55px;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}
.comments-section .cards .card h4 {
  color: var(--dark-blue);
  margin-top: 40px;
  font-size: 0.9rem;
}
.comments-section .cards .card p {
  margin-top: 15px;
  line-height: 18.5px;
  font-size: 0.85rem;
}
/* /Comments Section */

/* ============ */

/* Banner */
.banner {
  background-color: var(--bright-red);
  display: flex;
  align-items: center;
  margin-top: 100px;
  justify-content: space-between;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.banner h1 {
  color: var(--very-light-gray);
  width: 40%;
  z-index: 1;
}
.banner .banner-tablet-pattern {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 600px;
  z-index: 0;
  opacity: 10%;
}
/* /Banner */

/* ============ */

/* Footer */
footer {
  background-color: var(--very-dark-blue);
  display: flex;
  justify-content: space-between;
  height: fit-content;
  padding-block: 40px;
}
footer * {
  color: var(--very-light-gray);
}
footer ul.main-ul {
  display: flex;
  gap: 100px;
  /* background-color: lightblue; */
}
footer ul.main-ul ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer ul.main-ul ul li {
  flex: 1 1 50%;
  font-size: 0.9rem;
}
footer ul.main-ul ul li a {
  transition: 0.4s;
}
footer ul.main-ul ul li a:hover {
  color: var(--bright-red);
}
footer .footer-logo-and-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
footer .footer-logo-and-media img {
  width: 150px;
}
footer .footer-logo-and-media .footer-media-links {
  display: flex;
  gap: 14px;
}
footer .footer-logo-and-media .footer-media-links a button i {
  color: var(--very-light-gray);
  font-size: 1rem;
  transition: 0.4s;
}
footer .footer-logo-and-media .footer-media-links a button i:hover {
  color: var(--bright-red);
}

footer .footer-right-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
}
footer .footer-right-container .footer-and-input {
  display: flex;
  gap: 5px;
}
footer .footer-right-container .footer-and-input input {
  width: 80%;
  border-radius: 100px;
  border: 0;
  outline: 0;
  font-size: 0.75rem;
}
footer .footer-right-container .footer-and-input button {
}
footer .footer-right-container p {
  font-size: 0.8rem;
  margin-left: 10px;
  color: var(--dark-grayish-blue);
  cursor: default;
}
/* /Footer */

/* Elements Not Show On Desktop Device */
.open-close-mobile-nav {
  display: none;
}
/* /Elements Not Show On Desktop Device */

/* ============ */

/* Mobile devices */
@media screen and (max-width: 768px) {
  .padInl {
    padding-inline: 0px;
  }
  .bg-tablet-pattern {
    width: 600px;
    left: 80px;
    top: -100px;
  }
  p {
    font-size: 1.2rem;
    line-height: 30px;
  }
  .btn-style-1,
  .btn-style-2 {
    font-size: 1rem;
    height: 50px;
  }
  /* Mobile Nav */
  nav {
    position: relative;
    padding-block: 40px;
  }
  nav .get-started {
    display: none;
  }
  nav .logo {
    margin-left: 30px;
  }
  nav button {
    margin-right: 30px;
  }
  nav ul {
    background-color: var(--very-light-gray);
    border-radius: 10px;
    width: 85%;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    gap: 30px;
    padding-block: 40px;
    box-shadow: 0 30px 40px hsla(233, 12%, 13%, 0.1);

    visibility: hidden;
    opacity: 0;

    transition: all 0.4s;
  }
  nav ul.show {
    visibility: visible;
    opacity: 1;
  }
  nav ul li a {
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
  }
  nav .open-close-mobile-nav {
    display: block;
    font-size: 1.8rem;
    color: var(--dark-blue);
  }
  /* /Mobile Nav */

  /* ============ */

  /* Mobile Header */
  header {
    flex-direction: column-reverse;
  }
  header .header-image-container {
    display: flex;
    justify-content: center;
  }
  header .header-image-container img {
    width: 90%;
  }

  header .header-text-container {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  /* /Mobile Header */

  /* ============ */

  /* Mobile Descreption Section */
  .descreption-section {
    flex-direction: column;
    align-items: center;
  }
  .descreption-section .left-side {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .descreption-section .left-side h1 {
    text-align: center;
    width: 90%;
  }

  .descreption-section .right-side {
    width: 90%;
  }
  .descreption-section .right-side .single-num {
    width: 100%;
  }
  .descreption-section .right-side .single-num div {
    position: relative;
  }
  .descreption-section .right-side .single-num div::before {
    content: "";
    background-color: var(--very-pale-red);
    border-radius: 100px 0 0 100px;
    position: absolute;
    left: -40px;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: -1;
  }
  .descreption-section .right-side .single-num div h5 {
    font-size: 1.05rem;
  }
  .descreption-section .right-side .single-num div h4 {
    font-size: 1.2rem;
    width: 60px;
    height: 40px;
  }
  .descreption-section .right-side .single-num p {
    font-size: 1rem;
    line-height: 30px;
    left: 0px;
    margin-top: 20px;
    /* text-align: center; */
    width: 100%;
  }
  /* /Mobile Descreption Section */

  /* ============ */

  /* Mobile Comments Section */
  .comments-section {
    /*  */
  }
  .comments-section .cards {
    justify-content: start;
    margin-left: 80px;
    margin-block: 40px 60px;

    overflow-y: scroll;
    overflow-x: visible;
  }
  .comments-section .cards .card {
    margin-top: 50px;
    min-width: 80%;
    border: 1px dashed var(--dark-grayish-blue);
  }
  .comments-section .cards .card img {
    width: 60px;
    outline: solid 3px white;
    border-radius: 100%;
  }
  /* /Mobile Comments Section */

  /* ============ */

  /* Mobile Banner */
  .banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;
    height: fit-content;
    padding-block: 50px;
  }
  .banner h1 {
    width: 80%;
    font-size: 2.4rem;
  }
  /* /Mobile Banner */

  /* ============ */

  /* Mobile Footer */
  footer {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 50px;
  }

  footer .footer-right-container {
    display: flex;
  }
  footer .footer-right-container {
    flex-direction: column-reverse;
    width: 90%;
  }
  footer .footer-right-container .footer-and-input input {
    font-size: 1rem;
  }

  footer .footer-logo-and-media {
    align-items: center;
    flex-direction: column-reverse;
    gap: 30px;
  }
  footer .footer-logo-and-media .footer-media-links {
    gap: 30px;
  }
  footer .footer-logo-and-media .footer-media-links a button i {
    font-size: 1.4rem;
  }

  footer .main-ul ul li a {
    font-size: 1.1rem;
  }
  footer .footer-right-container p {
    display: none;
  }
  /* /Mobile Footer */
}
#hidden {
  display: none;
}
