/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 2rem;
  --font-semi: 600;
  /*===== Colors =====*/

  /* HSL color mode */
  --hue-color: 300;
  --first-color: rgba(250, 250, 250, 1);
  --second-color: rgba(250, 250, 250, 1);
  --third-color: rgba(53, 53, 53, 0.986);
  --fourth-color: rgba(19,19,19, 1);
  --spogenta: rgb(162, 0, 236);

  --bg-color: rgba (#131313);
  --my-gradient: linear-gradient(to right, #0c007c00, #29304271,#0c007c00);
  /*===== Fonts =====*/
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 10.25rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
 
  /*===== Margins =====*/
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*===== z index =====*/
  --z-back: -10;
  --z-fixed: 100;
}
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 1.8rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .875rem;
  }
}

/*===== BASE LAYOUT =====*/

*, ::before, ::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--bg-color);
  size: 100%;
  max-width: 100vw;
}

main {
}


@media screen and (min-width: 900px) {

  main {
    height: auto;
  }
}


h1, h2, p {
  
}

ul {
  display: flex;
  flex-direction: column;
  list-style-type: circle;
  list-style-position: inside;

  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;

}

li a {
  display: block;
  color: rgb(189, 189, 189);
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111111be;
  color: #fff;
}

a {
  text-decoration: none;
  color: #e9e1ff;
}

p {
  color: var(--first-color);
}

img {
  max-width: auto;
  height: auto;
  display: block;
}



/*===== CLASS CSS ===== */
.section-title {
  position: relative;
  font-size: var(--h1-font-size);
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-2);
  text-align: center;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--first-color);
}

.wrapper{
  text-align:center;
}

svg{
  margin: 0 auto;
  width:63%;
  height:auto;
}

/*===== LAYOUT =====*/

.b-grid {
  
  display: grid;
  margin-left: var(--mb-6);
  margin-right: var(--mb-4);
  text-align: center;
  align-items: center;
  width: 100vw;

}

.bd-grid {
  width: 100%;
  display: flow-root;
  border-radius: 10px;

}

.b-grid img{
  
  margin-top: 0px;

}

.bd-grid-head {
  max-width: 100%;
  height: 100%; 
  position: fixed;

}

.bd-grid-head-info {
  display: flex;  
  max-width: 100%;
  height: 6vh; 
  position: relative;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  
}

/*HEAD*/

.l-header {
  width: auto;
  height: auto;
  position: sticky;
  overflow-y: hidden;
  top: 0px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: var(--z-fixed);

}


@media only screen and (min-width: 768px) {

  .l-header {
    width: auto;
    border-radius: 0%;
    position: fixed;
    top: 0px;
    left: 40vw;


  }

  .l-header img{
    border-radius: 50%;
  }
}

/*===== NAV =====*/

.nav {

  background-color: #3d3d3d00;
  padding: 0rem 0rem 0rem 0rem;

}

.nav__toggle {
  position: absolute;
  cursor: pointer;
  margin: .5rem 2rem;
  right: 0;
}

.nav__menu.li {
  color: #fff;
}

.close,
input[type="checkbox"] {
  display: none;
  filter: invert(1);
  margin-top: 0.2rem;
  margin-right: 1rem;

}
.hamburger {
  margin-top: 0.2rem;
  margin-right: 1rem;
  filter: invert(1);
}
.nav__menu {
  display: flex;
  flex-direction: column;
  gap: none;
  align-items: center;
  background-color: #49494941;

}

li {

}

ul {
  list-style: disc;
  padding: 0 0 0 10vw

}

@media only screen and (min-width: 768px) {
  
  ul {
    list-style: disc;
    padding: 0 0 0 2vw
  
  }
  
}


.nav__menu li {
  display: none;
}

.nav__menu li:first-child {
  display: block;
}

/* Show all menu items when the menu is active */
.nav__menu.active li {
  display: block;
}


.nav__menu a {
  text-decoration: none;
  color: initial;
  font-size: 1.2rem;
  color: #c7c7c7;
  min-width: 100vw;

}
#nav__checkbox:checked ~ ul.nav__menu li {
  display: block;

}
#nav__checkbox:checked ~ label.nav__toggle .hamburger {
  display: none;

}
#nav__checkbox:checked ~ label.nav__toggle .close {
  display: block;
}

@media only screen and (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    flex-direction: row;
    padding: 2px 15px;
  }

  .nav__menu a{
    min-width: 0;

  }
  .nav__menu li {
    display: block;
    height: 100%;
  }

 
}



