@import url("https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

/* Variables --------------------------------------------------------------------------------------------------------*/
:root {
  --font-size:1rem;
}
.light-mode {
  --navbar-color: #000;
  --navbar-bg-color: #dddd;  
}
.dark-mode {
  --navbar-color: #000;
  --navbar-bg-color: #dddd;  
}



/* Reset ------------------------------------------------------------------------------------------------------------*/
* {
  box-sizing:border-box; 
  outline:none;
  margin:0;
  padding:0;
  overflow-x: hidden;
}



/* Basic style -----------------------------------------------------------------------------------------------------*/
body {
  margin:0;
  font-size:var(--font-size);
  background: url('/img/animated_shape3.svg') center center no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  font-family: 'manrope', sans-serif;
}

/* NAVBAR -----------------------------------------------------------------------------------------------------------*/
nav {
  position: fixed;
  width: 100%;
  bottom: 25px;
  z-index: 100;
}
.navbar {  
  display:flex;
  align-items:center; 
  justify-content:center;
  padding:10px;
  font-size:1.1rem;
}
.navbarr {  
  display:flex;
  align-items:center; 
  justify-content:center;
  padding:20px;
  font-size:1.1rem;
  background:var(--navbar-bg-color);
  color:var(--navbar-color);
  border-radius: 80px;
}
.navbar__links { 
  display:flex;  
}
.navbar__link { 
  padding:0 10px;
}
.navbar__link > a { 
  color:var(--navbar-color);
  text-decoration:none;
}
.burger {
  display:none;
}

/* ROTATING TEXT ANIMATION -----------------------------------------------------------------------------------------*/
.circletext {
  overflow: hidden;
	position: absolute;
  top: 30px;
  left: 30px;
	width: 200px;
	height: 200px;
	border-radius: 100vmax;
  font-family: 'manrope', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text {
  overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
  font-family: 'manrope', sans-serif;
	color: #ffffff;
	font-size: 17px;
	animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
}

.text span {
	position: absolute;
	left: 50%;
	font-size: 1.5em;
	transform-origin: 0 100px;
}

.blinking-green {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: green;
  animation: pulse 3s infinite, blur 3s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
  }
  50% {
    transform: scale(0.75);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  }
  100% {
    transform: scale(0.5);
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
  }
}

@keyframes blur {
  0%, 100% {
    filter: blur(0);
  }
  50% {
    filter: blur(5px);
  }
}


/* PARALLAX EFFECT -------------------------------------------------------------------------------------------------*/

.parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}


/* HERO CONTAINER ---------------------------------------------------------------------------------------------------*/

.hero_container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.p1 {
  width: 75vw;
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}
.p11 {
  width: 75vw;
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.p2{
  width: 75vw;
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.p3 {
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 70px;
  font-weight: 700;
  overflow: hidden;
}


/* SKILLS PART */

.skills_section {
  height: 100vh;
  background: rgba(21, 21, 21, 0.5);
  color: white;
} 





.skills {
  text-shadow: 0px 0px 5px rgba(255,255,255,1);
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  padding-left: 2%;
}

.skills span {
  color: gray;
}

/* ROUE DES SKILLS */
:root {
	--rotate-speed: 40;
	--count: 18; /* Default count, the DOM element should override this */
	--easeInOutSine: cubic-bezier(0,0,0,0);
	--easing: cubic-bezier(0,0,0,0);
}

.void {
	width: 100%;
  height: 100vh;
	margin: auto;
	position: absolute;
	aspect-ratio: 1 / 1;
  overflow: hidden !important;
  padding: 10px;
  box-shadow: inset 0px -30px 30px -30px #e3ecf5;
}
/* #card-list:hover * {
	animation-play-state: paused;
} */
#card-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
  height: 200vh;
	aspect-ratio: 1 / 1;
	z-index: 1;
  overflow: hidden !important;
}

.card-li {
	position: absolute;
	top: 50%;
  left: 8%;
	transform: translateY(-50%);
/* 	outline: 2px dashed cyan; */
	width: 85%;
	animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
  overflow-x: visible !important;
}

.cardd {
	width: 200px;
  height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 24px;
	gap: 8px;
  border-radius: 10px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #535062;
	animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
  overflow: hidden;
  text-align: center;

}

.card-skill-1{
  box-shadow: inset 0px 20px 10px -10px #264DE4, inset 0px -20px 10px -10px #264DE4;
}
.card-skill-2{
  box-shadow: inset 0px 20px 10px -10px #0567E0, inset 0px -20px 10px -10px #0567E0;
}
.card-skill-3{
  box-shadow: inset 0px 20px 10px -10px #EB3C00, inset 0px -20px 10px -10px #EB3C00;
}
.card-skill-4{
  box-shadow: inset 0px 20px 10px -10px #FFD14B, inset 0px -20px 10px -10px #FFD14B;
}
.a-skill4{
  margin-top: 15%;
  position: relative;
  max-width: 70%;
}
.card-skill-5{
  box-shadow: inset 0px 20px 10px -10px #151F4E, inset 0px -20px 10px -10px #151F4E;
}
.card-skill-6{
  box-shadow: inset 0px 20px 10px -10px #DD9E0F, inset 0px -20px 10px -10px #DD9E0F;
}
.card-skill-7{
  box-shadow: inset 0px 20px 10px -10px #E44D26, inset 0px -20px 10px -10px #E44D26;
}
.card-skill-8{
  box-shadow: inset 0px 20px 10px -10px #F7DF1E, inset 0px -20px 10px -10px #F7DF1E;
}
.a-skill8{
  margin-top: 15%;
  position: relative;
  max-width: 70%;
}
.card-skill-9{
  box-shadow: inset 0px 20px 10px -10px #CF649A, inset 0px -20px 10px -10px #CF649A;
}
.card-skill-10{
  box-shadow: inset 0px 20px 10px -10px #777BB3, inset 0px -20px 10px -10px #777BB3;
}
.a-skill10{
  margin-top: 20%;
  position: relative;
  max-width: 100%;
}
.card-skill-11{
  box-shadow: inset 0px 20px 10px -10px #0AE448, inset 0px -20px 10px -10px #0AE448;
}
.a-skill11{
  margin-top: 10%;
  position: relative;
  max-width: 70%;
}
.card-skill-12{
  box-shadow: inset 0px 20px 10px -10px #00758F, inset 0px -20px 10px -10px #00758F;
}
.a-skill12{
  margin-top: 10%;
  position: relative;
  max-width: 70%;
}

.card-skill-13{
  box-shadow: inset 0px 20px 10px -10px #fff, inset 0px -20px 10px -10px #fff;
}

.card-skill-14{
  box-shadow: inset 0px 20px 10px -10px #95BF46, inset 0px -20px 10px -10px #95BF46;
}
.a-skill14{
  margin-top: 10%;
  position: relative;
  max-width: 50%;
}

.card-skill-15{
  box-shadow: inset 0px 20px 10px -10px #D41E25, inset 0px -20px 10px -10px #D41E25;
}
.a-skill15{
  margin-top: 10%;
  position: relative;
  max-width: 70%;
}

.card-skill-16{
  box-shadow: inset 0px 20px 10px -10px #007CC4, inset 0px -20px 10px -10px #007CC4;
}
.a-skill16{
  margin-top: 10%;
  position: relative;
  max-width: 50%;
}

.card-skill-17{
  box-shadow: inset 0px 20px 10px -10px #E51050, inset 0px -20px 10px -10px #E51050;
}
.a-skill17{
  margin-top: 10%;
  position: relative;
  max-width: 50%;
}

.card-skill-18{
  box-shadow: inset 0px 20px 10px -10px #2196F3, inset 0px -20px 10px -10px #2196F3;
}

.a-skill {
  text-decoration: none;
  color: unset;
  max-width: 80%;
}

.model-name {
	color: gray;
	display: block;
  overflow: hidden;
}
svg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.card-li:nth-child(2), .card-li:nth-child(2) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -1s);
}
.card-li:nth-child(3), .card-li:nth-child(3) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -2s);
}
.card-li:nth-child(4), .card-li:nth-child(4) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -3s);
}
.card-li:nth-child(5), .card-li:nth-child(5) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -4s);
}
.card-li:nth-child(6), .card-li:nth-child(6) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -5s);
}
.card-li:nth-child(7), .card-li:nth-child(7) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -6s);
}
.card-li:nth-child(8), .card-li:nth-child(8) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -7s);
}
.card-li:nth-child(9), .card-li:nth-child(9) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -8s);
}
.card-li:nth-child(10), .card-li:nth-child(10) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -9s);
}
.card-li:nth-child(11), .card-li:nth-child(11) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -10s);
}
.card-li:nth-child(12), .card-li:nth-child(12) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -11s);
}
.card-li:nth-child(13), .card-li:nth-child(13) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -12s);
}
.card-li:nth-child(14), .card-li:nth-child(14) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -13s);
}
.card-li:nth-child(15), .card-li:nth-child(15) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -14s);
}
.card-li:nth-child(16), .card-li:nth-child(16) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -15s);
}
.card-li:nth-child(17), .card-li:nth-child(17) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -16s);
}
.card-li:nth-child(18), .card-li:nth-child(18) .cardd {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -17s);
}

@keyframes rotateCW {
	from {
		transform: translate3d(0px, -50%, -1px) rotate(-130deg);
	}
	to {
		transform: translate3d(0px, -50%, 0px) rotate(-415deg);
	}
}
@keyframes rotateCCW {
	from {
		transform: rotate(130deg);
	}
	to {
		transform: rotate(415deg);
	}
}

.center-circle {
	position: absolute;
	width: 35%;
	aspect-ratio: 1 / 1;
	left: 50%;
  top: 50%;
	transform: translate(-50%, -50%);
  background: rgba(224, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow:
  0 0 32px #fff,
  inset 0 0 32px #fff,
  0 0 64px #c6e2ff,
  inset 0 0 64px #c6e2ff,
  0 0 128px #c6e2ff,
  inset 0 0 128px #c6e2ff; 
	border-radius: 50%;
}

.center-circle h3 {
  position: relative;
  top: 15%;
  color: rgba(21, 21, 21, 1);
  font-size: 4rem;
  text-align: center;
  font-weight: 700;
  text-shadow:   0 0 3px #fff;
}

.crop {
	-webkit-mask-image: linear-gradient(360deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1));
}


/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 75%;
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: -30px;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 200px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 75%;
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }

/* RESUME */

.h1-cv {
font-size: 15rem;
}

.p-skills {
  text-shadow: 0px 0px 5px rgba(255,255,255,1);
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  padding-left: 2%;
}

#cv h3{
padding-bottom: 5%;
}
.timeline-section {
  background: rgba(21, 21, 21, 0.2);
  padding: 100px 15px;
  height: 100%;
}

.timeline-items {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.timeline-items::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #c6e2ff;
  box-shadow: 0px 0px 20px 0px #4284F4;
  left: calc(50% - 2px);
}

