/*GENERAL OVERRIDES*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 100%;
}

/*FONTS USED*/
@font-face {
  font-family: golos_regular;
  src: url("Fonts/Golos-Text_Regular.ttf");
  font-display: auto;
}
@font-face {
  font-family: golos_black;
  src: url("Fonts/Golos-Text_Black.ttf");
  font-display: auto;
}
/**NAVBAR STYLES*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.navbar-links {
  height: 100%;
}
.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.navbar-links li {
  list-style: none;
  font-family: golos_regular;
  color: #252525;
}
.navbar-links li a {
  display: block;
  text-decoration: none;
  color: #252525;
  padding: 1rem;
}
.navbar-links li:hover {
  border-bottom: 2px solid #252525;
}

.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}
.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: #252525;
  border-radius: 10px;
}

/*HEADER ELEMENTS STYLES*/
.header-elements {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow-y: hidden;
}
.header-elements .header-text {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header-elements .header-text h2 {
  font-family: golos_black;
  font-size: 5rem;
}
.header-elements .header-text p {
  font-family: golos_regular;
  font-size: 1.4rem;
}
.header-elements .header-image {
  width: 50%;
}
.header-elements .header-image img {
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
}

/*SECTION 2 STYLES*/
#section2 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#section2 h2 {
  font-family: golos_black;
  font-size: 4rem;
}
#section2 p {
  font-family: golos_regular;
  font-size: 1.5rem;
  margin: 2% 8% 0 8%;
  line-height: 42px;
}

/*SECTION 3 STYLES*/
#section3 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#section3 .projects-header {
  width: 50%;
  color: #fff;
}
#section3 .projects-header h2 {
  font-family: golos_black;
  font-size: 4rem;
  text-align: center;
}
#section3 .projects-header p {
  font-family: golos_regular;
  font-size: 1.3rem;
  margin: 2% 10% 0 10%;
  line-height: 35px;
}
#section3 .projects-image {
  width: 50%;
  height: 100vh;
  overflow-y: hidden;
}
#section3 .projects-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*SECTION 4 STYLES*/
#section4 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section4 h2 {
  font-family: golos_black;
  font-size: 4rem;
}

#portrait-1 {
  background-image: url("Images/try5.webp");
  background-size: cover;
  background-position: center;
}

#portrait-2 {
  background-image: url("Images/try2.webp");
  background-size: cover;
  background-position: center;
}

#portrait-3 {
  background-image: url("Images/try3.webp");
  background-size: cover;
  background-position: center;
}

/*SECTION 5 STYLES*/
#section5 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section5 h2 {
  font-family: golos_black;
  font-size: 4rem;
}

/*SECTION 6 STYLES*/
#section6 {
  width: 100%;
  height: 100vh;
}
#section6 .container {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 5px 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas: "Area1 Area2" "Area1 Area3";
}
#section6 .Area1 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  grid-area: Area1;
  background-image: url("Images/fashion4.webp");
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
}
#section6 .Area2 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 3;
  grid-column: 3;
  grid-area: Area2;
  background-image: url("Images/fashion2.webp");
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
}
#section6 .Area3 {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 3;
  grid-column: 3;
  grid-area: Area3;
  background-image: url("Images/fashion5.webp");
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
}

/*SECTION 7 STYLES*/
#section7 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section7 h2 {
  font-family: golos_black;
  font-size: 4rem;
}

/*SECTION 8 STYLES*/
#section8 {
  width: 100%;
  height: 100vh;
}
#section8 .container {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 5px 1fr 5px 1fr 5px 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas: "Area4 Area4 Area5 Area5" "Area4 Area4 Area5 Area5" "Area6 Area6 Area7 Area7" "Area6 Area6 Area7 Area7";
}
#section8 .Area4 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: Area4;
}
#section8 .Area5 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-column: 5;
  -ms-grid-column-span: 3;
  grid-area: Area5;
}
#section8 .Area6 {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: Area6;
}
#section8 .Area7 {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-column: 5;
  -ms-grid-column-span: 3;
  grid-area: Area7;
}
#section8 .Area4 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: Area4;
  background-image: url("Images/c1.webp");
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
#section8 .Area5 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-column: 5;
  -ms-grid-column-span: 3;
  grid-area: Area5;
  background-image: url("Images/c2.webp");
  width: 100%;
  height: auto;
  background-size: cover;
}
#section8 .Area6 {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: Area6;
  background-image: url("Images/c3.webp");
  width: 100%;
  height: auto;
  background-size: cover;
}
#section8 .Area7 {
  grid-row: 5;
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-column: 5;
  -ms-grid-column-span: 3;
  grid-area: Area7;
  background-image: url("Images/c4.webp");
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

