@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Concert+One&family=Bungee+Inline&family=IM+Fell+DW+Pica&family=Potta+One&family=Averia+Serif+Libre:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coiny&family=Jersey+10+Charted&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Denk+One&display=swap');

  #motion-path section{
    width: 100%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pathed {
    transition: 0.6s ease-in-out;
    transform: translateY(20%);
    width: 90%;
  }

  body.texture .pathed{
    filter: drop-shadow(2px 2px 2px black);
  }


  .pathed.to100 {
    transform: translate(31dvw, -32dvh);
    width: 16dvw;
  }


/*div.about_nav_wrapper {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    min-height: 55dvh;*/
/*    background: green;*/
    /* width: 100%; */
    /* flex-direction: row; */
/*    flex-wrap: wrap;*/
/*    align-content: center;*/
/*}*/

/*#replace_about_nav_result {*/
/*    padding: 1% 5%;*/
    /* height: 50dvh; */
/*    position: relative;*/
/*}*/


.fade-me-out.htmx-swapping ,.loaded.htmx-swapping {
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.slide-me-out.htmx-swapping {
  transform: translateX(-300px);
  transition: transform 0.4s ease-out;
}

.slide-me-out.htmx-added {
  transform: translateX(-300px);
  transition: transform 0.4s ease-out;
}

.slide-me-in.htmx-swapping {
  transform: translateX(300px);
  transition: transform 0.4s ease-out;
}

.slide-me-in.htmx-added {
  transform: translateX(300px);
  transition: transform 0.4s ease-out;
}

.fade-me-out.htmx-request {
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

@keyframes fade-in {
         from { opacity: 0; }
       }

       @keyframes fade-out {
         to { opacity: 0; }
       }

       @keyframes slide-from-right {
         from { transform: translateY(90px); }
       }

       @keyframes slide-to-left {
         to { transform: translateY(90px); }
       }

       /* define animations for the old and new content */
       ::view-transition-old(slide-it) {
         animation: 180ms cubic-bezier(0.4, 0, 1, 1) both fade-out,
         600ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-left;
       }
       ::view-transition-new(slide-it) {
         animation: 420ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in,
         600ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-right;
       }

       /* tie the view transition to a given CSS class */
       .sample-tra {
           view-transition-name: slide-it;
       }





  @keyframes fade-in-in {
         from { opacity: 0; }
       }

       @keyframes fade-out-out {
         to { opacity: 0; }
       }

       @keyframes slide-from-right-right {
         from { transform: translateY(90px); }
       }

       @keyframes slide-to-left-left {
         to { transform: translateY(90px); }
       }

       /* define animations for the old and new content */
       ::view-transition-old(slide-it-new) {
         animation: 180ms cubic-bezier(0.4, 0, 1, 1) both fade-out-out,
         600ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-left-left;
       }
       ::view-transition-new(slide-it-new) {
         animation: 420ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in-in,
         600ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-right-right;
       }

       /* tie the view transition to a given CSS class */
       .sample-t {
           view-transition-name: slide-it-new;
       }



.about_me-row{

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    user-select:none;
}


 .intro .intro-name {
      width: 90%;
      height: 150px;
      border: 3px groove var(--secondary-color);
      border-radius: 15px;
      margin: 0 auto;
      position: relative;
      background: #310278;
      background: linear-gradient(60deg, rgba(49, 2, 120, 1) 0%, rgba(78, 19, 117, 1) 50%, rgba(6, 17, 97, 1) 100%);
    }

    .intro .intro-name h2 {
      font-family: "Patua One", serif;
      font-style: normal;
      text-transform: uppercase;
      font-size: 25px;
      position: absolute;
      top: 10%;
      left: 4%;
      opacity: 0.9;
      word-spacing: 3px;
      color: white;
    }


    /* .intro .intro-name h3 {
      font-family: "Patua One", serif;
      font-style: normal;
      text-transform: uppercase;
      font-size: 23px;
      position: absolute;
      top: 70%;
      left: 5%;
      opacity: 0.8;
      letter-spacing: 1.5px;

    } */




  #do-design {
      width: 90%;
      position: relative;
      margin: 0 auto;
      top: 10px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      font-family: "Coiny", system-ui;
      font-weight: 700;
      font-style: normal;
      opacity: 1;
      /* animation: do-design 1.5s 1s ease-in forwards; */

    }

    @keyframes do-design {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }


    #do-design .i-do {
      font-size: 25px;
      text-transform: uppercase;
      font-weight: 500;
    }

    #do-design .list-fade {
      height: 50px;
      position: relative;
      top: 11.5px;
    }

    #do-design h1,
    #do-design h2,
    #do-design h3 {
      font-size: 23px;
      text-transform: uppercase;
    }

    #do-design h1 span,
    #do-design h2 span,
    #do-design h3 span {
      width: 100%;
      float: left;
      -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
      clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
      transform: translateY(-30px);
      opacity: 0;
      animation: do-design-frames 5s 0.5s ease;


    }

    #do-design h1 span {
      color: var(--secondary-color);
    }

    #do-design h2 span {
      color: var(--secondary-color);
    }


    #do-design h3 span {
      color: var(--secondary-color);
      position: relative;
      top: 0px;
    }


    /* #do-design label {
      animation-name: DE-color-change;
      animation-timing-function: ease-in;
      animation-duration: 5s;
      animation-iteration-count: infinite;
      animation-delay: 1s;
      opacity: 0.9;
    }

    @keyframes DE-color-change {
      20% {
        color: #000000;
        opacity: 1;
      }

      60% {
        color: #000000;
        opacity: 1;
      }

      90% {
        color: #000000;
        opacity: 1;
      }
    } */



    #do-design h2 {
      top: 0;
      position: absolute;
    }

    #do-design h3 {
      top: 0px;
      position: absolute;
    }

    #do-design h1 span {
      animation-delay: 0s;
      opacity: 0;
      -webkit-animation-fill-mode: forwards;
      animation-iteration-count: infinite;
    }

    #do-design h2 span {
      animation-delay: 1.7s;
      -webkit-animation-fill-mode: forwards;
      animation-iteration-count: infinite;
    }

    #do-design h3 span {
      animation-delay: 3.4s;
      -webkit-animation-fill-mode: forwards;
      animation-iteration-count: infinite;
    }

    @keyframes do-design-frames {
      0% {
        transform: translateY(-25px);
        opacity: 0;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
      }

      30% {
        transform: translateY(0);
        opacity: 1;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
      }

      60% {
        transform: translateY(25px);
        opacity: 0;
        -webkit-clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
        clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
      }

      100% {
        transform: translateY(30px);
        opacity: 0;
        -webkit-clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
        clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
      }
    }



 #about-motion-anim {
      position: relative;

    }

    #about-motion-anim section {
      transform: scale(1.2);
    }

    #about-motion-anim section {
      position: fixed;
      top: 0%;
      left: 7%;
      height: 25%;
      z-index: 1;
      opacity: 1;
    }

    @media (min-width:350px) and (max-width:365px) {
      #about-motion-anim section {
        transform: scale(1.3);
      }

      #about-motion-anim section {
        position: fixed;
        width: 90%;
        top: 0%;
        left: 20%;
        height: 25%;
        z-index: 1;
        opacity: 1;
      }
    }

    #about-motion-anim section div {
      width: 20px;
      height: 20px;
      border: 1px solid hsl(300, 94%, 39%);
      border-right: 5px solid hsl(300, 94%, 39%);
      background: hsla(343, 100%, 58%, .3) radial-gradient(circle, hsl(343, 100%, 58%, 1) 3px, hsl(343, 100%, 58%, 0) 3px);
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: monospace, sans-serif;
    }

    #about-motion-anim .about-motion-anim-path {
      offset-path: path('m171.4 130h-151.5c0 0-11.7-0.6-11.8-11.9-0.2-11.3 0-99.4 0-99.4 0 0 0.5-12.7 12.6-12.7 12.2 0 247.9 0 247.9 0 0 0 12.7 0.4 12.7 12.8 0 12.4 0 98 0 98 0 0 1.4 12.7-12.7 12.7');
      position: relative;
      animation: about-motion-anim 10s alternate infinite;

    }




    #about-motion-anim #click:after {
      content: ' forwards';
    }

    #about-motion-anim #click.about-motion-anim-path-out:after {
      content: ' backwards';
    }




    @keyframes about-motion-anim {

      0%,
      100% {
        offset-distance: 0%;
      }

      50% {
        offset-distance: 100%;
      }
    }



