:root {
  --borderWidth: 80px;
  --borderColor: white;
  /*--pink: #c5538d;*/
  --pink: #e3609e;
  
  --sb-size: 15px;
}

* { 
	margin: 0; 
	padding: 0;
	color: white;
  border: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;

  -webkit-user-drag: none;     /* Disable image/element dragging in WebKit browsers */
  -khtml-user-drag: none;      /* For older Konqueror browsers */
  -moz-user-select: none;      /* Disable text selection in Firefox */
  -webkit-user-select: none;   /* Disable text selection in Chrome/Safari */
  -ms-user-select: none;       /* Disable text selection in Internet Explorer/Edge */
  user-select: none;           /* Standard property */
  pointer-events: auto;        /* Allow clicking/hovering if needed */

}
.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}


body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--borderColor);
}

body::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 15px;
  border: 5px solid white;

}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--pink)
                     var(--borderColor);
  }
}


body {
  /*background: var(--pink);*/
}


h1 {
  /*font-family: "Barlow Condensed", sans-serif;*/
  font-size: 80px;
  line-height: 72px;
  font-family: none;
  letter-spacing: -3px;
}
h1 b {
  text-transform: uppercase;
  font-weight: 900;
  margin: 10px;
  letter-spacing: -2px;
}
canvas { 
	display: block; 
}

.container {
		width: 900px;
    margin: 0 auto;
}

#containers_container {

    width: 100%;
    max-width: 1200px;
    background: var(--pink);
    position: relative;
    margin: auto;
     /*overflow: hidden;*/
}

#logo_main{
  position: absolute;
  top: 105px;
  left: 110px;
}
#menu{
    position: absolute;
    color: white;
    top: 110px;
    background: transparent;
    right: 115px;
    z-index: 10;
    
    .icon_holder {
      margin-bottom: 15px;
      
      .icon_on { display: none; }
      .icon_off { display: block; }
      
    }

    .icon_holder:hover {
      cursor: pointer;
      .icon_on { display: block; }
      .icon_off { display: none; }
    }
}

#scene1 {
    width: 100%;
    height: 800px;
    overflow: hidden;
}
#projcts{
    background: #d159c7;
    #projctsHolder {
        width: 1070px;
        text-align: center;
        margin: auto;
    }
}






.prjct_preview {
    width: 33.3333%;
    aspect-ratio: 1 / 1;
    display: inline-block;
    /* transform: rotate(15deg) scale(.9); 
    /* margin: 10px; */
    /*filter: drop-shadow(9px -6px 10px rgba(0, 0, 0, 0.5));*/
    /*opacity: .7;*/
    transition: all .3s ease-out;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: -3px;
}

.prjct_preview:hover {
  	/*filter: drop-shadow(12px 10px 15px rgba(0, 0, 0, 0.4));*/
    /*transform: rotate(10deg) scale(1);
  	opacity: 1;*/
  	cursor: pointer;

    .prjctImgs {
      opacity: .7;
    }

    img.prjctLogo {
      transform: scale(.9);
    }

    .tags {
      bottom: 20px;
      opacity: 1;
    }

    .prjctImgs img {
      transform: scale(1.1);
    }


}
.prjctImgs {
  opacity: .3;
  transition: all .3s ease-out;
  
}
.prjctImgs img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 2s ease;
    z-index: 1;
    transform: scale(1);
}

.prjctImgs img.active {
    opacity: 1;
}



img.prjctLogo {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: scale(.8);
    transition: all .2s ease-out;
}


#contact {
	height: 100vh;
}
#footer {
  display: block;
	position: relative;
	height: 240px;
}
.tags {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  opacity: 0;
  transition: all .3s ease-out;
  z-index: 2;
}
.tags span {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 3px 8px;
  margin: 3px;
  border-radius: 12px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;

}
.tags span:hover {
  background-color: var(--pink);
}

#brdr {
		display: block;
    /*background: #320733;*/
    background: white;
    z-index: 100;
}
#brdr.left {
    background: url('assets/pixelated_left.png') top right repeat-y;
		position: absolute;
		top: 0;
   	left: 0;
    width: var(--borderWidth);
    height: 100%;
}
#brdr.right {
    background: url('assets/pixelated_right.png') top left repeat-y;
		position: absolute;
		top: 0;
		right: 0;
    width: var(--borderWidth);
    height: 100%;
    z-index: 10;
}
#brdr.top {
		position: absolute;
		top: 0;
		left: 0;
    height: var(--borderWidth);
    width: 100%;
}
#brdr.bottom {
		position: absolute;
		left: 0;
    height: var(--borderWidth);
    width: 100%;
}

