*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  overflow: hidden;
}

.hamburger {
  position: fixed;
  right: 1%;
  top: 1%;
  border: none;
  background: red;
  z-index: 100;
  height: 5vh;
  width: 100px;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}
.hamburger:hover {
  cursor: pointer;
}

.mobile-nav {
  display: block;
  position: relative;
  height: 0;
}
.mobile-nav h2 {
  position: fixed;
  top: 1%;
  left: 1%;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  -webkit-margin-before: 0em;
          margin-block-start: 0em;
}
.mobile-nav nav {
  margin: auto;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-nav nav p:hover {
  text-decoration: underline;
  cursor: pointer;
}

header {
  display: none;
}

.mobile-menu {
  transform: translateX(-100%);
  opacity: 0;
}

.show {
  transform: translateX(0);
  opacity: 1;
  background: white;
  width: 100%;
  height: 100vh;
  position: absolute;
  transition: transform 0.1s ease, opacity 0.5s ease;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

li {
  list-style: none;
}

.container,
.container2 {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  -webkit-clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
          clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
  transition: -webkit-clip-path 1s;
  transition: clip-path 1s;
  transition: clip-path 1s, -webkit-clip-path 1s;
}
.container .img,
.container2 .img {
  background: url("../6.jpg");
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  height: 100vh;
}
.container .content,
.container2 .content {
  position: absolute;
  z-index: 1;
  display: grid;
  place-content: center;
  height: 100vh;
  width: 100%;
  color: #d95d39;
}
.container .content h1,
.container2 .content h1 {
  font-size: clamp(5rem, 7vw, 10rem);
  background: rgba(0, 0, 0, 0.1);
  width: 100vw;
  height: 100vh;
  display: grid;
  place-content: center;
  font-family: "Noto Sans", sans-serif;
}

.container2 {
  z-index: -1;
}
.container2 .img {
  background: url("../5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.btn {
  color: white;
  z-index: 100;
  position: absolute;
  bottom: 20%;
  left: 45%;
  background: red;
  line-height: 2;
  border: none;
  padding: 0.5% 1%;
  font-size: 1.75rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  transform: translateY(500px);
}
.btn:hover {
  cursor: pointer;
  background: rgb(255, 212, 0);
  color: black;
  transition: all 0.25s ease;
}

@media screen and (min-width: 950px) {
  .mobile-nav {
    display: none;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.75rem;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
  }

  nav {
    gap: 10%;
    display: flex;
    justify-content: space-evenly;
  }
  nav p {
    color: rgba(255, 255, 255, 0.85);
  }
  nav p:hover {
    color: rgb(255, 255, 255);
    cursor: pointer;
  }
}/*# sourceMappingURL=main.css.map */