@font-face {
  font-family: heading;
  src: url(./vEFF2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6kDXr4.ttf);

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body,
html {
  font-family: 'Arial', sans-serif;
  height: 100%;
  width: 100%;
  background-color: #F8F7F4;
}

main::selection {
  color: red;
}


main {
  width: 100%;
  height: 100vh;

}


.heroContainer {
  width: 100%;
  height: 100%;
}


.heroContainer nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 16.8vh;
  padding: 0 3.4vw;
}

.heroContainer nav .links a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1vw;
}

.links {

  display: flex;
  gap: 2.5vw;
  align-items: center;
  justify-content: center;

}

.signUps {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.links img {

  height: 4vw;
  margin-top: -10px;
}

#Login {
  border: none;
  outline: none;
  font-weight: 600;
}

#signIn {
  background-color: #0D0C22;
  margin-top: 20px;
  color: white;
  font-size: 1.1vw;
  font-weight: 600;
  padding: 1.3vw 2vw;
  outline: none;
  border: none;
  border-radius: 2vw;
}

.signUps input {
  padding: 1.3vw 2vw;
  border-radius: 2vw;
  border: none;
  background-color: #FFFFFF;
}

.links i {
  display: none;
}


.hero {
  width: 100%;
  height: calc(100% - 16.8vh);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3vw;
  padding: 3vw 0 0 0;
}

.hero h2 {
  background-color: #FFDA7A;
  padding: 0.7vw 1.6vw;
  border-radius: 2vw;
  font-size: 1.3vw;
  font-family: heading;
  font-weight: 650;
}

.hero h1 {
  font-size: 5.5vw;
  font-family: heading;
  font-weight: 500;
  line-height: 5.4vw;
}

.hero p {
  font-size: 1.6vw;
}


.scrollerContainer {
  display: flex;
  overflow-x: hidden;
  gap: 26px;
  flex-wrap: nowrap;
}

.scroller {
  width: fit-content;
  flex-shrink: 0;
  height: 59vh;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  padding: 0.5vw;
  overflow: hidden;
  animation: anime;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.scroller .elem {
  flex-shrink: 0;
  width: 22vw;
  height: 100%;
  background-color: yellow;
  border-radius: 3vw;
  overflow: hidden;
  position: relative;
}

.overlay {
  height: 40%;
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 1vw 1.2vw;
  color: white;
  font-weight: 500;
}

.overlay p {
  font-size: 1.5vw;
  font-weight: 500;
}

.overlay div {
  margin-top: 1.7vw;
}

.overlay span {
  padding: 0.5vw 1vw;
  border: 0.5px solid white;
  font-size: 1vw;
  border-radius: 3vw;
}

@keyframes anime {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 30px));
  }
}

.scroller .elem img,
.scroller .elem video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}


section {
  width: 100%;

  padding: 4vw 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section h2 {
  font-size: 4vw;
  font-weight: 200;
  text-align: center;
  margin-bottom: 4vw;
}

section .box {
  width: 26vw;
  height: 25vw;
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  margin: 12px;

}

.hover {
  width: 100%;
  height: 40%;

  bottom: 0;
  background: linear-gradient(rgba(255, 254, 254, 0), rgb(2, 2, 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 1.2vw 0.2vw 1.2vw;
  opacity: 0;
  transition: all linear 0.2s;
}

section .box .boxImg:hover .hover {
  opacity: 1;
}

.hover h6 {
  font-size: 1.52vw;
  color: white;
  font-weight: 100;
}

.hover i {
  background-color: white;
  padding: 10px 12px;
  border-radius: 50%;
}

section .box .boxImg {
  width: 100%;
  height: 85%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

section .box .boxImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section .box .boxFooter {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4e4e4e;
}

section .box .boxFooter img {
  width: 1.8vw;
  border-radius: 50%;
}

.boxFooter i {
  font-size: 1.1vw;
}

section .box .boxFooter p {
  font-size: 1vw;
  color: black;
}

#pro {
  background-color: #828282;
  color: white;
  font-size: 1vw;
  padding: 0.5vw;
  border-radius: 12px;
}

#explore {
  font-size: 1.1vw;
  padding: 1.2vw 1.8vw;
  border-radius: 2vw;
  border: 2px solid black;
  background-color: transparent;
  margin-top: 2vw;
}


.join {
  width: 100%;
  height: 50vh;

  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 3vw;
}

.join h2 {
  font-family: heading;
  font-size: 5vw;
  margin: 0;
  line-height: 5.5vw;
}

.join p {
  font-size: 1.6vw;
  font-weight: 100;
  color: #393939;
  line-height: 3vw;

}

.join .btns {
  gap: 1.5vw;
  display: flex;
}

.join .btns button {
  width: 13vw;
  height: 4.5vw;
  background-color: #0D0C22;
  color: white;
  border: none;
  border-radius: 3vw;
  font-weight: 600;
  font-size: 1.2vw;
}

.join .btns button:last-child {
  background-color: white;
  color: black;
}

.join h6 {
  font-size: 1.6vw;
  font-weight: 300;
  margin-top: 1.5vw;
  color: #393939;
}

.join h6 span {
  text-decoration: underline;
}


.footerScroller {
  width: 100%;
  height: 40vh;
  padding: 1.5vw;
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow: hidden;
}

.wrapper {
  width: fit-content;
  height: 100%;
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  animation-name: marquee;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 34px));
  }
}