/* 

#do-design{
width: 100%;
position: relative;
 display: flex;
	 justify-content: center;
	 align-items: center;
    font-family: "Coiny", system-ui;
  font-weight: 700;
  width: 95%;
  padding-right: 35px;
  top: 300px;
  font-style: normal;
  opacity: 0;
  animation: do-design 1.5s 1s ease-in forwards;
}

@keyframes do-design{
  from{
    opacity: 0;
  }

  to{
    opacity: 1;
  }
}


#do-design .i-do{
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 500;
}

 #do-design .list-fade {
	 height: 100px;
	 position: relative;
	 top: 28px;
}

 #do-design h1, #do-design h2 ,#do-design h3 {
	 font-size: 35px;
	 text-transform: uppercase;
}
 #do-design h1 span, #do-design h2 span ,#do-design h3 span{
	 width: 100%;
	 float: left;

	 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	 transform: translateY(-30px);
	 opacity: 0;
	 animation: do-design-frames 5s 0.5s ease;


}

#do-design h1 span {
	color: #33078b;
}

#do-design h2 span {
	color: #e63707;
}


#do-design h3 span {
	color: #0b9b23;
	position: relative;
	top: 0px;
}


#do-design label{
	 animation-name: DE-color-change;
	 animation-timing-function: ease-in;
	 animation-duration: 5s;
	 animation-iteration-count: infinite;
	 animation-delay: 1s;
	 opacity: 0.9;
}

@keyframes DE-color-change{
		 20%{
		 color: #33078b;
		 opacity: 1;
	}

	 60% {
		 color: #e63707;
		 opacity: 1;
	}

	 90% {
		 color: #0b9b23;
		 opacity: 1;
	}
}



 #do-design h2 {
	 top: 0;
	 position: absolute;
}

 #do-design h3{
	 top: 0px;
	 position: absolute;
}

 #do-design h1 span {
	 animation-delay: 1s;
	 opacity: 0;
	 -webkit-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
	 animation-iteration-count: infinite;
}

 #do-design h2 span {
	 animation-delay: 2.7s;
	 -webkit-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
	 animation-iteration-count: infinite;
}

 #do-design h3 span {
	 animation-delay:4.5s;
	 -webkit-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
	 animation-iteration-count: infinite;
}

 @keyframes do-design-frames {
	 0% {
		 transform: translateY(-30px);
		 opacity: 0;
		 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
		 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	}
	 30% {
		 transform: translateY(0);
		 opacity: 1;
		 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
		 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
	}

	 60% {
		 transform: translateY(30px);
		 opacity: 0;
		 -webkit-clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
		 clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
	}

	100% {
		 transform: translateY(30px);
		 opacity: 0;
		 -webkit-clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
		 clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
	}
} */

#loading-res{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.light #loading-res {
    background-color: whitesmoke;
}

body.dark #loading-res{
    background-color: rgb(17, 15, 50);
}

/*.loader {*/
/*        width: 64px;*/
/*        height: 64px;*/
/*        position: relative;*/
/*        border-radius:20%;*/
/*        background-repeat: no-repeat;*/
/*        background-size: 16px 16px;*/
/*        background-position: left top , left bottom , right top , right bottom;*/
/*        animation: rotate 1.2s linear infinite;*/
/*      }*/
/*      @keyframes rotate {*/
/*        0% {*/
/*          width: 64px;*/
/*          height: 64px;*/
/*          transform: rotate(0deg)*/
/*        }*/
/*        50% {*/
/*          width: 30px;*/
/*          height: 30px;*/
/*          transform: rotate(180deg)*/
/*        }*/
/*        100% {*/
/*          width: 64px;*/
/*          height: 64px;*/
/*          transform: rotate(360deg)*/
/*        }*/
/*      }*/




/*    body.light .loader{*/
/*          background-image:*/
/*          linear-gradient(#000000 16px, transparent 0) ,*/
/*          linear-gradient(#FF3D00 16px, transparent 0) ,*/
/*          linear-gradient(#FF3D00 16px, transparent 0) ,*/
/*          linear-gradient(#000000 16px, transparent 0);*/
/*    }*/

/*    body.dark .loader{*/
/*          background-image:*/
/*          linear-gradient(#FFF 16px, transparent 0) ,*/
/*          linear-gradient(#FF3D00 16px, transparent 0) ,*/
/*          linear-gradient(#FF3D00 16px, transparent 0) ,*/
/*          linear-gradient(#FFF 16px, transparent 0);*/
/*    }*/


/*ul{*/
/*    list-style: none;*/
/*    text-align: left;*/
/*    margin-top: 18px;*/
/*}*/

/*ul li{*/
/*    font-size: 18px;*/
/*    font-weight: 500;*/
/*    font-family: 'Concert One', cursive;*/
/*    letter-spacing: 0.4px;*/
/*    margin-bottom: 10%;*/

/*}*/


/*ul li i{*/
/*    padding: 4px;*/
/*    border-radius: 50%;*/
/*    font-size: 10px;*/
/*    position: relative;*/
/*    top: -4px;*/
/*    background-color: #060608;*/
/*    color: #ffffff;*/
/*}*/

/*body.dark ul li {*/
/*    color: #ffffff;*/
/*}*/

/*body.light ul li {*/
/*    color: #0f0e0e;*/
/*}*/

/*body.dark ul li i{*/
/*   background-color: #ffffff;*/
/*    color: #000000;*/
/*}*/

/*body.light ul li i{*/
/*   background-color: #060608;*/
/*    color: #ffffff;*/
/*}*/

/*hr {*/
/*  background-color: #fff;*/
/*  padding: 0;*/
/*  margin: 80px;*/
/*}*/

body.light .hr-19 {
  border: none;
  height: 10px;
  width:85%;
  background: linear-gradient(-135deg, whitesmoke 5px, transparent ) 0 5px, linear-gradient(135deg, whitesmoke 5px, black 0) 0 5px;
  background-color: whitesmoke;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 10px;
  transform: rotate(180deg);
  margin:0 auto;
}


