/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  --header-height: 3rem;
  --hue-color: 200;
  --first-color: hsl(var(--hue-color), 50%, 55%);
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --first-color-lightest: hsl(var(--hue-color), 85%, 89%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 25%);
  --text-color-light: hsl(var(--hue-color), 8%, 45%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 85%);
  --container-color: hsl(var(--hue-color), 65%, 80%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 2rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --header-height: 4rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 30%, 8%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 12%);
  --container-color: hsl(var(--hue-color), 30%, 20%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 var(--header-height) 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  /* overflow-y: scroll; */
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*========== Button Dark/Light ==========*/
.nav__btns {
  display: flex;
  align-items: center;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-2-5);
  cursor: pointer;
}

.change-theme:hover {
  color: var(--first-color);
}

/*==================== REUSABLE CSS CLASSES ====================*/
.main {
  position: relative;
  z-index: 1;
  background-color: var(--body-color);
}

.section {
  padding: 2rem 0 2rem;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section__title {
  font-size: var(--h1-font-size);
  text-transform: uppercase;
  transition: color 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  color: var(--title-color);
  position: relative;
  width: max-content;
}

.section__title::before,
.section__title::after {
  position: absolute;
  color: var(--title-color);
  content: attr(data-outline);
  left: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.section__title::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 30%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 30%);
}

.section__title::after {
  -webkit-clip-path: polygon(0 30%, 100% 80%, 100% 100%, 0 100%);
  clip-path: polygon(0 30%, 100% 80%, 100% 100%, 0 100%);
}

.section__title:hover {
  color: transparent;
}

.section__title:hover::before,
.c-hover:hover::after {
  color: var(--first-color);
}

.section__title:hover::before {
  transform: translate3d(4px, -1px, 0);
}

.section__title:hover::after {
  transform: translate3d(-4px, 1px, 0);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
}

.section__title,
.section__subtitle {
  text-align: center;
}

/*==================== LAYOUT ====================*/
.container {
  max-width: 768px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: var(--body-color);
}

/*================== BUTTONS ===================*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  pointer-events: auto;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__icon {
  font-size: 1.25rem;
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.button--flex {
  display: inline-flex;
  align-items: center;
}

.button--small {
  padding: 0.75rem 1rem;
}

.button--link {
  padding: 0;
  background-color: transparent;
  color: var(--first-color);
}

.button--link:hover {
  background-color: transparent;
  color: var(--first-color-alt);
}

.button--white {
  background-color: #fff;
  color: var(--first-color);
}

.button--white:hover {
  background-color: #fff;
}

/*==================== NAV ====================*/
nav {
  max-width: 968px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#hexagon {
  width: auto;
  height: 80%;
  fill: none;
}

.nav__logo {
  height: var(--header-height);
}

.nav__logo-img {
  height: 95%;
}

.nav__toggle {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav__logo:hover {
  color: var(--first-color);
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 0.5rem;
    box-shadow: 0 -1px 4px rgba(240, 35, 103, 0.15);
    transform: 0.3s;
    z-index: 3;
    border-top: 2px solid var(--first-color);
  }
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  width: 7ch;
  position: relative;
}

.change-theme:hover {
  color: var(--first-color);
}

.nav__icon {
  font-size: 1rem;
}

/* Active link */
.active-link {
  color: var(--first-color);
  letter-spacing: 1px;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 -1px 4px rgba(209, 207, 207, 0.15);
  border-bottom: 1px dashed var(--first-color);
}

.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--first-color);
  stroke-width: 0.25rem;
}

.link__graphic--stroke path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.nav__link:hover .link__graphic--stroke path {
  stroke-dashoffset: 0;
}

.link__graphic--arc {
  top: 73%;
  left: -23%;
}

.link__graphic--arc path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav__link:hover .link__graphic--arc path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}

.link__graphic--scribble {
  top: 100%;
}

.link__graphic--scribble path {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav__link:hover .link__graphic--scribble path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}
.nav__btns {
  display: flex;
  align-items: center;
}

