@charset "UTF-8";
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
@import url("https://use.typekit.net/cye7nee.css");
:root {
  --color-primary: #0e9287;
  --color-primary-light: rgb(51, 255, 238);
  --color-primary-dark: rgb(65, 38, 186);
  --color-red-light: #ff3366;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-light-5: #fffbfb;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --lightBgGrey: #f2ebe366;
  --lightBgGrey2: #f2ebe3cc;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 2rem 5rem rgba(0, 0, 0, 0.185);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  --line: 1px solid var(--color-grey-light-2);
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  text-align: left;
  color: var(--color-grey-dark-2);
  position: relative;
  margin: 0 auto;
}

.header {
  padding: 0 4vw;
  padding-top: 1vw;
}

/*-----------------------------Navbar --------*/
header {
  position: relative;
}

.navbar {
  --text: #000000;
  --text-inverse: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1000;
  padding: 1vw 0 0 0;
}

.navbar-logo {
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("/img/FAVICON2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 4rem;
  border-radius: 50%;
  border: none;
  box-shadow: var(--shadow-dark);
}

@media screen and (max-width: 768px) {
  .navbar-logo {
    margin-left: 2rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

.uls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.navbar-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-right: 2rem;
}

@media screen and (max-width: 768px) {
  .navbar-links {
    margin-right: 1rem;
  }
}

ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 2.4rem;
  font-size: 1.1vw;
  margin: 2rem 4rem;
  font-weight: 300;
  font-family: inherit;
  letter-spacing: 0px;
  cursor: pointer;
  transition: all 0.2s;
}

@media screen and (max-width: 1565px) {
  ul li a {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  ul li a {
    font-size: 1.8rem;
    margin: 1rem;
  }
}

@media screen and (max-width: 450px) {
  ul li a {
    font-size: 1.6rem;
    margin: 0.5rem;
  }
}

@media screen and (max-width: 350px) {
  ul li a {
    font-size: 1.4rem;
    margin: 0.5rem;
  }
}

ul li a:hover {
  color: var(--color-primary);
}

ul li {
  list-style: none;
}

li a {
  text-decoration: none;
}

nav li {
  list-style: none;
}

nav li:hover {
  color: #000;
}

#divItem {
  --text: #ffffff;
}

.resume-button {
  color: var(--color-primary);
  background-color: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.75rem 1rem;
}

.resume-button:hover,
.resume-button:focus {
  border: 1px solid var(--color-primary);
}

.cursor {
  width: 3rem;
  height: 3rem;
  border: 0.5px solid #ccc;
  border: 0.5px solid #616060;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.2s ease;
  transition-property: background, transform;
  transform-origin: 100% 100%;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .cursor {
    display: none;
  }
}

.link-grow {
  transform: scale(4);
  background: transparent;
}

/*------------------------------ Hero ----------------------------------*/
.hero {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 30vh 0;
  position: relative;
  background-color: #fff;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 15vh 0 20vh 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

/*------------------------------ Preload--------------------------*/
.modal-wrapper {
  background-color: #ffd42d;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .modal-wrapper {
    background-color: #fff;
  }
}

.contact-modal {
  position: fixed;
  top: 2vw;
  left: 2vw;
  right: 2vw;
  bottom: 2vw;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-modal.hidden {
  display: none;
}

.modal {
  z-index: 900;
}

.pos-a-t-l {
  position: absolute;
  top: 0;
  left: 0;
}

.full-size {
  width: 100%;
  height: 100%;
}

.contact-modal .contact-modal-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-modal-content-email {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-modal-content-email .no-line {
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  color: #212121;
}

@media only screen and (max-width: 800px) {
  .contact-modal-content-email .no-line {
    font-size: 16px;
  }
}

.contact-modal-content-email .no-line a:hover {
  border-bottom: 1px solid rgba(255, 0, 0, 0);
}

.huge-text {
  cursor: pointer;
}

.contact-modal-content-email .h1,
.contact-modal-content-email .huge-text {
  font-family: stolzl, sans-serif;
  font-weight: 500;
  font-size: 6.6rem;
  color: #000;
}

@media only screen and (max-width: 1600px) {
  .contact-modal-content-email .h1,
  .contact-modal-content-email .huge-text {
    font-size: 4.5vw;
  }
}

@media only screen and (max-width: 768px) {
  .contact-modal-content-email .h1,
  .contact-modal-content-email .huge-text {
    font-size: 2.4rem;
    line-height: 0.9em;
  }
}

@media only screen and (max-width: 386px) {
  .contact-modal-content-email .h1,
  .contact-modal-content-email .huge-text {
    font-size: 2rem;
    line-height: 0.9em;
  }
}

.contact-social {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 3rem 0;
}

.contact-social .social-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.contact-social .social-list li a {
  margin: 0rem 1rem;
}

.contact-social .social-title {
  font-family: sofia-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  color: #212121;
}

@media only screen and (max-width: 800px) {
  .contact-social .social-title {
    font-size: 12px;
  }
}

.contact-modal .ledge {
  top: auto;
  bottom: 30%;
  transition: 0.35s 0.6s;
}

.ledge {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  width: 0;
  height: 0;
  transition: 0.55s cubic-bezier(0.62, 0.02, 0.34, 1);
}

.contact-modal .ledge::before {
  background-color: rgba(0, 0, 0, 0.03);
}

.ledge-minus-16-deg::before {
  transform: rotate(-16deg);
}

.ledge > div,
.ledge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 50% 0;
  transition: transform 0.9s cubic-bezier(0.52, 0.01, 0.16, 1), background 0.26s linear;
  width: 300vw;
  height: 300vw;
  margin-left: -150vw;
}

.social-list .icon {
  width: 25px;
  height: 25px;
}

.contact-modal .close {
  position: absolute;
  right: 2vw;
  top: 2vw;
}

.contact-modal .contact-modal-content,
.contact-modal .close,
.contact-modal .contact-social {
  transition: 0.55s cubic-bezier(0.52, 0.01, 0.16, 1) 0.4s;
}

.contact-modal a,
.contact-modal h4,
.contact-modal p {
  color: #212121;
}

.contact-modal > * {
  z-index: 10;
}

.underline-link {
  position: relative;
}

.underline-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ffd42d;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0% 100%;
  transition: 0.75s cubic-bezier(0.7, 0.3, 0, 1);
}

.underline-link:hover::after {
  transform: scale(1, 1);
}

.contact-modal .close {
  position: absolute;
  right: 2vw;
  top: 2vw;
}

.contact-modal .contact-modal-content,
.contact-modal .close,
.contact-modal .contact-social {
  transition: 0.55s cubic-bezier(0.52, 0.01, 0.16, 1) 0.4s;
}

.contact-modal > * {
  z-index: 10;
}

.close {
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 1400px) {
  .close {
    width: 22px;
    height: 22px;
  }
}

.close span::before {
  transform: rotate(45deg) translateZ(0) scale(1, 1);
}

.close span::before,
.close span::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #212121;
  margin-top: -1px;
  transition: 0.45s cubic-bezier(0.7, 0.3, 0, 1);
}

