:root {
  --secondary-color: #d4955a;
  --contrast-color: #e97123;
}

@font-face {
  font-family: "primaryfont";
  src: url("../fonts/Shaky_Hand_Some_Comic_3D.otf");
  font-weight: 400;
}

@font-face {
  font-family: "secondaryfont";
  src: url("../fonts/REM-VariableFont_wght.ttf");
}

@font-face {
  font-family: "boldfont";
  src: url("../fonts/Shaky_Hand_Some_Comic_bold.otf");
}

@font-face {
  font-family: "latobold";
  src: url("../fonts/Lato-Black.ttf");
}

@font-face {
  font-family: "EdWoodMovies";
  src: url("../fonts/EdWoodMovies.ttf");
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

/* section{
  overflow-x: hidden;
} */

body {
  font-family: 'latobold';
  /* background-color: #d4955a; */
  background: url('../images/herobg.webp') center center no-repeat;
  background-size: cover;
  backdrop-filter: brightness(70%);

  height: 100vh;
  overflow-y: hidden;
}

p {
  font-family: 'latobold';
}

.main {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

/* section{
  overflow-x: hidden;
} */
#hero {
  width: 100%;
  /* min-height: 100vh; */
  padding: 20px 50px 50px;
  position: relative;
  overflow: hidden;
  transition: all 400ms linear;
}

.htbox {
  backdrop-filter: blur(1px);
  width: 100%;
  display: flex;
  max-width: 1000px;
  justify-content: space-between;
  align-items: center;
}

.herotitle {
  /* width: 100%; */
  height: 80px;
  overflow: hidden;
}

#hero h1 {
  font-size: 70px;
  /* line-height: 200px; */
  color: var(--contrast-color);
  letter-spacing: 10px;
  width: 100%;
  text-align: center;
  -webkit-text-stroke: 2px var(--contrast-color);
  animation: heroSlideUp .8s ease-in-out 1;
  transition: all 400ms linear;
  font-family: 'boldfont';
  text-shadow: 4px 4px 0 white;
  /* text-shadow: 3px 1px 1px #4af7ff, 2px 2px 1px #165bfb, 4px 2px 1px #4af7ff,
    3px 3px 1px #165bfb, 5px 3px 1px #4af7ff, 4px 4px 1px #165bfb,
    6px 4px 1px #4af7ff, 5px 5px 1px #165bfb, 7px 5px 1px #4af7ff,
    6px 6px 1px #165bfb, 8px 6px 1px #4af7ff, 7px 7px 1px #165bfb,
    9px 7px 1px #4af7ff; */

}