.main {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%239C92AC' fill-opacity='0.05' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
}

@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .nav__list {
    column-gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  body {
    margin: 0;
  }

  .section {
    padding: 6rem 0 2rem;
  }

  .section__subtitle {
    margin-bottom: 4rem;
  }

  .header {
    top: 0;
    bottom: initial;
  }

  .header,
  .main,
  .footer {
    padding: 0 1rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 1rem;
  }

  .nav__icon {
    display: none;
  }

  .nav__item {
    margin-right: var(--mb-1);
  }

  .change-theme {
    margin: 0;
  }

  .footer {
    bottom: 0;
  }
}

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

  .header,
  .main,
  .footer {
    padding: 0;
  }
}

/*=========== 🏠 Home 🏠 ==========*/
.home {
  height: calc(100vh - var(--header-height))
}

.home__container {
  gap: 1rem;
  max-height: calc(100vh - var(--header-height));
}

.home__content {
  grid-template-columns: 0.5fr 3fr;
  padding-top: var(--mb-0-25);
  align-items: center;
}

.home__social {
  display: grid;
  justify-content: flex-start;
  grid-template-columns: max-content;
  row-gap: 0.75rem;
  padding-top: 5px;
  padding-bottom: 5px;
  width: max-content;
  pointer-events: none;
}

.home__social-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: block;
  text-align: center;
  margin: 0 0 0rem;
  border-radius: 6px;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid var(--first-color);
  transition: 0.5s;
  pointer-events: auto;
}

.home__social-icon .fab {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  line-height: 1.75rem;
  font-size: var(--h3-font-size);
  color: var(--first-color);
  transition: 0.5s;
}

.home__social-icon:hover .fab {
  background-color: var(--first-color);
  color: white;
}

.home__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  transform: perspective(300px) rotateX(0) rotateY(0) scale3d(1, 1, 1);

}


.home__img-cover {
  position: relative;
  display: flex;
  align-self: center;
  justify-self: stretch;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 250px;
  height: auto;

  overflow: hidden;
}

.svg__message {
  position: absolute;
  bottom: -75px;
  left: 60%;
  width: 120px;
  height: auto;
  transform: translateZ(80px);
  fill: var(--first-color);
}

.home__data {
  grid-column: 1/3;
  pointer-events: none;
}

.home__title {
  font-size: var(--h2-font-size);
}

.home__subtitle {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-5);
}

.home__description {
  margin-bottom: var(--mb-1);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.home__scroll {
  display: none;
  justify-self: center;
}

.scrolling-line {
  position: relative;
  background-color: var(--body-color);
  bottom: 30px;

  width: 2px;
  height: 100px;
  overflow: hidden;
  z-index: 3;
}

.scrolling-line::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 15px;
  height: 100px;
  background-color: var(--first-color);
  transform: translateY(-100%);
  transform-origin: 50% 0;
  animation-name: scroll;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

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

/*==================== MEDIA QUERIES ====================*/
@media screen and (max-width: 350px) {
  .home__content {
    grid-template-columns: max-content 1fr;
    grid-template-rows: max-content;
  }
}
@media screen and (max-width: 768px){
  .home{
    height: calc(100vh - var(--header-height) - var(--header-height))
  }
}
@media screen and (min-width: 568px) {
  .home__content {
    grid-template-columns: max-content 1.5fr 1fr;
  }

  .home__data {
    grid-column: initial;
  }

  .home__img {
    order: 1;
    justify-self: center;
  }
}

@media screen and (min-width: 768px) {
  .home__container {
    row-gap: 5rem;
  }

  .home__content {
    padding-top: 5.5rem;
    column-gap: 2rem;
  }

  .home__scroll {
    display: block;
  }

  .home__scroll-button {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .home__social {
    transform: translateX(-6rem);
  }
}

/*==================== 👦 ABOUT 👦 ====================*/
.about__img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: auto;
  max-width: 250px;
  background: var(--body-color);
  height: max-content;
  border: 4px var(--first-color-alt) solid;
  position: relative;
}

.about__img-wrapper::before {
  content: "";
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  z-index: -10;
  position: absolute;
  background: var(--first-color-lighter);
  border-bottom: 4px var(--first-color) solid;
  border: 4px var(--first-color) solid;
}

.about__description {
  text-align: center;
  color: var(--text-color);
  margin-bottom: var(--mb-2);
}

.about__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--mb-2);
  text-align: center;
}