body.dark .hr-19 {
  border: none;
  height: 10px;
  width:85%;
  background: linear-gradient(-135deg, rgba(17,15,50) 5px, transparent ) 0 5px, linear-gradient(135deg, transparent 5px, #8c8c8c 0) 0 5px;
  background-color: rgba(17,15,50);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 10px;
  transform: rotate(180deg);
   margin:0 auto;
}

.about_nav_col{
    margin-top:5%;
}



.about_nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
  list-style: none;
    font-size: 15px;
    padding:10px 5%;
     margin:0 auto;

}

.about_nav input[type="radio"]{
  display: none;
}

.about_nav #about_nav_indicator{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1000;
}

.about_nav label{
    width: 31%;
    cursor: pointer;
}

.about_nav label div{
  background-color: rgb(109 40 217);
    color: white;
    text-align: center;
    padding: 5px 15px;
    border-radius: 5px;
    font-family: "Patua One", serif;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: small;
    border: 1.5px solid transparent;
    transition:  0.25s ease-out;
    cursor: pointer;
}

.about_nav input[type="radio"]:checked + label div{
   border: 1.5px solid rgb(109 40 217);
    box-shadow: 2px 2px 2px #060606 inset, -1px -1px 1px grey inset;
    transition:  0.25s ease-in;
}






#replace_about_nav_result #email form .form-group{
 width: 93%;
 margin: 0 auto;
}

#replace_about_nav_result #email form .form-group .form-control{
  margin: 15px 0;
  resize: none;
  height: 40px;
  border-radius: 5px;
  font-family: 'Sansita', sans-serif;
  outline: none;
  border: none;
}

body.light #replace_about_nav_result #email form .form-group .form-control{
  background-color:white;
  box-shadow: 0px 0px 1px rgba(74, 72, 72, 0.584);
  color: rgb(0, 0, 0);
}

body.dark #replace_about_nav_result #email form .form-group .form-control,body.texture #replace_about_nav_result #email form .form-group .form-control{
  background-color:rgb(41, 41, 41);
  box-shadow: 0px 0px 1px rgba(206, 201, 201, 0.584);
  color: rgb(255, 255, 255);

}

body.light #replace_about_nav_result #email form .form-group .form-control::placeholder{
  font-size: medium;
  color: rgb(39, 38, 38);
}

body.dark #replace_about_nav_result #email form .form-group .form-control::placeholder,body.texture #replace_about_nav_result #email form .form-group .form-control::placeholder{
  font-size: medium;
  color: rgb(226, 220, 220);
}

body.light #replace_about_nav_result #email form .form-group textarea.form-control{
  height: auto;
   box-shadow: 0px 0px 1px rgba(74, 72, 72, 0.584);
}

body.dark #replace_about_nav_result #email form .form-group textarea.form-control,body.texture #replace_about_nav_result #email form .form-group textarea.form-control{
  height: auto;
   box-shadow: 0px 0px 11px rrgba(0, 0, 0, 0.584)
}

body.light #replace_about_nav_result #email form .form-group textarea.form-control{
  height: auto;
   box-shadow: 0px 0px 1px rgba(74, 72, 72, 0.584);
}

body.dark #replace_about_nav_result #email form .form-group button.form-control,body.texture #replace_about_nav_result #email form .form-group button.form-control{
  height: auto;
  color: rgb(255, 255, 255);
  background-color: rgb(109 40 217);
  border: 1px solid rgb(109 40 217);
  font-size: 18px;
}

body.light #replace_about_nav_result #email form .form-group button.form-control{
  height: auto;
  color: rgb(255, 255, 255);
  background-color: rgb(109 40 217);
  border: 1px solid rgb(109 40 217);
  font-size: 18px;
}



#badge-slider {
      width: 94%;
      height: 40dvh;
      margin-left: 2%;
      padding: 10px 20px;
      overflow-x: scroll;
      display: flex;
      scroll-snap-align: center;
      scroll-snap-type: x mandatory;
      scrollbar-color:  transparent;
      scrollbar-width:none;
    }

    #badge-slider img {
      height: 90%;
      scroll-snap-align: center;
      margin: 0 3%;
      scroll-snap-stop: always;
      border-radius: 10px;
      box-shadow: 1px 1px 5px rgb(181, 178, 178), -1px -1px 5px rgb(149, 147, 147);
    }







/* .intro{

  position: relative;
   overflow:hidden;
    margin-left: 20px;
    margin-top: 5%;

}
 .intro h1 {

	 font-size: 33px;
	 text-transform: uppercase;
   font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}
 .intro h1 span {
	 width: 100%;
	 float: left;
	 padding-top:15px;
	 color: #7f2aff;
}
 .intro h1 span {
	 animation-delay: 0.6s;
	 -webkit-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
}
 .intro h1 span:first-child {
	 animation-delay: 0.7s;
}
 .intro h1 span:last-child {
	 color: #ff0000;
	 animation-delay: 0.5s;
}

 @keyframes titleAnimation {
	 0% {
		 transform: translateY(-50px);
		 opacity: 0;
		 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
		 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	}
	 20% {
		 transform: translateY(0);
		 opacity: 1;
		 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
		 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
	}
	 100% {
		 transform: translateY(0);
		 opacity: 1;
		 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
		 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
	}

} */









.htmx-settling img.img-fluid.fade-me-out {
  opacity: 0;
}




#replace_about_nav_result{
    padding:5% 2%;
     height: 50dvh;
    position: relative;
}


#replace_about_nav_result .outer{

  font-family: "Patua One", serif;
  font-style: normal;
  margin-top: 10px;
}

#replace_about_nav_result .outer hr{
  width: 90%;
  margin: 5% auto;
}

body.light #replace_about_nav_result .outer hr{
  color:rgba(0, 0, 0, 0.462);

}

body.dark #replace_about_nav_result .outer hr,body.texture #replace_about_nav_result .outer hr{
  color:rgba(255, 255, 255, 0.462);
}

#replace_about_nav_result .outer .address{
  border-radius: 5px;
  display: flex;
  margin: 6.5% 0;
}

#replace_about_nav_result .outer .address .icon{
  width: 15%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
    border-radius: 5%;
}

body.light #replace_about_nav_result .outer .address .icon{
   border-right: 2px solid rgba(0, 0, 0, 0.75);
}

body.dark #replace_about_nav_result .outer .address .icon{
   border-right: 2px solid rgba(255, 255, 255, 0.75);
}

#replace_about_nav_result .outer .address .icon i{
  font-size: 21px;
  padding: 2px 10px 10px;
  color: rgb(130, 64, 238);
}

#replace_about_nav_result .outer .address .icon i.fa-envelope{
  font-size: 19px;
}

#replace_about_nav_result .outer .address .detail{
  margin-left: 5%;
}

#replace_about_nav_result .outer .address .detail h3{
   font-size: 20px;
   font-weight: 500;
   opacity: 0.8;
   letter-spacing: 0.5px;
}

#replace_about_nav_result .outer .address .detail h4{
   font-size: 16px;
   font-weight: normal;
   opacity: 0.5;
}


