* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: serif;
  color: white;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  width: auto;
  height: auto;
  background-color: rgb(12, 23, 27);
}

img.top-background {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


.fade-bottom {
  position: relative;
  display: block;
  top: 70.5rem;
  height: 8.8rem;
  background-image: linear-gradient(
    180deg,
    transparent,
    rgba(12, 23, 27, 0.81),
    rgb(12, 23, 27)
  );
  /* background-attachment: fixed; */
}

.row {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  top: 40rem;
  margin-bottom: 20rem;
  /* margin-bottom: 15rem; */
}

.first-row {
}

.second-row {
}

.third-row {
}

.text-content {
  width: 35%;
  word-wrap: break-word;
}

.trekking-pic {
  max-width: 300px;
  height: auto;
  border-radius: 5px;
}

.span-title,
.read-more {
  position: relative;
  text-transform: uppercase;
  color: goldenrod;
  font-size: 1.5rem;
  /* line-height: 1rem; */
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 10px;
  margin-left: 10px;
}

.right-arrow {
  width: 20px;
  position: relative;
  top: 1.2px;
}

.content-title {
  font-size: 4.5rem;
  width: auto;
  letter-spacing: 1.8px;
  position: relative;
  margin-bottom: 10px;
}

.content-para {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
}

.read-more {
  /* display: block; */
  text-transform: lowercase;
}

#footer-section {
  padding-top: 40rem;
  padding-bottom: 6rem;
}

.footer-parent-div {
  width: auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.company-title {
  font-size: 2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.copyright {
  display: block;
  margin-top: 50px;
  font-size: 1.2rem;
}

.footer-para {
  font-size: 1.4rem;
}

.right-footer-content {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
}

.footer-list-title {
  font-size: 2rem;
  color: goldenrod;
}

.footer-list {
  line-height: 3rem;
  font-size: 1.5rem;
}

.footer-left-text {
  margin-right: 5rem;
}

.footer-right-text {
  margin-left: 5rem;
}

.center-background-text {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  top: 20rem;
}

.background-left {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transform: rotate(90deg);
  width: 20%;
}

.follow-text {
  font-size: 2rem;
}

.background-title {
  font-size: 5rem;
}

.social-icon {
  fill: white;
}

.background-center {
  width: 30%;
  font-size: 35px;
}

.background-right {
  width: 20%;
  display: flex;
  justify-content: center;
  /* transform: rotate(90deg); */
  line-height: 1.8rem;
}

/* .contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  margin-bottom: 5px;
} */

/* .contact-icon {
  max-width: 20px;
  height: 20px;
  margin-right: 8px;
} */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 4rem;
  z-index: 1;
  padding-left: 80px;
  padding-right: 80px;
}

.company-name {
  text-transform: uppercase;
  font-size: 3rem;
}

.header-nav {
  width: 25%;
}

.header-list {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}

.company-name,
.header-item,
.account {
  cursor: pointer;
  color: #0c171b;
  opacity: 50%;
  font-family: "Inter", sans-serif;
}

.company-name:hover,
.header-item:hover,
.account:hover,
.follow-text:hover,
.social-icon:hover {
  color: goldenrod;
  fill: goldenrod;
}

.account {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.account-icon {
  margin-right: 5px;
}

.scroll-down {
  width: 60px;
}

.scroll-page {
  padding: 10px;
  background-color: goldenrod;
  border: none;
  font-size: 2rem;
  line-height: 5.5rem;
  border-radius: 50%;
}

.scroll-page:hover {
  color: goldenrod;
  background-color: whitesmoke;
}

.content-number {
  position: absolute;
  font-size: 8rem;
  color: white;
  opacity: 10%;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: bolder;
  letter-spacing: -10px;
  line-height: 5.5rem;
}

/* Media query Breakpoint
    320px — 480px: Mobile devices
    481px — 768px: iPads, Tablets
    769px — 1024px: Small screens, laptops
    1025px — 1200px: Desktops, large screens
    1201px and more —  Extra large screens, TV
*/

@media (min-width: 320px) and (max-width: 650px) {
  .header-nav, .account {
    display: none;
  }

  .header {
    justify-content: baseline;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .menu-icon {
    display: block;
  }

  .fade-bottom {
    top: 63rem;
  }

  .text-content {
    width: 80%;
    margin-bottom: 3rem;
  }

  .second-row {
    flex-direction: column-reverse;
  }

  #footer-section {
    padding-top: 35rem;
    margin: 0 auto;
  }

  .footer-parent-div {
    flex-direction: column-reverse;
  }

  .right-footer-content {
    width: 100%;
  }

  .left-footer-content {
    margin: 0 auto;
    margin-top: 5rem;
  }

  .background-left,
  .background-right {
    display: none;
  }

  .background-title {
    font-size: 2.5rem;
  }

  .center-background-text {
    top: 14rem;
  }

  .background-center {
    width: 80%;
  }

  .center-background-text {
    justify-content: space-evenly;
  }

  .content-title {
    font-size: 2.5rem;
  }

  .content-para {
    font-size: 1.3rem;
  }

  .content-number {
    font-size: 6rem;
  }

  .span-title, .read-more {
    font-size: 1.2rem;
  }

  .footer-list-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 651px) and (max-width: 768px) {
  .row {
    top: 40rem;
  }


  .content-title {
    font-size: 2.2rem;
  }

  .content-para {
    font-size: 1.2rem;
  }

  .span-title,
  .read-more {
    font-size: 1rem;
  }

  .trekking-pic {
    max-width: 250px;
    height: auto;
  }

  .text-content {
    width: 50%;
  }

  .footer-parent-div {
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }

  .company-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .copyright {
    display: block;
    margin-top: 5rem;
    font-size: 1rem;
  }

  .footer-para {
    font-size: 1.3rem;
  }

  .right-footer-content {
    width: 50%;
    display: flex;
    justify-content: space-between;
  }

  .footer-list-title {
    font-size: 1.5rem;
  }

  .footer-list {
    line-height: 2.4rem;
    font-size: 1.3rem;
  }

  .background-title {
    font-size: 3rem;
  }

  .header-list {
    font-size: 1.2rem;
  }

  .company-name {
    font-size: 2rem;
  }

  .header-nav {
    width: 30%;
  }

  .follow-text {
    font-size: 1.5rem;
  }

  #footer-section {
    padding-top: 35rem;
    padding-bottom: 6rem;
  }

  .left-footer-content {
    width: 35%;
  }

  /* .footer-left-text */
}

@media (min-width: 769px) and (max-width: 1000px) {
  .background-title {
    font-size: 3.5rem;
  }

  .content-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 651px) and (max-width: 1920px) {
  .menu-icon {
    display: none;
  }

  /* .fade-bottom {
    top: 71rem;
  } */
}