.timeline-item {
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.timeline-dot {
  height: 16px;
  width: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #4284F4;
  position: absolute;
  left: calc(50% - 8px);
  border-radius: 50%;
  top: 10px;
}

.timeline-date {
  font-size: 18px;
  color: #C6E2FF;
  margin: 6px 0 15px;
  font-weight: bold;
}

.timeline-content {
  padding: 30px;
  border-radius: 5px;
  border-radius: 16px;
  box-shadow:inset 0px 0px 20px 0px #4284F4;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(200px);
  border: 1px solid rgba(255, 255, 255, 0.21);
}

.timeline-content h3 {
  font-size: 20px;
  color: #C6E2FF;
  margin: 0 0 10px;
  font-weight: 500;
}

.timeline-content p {
  color: #C6E2FF;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}








.contact-section {
  background: rgba(21, 21, 21, 0.2);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title-container {
  text-align: center;
  color: white;
}

.contact-h2{
  font-size: 5rem;
}

.contact-h3{
  font-size: 2rem;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  margin-top: 10%;
  padding-left: 20%;
  padding-right: 10%;
}


.container-form {
  width: 100%;

  position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(200px);
  border: 1px solid rgba(255, 255, 255, 0.21);
  padding: 5%;
  box-shadow: inset 0px 0px 20px 0px white;
  width: 70%;
  text-align: center;
}

#contact h3 {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}


fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  width: 100%;
}

input,
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 15px;
  border-radius: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4284F4;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
  height: 40px;
  border-radius: 10px;
}

#contact button[type="submit"]:hover {
  background: #1f4077;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}





.cup {
  height: 210px;
  width: 220px;
  border: 10px solid white;
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 20px 20px 60px 60px;
  background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
  background-position: 0 0, 0 0;
  background-repeat: repeat-x;
  animation: coffee 4s infinite linear;
  overflow: hidden;
}
@keyframes coffee {
  100% {
    background-position: -100% 0, -100% 0;
  }
}
.cup:before {
  content: "";
  position: absolute;
  height: 80px;
  width: 60px;
  border: 10px solid #030303;
  border-left: none;
  right: -75px;
  top: 30px;
  border-radius: 0 30px 80px 0;
}
.cup:after {
  position: absolute;
  content: "";
  height: 10px;
  width: 300px;
  background-color: #030303;
  left: -45px;
  bottom: -10px;
  border-radius: 10px;
}
.bubble {
  height: 15px;
  width: 15px;
  background-color: #fbbe08;
  border-radius: 50%;
  position: absolute;
  animation: bubbles forwards infinite;
  opacity: 0.6;
}
@keyframes bubbles {
  100% {
    transform: translateY(-150px);
    opacity: 0;
  }
}
.bubble-1 {
  left: 30px;
  bottom: 10px;
  animation-delay: 0.5s;
  animation-duration: 3s;
}
.bubble-2 {
  left: 80px;
  bottom: 35px;
  animation-delay: 1.2s;
  animation-duration: 4s;
}
.bubble-3 {
  left: 140px;
  bottom: 30px;
  animation-duration: 4s;
}





.footer-container{
  height: 30vh;
  background: rgba(21, 21, 21,1);
  display: flex;
	align-items: center;
	justify-content: space-between;
  flex-direction: column;
  color: white;

}

.h2-footer {
  font-size: 3rem;
  position: relative;
  margin-top: 50px;
}

.thank-footer {
  font-size: 1.5rem;
}

.network {
  width: 13%;
  height: 10vh;
  position: absolute;
  left: 10px;
  text-align: center;
  border: 5px dotted grey;
  overflow: hidden;
  margin-top: 19vh;
  z-index: 999;
}

.network p {
  position: relative;
  top: 15%;
  color: grey;
}

.social-menu ul{
  position: absolute;
  top: 65%;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  height: 100px;
}

.social-menu ul li{
  list-style: none;
  margin: 0 15px;
}

.social-menu ul li .fab{
  font-size: 25px;
  line-height: 45px;
  transition: .3s;
  color: #000;
}

.social-menu ul li a{
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  transition: .6s;
  box-shadow: 0 5px 4px rgba(0,0,0,.5);
  overflow: hidden;
}

.social-menu ul li a:hover{
  background-color: #0077b5;
}

.social-menu ul li a:hover > .fab{
  color: #fff;
} 







/* SMALL DEVICE < 768 -----------------------------------------------------------------------------------------------*/
@media screen and (max-width:767.97px) {
  .navbar__links { 
    overflow:hidden;
    display:flex;
    flex-direction:column;
    width:0;
    height:calc(100vh - 65px);  
    position:fixed;
    top:65px;
    right:0;     
    background:var(--navbar-bg-color);     
    transform: translateX(110%);
    transition: all .5s ease-in-out;
  }
  .navbarr {
    background:transparent;  
  }
  .show-nav .navbar__links { 
    
    width:100vw;    
    transform: translateX(0);
  } 
  .navbar__link {    
    transform: translateX(101%);
    transition: all .5s ease-in-out;
  }
  
  .show-nav .navbar__link  {        
    transform: translateX(0);    
  }   
  .navbar__link > a {
    display:block;
    padding:1rem;
    font-size:1.6rem;
    color:var(--navbar-color);  
    transition: all .4s ease-in-out;
  }
  .navbar__link > a:hover {
    padding-left:2rem;
    letter-spacing:5px;
  }
  
  /* Toggle menu */
  .burger {
    display:block;
    position:fixed;
    top: 10px;
    right: 10px;
    padding:0;
    width:45px;
    height:45px;
    border:none;
    background:transparent;
    cursor:pointer;
  }
  .bar {
    display:block;    
    width:45px;
    height:4px;  
    border-radius:3px;
    background:var(--navbar-bg-color); 
    transition: all .5s ease-in-out;   
  }
  .bar::before, .bar::after {
    content:"";
    width:45px;
    height:4px;
    position:absolute; 
    left:0;  
    background:var(--navbar-bg-color); 
    border-radius:3px;    
    transition: all .5s ease-in-out;
  }
  .bar::before {
    transform:translateY(-12px)
  }
  .bar::after {
    transform:translateY(12px)
  }
  .show-nav .bar {
    width:0;
    background:transparent;    
  }
  .show-nav .bar::before {
    transform:rotate(45deg);
  }
  .show-nav .bar::after {
    transform:rotate(-45deg);
  }
  
  /* Bonus - Animations */
  .show-nav .first {      
    transition: all 1s ease-out;
  } 
  .show-nav .second {      
    transition: all 1.1s ease-out;
  } 
  .show-nav .third {      
    transition: all 1.2s ease-out;
  } 
  .show-nav .four {      
    transition: all 1.3s ease-out;
  } 
  .show-nav .fifth {      
    transition: all 1.4s ease-out;
  }
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
  }
  
  .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }

  .img-hero {
    max-width: 50%;
  }

 /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 100px;
  	height: 100px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }

  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }

  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }

  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 0.65em;
  	transform-origin: 0 50px;
  }

  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }

  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }

  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }



  .skills_section {
    background: rgba(21, 21, 21, 0.5);
    color: white;
    height: 250vh;
    
  } 
  
  .skill_container {

    overflow: hidden !important;
    height: 250vh;
  
  }
  


  .skills {
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;

  }
  
  .skills span {
    color: gray;
  }
  
  /* ROUE DES SKILLS */
  :root {
    --rotate-speed: 40;
    --count: 18; /* Default count, the DOM element should override this */
    --easeInOutSine: cubic-bezier(0,0,0,0);
    --easing: cubic-bezier(0,0,0,0);
  }
  
  .void {
    width: 100%;
    height: 250vh;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden !important;
    padding: 10px;
    border-bottom: 1px solid #e3ecf5;
    box-shadow: inset 0px -10px 10px -10px #e3ecf5;

  }

  #card-list {
    list-style-type: none;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    width: 100%;
    height: 250vh;
    aspect-ratio: 1 / 1;
    z-index: 1;
    overflow: hidden !important;
    display: flex;
    flex-wrap: wrap;
  }
  
  .card-li {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 25px;
    transform: none;
  /* 	outline: 2px dashed cyan; */
    width: 100%;
    animation: none;
    overflow: hidden !important;
    width: calc(100% / 2);
  }
  
  .cardd {
    width: 90%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    margin: 0 10px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535062;
    animation: none;
    overflow: hidden !important;
    text-align: center;
  
  }
  
.a-skill {
  position: relative;
  max-width: 45%;
  margin-top: 0;
}

  .card-skill-1{
    box-shadow: inset 0px 20px 10px -10px #264DE4, inset 0px -20px 10px -10px #264DE4;
    margin-top: 50px;
  }
  .card-skill-2{
    box-shadow: inset 0px 20px 10px -10px #0567E0, inset 0px -20px 10px -10px #0567E0;
  }
  .card-skill-3{
    box-shadow: inset 0px 20px 10px -10px #EB3C00, inset 0px -20px 10px -10px #EB3C00;
  }
  .card-skill-4{
    box-shadow: inset 0px 20px 10px -10px #FFD14B, inset 0px -20px 10px -10px #FFD14B;
  }

  .card-skill-5{
    box-shadow: inset 0px 20px 10px -10px #151F4E, inset 0px -20px 10px -10px #151F4E;
  }
  .card-skill-6{
    box-shadow: inset 0px 20px 10px -10px #DD9E0F, inset 0px -20px 10px -10px #DD9E0F;
  }
  .card-skill-7{
    box-shadow: inset 0px 20px 10px -10px #E44D26, inset 0px -20px 10px -10px #E44D26;
    margin-top: 50px;
  }
  .card-skill-8{
    box-shadow: inset 0px 20px 10px -10px #F7DF1E, inset 0px -20px 10px -10px #F7DF1E;
  }

  .card-skill-9{
    box-shadow: inset 0px 20px 10px -10px #CF649A, inset 0px -20px 10px -10px #CF649A;
  }
  .card-skill-10{
    box-shadow: inset 0px 20px 10px -10px #777BB3, inset 0px -20px 10px -10px #777BB3;
  }

  .card-skill-11{
    box-shadow: inset 0px 20px 10px -10px #0AE448, inset 0px -20px 10px -10px #0AE448;
  }

  .card-skill-12{
    box-shadow: inset 0px 20px 10px -10px #00758F, inset 0px -20px 10px -10px #00758F;
  }

  
  .card-skill-13{
    box-shadow: inset 0px 20px 10px -10px #fff, inset 0px -20px 10px -10px #fff;
  }
  
  .card-skill-14{
    box-shadow: inset 0px 20px 10px -10px #95BF46, inset 0px -20px 10px -10px #95BF46;
  }

  
  .card-skill-15{
    box-shadow: inset 0px 20px 10px -10px #D41E25, inset 0px -20px 10px -10px #D41E25;
  }

  
  .card-skill-16{
    box-shadow: inset 0px 20px 10px -10px #007CC4, inset 0px -20px 10px -10px #007CC4;
  }

  
  .card-skill-17{
    box-shadow: inset 0px 20px 10px -10px #E51050, inset 0px -20px 10px -10px #E51050;
  }
  
  .card-skill-18{
    box-shadow: inset 0px 20px 10px -10px #2196F3, inset 0px -20px 10px -10px #2196F3;
  }
  
  
  .model-name {
    color: gray;
    display: block;
    overflow: hidden;
  }
  svg {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .card-li:nth-child(2), .card-li:nth-child(2) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(3), .card-li:nth-child(3) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(4), .card-li:nth-child(4) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(5), .card-li:nth-child(5) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(6), .card-li:nth-child(6) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(7), .card-li:nth-child(7) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(8), .card-li:nth-child(8) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(9), .card-li:nth-child(9) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(10), .card-li:nth-child(10) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(11), .card-li:nth-child(11) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(12), .card-li:nth-child(12) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(13), .card-li:nth-child(13) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(14), .card-li:nth-child(14) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(15), .card-li:nth-child(15) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(16), .card-li:nth-child(16) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(17), .card-li:nth-child(17) .cardd {
    animation-delay: none;
  }
  .card-li:nth-child(18), .card-li:nth-child(18) .cardd {
    animation-delay: none;
  }
  
  @keyframes rotateCW {
    from {
      transform: none;
    }
    to {
      transform: none;
    }
  }
  @keyframes rotateCCW {
    from {
      transform: none;
    }
    to {
      transform: none;
    }
  }
  
  .center-circle {
  display: none;
  }
  
  .center-circle h3 {
  display: none;
  }
  
  .crop {
    -webkit-mask-image: none;
    height: 1000vh;
  }

.blank {
  height: 100%;
}



/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 65%;
  font-size: 0.8rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 200px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

.fig1 {
  display: none;
}

.fig2 {
  display: none;
}

/* .fig3  {
  display: none;
} */

.fig4 {
  display: none;
}

.fig5 {
  display: none;
}

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 0.8rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }

  .timeline-items {
    margin-top: 30%;
  }

  .timeline-items::before {
    left: 7px;
  }
  .timeline-item:nth-child(odd) {
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 37px;
  }
  .timeline-dot {
    left: 0;
  }


.contact-section {
  background: rgba(21, 21, 21, 0.2);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title-container {
  text-align: center;
  color: white;
}

.contact-h2{
  font-size: 2rem;
}

.contact-h3{
  font-size: 1rem;
}

.contact-container {
  display: flex;
  grid-template-columns: none;
  grid-template-rows: none;
  grid-column-gap: none;
  grid-row-gap: none;
  width: 100%;
  margin-top: 10%;
  padding-left: 10%;
  padding-right: 10%;
}


.container-form {
  width: 100%;

  position: relative;
}

.contact-img {
  display: none;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(200px);
  border: 1px solid rgba(255, 255, 255, 0.21);
  padding: 5%;
  box-shadow: inset 0px 0px 20px 0px white;
  width: 100%;
  text-align: center;
}

#contact h3 {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}


fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  width: 100%;
}

input,
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 15px;
  border-radius: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4284F4;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
  height: 40px;
  border-radius: 10px;
}

#contact button[type="submit"]:hover {
  background: #1f4077;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}





.cup {
  height: 210px;
  width: 220px;
  border: 10px solid white;
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 20px 20px 60px 60px;
  background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
  background-position: 0 0, 0 0;
  background-repeat: repeat-x;
  animation: coffee 4s infinite linear;
  overflow: hidden;
}
@keyframes coffee {
  100% {
    background-position: -100% 0, -100% 0;
  }
}
.cup:before {
  content: "";
  position: absolute;
  height: 80px;
  width: 60px;
  border: 10px solid #030303;
  border-left: none;
  right: -75px;
  top: 30px;
  border-radius: 0 30px 80px 0;
}
.cup:after {
  position: absolute;
  content: "";
  height: 10px;
  width: 300px;
  background-color: #030303;
  left: -45px;
  bottom: -10px;
  border-radius: 10px;
}
.bubble {
  height: 15px;
  width: 15px;
  background-color: #fbbe08;
  border-radius: 50%;
  position: absolute;
  animation: bubbles forwards infinite;
  opacity: 0.6;
}
@keyframes bubbles {
  100% {
    transform: translateY(-150px);
    opacity: 0;
  }
}
.bubble-1 {
  left: 30px;
  bottom: 10px;
  animation-delay: 0.5s;
  animation-duration: 3s;
}
.bubble-2 {
  left: 80px;
  bottom: 35px;
  animation-delay: 1.2s;
  animation-duration: 4s;
}
.bubble-3 {
  left: 140px;
  bottom: 30px;
  animation-duration: 4s;
}



}


/* MEDIUM DEVICE > 768 ----------------------------------------------------------------------------------------------*/
@media screen and (min-width:768px) {
  .navbar__link > a::after {
    display:block;
    content:"";
    width:0;
    height:1px;
    background:var(--navbar-color);
    transition:width .4s;
  }
  .navbar__link:hover > a::after {
    width:100%;
  }
  
}

/* MEDIA DEVICE > 768 < 1024 ----------------------------------------------------------------------------------------*/

@media (min-width:767.98px) and (max-width:1023px) {
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 75px;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 75px;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }


  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 150px;
  	height: 150px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 1em;
  	transform-origin: 0 75px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

  
  .skills {
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 2%;
    
  }

  .a-skill{
    position: absolute;
    top: 10%;
    max-width: 60%;
  }

  .void {
    box-shadow: inset 0px -10px 10px -10px #e3ecf5;
  }
  
  .cardd {
    width: 75px;
    height: 75px;
    
  
  }

  .card-li {
    width: 95%;
    left: 3%;

  }
  
  .center-circle {
    position: absolute;
    width: 50%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(224, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow:
    0 0 32px #fff,
    inset 0 0 32px #fff,
    0 0 64px #c6e2ff,
    inset 0 0 64px #c6e2ff,
    0 0 128px #c6e2ff,
    inset 0 0 128px #c6e2ff; 
    border-radius: 50%;
  }
  
  .center-circle h3 {
    font-size: 2rem;
    top: 7%;
    
  }

.model-name {
  display: none;
}


/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 90%;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 200px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

.fig1 {
  display: none;
}

/* .fig2 {
  display: none;
} */

/* .fig3  {
  display: none;
} */

.fig4 {
  display: none;
}

/* .fig5 {
  display: none;
} */

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }






  .contact-section {
    background: rgba(21, 21, 21, 0.2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-title-container {
    text-align: center;
    color: white;
  }
  
  .contact-h2{
    font-size: 5rem;
  }
  
  .contact-h3{
    font-size: 2rem;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    margin-top: 10%;
    padding-left: 0;
    padding-right: 0;
  }
  
  
  .container-form {
    width: 100%;
  
    position: relative;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea,
  #contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
  }
  
  #contact {
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(200px);
    border: 1px solid rgba(255, 255, 255, 0.21);
    padding: 5%;
    box-shadow: inset 0px 0px 20px 0px white;
    width: 70%;
    text-align: center;
  }
  
  #contact h3 {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  
  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    width: 100%;
  }
  
  input,
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    border-radius: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4284F4;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
  }
  
  #contact button[type="submit"]:hover {
    background: #1f4077;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .copyright {
    text-align: center;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }
  
  ::-webkit-input-placeholder {
    color: #888;
  }
  
  :-moz-placeholder {
    color: #888;
  }
  
  ::-moz-placeholder {
    color: #888;
  }
  
  :-ms-input-placeholder {
    color: #888;
  }
  
  
  
  
  
  .cup {
    height: 210px;
    width: 220px;
    border: 10px solid white;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 20px 20px 60px 60px;
    background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
    background-position: 0 0, 0 0;
    background-repeat: repeat-x;
    animation: coffee 4s infinite linear;
    overflow: hidden;
  }
  @keyframes coffee {
    100% {
      background-position: -100% 0, -100% 0;
    }
  }
  .cup:before {
    content: "";
    position: absolute;
    height: 80px;
    width: 60px;
    border: 10px solid #030303;
    border-left: none;
    right: -75px;
    top: 30px;
    border-radius: 0 30px 80px 0;
  }
  .cup:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 300px;
    background-color: #030303;
    left: -45px;
    bottom: -10px;
    border-radius: 10px;
  }
  .bubble {
    height: 15px;
    width: 15px;
    background-color: #fbbe08;
    border-radius: 50%;
    position: absolute;
    animation: bubbles forwards infinite;
    opacity: 0.6;
  }
  @keyframes bubbles {
    100% {
      transform: translateY(-150px);
      opacity: 0;
    }
  }
  .bubble-1 {
    left: 30px;
    bottom: 10px;
    animation-delay: 0.5s;
    animation-duration: 3s;
  }
  .bubble-2 {
    left: 80px;
    bottom: 35px;
    animation-delay: 1.2s;
    animation-duration: 4s;
  }
  .bubble-3 {
    left: 140px;
    bottom: 30px;
    animation-duration: 4s;
  }

  .footer-container{
    height: 35vh;
    background: rgba(21, 21, 21,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
  
  }
  
  .h2-footer {
    font-size: 2rem;
    position: relative;
    margin-top: 50px;
  }
  
  .thank-footer {
    font-size: 1rem;
    text-align: center;
  }
  
  .network {
    width: 13%;
    height: 10vh;
    position: absolute;
    left: 10px;
    text-align: center;
    border: none;
    overflow: hidden;
    margin-top: 25vh;
    z-index: 999;

  }
  
  .network p {
    position: relative;
    top: 15%;
    color: grey;
    display: none;
  }
  
  .social-menu ul{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    height: 100px;
  }
  
  .social-menu ul li{
    list-style: none;
    margin: 0 15px;
  }
  
  .social-menu ul li .fab{
    font-size: 25px;
    line-height: 45px;
    transition: .3s;
    color: #000;
  }
  
  .social-menu ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: grey;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
    overflow: hidden;
  }
  
  .social-menu ul li a:hover{
    background-color: #0077b5;
  }
  
  .social-menu ul li a:hover > .fab{
    color: #fff;
  } 
}




/* MEDIA DEVICE > 1024 < 1280 ----------------------------------------------------------------------------------------*/


@media (min-width:1024px) and (max-width:1279px) {
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }

  .img-hero {
    max-width: 20%;
  }

  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 75px;
  	height: 75px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 0.5em;
  	transform-origin: 0 35px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

  .navbar {  
    display:flex;
    align-items:center; 
    justify-content:center;
    padding:10px;
    font-size:1.1rem;
  }
  .navbarr {  
    display:flex;
    align-items:center; 
    justify-content:center;
    padding:15px;
    font-size:0.8rem;
    background:var(--navbar-bg-color);
    color:var(--navbar-color);
    border-radius: 80px;
  }


/* PROJECT PART HORIZONTAL SCROLL */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .container {
    display: flex;
    width: 3000vw;
    border-top-left-radius: 50px 50px;
    border-top-right-radius: 50px 50px;
    border-top: 2px solid #575A62;
    background: rgba(21, 21, 21, 0.5);
    
  }
  
  .h1_project {
    position: absolute;
    top: 20px;
    left: 10vw;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .p3 {
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
  }

  .container .col {
    display: flex;
    gap: 3em;
  }
  .container .col p {
    font-size: 0.8rem;
  }
  .container section {
    width: 100vw;
  
  }
  .container section h1 {
    font-size: 3rem;
    margin: 0;
  }
  .container section p {
    font-size: 1.2rem;
    width: 50vw;
  }
  .container section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .container section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  section {
    height: 100vh;
  }
  
  .pin {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;
    width: 90vw;
    height: 70vh;
    box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
    border-radius: 3rem;
    background-color: rgba(21, 21, 21, 0.1);
  }
  
  .card1 {
    box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;
  }
  
  .card2 {
    box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
  }
  
  .card3 {
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card4 {
    box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
  }
  
  .card5 {
    box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
  }
  
  .card6 {
    box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
  }
  
  .card7 {
    box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
  }
  
  .card8 {
    box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
  }
  
  .card9 {
    display: flex;
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card9 p {
    font-size: 5rem !important;
  }
  
  
  .img_card {
    max-width: 100%;
    max-height: 100%;
  }
  
  .img_card1 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card2 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card3 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card4 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card5 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card6 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card7 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card8 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-size: cover;
    background-position: top;
  }
  
  .card-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .image {
    position: absolute;
    margin-top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #222;
    font-size: 20px;
    font-weight: 400;
  }
  
  .card-header-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    width: 100%;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
    border: none;
    overflow: hidden;
  }
  
  
  
  .card-header-slanted-edge {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 100%;
    right: 0;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  
  
  }
  
  .name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .job-title {
    font-size: 0.7rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
  }
  
  .bio {
    font-size: 0.6rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }
  
  
  .card-footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
  }
  
  .card-footer9 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    height: 25%;
    width: 100%;
    bottom: 20px;
  }
  
  .stat {
    box-sizing: border-box;
    width: calc(100% / 3);
    float: left;
    text-align: center;
  }
  
  .stat:nth-child(2) {
    border-left: 1px solid grey;
  }
  
  .stat:nth-child(3) {
    border-left: 1px solid grey;
  }
  
  .stat .label {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    color: #95989A;
  }
  
  .stat .value {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
  }
  
  .name9 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .bio9 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin: 10px ;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .btn_contact_project {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;   
  }
  
  .a_contact_project {
    position: relative;
    display: block;
    width: 200px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  
  }
  .a_contact_project span {
    position: absolute;
    overflow: hidden;
  }
  .a_contact_project span:first-child {
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .a_contact_project span.icon {
    bottom: -100px;
  }
  .a_contact_project span.icon .fa-envelope-o {
    font-size: 2em;
    position: relative;
    top: 5px;
    overflow: hidden;
  }
  .a_contact_project:hover {
    background: white;
    width: 60px;
    border-radius: 50%;
  }
  .a_contact_project:hover .icon {
    color: black;
    transform: translate(-16px, -110px);
  }

  .skills {
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 2%;
    
  }

  .void {
    box-shadow: inset 0px -30px 30px -20px #e3ecf5;
  }
  
  .cardd {
    width: 115px;
    height: 115px;
    
  
  }

  .card-li {
    width: 95%;
    left: 3%;

  }
  
  .center-circle {
    position: absolute;
    width: 40%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(224, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow:
    0 0 32px #fff,
    inset 0 0 32px #fff,
    0 0 64px #c6e2ff,
    inset 0 0 64px #c6e2ff,
    0 0 128px #c6e2ff,
    inset 0 0 128px #c6e2ff; 
    border-radius: 50%;
  }
  
  .center-circle h3 {
    font-size: 2rem;
    top: 10%;
    
  }

.model-name {
  font-size: 0.7rem;
}



/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 90%;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 200px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

.fig1 {
  display: none;
}

/* .fig2 {
  display: none;
} */

/* .fig3  {
  display: none;
} */

.fig4 {
  display: none;
}

/* .fig5 {
  display: none;
} */

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }

  .contact-section {
    background: rgba(21, 21, 21, 0.2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-title-container {
    text-align: center;
    color: white;
  }
  
  .contact-h2{
    font-size: 5rem;
  }
  
  .contact-h3{
    font-size: 2rem;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    margin-top: 10%;
    padding-left: 0;
    padding-right: 0;
  }
  
  
  .container-form {
    width: 100%;
    position: relative;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea,
  #contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
  }
  
  #contact {
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(200px);
    border: 1px solid rgba(255, 255, 255, 0.21);
    padding: 5%;
    box-shadow: inset 0px 0px 20px 0px white;
    width: 85%;
    text-align: center;
  }
  
  #contact h3 {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  
  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    width: 100%;
  }
  
  input,
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    border-radius: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4284F4;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
  }
  
  #contact button[type="submit"]:hover {
    background: #1f4077;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .copyright {
    text-align: center;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }
  
  ::-webkit-input-placeholder {
    color: #888;
  }
  
  :-moz-placeholder {
    color: #888;
  }
  
  ::-moz-placeholder {
    color: #888;
  }
  
  :-ms-input-placeholder {
    color: #888;
  }
  
  
  
  
  
  .cup {
    height: 210px;
    width: 220px;
    border: 10px solid white;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 20px 20px 60px 60px;
    background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
    background-position: 0 0, 0 0;
    background-repeat: repeat-x;
    animation: coffee 4s infinite linear;
    overflow: hidden;
  }
  @keyframes coffee {
    100% {
      background-position: -100% 0, -100% 0;
    }
  }
  .cup:before {
    content: "";
    position: absolute;
    height: 80px;
    width: 60px;
    border: 10px solid #030303;
    border-left: none;
    right: -75px;
    top: 30px;
    border-radius: 0 30px 80px 0;
  }
  .cup:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 300px;
    background-color: #030303;
    left: -45px;
    bottom: -10px;
    border-radius: 10px;
  }
  .bubble {
    height: 15px;
    width: 15px;
    background-color: #fbbe08;
    border-radius: 50%;
    position: absolute;
    animation: bubbles forwards infinite;
    opacity: 0.6;
  }
  @keyframes bubbles {
    100% {
      transform: translateY(-150px);
      opacity: 0;
    }
  }
  .bubble-1 {
    left: 30px;
    bottom: 10px;
    animation-delay: 0.5s;
    animation-duration: 3s;
  }
  .bubble-2 {
    left: 80px;
    bottom: 35px;
    animation-delay: 1.2s;
    animation-duration: 4s;
  }
  .bubble-3 {
    left: 140px;
    bottom: 30px;
    animation-duration: 4s;
  }

  .footer-container{
    height: 30vh;
    background: rgba(21, 21, 21,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
  
  }
  
  .h2-footer {
    font-size: 2rem;
    position: relative;
    margin-top: 25px;
  }
  
  .thank-footer {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 5%;
  }
  
  .network {
    width: 13%;
    height: 10vh;
    position: absolute;
    left: 10px;
    text-align: center;
    border: none;
    overflow: hidden;
    margin-top: 19vh;
    z-index: 999;
  }
  
  .network p {
    position: relative;
    top: 15%;
    color: grey;
    display: none;
  }
  
  .social-menu ul{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    height: 100px;
  }
  
  .social-menu ul li{
    list-style: none;
    margin: 0 15px;
  }
  
  .social-menu ul li .fab{
    font-size: 25px;
    line-height: 45px;
    transition: .3s;
    color: #000;
  }
  
  .social-menu ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: grey;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
    overflow: hidden;
  }
  
  .social-menu ul li a:hover{
    background-color: #0077b5;
  }
  
  .social-menu ul li a:hover > .fab{
    color: #fff;
  } 
  
}



/* MEDIA DEVICE > 1280 > 1440 ----------------------------------------------------------------------------------------*/


@media (min-width:1280px) and (max-width:1439px) {
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }

  .img-hero {
    max-width: 20%;
  }

  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 150px;
  	height: 150px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 1em;
  	transform-origin: 0 75px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

/* PROJECT PART HORIZONTAL SCROLL */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .container {
    display: flex;
    width: 700vw;
    border-top-left-radius: 50px 50px;
    border-top-right-radius: 50px 50px;
    border-top: 2px solid #575A62;
    background: rgba(21, 21, 21, 0.5);
    
  }
  
  .h1_project {
    position: absolute;
    top: 20px;
    left: 10vw;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .p3 {
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
  }

  .container .col {
    display: flex;
    gap: 3em;
  }
  .container .col p {
    font-size: 0.8rem;
  }
  .container section {
    width: 100vw;
  
  }
  .container section h1 {
    font-size: 3rem;
    margin: 0;
  }
  .container section p {
    font-size: 1.2rem;
    width: 50vw;
  }
  .container section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .container section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  section {
    height: 100vh;
  }
  
  .pin {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;
    width: 75vw;
    height: 70vh;
    box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
    border-radius: 3rem;
    background-color: rgba(21, 21, 21, 0.1);
  }
  
  .card1 {
    box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;;
  }
  
  .card2 {
    box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
  }
  
  .card3 {
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;;
  }
  
  .card4 {
    box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
  }
  
  .card5 {
    box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
  }
  
  .card6 {
    box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
  }
  
  .card7 {
    box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
  }
  
  .card8 {
    box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
  }
  
  .card9 {
    display: flex;
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card9 p {
    font-size: 5rem !important;
  }
  
  
  .img_card {
    max-width: 100%;
    max-height: 100%;
  }
  
  .img_card1 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card2 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card3 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card4 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card5 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card6 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card7 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card8 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-size: cover;
    background-position: top;
  }
  
  .card-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .image {
    position: absolute;
    margin-top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #222;
    font-size: 20px;
    font-weight: 400;
  }
  
  .card-header-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    width: 100%;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
    border: none;
    overflow: hidden;
  }
  
  
  
  .card-header-slanted-edge {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 100%;
    right: 0;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  
  
  }
  
  .name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .job-title {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin: 0;
  }
  
  .bio {
    font-size: 0.6rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }

  .bio h2 {
    margin-bottom: 5px;
  }
  
  
  .card-footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
  }
  
  .card-footer9 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    height: 25%;
    width: 100%;
    bottom: 20px;
  }
  
  .stat {
    box-sizing: border-box;
    width: calc(100% / 3);
    float: left;
    text-align: center;
  }
  
  .stat:nth-child(2) {
    border-left: 1px solid grey;
  }
  
  .stat:nth-child(3) {
    border-left: 1px solid grey;
  }
  
  .stat .label {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    color: #95989A;
  }
  
  .stat .value {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
  }
  
  .name9 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .bio9 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin: 10px ;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .btn_contact_project {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;   
  }
  
  .a_contact_project {
    position: relative;
    display: block;
    width: 200px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  
  }
  .a_contact_project span {
    position: absolute;
    overflow: hidden;
  }
  .a_contact_project span:first-child {
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .a_contact_project span.icon {
    bottom: -100px;
  }
  .a_contact_project span.icon .fa-envelope-o {
    font-size: 2em;
    position: relative;
    top: 5px;
    overflow: hidden;
  }
  .a_contact_project:hover {
    background: white;
    width: 60px;
    border-radius: 50%;
  }
  .a_contact_project:hover .icon {
    color: black;
    transform: translate(-16px, -110px);
  }


  .skills {
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 2%;
    
  }

  .void {
    box-shadow: inset 0px -30px 30px -20px #e3ecf5;
  }
  
  .cardd {
    width: 115px;
    height: 115px;
    
  
  }

  .card-li {
    width: 92%;
    left: 5%;

  }
  
  .center-circle {
    position: absolute;
    width: 35%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(224, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow:
    0 0 32px #fff,
    inset 0 0 32px #fff,
    0 0 64px #c6e2ff,
    inset 0 0 64px #c6e2ff,
    0 0 128px #c6e2ff,
    inset 0 0 128px #c6e2ff; 
    border-radius: 50%;
  }
  
  .center-circle h3 {
    font-size: 2rem;
    top: 10%;
    
  }

.model-name {
  font-size: 0.7rem;
}




/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 90%;
  font-size: 1.3rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 100px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

.fig1 {
  display: none;
}

/* .fig2 {
  display: none;
} */

/* .fig3  {
  display: none;
} */

.fig4 {
  display: none;
}

/* .fig5 {
  display: none;
} */

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 1.3rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }


  .contact-section {
    background: rgba(21, 21, 21, 0.2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-title-container {
    text-align: center;
    color: white;
  }
  
  .contact-h2{
    font-size: 3rem;
  }
  
  .contact-h3{
    font-size: 1.3rem;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    margin-top: 5%;
    padding-left: 0;
    padding-right: 0;
  }
  
  
  .container-form {
    width: 100%;
  
    position: relative;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea,
  #contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
  }
  
  #contact {
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(200px);
    border: 1px solid rgba(255, 255, 255, 0.21);
    padding: 5%;
    box-shadow: inset 0px 0px 20px 0px white;
    width: 85%;
    text-align: center;
  }
  
  #contact h3 {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  
  fieldset {
    border: medium none !important;
    margin: 0 0 5px;
    min-width: 100%;
    width: 100%;
  }
  
  input,
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    border-radius: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 75px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4284F4;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
  }
  
  #contact button[type="submit"]:hover {
    background: #1f4077;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .copyright {
    text-align: center;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }
  
  ::-webkit-input-placeholder {
    color: #888;
  }
  
  :-moz-placeholder {
    color: #888;
  }
  
  ::-moz-placeholder {
    color: #888;
  }
  
  :-ms-input-placeholder {
    color: #888;
  }
  
  
  
  
  
  .cup {
    height: 210px;
    width: 220px;
    border: 10px solid white;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 20px 20px 60px 60px;
    background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
    background-position: 0 0, 0 0;
    background-repeat: repeat-x;
    animation: coffee 4s infinite linear;
    overflow: hidden;
  }
  @keyframes coffee {
    100% {
      background-position: -100% 0, -100% 0;
    }
  }
  .cup:before {
    content: "";
    position: absolute;
    height: 80px;
    width: 60px;
    border: 10px solid #030303;
    border-left: none;
    right: -75px;
    top: 30px;
    border-radius: 0 30px 80px 0;
  }
  .cup:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 300px;
    background-color: #030303;
    left: -45px;
    bottom: -10px;
    border-radius: 10px;
  }
  .bubble {
    height: 15px;
    width: 15px;
    background-color: #fbbe08;
    border-radius: 50%;
    position: absolute;
    animation: bubbles forwards infinite;
    opacity: 0.6;
  }
  @keyframes bubbles {
    100% {
      transform: translateY(-150px);
      opacity: 0;
    }
  }
  .bubble-1 {
    left: 30px;
    bottom: 10px;
    animation-delay: 0.5s;
    animation-duration: 3s;
  }
  .bubble-2 {
    left: 80px;
    bottom: 35px;
    animation-delay: 1.2s;
    animation-duration: 4s;
  }
  .bubble-3 {
    left: 140px;
    bottom: 30px;
    animation-duration: 4s;
  }

  .footer-container{
    height: 30vh;
    background: rgba(21, 21, 21,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
  
  }
  
  .h2-footer {
    font-size: 2rem;
    position: relative;
    margin-top: 5px;
  }
  
  .thank-footer {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 5%;
  }
  
  .network {
    width: 13%;
    height: 10vh;
    position: absolute;
    left: 10px;
    text-align: center;
    border: none;
    overflow: hidden;
    margin-top: 19vh;
    z-index: 999;
  }
  
  .network p {
    position: relative;
    top: 15%;
    color: grey;
    display: none;
  }
  
  .social-menu ul{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    height: 100px;
  }
  
  .social-menu ul li{
    list-style: none;
    margin: 0 15px;
  }
  
  .social-menu ul li .fab{
    font-size: 25px;
    line-height: 45px;
    transition: .3s;
    color: #000;
  }
  
  .social-menu ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: grey;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
    overflow: hidden;
  }
  
  .social-menu ul li a:hover{
    background-color: #0077b5;
  }
  
  .social-menu ul li a:hover > .fab{
    color: #fff;
  } 
}

/* MEDIA DEVICE > 1440 > 1920 ----------------------------------------------------------------------------------------*/


@media (min-width:1440px) and (max-width:1919px) {
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }

  .img-hero{
    max-width: 20%;
  }


  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 150px;
  	height: 150px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 1em;
  	transform-origin: 0 75px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

/* PROJECT PART HORIZONTAL SCROLL */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .container {
    display: flex;
    width: 600vw;
    border-top-left-radius: 50px 50px;
    border-top-right-radius: 50px 50px;
    border-top: 2px solid #575A62;
    background: rgba(21, 21, 21, 0.5);
    
  }
  
  .h1_project {
    position: absolute;
    top: 20px;
    left: 10vw;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .p3 {
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
  }

  .container .col {
    display: flex;
    gap: 3em;
  }
  .container .col p {
    font-size: 0.8rem;
  }
  .container section {
    width: 100vw;
  
  }
  .container section h1 {
    font-size: 3rem;
    margin: 0;
  }
  .container section p {
    font-size: 1.2rem;
    width: 50vw;
  }
  .container section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .container section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  section {
    height: 100vh;
  }
  
  .pin {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;
    width: 65vw;
    height: 70vh;
    box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
    border-radius: 3rem;
    background-color: rgba(21, 21, 21, 0.1);
  }
  
  .card1 {
    box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;;
  }
  
  .card2 {
    box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
  }
  
  .card3 {
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;;
  }
  
  .card4 {
    box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
  }
  
  .card5 {
    box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
  }
  
  .card6 {
    box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
  }
  
  .card7 {
    box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
  }
  
  .card8 {
    box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
  }
  
  .card9 {
    display: flex;
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card9 p {
    font-size: 5rem !important;
  }
  
  
  .img_card {
    max-width: 100%;
    max-height: 100%;
  }
  
  .img_card1 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card2 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card3 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card4 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card5 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card6 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card7 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card8 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-size: cover;
    background-position: top;
  }
  
  .card-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .image {
    position: absolute;
    margin-top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #222;
    font-size: 20px;
    font-weight: 400;
  }
  
  .card-header-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    width: 100%;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
    border: none;
    overflow: hidden;
  }
  
  
  
  .card-header-slanted-edge {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 100%;
    right: 0;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  
  
  }
  
  .name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .job-title {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin: 0;
  }
  
  .bio {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }

  .bio h2 {
    margin-bottom: 10px;
  }
  
  
  .card-footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
  }
  
  .card-footer9 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    height: 25%;
    width: 100%;
    bottom: 20px;
  }
  
  .stat {
    box-sizing: border-box;
    width: calc(100% / 3);
    float: left;
    text-align: center;
  }
  
  .stat:nth-child(2) {
    border-left: 1px solid grey;
  }
  
  .stat:nth-child(3) {
    border-left: 1px solid grey;
  }
  
  .stat .label {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    color: #95989A;
  }
  
  .stat .value {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
  }
  
  .name9 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .bio9 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin: 10px ;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .btn_contact_project {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;   
  }
  
  .a_contact_project {
    position: relative;
    display: block;
    width: 200px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  
  }
  .a_contact_project span {
    position: absolute;
    overflow: hidden;
  }
  .a_contact_project span:first-child {
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .a_contact_project span.icon {
    bottom: -100px;
  }
  .a_contact_project span.icon .fa-envelope-o {
    font-size: 2em;
    position: relative;
    top: 5px;
    overflow: hidden;
  }
  .a_contact_project:hover {
    background: white;
    width: 60px;
    border-radius: 50%;
  }
  .a_contact_project:hover .icon {
    color: black;
    transform: translate(-16px, -110px);
  }



  .skills {
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 2%;
  }

  .void {
    box-shadow: inset 0px -30px 30px -20px #e3ecf5;
  }
  
  .cardd {
    width: 125px;
    height: 125px;
  
  }

  .card-li {
    width: 90%;
    left: 5%;
  }
  
  .center-circle {
    position: absolute;
    width: 30%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(224, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow:
    0 0 32px #fff,
    inset 0 0 32px #fff,
    0 0 64px #c6e2ff,
    inset 0 0 64px #c6e2ff,
    0 0 128px #c6e2ff,
    inset 0 0 128px #c6e2ff; 
    border-radius: 50%;
  }
  
  .center-circle h3 {
    font-size: 2rem;
    top: 10%;
    
  }

.model-name {
font-size: 0.7rem;
}

/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 90%;
  font-size: 1.7rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 100px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

/* .fig1 {
  display: none;
}

.fig2 {
  display: none;
}

.fig3  {
  display: none;
}

.fig4 {
  display: none;
}

.fig5 {
  display: none;
} */

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 1.7rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }


  .contact-section {
    background: rgba(21, 21, 21, 0.2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-title-container {
    text-align: center;
    color: white;
  }
  
  .contact-h2{
    font-size: 3rem;
  }
  
  .contact-h3{
    font-size: 1.5rem;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    margin-top: 5%;
    padding-left: 0;
    padding-right: 0;
  }
  
  
  .container-form {
    width: 100%;
  
    position: relative;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea,
  #contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
  }
  
  #contact {
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(200px);
    border: 1px solid rgba(255, 255, 255, 0.21);
    padding: 5%;
    box-shadow: inset 0px 0px 20px 0px white;
    width: 70%;
    text-align: center;
  }
  
  #contact h3 {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  
  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    width: 100%;
  }
  
  input,
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 15px;
    border-radius: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4284F4;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
  }
  
  #contact button[type="submit"]:hover {
    background: #1f4077;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .copyright {
    text-align: center;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }
  
  ::-webkit-input-placeholder {
    color: #888;
  }
  
  :-moz-placeholder {
    color: #888;
  }
  
  ::-moz-placeholder {
    color: #888;
  }
  
  :-ms-input-placeholder {
    color: #888;
  }
  
  
  
  
  
  .cup {
    height: 210px;
    width: 220px;
    border: 10px solid white;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 20px 20px 60px 60px;
    background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
    background-position: 0 0, 0 0;
    background-repeat: repeat-x;
    animation: coffee 4s infinite linear;
    overflow: hidden;
  }
  @keyframes coffee {
    100% {
      background-position: -100% 0, -100% 0;
    }
  }
  .cup:before {
    content: "";
    position: absolute;
    height: 80px;
    width: 60px;
    border: 10px solid #030303;
    border-left: none;
    right: -75px;
    top: 30px;
    border-radius: 0 30px 80px 0;
  }
  .cup:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 300px;
    background-color: #030303;
    left: -45px;
    bottom: -10px;
    border-radius: 10px;
  }
  .bubble {
    height: 15px;
    width: 15px;
    background-color: #fbbe08;
    border-radius: 50%;
    position: absolute;
    animation: bubbles forwards infinite;
    opacity: 0.6;
  }
  @keyframes bubbles {
    100% {
      transform: translateY(-150px);
      opacity: 0;
    }
  }
  .bubble-1 {
    left: 30px;
    bottom: 10px;
    animation-delay: 0.5s;
    animation-duration: 3s;
  }
  .bubble-2 {
    left: 80px;
    bottom: 35px;
    animation-delay: 1.2s;
    animation-duration: 4s;
  }
  .bubble-3 {
    left: 140px;
    bottom: 30px;
    animation-duration: 4s;
  }


  .footer-container{
    height: 30vh;
    background: rgba(21, 21, 21,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
  
  }
  
  .h2-footer {
    font-size: 2.5rem;
    position: relative;
    margin-top: 10px;
  }
  
  .thank-footer {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 5%;
  }
  
  .network {
    width: 13%;
    height: 10vh;
    position: absolute;
    left: 10px;
    text-align: center;
    border: none;
    overflow: hidden;
    margin-top: 19vh;
    z-index: 999;
  }
  
  .network p {
    position: relative;
    top: 15%;
    color: grey;
    font-size: 0.8rem;
    display: none;
  }
  
  .social-menu ul{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    height: 100px;
  }
  
  .social-menu ul li{
    list-style: none;
    margin: 0 15px;
  }
  
  .social-menu ul li .fab{
    font-size: 25px;
    line-height: 45px;
    transition: .3s;
    color: #000;
  }
  
  .social-menu ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: grey;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
    overflow: hidden;
  }
  
  .social-menu ul li a:hover{
    background-color: #0077b5;
  }
  
  .social-menu ul li a:hover > .fab{
    color: #fff;
  } 
}


/* MEDIA DEVICE > 1920 > 2560 ----------------------------------------------------------------------------------------*/


@media (min-width:1920px) and (max-width:2559px) {
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 75px;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 75px;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }


  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 150px;
  	height: 150px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 1em;
  	transform-origin: 0 75px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

/* PROJECT PART HORIZONTAL SCROLL */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .container {
    display: flex;
    width: 400vw;
    border-top-left-radius: 50px 50px;
    border-top-right-radius: 50px 50px;
    border-top: 2px solid #575A62;
    background: rgba(21, 21, 21, 0.5);
    
  }
  
  .h1_project {
    position: absolute;
    top: 20px;
    left: 10vw;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .p3 {
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
  }

  .container .col {
    display: flex;
    gap: 3em;
  }
  .container .col p {
    font-size: 0.8rem;
  }
  .container section {
    width: 100vw;
  
  }
  .container section h1 {
    font-size: 3rem;
    margin: 0;
  }
  .container section p {
    font-size: 1.2rem;
    width: 50vw;
  }
  .container section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .container section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  section {
    height: 100vh;
  }
  
  .pin {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;
    width: 40vw;
    height: 70vh;
    box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
    border-radius: 3rem;
    background-color: rgba(21, 21, 21, 0.1);
  }
  
  .card1 {
    box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;;
  }
  
  .card2 {
    box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
  }
  
  .card3 {
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;;
  }
  
  .card4 {
    box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
  }
  
  .card5 {
    box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
  }
  
  .card6 {
    box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
  }
  
  .card7 {
    box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
  }
  
  .card8 {
    box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
  }
  
  .card9 {
    display: flex;
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card9 p {
    font-size: 5rem !important;
  }
  
  
  .img_card {
    max-width: 100%;
    max-height: 100%;
  }
  
  .img_card1 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card2 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card3 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card4 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card5 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card6 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card7 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card8 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-size: cover;
    background-position: top;
    margin-top: 50px;
  }
  
  .card-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .image {
    position: absolute;
    margin-top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #222;
    font-size: 20px;
    font-weight: 400;
  }
  
  .card-header-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    width: 100%;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
    border: none;
    overflow: hidden;
  }
  
  
  
  .card-header-slanted-edge {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 100%;
    right: 0;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  
  
  }
  
  .name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .job-title {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin: 0;
  }
  
  .bio {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }

  .bio h2 {
    margin-bottom: 5%;
  }
  
  
  .card-footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
  }
  
  .card-footer9 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    height: 25%;
    width: 100%;
    bottom: 20px;
  }
  
  .stat {
    box-sizing: border-box;
    width: calc(100% / 3);
    float: left;
    text-align: center;
  }
  
  .stat:nth-child(2) {
    border-left: 1px solid grey;
  }
  
  .stat:nth-child(3) {
    border-left: 1px solid grey;
  }
  
  .stat .label {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    color: #95989A;
  }
  
  .stat .value {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
  }
  
  .name9 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .bio9 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin: 10px ;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .btn_contact_project {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;   
  }
  
  .a_contact_project {
    position: relative;
    display: block;
    width: 200px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  
  }
  .a_contact_project span {
    position: absolute;
    overflow: hidden;
  }
  .a_contact_project span:first-child {
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .a_contact_project span.icon {
    bottom: -100px;
  }
  .a_contact_project span.icon .fa-envelope-o {
    font-size: 2em;
    position: relative;
    top: 5px;
    overflow: hidden;
  }
  .a_contact_project:hover {
    background: white;
    width: 60px;
    border-radius: 50%;
  }
  .a_contact_project:hover .icon {
    color: black;
    transform: translate(-16px, -110px);
  }



  .skills {
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 2%;
  }

  .void {
    box-shadow: inset 0px -30px 30px -20px #e3ecf5;
  }
  
  .cardd {
    width: 150px;
    height: 150px;
  
  }
  
  .center-circle {
    position: absolute;
    width: 25%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(224, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow:
    0 0 32px #fff,
    inset 0 0 32px #fff,
    0 0 64px #c6e2ff,
    inset 0 0 64px #c6e2ff,
    0 0 128px #c6e2ff,
    inset 0 0 128px #c6e2ff; 
    border-radius: 50%;
  }
  
  .center-circle h3 {
    font-size: 2rem;
    top: 10%;
    
  }


  .contact-section {
    background: rgba(21, 21, 21, 0.2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-title-container {
    text-align: center;
    color: white;
  }
  
  .contact-h2{
    font-size: 5rem;
  }
  
  .contact-h3{
    font-size: 2rem;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    margin-top: 10%;
    padding-left: 20%;
    padding-right: 10%;
  }
  
  
  .container-form {
    width: 100%;
  
    position: relative;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea,
  #contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
  }
  
  #contact {
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(200px);
    border: 1px solid rgba(255, 255, 255, 0.21);
    padding: 5%;
    box-shadow: inset 0px 0px 20px 0px white;
    width: 70%;
    text-align: center;
  }
  
  #contact h3 {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  
  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    width: 100%;
  }
  
  input,
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 15px;
    border-radius: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4284F4;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
  }
  
  #contact button[type="submit"]:hover {
    background: #1f4077;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .copyright {
    text-align: center;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }
  
  ::-webkit-input-placeholder {
    color: #888;
  }
  
  :-moz-placeholder {
    color: #888;
  }
  
  ::-moz-placeholder {
    color: #888;
  }
  
  :-ms-input-placeholder {
    color: #888;
  }
  
  
  
  
  
  .cup {
    height: 210px;
    width: 220px;
    border: 10px solid white;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 20px 20px 60px 60px;
    background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
    background-position: 0 0, 0 0;
    background-repeat: repeat-x;
    animation: coffee 4s infinite linear;
    overflow: hidden;
  }
  @keyframes coffee {
    100% {
      background-position: -100% 0, -100% 0;
    }
  }
  .cup:before {
    content: "";
    position: absolute;
    height: 80px;
    width: 60px;
    border: 10px solid #030303;
    border-left: none;
    right: -75px;
    top: 30px;
    border-radius: 0 30px 80px 0;
  }
  .cup:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 300px;
    background-color: #030303;
    left: -45px;
    bottom: -10px;
    border-radius: 10px;
  }
  .bubble {
    height: 15px;
    width: 15px;
    background-color: #fbbe08;
    border-radius: 50%;
    position: absolute;
    animation: bubbles forwards infinite;
    opacity: 0.6;
  }
  @keyframes bubbles {
    100% {
      transform: translateY(-150px);
      opacity: 0;
    }
  }
  .bubble-1 {
    left: 30px;
    bottom: 10px;
    animation-delay: 0.5s;
    animation-duration: 3s;
  }
  .bubble-2 {
    left: 80px;
    bottom: 35px;
    animation-delay: 1.2s;
    animation-duration: 4s;
  }
  .bubble-3 {
    left: 140px;
    bottom: 30px;
    animation-duration: 4s;
  }

  .footer-container{
    height: 30vh;
    background: rgba(21, 21, 21,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
  
  }
  
  .h2-footer {
    font-size: 2.5rem;
    position: relative;
    margin-top: 30px;
  }
  
  .thank-footer {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 5%;
  }
  
  .network {
    width: 13%;
    height: 10vh;
    position: absolute;
    left: 10px;
    text-align: center;
    border: 5px dashed grey;
    overflow: hidden;
    margin-top: 19vh;
    z-index: 999;
  }
  
  .network p {
    position: relative;
    top: 15%;
    color: grey;
    font-size: 0.9rem;
  }
  
  .social-menu ul{
    position: absolute;
    top: 65%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    height: 100px;
  }
  
  .social-menu ul li{
    list-style: none;
    margin: 0 15px;
  }
  
  .social-menu ul li .fab{
    font-size: 25px;
    line-height: 45px;
    transition: .3s;
    color: #000;
  }
  
  .social-menu ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: grey;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
    overflow: hidden;
  }
  
  .social-menu ul li a:hover{
    background-color: #0077b5;
  }
  
  .social-menu ul li a:hover > .fab{
    color: #fff;
  } 


}


/* MEDIA DEVICE > 2560 > 3840 ----------------------------------------------------------------------------------------------*/


@media (min-width:2560px) and (max-width:3840px) {
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 75px;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 75px;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 15px;
  }


  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 150px;
  	height: 150px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 1em;
  	transform-origin: 0 75px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

/* PROJECT PART HORIZONTAL SCROLL */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .container {
    display: flex;
    width: 300vw;
    border-top-left-radius: 50px 50px;
    border-top-right-radius: 50px 50px;
    border-top: 2px solid #575A62;
    background: rgba(21, 21, 21, 0.5);
    
  }
  
  .h1_project {
    position: absolute;
    top: 20px;
    left: 10vw;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .p3 {
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
  }

  .container .col {
    display: flex;
    gap: 3em;
  }
  .container .col p {
    font-size: 0.8rem;
  }
  .container section {
    width: 100vw;
  
  }
  .container section h1 {
    font-size: 3rem;
    margin: 0;
  }
  .container section p {
    font-size: 1.2rem;
    width: 50vw;
  }
  .container section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .container section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  section {
    height: 100vh;
  }
  
  .pin {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;
    width: 30vw;
    height: 70vh;
    box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
    border-radius: 3rem;
    background-color: rgba(21, 21, 21, 0.1);
  }
  
  .card1 {
    box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;;
  }
  
  .card2 {
    box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
  }
  
  .card3 {
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;;
  }
  
  .card4 {
    box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
  }
  
  .card5 {
    box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
  }
  
  .card6 {
    box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
  }
  
  .card7 {
    box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
  }
  
  .card8 {
    box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
  }
  
  .card9 {
    display: flex;
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card9 p {
    font-size: 5rem !important;
  }
  
  
  .img_card {
    max-width: 100%;
    max-height: 100%;
  }
  
  .img_card1 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card2 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card3 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card4 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card5 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card6 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card7 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card8 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-size: cover;
    background-position: top;
    margin-top: 50px;
  }
  
  .card-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .image {
    position: absolute;
    margin-top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #222;
    font-size: 20px;
    font-weight: 400;
  }
  
  .card-header-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    width: 100%;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
    border: none;
    overflow: hidden;
  }
  
  
  
  .card-header-slanted-edge {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 100%;
    right: 0;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  
  
  }
  
  .name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .job-title {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin: 0;
  }
  
  .bio {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }

  .bio h2 {
    margin-bottom: 5%;
  }
  
  
  .card-footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
  }
  
  .card-footer9 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    height: 25%;
    width: 100%;
    bottom: 20px;
  }
  
  .stat {
    box-sizing: border-box;
    width: calc(100% / 3);
    float: left;
    text-align: center;
  }
  
  .stat:nth-child(2) {
    border-left: 1px solid grey;
  }
  
  .stat:nth-child(3) {
    border-left: 1px solid grey;
  }
  
  .stat .label {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    color: #95989A;
  }
  
  .stat .value {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
  }
  
  .name9 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .bio9 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin: 10px ;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .btn_contact_project {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;   
  }
  
  .a_contact_project {
    position: relative;
    display: block;
    width: 200px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  
  }
  .a_contact_project span {
    position: absolute;
    overflow: hidden;
  }
  .a_contact_project span:first-child {
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .a_contact_project span.icon {
    bottom: -100px;
  }
  .a_contact_project span.icon .fa-envelope-o {
    font-size: 2em;
    position: relative;
    top: 5px;
    overflow: hidden;
  }
  .a_contact_project:hover {
    background: white;
    width: 60px;
    border-radius: 50%;
  }
  .a_contact_project:hover .icon {
    color: black;
    transform: translate(-16px, -110px);
  }


/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 90%;
  font-size: 3rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 350px;
  max-width: 400px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 175px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
  font-size: 0.7rem;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

/* .fig1 {
  display: none;
}

.fig2 {
  display: none;
}

.fig3  {
  display: none;
}

.fig4 {
  display: none;
}

.fig5 {
  display: none;
} */

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 3rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }


}


/* MEDIA DEVICE >3840 ----------------------------------------------------------------------------------------------*/


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

  /* NAVBAR -----------------------------------------------------------------------------------------------------------*/
nav {
  position: fixed;
  width: 100%;
  bottom: 25px;
  z-index: 100;
}
.navbar {  
  display:flex;
  align-items:center; 
  justify-content:center;
  padding:10px;
  font-size:1.1rem;
}
.navbarr {  
  display:flex;
  align-items:center; 
  justify-content:center;
  padding:20px;
  font-size:2rem;
  background:var(--navbar-bg-color);
  color:var(--navbar-color);
  border-radius: 80px;
  width: 20vw;
  height: 5vh;
}
.navbar__links { 
  display:flex;  
}
.navbar__link { 
  padding:0 10px;
}
.navbar__link > a { 
  color:var(--navbar-color);
  text-decoration:none;
}
.burger {
  display:none;
}
  

.img-hero {
  width: 20%;
}
  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 3rem;
  }


  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 100px;
    left: 100px;
  	width: 300px;
  	height: 300px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 2em;
  	transform-origin: 0 150px;
  }
  
  .blinking-green {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

/* PROJECT PART HORIZONTAL SCROLL */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .container {
    display: flex;
    width: 300vw;
    border-top-left-radius: 50px 50px;
    border-top-right-radius: 50px 50px;
    border-top: 2px solid #575A62;
    background: rgba(21, 21, 21, 0.5);
    
  }
  
  .h1_project {
    position: absolute;
    top: 20px;
    left: 10vw;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .p3 {
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    overflow: hidden;
  }

  .container .col {
    display: flex;
    gap: 3em;
  }
  .container .col p {
    font-size: 0.8rem;
  }
  .container section {
    width: 100vw;
  
  }
  .container section h1 {
    font-size: 3rem;
    margin: 0;
  }
  .container section p {
    font-size: 1.2rem;
    width: 50vw;
  }
  .container section ul {
    list-style-type: none;
    display: flex;
    gap: 3em;
    width: 100%;
    height: 300px;
    padding: 0;
  }
  .container section ul li {
    background: white;
    border-radius: 0.3em;
    flex-grow: 1;
  }
  section {
    height: 100vh;
  }
  
  .pin {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;
    width: 30vw;
    height: 70vh;
    box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
    border-radius: 3rem;
    background-color: rgba(21, 21, 21, 0.1);
  }
  
  .card1 {
    box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;;
  }
  
  .card2 {
    box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
  }
  
  .card3 {
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;;
  }
  
  .card4 {
    box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
  }
  
  .card5 {
    box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
  }
  
  .card6 {
    box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
  }
  
  .card7 {
    box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
  }
  
  .card8 {
    box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
  }
  
  .card9 {
    display: flex;
    box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
  }
  
  .card9 p {
    font-size: 5rem !important;
  }
  
  
  .img_card {
    max-width: 100%;
    max-height: 100%;
  }
  
  .img_card1 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card2 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card3 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card4 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card5 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card6 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card7 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .img_card8 {
    padding-top: 0 !important;
    height: 100%;
  }
  
  .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background-size: cover;
    background-position: top;
    margin-top: 50px;
  }
  
  .card-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .image {
    position: absolute;
    margin-top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #222;
    font-size: 20px;
    font-weight: 400;
  }
  
  .card-header-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    width: 100%;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
    border: none;
    overflow: hidden;
  }
  
  
  
  .card-header-slanted-edge {
    position: absolute;
    bottom: -3px;
    z-index: 1;
    width: 100%;
    right: 0;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  
  
  }
  
  .name {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 25px;
  }
  
  .job-title {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    margin: 25px;
  }
  
  .bio {
    font-size: 1.65rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }

  .bio h2 {
    margin-bottom: 5%;
  }
  
  
  .card-footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
  }
  
  .card-footer9 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    height: 25%;
    width: 100%;
    bottom: 20px;
  }
  
  .stat {
    box-sizing: border-box;
    width: calc(100% / 3);
    float: left;
    text-align: center;
  }
  
  .stat:nth-child(2) {
    border-left: 1px solid grey;
  }
  
  .stat:nth-child(3) {
    border-left: 1px solid grey;
  }
  
  .stat .label {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    color: #95989A;
  }
  
  .stat .value {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    margin-top: 5px;
  }
  
  .name9 {
    font-size: 7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .bio9 {
    font-size: 3rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    margin: 10px ;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255,255,255,1);
  }
  
  .btn_contact_project {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;   
  }
  
  .a_contact_project {
    position: relative;
    display: block;
    width: 500px;
    height: 100px;
    text-decoration: none;
    text-align: center;
    font-family: 'manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  
  }
  .a_contact_project span {
    position: absolute;
    overflow: hidden;
    font-size: 2rem;
    left: 40%;
    top: 100%;
  }
  .a_contact_project span:first-child {
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .a_contact_project span.icon {
    bottom: -100px;
  }
  .a_contact_project span.icon .fa-envelope-o {
    font-size: 2em;
    position: relative;
    top: 5px;
    overflow: hidden;
  }
  .a_contact_project:hover {
    background: white;
    width: 150px;
    height: 150px;
    border-radius: 100%;
  }
  .a_contact_project:hover .icon {
    color: black;
    transform: translate(-16px, -110px);
  }
















/* ROUE DES SKILLS */

.skills {
  font-size: 10rem;
}

.void {
  box-shadow: inset 0px -30px 30px -20px #e3ecf5;
}

.cardd {
	width: 325px;
  height: 325px;
  font-size: 2rem;
  line-height: 2rem;

}

.card-li{
  width: 85%;
  left: 7%;
}

.center-circle {
	position: absolute;
	width: 30%;
	aspect-ratio: 1 / 1;
	left: 50%;
  top: 50%;
	transform: translate(-50%, -50%);
  background: rgba(224, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow:
  0 0 32px #fff,
  inset 0 0 32px #fff,
  0 0 64px #c6e2ff,
  inset 0 0 64px #c6e2ff,
  0 0 128px #c6e2ff,
  inset 0 0 128px #c6e2ff; 
	border-radius: 50%;
}

.center-circle h3 {
  position: relative;
  font-size: 6rem;
  top: 20%;
}


/* Skill part 2 */

.blank{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.blank1{
  height: 10vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 30px 30px -15px #4284F4;
}


.blank1 h3 {
  color: white;
  position: relative;
  color: #c6e2ff;
  width: 90%;
  font-size: 5rem;
  text-align: center;
  text-shadow: 0 0 3px #fff;
  bottom: 0;
}



 figure.snip1192 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 220px;
  max-width: 600px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1192 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1192 img {
  max-width: 100%;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  z-index: 1;
  position: relative;
}
figure.snip1192 blockquote {
  margin: 0;
  min-height: 400px;
  display: block;
  border-radius: 8px;
  position: relative;
  padding: 30px 50px 65px 50px;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 -50px;
  line-height: 1.6em;
  box-shadow: inset 0px 0px 20px 0px #4284F4;
  color: #c6e2ff;
}
figure.snip1192 blockquote:before,
figure.snip1192 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1192 blockquote:before {
  top: 35px;
  left: 20px;
}
figure.snip1192 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 35px;
}
figure.snip1192 .author {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
figure.snip1192 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
  font-size: 1.5rem;
}
figure.snip1192 .author h5 span {
  font-weight: 400;
  text-transform: none;
  display: block;
}

/* .fig1 {
  display: none;
}

.fig2 {
  display: none;
}

.fig3  {
  display: none;
}

.fig4 {
  display: none;
}

.fig5 {
  display: none;
} */

.blank2{
  height: 45vh;
  background: rgba(21, 21, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blank2 h3 {
  color: #C6E2FF;
  position: absolute;
  width: 90%;
  font-size: 5rem;
  text-align: center;
  text-shadow: 0 0 3px #4284F4;
}

.content{
overflow: hidden;
}

.tagcloud { 
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    width: 100%;
    overflow: hidden;
  }
  .tagcloud--item:hover {
    color: #36454F;
  }




/* RESUME */

.h1-cv {
font-size: 15rem;
}

.p-skills {
  text-shadow: 0px 0px 5px rgba(255,255,255,1);
  color: white;
  font-family: 'manrope', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  padding-left: 2%;
}

#cv h3{
padding-bottom: 5%;
}
.timeline-section {
  background: rgba(21, 21, 21, 0.2);
  padding: 100px 15px;
  height: 100%;
}

.timeline-items {
  max-width: 75%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.timeline-items::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: #c6e2ff;
  box-shadow: 0px 0px 20px 5px #4284F4;
  left: calc(50% - 2px);
}

.timeline-item {
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 80px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 80px);
}

.timeline-dot {
  height: 48px;
  width: 48px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 5px #4284F4;
  position: absolute;
  left: calc(50% - 16px);
  border-radius: 50%;
  top: 10px;
}

.timeline-date {
  font-size: 2.5rem;
  color: #C6E2FF;
  margin: 6px 0 15px;
  font-weight: bold;
}

.timeline-content {
  font-size: 2rem;
  padding: 70px;
  border-radius: 5px;
  border-radius: 16px;
  box-shadow:inset 0px 0px 20px 0px #4284F4;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(200px);
  border: 1px solid rgba(255, 255, 255, 0.21);
}

.timeline-content h3 {
  font-size: 3.5rem;
  color: #C6E2FF;
  margin: 0 0 10px;
  font-weight: 500;
}

.timeline-content p {
  color: #C6E2FF;
  font-size: 2rem;
  font-weight: 300;
  line-height: 50px;
}


.contact-section {
  background: rgba(21, 21, 21, 0.2);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title-container {
  text-align: center;
  color: white;
}

.contact-h2{
  font-size: 8rem;
}

.contact-h3{
  font-size: 5rem;
}

.contact-container {
  display: grid;
  height: 60%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  margin-top: 10%;
  padding-left: 20%;
  padding-right: 10%;
}


.container-form {
  width: 100%;

  position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[name="site"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
  height: 100%;
    font-size: 1.5rem;
}

#contact {
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(200px);
  border: 1px solid rgba(255, 255, 255, 0.21);
  padding: 5%;
  box-shadow: inset 0px 0px 20px 0px white;
  width: 100%;
  height: 75%;
  text-align: center;
}

#contact h3 {
  display: block;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 5%;
  color: white;
}


fieldset {
  border: medium none !important;
  margin: 0 0 20px;
  min-width: 100%;
  width: 100%;
  height: 10%;
  overflow: hidden;
}


input,
#contact input[type="email"],
#contact input[type="tel"],
#contact input[name="site"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 15px;
  border-radius: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
  font-size: 1.5rem;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4284F4;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 2rem;
  height: 40px;
  border-radius: 10px;
  height: 100%;
}

#contact button[type="submit"]:hover {
  background: #1f4077;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}


#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}





.cup {
  scale: 3;
  height: 210px;
  width: 220px;
  border: 10px solid white;
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 20px 20px 60px 60px;
  background: url("/img/coffee-img-1.svg"), url("/img/coffee-img-2.svg");
  background-position: 0 0, 0 0;
  background-repeat: repeat-x;
  animation: coffee 4s infinite linear;
  overflow: hidden;
}
@keyframes coffee {
  100% {
    background-position: -100% 0, -100% 0;
  }
}
.cup:before {
  content: "";
  position: absolute;
  height: 80px;
  width: 60px;
  border: 10px solid #030303;
  border-left: none;
  right: -75px;
  top: 30px;
  border-radius: 0 30px 80px 0;
}
.cup:after {
  position: absolute;
  content: "";
  height: 10px;
  width: 300px;
  background-color: #030303;
  left: -45px;
  bottom: -10px;
  border-radius: 10px;
}
.bubble {
  height: 15px;
  width: 15px;
  background-color: #fbbe08;
  border-radius: 50%;
  position: absolute;
  animation: bubbles forwards infinite;
  opacity: 0.6;
}
@keyframes bubbles {
  100% {
    transform: translateY(-150px);
    opacity: 0;
  }
}
.bubble-1 {
  left: 30px;
  bottom: 10px;
  animation-delay: 0.5s;
  animation-duration: 3s;
}
.bubble-2 {
  left: 80px;
  bottom: 35px;
  animation-delay: 1.2s;
  animation-duration: 4s;
}
.bubble-3 {
  left: 140px;
  bottom: 30px;
  animation-duration: 4s;
}

.footer-container{
  height: 30vh;
  background: rgba(21, 21, 21,1);
  display: flex;
	align-items: center;
	justify-content: space-between;
  flex-direction: column;
  color: white;

}

.h2-footer {
  font-size: 5rem;
  position: relative;
  margin-top: 50px;
}

.thank-footer {
  font-size: 2.5rem;
}

.network {
  width: 13%;
  height: 10vh;
  position: absolute;
  left: 10px;
  text-align: center;
  border: 10px dotted grey;
  overflow: hidden;
  margin-top: 19vh;
  z-index: 999;
}

.network p {
  position: relative;
  top: 15%;
  color: grey;
  font-size: 1.5rem;
}

.social-menu ul{
  position: absolute;
  top: 65%;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  height: 100px;
}

.social-menu ul li{
  list-style: none;
  margin: 0 15px;
}

.social-menu ul li .fab{
  font-size: 45px;
  line-height: 90px;
  transition: .3s;
  color: #000;
}

.social-menu ul li a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  transition: .6s;
  box-shadow: 0 5px 4px rgba(0,0,0,.5);
  overflow: hidden;
}