body.light #replace_about_nav_result .outer  a{
  text-decoration: none;
   color: black;
}

body.dark #replace_about_nav_result .outer  a,body.texture #replace_about_nav_result .outer  a{
  text-decoration: none;
  color: white;

}


body.light #replace_about_nav_result .outer .address .detail{
    color: black;
}

body.dark #replace_about_nav_result .outer .address .detail,body.texture #replace_about_nav_result .outer .address .detail{
    color: white;
}

@media (min-width : 420px) and (orientation: landscape)  {

  #motion-path section{
    width: 100%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pathed {
    transition: 0.6s ease-in-out;
        transform: translateY(20%);
    width: 90%;
  }


  .pathed.to100 {
    transform: translate(10dvw, -37dvh);
    width: 16%;
  }
}

@media screen and (max-width : 430px) and (max-height : 600px){

     .intro h1 {

	 font-size: 3dvh;
	 text-transform: uppercase;
   /* transform:  rotate(355deg); */
   font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}
 .intro h1 span {
	 width: 100%;
	 float: left;
	 padding-top:4dvh;
	 color: #7f2aff;
	 -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	 clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	 transform: translateY(-50px);
	 opacity: 0;
	 animation-name: titleAnimation;
	 animation-timing-function: ease;
	 animation-duration: 4s;
}


  .about_nav {
        padding: 5px 8%;
        margin: 0 auto;
    }

    .about_nav label{
    width: 32%;
}


.about_nav label div {
        padding: 3px 2px;
        font-size: 2dvh;
    }


ul {

        margin-top: 2dvh;
    }

 ul li {
        font-size: 3dvw;
        font-weight: 500;
        font-family: 'Concert One', cursive;
        letter-spacing: 0.4px;
        margin-bottom: 2dvh;
        margin-left: -20px;
    }

ul li i {
        padding: 4px;
        border-radius: 50%;
        font-size: 1dvh;
        position: relative;
        top: -3px;
    }


#replace_about_nav_result {
    padding: 0px 5%;
}


#replace_about_nav_result .outer{
  margin-top: 2dvh;
}





#replace_about_nav_result .outer .address .icon i{
  font-size: 3dvw;
  padding: 2px 10px 10px;
  color: rgb(130, 64, 238);
}

#replace_about_nav_result .outer .address .icon i.fa-envelope{
  font-size: 3dvw;
}

#replace_about_nav_result .outer .address .detail{
  margin-left: 5%;
}

#replace_about_nav_result .outer .address .detail h3{
   font-size: 4dvw;
   font-weight: 500;
   opacity: 0.8;
   letter-spacing: 0.5px;
}

#replace_about_nav_result .outer .address .detail h4{
   font-size: 3dvw;
   font-weight: normal;
   opacity: 0.5;
}





}



 @media (min-width : 1080px){

         /* .about_me-row .col-lg-6,.about_me-row .col-xl-6 {
        width: 40%;

    }

div.about_nav_wrapper{
    height:45dvh;
    width:90%;
}


    .about_nav label div{
  background-color:rgb(109 40 217) ;
  color: white;
  text-align: center;
  padding: 5px 25px;
  border-radius: 5px;
 font-family: "Patua One", serif;
  font-style: normal;
  text-transform :uppercase;
  letter-spacing:0.5px;
  font-size:small;
}

      .about_nav {
        padding: 0px 5%;
      }


      #replace_about_nav_result .outer hr {
    width: 90%;
    margin: 4% auto;
} */

    /*.intro {*/
    /*    width: auto;*/
    /*    overflow: hidden;*/
    /*    margin-left: 0px;*/
    /*    margin-top: -6%;*/
    /*}*/

    /*    .intro h1 {*/
    /*    font-size: 7dvh;*/
    /*}*/

 }

  @media (min-width : 480px) and (max-width: 1080px) and (orientation: landscape) {

/*.tabs {*/
/*    width: 50%;*/
/*    margin-left: 25%;*/
/*    padding: 0.75rem 0px;*/
/*}*/

.about_me-row{


    min-height: auto;

}

.about_me-row .col-md-6{
  width: 40%;
  margin-left:0% ;
  margin-top:-5%;
}


 .about_nav {
        padding: 0px 5%;
        margin-bottom: 5%;
      }


.about_nav label div{
  background-color:rgb(109 40 217) ;
  color: white;
  text-align: center;
  padding: 5px 25px;
  border-radius: 5px;
 font-family: "Patua One", serif;
  font-style: normal;
  text-transform :uppercase;
  letter-spacing:0.5px;
  font-size: x-small;
}

#replace_about_nav_result {
     padding: 0px 5% 0;
    height: auto;
    position: relative;
}



        .intro h1 {
        margin: 0% 0 0 10%;
    }

    .intro h1 span{
        padding: 12px 0;
    }

ul{
  margin-top: 0px;
}

ul li {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Concert One', cursive;
    letter-spacing: 0.4px;
    margin-bottom:7%;
    margin-left: -30px;
}

ul li i {
 font-size: 7px;
}

#replace_about_nav_result .outer .address{
  margin-left: -5%;
}


#replace_about_nav_result .outer .address .icon i {
    font-size: 15px;
}

#replace_about_nav_result .outer .address .icon i.fa-envelope {
    font-size: 14px;
}

#replace_about_nav_result .outer .address .detail h3 {
    font-size: 13px;
    margin-bottom: 5px;
}

#replace_about_nav_result .outer .address .detail h4 {
    font-size: 11px;
    font-weight: normal;
    opacity: 0.5;
    margin-bottom: 4px;
}

#replace_about_nav_result .outer hr {
    color: rgba(0, 0, 0, 0.462);
    margin: 2dvh;
}





#replace_about_nav_result #email form .form-group{
 width: 100%;
 margin: 0 auto;
}


#replace_about_nav_result #email form .form-group .form-control{
  margin: 3% 0;
  height: 30px;
  font-size:small;
}

#replace_about_nav_result #email form .form-group textarea.form-control{
   width: 100%;
  height: 50px;
  font-size:small;
  resize: none;
}

body.light #replace_about_nav_result #email form .form-group .form-control::placeholder{
  font-size: small;
}

body.dark #replace_about_nav_result #email form .form-group .form-control::placeholder,body.texture #replace_about_nav_result #email form .form-group .form-control::placeholder{
  font-size: small;
}


#replace_about_nav_result #email form .form-group button.form-control{
  font-size: 15px;
  padding: 0px 0;
}


#replace_about_nav_result #email form .form-group textarea.form-control{
    height: 60px;
}


    }




.circle-group-1{
  display: flex;
  left: 0;
   position: absolute;
  z-index: 100;
  top: -2%;

}

.circle-group-2{
  display: flex;
  right: 0;
  top: -2%;
  position: absolute;
  z-index: 100;
  transform: rotate(180deg);
}



@keyframes scaling{
  0%, 100%{
    opacity: 0.1;
    background-color: #ffffff8e;
  }
  50%{
    opacity: 1;
    background-color: #ffffff;
  }
}

.circle-outer div {
    height: 13px;
    width: 13px;
    border-radius:50%;
    background-color: transparent;
        animation: scaling 2.5s  linear infinite alternate;
    margin:15px 5px;
    opacity: 0;
}