.about__info-wrapper {
  border-bottom: 2px solid var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about__info-icon {
  width: 2rem;
  height: auto;
}

.about__info-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.about__info-name {
  font-size: var(--smaller-font-size);
}

.about__buttons {
  display: flex;
  justify-content: center;
}

/*==================== MEDIA QUERIES ====================*/
@media screen and (min-width: 568px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .about__container {
    column-gap: 5rem;
  }

  .about__img {
    width: 350px;
  }

  .about__description {
    text-align: initial;
  }

  .about__info {
    justify-content: space-between;
  }

  .about__buttons {
    justify-content: initial;
  }

}


/*========== Skill ==========*/
.skill__container {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.skill__data {
  margin: 0 var(--mb-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: var(--container-color);
  box-shadow: 0 1px 1px rgba(65, 11, 16, .15);
  flex-direction: column;
}

.skill_data:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, .15);
}

.skill__img {
  width: 100px;
}

.skill__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.animation__frame {
  height: 150px;
  width: 220px;
}

.skill__wrapper {
  border: 2px solid var(--first-color);
  padding: var(--mb-1);
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin-top: var(--mb-2-5);
  border-radius: 10px;
}

.skill__wrapper::before {
  content: attr(data-content);
  padding: 0 1rem;
  min-width: 10rem;
  height: 2rem;
  text-align: center;
  font-size: var(--h3-font-size);
  top: -1rem;
  background-color: var(--container-color);
  position: absolute;
}

/* Badge */
.skill__badge {
  margin: var(--mb-0-25);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 4px 5px 6px 1.5px rgba(0, 0, 0, 0.43);
}

.rounded {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 10;
  border-radius: 30%;
  box-shadow: 8px 8px 8px 2px rgba(0, 0, 0, 0.23);
}

.rounded i.fab {
  font-size: var(--h3-font-size);
}

/* Colors */
.blue {
  background: dodgerblue;
  color: deepskyblue;
}

.orange {
  background: darkorange;
  color: orange;
}

.gold {
  background: gold;
  color: gold;
}

.red {
  background: red;
  color: red;
}

.purple {
  background: mediumpurple;
  color: slategray;
}

.green {
  background: yellowgreen;
  color: darkslategray;
}

.crimson {
  background: crimson;
  color: firebrick;
}

.steel {
  background: steelblue;
  color: gold;
}

.pink {
  background: hotpink;
  color: palevioletred;
}

.rebecca {
  background: rebeccapurple;
  color: rebeccapurple;
}

.gainsboro {
  background: gainsboro;
  color: orangered;
}

.skill-bars {
  padding: var(--mb-1);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.skill-bars .bar {
  margin: 20px 0;
}

.skill-bars .bar:first-child {
  margin-top: 0px;
}

.skill-bars .bar .info {
  margin-bottom: 5px;
}

.skill-bars .bar .info span {
  font-weight: 500;
  font-size: 17px;
  opacity: 1;
}

.skill-bars .bar .progress-line {
  height: 10px;
  width: 100%;
  background: var(--first-color-lighter);
  position: relative;
  border-radius: 2px;
  box-shadow: inset 0 0.5px 0.5px rgba(0, 0, 0, 0.05),
    0 0.5px rgba(255, 255, 255, 0.8);
}

.bar .progress-line span {
  height: 100%;
  position: absolute;
  border-radius: 2px;
  transform-origin: left;
  background: var(--first-color);
}

.bar .progress-line.skill__design span {
  width: 70%;
}

.bar .progress-line.skill__frontend span {
  width: 80%;
}

.bar .progress-line.skill__backend span {
  width: 65%;
}

.bar .progress-line.skill__mobile span {
  width: 40%;
}

.bar .progress-line.skill__cloud span {
  width: 50%;
}

.progress-line span::before {
  position: absolute;
  content: "";
  bottom: -10px;
  right: 0;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-color: var(--first-color-alt);

}

.progress-line span::after {
  position: absolute;
  bottom: -28px;
  right: 0;
  font-weight: 500;
  background: var(--first-color-alt);
  color: var(--title-color);
  padding: 1px 8px;
  font-size: 12px;
  border-radius: 1px;
}

.progress-line.skill__design span::after {
  content: "70%";
}

.progress-line.skill__frontend span::after {
  content: "80%";
}

.progress-line.skill__backend span::after {
  content: "65%";
}

.progress-line.skill__mobile span::after {
  content: "40%";
}

.progress-line.skill__cloud span::after {
  content: "50%";
}

.project-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

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

.project__link p {
  padding-left: 14px;
}

.project-tag-content {
  border: 1.5px solid var(--first-color);
  width: max-content;
  padding: var(--mb-0-25) var(--mb-0-5);
  border-radius: 15px;
}

/*========= QUALIFICATION =========*/
.qualification__tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: var(--mb-2);
}

.qualification__button {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  cursor: pointer;
}

.qualification__button:hover {
  color: var(--first-color);
}

.qualification__icon {
  font-size: 1.8rem;
  margin-right: var(--mb-0-25);
}

.qualification__data {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 1rem;

}

.qualification__detail {
  border: 1.5px solid var(--first-color);
  padding: 0.5rem;
  text-align: center;
  border: 2px solid var(--first-color);
  border-radius: 6px;
}

.qualification__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.qualification__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}