.social-menu ul li a:hover{
  background-color: #0077b5;
}

.social-menu ul li a:hover > .fab{
  color: #fff;
} 

.love {
  font-size: 1.52rem;
}
}









/* MEDIA DEVICE < 1024 ----------------------------------------------------------------------------------------------*/
@media screen and (max-width:1023px) {

  .p1 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }
  .p11 {
    width: 75vw;
    color: white;
    font-family: 'manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }
  
 .p2{
    margin-top: 10px;
    width: 75vw;
    color: white;
    font-size: 0.7rem;
  }


  /* ROTATING TEXT ANIMATION */
  .circletext {
    overflow: hidden;
  	position: absolute;
    top: 30px;
    left: 30px;
  	width: 100px;
  	height: 100px;
  	border-radius: 100vmax;
    font-family: 'manrope', sans-serif;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  .text {
    overflow: hidden;
  	position: absolute;
  	width: 100%;
  	height: 100%;
    font-family: 'manrope', sans-serif;
  	color: #ffffff;
  	font-size: 17px;
  	animation: textRotation 8s linear infinite;
  }
  
  @keyframes textRotation {
  	to {
  		transform: rotate(360deg);
  	}
  }
  
  .text span {
  	position: absolute;
  	left: 50%;
  	font-size: 0.65em;
  	transform-origin: 0 50px;
  }
  
  .blinking-green {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: green;
    animation: pulse 3s infinite, blur 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
    50% {
      transform: scale(0.75);
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    }
  }
  
  @keyframes blur {
    0%, 100% {
      filter: blur(0);
    }
    50% {
      filter: blur(5px);
    }
  }

/* PROJECT PART HORIZONTAL SCROLL */


.wrapper {
  border-top-left-radius: 50px 50px;
  border-top-right-radius: 50px 50px;
  border-top: 2px solid #575A62;
  background: rgba(21, 21, 21, 0.5);
}

.h1_project{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
}

.h1_project h1{
font-size: 1.5rem;
}

.card {
  margin-top: 20px;
  margin-bottom: 100px;
  box-shadow: 10px 10px 25px 0px #101010,-10px -10px 25px 0px #202020;
  border-radius: 3rem;
  background-color: rgba(21, 21, 21, 0.1);
  margin-left: 10px;
  margin-right: 10px;
  height: 100%;
}

.card1 {
  box-shadow: inset 0px 45px 30px -30px #ED1A3B, inset 0px -45px 30px -30px #ED1A3B;
}

.card2 {
  box-shadow: inset 0px 45px 30px -30px #015294, inset 0px -45px 30px -30px #015294;
}

.card3 {
  box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;;
}

.card4 {
  box-shadow: inset 0px 45px 30px -30px #000000, inset 0px -45px 30px -30px #000000;
}

.card5 {
  box-shadow: inset 0px 45px 30px -30px #7B00E7, inset 0px -45px 30px -30px #7B00E7;
}

.card6 {
  box-shadow: inset 0px 45px 30px -30px #005CAD, inset 0px -45px 30px -30px #005CAD;
}

.card7 {
  box-shadow: inset 0px 45px 30px -30px #EF301A, inset 0px -45px 30px -30px #EF301A;
}

.card8 {
  box-shadow: inset 0px 45px 30px -30px #00673E, inset 0px -45px 30px -30px #00673E;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-top: 5px;
}


.img_card {
  max-width: 100%;
  max-height: 50%;
}


.card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 5px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.name {
color: white;
font-size: 1rem;
}

.job-title {
  color: white;
  font-size: 1rem;
}
  
.bio {
  color: white;
  font-size: 0.8rem;
  margin-top: 20px;
}



.bio h2 {
  font-size: 1rem;
  margin-bottom: 20px;
}
    

.card-footer {
  position: relative;
  width: 100%;
  bottom: 20px;
}

.stat {
  box-sizing: border-box;
  width: calc(100% / 3);
  float: left;
  text-align: center;
}

.stat:nth-child(2) {
  border-left: 1px solid grey;
}

.stat:nth-child(3) {
  border-left: 1px solid grey;
}

.stat .label {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 1px;
  color: #95989A;
}

.stat .value {
  font-weight: 700;
  font-size: 14px;
  margin-top: 5px;
  color: white;
}

.btn_contact_project {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   
}

.a_contact_project {
  position: relative;
  display: block;
  width: 200px;
  height: 50px;
  text-decoration: none;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  color: white;
  border: 3px solid white;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;

}
.a_contact_project span {
  position: absolute;
  overflow: hidden;
}
.a_contact_project span:first-child {
  top: 15px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.a_contact_project span.icon {
  bottom: -100px;
}
.a_contact_project span.icon .fa-envelope-o {
  font-size: 2em;
  position: relative;
  top: 5px;
  overflow: hidden;
}
.a_contact_project:hover {
  background: white;
  width: 60px;
  border-radius: 50%;
}
.a_contact_project:hover .icon {
  color: black;
  transform: translate(-16px, -110px);
}


.name9 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin: 0 auto;
  text-shadow: 0px 0px 5px rgba(255,255,255,1);
}

.bio9 {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0px 0px 5px rgba(255,255,255,1);
}

.card9 {

  box-shadow: inset 0px 45px 30px -30px #ffffff, inset 0px -45px 30px -30px #ffffff;
}




.footer-container{
  height: 30vh;
  background: rgba(21, 21, 21,1);
  display: flex;
	align-items: center;
	justify-content: space-between;
  flex-direction: column;
  color: white;

}

.h2-footer {
  font-size: 1.5rem;
  position: relative;
  margin-top: 10px;
}

.thank-footer {
  font-size: 0.8rem;
  text-align: center;
  margin: 20px;
}

.network {
  width: 13%;
  height: 10vh;
  position: absolute;
  left: 10px;
  text-align: center;
  border: none;
  overflow: hidden;
  margin-top: 19vh;
  z-index: 999;
}

.network p {
  position: relative;
  top: 15%;
  color: grey;
  display: none;
}

.love {
  font-size: 0.8rem;
}

.social-menu ul{
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  height: 100px;
}

.social-menu ul li{
  list-style: none;
  margin: 0 15px;
}

.social-menu ul li .fab{
  font-size: 25px;
  line-height: 45px;
  transition: .3s;
  color: #000;
}

.social-menu ul li a{
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  transition: .6s;
  box-shadow: 0 5px 4px rgba(0,0,0,.5);
  overflow: hidden;
}

.social-menu ul li a:hover{
  background-color: #0077b5;
}

.social-menu ul li a:hover > .fab{
  color: #fff;
} 







}