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

:root {
  /* ### Primary colors */

  --Soft-red: hsl(7, 99%, 70%);
  --Yellow: hsl(51, 100%, 49%);
  --Dark-desaturated-cyan-graphic-design-text: hsl(167, 40%, 24%);
  --Dark-blue-photography-text: hsl(198, 62%, 26%);
  --Dark-moderate-cyan-footer: hsl(168, 34%, 41%);

  /* ### Neutral colors */

  --Very-dark-desaturated-blue: hsl(212, 27%, 19%);
  --Very-dark-grayish-blue: hsl(213, 9%, 39%);
  --Dark-grayish-blue: hsl(232, 10%, 55%);
  --Grayish-blue: hsl(210, 4%, 67%);
  --White: hsl(0, 0%, 100%);

  /* font family and weight */

  --font-family-1: 'Barlow', sans-serif;
  --font-family-2: 'Fraunces', serif;

  --font-bold: 600;
  --font-bolder: 700;
  --font-boldest: 900;
}

body {
  overflow-x: hidden;
  /* font-size: 18px; */
}

header {
  height: 100vh;
  width: 100%;
  background-image: url(./images/desktop/image-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 0rem 2rem 0rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0rem 0rem 0rem;
  margin-bottom: 5rem;
}

.logo {
  cursor: pointer;
}

#line {
  width: 1.6rem;
  height: 0.2rem;
  background-color: white;
}

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

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

.nav-links a {
  text-decoration: none;
  color: white;
  font-family: var(--font-family-1);
  font-size: 1.1rem;
  transition: 0.5s ease;
}

.nav-links a button {
  border: none;
  border-radius: 50px;
  font-family: var(--font-family-2);
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  cursor: pointer;
}

.burger {
  display: none;
}

h1 {
  font-family: var(--font-family-2);
  font-weight: var(--font-boldest);
  font-size: 3.5rem;
  color: white;
  letter-spacing: 1rem;
  line-height: 1.5;
  text-align: center;
}

.arrow-down {
  padding-top: 2rem;
  text-align: center;
}

/*        main section      *******/

img {
  width: 100%;
}

.first__row__img {
  width: 100%;
}

.second__row__img {
  width: 100%;
}
.first__row__text {
  text-align: center;
  padding: 3.5rem 1rem;
}

.second__row__text {
  text-align: center;
  padding: 3.5rem 1rem;
}

p {
  font-family: var(--font-family-1);
  color: var(--Grayish-blue);
  font-size: 1.2rem;
  line-height: 1.7;
}

h3,
h6,
h4 {
  font-family: var(--font-family-2);
}
h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.7rem;
  color: var(--Dark-desaturated-cyan-graphic-design-text);
  margin-bottom: 1.5rem;
}

h6 {
  position: relative;
  font-size: 1.3rem;
  cursor: pointer;
  display: inline;
}
h6::before {
  content: '';
  position: absolute;
  background-color: var(--Yellow);
  width: 100%;
  height: 0.2rem;
  bottom: 0.3rem;
  transition: 0.5s ease;
  z-index: -2;
  border-radius: 10px;
}

#h6::before {
  background-color: var(--Soft-red);
}

h6:hover::before {
  height: 0.5rem;
}

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

.paragraph__1 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.paragraph__2 {
  margin-bottom: 2rem;
}

.third__row__img1 {
  width: 100%;
}

.third__row1 {
  position: relative;
}

.third__row__text1 {
  text-align: center;
  position: absolute;
  top: 60%;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}

.paragraph__3,
.paragraph__4 {
  color: var(--Dark-desaturated-cyan-graphic-design-text);
}