.qualification__calender {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.qualification__rounder {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  background-color: var(--first-color);
  border-radius: 50%;
}

.qualification__line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--first-color);
  transform: translate(0.75rem, -0.75rem);
}

.qualification [data-content] {
  display: none;
}

.qualification__active[data-content] {
  display: block;
}

.qualification__button {
  font-size: var(--normal-font-size);
}

.qualification__button.qualification__active {
  color: var(--first-color);
}

/*==================== MEDIA QUERIES ====================*/
@media screen and (max-width: 350px) {
  .qualification__data {
    gap: 0.5rem;
  }
}

@media screen and (min-width: 568px) {
  .qualification__sections {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .qualification__tabs {
    justify-content: center;
  }

  .qualification__button {
    margin: 0 var(--mb-1);
  }

  .qualification__sections {
    grid-template-columns: 0.5fr;
  }

}

/*********** Projects Section **********/
.project__content {
  padding: 1rem 0;
}

.project__content .item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 5rem;
  transform: perspective(700px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
  transform-style: preserve-3d;
  /* gap: 2rem; */
}

.project__content .item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.project__content .item .left {
  flex: 1;
  border: 2px solid var(--first-color);
  border-radius: 12px;
  overflow: hidden;
}

.project__content .item .right {
  margin-left: -150px;
  flex: 1;
  background-color: var(--body-bg);
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0px 0px 20px #00000028;
  z-index: 2;
  border: 2px solid var(--first-color);
  background-color: var(--body-color);
  transform: translateZ(22px);
}

.project__content .item:nth-of-type(even) .right {
  margin-left: 0;
}

.project__content .item:nth-of-type(even) .left {
  margin-left: -150px;
}

.c-glitch {
  height: 300px;
  overflow: hidden;
  position: relative;
  width: auto;
}

.c-glitch__img {
  background-blend-mode: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.c-glitch__img:nth-child(n + 2) {
  opacity: 0;
}

.project__content .item:hover .c-glitch__img:nth-child(n + 2) {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.project__content .item:hover .c-glitch__img:nth-child(2) {
  -webkit-animation-name: glitch-anim-1;
  animation-name: glitch-anim-1;
}

.project__content .item:hover .c-glitch__img:nth-child(3) {
  -webkit-animation-name: glitch-anim-2;
  animation-name: glitch-anim-2;
}

.project__content .item:hover .c-glitch__img:nth-child(4) {
  -webkit-animation-name: glitch-anim-3;
  animation-name: glitch-anim-3;
}

.project__content .item:hover .c-glitch__img:nth-child(5) {
  -webkit-animation-name: glitch-anim-4;
  animation-name: glitch-anim-4;
  background-blend-mode: overlay;
  background-color: #b04a4a;
}

@-webkit-keyframes glitch-anim-1 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(40px, 0, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }

  20% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }

  30% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }

  40% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }

  50% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }

  55% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }

  60% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }

  65% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }

  70% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }

  80% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }

  85% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }

  95% {
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
    clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
  }
}