.close span::after {
  transform: rotate(-45deg) translateZ(0) scale(1, 1);
}

.close span::before,
.close span::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #212121;
  margin-top: -1px;
  transition: 0.25s cubic-bezier(0.7, 0.3, 0, 1);
}

.close span:hover::before,
.close span:hover::after {
  background: #ffd42d;
  height: 3px;
  cursor: pointer;
}

.preload {
  position: fixed;
  top: 0%;
  right: 0%;
  left: 0%;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  background-color: black;
  transition: all 1.5s ease-in-out;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preload-finish {
  opacity: 0;
  pointer-events: none;
}

/*------------------------------ Preload End--------------------------*/
.date {
  display: block;
  overflow: hidden;
  text-align: left;
  line-height: 1;
  text-transform: none;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #212529;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-left: 5vh;
  padding-bottom: 1vh;
}

@media screen and (max-width: 310px) {
  .date {
    flex-direction: column;
    line-height: 1.6;
  }
}

@media screen and (max-width: 800px) {
  .date {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 650px) {
  .date {
    font-size: 1.4rem;
    padding-left: 0vh;
  }
}

@media screen and (max-width: 381px) {
  .date {
    font-size: 1.4rem;
  }
}

span .reveal-line {
  background: #000;
  margin-bottom: 0.3px;
  border-bottom: 0.5px solid #000;
  width: 3%;
  height: 0.5px;
  top: 35%;
  left: 12%;
  transform: translate(-50%, -50%);
  display: inline-block;
  background: #000;
  margin-left: 1.5vw;
  margin-left: 2vw;
  animation: yas 1s ease forwards;
  animation-delay: 1.5s;
}

@media screen and (max-width: 800px) {
  span .reveal-line {
    margin-left: 0.5vw;
    width: 5%;
    margin-bottom: 1.5rem;
  }
}

/*------------------------------ Typography------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  color: #000;
}

.h1,
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-style: normal;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

/*--------------------------------------
--------------------------- */
.reveal {
  overflow: hidden;
  display: block;
  padding: 0 4rem;
  padding: 0 4vw;
}

@media screen and (max-width: 768px) {
  .reveal {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 550px) {
  .reveal {
    padding: 0 1.5rem;
  }
}

.s-01,
.s-02,
.s-03 {
  display: block;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 17vw;
}

@media screen and (max-width: 1500px) {
  .s-01,
  .s-02,
  .s-03 {
    font-size: 15vw;
  }
}

@media screen and (max-width: 1265px) {
  .s-01,
  .s-02,
  .s-03 {
    font-size: 14vw;
  }
}

@media screen and (max-width: 768px) {
  .s-01,
  .s-02,
  .s-03 {
    font-size: 13vw;
    line-height: 1.2;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 350px) {
  .s-01,
  .s-02,
  .s-03 {
    font-size: 13vw;
  }
}

.s-03,
.s-01 {
  text-align: right;
}

.left-text,
.right-text,
.arrow-down {
  font-size: 4vw;
  font-size: 6.225vw;
  text-transform: uppercase;
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

/*-------------------------- Projects-----------------------------------  */
.projects-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: relative;
}

.projects {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  /*  // background-color: rgb(237, 229, 229);
  width: 100%;
  // height: 100vh;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 1;
  overflow: scroll;
   overflow-y: scroll; */
}

@media screen and (max-width: 1020px) {
  .projects {
    width: 100%;
    height: auto;
  }
}

.projects-container {
  min-width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background-color: inherit;
  position: relative;
  flex-direction: row;
  display: flex;
  opacity: 1;
}

.projects-container:nth-of-type(4) {
  background-color: #dc3545;
  background-color: var(--lightBgGrey2);
}

.projects-container:nth-of-type(2) {
  background-color: #ffc107;
  background-color: #28a745;
}

.projects-container:nth-of-type(3) {
  background-color: #17a2b8;
  background-color: #ffc107;
}

.projects-container:nth-of-type(1) {
  background-color: #28a745;
  background-color: #f3f7f0;
  background-color: #17a2b8;
  background-color: #ffa69e;
}

.projects-container:nth-of-type(7) {
  background-color: #85d270;
  background-color: #fff;
}

.projects-container:nth-of-type(6) {
  background-color: #fff;
  background-color: #85d270;
}

.projects-container:nth-child(5) {
  background-color: var(--lightBgGrey2);
  background-color: #85d270;
  background-color: #dc3545;
}

@media (max-width: 1050px) {
  .projects-container {
    flex-direction: column;
  }
}

.projects-container-img {
  flex: 0 0 60%;
  width: 100%;
  margin: 0 auto;
  background-color: inherit;
  background-color: transparent;
  position: relative;
}

@media (max-width: 1050px) {
  .projects-container-img {
    flex: 1;
  }
}

@media (max-width: 1050px) {
  .projects-container-img {
    min-height: 60vh;
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  .projects-container-img {
    flex: 0 0 50%;
  }
}

.projects-container-title {
  z-index: 10;
  flex: 0 0 40%;
  width: 100%;
  min-height: 100vh;
  padding: 4rem 8rem;
  background-color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .projects-container-title {
    min-height: 60vh;
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  .projects-container-title {
    flex: 0 0 50%;
    padding: 2rem;
  }
}

.projects-container-title-top {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.projects-container-title-down {
  flex: 1;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.project-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1050px) {
  .project-img {
    opacity: .6;
    transform: opacity 0.25s;
  }
}

@media (min-width: 1050px) {
  .project-img:hover {
    opacity: 1;
  }
}

/*-------------------------- Gallery-----------------------------------  */
.gallery {
  background-color: black;
  width: 100%;
  flex-direction: column;
  position: relative;
}

.experience {
  background-color: black;
  position: relative;
}

.gallery-container {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 25vh;
  padding-bottom: 25vh;
  margin: 8rem auto 0rem auto;
  max-width: 1565px;
  background-image: url("/img/pic-8.png");
  background-image: url("/img/gallery-self.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media screen and (max-width: 550px) {
  .gallery-container {
    background-image: url("/img/pic-2.png");
  }
}

/*  CIRCULAR TEXT */
#gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 1565px;
  margin: 0 auto;
  overflow: hidden;
}

#gallery-wrapper text {
  font-family: "Helvetica Neue", Arial;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #gallery-wrapper text {
    font-size: 14px;
  }
}

#gallery-wrapper svg {
  position: absolute;
  left: 50%;
  left: 80%;
  top: -2%;
  transform: translate(-50%, -50%);
  width: 100%;
  width: 40%;
  height: 540px;
  animation-name: rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@media screen and (max-width: 1450px) {
  #gallery-wrapper svg {
    top: 0%;
  }
}

@media screen and (max-width: 550px) {
  #gallery-wrapper svg {
    top: -2%;
  }
}

@media screen and (max-width: 1450px) {
  #gallery-wrapper svg {
    height: 340px;
  }
}

@media screen and (max-width: 550px) {
  #gallery-wrapper svg {
    height: 200px;
  }
}

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

#gallery-wrapper svg::after {
  content: " <- BORING";
  color: #fff;
}