/* Responsive Menu*/ 

 .topnav {
  overflow: hidden;
}

.topnav a {
  box-sizing: border-box;

  float: right;
  display: block;
  color: #818181;
  text-align: center;
  padding: 2vh 1vw;
  text-decoration: none;
  font-size: 17px;
  background-color: #cfcfcf00;
}

.topnav a:hover {
  color: #dbdbdb;
  background-color: rgba(233, 233, 233, 0.404)

}

.topnav a.active {
  background-color: #000000;
  color: white;
}

.topnav .icon {
  display: none;
}

.nav__logo:hover{

  background-color: #000000;
}

.project_info_head_w {

  color: #fff;
}

/***** Responsive Menu 600 px ****/ 

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    background-color: #4c00ff;
    height: 100%;
    width: 52px;
  }

  #ToI_1 {

    max-height: 50%;
  } 

  .nav__logo img {

    border-radius: 100px;
  }

  .topnav a {
    background-color: #0f0f0f;
    color: #fff;
    font-size: 22px;
  }

  .topnav a:hover {
    color: #dbdbdb;
  
    background-color: rgb(58, 58, 58) 
  }

  .topnav.responsive {
    position: relative;
    overflow: visible;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*BUTTON-STYLES*/

.btn { 
  margin: 0 auto;
  padding: 5px 40px;
  position: absolute;
  border: 1pt solid #3a3a3aad;
  border-radius: 10px;

}
.btn:hover {

  border: 1pt solid #3e00708a;

}
      
.grad {
  background-image: linear-gradient(to right, #ff008000 0%,  #13006900  100%);
  border: 1px solid #ffffff23;
  text-align: center;
  transition: 0.28s;
    background-size: 150% auto;
  color: white;            

}

.grad:hover {
  background-position: right center; /* change the direction of the change here */
  background-image: linear-gradient(to right, #4400ff 0%,  #5400b3  100%);
  border: 1px solid #9900ff65;

}

.text-rainbow-animation {
  font-family:arial black;
  font-size:70px;
  background-image: 
    linear-gradient(to right,var(--spogenta), rgb(89, 0, 255),#9f7cff, var(--spogenta)); 
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
  animation: rainbow-animation 105s linear infinite;
}

@keyframes rainbow-animation {
    to {
        background-position: 3500vh;
    }
}
/*==BUTTONTEST==*/  

.underlined-a {
  text-decoration: none;
  color: aqua;
  padding-bottom: 0.15em;
  box-sizing: border-box;
  box-shadow: inset 0 -0.2em 0 aqua;
  transition: 0.2s;
  &:hover {
    color: #222;
    box-shadow: inset 0 -2em 0 aqua;
    transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
  }
}

.brk-btn {
  position: relative;
  background: none;
  color: rgb(0, 255, 221);
  text-transform: uppercase;
  text-decoration: none;
  border: 0.2em solid rgb(0, 255, 179);
  padding: 1rem auto;
  margin: auto 6px;
  &::before {
    content: "";
    display: block;
    position: absolute;
    text-align: center;
    width: 5%;
    background: #222;
    height: 0.3em;
    right: 20%;
    top: -0.21em;
    transform: skewX(-45deg);
    -webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 0.25s cubic-bezier(0.86, 0, 0.07, 1);
  }
  &::after {
    content: "";
    display: block;
    position: absolute;
    width: 10%;
    background: #222;
    height: 0.3em;
    left: 20%;
    bottom: -0.25em;
    transform: skewX(45deg);
    -webkit-transition: all 0.45 cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 0.25s cubic-bezier(0.86, 0, 0.07, 1); 
  }
  &:hover {
    &::before {
      right: 80%;
    }
    &::after {
      left: 80%;
    }
  }
}
/*RAINBOW-BORDER*/

.buttons-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid #2b2b2b;
  border-radius: 55px;
  background-color: #131313;
  padding: 10px;
  transition: 0.1s;
}

.buttons-section:hover {

  border: 1px solid #414141b2;
  
}

.b_text {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
  background: linear-gradient(180deg, rgba(247, 0, 255, 0.664) 0%, rgb(153, 0, 255));	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center
}

.rnb {
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	left: 1px;
 	border-radius: 4px;
	background: linear-gradient(-90deg, #ff00f2, #00dfd8, #ff0080, #007cf0);
	background-size: 400% 100%;
	border: none;
	padding: 0;
	margin: 0;
	animation: backgroundAnimation 12s ease-in-out infinite
}
.b_text:hover {
  color: #030303;
  background-color: #edfbfffd;
  
}


@keyframes backgroundAnimation {
	50% {
		background-position: 140% 50%;
		transform: skew(-2deg)
	}
}

.rnb:after {
	content: "";
	position: absolute;
	background-size: inherit;
	background-image: inherit;
	-webkit-animation: inherit;
	animation: inherit;
  
	left: 0;
	right: 0;
	top: 2px;
	height: 100%;
	filter: blur(.9rem);
}




/*Active menu*/
.active-link::after {
  position: absolute;
  content: "";
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

/*=== Show menu ===*/
.show {
  right: 0;
}

/*===== HOME =====*/

.home {
  position: relative;
  padding-top: 10px;
    align-items: center;
  background-color: #003cff11;
  display: flex;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
}

.home__data {

  padding: 2vh 10vw 5vh 10vw;
  margin-bottom: 0vh;
  margin-top: auto;

}

#homebutton_cv {
  margin-top: 7%;
}

@media screen and (min-width: 767px) {
.home {

  height: 90vh;

}

  .home__data {
    max-width: auto;
    height: auto;
    margin-top: 13vh;
    row-gap: 10px;
  }

}

.video_c {
width: auto;
height: auto;
display: block;
}

@media screen and (min-width: 600px) {
  .video_c {
    width: auto;
    height: auto;
    display: block;
    }
  }

#homebutton_cv {
  margin-top: auto;
}

.home__title {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  font-size: 25pt;
  font-weight: lighter;
  position: relative;
  z-index: 2; /* Keeps it above the overlay */

 }

 .home__title_date {

  color: #ffffff;
  margin-left: 10vw;
  letter-spacing: 0.5cap;
  z-index: 100;
  font-weight: 200;
  margin-top: -15px;

 }
  @media screen and (min-width: 600px) {
    .home__title {

      font-size: 30pt;
      line-height: 30pt;
      
     }
  }

  @media screen and (min-width: 1024px) {

    .home--1
    {
      font-family: "Genos", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;      
      font-weight: 800;
      font-size: 150pt!important;
      stroke: 1px solid white;
    }
  }

    .home--1
    {
      font-family: "Genos", sans-serif;
      font-weight: 500;
      font-style: normal;
      background-size: 200%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent; 
      -moz-text-fill-color: transparent;
      line-height: 65px;
      font-size: 80pt;
      
    }

    .home__header {

      margin-bottom: 1vh;

    }

    .about--1 {
      font-family: "Genos", sans-serif;
      font-weight: 500;
      background-size: 200%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      color: var(--spogenta);
      line-height: 65px;
      font-size: 100pt;
    }
.home__title-color {
  
  background-color: #ffffffec;
    background-size: 200%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
    font-size: 60px;
    }


.contact__container span {
      background: radial-gradient(
        circle at 100%,
        #b2a8fd,
        #0011ff 50%,
        #36e1ff 75%,
        #363636 75%
      );
      font-weight: 600;
      background-size: 200% auto;
      color: #000000;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: animatedTextGradient 2s linear infinite;
    }
    
    @keyframes animatedTextGradient {
      to {
        background-position: 200% center;
      }
    }
    
    .home__social {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

    }

    .home__social_1 {

      margin-top: 0vh;
      margin-bottom: 4vh;
      row-gap: 5px;
  }

  .about {
  }

  @media only screen and (max-width: 600px) {
    .about {
    }
  }

  .about__social {

    display: flex;
    justify-content: center;
    margin-bottom: 100px;
  }


    
.home__social-icon {
  width: 30px;
  height: 30px; 
  padding: 11px 15px;
  font-size: 20px;
  color: #d4d4d4d3;
  border: 1px solid rgba(150, 150, 150, 0.219);
  border-radius: 50%;
  transition: ease-in .1s;

  margin-bottom: 10vh;
}

.home__social-button {
  border: 1px solid rgba(150, 150, 150, 0.219);
  padding: 11px 15px;
  font-size: 10pt;
  font-weight: 500;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.home__social-button:hover {
  color: #ffffff;
  background-color: #4c00ff73;
  border: 1px solid #ffffff3b;
}

.home__social-icon:hover {
  color: #ffffff;
  background-color: #4c00ff73;
  border: 1px solid #6f00ff3b;
}
.home__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
}

.home button {
  display: flex;
  align-items: center;
  width: 20%;
  height:35px;
}

/*HOME_VIDEO*/

#myVideo {
  position: absolute;
  min-width: 100%;
  right: 0;
  z-index: -99;
  }
  @media only screen and (max-width: 600px) {
    #myVideo {
    height: 100%;
    }
  }

iframe {

width: 100%;
height: 100%;
}

/*BUTTONS*/

.button-inn {
  display: inline-block;
  background-color: #ffffff;
  color: #222222;
  padding: 0.75rem 2.5rem;
  font-weight: var(--font-semi);
  border-radius: 0.1rem;
  border-color: #ffffff00;
  border: 1px solid #ffffff; 
  transition: 0.1s;
  position: absolute;
  align-self: center;

}
.button-small {
  display: inline-block;
  background-color:var(--third-color);
  color: #bbbbbb;
  padding: 0.3rem 1rem;
  font-weight: normal;
  border-radius: 1rem;
  border: 1px solid #6666660a; 
  transition: 0.1s;
  margin: 1px 0 0 3px;
  font-size: 88%;

}

.button-small:hover {
  box-shadow: 0px 10px 36px rgba(190, 190, 190, 0.281);
  color: #ffffff;
  background-color: rgb(0, 132, 255);
  border-radius: 1rem;
  border: 1px solid #ffffffb7; 

}

.button:hover {
  box-shadow: 10px 10px 36px rgba(100, 0, 0, 0.15);
  color: #0011ff;
  background-color: #ffe600;

}

.button-inn:hover {
 
  color: #000000;
  background-color: #ffee00;
  border-radius: 0.2rem;
  border: 1px solid #6666666b; 

}

/*==AA==*/

.hide {
  display: none;
}

/*==CARDS==*/

.cards-section {
  
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-grow: 2;
  flex-direction: column;
  max-height: auto;

  display: grid;
  grid-template-columns: auto  ;
}


.card img {
  width: 100%;
  object-fit: cover ;

}

.card-body {
  padding: 15px 20px;
}

.card-body-inn {
  display: inline-block;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
}

.card-body-inn:hover {

  transform: scale(0.2);
  filter: grayscale(1);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
}
.card-description {
  font-size: 14px;
}

/* Base styles */
figure.article {
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

figure.article img {
  display: block;
  width: 100%;
  height: auto;
}

/* Default: Hidden caption (for desktop) */
figure.article figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  color: #fff;
  transform: translateY(100%); /* Hidden initially */
  transition: transform 0.3s ease;
}

/* Hover effect for desktops */
figure.article:hover figcaption {
display: block;
}

/* On mobile, show automatically */
@media screen and (max-width: 768px) {
  figure.article figcaption {

display: block; 
transform: translateY(0%); /* Show initially */


}
}

figure.article:hover figcaption,
figure.article.hover-effect figcaption {
  transform: translateY(0); /* Slide in the caption */
}



.abs,
h2:after,
.cards .card figcaption,
.cards .card:after,
.news .card figcaption,
.news .card:after,
.news .article figcaption {
  position: absolute;
}
.rel,
h2,
h2 strong,
.cards .card,
.news .card,
.news .article {
  position: relative;
}
h3 {
  color: #fff;
}
.fix {
  position: fixed;
}
.dfix {
  display: inline;
}
.dib {
  display: inline-block;
}
.db {
  display: block;
}
.dn {
  display: none;
}
.df,
.cards,
.news {
  display: flex;
  
}
.dif {
  display: inline-flex;
}
.dg {
  display: grid;
}
.dig {
  display: inline-grid;
}
.vm,
h2,
h2 strong,
h2 span {
  vertical-align: middle;
}
body {
  background: #131313;
  overflow-x: hidden;

}
.wrapper {
  padding: 15px;
}
h2 {
  padding: 10px;
  padding-left: 0px;
  color: #ccc;
  margin: 0;
}
h2 strong {
  z-index: 2;
  background: #24282f;
  padding: 4px 8px;
}
h2 span {
  font-size: 0.7em;
  color: #aaa;
  margin-left: 10px;
}
 
.cards,
.news {
  flex-flow: row wrap;

}

#cards-work {

  margin-left: 0;

}

.cards .card,
.news .card {

  width: 100vw;
  min-height: 50vh;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(53, 56, 71, 0.137);
  transform-origin: center top;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: 0.3s;
}

@media screen and (min-width: 768px){
  .cards .card {
    width: 25vw;

  }
}
.cards .card img,
.news .card img {
  width: 100%;
  min-height: 100%;
}
.cards .card figcaption,
.news .card figcaption {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  background: #1a1a1ace;
  color: #fff;
  transform: translateY(100%);
  transition: 0.25s;
  pointer-events: auto;
}

  @media only screen and (max-width: 600px) {
    body {

      .cards .card figcaption,
      .news .card figcaption {
        transform: translateY(0%);

    }
  }
}
.cards .card:after,
.news .card:after {
  content: '';
  z-index: -99;
  width: 200%;
  height: 100%;
  top: -90%;
  left: -20px;
  opacity: 0.1;
  transform: rotate(45deg);
  background: linear-gradient(to top, transparent, #fff 15%, rgba(255,255,255,0.5));
  transition: 0.3s;
}
.cards .card:hover,
.news .card:hover,
.cards .card:focus,
.news .card:focus,
.cards .card:active,
.news .card:active {
  box-shadow: 0 8px 16px 3px rgba(0,0,0,0.6);
  /*transform: translateY(-3px) scale(1.05) rotateX(15deg); O-Scaling*/
  transform: translateY(-3px) scale(1.02); /* Less aggressive scaling */
}
.cards .card:hover figcaption,
.news .card:hover figcaption,
.cards .card:focus figcaption,
.news .card:focus figcaption,
.cards .card:active figcaption,
.news .card:active figcaption {
  transform: none;
}
.cards .card:hover:after,
.news .card:hover:after,
.cards .card:focus:after,
.news .card:focus:after,
.cards .card:active:after,
.news .card:active:after {
  transform: rotate(25deg);
  top: -40%;
  opacity: 0.15;
}
.news .article {
  overflow: hidden;
  width: 350px;
  height: 235px;

}
.news .article img {
  width: 100%;
  min-height: 100%;
  transition: 0.2s;
}
.news .article figcaption {
  font-size: 14px;
  text-shadow: 0 1px 0 rgba(51,51,51,0.3);
  color: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 40px;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  background: rgba(6,18,53,0.6);
  opacity: 0;
  transform: scale(1.15);
  transition: 0.2s;
}
.news .article figcaption h3 {
  color: #3792e3;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: bold;
}
.news .article:hover img,
.news .article:focus img,
.news .article:active img {
  filter: blur(3px);
  transform: scale(0.97);
}
.news .article:hover figcaption,
.news .article:focus figcaption,
.news .article:active figcaption {
  opacity: 1;
  transform: none;
}


/* ===== ABOUT =====*/
.about__container {



  }

.about__subtitle {
  margin-bottom: var(--mb-2);
  align-self: center;
  
}
.about__img {
  width: 80vw;
  float: left;
  border-radius:3%;
  margin-left: 10vw;

}

.about__img img {
  width: 300px;
  border-radius: 0.5rem;
}

.about__text {
  text-align: left;
  margin-bottom: 10%;
  margin-left: 10%;
  margin-right: 10%;
  max-width: 100%;
  font-family: var(--normal-font-size);
}

#about__button {

  display: flex;
  justify-content: center;
  max-width: 150px;
  margin-top: 25px;
  font-size: 15pt;
}

/* ===== SKILLS =====*/
.skills__container {
  row-gap: 2rem;
  text-align: center;
  margin: 10vh 30px 0vh;
  grid-template-columns: 0.7fr;
  justify-content: center;
  column-gap: 1rem;

}

.skills__subtitle {
  margin-bottom: var(--mb-2);
}
.skills__text {
  margin-bottom: var(--mb-4);
}
.skills__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: 0.5rem 1rem;
  margin-bottom: var(--mb-4);
  border-radius: 0.5rem;
  box-shadow: 0px 4px 25px rgba(51, 51, 51, 0.192);
}
.skills__icon {
  font-size: 2rem;
  margin-right: var(--mb-2);
  color: var(--first-color);
}
.skills__names {
  display: flex;
  align-items: center;
}

.skills__name, .skills__percentage{

  color: #ffffff;

}
.skills__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--first-color);
  height: 0.25rem;
  border-radius: 0.5rem;
  z-index: var(--z-back);
}
.skills__expert {
  width: 99%;
}
.skills__advanced {
  width: 75%;
}
.skills__inter {
  width: 50%;
}
.skills__beginner {
  width: 20%;
}
.skills__img {
  border-radius: 0.5rem;
  display: block;
      margin: 0 auto;
      width: 40%;
}

/* HTML: <div class="hexagon"></div> */
.hexagon {
  height: 12vw; /* adjust to control the size  */
  aspect-ratio: cos(30deg);
  clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
  background: var(--spogenta);
}

/*SKILL-25*/


/* ===== WORK =====*/

.work {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.work__container {
  row-gap: 2rem;
  text-align: left;
  align-content: center;
  margin-top: auto;
}
.work__img {
  box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.work__img img {
  transition: 1s;
}
.work__img img:hover {
  transform: scale(1.1);
}

.date {

  color: #3792e3;
  font-size: 10pt;
}


/*UI-Inner-Layout*/

.fw {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  background-color: #25252500;
  margin: 10px 0px 10px 0px;
  
}

.fw__2 {

  margin: 10px 0px 10px 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fw__3 {

  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;

}

.fw img{

  object-fit: contain;
  height: auto;

}

.fw__3 img{
  max-width: 100%;
}

.banner {

  display: grid;
  width: 110%;
  min-height: auto;
  margin: 40px auto 40px auto;
  position: relative;

}

.banner img {

  width: 100vw;
  height: 200px;
  filter: invert(0);
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#filled {
  background-color: #00dfd8;
}

#filled h1{
  color: #fff;
}

.vc {

  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

}

#btn_more {
 
}

#more {
  display: none;
  margin-top: 4vh;
}

.process__wrapper {

  height: auto;
  background-image: linear-gradient(143deg, #150019 0%, #0b0c16 46%, #0d0d0d 100%);
  filter: blur(1);
  padding: 0px;
  margin-top: 500x;

}

@media screen and (min-width: 767px) {


  .process__wrapper {

    height: auto;

    filter: blur(1);
    padding: 50px;
    margin-top: 500x;
  
  }

.process__container {

  display: grid;
  max-width: 75%;
  align-items:top;
  padding: 1rem;
  grid-template-columns: 50% auto ;  
  border: 0px solid #ffffff1f;
  border-radius: 10px;
  margin: 20px;

  }

  #cards-work {
    margin-left: 0%;
  }

}
.process__container img {

  filter: invert(0);
  width: 100%;
  margin: 0px 0px 0px 0px;
  max-width: auto;

}

.process__text {

  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  padding: 0px;
  margin-right: 100px;

}

/*TOOLS*/

.tools {

  width: 100%;
  display: block;
  
 
}
.tools_text {

  width: 100%;
  min-height: 100px;
  margin: auto 0;
  text-align: center;
  text-align: center;
  line-height: 100px;
}

.tools-section {

  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: auto auto auto auto auto auto auto auto;
  gap: 3%;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  background-image: var(--my-gradient);
  border: solid 1px #0a0a0a00;
  border-style: solid none;
  background-color: #161616;

}

.tools-section:hover {

  border: solid 1px #1b1b1bd3;
  border-style: solid none;
  transition: 0.4s;

}

.tools-section img {

  width: 70px;
  border-radius: 50%;
  padding: 10px;
  filter: grayscale(0);
  object-fit: fill; 
  border: 1px solid rgba(255, 255, 255, 0);

}

.tools-section img:hover {

  border: 1px solid rgba(255, 255, 255, 0.123);

}

.tools__container {

  display: flex;

  flex-wrap: wrap;
  flex-grow: 5;
  flex-direction: column;

  display: grid;
  align-items: flex-end;

}

.tools__text {
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center ;

}

/* ===== CONTACT =====*/

.contact {

  align-content: center;
  justify-content: center;
  margin-top: 10vh;
 
}

.contact__input {
  width: 100%;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--second-color);
  outline: none;
  margin-bottom: var(--mb-4);
}

.contact button {
  display: block;
  border: none;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  justify-self: center;
  align-self: center;
}

@media screen and (min-width: 768px) {
  .contact {

    margin-top: 0px;
  }
}

/* ===== FOOTER =====*/

.footer {
 
  background-image: linear-gradient(123deg, #0f0f211f 0%, #4e077e1f 46%, #00aeff23 100%);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 6vh 0;

  display: flex;
	align-items: center;
  justify-content: center;
	gap: 3vh 2vw;
  flex-wrap: wrap;

}

@media screen and (min-width: 768px){
  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
  
  }
  
}

.footer__title {
  font-size: 2rem;
  margin-bottom: var(--mb-4);
}
.footer__social {
  display: flex;
  justify-content: center;
}
.footer__icon {
  font-size: 1.5rem;
  color: #fff;
}
.footer__copy {
  font-size: var(--smaller-font-size);
}

.footer__copyright {
font-size: 12px;
font-weight: 200;}

.footer__menu-button {
  display: flex;
  justify-content: center;


}



/* ===== PROJECT-PAGES =====*/

.project__container {

    display: grid;
    max-width:100%;
    align-items:top;
    padding: 1rem;
    grid-template-columns: auto ;  
    border: 0px solid #ffffff1f;
    border-radius: 10px;

  
}

#p_head {

    background-color: #0011ff00;

}

.project__container img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: #000;
  }

 

.project__container .home__title {

  margin-left: 10vw;
  
  }

.project_info_head {

  text-align: center;
  font-size: 30px;
  font-family: "Genos", sans-serif;
  border-bottom: 1pt solid #4b4b4b;
  
  }
  .project_info_head_c {

    text-align: center;
    font-size: 30px;
    font-family: "Genos", sans-serif;
    
    }  

  .project__text {
    text-align: start;
    align-items: start;
    justify-content: start;
    display: flex;
    flex-wrap: wrap;
  }

  .project__text p {

    color: #bbbbbb;
    font-size: 10pt;
    margin-left: 0%;
    

  }

  .project__list {
    display: flex;
  margin: 5px;

  }

  .project__list li::marker{
    color: rgb(240, 240, 240);
  }

  /*PARALLAX*/

  .parallaxBackground {
    margin:0 auto;
    width:100vw;
    position:relative;
    background-attachment:fixed;
    background-size: cover;
    position:relative;
  }

  .parallaxBackground::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.719); 
    pointer-events: unset; 
    background-blend-mode: overlay;
}

.parallaxBackground:nth-of-type(2n)::after {
  background: rgba(0, 0, 0, 0.945); /* Darker overlay for every second */
}

  h1 span { 
}



  
  .one {
    background-image:url("/assets/img/1/EC_16.png");

  }

  
  .two {
    background-image:url("/assets/img/1/EC_4.png");
    background-repeat: no-repeat;

  }
  
  .three {
    background-image:url(https://raw.githubusercontent.com/jeffreypoland/reference-repo/master/scroll_parallax/img2.jpg)
  }

  .four {
    background-image:url("/assets/img/2/holo_inventoryoutput.png")
  }

  .five {
    background-image:url("/assets/img/2/BA2.png")
  }

  .six{
    background-image:url("/assets/img/videocut.jpg");
    background-repeat: no-repeat;
  }

  .parallaxBackground .project__container {


  }

  
  .contact__form {
 
    gap: 10px;

    
  }

  .list-item{ 
    margin-bottom: 2%; 
    list-style-type: none; 
    } 
    .list-item span{ 
    margin-left: 10px; 
    font-size: 1.4rem; 
    } 
    .list-item a{ 
    color: white; 
    display: inline-block; 
    } 
    .list-item a:hover{ 
    text-decoration: underline; 
    } 

/* ===== MEDIA QUERIES=====*/
@media screen and (max-width: 320px) {
  .home {
    row-gap: 2rem;
    max-height: 100vh;
  }
  .home__img {
    width: 200px;
  }

  
}
@media screen and (min-width: 576px) {
  .home {
    padding: 4rem 0 2rem;
    max-height: 100vh;

  }
  .home__social {
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }
  .home__social-icon {

}
  }
  .home__img {
    width: 300px;
    bottom: 25%;
  }


  .work__container {
    grid-template-columns: repeat(2, 2fr);
  
    column-gap: 2rem;
  
  }

  .linkSpanner{
    position:absolute; 
    width:100%;
    height:100%;
    top:0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
  }

  .contact__form {
    width: 360px;
    padding-top: 2rem;
    gap: 10px;
    margin-left: auto;
    margin-right: auto ;
    align-items: center;
    display: grid;
    
    
  }
  .contact__container {
    display: grid;
    margin: auto;
    align-items: center;
    padding: 1rem;
    
  }

  .card {

    max-width: 300px;
  }

  .article {

    max-width: 350px;
  }


/*DESKTOP*/

@media screen and (min-width: 768px) {
  
  .section {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }
  .section-title {
    margin-bottom: var(--mb-6);
  }
  .section-title::after {
    width: 80px;
    top: 3rem;
  }
  .nav {

    
  }
  .nav__list {
    display: flex;
    padding-top: 0;
    float: right;
  }
  .nav__list li{
    list-style-type: circle;
  }

  .nav__item {
    margin-left: var(--mb-4);
    margin-right: var(--mb-4);
    height: auto;
   
  }

  .nav img{

    border-radius: 50%;
    padding-inline: 2px;
  }

  .nav__item:hover {

    color: #e2e2e2;
    padding: 10px 10px;
    font-weight: var(--font-semi);
    border-radius: 0.5rem;
    transition: 0.3s;
   
 
  }
  .nav__toggle {
    display: none;
  }

  .nav__toggle:hover {
    background-color: #ffffff;
    color: black;
  }

  .nav__link {
    color: var(--second-color);
    justify-self: center;
    
  }
  .home {
    padding: 8rem 0 2rem;
  }
  .home__img {
    width: 400px;
    bottom: 10%;
  }

  .banner {

    display: grid;
    width: 100%;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;

    grid-template-columns: auto  ;
    grid-template-rows: auto;
    text-align: center;


  }

  .banner img {

    width: 100vw;
    height: 200px;
    filter: invert(0);
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }

  .vc {

    margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  }


  .fw {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
  
    grid-template-columns: auto  ;
    grid-template-rows: auto;
    
    column-gap: 3vw;
    row-gap: 1vw;

  }

  .fw p {

  }
  .fw__2{
    display: flex;
  }
  .fw__2 h1 {

    text-align: left ;
  }

  .fw__2 {

    width: 100%;
    display: flex;
    grid-template-columns: 50vw 50vw ;
    gap: 10px;
 
  }

  .fw__3 {

    width: 100%;
    display: flex;
    grid-template-columns: auto auto auto;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    margin: 40px auto 40px auto;


  }

  .fw img {
    max-width: 100vw;
    max-height: 300px;
    filter: invert(0);
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }

  .fw p{

    margin-right: 10px;
    max-height: auto;
    max-width: 80%;
  }

  .fw__3 img {
    max-width: 33%;
    max-height: 300px;
    filter: invert(0);
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }

  .project__container {

    display: grid;
    max-width: 100vw;
    align-items:top;
    padding: 1rem;
    grid-template-columns: auto ;  
    border: 0px solid #ffffff1f;
    border-radius: 10px;
  
}

.project__container img {
    max-width: 700px;
    max-height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: #000;
    border: 0pt solid rgb(70, 70, 70);
    background-color: rgb(100, 100, 100);
}

.project__container .home__title {

  margin-left: 10vw;
  margin-top: 5vh;
  font-weight: 400;
  
  
  }



.project__text {
  
  padding-right: 2vw;
  max-width: 50vw;
  

}

#p__intro {

  max-width: 50vw;

}
  
  .about__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: 10vw;

  }

  .about__img {
    width: 20vw;
    margin-left: 0vw;


  }

  .about__img img {
    width: 300px;
  }

  .about__text {
    text-align: left;
    margin-bottom: 10px;
    margin-left: 0px;
    max-width: 70%;

  }

  .skills__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    align-items: center;
    text-align: initial;
    margin: 12vh 30px 0vh;
  }
  .work__container {
    grid-template-columns: (repeat 1, 1fr);
    column-gap: 2rem;
  
    column-gap: 2rem;
    padding-top: 2rem;
    max-width: 100%;
  }


  .process__wrapper {


height: auto;
filter: blur(1);
padding: 50px;
max-width: 90vw;
margin-top: 500x;
  }
}
  
@media screen and (min-width: 992px) {

  .skills {
    padding: 100px;
}
  .bd-grid {
    
    margin-left: auto;
    margin-right: auto  ;
    max-width: 80vw;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .bs-grid {
    
    margin-left: auto;
    margin-right: auto  ;
    margin-top: 5%;
    margin-bottom: 50px;
  }
  
  .home {
    padding: 0% 0px 0% 0px;
    height: 100vh;
  }
  .home__img {
    width: 450px;
  }

  .home__social {

    display: flex;
    flex-direction: column;  }

  .home__social_1 {
    margin-top: 2vh;
      margin-bottom: 5vh;
      row-gap: 5px;
      
  } 

  .about__social {

    display: flex;
    justify-content: left;
    margin-bottom: 25px;
  }

}