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

:root {
  /* primary colors */

  --Bright-Red: hsl(12, 88%, 59%);
  --Dark-Blue: hsl(228, 39%, 23%);

  /* Neutral colors */

  --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%);

  /* fonts and font weight */

  --font-fam: 'Be Vietnam Pro', sans-serif;

  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;

  /* filter */
  --filter: drop-shadow(0px 200px 60px hsl(0, 0%, 98%));
  --webkit-filter: drop-shadow(0px 200px 60px hsl(0, 0%, 98%));
  --moz-filter: drop-shadow(0px 200px 60px hsl(0, 0%, 98%));
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  animation: opacity 1.5s ease;
  overflow-x: hidden;
}

header {
  /* height: 100vh; */
  margin-bottom: 4rem;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.logo {
  margin-top: 0.5rem;
  margin-right: 1rem;
  cursor: pointer;
}

.burger {
  display: none;
  cursor: pointer;
}

#line {
  width: 1.7rem;
  height: 0.25rem;
  background-color: var(--Dark-Blue);
}

.line1 {
  margin-bottom: 0.2rem;
}
.line2 {
  margin-bottom: 0.2rem;
}

.navbar-links a {
  text-decoration: none;
  color: var(--Dark-Blue);
  font-weight: var(--font-regular);
  font-size: 1rem;
  transition: 0.5s ease;
}

.navbar-links a:hover {
  color: var(--Dark-Grayish-Blue);
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 0.8rem 2rem 0.8rem 2rem;
  background-color: var(--Bright-Red);
  border-radius: 50px;
  border: none;
  color: var(--Very-Light-Gray);
  font-size: 0.7rem;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.7;
  filter: drop-shadow(0px 10px 10px hsl(12, 88%, 59%));
}

/* section 1 hero-section */

.section-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.hero-image {
  max-width: 768px;
}

.illustration {
  width: 100%;
  position: relative;
}

.illustration::before {
  content: '';
  position: absolute;
  background-image: url(images/bg-simplify-section-mobile.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
  height: 100%;
  width: 100%;
}

h1 {
  color: var(--Dark-Blue);
  font-weight: var(--font-bold);
  font-size: 3rem;
  margin-bottom: 0.7rem;
}

.hero-paragraph {
  color: var(--Dark-Grayish-Blue);
  font-weight: var(--font-regular);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  width: 60%;
}

p {
  color: var(--Dark-Grayish-Blue);
}

main {
  margin-bottom: 3rem;
}

.line-height {
  line-height: 1.5;
}

.main-text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3.5rem;
}

h2 {
  color: var(--Dark-Blue);
  margin-bottom: 1rem;
}
.line-height2 {
  line-height: 1.4;
}

.main-text2 {
  padding-left: 1rem;
  padding-right: 0.5rem;
}

.main-text-paragraph {
  font-weight: var(--font-regular);
  font-size: 1.1rem;
}

.btn-small {
  background-color: var(--Bright-Red);
  border: none;
  border-radius: 50px;
  color: var(--Very-Light-Gray);
  font-size: 0.76rem;
  font-weight: var(--font-bold);
  padding: 0.4rem 1.1rem 0.4rem 1.1rem;
}

h5 {
  color: var(--Dark-Blue);
  font-size: 1.1rem;
  padding-top: 0.2rem;
  margin-bottom: 0.8rem;
}

.main-text-paragraph1 {
  font-size: 1rem;
}

.flex {
  display: flex;
  /* justify-content: space-around; */
  gap: 1rem;
}

.line-height3 {
  line-height: 1.8;
}

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

.carousel {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}

.carousel__div {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
}

h3 {
  color: var(--Dark-Blue);
  margin-bottom: 3rem;
  font-size: 2rem;
  text-align: center;
}

h6 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.grid-paragraph {
  font-size: 1rem;
  line-height: 1.7;
}

.grid-image {
  max-width: 45%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.grid__img {
  max-width: 45%;
}

.carousel__container {
  background-color: var(--Very-Light-Gray);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

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

.simplify {
  background-color: var(--Bright-Red);
  padding: 4rem 1rem;
}

h4 {
  color: var(--Very-Light-Gray);
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

.btn__2 {
  padding: 0.8rem 2rem 0.8rem 2rem;
  color: var(--Bright-Red);
  border-radius: 50px;
  border: none;
  background-color: var(--Very-Light-Gray);
  font-size: 0.7rem;
  transition: all 0.5s ease;
  cursor: pointer;
  margin: 0 auto;
  font-weight: var(--font-bold);
}
/* .btn__2:hover {
} */

footer {
  background-color: var(--Very-Dark-Blue);
  padding: 2rem 0;
  align-items: center;
}

.footer {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--Very-Light-Gray);
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: 0.5s ease;
}

.footer-links a:hover {
  color: var(--Bright-Red);
}

#footer-links1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#footer-links2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

input[type='email'] {
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.input__type {
  display: inline-block;
}

::placeholder {
  font-size: 0.66rem;
  text-align: left;
}

.go__btn {
  background-color: var(--Bright-Red);
  border: none;
  border-radius: 50px;
  color: var(--Very-Light-Gray);
  padding: 0.5rem 1.5rem;
  transition: 0.5s ease;
  cursor: pointer;
}

.footer__links__cont {
  display: flex;
  margin-bottom: 2.5rem;
  /* justify-content: center;
  text-align: left; */
  justify-content: space-around;
  text-align: left;
  line-height: 1.6;
}

#social {
  fill: var(--Very-Light-Gray);
}

.margin__right {
  margin-right: 0.8rem;
}

.copyright {
  font-size: 0.8rem;
  text-align: center;
}

.social__media {
  margin-bottom: 1.5rem;
}

form {
  margin-bottom: 3rem;
}