@keyframes glitch-anim-1 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(40px, 0, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }

  20% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }

  30% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }

  40% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }

  50% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }

  55% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }

  60% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }

  65% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }

  70% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }

  80% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }

  85% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }

  95% {
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
    clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
  }
}

@-webkit-keyframes glitch-anim-2 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(-10px, 0, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }

  10% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }

  15% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }

  17% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  19% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }

  33% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }

  35% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  40% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }

  45% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }

  49% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }

  50% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }

  55% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  }

  60% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }

  70% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
    clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
  }

  80% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }

  90% {
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
    clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
  }
}

@keyframes glitch-anim-2 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(-10px, 0, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }

  10% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }

  15% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }

  17% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  19% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }

  33% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }

  35% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  40% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }

  45% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }

  49% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }

  50% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }

  55% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  }

  60% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }

  70% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
    clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
  }

  80% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }

  90% {
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
    clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
  }
}

@-webkit-keyframes glitch-anim-3 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }

  5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }

  11% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }

  20% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  25% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }

  35% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }

  42% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }

  48% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }

  50% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }

  56% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }

  61% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }

  68% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }

  72% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }

  77% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }

  81% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }

  86% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }

  90% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  92% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }

  94% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
}

@keyframes glitch-anim-3 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }

  5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }

  11% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }

  20% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  25% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }

  35% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }

  42% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }

  48% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }

  50% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }

  56% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }

  61% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }

  68% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }

  72% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }

  77% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }

  81% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }

  86% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }

  90% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  92% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }

  94% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
}

@-webkit-keyframes glitch-anim-4 {

  0%,
  5% {
    opacity: 0.2;
    transform: translate3d(10px, 5px, 0);
  }

  5.5%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes glitch-anim-4 {

  0%,
  5% {
    opacity: 0.2;
    transform: translate3d(10px, 5px, 0);
  }

  5.5%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}

.project__content .item .right .project-title {
  font-size: 1.5rem;
  font-family: "Montserrat";
  margin-bottom: 0.5rem;
}

.project__content .item .right .project-sub-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.project__content .item .right .project-desc {
  color: var(--text-color-light);
  margin-bottom: 1rem;
  font-size: var(--smaller-font-size);
}

.project__content .item .right .external-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: calc(0.6em - 4px) calc(1.6em - 4px);
}

.project__content .item .right .external-link svg {
  width: 25px;
}

@media only screen and (max-width: 768px) {
  .project__content .item {
    flex-direction: column;
  }

  .project__content .item .left {
    width: 100%;
  }

  .project__content .item .right {
    margin-left: 0;
    width: 90%;
    margin-top: -150px;
  }

  .project__content .item .left .img {
    max-height: 350px;
  }

  .project__content .item:nth-of-type(even) {
    flex-direction: column;
  }

  .project__content .item:nth-of-type(even) .left {
    margin-left: 0;
  }
}

@media only screen and (max-width: 450px) {
  .project__content .item .right .buttons {
    flex-direction: column;
  }

  .project__content .item .left .img {
    max-height: 300px;
  }

  .project__content .item .right .buttons a {
    width: 100%;
    text-align: center;
  }
}