/*SECTION 9 STYLES*/
#section9 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  overflow-y: hidden;
}
#section9 .contact-info {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#section9 .contact-info h2 {
  font-family: golos_black;
  font-size: 3.5rem;
  text-align: center;
}
#section9 .contact-info h3 {
  font-family: golos_black;
  margin-left: 5%;
  margin-top: 5%;
}
#section9 .contact-info p {
  font-family: golos_regular;
  font-size: 1.2rem;
  line-height: 35px;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 2%;
}
#section9 .contact-image {
  width: 50%;
}
#section9 .contact-image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: contain;
  object-fit: contain;
  background-position: center center;
}

/*NAVIGATION MEDIA QUERY*/
@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
  }

  .toggle-button {
    display: flex;
    margin-top: 6px;
  }
  .toggle-button .bar {
    background-color: #252525;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }
  .navbar-links ul {
    width: 100%;
    flex-direction: column;
    margin-top: 10%;
  }
  .navbar-links ul li {
    text-align: center;
    color: #252525;
  }
  .navbar-links ul li a {
    padding: 0.5rem 1rem;
  }
  .navbar-links ul li a:hover {
    background-color: #252525;
    color: #fff;
  }
  .navbar-links.active {
    display: flex;
  }
}
/*PHONE MEDIA QUERY*/
@media (min-width: 320px) and (max-width: 480px) {
  #fullpage .header-elements {
    display: flex;
    flex-direction: column;
  }
  #fullpage .header-elements .header-text {
    width: 100%;
  }
  #fullpage .header-elements .header-text h2 {
    text-align: center;
    font-size: 12vw;
  }
  #fullpage .header-elements .header-text p {
    font-size: 4.2vw;
    margin-top: 12px;
  }
  #fullpage .header-elements .header-image {
    width: 100%;
  }
  #fullpage .header-elements .header-image img {
    width: 100%;
    height: 60vh;
  }
  #fullpage #section2 h2 {
    font-size: 2rem;
  }
  #fullpage #section2 p {
    font-size: 1rem;
    margin: 5% 10% 0 10%;
    line-height: 34px;
  }
  #fullpage #section3 {
    flex-direction: column;
  }
  #fullpage #section3 .projects-header {
    order: 2;
    width: 100%;
  }
  #fullpage #section3 .projects-header h2 {
    font-size: 2rem;
  }
  #fullpage #section3 .projects-header p {
    line-height: 34px;
    font-size: 1rem;
    margin: 2rem 2rem 2rem 2rem;
  }
  #fullpage #section3 .projects-image {
    order: 1;
    height: 50vh;
  }
  #fullpage #section3 .projects-image img {
    width: 100%;
  }
  #fullpage #section4 h2, #fullpage #section5 h2, #fullpage #section7 h2 {
    font-size: 10vw;
    text-align: center;
  }
  #fullpage #portrait-1, #fullpage #portrait-2, #fullpage #portrait-3 {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #000;
  }
  #fullpage #section9 {
    flex-direction: column;
  }
  #fullpage #section9 .contact-info {
    width: 100%;
    position: absolute;
    top: 0;
    margin-top: 22px;
  }
  #fullpage #section9 .contact-info h2 {
    font-size: 1.6rem;
  }
  #fullpage #section9 .contact-info h3 {
    font-size: 0.8rem;
  }
  #fullpage #section9 .contact-info p {
    font-size: 0.8rem;
    line-height: 30px;
  }
  #fullpage #section9 .contact-image {
    width: 100%;
    height: 40vh;
    position: absolute;
    bottom: 0;
    margin-top: 30px;
  }
  #fullpage #section9 .contact-image img {
    height: 100%;
  }
}
/* NORMAL TABLET MEDIA QUERY*/
@media (min-width: 540px) and (max-width: 768px) {
  #fullpage .header-elements {
    flex-direction: column;
  }
  #fullpage .header-elements .header-text {
    width: 100%;
  }
  #fullpage .header-elements .header-text h2 {
    font-size: 10vw;
  }
  #fullpage .header-elements .header-text p {
    font-size: 3vw;
  }
  #fullpage .header-elements .header-image {
    width: 100%;
    height: 100%;
  }
  #fullpage .header-elements .header-image img {
    width: 100vw;
    height: 70vh;
  }
  #fullpage #section2 p {
    line-height: 55px;
    margin-top: 10%;
  }
  #fullpage #section3 {
    flex-direction: column;
  }
  #fullpage #section3 .projects-header {
    order: 2;
    width: 100%;
    height: 50vh;
  }
  #fullpage #section3 .projects-image {
    order: 1;
  }
  #fullpage #section7 {
    text-align: center;
  }
  #fullpage #section9 {
    width: 100%;
  }
  #fullpage #section9 .contact-info h2 {
    font-size: 3rem;
    margin-bottom: 12%;
  }
  #fullpage #section9 .contact-info h3 {
    margin-left: 6%;
    margin-top: 6%;
  }
  #fullpage #section9 .contact-info p {
    font-size: 1.2rem;
    margin: 5% 6% 2% 6%;
  }
  #fullpage #section9 .contact-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*IPAD MEDIA QUERY*/