/*  CIRCULAR TEXT END */
/*--------------------------*/
.gallery-container-1 {
  background-color: #000;
  max-width: 1565px;
  min-height: 30vh;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-container-1 h3 {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #fff;
  font-size: 2.2vw;
  font-size: 1.8vw;
  padding-top: 8vw;
  line-height: 1.5;
  text-align: left;
  width: 60%;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .gallery-container-1 h3 {
    line-height: 1.6;
    font-size: 1.7rem;
    width: 80%;
  }
}

.gallery-container-1 p {
  padding-top: 3vw;
  color: #b2b2b2;
  font-size: 1.8vw;
  width: 60%;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .gallery-container-1 p {
    line-height: 1.6;
    font-size: 1.7rem;
    width: 80%;
  }
}

/*-------------------------- gallery end-----------------------------------  */
.technology {
  background-color: black;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  min-height: 50vh;
  min-height: 40vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 300px) {
  .technology {
    min-height: 60vh;
  }
}

.techs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 1565px;
}

.tech1 {
  flex: 0 0 10%;
  justify-content: center;
  align-items: center;
}

.tech h3 {
  font-size: 2.4vw;
  text-transform: uppercase;
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .tech h3 {
    font-size: 1.6rem;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

.icons-center {
  flex: 0 0 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.icons-center .one p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: initial;
  text-align: start;
  color: #b2b2b2;
}

@media screen and (max-width: 460px) {
  .icons-center .one p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 310px) {
  .icons-center .one p {
    font-size: 1.2rem;
  }
}

.icon-box {
  width: 4rem;
  height: 5rem;
}

.iconBox .icon-box {
  width: 3rem;
  height: 3rem;
}

.one {
  max-width: 4vw;
  margin: 3rem;
}

@media screen and (max-width: 839px) {
  .one {
    max-width: 8vw;
  }
}

/*----------------------------------------------------*/
#work h4.sub-h {
  padding-top: 7vw;
  margin-bottom: 1.5vw;
}

h4.sub-h {
  font-family: "Quicksand", sans-serif;
  font-size: 0.8vw;
  border: 1px solid black;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: bold;
}

@media screen and (min-width: 3000px) {
  h4.sub-h {
    line-height: 1;
    margin-bottom: 0vw;
  }
}

@media screen and (max-width: 1650px) {
  h4.sub-h {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 950px) {
  h4.sub-h {
    font-size: 1rem;
  }
}

@media screen and (max-width: 650px) {
  h4.sub-h {
    font-size: 1.2rem;
    margin-bottom: 0.8vw;
  }
}

.projects-container-title-top h3 {
  padding-top: 0;
  font-size: 3.8vw;
  text-transform: uppercase;
  padding-bottom: 0px;
  margin-bottom: 0;
  line-height: 1.5;
  line-height: 1;
  margin-bottom: 2rem;
}

@media screen and (min-width: 3000px) {
  .projects-container-title-top h3 {
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .projects-container-title-top h3 {
    padding-bottom: 0px;
  }
}

#work p {
  opacity: 0.8;
}

.projects-container-title-down p {
  margin-bottom: 3rem;
  font-size: 1vw;
}

@media screen and (min-width: 3000px) {
  .projects-container-title-down p {
    margin: 0vw;
  }
}

@media screen and (max-width: 1359px) {
  .projects-container-title-down p {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 950px) {
  .projects-container-title-down p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .projects-container-title-down p {
    line-height: 1.6;
    font-size: 1.8rem;
  }
}

p {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  color: #000;
}

li {
  list-style: none;
  text-decoration: none;
}

a {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 1.6rem;
  cursor: pointer;
}

a:hover {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 550px) {
  a {
    font-size: 1.4rem;
    margin: 2rem 0 0 0;
  }
}

p {
  margin-top: 0;
  margin-bottom: 4rem;
}

/*-------------  -------------*/
section,
.sectiongallery,
.circle {
  z-index: 999;
}

.technology {
  z-index: 999;
}

.footer {
  background-color: white;
  background-attachment: fixed;
  min-height: 70vh;
  width: 100vw;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 0;
  transform: translateZ(0);
  transform: translate3d(0, 0, 0);
}

.nav-footer-top {
  background-color: #fff;
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0rem 10vh;
}

@media screen and (max-width: 768px) {
  .nav-footer-top {
    padding: 20vh 1rem 0rem 1rem;
    align-content: center;
    text-align: center;
  }
}

.footer li {
  min-width: 10rem;
}

.footer li a {
  position: relative;
  color: #000000;
  text-decoration: none;
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  font-size: 2.4vw;
  color: #000000;
  transition: all 0.2s;
}

@media screen and (max-width: 768px) {
  .footer li a {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0;
  }
}

.footer li a:hover {
  border-bottom: 3px solid #000000;
  color: #000000;
}

a:active,
a:focus,
a:visited {
  outline: 0;
  border: none;
}

footer ul .nav-footer {
  flex: 1;
  width: 100%;
  height: 100%;
}

.nav-footer-down {
  flex: 1;
  background-color: inherit;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .nav-footer-down {
    padding: 0;
  }
}

.back-to-top {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
  transition: all 0.1s;
}

.back-to-top a {
  text-decoration: none;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  font-size: 3.4rem;
  text-align: center;
  transition: all 0.1s;
}

@media screen and (max-width: 1080px) {
  .back-to-top a {
    font-size: 2.4rem;
  }
}

.back-to-top a:hover {
  border: 1px solid #ccc;
  border-radius: 50%;
  color: var(--color-primary);
}

.copy {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
  .copy {
    padding-bottom: 4rem;
  }
}

.copy p,
.copy a {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  transition: all ease-in 0.2s;
}

@media screen and (max-width: 1613px) {
  .copy p,
  .copy a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .copy p,
  .copy a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 320px) {
  .copy p,
  .copy a {
    font-size: 1.1rem;
  }
}

.copy a:hover {
  color: var(--color-primary);
}

a:active,
a:focus,
a:visited {
  outline: 0;
  border: none;
}

.nav-scrolled {
  --text: #ffffff;
  --text-inverse: #000000;
}

.experience {
  width: 100vw;
  padding: 8rem 4rem;
  background-color: #0e0e10;
  background-color: #efede3;
  background-color: #171717;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-title {
  width: 100vw;
  position: relative;
}

.experience-title .s-01 {
  font-weight: 700;
  color: #0a0a0a;
  color: #171717;
  text-transform: capitalize;
  font-size: 14vw;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1440px) {
  .experience-title .s-01 {
    margin-bottom: 2rem;
  }
}

.experience-wrapper {
  max-width: 140rem;
  max-width: 1565px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
  text-align: start;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .experience-wrapper {
    padding: 0 2rem;
  }
}

.experience-wrapper-jobs {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
  padding-bottom: 2rem 4rem;
}

@media screen and (max-width: 1020px) {
  .experience-wrapper-jobs {
    max-width: 80%;
  }
}

@media screen and (max-width: 530px) {
  .experience-wrapper-jobs {
    justify-content: center;
    align-items: center;
  }
}

.experience-wrapper-jobs-title-description {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 1020px) {
  .experience-wrapper-jobs-title-description {
    flex-direction: column;
  }
}

@media screen and (max-width: 530px) {
  .experience-wrapper-jobs-title-description {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.experience-wrapper-jobs-title-description-right {
  flex: 0 0 75%;
}

@media screen and (max-width: 530px) {
  .experience-wrapper-jobs-title-description-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

.experience-wrapper-jobs-title-description-left {
  flex: 0 0 25%;
  display: flex;
  justify-content: end;
  align-self: start;
}

@media screen and (max-width: 530px) {
  .experience-wrapper-jobs-title-description-left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
  }
}

.experience-wrapper-client {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media screen and (max-width: 440px) {
  .experience-wrapper-client {
    align-items: center;
  }
}

.experience-wrapper-client-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 1rem;
}

@media screen and (max-width: 530px) {
  .experience-wrapper-client-title {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 440px) {
  .experience-wrapper-client-title {
    flex-direction: column;
    gap: 0rem;
  }
}

.unc-inc {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  padding: 0;
}

.unc-inc1 {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #4f4f4b;
  font-size: 2.8rem;
  margin-bottom: 0;
  padding: 0;
}

@media screen and (max-width: 1440px) {
  .unc-inc,
  .unc-inc1 {
    font-size: 1.9rem;
  }
}

.together {
  margin-bottom: 0;
  padding: 0;
  width: 85%;
}

@media screen and (max-width: 530px) {
  .together {
    text-align: center;
  }
}

.together,
.job-date {
  color: #b2b2b2;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.5vw;
}

@media screen and (max-width: 1868px) {
  .together,
  .job-date {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 440px) {
  .together,
  .job-date {
    text-align: center;
  }
}

.job-date {
  color: #444444;
}

.projects-container-title-top .sub-h {
  padding: 0;
  margin: 0;
}

.did {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 3rem;
}

.project-icons {
  width: 3rem;
  height: 4rem;
  fill: black;
}

.icons-create {
  width: 100%;
  background-color: white;
  display: flex;
  min-height: 1rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.git-link {
  font-family: basic-sans, sans-serif;
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
}

.icons-center.changed {
  align-items: flex-start;
  padding-bottom: 3rem;
}

.icons-center.changed .one p {
  font-size: 1.6rem;
}

.icons-center.changed .icon-box {
  width: 3rem;
  height: 3rem;
}

.login-form {
  width: 100%;
  display: flex;
  padding: 4rem 2rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .login-form {
    padding: 4rem 0rem;
  }
}

.form {
  display: none;
}

.form.show {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
  width: 50rem;
  min-height: 40vh;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .form.show {
    width: 100%;
    min-width: 20rem;
  }
}

.form__group {
  flex: 1;
  width: 100%;
  width: 50rem;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .form__group {
    width: 100%;
    min-width: 20rem;
  }
}

.form .form__input {
  display: block;
  font-size: 2.2rem;
  color: #000;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  padding: 1.5rem 1.75rem;
  border: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #000;
  transition: all 0.3s;
  border-radius: 4px;
}

.form__input:focus {
  outline: none;
  border-bottom: 3px solid #55c57a;
}

.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
  border-bottom: 3px solid #000;
}

.form__input::-webkit-input-placeholder {
  color: #000;
}

.form-group .form__input::-webkit-input-placeholder {
  color: #7a7a7a;
}

.form__group:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.login-form-title .form__label {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.btn--form {
  background-color: #000;
  color: white;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  font-weight: 400;
  border: none;
  width: 100%;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid #ccc;
  outline: none;
}

.btn--form:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: black;
}

.send {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #000000;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

.fontColor {
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  line-height: 44px;
  font-size: 2.4vw;
  color: #000000;
  margin-bottom: 3rem;
  text-align: center;
}

@media screen and (max-width: 1250px) {
  .fontColor {
    font-size: 3.5rem;
  }
}

.hidden {
  display: none;
}

.sendMailIcon {
  width: 4rem;
  height: 4rem;
  fill: #000;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1450px) {
  .fixedTest {
    line-height: 1;
    font-size: 1.8rem;
  }
}

.fixedTest.lasted {
  margin-bottom: 2rem;
}

.projects-container-title-top h3 {
  font-size: 3rem;
}

.myName {
  width: 30rem;
}

@media screen and (max-width: 1200px) {
  .myName {
    width: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .myName {
    width: 15rem;
  }
}

@media screen and (max-width: 450px) {
  .myName {
    width: 12rem;
  }
}

@media screen and (max-width: 310px) {
  .myName {
    margin-top: 1rem;
    width: 80%;
  }
}

.textAnimation,
.text-will {
  transform-style: preserve-3d;
}

.linkToEmialClosed:hover {
  border-bottom: none;
}

.selected-work {
  width: 100%;
  min-height: 8rem;
  padding: 2rem;
  background-color: inherit;
  position: relative;
}

.align-self-end {
  visibility: hidden;
  opacity: 0;
  bottom: 0;
  right: 0;
  left: 0;
  min-height: 10rem;
  width: 100vw;
  transition: all 0.6s;
  margin: 1vw 0;
}

.align-self-end h2 {
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

@media screen and (max-width: 768px) {
  .align-self-end h2 {
    align-items: flex-end;
  }
}

.align-self-end.visible {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 425px) {
  .align-self-end.visible {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}

.gallery-container-1 .greish {
  color: #b2b2b2;
}

.nav-footer-top.replacement {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: auto;
  padding: 0;
  gap: 2rem;
  transition: all 0.1s;
}

@media screen and (max-width: 550px) {
  .nav-footer-top.replacement {
    display: none;
  }
}

.nav-footer-top.replacement li {
  min-width: 0;
}

.nav-footer-top.replacement li a {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  cursor: pointer;
  color: #000;
}

@media screen and (max-width: 1613px) {
  .nav-footer-top.replacement li a {
    font-size: 1.8rem;
  }
}

.nav-footer-top.replacement li a:hover {
  border-bottom: 3px solid #ffffff00;
  color: #000000;
}

.drop-a-line {
  display: block;
  padding: 20vh 2rem;
  width: 100%;
  display: none;
  transform: all 0.2s;
}

@media screen and (max-width: 768px) {
  .drop-a-line {
    padding: 2rem;
  }
}

.drop-a-line-container {
  position: relative;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  margin: 0 auto;
  min-height: 20vh;
  display: flex;
  justify-content: center;
  animation-duration: 0.5s;
  box-shadow: -15px 15px 30px 3px rgba(0, 0, 0, 0.111111);
  display: flex;
}

.widget-left {
  flex: 0 0 50%;
  min-height: 550px;
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .widget-left {
    display: none;
  }
}

.widget-right {
  flex: 0 0 50%;
  width: 100%;
  min-height: 550px;
  background-color: #000;
  padding: 0 5%;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .widget-right {
    flex: 1;
  }
}

.widget-right .form-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.widget-right .form-container .form-group {
  width: 100%;
  border-bottom: 2px solid #fff;
}

.widget-right .form-container .form-group .btn--form {
  background-color: #fff;
  color: #000;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.2s;
  border: none;
  width: 100%;
  font-family: "Quicksand", sans-serif;
  padding: 1.5rem 1.75rem;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.widget-right .form-container .form-group .btn--form:hover {
  background-color: #000;
  color: #fff;
}

.widget-right .form-container .form-group:last-child {
  border-bottom: none;
}

.widget-right h2 {
  color: #fff;
  font-family: sofia-pro, sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 4rem;
}

.form-group .form__input {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  padding: 1.5rem 1.75rem;
  border: none;
  width: 100%;
  background-color: #000;
  background-color: rgba(255, 255, 255, 0);
  border-color: #fff;
  border-width: 0 0 2px;
  border-radius: 0;
  transition: all 0.3s;
  border-radius: 4px;
}

.widget-left .social-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 4rem;
}

.widget-left .social-list ul li a {
  color: rgba(122, 122, 122, 0.64);
  padding-left: 0;
  padding-right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: sofia-pro, sans-serif;
  font-weight: 700;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 60px;
  letter-spacing: 1px;
  margin: 0;
}

.widget-left ul li a {
  color: rgba(122, 122, 122, 0.64);
  padding-left: 0;
  padding-right: 0;
  font-family: basic-sans, sans-serif;
  font-weight: 400;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 1px;
  margin: 0;
}

.widget-left-links {
  width: 100%;
  height: 100%;
  padding: 12% 0 12% 12%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.widget-left-links a:hover {
  transition: 0.4s;
  transform: skew(0deg);
  border-bottom: 0;
}

.widget-left-links li a:hover {
  color: #000;
  transform: skew(-8deg);
}

.icon-contact-social {
  fill: #6d6d6d;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 1px;
  border-color: #000;
}

.icon-contact-close {
  position: absolute;
  top: 4%;
  right: 2rem;
  cursor: pointer;
}

.icon-contact-close .icon-contact-social {
  width: 3rem;
  height: 3rem;
}

.icon-contact-close .icon-contact-social:hover {
  fill: #fff;
}

.navLinks {
  z-index: 9000;
}

.section--hidden {
  opacity: 0;
  transition: translateY(8rem);
}

#circle {
  position: relative;
  width: 100%;
  max-width: 1565px;
  margin: 0 auto;
  overflow: hidden;
}

#circle text {
  font-family: "Helvetica Neue", Arial;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #circle text {
    font-size: 14px;
  }
}

#circle svg {
  position: absolute;
  left: 50%;
  top: -2%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 540px;
  animation-name: rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@media screen and (max-width: 1450px) {
  #circle svg {
    top: 0%;
  }
}

@media screen and (max-width: 550px) {
  #circle svg {
    top: -2%;
  }
}

@media screen and (max-width: 1450px) {
  #circle svg {
    height: 340px;
  }
}

@media screen and (max-width: 550px) {
  #circle svg {
    height: 200px;
  }
}

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

/*  CIRCULAR TEXT END */
.unc-inc {
  margin-bottom: 2rem;
}

.resume-button:hover {
  background-color: rgba(100, 255, 218, 0.1);
  outline: none;
}

@media screen and (max-width: 1020px) {
  .resume-button {
    display: none;
  }
  .together {
    width: 100%;
  }
}

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

.technology .together {
  text-align: center;
}

.tools {
  min-height: 90vh;
  background-color: #fff;
}

.technology .skills-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 150px));
  gap: 0px 10px;
  padding: 0px;
  margin: 20px 0px 0px;
  overflow: hidden;
  list-style: none;
  position: relative;
}

@media screen and (max-width: 768px) {
  .technology .skills-list {
    grid-template-columns: repeat(1, minmax(140px, 200px));
  }
}

.skills-list-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .skills-list-wrapper {
    align-items: center;
  }
}

.skills-list-wrapper p {
  color: white;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 18px;
  text-align: left;
}

.skills-list-wrapper p::before {
  content: "▹";
  text-align: center;
  position: absolute;
  left: 0%;
  color: var(--color-primary);
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .skills-list-wrapper p::before {
    display: none;
  }
}

.animate-first {
  transition: all 0.6s;
}

.op {
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */