/* Global Styles */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
  background-color: #0f0f0f;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #fff;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-row {
  flex-direction: row;
}



header {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top-nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: -110%;
  z-index: 50;
  transition: all 650ms ease-in;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.top-nav h6 {
  font-size: 1.5rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
}

.first,
.second,
.third {
  margin-bottom: 4rem;
}

.nav-link {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  transition: color 0.5s ease-in-out;
}

.nav-link.active {
  text-decoration: line-through;
}

.top-nav.open {
  top: 0;
}

.menu-toggler {
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background: rgba(34, 34, 34, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
  z-index: 1500;
  transition: transform 650ms ease-out;
}

.menu-toggler.open {
  transform: rotate(-45deg);
}

.bar {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.1);
  width: 100%;
  height: 5px;
  border-radius: 0.8rem;
}

.bar.half {
  width: 50%;
}

.bar.start {
  transform-origin: right;
  transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.open .bar.start {
  transform: rotate(-450deg) translateX(0.8rem);
}

.bar.end {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.open .bar.end {
  transform: rotate(-450deg) translateX(-0.8rem);
}

.btn {
  width: 130px;
  padding: 5px;
  border: 1px solid #fff;
  position: fixed;
  top: 20px;
  right: 20px;
  overflow: hidden;
  z-index: 49;
  font-size: 1.5rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid transparent;
  transition: all 450ms ease-in;
  z-index: -1;
}

.btn:hover {
  color: #333;
  transition: all 650ms ease-in;
  border: 1px solid #fff;
}

.btn:hover::before {
  left: 0;
  border: 1px solid transparent;
}

.logo h1 {
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  color: white;
  position: absolute;
  top: 22px;
  left: 70px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0.9;
}

.logo h1 a {
  color: white;
}

.logo h1 span {
  text-transform: none;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

/* PROJECT STYLES */

section {
  overflow: hidden;
}

/* INTRO */

.main-section {
  height: 100vh;
}

.main-intro h6 {
  font-size: 1.3rem;
  letter-spacing: 1.5px;
}

.main-intro h1 {
  font-size: 2rem;
}

.intro h5 {
  text-transform: uppercase;
  font-size: 2rem;
}

p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 0 black;
}

.arrow {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow span {
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}
.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}
.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

/* FIRST APPROCH */

.row h3 {
  font-size: 2rem;
  position: relative;
}

.row h3::before,
.main-intro h1::before,
.next-img h6::before {
  width: 70%;
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.row h4 {
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* VISUAL PROPOSAL SECTION */

.browser-header {
  border: rgba(255, 255, 255, 0.2) solid 1px;
  border-radius: 5px 5px 0px 0px;
  height: 38px;
  width: 100%;
  position: relative;
}
.browser-header:before {
  content: "";
  position: absolute;
  width: 299px;
  height: 26px;
  background: url("../img/browser-1.png") center no-repeat;
  bottom: 0;
  left: 15px;
}

.browser-header:after {
  content: "";
  position: absolute;
  right: 15px;
  width: 18px;
  height: 18px;
  background: url("../img/browser-2.png");
  bottom: 7px;
}

.main-browser {
  position: relative;
}

.main-browser:before {
  height: 100%;
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.main-browser:after {
  height: 100%;
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.thanks,
.next-img {
  text-align: center;
}
/* RESPONSIVE */

.responsive-image {
  position: relative;
}

.responsive-image img {
  width: 40%;
}

#img-2 {
  width: 25%;
  position: absolute;
  bottom: 0;
  left: 12%;
}

#img-3 {
  width: 36%;
  position: absolute;
  bottom: -1%;
  right: 10%;
}

/* TYPOGRAPHY */

.typography {
  height: auto;
}

.font-name {
  font-size: 2rem;
}

.abc {
  letter-spacing: 1rem;
  text-align: justify;
  line-height: 3rem;
  font-size: 1.5rem;
}

.columns {
  width: 100%;
}

.color-t {
  background: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  color: #353535;
  margin-bottom: 1em;
  margin-left: 1em;
  padding: 12.8rem 6rem 0.9rem;
  position: relative;
  text-transform: uppercase;
}
.color-t:after {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 45px;
  content: "";
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2) inset;
}

/* FOOTER SECTION */

.footer {
  width: 100%;
  height: 60vh;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.thanks {
  height: 30vh;
}

.thanks h4 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #333;
  font-weight: 700;
}

.thanks h5 {
  color: #6c6b6a;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 2;
}

.pulse {
  width: 35px;
  height: auto;
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.next-img {
  width: 100vw;
  height: 30vh;
  position: absolute;
  bottom: 0;
  left: 0;
}

.next-img {
  background-color: #000000;
  position: relative;
}

.next-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.next-img h5 {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.next-img h6 {
  position: relative;
}

.next-img h6 a {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 0 black;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