.circle-outer div:nth-child(0){
  animation-delay:0s;
   transform: scale(1);
}
.circle-outer div:nth-child(1){
  animation-delay:0.2s;
   transform: scale(0.9);
}
.circle-outer div:nth-child(2){
  animation-delay:0.4s;
   transform: scale(0.8);
}
.circle-outer div:nth-child(3){
  animation-delay:0.6s;
   transform: scale(0.7);
}
.circle-outer div:nth-child(4){
  animation-delay:0.8s;
   transform: scale(0.5);
}
.circle-outer div:nth-child(5){
  animation-delay:1s;
   transform: scale(0.3);
}
































main.htmx-swapping{

     transform: rotateX(60deg) rotateY(60deg);
     opacity:0;
  transition: opacity 1s ease-in;

}








@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }

  100%{
    transform: rotate(360deg);
  }
}




body main{
  color: black;
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 390px;
  height: 100dvh;
  display:flex;
  justify-content: center;
  align-items: center;
  overflow:hidden;
}

body main.open,body main.close{
  overflow: hidden;
}
    .container{
        height: 100%;
        width: 100vw;
    }


       body.dark main,body.texture main {
   color: white;
   position: relative;
  z-index: 100;

  /*overflow:hidden;*/

  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}



.tech_stack_header{
    width: 80%;
    font-size: 4dvh;
    margin: 0 auto;
    font-family: "Patua One", serif;
    font-weight: normal;
    text-align: center;
    display: flex;
    height: 25dvh;
    justify-content: center;
    align-items: center;
}

/*#tech-group{*/
/*    height: 55dvh;*/
/*    overflow-y:scroll;*/
/*}*/

/*#tech-list{*/
/*     display: grid;*/
/*	 gap:25px 35px;*/
/*    margin: 0 5%;*/
/*  grid-template-columns: 1fr 1fr 1fr ;*/
/*  place-items: center;*/
/*  text-align: center;*/
/*  padding-top: 5%;*/
/*    padding-bottom: 7%;*/

/*}*/

/*#tech-list .tech-card{*/
/*   padding: 5px 0 0px;*/
/*   border-radius: 5px;*/
/*}*/



/*#tech-list .tech-card img{*/
/*    width: 50%;*/
/*  aspect-ratio: 1;*/
/*	object-fit: contain;*/
/*}*/



#techstack-grid-content{
      position: absolute;
      bottom: 6.2%;
      left: 0px;
      height: 92%;
      width: 100%;
      margin: 0 auto;
    }

    #techlist-search.on .magnifying-glass{
      display: none;
    }

    #techlist-search.off .magnifying-glass{
      display: block;
    }

    #techlist-search.on .xmark{
      display: block;
    }

    #techlist-search.off .xmark{
      display: none;
    }

    #scroll-effect section.scroll input{
      display: none;
    }

    #scroll-effect section.search input{
      display: block;
    }

    #scroll-effect section.scroll div.anim-moves{
      display: block;
    }

    #scroll-effect section.search div.anim-moves{
      display: none;
    }
    
    .triggerdown-up #scroll-effect{
          width: 100%;
        height: 6dvh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

#scroll-effect section{
  position: relative;
  width: 92%;
      height: 90%;
  border-radius: 10px;
      border: 1px dashed var(--secondary-color);
      overflow: hidden; 
}

#scroll-effect section input{
  
  width: 100%;
  height: 100%;
  
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  outline: none;
  text-align: center;
}

  #scroll-effect section div {
      width: 30px;
      height: 20px;
      border: 4px solid hsl(343, 100%, 58%);
      border-radius: 5px;
      background: hsla(343, 100%, 58%, .3) radial-gradient(circle, hsl(343, 100%, 58%, 1) 3px, hsl(343, 100%, 58%, 0) 3px);
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 50%;
      left: 6%;
      
    }

    #scroll-effect .anim-moves {
      offset-path: path('M 0 0 H 295');
      transition: 0.01s;
      offset-distance: attr(data-label);
    }



    #scroll-effect .anim-moves.anim-moves-out {
      offset-distance: attr(data-label);
    }

    #scroll-effect #click:after {
      content: ' forwards';
    }

    #scroll-effect #click.anim-moves-out:after {
      content: ' backwards';
    }

#tech-group{
    height: 54dvh;
    overflow-y:scroll;
    scroll-snap-type: y mandatory;
}

.video-skip { fill: #000000 } 

#teckstack-header{
  position: relative;
  margin: 0 auto;
  width: 98%;
  height: 30dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body{
  overflow: hidden;
}

@media (min-width : 440px){

  body{
    --body-h: var(--body-height);
  }

  body main {
    height: 800px;
      border: 2px ridge black;
            border-radius: 10px;
            box-shadow: 0 0 0 1px #6a6767, 0 0 0 2px #797878, 0 0 0 3px #444, 0 0 0 4px #000;
            -moz-box-shadow: 0 0 0 1px #6a6767, 0 0 0 2px #797878, 0 0 0 3px #444, 0 0 0 4px #000;
            -webkit-shadow: 0 0 0 1px #6a6767, 0 0 0 2px #797878, 0 0 0 3px #444, 0 0 0 4px #000;
            transition: .5s all;
            transform: scale(calc(var(--body-h) / 900));
            transform-origin: top;
        }

        .about_me-row {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 750px;
    min-height: 700px;
    max-height: 800px;
    user-select: none;
}

        #replace_about_nav_result {
    padding: 5% 2%;
    height: 50%;
    position: relative;
}



  #tech-group{
    height: 45%;
    min-height: 250px;
    max-height: 800px;
    overflow-y:scroll;
    scroll-snap-type: y mandatory;
}

.triggerdown-up #scroll-effect{
          width: 100%;
        height: 6%;  
    }

    #scroll-effect section{

      height: 100%;

}

    #teckstack-header{
  position: relative;
  margin: 0 auto;
  width: 98%;
  height: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
}

}


.tech-caption{
  position: absolute;
  z-index: 1;
  color: var(--secondary-color);
  font-family: "Denk One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  opacity: 0.7;
}


#tech-list{
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 25%;
  gap: 0 8%;
  /* margin:15px -25px; */
  /* scroll-snap-type: y mandatory; */
  /* border-left: 1px dashed var(--secondary-color);
  border-right: 1px dashed var(--secondary-color); */
}

#tech-list .tech-card{
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   scroll-snap-align: start;
   height: 100%;
}

/* body.light #tech-list .tech-card{
   border-right: 1px dashed rgba(0, 0, 0, 0.200);
   border-bottom: 1px dashed rgba(0, 0, 0, 0.200);
}

body.dark #tech-list .tech-card{
   border-right: 1px dashed rgba(255, 255, 255, 0.200);
   border-bottom: 1px dashed rgba(255, 255, 255, 0.200);
}

body.light #tech-list .tech-card:nth-child(3n),
body.dark #tech-list  .tech-card:nth-child(3n){
  border-right: none;
}

body.light #tech-list .tech-card:nth-last-child(-n + 3),
body.dark  #tech-list .tech-card:nth-last-child(-n + 3){
  border-bottom: none;
} */



