@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: Oswald, sans-serif;
  color: white;
  background-color: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* navbar */
.menu-btn {
  text-decoration: none;
  position: fixed;
  left: 86%;
  top: 15px;
  z-index: 3;
  border: none;
  background-color: rgba(255, 255, 255, 0);
}
.menu-btn-hide {
  display: none;
}
.menu-btn:hover {
  cursor: pointer;
}
.navbar {
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  background-color: #191919;
  height: 200px;
  position: fixed;
  display: none;
  z-index: 2;
  opacity: 0;
  transform: translateY(-90%);
}
.navbar-show {
  display: flex;
  animation: navSlide 0.3s ease forwards;
}
@keyframes navSlide {
  from {
    opacity: 0;
    transform: translateY(-90%);
  }

  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.navbar .close {
  position: relative;
  left: 38%;
  top: -10%;
  border: none;
  background: none;
}
.close:hover {
  cursor: pointer;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: white;
}
.navbar .info {
  height: 30%;
  text-align: center;
  font-family: poppins;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 5px;
  gap: 30px;
  letter-spacing: 5px;
  font-weight: 200;
  font-size: clamp(16px, 1.2rem, 28px);
}

/* main */

.sec {
  position: relative;
  padding: 0;
}
.dis {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  letter-spacing: 10px;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  text-align: center;
}
.main-img {
  filter: brightness(50%);
  width: 100%;
  display: block;
}
.main {
  display: flex;
  flex-direction: column;
}
/* more */
.more {
  padding-top: 50px;
  background-color: #191919;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.more1-show {
  display: flex;
  animation: SlideIn 0.5s ease forwards;
}

@keyframes SlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.more1 {
  opacity: 0;
  transform: translateY(-20px);
}
.list {
  padding: 7%;
  display: none;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  font-family: poppins;
  font-weight: 200;
  opacity: 0;
  transform: translateY(-20px);
}
.list1 {
  padding: 7%;
  display: none;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  font-family: poppins;
  font-weight: 200;
  opacity: 0;
  transform: translateY(-20px);
}

.list-show {
  display: flex;
  animation: SlideIn 0.5s ease forwards;
}

.less-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-left: 2px;
  text-align: center;
  font-family: poppins;
  font-weight: 100;
  color: white;
  border: 1px solid;
  font-size: 22px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 1s ease;
}
.less-btn:hover {
  cursor: pointer;
  background-color: #0e0d0dd3;
  border: 1px solid #464141d3;
}
.more-btn1 {
  padding-right: 3px;
}
.down-btn {
  border: none;
  rotate: 90deg;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-left: 2px;
  text-align: center;
  font-family: poppins;
  font-weight: 300;
  color: white;
  font-size: 34px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 1s ease;
}
.down-btn:hover {
  cursor: pointer;
  font-size: 30px;
  transform: translate(5px);
}

.fr1 {
  width: 1630px;
  min-width: 50%;
}
.fr2 {
  width: 700px;
  min-width: 20%;
}
.fr3 {
  width: 700px;
  min-width: 20%;
}