@media (min-width: 769px) and (max-width: 1024px) {
  .header-elements {
    flex-direction: column;
  }
  .header-elements .header-text {
    width: 100%;
    text-align: center;
  }
  .header-elements .header-text h2 {
    font-size: 6rem;
  }
  .header-elements .header-text p {
    font-size: 2rem;
    margin-top: 15px;
  }
  .header-elements .header-image {
    width: 100%;
  }
  .header-elements .header-image img {
    width: 100%;
  }

  #section2 p {
    margin-top: 40px;
    font-size: 1.8rem;
    line-height: 55px;
  }

  #section3 {
    flex-direction: column;
  }
  #section3 .projects-header {
    order: 2;
    width: 100%;
    height: 50vh;
  }
  #section3 .projects-header p {
    font-size: 1.6rem;
    line-height: 45px;
    margin-top: 45px;
  }
  #section3 .projects-image {
    order: 1;
  }
  #section3 .projects-image img {
    background-size: contain;
    width: 100%;
  }

  #section7 h2 {
    text-align: center;
    margin: 0 5% 0 5%;
  }

  #section9 {
    flex-direction: column;
  }
  #section9 .contact-info {
    width: 100%;
    height: 50vh;
    position: absolute;
    top: 0;
  }
  #section9 .contact-info p, #section9 .contact-info h3 {
    font-size: 1.4rem;
  }
  #section9 .contact-image {
    width: 100%;
  }
  #section9 .contact-image img {
    width: 100%;
    height: 50vh;
    position: absolute;
    bottom: 0;
  }
}
/**SPECIFIC MEDIA QUERY */
@media (width: 1024px) and (height: 768px) {
  .header-elements {
    flex-direction: row;
  }
  .header-elements .header-text h2 {
    font-size: 4rem;
  }
  .header-elements .header-text p {
    font-size: 1.5rem;
  }

  #section2 p {
    margin-top: 30px;
  }
}
/*SMALL SCREENS LAPTOP */
@media (min-width: 1025px) and (max-width: 1300px) {
  #fullpage .navbar .navbar-links ul li {
    font-size: 1.2rem;
  }
  #fullpage .header-elements .header-text p {
    font-size: 1.7rem;
  }
  #fullpage #section2 h2 {
    font-size: 6rem;
  }
  #fullpage #section2 p {
    font-size: 1.8rem;
    line-height: 55px;
    margin-top: 45px;
  }
  #fullpage #section4 h2, #fullpage #section5 h2, #fullpage #section7 h2 {
    font-size: 6rem;
    text-align: center;
  }
  #fullpage #section9 .contact-info h2 {
    font-size: 3.1rem;
  }
  #fullpage #section9 .contact-info p, #fullpage #section9 .contact-info h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    line-height: 42px;
  }
}
/*LARGE SCREENS*/
@media (min-width: 1600px) {
  #fullpage .navbar .navbar-links ul li {
    font-size: 1.5rem;
    padding: 1rem;
  }
  #fullpage .header-elements .header-text h2 {
    font-size: 7rem;
  }
  #fullpage .header-elements .header-text p {
    font-size: 2.5rem;
  }
  #fullpage #section2 h2 {
    font-size: 6rem;
  }
  #fullpage #section2 p {
    font-size: 2rem;
    line-height: 60px;
    margin-top: 60px;
  }
  #fullpage #section3 h2 {
    font-size: 6rem;
  }
  #fullpage #section3 p {
    font-size: 2.5rem;
    line-height: 60px;
    margin-top: 50px;
  }
  #fullpage #section4 h2, #fullpage #section5 h2, #fullpage #section7 h2 {
    font-size: 6rem;
  }
  #fullpage #section9 .contact-info h2 {
    font-size: 4rem;
  }
  #fullpage #section9 .contact-info h3, #fullpage #section9 .contact-info p {
    font-size: 1.8rem;
    line-height: 55px;
  }
}/*# sourceMappingURL=main.css.map */