@keyframes heroSlideUp {
  0% {
    transform: translateY(200px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes scalee {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

.herotext {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

.herorimg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  margin: 0 auto;
  padding: 10px 10px 0;
  box-shadow: 0 5px 0 var(--contrast-color);
  animation: scaleup 1s linear;
  display: flex;
  justify-content: center;

}

.herorimg img {
  width: 70px;
  height: auto;
  object-fit: cover;
  transition: all 400ms linear;


}

@keyframes scaleup {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}


.animateEl.t0.t1 {
  transform: translateY(200px);
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.animateEl.t0.t2 {
  transform: translateY(-200px);
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.animateEl.t0.visible {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.animateEl.slidefromleft {
  transform: translateX(-200px);
  opacity: 0;
}

.animateEl.slidefromleft.visible {
  transform: translateX(0);
  opacity: 1;
}

.animateEl.slidefromright {
  transform: translateX(200px);
  opacity: 0;
}

.animateEl.slidefromright.visible {
  transform: translateX(0);
  opacity: 1;
}


.maincontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  max-width: 1400px;
  margin: 70px auto 0;
}

.maincontent h2 {
  font-size: 70px;
  line-height: 70px;
  text-align: center;
  color: white;
  font-family: 'boldfont';
  margin-bottom: 10px;
  text-shadow: -5px 5px #e97123;
}

.editor {
  width: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.imagecont {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  /* margin-top: 50px; */
  transform: translateY(-20px);

}

.imagebox {
  background: rgba(255, 255, 255, 0.459);
  /* border: 1px solid black; */
  border-radius: 10px;
  height: 420px;
  width: 450px;
  min-width: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  /* max-width: 100%; */
}

.imagecont img {
  width: 650px;
  height: auto;
  position: absolute;
}

#handsImg {
  bottom: -4px;
}

.editbtnscont {
  width: 60%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}


.btnscont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btnscont button {
  /* width: 200px; */
  font-family: 'latobold';
  /* width: 100%; */
  border: 1px solid #ccc;
  font-size: 18px;
  padding: 10px 20px;
  /* background-color: white; */
  text-transform: uppercase;
}



.button-container-2 {
  position: relative;
  /* width: 100px; */
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--contrast-color);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  transition: 0.5s;
  letter-spacing: 1px;
  border-radius: 8px;
}

.button-container-2 button {
  width: 101%;
  height: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  background: var(--contrast-color);
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
}

.button-container-2 button:hover {
  -webkit-animation: ani 0.7s steps(29) forwards;
  animation: ani 0.7s steps(29) forwards;
}

.mas {
  position: absolute;
  color: white;
  text-transform: uppercase;
  text-align: center;
  width: 101%;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  position: absolute;
  font-size: 18px;
  margin-top: 14px;
  overflow: hidden;
  font-weight: bold;
}

@-webkit-keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@-webkit-keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

.edittabsbtnscont .button-container-2.active {
  border: 1px solid #f9b00b;
}

.edittabsbtnscont .button-container-2.active button {
  background: #f9b00b;
  color: #fff;
}


.selectionwrapper {
  height: 500px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.473);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.selectioncont {
  width: 100%;

  height: 100%;
  overflow-y: auto;
}

.selboxcont {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.selboximg {
  width: 130px;
  height: 130px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  background: none;
  border: 3px solid var(--contrast-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

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


.bbtoms {
  width: 100%;
  display: flex;
  /* gap: 30px; */
  /* justify-content: space-evenly; */
}

.qbtnscont {
  width: 40%;
  padding-right: 30px;
  display: flex;
  justify-content: center;
}

.qbtns {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  max-width: 500px;
}

.qbtns .button-container-2 {
  min-width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.qbtns .button-container-2 svg {
  width: 30px;
  height: 30px;
}

.qbtns .button-container-2 .mas {
  margin-top: 5px;
}

.qbtns button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quall {
  width: 100%;
  background-color: #ffffffd9;
  display: flex;
  align-items: center;
}

.quall.active {
  animation: fromRight 300ms linear;
}

.quall.activer {
  animation: fromLeft 300ms linear;
}



.quall p {
  font-size: 20px;
  width: 100%;
  text-align: center;
  color: var(--contrast-color);
}

@keyframes fromRight {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fromLeft {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.morebtnss {
  display: flex;
  gap: 30px;
  width: 60%;
}

.morebtnss .button-container-2 {
  width: 100%;
}

.morebtnss .button-container-2 .mas {
  margin-top: 14px;
}


.btmidle {
  display: none;
}



@media (max-width: 1232px) {
  .editor {
    flex-direction: column;
    gap: 30px;
  }

  .imagecont {
    width: 100%;
  }

  .editbtnscont {
    width: 100%;
  }

  .imagecont h2 {
    margin-bottom: 30px;
  }

  .bbtoms {
    display: none;
  }

  .btmidle {
    display: flex;
    gap: 10px;
  }

  .qbtnscont {
    padding-right: 0;
  }

  .morebtnss {
    gap: 10px;
  }

  .selectionwrapper {
    height: auto;
  }
}

@media (max-width: 800px) {
  .bbtoms.btmidle {
    flex-direction: column;
    gap: 15px;
  }

  .qbtnscont,
  .morebtnss {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #hero {
    padding: 20px 20px 50px;
  }

  .imagebox {
    width: 400px;
    min-width: 100%;
  }
}

@media (max-width: 460px) {
  .morebtnss {
    flex-direction: column;
  }
}


@media (max-width: 400px) {
  .imagecont img {
    width: 500px;
  }

  .imagebox {
    height: 340px;
    width: 100%;
  }
}


@media (max-width: 360px) {
  .imagecont img {
    width: 400px;
  }

  .imagebox {
    height: 260px;
  }
}