#about {
	.container {
      width: 80%;
      margin-top: -90px;
      padding-bottom: 50px;
  }
  p {
      text-transform: uppercase;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: .2px;
      color: #ffc8e4;
      margin: 7px;
  }

	/*h1 {
    font-size: 80px;
    line-height: 72px;
	}*/

}


/*========= viewPrjct ==========*/

body.viewPrjct {
	overflow: hidden;
	padding-right: 15px;

  #projctsHolder {
      transition: all 4s ease-out;
      filter: blur(20px);
  }
}
#about {
  background: url('assets/bg2.png') bottom left repeat-x;
}

#prjctView::-webkit-scrollbar {
  width: var(--sb-size)
}

#prjctView::-webkit-scrollbar-track {
  background: var(--borderColor);
}

#prjctView::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 15px;
  border: 5px solid white;

}
.hover_txt , .hover_menu {
    display: none;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    position: fixed;
    z-index: 10000;
    background: black;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 900;
}
#prjctView {	
    display: flex;
    position: fixed;
    left: 100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    overflow-y: scroll;

    * { color: black; }
    

    #containers_container {
        text-align: right;
        display: flex;
        background: none;
    }
		.bg {
        display: block;
        width: 100%;
        cursor: pointer;
        transition: all .5s ease-out;
        .close {
          width: 40px;
          position: fixed;
          opacity: .5;
          transform: translate(20px, 40px) rotate(360deg);
          transition: all 1s ease-out;
          pointer-events: none;
        }

		}
		#projcts_holder_holder {
          min-height: 100vh;
          min-height: calc(100vh - 80px);
	        height: 100%;
  				width: 50%;
          background: white;
          text-align: left;
          padding-left: 200px;
          padding-bottom: 80px;

          transition: all 1s ease-out;

          #prjct_preview {
            transition: all 1s ease-out;
            /*transition-delay: .5s;*/
            opacity: 0;
            img.logo {
                display: inline-block;
                margin-bottom: 0;
                height: 42px;
                width: auto;
                margin-right: 10px;
                margin-top: 40px;
            }
            h1 {
                display: inline-block;
                margin-bottom: -5px;
                font-size: 60px;
            }
          }

          .logo {
            width: 150px;
            margin-bottom: 1rem;
            filter: invert(1);
            opacity: .2;
          }

          h1 {
            margin: 0 0 1rem 0;
          }

          .tags {
            margin-bottom: 60px;
            position: static;
            opacity: 1;
          }

          .tags span {
            display: inline-block;
            background: #cbcbcb;
            color: #ffffff;
            padding: 4px 10px;
            margin-right: 6px;
            margin-bottom: 6px;
            border-radius: 20px;
            font-size: 0.9rem;
            letter-spacing: .5px;
          }

          .projects-grid {
            spadding-bottom: 100px;
          }


          .image-placeholder,
          .text-placeholder {
            background: linear-gradient(90deg, #eee, #ddd, #eee);
            background-size: 200% 100%;
            animation: shimmer 1.2s infinite;
            border-radius: 6px;
          }

          .image-placeholder {
            width: 100%;
            height: 160px;
            margin-bottom: 10px;
          }

          .text-placeholder {
            height: 18px;
            margin-bottom: 6px;
          }

          .text-placeholder.subtitle {
            width: 80%;
          }

          .text-placeholder.title {
            width: 60%;
          }

          @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
          }

          .project-card {
            margin-top: 30px;
            img {
              overflow: hidden;
              border-radius: 10px;
              display: block;
              margin-bottom: 10px;
              max-width: 100%;
            }
          }

          .title {
            font-weight: bold;
            margin-bottom: 4px;
            max-width: 500px;
          }

          .subtitle {
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
          }
		}


		#brdr.right {
        opacity: .8;
		    position: static;
        height: 100vh;
	  }




}




body.viewPrjct #prjctView {	
	
  left: 0;

	.bg {
    width: 15%;
    .close {
      transform: translate(20px, 40px) rotate(0deg);
      opacity: 1;
    }
	}
  .bg:hover {
    width: 20%;
  }
  #brdr.right {
    opacity: 1;
  }
	#projcts_holder_holder {
		width: 85%;
		opacity: 1;
    padding-left: 30px;


    #prjct_preview {
      opacity: 1;
    }

	}

  



}




/*========= viewPrjct end ==========*/