#tech-list .tech-card img{
    width: 10dvw;
  aspect-ratio: 1;
	object-fit: contain;
}


::-webkit-scrollbar{
    display: none;
}
::-webkit-scrollbar-track
{

    background-color: transparent;
}

#tech-list .tech-card  h6{
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}





@media (min-width : 420px) and (orientation: landscape)  {

/* body main{
  overflow:hidden;
} */



    body.light .navb{
       position:absolute;
     }

      .tabs {
    width: 100%;
    padding: 0.75rem 0px;
}

    body.light {
       overflow: hidden;
    }

   



  

#tech-list{
	gap: 0px 10%;
    grid-template-columns: 1fr 1fr 1fr;
}




#tech-list .tech-card img{
    width: 35%;
}

#tech-list .tech-card img.html-logo,#tech-list .tech-card img.js-logo{
  width: 30%;
}

#tech-list .tech-card img.git-logo{
  width: 38%;
  border-radius: 5%;
  background-color: white;
}

body.dark #tech-list .tech-card img.drf-logo{
  width: 30%;

}

    .scroll-btn-col {
        display: flex;
    }

#tech-list .tech-card  h6{
    font-size: 15px;
    margin-top: 5px;
}



}


/*@media (min-width : 450px) {*/

/*    #tech-list{*/
/*     display: grid;*/
/*	 gap: 10px;*/
/*  grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;*/
/*  align-items:start;*/
/*}*/

/*#tech-list .tech-card img{*/
/*    width: 30%;*/
/*  aspect-ratio: 1;*/
/*	object-fit: contain;*/

/*}*/

/*}*/






#inner-main{
  width: 100%;
  height: 100%;
}





#upload-outer {
            border-radius: 10px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transform: 0.3s all;
        }


        fieldset {
            width: 100%;
            transform: 0.3s all;
            padding-bottom: 20px;
        }

        fieldset .fileUpload {
            background: whitesmoke;
            border-radius: 15px;
            color: black;
            font-size: 1em;
            font-weight: bold;
            overflow: hidden;
            position: relative;
            width: 100%;
            height: 150px;
            cursor: pointer;
            border: 3px dashed #8200be73;
            box-shadow: 11px 11px 22px #b0acac, -1px -1px 11px #6c6868;
        }

        fieldset .fileUpload:hover,
        fieldset .fileUpload:active,
        fieldset .fileUpload:focus {
            background: whitesmoke;
            cursor: pointer;
        }

        fieldset .fileUpload input.upload {
            position: absolute;
            top: 0;
            right: 0;
            margin: 0;
            padding: 0;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            filter: alpha(opacity=0);
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        fieldset .fileUpload label {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            position: absolute;
            font-family: 'Averia Serif Libre', cursive;
            font-size: 25px;
        }

        fieldset #upload-controls {
            width: 100%;
            display: flex;
            gap: 25px;
            margin-top: 40px;
        }


        #second {
            opacity: 0;
            visibility: hidden;
            height: 0;
            transition: 0.5s linear;
        }

        #second.hide {
            animation: hide-opt 0.5s linear;
            width: 95%;
            position: relative;
            opacity: 0;
            height: 0;
            visibility: hidden;
        }

        @keyframes hide-opt {
            from {
                height: 150px;
                visibility: visible;
                opacity: 1;
            }

            to {
                visibility: hidden;
                opacity: 0;
                height: 0;
            }
        }

        #second.show {
            animation: show-opt 0.5s linear;
            width: 95%;
            height: 150px;
            position: relative;
            opacity: 1;
            visibility: visible;
        }

        @keyframes show-opt {
            from {
                visibility: hidden;
                opacity: 0;
                height: 0;
            }

            to {
                height: 150px;
                visibility: visible;
                opacity: 1;
            }
        }


        #second .upload-status {
            margin-top: 30px;
            border-radius: 5px;
            padding: 3%;
            border: 1px dashed #8200be73;
            box-shadow: 11px 11px 22px #cfcaca, -1px -1px 11px #bbb0b0;

        }






    #second progress:after {
      content: attr(value)'%';
      font-family: 'Gemunu Libre', sans-serif;
      color: rgb(129, 20, 166);
      font-size: 18px;
      font-weight: 700;
      transition: width 0.4s ease-in;
      position: absolute;
      right: 5%;
      padding-top: 5px;
      background:transparent;

    }

    #second progress {
      /* style rules */
      background-color: rgb(173, 149, 153);
      -webkit-appearance: none;
      appearance: none;
      accent-color: #5916cd;
      height: 15px;
      width: 100%;
      border-radius: 5px;


    }


    #second progress::-webkit-progress-bar{
      padding: 0.1em;
      border-radius: calc(1.4em / 3);
      background: #c0bcbc;
    }


    #second progress::-webkit-progress-value {
      background: #a018b5;
      border-radius: calc(1.4em/2);
      border-radius: 3px;
      transition: width 0.4s ease-in;
    }



    #second #img-name {
      border: 0;
      margin-bottom: 5px;
      font-weight: 700;
      background: transparent;
    }

    #second #img-size {
      border: 0;
      width: 12%;
      font-weight: 700;
      background: transparent;
    }


/* *************************************************** */


  .gallery-row .row
{
  position: relative;
  width: 100vw;
  height: 100dvh;

}

/* *************************************************** */


   #main #first-part{
    height: 50%;
      position: fixed;
      z-index: 2;
      width: 100%;
      left: 0;
      top: 0;
   }
   #main #second-part{
    height: 50%;
      position: fixed;
      z-index: 2;
      width: 100%;
      bottom: 0;
      left: 0;
   }

   #main.close #first-part{
      background-color: var(--primary-color);
      transform: translateY(0%);
      transition: 0.5s ease-in-out;
   }

   #main.open #first-part{
      transform: translateY(-100%);
      transition: 0.5s ease-in-out;
   }



   #main.close #second-part{
      background-color: var(--primary-color);
      transform: translateY(0%);
      transition: 0.5s ease-in-out;
   }


   #main.open #second-part{
      transform: translateY(100%);
      transition: 0.5s ease-in-out;

   }

/* *************************************************** */

#img-detail-indicator{
    width: 100%;
    height: 100dvh;
    background:whitesmoke;
    position:fixed;
    top: 0;
    left: 0;
    z-index:100;
    display: flex;
   justify-content:space-around;
   align-items: center;
}


/* *************************************************** */

#img-detail-indicator .switch-outer {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 55dvw;
    position: absolute;
    top: 2%;
    left: 40%;
    display: flex;
    padding: 0;
    background: transparent;
    box-shadow: 1px 1px 3px rgb(157, 155, 155),-1px -1px 1px rgb(213, 207, 207);
    border: 0.2px solid black;
    line-height: 45px;
    border-radius: 7px;
    font-size: 15px;
}



#img-detail-indicator .switch-outer label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: black;
}



/* *************************************************** */



#image-spects{
    position: absolute;
    width: 94%;
    top: 20%;
    left: 6%;
    text-align: center;
}





/* *************************************************** */

#img-detail-indicator .img-show{
  position: relative;

}

#img-detail-indicator .img-show img.thumb{
  position: fixed;
  opacity: 1;
  width: 94%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

#img-detail-indicator img{
  width: 99%;
}