/*==================== Testimonial ====================*/
.testimonial__content {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.swiper {
  padding-top: 20px;
}

.swiper figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: ease 0.4s;
}

.swiper figure .image {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 30px;
  transition: ease 0.4s;
}

.swiper figure img {
  height: 100%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background-color: var(--first-color-alt);
  animation: morph 4s linear infinite;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  }

  34% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
  }
}

.swiper figure blockquote,
.swiper figure figcaption {
  text-align: center;
}

.swiper figure blockquote {
  font-size: var(--small-font-size);
  margin-bottom: 20px;
  font-family: var(--body-font);
}

.swiper figure blockquote .bi {
  padding-left: 10px;
  padding-right: 10px;
  font-size: var(--normal-font-size);
}

.swiper figure figcaption {
  font-size: 18px;
  font-weight: 700;
}

.swiper .swiper-pagination {
  position: relative;
  bottom: inherit;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide {
  padding-left: 20px;
  padding-right: 20px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--title-color);
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  height: 12px;
  border-radius: 10px;
  background-color: var(--first-color);
}


/*==================== Quality ====================*/
.quality__content {
  margin-top: var(--v-spacing);
  position: relative;
  height: 100%;
}

.quality .chapter {
  color: var(--text-dark-color);
  top: 0;
}

.quality__categories {
  display: grid;
  place-content: center;
  height: 100%;
  grid-template-columns: max-content;
  row-gap: 2rem;

}

.quality__categories a {
  font-family: var(--body-font);
  color: var(--first-color);
  text-decoration: none;
  font-size: var(--h2-font-size);
  margin: auto;
  letter-spacing: 0.2vw;
  line-height: 1.5;
  font-weight: var(--font-medium);
}

.quality__categories a:hover {
  z-index: 1;
}

.quality__image--l,
.quality__image--s {
  pointer-events: none;
  /* important to be able to hover over links under the image */
  position: absolute;
  overflow: hidden;
  visibility: hidden;
}

.quality__image--l {
  width: 20rem;
  top: 20vh;
  left: 2rem;
  padding-bottom: 28vh;
}

.quality__image--s {
  width: 4.5rem;
  top: 20vh;
  right: 2.5rem;
  padding-top: 10vh;
}

.image_inside {
  position: absolute;
  opacity: 0.8;
  top: -10%;
  left: 0;
  width: 100%;
  height: 115%;
  background-size: cover;
}

.fill-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
}

/*==================== MEDIA QUERIES ====================*/

/* For medium devices */
@media screen and (min-width: 568px) {

  .quality__image--l {
    width: 28rem;
    padding-bottom: 56vh;
  }

  .quality__image--s {
    width: 7.5rem;
    right: 5rem;
    padding-top: 15vh;
  }
}


/*==================== Blog ====================*/
.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background: var(--body-color);
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding-bottom: 5px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
  border: 2px solid var(--first-color);
}


.blog-slider__item {
  display: flex;
  align-items: center;
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
  opacity: 1;
  transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, var(--first-color-alt) 0%, var(--first-color-lighter) 74%);
  border: 0.5px solid var(--first-color);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}

.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}

.blog-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.blog-slider__code {
  color: var(--text-color);
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 20px;
}

.blog-slider__text {
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.5em;
}

.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, var(--first-color-alt) 0%, var(--first-color) 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

.blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: var(--text-color-light);
  opacity: 0.2;
  transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--first-color);
  height: 30px;
}

@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }

  .blog-slider__content {
    padding: 0;
  }

  .blog-slider__button {
    width: 100%;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }

  .blog-slider {
    height: 300px;
  }

}

.blog-slider__content {
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 400px;
    height: auto;
    margin: 180px auto;
  }

  .blog-slider__item {
    flex-direction: column;
  }

  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }

  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 15px;
  }

  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }

  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
  }
}

/*==================== FOOTER ====================*/
.footer {
  position: sticky;
  left: 0;
  right: 0;
  bottom: var(--header-height);
  overflow: hidden;
}

