* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Big Shoulders", sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #FFF7F3;
  scroll-behavior: smooth;
}

#main {
  height: 100%;
  width: 100%;
}

/* Navigation Section */

#nav {
  position: fixed;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 60px;
}

#nav h3 {
  background-color: black;
  color: #fff7f3;
  padding: 14px 25px;
  border-radius: 50px;
  font-size: 20px;
  margin-left: 5px;
}

/* Introduction Section */

#intro {
  height: 45%;
  /* background-color: antique#fff7f3; */
  padding: 50px 60px;
  overflow: hidden;
}

#intro h1 {
  font-size: 160px;
  font-weight: 900;
  line-height: 170px;
}

/* Location Section */

#country {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

#country h3 {
  font-size: 28px;
  font-weight: 500;
}

/* Images Section */

.image {
  height: 88%;
  width: 100%;
  background-size: cover;
}

#img-1 {
  background-image: url(./img/01.webp);
  background-position: bottom;
}

#img-2 {
  background-image: url(./img/02.webp);
  background-position: center;
}

#img-3 {
  background-image: url(./img/03.webp);
  background-position: bottom;
}

#img-4 {
  background-image: url(./img/04.webp);
  background-position: bottom;
}

/* About Section */

#about {
  height: 40%;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
}

#about h2 {
  width: 65%;
  height: 100%;
  font-size: 80px;
  font-weight: 700;
  line-height: 75px;
}

#about-right {
  width: 35%;
  height: 100%;
  padding: 0px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  border-left: 2px solid black;
}

#about-right h3 {
  font-size: 28px;
}

#about-right #icons i {
  font-size: 28px;
  background-color: black;
  color: #fff7f3;
  padding: 8px;
  border-radius: 50%;
  font-size: 28px;
  margin-left: 5px;
}

/* Work Section */

#work {
  height: 60%;
  width: 100%;
  padding: 50px 60px;

  display: flex;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

#work-left {
  width: 35%;
  height: 100%;
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;

  border-right: 2px solid black;
}

#work-left h3,
i {
  font-size: 28px;
}

#work-right {
  height: 100%;
  width: 65%;
  padding: 0px 60px;
}

.content {
  padding: 60px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content:nth-child(1) {
  border-bottom: 2px solid black;
}

.content .element {
  height: 100%;
  width: 50%;
}

.content .element:nth-child(1) {
  border-right: 2px solid black;
  padding-right: 50px;
}

.content .element:nth-child(2) {
  padding-left: 50px;
}

.content .element h3 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content .element p {
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

/* Work scroll Section */

#work-scroll {
  width: 107%;
  overflow: hidden;
  position: relative;
  right: 7%;
}

#work-scroll::-webkit-scrollbar {
  display: none;
}

#work-scroll h2 {
  display: inline-block;
  white-space: nowrap;
  font-size: 160px;
  font-weight: 900;
  line-height: 150px;
  padding: 50px 60px;
}

/* Projects Section */

#project {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
}

#project h2 {
  width: 70%;
  font-size: 160px;
  font-weight: 900;
  line-height: 150px;
  /* background: #000; */
}

#project-content {
  width: 30%;
  display: flex;
  flex-direction: column;
  /* margin-right: 200px; */
}

#project-content p {
  width: 100%;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

#btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#btn h3 {
  background-color: black;
  color: #fff7f3;

  font-size: 22px;
  font-weight: 300;
  padding: 8px 20px;
  margin-top: 20px;
  margin-right: 10px;

  border-radius: 50px;
}

/* Review Section */

#review {
  height: 96%;
  width: 100%;
  padding: 50px 60px;

  display: flex;

  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

#review-left {
  width: 35%;
  height: 100%;
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;

  border-right: 2px solid black;
}

#review-left h3,
i {
  font-size: 28px;
}

#review-right {
  height: 100%;
  width: 65%;
  padding: 0px 60px;
}

.review-content {
  padding: 60px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-content:nth-child(1) {
  border-bottom: 2px solid black;
}

.review-content .review-element {
  height: 100%;
  width: 50%;
}

.review-content .review-element:nth-child(1) {
  border-right: 2px solid black;
  padding-right: 50px;
}

.review-content .review-element:nth-child(2) {
  padding-left: 50px;
}

.review-content .review-element h3 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-content .review-element p {
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

/* Contact section */

#connect {
  height: 60%;
  width: 100%;

  background-color: black;
  color: #fff7f3;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#connect h3 {
  font-size: 28px;
  margin-top: 150px;
}

#connect h2 {
  font-size: 160px;
  font-weight: 900;
  line-height: 150px;

  margin-top: 40px;
}

#connect a {
  text-decoration: none;

  font-size: 28px;
  font-weight: 500;

  color: black;
  background-color: #fff7f3;

  padding: 20px 44px;
  border-radius: 50px;

  margin-top: 50px;
}

#more {
  height: 45%;
  width: 100%;

  background-color: black;
  color: #fff7f3;
}

#more #split-left {
  height: 100%;
  width: 75%;
  padding: 50px 60px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.click h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 50px;
}

.grey {
  color: white;
  opacity: 0.4;
}

.copyrights {
  background: black;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 50px 60px;
}

.copyrights p{
  font-size: 24px;
}