/* *************************************************** */

#img-detail-indicator .image-opt{
   display: flex;
   justify-content:space-around;
   align-items: center;
   width: 100%;
   position: absolute;
   bottom: 5%;
}

#img-detail-indicator .image-opt button{
  background: transparent;
  border: none;
}

#img-detail-indicator .image-opt button i{
  font-size: 20px;
  border-radius: 50%;
  background: white;
  color: rgb(79, 76, 76);
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  border: 0.5px solid gray;
}

#img-detail-indicator .image-opt button label{
  margin-top: 10px;
  font-size: 14px;
}


/* *************************************************** */

#img-detail{
    width: 100%;
    height: 100dvh;
    display: flex;
   justify-content:space-around;
   align-items: center;
}


/* *************************************************** */

#img-detail .switch-outer {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 55dvw;
    position: absolute;
    top: 2%;
    left: 40%;
    display: flex;
    padding: 0;
    background: transparent;
    box-shadow: 1px 1px 3px rgb(157, 155, 155),-1px -1px 1px rgb(213, 207, 207);
    border: 0.2px solid black;
    line-height: 45px;
    border-radius: 7px;
    font-size: 15px;
}

#img-detail .switch-outer input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

#img-detail .switch-outer label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: black;
}

.switch-outer label::selection,.switch-outer label:hover,.switch-outer label:active{
    background: none;
}

#img-detail .top-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    /* transition: transform 1s; */
}


#img-detail .switch {
    border-radius: 5px;
    background: rgb(136, 51, 136);
    height: 100%;
}


#img-detail .switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: white;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

#img-detail .switch-outer input:nth-of-type(1):checked~.top-wrapper {
    transform: translateX(0%);
}


#img-detail .switch-outer input:nth-of-type(2):checked~.top-wrapper {
    transform: translateX(100%);
}

#img-detail .switch-outer input:nth-of-type(1):checked~.top-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

#img-detail .switch-outer input:nth-of-type(2):checked~.top-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}


/* *************************************************** */

#img-detail .img-show{
  position: relative;
}

#img-detail .img-show img.thumb{
  position: fixed;
  opacity: 1;
  width: 94%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

#img-detail img{
  width: 100%;
}










/* *************************************************** */

#img-detail .image-opt{
   display: flex;
   justify-content:space-around;
   align-items: center;
   width: 100%;
   position: absolute;
   bottom: 5%;
}

#img-detail .image-opt button{
  background: transparent;
  border: none;
}

#img-detail .image-opt button i{
  font-size: 20px;
  border-radius: 50%;
  background: white;
  color: rgb(79, 76, 76);
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  border: 0.5px solid gray;
}

#img-detail .image-opt button label{
  margin-top: 10px;
  font-size: 14px;
}


/* *************************************************** */



#target {
  background:#0099cc;
  width:300px;
  height:160px;
  padding:5px;
  transition: 0.5s  ease-out;
}


#target.hide{
  width:300px;
  height:0px;
  opacity: 0;
}


/*.htmx-settling img#det-img {*/
/*  opacity: 0;*/
/*  transition: opacity 2ms linear -1.99965ms;*/
/*}*/

/*img {*/
/* transition: opacity 2ms linear -1.99965ms;*/
/*}*/


:root {
    --switches-bg-color: goldenrod;
    --switches-label-color: white ;
    --switch-bg-color: white;
    --switch-text-color: goldenrod ;
}


.switch-outer {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 16rem;
    position: fixed;
    top: 15%;
    left: 30%;
    display: flex;
    padding: 0;
    background: var(--switches-bg-color);
    line-height: 3rem;
    border-radius: 10px;
}

.switch-outer input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

.switch-outer label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: var(--switches-label-color);
}

.switch-outer label::selection,.switch-outer label:hover,.switch-outer label:active{
    background: none;
}

.top-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    /* transition: transform 1s; */
}


.switch {
    border-radius: 8px;
    background: var(--switch-bg-color);
    height: 100%;
}


.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--switch-text-color) ;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

.switch-outer input:nth-of-type(1):checked~.top-wrapper {
    transform: translateX(0%);
}


.switch-outer input:nth-of-type(2):checked~.top-wrapper {
    transform: translateX(100%);
}

.switch-outer input:nth-of-type(1):checked~.top-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

.switch-outer input:nth-of-type(2):checked~.top-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}


img#det-img {
 width: 93%;
    position: fixed;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 2ms linear -1.99965ms;
    top: 33.6%;
    left: 4%;
}

.image-opt{
   display: flex;
   justify-content:space-around;
   align-items: center;
   width: 100%;
   position: fixed;
   bottom: 5%;
   left: 0;
   transition:0.2s all;
}

.image-opt button{
  background: transparent;
  border: none;
}

.image-opt button a{
    text-decoration:none;
}

.image-opt button i{
  font-size: 20px;
  border-radius: 50%;
  background: white;
  color: rgb(79, 76, 76);
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  border: 0.5px solid gray;
}

.image-opt button label{
  margin-top: 10px;
  font-size: 14px;
  color: black;
}


.topnav {
 overflow: hidden;
    position: fixed;
    bottom: 0px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 7.5dvh;
    background-color: white;
    box-shadow: 1px 1px 1px grey;
    padding: 0 2%;
}

.topnav #loader-line {
            position: absolute;
            left: -50%;
            bottom: 0;
            height: 1px;
            width: 40%;
            background-color: rgb(87, 23, 204);
            -webkit-animation: lineAnim 1s linear infinite;
            -moz-animation: lineAnim 1s linear infinite;
            animation: lineAnim 1s linear infinite;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
        }



        @keyframes lineAnim {
            0% {
                left: -40%;
            }
            50% {
                left: 20%;
                width: 80%;
            }
            100% {
                left: 100%;
                width: 100%;
            }
        }

.topnav .overl{
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  top: 0;
  left: 0;
  z-index: 12;
  position: absolute;
}

.topnav button,.topnav p,.topnav input{
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border: 0;
}


.topnav-right {
  float: right;
      padding-right: 6px;
}

.topnav .fa-xmark {
  font-size: 22px;
  margin-top: 3px;
  border: 0;
}

.topnav span{
  font-size: 21px;
  top: 12px;
  text-transform: capitalize;
  position: relative;
}

.topnav input.fa-trash {
  font-family: FontAwesome, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 21px;
  color: red;
  border: 0;
}
.topnav .fa-check-double{
  font-size: 22px;
  margin-top: 2px;
  border: 0;
  background: transparent;
  border: 0;
}

.topnav input[type=submit]:disabled{
  background-color: transparent;
  color: grey;
  cursor: not-allowed;
  border: 0;
  font-size: 21px;

}





/* .offcanvas {
    bottom: 7% !important;
} */

.offcanvas-backdrop.show {
    opacity: 0.05 !important;
}

#img-list{
    position: absolute;
    top: 0;
    left: 0;
    height: 92dvh;
    width: 100%;
    overflow-y: scroll;
    display: grid;
    gap: 15px 15px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
    place-items: center;
    padding: 20px 4% 0;
    transition: .2s all;
}