.footer__content {
  text-align: center;
  background: var(--container-color);
  display: flex;
  align-items: center;
  height: 40vh;
  justify-content: flex-end;
  padding-bottom: 5vh;
  flex-direction: column;
}

.heart {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-left: 14px;
  margin-right: 14px;
  background-color: #DC143C;
  transform: rotate(45deg);
  animation: heartbeater 1.4s linear infinite;
}

.heart:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D82E2F;
  transform: translateY(-50%);
  border-radius: 50%;
}

.heart:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D82E2F;
  transform: translateX(-50%);
  border-radius: 50%;
}

@keyframes heartbeater {
  0% {
    transform: rotate(45deg) scale(1);
  }

  25% {
    transform: rotate(45deg) scale(1.2);
  }

  30% {
    transform: rotate(45deg) scale(1.4);
  }

  50% {
    transform: rotate(45deg) scale(1.2);
  }

  70% {
    transform: rotate(45deg) scale(1.4);
  }

  100% {
    transform: rotate(45deg) scale(1);
  }
}

.contact__detail {
  font-family: "Dancing Script", cursive;
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
  text-align: center;
}

.contactme__button {
  margin-bottom: var(--mb-1);
  position: relative;
}

.contactme__button:before,
.contactme__button:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--first-color);
  border-radius: 10px;
  z-index: -1;
  opacity: 0.7;
}

.contactme__button:before {
  animation: pulse 2s ease-out infinite;
}

.contactme:after {
  animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}


.svg text {
  font-family: Lora;
  letter-spacing: 10px;
  stroke: var(--first-color);
  font-size: var(--h1-font-size);
  font-weight: 700;
  stroke-width: 1.5px;
  animation: textAnimate 5s infinite alternate;
}

@keyframes textAnimate {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 20%;
    fill: var(--first-color);
  }

  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffstet: -20%;
    fill: hsla(189, 68%, 75%, 0%);
  }
}

.progress-wrap {
  position: fixed;
  right: 10px;
  bottom: 60px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 1;
  opacity: 0;
  background-color: var(--body-color);
  visibility: hidden;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "";
  background-image: url("https://res.cloudinary.com/bijay/image/upload/v1630675048/portfolio/rocket_hvv3i0.svg");
  left: 0;
  top: 1.5px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0.5;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--first-color);
  stroke-width: 5;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.glooey {
  align-items: center;
  display: flex;
  height: 50px;
  width: 100%;
  justify-content: center;
}

.svg__glooey {
  height: 1px;
}

.c-social-media {
  filter: url("#goo");
  position: relative;
}

.c-social-media__list {
  height: 50px;
  width: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-social-media__btn,
.c-social-media__item {
  background-color: transparent;
  border: 0;
  margin: 0;
  outline: unset;
  padding: 0;
  text-decoration: none;
  align-items: center;
  background-color: var(--first-color);
  border-radius: 50%;
  box-sizing: border-box;
  color: white;
  display: flex;
  height: 42px;
  justify-content: center;
  padding: 10px;
  width: 42px;
}

.c-social-media__btn {
  position: relative;
  transform: scale(1.25);
  z-index: 9;
}

.c-social-media__item {
  position: absolute;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  top: 50%;
}

.c-social-media__link {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-social-media__icon {
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.contact__form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  opacity: 0.5;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  transition: all 1s;
}

.active__modal {
  opacity: 1;
  visibility: visible;
  z-index: var(--z-modal);
}

form {
  background-color: var(--first-color-lightest);
  padding: 1rem 2rem 0.5rem;
  border-radius: 10px;
  max-width: 100vw;
  min-height: 50vh;
  display: block;
  opacity: 0.9;
  margin: 0 auto;
  position: relative;
  border: 4px solid var(--first-color);
}

form h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--first-color);
}

.form__inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}