.wrapperContainer {
  width: 20vw;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;

}

.wrapperContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

footer {
  width: 100%;
  height: 35vh;
  margin-top: 2vw;
  padding: 2vw 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-part1 {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.footer-part1 img {
  height: 5vw;
  margin-top: -10px;
}

.footer-part1 .icons i {
  font-size: 1.2vw;

}

.footer-part1 div {
  display: flex;
  gap: 2.4vw;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-part1 div a {
  color: black;
  text-decoration: none;
  font-size: 1.2vw;
}

.footer-part2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-part2 div {
  display: flex;
  gap: 1.2vw;
  color: #828282;
}



.join-container span {
  margin: 10px;
}


#moveButton {

  width: 30px;
  margin: 5px;

  height: 30px;
  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  cursor: pointer;


}

#moveButton:hover {
  background-color: #f0f0f0;
}

.more-by-heading-container {
  display: flex;
  justify-content: flex-start;
}

.more-by-heading-container a {
  margin-left: 150vh;
  text-decoration: none;
  color: black
}

.join-upper {
  width: 100%;
  height: 50vh;
  border-top: 2px;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  border-color: black;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.shot-header__container {
  padding: 20px;
  background-color: #f5f5f5;
  text-align: center;
}


.shot-header__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}


.sticky-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;



  top: 0;
  z-index: 999;
}


.sticky-header__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 10px;
}


.sticky-header__user-details {
  flex: 1;
}

.sticky-header__name {
  font-size: 16px;
}

.sticky-header__name a {
  text-decoration: none;
  color: #333;
}


.sticky-header__available {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}


.follow-prompt a {
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}


.sticky-header__actions .btn2 {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sticky-header__actions .btn2:hover {
  background-color: #f0f0f0;
}


@media (max-width: 768px) {
  .shot-header__title {
    font-size: 20px;
  }

  .sticky-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-header__actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }
}

.content-block-container {

  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.content-block {
  width: 100%;

}

.content-block p a {
  font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;

}

.content-block a {
  color: black;
  text-decoration: underline rgb(172, 42, 154);

}

.block-media-wrapper {

  width: 100%;


  aspect-ratio: 4 / 3;

  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progress-bar-container {

  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}

.progress-bar {
  height: 100%;
  background-color: #ff4500;
  width: 20%;

  transition: width 0.2s;
}

.mute-toggle-wrapper {

  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.toggle-button {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-button svg {
  fill: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.sticky-header {

  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 1000;

}

.sticky-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sticky-header__user-container {
  display: flex;
  align-items: center;
  justify-content: start;
}

.sticky-header__avatar {
  margin-right: 15px;
}

.sticky-header__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.sticky-header__team-avatar img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.sticky-header__user-details {
  display: flex;
  flex-direction: column;
}

.sticky-header__name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.sticky-header__name a {
  color: #007bff;
  text-decoration: none;
}

.sticky-header__name a:hover {
  text-decoration: underline;
}

.sticky-header__user-status {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.sticky-header__available {
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.875rem;
  cursor: pointer;
}

.sticky-header__follow {
  margin-left: 10px;
}

.follow-prompt .form-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 0.875rem;
}

.follow-prompt .stripped-btn {
  background-color: transparent;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 0.875rem;
}

.sticky-header__actions {
  display: flex;
  align-items: center;
}

.sticky-header__actions .btn2 {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

.sticky-header__actions .btn2 svg {
  fill: #333;
}

.hide-on-mobile {
  display: block;
}

.show-only-on-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }

  .show-only-on-mobile {
    display: block;
  }
}

.line-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px;
  position: relative;
  width: 90%;
  height: 2px;

  background-color: lightgray;

}

.line-container::before {
  content: '';
  position: absolute;
  top: -40px;

  left: 50%;
  transform: translateX(-50%);
  width: 80px;

  height: 80px;

  background-image: url('https://cdn.dribbble.com/users/17543311/avatars/normal/c9c68958672969d58b038cf8d2447c05.png?1694804202');

  background-size: contain;

  background-repeat: no-repeat;
  background-position: center;


}


.sticky-header__actions {}


@media (max-width: 1024px) {
  .sticky-header__actions {
    display: none;

  }

  .sticky-header__user-container {
    display: none;
  }

  .more-by-heading-container a {
    display: none;
  }
}