#img-list > div#img_gal_message1 {
  grid-column: span 2;
  height:80dvh;
  overflow:hidden;
  /*width: 85dvw;height:80dvh;scroll-snap-align:start;*/
  /*scroll-padding-top: 30px;*/

}

#img-list > div#target {
  grid-column: span 2;


}



#img-list label{
    position:relative;
}

 #img-list label img{
    border-radius: 3%;
    aspect-ratio: 3/2;
 }

 #img-list label div{
    position: absolute;
    top: 0px;
    left: 0;
        background: #00000078;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background  .5s ease-in;
 }


#img-list label div i.fa-trash{
    font-size:30px;
    color: red;
}

 body.light #img-list img{
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.663),-1px -1px 5px rgba(0, 0, 0, 0.64);
 }









   #img-list  #fade-me-in.htmx-added {
  opacity: 0;
}
#img-list #fade-me-in {
  opacity: 1;
  transition: opacity 1s ease-out;

}










 #img-preview-row{
    height: 40%;
    width: 100%;
    position:absolute;
        padding:10% 10% 2%;
        left: 0;
        top: 0;
 }

/* * * *{
  outline: 2px solid red;
} */

 #img-preview{

    width: 100dvw;
    height: 100dvh;

 }

 #img-preview div{
   display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
 }

 body.light #img-preview div{
     background-color: whitesmoke;
 }

 body.dark #img-preview div{
     background: rgba(17, 15, 50);
 }

 #process{
    width: 100%;
    z-index: 10;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
 }

  #process label{
      font-size: 30px;
  }

body.dark #process{
  background-color: #111827;
}

body.light #process{
  background-color: #f2f5fa;
}

body.dark #process label{
  color: #ffffff;
}

body.light #process label{
  color: rgb(0, 0, 0);
}





#img-preview #thumb{
    opacity: 1;
    transition: opacity 250ms ease-in-out;
    z-index:2;
}



#img-preview.loaded #thumb{
    opacity: 0;
}




#img-preview #myImg{
   opacity: 0;
   position: absolute;
   transform: scale(0.9);
   transition: opacity 250ms ease-in-out;
}



#img-preview.loaded #myImg{
   opacity:1;
   transition: opacity 250ms ease-in-out;
   transform: scale(1);
   position: absolute;
   z-index: 20000;
}

#img-preview .fa-hurricane{
   opacity: 1;
   position: absolute;
   left: 45%;
   top: 45%;
   /*transform:translate(-45%,-45%);*/
   transition: opacity 250ms ease-in-out;
   font-size:60px;
   color:rgb(109 40 217);
   z-index:5;
}



#img-preview.loaded .fa-hurricane{
   opacity:0;
}


   #img-preview .note{
    width: 100%;
    height: 35dvh;
    display: flex;
    justify-content: center;
    align-items: center;

   }

    #img-preview .note label{
    font-family: "Jersey 10 Charted", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    }

  /*#img-preview img.img-fluid{*/
  /*  aspect-ratio: 3/2;*/
  /*  border-radius: 3%;*/
  /*}*/

  #img-preview .download{

      display: flex;
      justify-content: end;
  }

  #img-preview .download a{
      margin:10px 0px 10px 0;
      text-decoration: none;
      color: white;
      background-color: rgb(109 40 217);
      padding: 2px 10px;
      border-radius: 5px;
  }

  #img-preview .download a  i.fa-download{
    margin-right: 5px;
    font-size: small;
  }


@media (min-width : 420px) and (orientation: landscape) {




    #img-preview {
    width: 100dvw;
    height: auto;
}

#img-preview.loaded #myImg {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
    transform: scale(1);
    position: absolute;
    z-index: 20000;
    height: -webkit-fill-available;
    max-width: fit-content;
}

         #main #first-part{
      position: absolute;
   }

   #main #second-part{
      position: absolute;
   }

       .topnav {
  overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 7.5dvh;
    background-color: white;
    box-shadow: 1px 1px 1px grey;
    padding: 0 2%;
}

        #img-list {
        width: 100%;
        position: relative;
        overflow-y: scroll;
        display: grid;
        gap: 20px 20px;
        place-items: center;
        padding: 33px 2%;
        height: 80dvh;
        margin-bottom: 20dvh;
        grid-auto-rows: max-content;
        grid-template-columns: 1fr 1fr;
    }



#img-detail .switch-outer {
    width: 50%;
    position: absolute;
    left: 45%;
    line-height: 40px;
    font-size: 12px;
}

#img-detail img {
    width: 100%;
    max-width: 360px;
}

#img-detail .img-show img.thumb {
    position: absolute;
    width: 360px;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
}

}


/*@media(min-width:670px){*/


/*    .gallery-row .row*/
/*{*/

/*  display: flex;*/
/*  justify-content: flex-start;*/
/*  align-items: center;*/
/*}*/

/*#img-list{*/
/*      width: 100%;*/
/*      position: relative;*/
/*      display: grid;*/
/*      gap: 20px 20px;*/
/*      place-items: center;*/
/*      padding: 20px 0% 10px;*/
/*      height: 70dvh;*/
/*      grid-auto-rows: max-content;*/
/*      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;*/
/*}*/


/*#img-list > div#img_gal_message1 {*/
/*  grid-column: span 5;*/
/*  height:80dvh;*/
  /*width: 85dvw;height:80dvh;scroll-snap-align:start;*/
  /*scroll-padding-top: 30px;*/

/*}*/

/* #img-preview-row{*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    position:relative;*/

/* }*/


/*}*/









div.img-itm {
  display: inline-block;
}

div.img-itm  input[type="checkbox"] {
  display: none;
}

div.img-itm  label {
  display: block;
  position: relative;
  cursor: pointer;

}

div.img-itm label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

div.img-itm  label img {

  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

div.img-itm  :checked + label {
  border-color: #ddd;
}

div.img-itm  :checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
      background: red;
    z-index: 1;
}

div.img-itm  :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
}


#about_section,#techstack-grid-content{
  opacity: 0;
}

#about_section.transition-in,
#techstack-grid-content.transition-in,
#about_section.transition-out,
#techstack-grid-content.transition-out{
  opacity: 1;
}

    .transition-in .triggerup-up {
      transform: translateY(0);
      opacity: 1;
      animation: 0.25s triggerup-up ease-in;
    }

    .transition-out .triggerup-up {
      transform: translateY(-50%);
      opacity: 0;
      animation: 0.25s triggerup-down ease-in;
    }

    .transition-in .triggerdown-up {
      transform: translateY(0);
      opacity: 1;
      animation: 0.25s triggerdown-up ease-in;
    }

    .transition-out .triggerdown-up {
      transform: translateY(30%);
      opacity: 0;
      animation: 0.25s triggerdown-down ease-in;
    }


    @keyframes triggerup-up {
      from {
        transform: translateY(-50%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }



    @keyframes triggerup-down {
      from {
        transform: translateY(0);
        opacity: 1;
      }

      to {
        transform: translateY(-50%);
        opacity: 0;
      }
    }






    @keyframes triggerdown-up {
      from {
        opacity: 0;
        transform: translateY(30%);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }



    @keyframes triggerdown-down {
      from {
        transform: translateY(0);
        opacity: 1;
      }

      to {
        transform: translateY(30%);
        opacity: 0;
      }
    }
















   