form .form {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.form input,
.form textarea {
  padding: 8px;
  width: 100%;
  border-radius: 3px;
  background-color: var(--first-color-lightest);
  border: 2px solid var(--first-color);
  outline: none;
  transition: 0.3s ease;
}

.form label {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  padding: 0 2px;
  transition: 0.3s ease;
  color: var(--first-color);
}

.form textarea~label {
  top: 8px;
  transform: unset;
}

form .form textarea {
  resize: vertical;
}

.form input.valid~label,
.form textarea.valid~label,
.form input.invalid~label,
.form textarea.invalid~label,
.form input:focus~label,
.form textarea:focus~label {
  top: -10px;
  font-size: 13px;
  font-weight: 500;
  background-color: var(--first-color-lightest);
  transform: unset;
}

.form input.valid~label,
.form textarea.valid~label {
  color: green;
}

.form input.valid,
.form textarea.valid {
  border-color: green;
}

.form input.invalid~label,
.form textarea.invalid~label {
  color: red;
}

.form input.invalid,
.form textarea.invalid {
  border-color: red;
}

form button {
  padding: 10px 30px;
  background: blue;
  width: max-content;
  outline: none;
  border: none;
}

form button span {
  font-size: var(--normal-font-size);
}

@media screen and (max-width:480px) {
  .form__inline {
    grid-gap: unset;
    grid-template-columns: 1fr;
  }

  form button {
    width: 100%;
  }
}

.contact__close {
  position: absolute;
  top: 5%;
  right: 5%;
  color: var(--first-color);
  font-size: var(--normal-font-size);
}

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

.color__palette {
  width: 100%;
  margin-top: var(--mb-1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.colour {
  cursor: pointer;
  font-size: var(--h2-font-size);
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

/*Purple 250 - Green 142 - Blue 230 - Pink 340*/
.purpler {
  color: hsl(250, 50%, 55%);
}

.greener {
  color: hsl(142, 50%, 55%);
}

.bluer {
  color: hsl(230, 50%, 55%);
}

.pinker {
  color: hsl(340, 50%, 55%);
}
/*==================== MEDIA QUERIES ====================*/

@media screen and (min-width: 768px) {
  .footer {
    bottom: 0;
  }

  .footer__content {
    height: 30vh;
  }
}

/* Mouse Circle */
.mouse-circle,
.mouse-dot {
  border-radius: 50%;
  position: fixed;
  z-index: 300;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.mouse-dot {
  opacity: 0.5;
}

.mouse-circle {
  width: 4rem;
  height: 4rem;
  border: 0.15rem dotted var(--first-color);
}

.mouse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--first-color-lighter);
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 0.5rem;
}

.wave {
  display: block;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
  transform: rotate(180deg);
  -webkit-mask: url("/assets/img/dripsmask.svg");
  mask: url("/assets/img/dripsmask.svg");
  position: absolute;
  background: var(--body-color);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
}

.horizontal {
  width: 20vh;
  height: 2px;
  background-color: var(--first-color);
  margin-top: var(--mb-0-25);
  margin-bottom: var(--mb-0-5);
  border: none;
}

/******************Loader********************/
.is-loading .be {
  display: none;
}

.is-loading {
  background-color: var(--body-color-2);
}

.loader,
.loader__content {
  min-height: 100vh;
  position: fixed;
  flex-direction: column;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.loader__mask {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--text-color-light) url("https://res.cloudinary.com/bijay/image/upload/v1630675189/portfolio/logo_k7mxvb.svg") no-repeat center;
  background-size: 250px 250px;
  overflow: hidden;
}

.loader .inner,
.loader__content .inner {
  width: 250px;
  height: 250px;
}

.loader .inner {
  background-color: var(--first-color);
}

.loader__content {
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.loader__title {
  font-size: var(--h2-font-size);
  line-height: var(--h2-font-size);
  margin: 0;
  font-family: monospace;
  color: white;
  font-weight: normal;
  position: absolute;
  text-align: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.loader__image {
  width: 250px;
  padding-bottom: 50vh;
  overflow: hidden;
  position: relative;
}

.loader__image img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.8;
}

.loader__title--mask {
  overflow: hidden;
}

.loader__title--mask span {
  display: block;
}

.loader__image--mask {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
}