.about-info {
  margin: 0;
  font-size: 12vw;
}
.about-more {
  font-size: 2vw;

  font-family: poppins;
  font-weight: 200;
  letter-spacing: 2px;
}
.img-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}
.img-in {
  flex: 1 1 calc(33% - 20px);
  max-width: calc(47% - 50px);
  box-sizing: border-box;
  position: relative;
  margin-left: 30px;
}
.img-holder .img-in img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hol-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hol-1 .head {
  letter-spacing: 1px;
  position: relative;
  bottom: 50%;
}
.hol-1 .ct {
  margin-top: 50px;
  display: flex;
  gap: 10vw;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.hol-1 .ct .link {
  width: 25%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hol-1 .ct .link:hover {
  cursor: pointer;
}
.hol-1 .ct .link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.link:hover .on-show {
  opacity: 1;
}
.hol-2 {
  width: 100%;
  display: flex;
  gap: 50px;
}
.section-1 {
  width: 100%;
}
.section-2 {
  display: flex;
  flex-direction: column;
}
.form-1 {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  width: 90%;
}
.form-1 .f-name {
  width: 47%;
  padding: 10px 5px 5px 15px;
  font-family: poppins;
  background-color: #191919;
  font-size: 1rem;
}
.form-1 .l-name {
  width: 47%;
  padding: 10px 5px 5px 15px;
  font-family: poppins;
  background-color: #191919;
  font-size: 1rem;
}
.form-1 .email {
  width: 47%;
  padding: 10px 5px 5px 15px;
  font-family: poppins;
  font-size: 1rem;
  background-color: #191919;
}
.form-1 .phone {
  width: 47%;
  padding: 10px 5px 5px 15px;
  font-family: poppins;
  font-size: 1rem;
  background-color: #191919;
  text-decoration: none;
}
.form-1 .phone::-webkit-inner-spin-button,
.form-1 .phone::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-1 .text {
  width: 100%;
  padding: 10px 5px 5px 15px;
  font-size: 1rem;
  height: 100px;
  font-family: poppins;
  resize: none;
  background-color: #191919;
}
.input {
  border: 1px solid #ccc;
  margin-block: 10px;
  color: white;
}
.input:focus {
  outline: none;
  border: 1px solid #5d5d5d;
}
.input:hover {
  border: 1px solid #5d5d5d;
}
.form-btn {
  margin-top: 20px;
  font-family: poppins;
  font-weight: 200;
  background-color: #191919;
  border: 1px solid rgb(170, 170, 170);
  color: white;
  font-size: 1.1rem;
  padding-block: 7px;
  width: 30%;
  transition: all 0.5s;
}
.form-btn:hover {
  cursor: pointer;
  background-color: rgb(170, 170, 170);
  color: #000000;
}
.list5{
  display: flex;
  justify-content: center;
}
.work{

}
.upwork{
  font-size: 2vw;
  font-family: poppins;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.upwork:hover{
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgb(114, 0, 0);
  letter-spacing: 5px;

}

/* video section */
.vids {
  width: 100%;
  display: flex;
  overflow: hidden;
  filter: brightness(80%);
}
.vids video {
  width: 100%;
}
.vid-btn {
  display: flex;
  align-items: center;
  color: white;
  font-family: poppins;
  font-weight: 200;
  font-size: 1rem;
  background: none;
  text-decoration: 1px underline;
  text-decoration-skip-ink: none;
  border: none;
  transition: all 0.3s ease;
}
.vid-btn:hover {
  cursor: pointer;
  opacity: 0.7;
}
.playicon {
  width: 32px;
}
.vid-display {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #000000d5;
  z-index: 999;
  opacity: 0;
  transform: translateX(100%);
}
.vid-display-show {
  display: flex;
  animation: vidslide1 0.3s ease forwards;
}
.playtext {
  font-size: 3vw;
}
@keyframes vidslide1 {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
.closevid {
  border: none;
  background: none;
  position: relative;
  left: 40%;
  bottom: 5%;
}
.closevid:hover {
  cursor: pointer;
}
.watch {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.video-sec1 {
  width: 95vw;
  height: 100%;
  display: flex;
}
.video-sec1-hide {
  display: none !important;
  opacity: 0;
  transform: translateX(-100%);
  animation: VideoSlide 0.5s ease forwards;
}
.video-sec1-show {
  display: flex;
  opacity: 0;
  transform: translateX(-100%);
  animation: VideoSlide 0.5s ease forwards;
}
.video1 {
  width: 67%;
  height: 100%;
}
.vid-info {
  font-family: poppins;
  font-weight: 300;
  width: 33%;
  height: 100%;
  font-size: 1vw;
  overflow-y: scroll;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.356);
}
.video-sec2 {
  width: 95vw;
  height: 100%;
  display: none;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
}
.video-sec2-show {
  display: flex;
  animation: VideoSlide 0.5s ease forwards;
}
.video-sec2-hide {
  display: none;
  opacity: 0;
  transform: translateX(-100%);
  animation: VideoSlide 0.5s ease forwards;
}
@keyframes VideoSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.prev-btn {
  margin-left: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 5vw;
  font-family: poppins;
  font-weight: 100;
  transition: all 0.5s ease;
}
.prev-btn:hover {
  cursor: pointer;
  transform: translateX(-5px);
}
.next-btn {
  margin-right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 5vw;
  font-family: poppins;
  font-weight: 100;
  transition: all 0.5s ease;
}
.disnone {
  display: none;
}
.next-btn:hover {
  cursor: pointer;
  transform: translateX(5px);
}

/* footer section */
footer {
  text-align: center;
  background-color: #191919;
}
 h1 {
  margin-top: 50px;
  font-size: 10vw;
  font-weight: 400;
}
.media a {
  color: #ffffffec;
  font-size: 2vw;
  font-weight: 100;
  letter-spacing: 2px;
  margin-inline: 20px;
}

.credit {
  font-weight: 100;
  font-size: 2vw;
  color: #b3b3b3;
  text-decoration: underline;
  letter-spacing: 3px;
}
hr{
  border: none;
  height: 4px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  width: 80%;
}


@media (max-width: 900px) {
  .video-sec1 {
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .video-sec2 {
    padding: 10px;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
  }
  .video-sec2-show {
    display: flex;
    animation: VideoSlide 0.5s ease forwards;
  }
  .video-sec2-hide {
    display: none;
    opacity: 0;
    transform: translateX(-100%);
    animation: VideoSlide 0.5s ease forwards;
  }
  .vid-info {
    font-family: poppins;
    font-weight: 300;
    width: 67%;
    height: 70%;
    font-size: 2vw;
    overflow-y: scroll;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.356);
  }
}

@media (max-width: 700px) {
  .navbar {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    background-color: #191919;
    position: fixed;
    display: none;
    z-index: 2;
    opacity: 0;
    transform: translateY(-90%);
  }
  .navbar-show {
    display: flex;
    animation: navSlide 0.3s ease forwards;
  }
  @keyframes navSlide {
    from {
      opacity: 0;
      transform: translateY(-90%);
    }
  
    to {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  .navbar .info {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 5px;
    gap: 50px;
    letter-spacing: 5px;
    font-weight: 200;
    font-size: clamp(16px, 1.2rem, 28px);
  }
.video1{
  width: 100%;
}
  .vid-info {
    font-family: poppins;
    font-weight: 400;
    width: 100%;
    height: 50%;
    font-size: 2.5vw;
    overflow-y: scroll;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.356);
  }
  .prev-btn {
    margin-left: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 5vw;
    font-family: poppins;
    font-weight: 100;
    transition: all 0.5s ease;
  }

  .next-btn {
    margin-right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 5vw;
    font-family: poppins;
    font-weight: 100;
    transition: all 0.5s ease;
  }
  .list1 {
    flex-direction: column;
    width: 100%;
  }
  .fr1 {
    width: 330px;
    min-width: 30%;
  }
  .fr2 {
    margin-top: 30px;
    width: 430px;
    min-width: 30%;
  }
  .fr3 {
    margin-top: 30px;
    width: 430px;
    min-width: 30%;
  }
  .hol-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .playicon {
    width: 42px;
  }
  .playtext {
    font-size: 4vw;
  }
  .down-btn {
    padding-top: 3px;
    padding-left: 2px;
    font-size: 24px;
    width: 30%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0);
    transition: all 1s ease;
  }
  .less-btn {
    padding-top: 3px;
    padding-left: 2px;
    text-align: center;
    font-size: 22px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
  }
  .about-info {
    margin: 0;
    font-size: 10vw;
  }
  .about-more {
    font-size: 3vw;
    font-family: poppins;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .list {
    padding: 7%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-family: poppins;
    font-weight: 200;
  }
}
