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

:root {
  font-size: 18px;
  --color-text: #fff;
  --color-bg: #131417;
  --color-link: #aaa;
  --color-link-hover: #fff;
  --color-label: #adadad;
  --color-text-alt: #bbbbbb;
  --color-caption: #fff;
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "tenon", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: '';
  position: fixed;
  z-index: 1000;
}

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}

/* Final modal override: bigger description area and reliable internal scroll */
.carouselContainer .containerImage {
  height: 32% !important;
}

.carouselContainer .informCard {
  height: 68% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.carouselContainer .informCard h1 {
  flex: 0 0 auto !important;
  height: auto !important;
}

.carouselContainer .slideLinks {
  flex: 0 0 auto !important;
  height: auto !important;
}

.carouselContainer .informCard > p,
.carouselContainer .informCard > .reconnect {
  display: block !important;
  flex: 1 1 auto !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch;
}

/* Project modal: bigger description area + scroll only inside description */
.carouselContainer .containerImage {
  height: 42% !important;
}

.carouselContainer .informCard {
  height: 58% !important;
  overflow: hidden;
}

.carouselContainer .informCard > p,
.carouselContainer .informCard > .reconnect {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  pointer-events: auto;
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  cursor: pointer;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
  /* Provide a fallback style for browsers
	 that don't support :focus-visible */
  outline: none;
  background: lightgrey;
}

a:focus:not(:focus-visible) {
  /* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
  background: transparent;
}

a:focus-visible {
  /* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
  outline: 2px solid red;
  background: transparent;
}

main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.unbutton:focus {
  outline: none;
}

.frame {
  position: relative;
  width: 100%;
  padding: 1rem;
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: 'title' 'prev' 'sponsor' 'demos';
  grid-gap: 0.5rem;
  justify-items: start;
  align-self: start;
  justify-self: start;
  pointer-events: none;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

body #cdawrap {
  justify-self: start;
}

.frame a {
  pointer-events: auto;
}

.frame a:not(.frame__title-back) {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.frame a:not(.frame__title-back)::before {
  content: '';
  height: 1px;
  width: 100%;
  background: currentColor;
  position: absolute;
  top: 90%;
  transition: transform 0.3s;
  transform-origin: 0% 50%;
}

.frame a:not(.frame__title-back):hover::before {
  transform: scaleX(0);
  transform-origin: 100% 50%;
}

.frame__title {
  grid-area: title;
  display: flex;
}

.frame__title-main {
  font-size: inherit;
  margin: 0;
  font-weight: inherit;
}

.frame__title-back {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.frame__title-back span {
  display: none;
}

.frame__title-back svg {
  fill: currentColor;
}

.frame__prev {
  grid-area: prev;
}

.project {
  padding: 1rem;
  max-width: 1000px;
  margin: 0vh 20vh auto;
  display: grid;
  grid-column-gap: 7vw;
  grid-row-gap: 0.5rem;
}

.project--intro {
  grid-template-columns: 1fr;
  grid-template-areas: 'label-name'
    'name'
    'label-date'
    'date'
    'title'
    'label-mission'
    'mission';

}

.project--details {
  grid-template-columns: auto 1fr;
}

.project--details .project__label--default {
  grid-column: 1;
}

.project--details p {
  grid-column: 2;
}

.project--left {
  justify-content: start;
}

.project--right {
  justify-content: end;
}

.project--details p {
  max-width: 100%;
  line-height: 1.8;
}

.project__label--default {
  letter-spacing: 0.15em;
  font-weight: 300;
}

.project p {
  line-height: 1.4;
  margin: 0;
  color: var(--color-text-alt);
}

.project__label {
  color: var(--color-label);
}

.project__label--name {
  grid-area: label-name;
}

.project__label--date {
  grid-area: label-date;
}

.project__label--mission {
  grid-area: label-mission;
}

.project__name {
  grid-area: name;
}

.project__date {
  grid-area: date;
}

.project__mission {
  grid-area: mission;
  line-height: 1.4;
}

.project__mission p:first-child {
  grid-area: p1;
}

.project__mission p:child {
  grid-area: p2;
}

.project__mission p {
  color: var(--color-text-alt);
}

.project__title {
  grid-area: title;
  font-size: clamp(2rem, 13vw, 8rem);
  font-weight: 400;
  margin: 10vh 0;
  line-height: 1;
}

.project__heading {
  color: var(--color-label);
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40vh auto;
  overflow: hidden;
}

.gallery-wrap--auto {
  height: auto;
}

.gallery-wrap--large {
  height: 110vh;
}

.gallery-wrap--dense {
  margin: 0;
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}

.gallery--breakout {
  width: min-content;
}

.gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  border-radius: 6px;
  position: relative;
  filter: brightness(1);
}

.gallery__item--height {
  /* min-height: 800px !important; */
  height: 800px !important;
}

.gallery__item_border {
  border: 2px solid #ffffffbb;
  box-shadow: 2px 2px 10px 10px #00000044;
}

.gallery__item-cut {
  overflow: hidden;
  display: grid;
  place-items: center;
}

.gallery__item-inner {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.caption {
  font-size: clamp(1rem, 3vw, 1.75rem);
  z-index: 101;
  color: var(--color-caption);
  font-weight: 500;
}

.description-container {
  padding: 3rem 40px;
  white-space: normal;
  max-width: 1400px;
  width: 100%;
}

.description-container p {
  font-size: 1.15rem;
}

.description-container p b {
  display: inline-block;
  margin-top: 0.6em;
}

.description-container p b:first-child {
  margin-top: 0;
}

.gallery--row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  --size-factor: 1.25;
  --item-height: 20vh;
}

.gallery--row .gallery__item {
  width: auto;
  aspect-ratio: 2 / 3;
}

.gallery--row .gallery__item--s {
  height: var(--item-height);
}

.gallery--row .gallery__item--m {
  height: calc(var(--size-factor) * var(--item-height));
}

.gallery--row .gallery__item--l {
  height: calc(var(--size-factor) * 2 * var(--item-height));
}

.gallery--row .gallery__item--xl {
  z-index: 100;
  height: calc(var(--size-factor) * 3 * var(--item-height));
}

.gallery--switch.gallery--row .gallery__item--m,
.gallery--switch.gallery--row .gallery__item--l {
  height: var(--item-height);
}

.gallery--row .caption {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -50vh;
  left: 0;
  padding: 4.5vw;
  max-width: 730px;
  opacity: 0;
}

.gallery--switch.gallery--row .caption {
  bottom: 0;
  opacity: 1;
}

.gallery--one {
  display: grid;
  place-items: center;
}

.gallery--one .gallery__item {
  width: 400%;
  height: 400%;
  filter: brightness(1) hue-rotate(-90deg);
}

.gallery--switch.gallery--one .gallery__item {
  width: 100%;
  height: 100%;
  filter: brightness(0.7) hue-rotate(0deg);
}

.gallery--one .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  font-size: clamp(2rem, 5vw, 3rem);
  display: grid;
  place-items: center;
}

.gallery--switch.gallery--one .caption {
  margin-top: -50vh;
}

.gallery--grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  row-gap: 2.5vw;
  column-gap: 3vw;
}

.gallery--grid .gallery__item {
  height: 33vh;
  width: 33vw;
}

.gallery--switch.gallery--grid {
  gap: 0;
}

.gallery--switch.gallery--grid .gallery__item {
  height: 110vh;
  width: 110vw;
  filter: brightness(0.65);
}

.gallery--grid .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  padding: 0;
  top: 50%;
  left: 50%;
  margin-top: 50vh;
  margin-left: -50vw;
  display: grid;
  place-items: center;
  max-width: none;
  opacity: 0;
}

.gallery--switch.gallery--grid .caption {
  margin-top: -40vh;
  opacity: 1;
}

.gallery--grid .caption p {
  padding: 50vh 30vw 10vh 10vw;
}

.gallery--switch.gallery--grid .caption p {
  margin-top: 0;
}

.gallery--stack {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: start;
  gap: 2rem;
  padding: 2rem;
  --offset: 1rem;
}

.gallery--stack .gallery__item {
  border-radius: 1.5vw;
  width: 25vw;
  height: 35vw;
  z-index: 1;
}

.gallery--stack-glass .gallery__item {
  filter: opacity(1);
}

.gallery--switch.gallery--stack .gallery__item {
  grid-area: 1 / 1 / 2 / 2;
}

.gallery--stack .caption {
  position: absolute;
  top: 30%;
  left: 100vw;
  width: 100vw;
  padding: 5vw;
  transform: translateY(-50%);
  color: var(--color-text-alt);
  opacity: 0;
  z-index: 0;
}

.gallery--stack .caption p {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.gallery--switch.gallery--stack .caption {
  left: 0;
  opacity: 1;
}

.gallery--stack-inverse .gallery__item:nth-child(5) {
  z-index: 2;
}

.gallery--stack-inverse .gallery__item:nth-child(4) {
  z-index: 3;
}

.gallery--stack-inverse .gallery__item:nth-child(3) {
  z-index: 4;
}

.gallery--stack-inverse .gallery__item:nth-child(2) {
  z-index: 5;
}

.gallery--stack-inverse .gallery__item:nth-child(1) {
  z-index: 6;
}

.gallery--switch.gallery--stack .gallery__item:nth-child(2) {
  margin-left: var(--offset);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(3) {
  margin-left: calc(var(--offset) * 2);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(4) {
  margin-left: calc(var(--offset) * 3);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(5) {
  margin-left: calc(var(--offset) * 4);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(6) {
  margin-left: calc(var(--offset) * 5);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(2) {
  filter: brightness(0.8);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(3) {
  filter: brightness(0.7);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(4) {
  filter: brightness(0.6);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(5) {
  filter: brightness(0.5);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(6) {
  filter: brightness(0.4);
}

.gallery--switch.gallery--stack-glass .gallery__item {
  opacity: 0.7;
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(2) {
  transform: scale(0.98);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(3) {
  transform: scale(0.96);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(4) {
  transform: scale(0.94);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(5) {
  transform: scale(0.92);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(6) {
  transform: scale(0.9);
}

.gallery--gridtiny {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 300%;
  padding: 0 2vh;
  height: min-content;
  gap: 1vh;
}

.gallery--switch.gallery--gridtiny {
  width: 100%;
  gap: 2vh;
}

.gallery--gridtiny .gallery__item {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  filter: contrast(0.8) saturate(0) brightness(0.6) opacity(1);
}

.gallery--switch.gallery--gridtiny .gallery__item {
  filter: contrast(1) saturate(1) brightness(0.8) opacity(0.8);
}

.gallery--gridtiny .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 50%;
  top: 50%;
  margin: -50vh 0 0 -50vw;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 8vw, 4rem);
  opacity: 0;
}

.gallery--switch.gallery--gridtiny .caption {
  opacity: 1;
}

.gallery--switch .gallery__item--center {
  height: 100vh;
  width: 100vw;
  aspect-ratio: auto;
  filter: brightness(0.5);
}

.gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  justify-content: center;
  align-content: center;
}

.gallery--switch.gallery--bento {
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 15vh;
}

.gallery--bento .gallery__item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}

.gallery--bento .gallery__item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.gallery--bento .gallery__item:nth-child(3) {
  grid-area: 2 / 2 / 4 / 3;
}

.gallery--bento .gallery__item:nth-child(4) {
  grid-area: 1 / 3 / 3 / 3;
}

.gallery--bento .gallery__item:nth-child(5) {
  grid-area: 3 / 1 / 3 / 2;
}

.gallery--bento .gallery__item:nth-child(6) {
  grid-area: 3 / 3 / 5 / 4;
}

.gallery--bento .gallery__item:nth-child(7) {
  grid-area: 4 / 1 / 5 / 2;
}

.gallery--bento .gallery__item:nth-child(8) {
  grid-area: 4 / 2 / 5 / 3;
}

.gallery--bento .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  font-size: clamp(2rem, 10vw, 5rem);
  display: grid;
  place-items: center;
}

.gallery--switch.gallery--bento .caption {
  margin-top: -50vh;
}

.gallery--grid10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.gallery--padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gallery--switch.gallery--grid10 {
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: 1fr 60vh 1fr;
  grid-gap: 0;
}

.gallery--switch.gallery--grid10 .gallery__item {
  grid-area: 2 / 2 / 3 / 3;
}

.gallery--grid10 .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 8vw, 6rem);
}

.gallery--switch.gallery--grid10 .caption {
  opacity: 1;
  margin-top: -50vh;
}

@media screen and (min-width: 53em) {
  .frame {
    grid-template-columns: auto auto auto 1fr;
    grid-template-areas: 'title prev ... sponsor';
    align-content: space-between;
    justify-items: start;
    grid-gap: 2rem;
  }

  .frame__demos {
    justify-self: end;
  }

  .project--intro {
    grid-template-columns: auto 1fr;
    grid-template-areas: 'label-name name'
      'label-date date'
      'title title'
      'label-mission mission';

  }

  .project--details {
    grid-template-areas: 'label-default paragraph';
    grid-template-columns: auto auto;
  }

  .project__label {
    text-align: right;
  }

  .project__mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 'p1 ...' '... p2';
    column-gap: 2rem;
  }

  .gallery--grid10 {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .gallery--grid10:not(.gallery--switch) .pos-1 {
    grid-area: 1 / 1;
  }

  .gallery--grid10:not(.gallery--switch) .pos-2 {
    grid-area: 1 / 2;
  }

  .gallery--grid10:not(.gallery--switch) .pos-3 {
    grid-area: 1 / 4;
  }

  .gallery--grid10:not(.gallery--switch) .pos-4 {
    grid-area: 1 / 5;
  }

  .gallery--grid10:not(.gallery--switch) .pos-5 {
    grid-area: 3 / 7;
  }

  .gallery--grid10:not(.gallery--switch) .pos-6 {
    grid-area: 1 / 7;
  }

  .gallery--grid10:not(.gallery--switch) .pos-7 {
    grid-area: 1 / 9;
  }

  .gallery--grid10:not(.gallery--switch) .pos-8 {
    grid-area: 3 / 10;
  }

  .gallery--grid10:not(.gallery--switch) .pos-9 {
    grid-area: 2 / 8;
  }

  .gallery--grid10:not(.gallery--switch) .pos-10 {
    grid-area: 4 / 9;
  }

  .gallery--grid10:not(.gallery--switch) .pos-11 {
    grid-area: 3 / 8;
  }

  .gallery--grid10:not(.gallery--switch) .pos-12 {
    grid-area: 2 / 2;
  }

  .gallery--grid10:not(.gallery--switch) .pos-13 {
    grid-area: 3 / 1;
  }

  .gallery--grid10:not(.gallery--switch) .pos-14 {
    grid-area: 3 / 4;
  }

  .gallery--grid10:not(.gallery--switch) .pos-15 {
    grid-area: 4 / 3;
  }

  .gallery--grid10:not(.gallery--switch) .pos-16 {
    grid-area: 4 / 7;
  }

  .gallery--stack .caption {
    bottom: 40%;
    width: 60vw;
    max-width: 800px;
  }

  .gallery--switch.gallery--stack .caption {
    left: 40vw;
  }

  body #cdawrap {
    justify-self: end;
  }
}

/* ============= canvas ============= */

#myWork,
#myWorkTitle {
  height: 100%;
  width: 100%
}

#myWorkTitle,
.principles h1 {
  font-family: "Chakra Petch", sans-serif
}


#h1Animation span,
#workMe,
.links {
  color: #2bdefd
}

#ViewMyWork {
  background-color: #252934;
}

#canvas {
  background-image: radial-gradient(circle, #202b3a 0%, #0d1014 100%);
}

#ViewMyWork,
#h1Animation {
  left: 300px;
  z-index: 30000
}



@media (min-width:1367px) and (max-width:1800px) {
  #myWork {
    padding: 0
  }

  .containerPrinciples {
    gap: 30px
  }

  .principles {
    width: 300px;
    height: 300px
  }

  .principles img {
    width: 80px
  }

  .principles p {
    width: 290px;
    height: 90px;
    padding: 0;
    text-align: center;
    text-wrap: wrap
  }

  .containerMyWork {
    height: 900px;
    padding: 0 70px
  }

  .myWorkLeft {
    height: 400px
  }

  .myWorkLeft img {
    width: 400px
  }

  .containerRight {
    padding: 0 20px
  }

  .links {
    font-size: 16px
  }

  .contentLinks ul li,
  .contentLinks ul li span {
    font-size: 20px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:1200px) and (max-width:1366px) {
  #myWork {
    padding: 0
  }

  .containerPrinciples {
    gap: 30px
  }

  .principles {
    justify-content: center;
    width: 300px;
    height: 300px
  }

  .principles img {
    width: 80px
  }

  .principles p {
    width: 290px;
    height: 90px;
    padding: 0;
    text-wrap: wrap
  }

  .containerMyWork {
    height: 900px;
    padding: 0 30px
  }

  .myWorkLeft {
    height: 400px
  }

  .myWorkLeft img {
    width: 400px
  }

  .containerRight {
    padding: 0 20px
  }

  .links {
    font-size: 14px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:1001px) and (max-width:1200px) {
  #myWork {
    padding: 0
  }

  .containerPrinciples {
    gap: 30px
  }

  .principles {
    justify-content: center;
    width: 300px;
    height: 300px
  }

  .principles img {
    width: 80px
  }

  .principles p {
    width: 290px;
    height: 90px;
    padding: 0;
    text-wrap: wrap
  }

  .containerMyWork {
    height: 800px
  }

  .myWorkLeft {
    height: 400px
  }

  .myWorkLeft img {
    width: 400px
  }

  .containerRight {
    padding: 0 20px
  }

  .links {
    font-size: 14px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:801px) and (max-width:1000px) {
  #myWork {
    gap: 0;
    padding: 60px
  }

  #myWorkTitle {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 34px
  }

  .containerPrinciples {
    flex-direction: column;
    padding: 30px 80px;
    gap: 40px
  }

  .principles {
    width: 100%;
    gap: 10px
  }

  .principles img {
    width: 80px
  }

  .principles h1 {
    padding: 0;
    font-size: 28px
  }

  .principles p {
    width: 100%;
    padding: 0;
    font-size: 22px
  }

  .containerMyWork {
    flex-direction: column
  }

  .myWorkLeft {
    width: 100%
  }

  .myWorkLeft img {
    width: 80%;
    height: 80%;
    padding: 100px 0 10px
  }

  .myWorkRight {
    width: 100%;
    height: 800px;
    padding: 10px 5px
  }

  .containerRight {
    padding: 0
  }

  .links {
    font-size: 23px
  }

  .links::after {
    height: 1px
  }

  .contentLinks ul li span {
    font-size: 20px
  }

  .contentLinks ul li {
    font-size: 22px;
    text-align: center
  }

  #upArrow {
    padding: 7px;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:601px) and (max-width:800px) {
  #myWork {
    gap: 0;
    padding: 60px
  }

  #myWorkTitle {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px
  }

  .containerPrinciples {
    flex-direction: column;
    padding: 30px 5px;
    gap: 40px
  }

  .principles {
    width: 100%;
    gap: 10px
  }

  .principles img {
    width: 70px
  }

  .principles h1 {
    padding: 0;
    font-size: 22px
  }

  .principles p {
    width: 100%;
    padding: 0;
    font-size: 16px
  }

  .containerMyWork {
    flex-direction: column
  }

  .myWorkLeft {
    width: 100%
  }

  .myWorkLeft img {
    width: 80%;
    height: 80%;
    padding: 100px 0 10px
  }

  .myWorkRight {
    width: 100%;
    height: 800px;
    padding: 10px 5px
  }

  .containerRight {
    padding: 0
  }

  .links {
    font-size: 18px
  }

  .links::after {
    height: 1px
  }

  .contentLinks ul li span {
    font-size: 16px;
    font-weight: 600
  }

  .contentLinks ul li {
    font-size: 20px;
    text-align: center
  }

  #upArrow {
    padding: 7px;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@keyframes fade {
  0% {
    transform: translate(0, 300px) scale(.5);
    opacity: 0
  }

  50% {
    transform: translate(0, 600px) scale(.5);
    opacity: 0
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1 !important
  }
}


#canvas {
  position: relative
}


#ViewMyWork {
  text-align: center;
}

.card,
.contentCard {
  width: 400px;
  height: 400px;
  display: flex
}

#projects {
  background-color: #f5f5f5;
  color: #444649;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 200px 200px;
  clip-path: polygon(0 0, 100% 0, 100% 97%, 50% 100%, 0 97%)
}

#projectsTitle {
  font-size: 40px;
  font-weight: 600;
  color: #444649;
  width: 100%;
  height: 100%;
  padding: 100px 0;
  text-align: center
}

#containerProjects {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%
}

.card {
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.carouselBtnClose:hover,
.carouselBtnNext:hover,
.carouselBtnPrev:hover,
.contentCard:hover,
.opacityOn {
  opacity: 1
}

.navOpacityOff,
.opacityOff,
[data-animate] {
  opacity: 0
}

.contentCard {
  background: #f5f5f5;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px
}

.carouselSlide {
  background-repeat: no-repeat;
  background-position: center
}

#upArrow,
.btnCard,
.links {
  cursor: pointer
}


.btnCard,
.card h1,
.card p {
  transition: transform .5s, opacity .5s;
  opacity: 0
}

.card h1 {
  font-size: 25px
}

.contentCard:hover .btnCard,
.contentCard:hover h1,
.contentCard:hover p {
  transform: translateY(0);
  opacity: 1
}

.card p {
  font-size: 14px
}

.informCard h1,
.informCard p {
  color: #444649;
  transform: translateY(0)
}

.btnCard {
  transform: translateY(100px);
  border: 3px solid #2bdefd;
  padding: 10px 30px;
  font-size: 15px;
  color: #000
}

.btnCard:hover {
  background-color: #2bdefd;
  color: #fff
}

.carouselContainer {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, .9);
  z-index: 2147483647 !important;
  padding: 80px 400px;
  overflow: hidden;
  pointer-events: auto;
}

html.overflowOff,
body.overflowOff,
html.carouselOpen,
body.carouselOpen {
  overflow: hidden !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

body.carouselOpen #projects {
  clip-path: none !important;
}

.overflowOn {
  overflow: auto
}

.overflowOff {
  overflow: hidden
}

.navDisplayOff {
  display: none
}

.slideOn {
  transform: translate3d(0, -100px, 0)
}

.carouselContent {
  position: relative;
  width: 100%;
  height: 100%;
  animation: .2s forwards carouselOpen;
}

.carouselSlides {
  width: 100%;
  height: 100%;
  gap: 0;
  padding: 0
}

.containerImage {
  height: 60%;
  background-color: #ffffffdd;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 20px;
  border-radius: 4px;
}

.carouselSlide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-size: contain;
  width: 100%;
  height: 100%
}

.carouselBtnNext,
.carouselBtnPrev {
  background-image: linear-gradient(to bottom, transparent, transparent, #f5f5f555, transparent, transparent);
  border: none;
  opacity: .5;
  height: 200px;
  background-color: transparent;
  position: absolute;
  cursor: pointer
}

.carouselBtnNext {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  right: 0
}

.carouselBtnPrev {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  left: 0
}

.informCard {
  align-items: center;
  width: 100%;
  background-color: #ffffffdd;
  padding: 2px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 1;
  height: 40%
}

.informCard p,
.slideLinks {
  padding: 20px;
  display: flex
}

.informCard h1 {
  font-size: 30px;
  opacity: 1;
  display: flex;
  justify-content: center;
  height: 25%
}

.separete {
  width: 100%;
  height: 3px;
  background-color: #444649
}

.informCard p {
  font-family: Raleway, sans-serif;
  font-weight: 200;
  font-size: 100%;
  align-items: center;
  text-align: justify;
  opacity: 1;
  width: 90%;
  height: 40%
}

.slideLinks {
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 20%
}

.slideLinks a {
  border: 3px solid #594dff;
  width: 200px;
  height: 40px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #594dff;
  color: #fff
}

.slideLinks a:hover {
  border: 1px solid #594dff;
  background-color: transparent;
  color: #594dff;
  font-weight: 900
}

.carouselBtnClose {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  opacity: .5;
  cursor: pointer
}


@media (min-width:1600px) and (max-width:1919px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 180px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 380px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:1536px) and (max-width:1599px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 160px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1440px) and (max-width:1535px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 150px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1366px) and (max-width:1439px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 100px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1280px) and (max-width:1365px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 100px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1080px) and (max-width:1279px) {

  .containerImage,
  .informCard {
    background-color: #ffffffff
  }

  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 150px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 80%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:720px) and (max-width:1079px) {

  .containerImage,
  .informCard {
    background-color: #ffffffff
  }

  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 95%;
    height: 50%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    height: 10%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:640px) and (max-width:719px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 60%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }
}

@media (min-width:480px) and (max-width:639px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

}

@media (min-width:426px) and (max-width:479px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }

}

@media (min-width:414px) and (max-width:425px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:375px) and (max-width:413px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:360px) and (max-width:374px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 30%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 70%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }

}

@media (max-width:359px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 30%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 70%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

#contact {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

#aboutMe,
.containerContact {
  flex-direction: column;
  display: flex
}

.sobre-min span {
  color: #d7f9ff98;
  font-size: 45px
}

.titleContactLeft {
  color: #d7f9ff;
  font-size: 40px
}

#workMe {
  font-size: 20px
}

.containerContact {
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: space-evenly;
  color: #d7f9ff
}

.containerIcons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px
}

.containerIcons img:hover {
  animation: .5s ease-out forwards iconContact
}

@keyframes iconContact {
  50% {
    padding: 0 5px 10px;
    border-radius: 5px;
    filter: drop-shadow(-5px 15px 1px #2bddfd79)
  }
}

.emailPhoneContainer {
  height: 100%;
  width: 60%;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-around
}

.iconSocialMediaContainer {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start
}

.containerContact p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d7f9ff
}

.inconContact {
  width: 2rem;
  margin: 1rem
}

#download {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  background: linear-gradient(to bottom, #2bfdbe, #2bfdbe);
  color: #232323;
  clip-path: polygon(0 100%, 0 0, 100% 0, 100% 50%, 90% 100%);
  font-weight: 900;
  height: 50px;
  width: 250px;
  font-size: 22px
}

#download::before {
  content: "";
  background: linear-gradient(to bottom, #2bddfd, #106f80);
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform .3s;
  transform-origin: left;
  transform: scaleX(0)
}

#download:hover::before {
  transform-origin: left;
  transform: scaleX(1)
}

#download img {
  width: 22px
}

.copyright {
  width: 100%;
  padding: 25px 0;
  background: #363636;
  font-weight: 300;
  margin-top: 20px
}

.copyright p {
  color: #d3d3d3
}

#card1 {
  background: url(../img/slides/slide-1/capa.webp) center center/cover no-repeat
}

#card2 {
  background: url(../img/slides/slide-2/capa.webp) center center/cover no-repeat
}

#card3 {
  background: url(../img/slides/slide-3/capa.webp) center center/cover no-repeat
}

#card4 {
  background: url(../img/slides/slide-4/capa.webp) center center/cover no-repeat
}

#card5 {
  background: url(../img/slides/slide-5/capa.webp) center center/cover no-repeat
}

#card6 {
  background: url(../img/slides/slide-6/capa.webp) center center/cover no-repeat
}

#slide1-1 {
  background-image: url(../img/slides/slide-1/1.webp)
}

#slide1-2 {
  background-image: url(../img/slides/slide-1/2.webp)
}

#slide1-3 {
  background-image: url(../img/slides/slide-1/3.webp)
}

#slide2-1 {
  background-image: url(../img/slides/slide-2/1.webp)
}

#slide2-2 {
  background-image: url(../img/slides/slide-2/2.webp)
}

#slide2-3 {
  background-image: url(../img/slides/slide-2/3.webp)
}

#slide3-1 {
  background-image: url(../img/slides/slide-3/1.webp)
}

#slide3-2 {
  background-image: url(../img/slides/slide-3/2.webp)
}

#slide3-3 {
  background-image: url(../img/slides/slide-3/3.webp)
}

#slide4-1 {
  background-image: url(../img/slides/slide-4/1.webp)
}

#slide4-2 {
  background-image: url(../img/slides/slide-4/2.webp)
}

#slide4-3 {
  background-image: url(../img/slides/slide-4/3.webp)
}

#slide5-1 {
  background-image: url(../img/slides/slide-5/1.webp)
}

#slide5-2 {
  background-image: url(../img/slides/slide-5/2.webp)
}

#slide5-3 {
  background-image: url(../img/slides/slide-5/3.webp)
}

#slide6-1 {
  background-image: url(../img/slides/slide-6/1.webp)
}

#slide6-2 {
  background-image: url(../img/slides/slide-6/2.webp)
}

#slide6-3 {
  background-image: url(../img/slides/slide-6/3.webp)
}

@keyframes slide {
  0% {
    transform: scale(.5)
  }

  50% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }
}

.iconWpp {
  width: 90px;
  bottom: 30px;
  left: 10px;
  font-size: 40px;
  cursor: pointer;
  animation: 2s ease-out infinite myMovieYoda
}

#containerYodaSMS:hover,
.iconWpp:hover {
  opacity: 1;
  scale: 1.1
}

.copyrightWppImg {
  animation: 2s ease-out infinite myMovieYodaCP
}

.copyrightWppContainer {
  bottom: 170px !important
}

#containerYodaSMS {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  background-color: #faebd7;
  width: 270px;
  height: 50px;
  bottom: 90px;
  left: 25px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 30% 75%, 25% 100%, 25% 75%, 0% 75%)
}

#yodaSMS {
  font-size: 15px;
  padding: 9px 2px 20px 15px;
  color: #000
}

#closeYodaSMS {
  display: flex;
  cursor: pointer;
  font-size: 25px;
  font-weight: 800;
  color: #000;
  padding: 3px 9px 10px 0;
  opacity: .5;
  transform: translateY(-5px);

}

#closeYodaSMS:hover {
  text-shadow: -2px 2px 2px rgba(0, 0, 0, .363);
  color: #000;
  opacity: 1
}

@keyframes myMovieYoda {

  0%,
  100% {
    bottom: 10px
  }

  50% {
    bottom: 0
  }
}

@keyframes myMovieYodaCP {

  0%,
  100% {
    bottom: 90px
  }

  50% {
    bottom: 80px
  }
}

@media (min-width:361px) and (max-width:600px) {
  #myWork {
    padding: 0;
    gap: 0
  }

  #myWorkTitle {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px
  }

  .containerPrinciples {
    flex-direction: column;
    padding: 30px 5px;
    gap: 40px
  }

  .principles {
    width: 100%;
    gap: 10px
  }

  .principles img {
    width: 70px
  }

  .principles h1 {
    padding: 0;
    font-size: 22px
  }

  .principles p {
    width: 100%;
    padding: 0;
    font-size: 16px
  }

  .containerMyWork {
    flex-direction: column
  }

  .myWorkLeft {
    width: 100%;
    align-items: center
  }

  .myWorkLeft img {
    width: 80%;
    height: 80%;
    padding: 50px 0 0
  }

  .myWorkRight {
    width: 100%;
    height: 950px;
    padding: 10px 5px
  }

  .containerRight {
    padding: 0
  }

  .links {
    font-size: 13px
  }

  .links::after {
    height: 1px
  }

  .contentLinks ul li span {
    font-size: 16px;
    font-weight: 600
  }

  .contentLinks ul li {
    text-align: center
  }

  #upArrow {
    padding: 7px;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px
  }

  .iconWpp {
    width: 60px;
    left: 2px
  }

  #containerYodaSMS {
    width: 140px;
    bottom: 60px;
    left: 5px;
    z-index: 2000
  }

  #yodaSMS {
    font-size: 10px;
    padding: 9px 2px 0 14px
  }

  #closeYodaSMS {
    font-size: 15px
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }
}

body {
  background: #0d1014;
  color: #d7f9ff;
  overflow-x: hidden;
  overflow: auto
}

#mouseLight {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 30990;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0) translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(93, 138, 236, 0.26), rgba(119, 138, 221, 0.04) 45%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  filter: blur(18px);
  transition: opacity .16s linear;
}

body.mouse-light-active #mouseLight {
  opacity: 0.9;
}

@media (hover:none) and (pointer:coarse) {
  #mouseLight {
    display: none;
  }
}

#init {
  opacity: 0;
  width: 100%;
  height: 0
}

#canvas {
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: crosshair
}

#h1Animation {
  top: 20%;
  position: absolute;
  gap: 4rem;
  font-size: 60px;
  width: 100%
}

#ViewMyWork {
  font-family: "Chakra Petch", sans-serif;
  font-size: 30px
}

#ViewMyWork {
  border: 2px solid #fff;
  top: 45%;
  color: #fff;
  padding: 10px 20px;
  width: 500px;
  height: auto;
  position: absolute;
  cursor: pointer
}

#ViewMyWork:hover {
  color: #fff;
  background-color: #2bdefd;
  border: 2px solid #2bdefd
}

.menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border: 1px solid #ffffff00;
  border-radius: 999px;
  background: #252934d9;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  z-index: 33000;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
  transition: transform .35s ease, background-color .3s ease, border-color .3s ease;
}

.menu-toggle:hover {
  background: rgba(43, 222, 253, .18);
  border-color: rgba(43, 222, 253, .7);
}

.menu-toggle__line {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .35s ease, opacity .2s ease;
}

.menu-toggle.is-open .menu-toggle__line:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  z-index: 32500;
  transition: opacity .3s ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.quick-menu {
  position: fixed;
  top: 18px;
  right: 18px;
  width: min(310px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 84px 14px 14px;
  border-radius: 24px;
  border: 1px solid rgba(43, 222, 253, .25);
  background: linear-gradient(165deg, rgba(30, 34, 44, .96), rgba(19, 20, 23, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px) scale(.98);
  pointer-events: none;
  z-index: 32600;
  transition: opacity .35s ease, transform .35s ease;
}

.quick-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.quick-menu__link {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #d7f9ff;
  font-family: "Chakra Petch", sans-serif;
  font-size: 15px;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background-color .25s ease, border-color .25s ease, transform .2s ease;
}

.quick-menu__link:hover {
  background: rgba(43, 222, 253, .15);
  border-color: rgba(43, 222, 253, .45);
  transform: translateX(4px);
}

@media (max-width:640px) {
  .menu-toggle {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .quick-menu {
    top: 10px;
    right: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 18px;
    padding-top: 72px;
  }
}

#upArrow {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 32000;
  width: 52px;
  height: 52px;
  border: 2px solid #2bdefd;
  border-radius: 999px;
  background: rgba(37, 41, 52, .9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Chakra Petch", sans-serif;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .35);
  transition: opacity .35s ease, transform .35s ease, background-color .25s ease, border-color .25s ease;
}

#upArrow:hover {
  background: #2bdefd;
  border-color: #2bdefd;
}

#upArrow.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

@media (min-width:4097px) and (max-width:6400px) {
  #h1Animation {
    top: 400px;
    font-size: 120px;
    left: 500px
  }

  #ViewMyWork {
    left: 500px;
    top: 900px;
    width: 600px;
    font-size: 40px;
    height: 90px
  }
}

@media (min-width:3200px) and (max-width:4096px) {
  #h1Animation {
    top: 400px;
    font-size: 90px;
    left: 500px
  }

  #ViewMyWork {
    left: 500px;
    top: 700px;
    width: 500px;
    font-size: 30px;
    height: 80px
  }
}

@media (min-width:1367px) and (max-width:1920px) {

  #canvas,
  #introduction {
    width: 100%;
    height: 100vh
  }

  #h1Animation {
    top: 200px;
    left: 200px;
    padding: 0;
    font-size: 40px;
    margin: 0;
    width: 80%
  }

  #introduction {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0
  }

  #ViewMyWork {
    top: 340px;
    left: 200px;
    width: 400px;
    font-size: 15px;
    height: 45px
  }

}

@media (min-width:1200px) and (max-width:1366px) {

  #ancorIntroduction,
  #h1Animation {
    left: 100px;
    width: 80%;
    padding: 0;
    margin: 0
  }

  #ancorIntroduction,
  #introduction {
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0
  }

  #canvas {
    width: 100%;
    height: 100vh
  }

  #h1Animation {
    top: 100px;
    font-size: 40px;
    text-align: start
  }

  #introduction {
    justify-content: center;
    width: 100%
  }

  #ancorIntroduction {
    top: 240px;
    justify-content: start;
    text-align: center;
    position: absolute
  }

  #ViewMyWork {
    top: 0;
    left: 0;
    width: 300px;
    font-size: 20px;
    position: relative;
    height: 50px
  }
}

@media (min-width:992px) and (max-width:1199px) {

  #ancorIntroduction,
  #h1Animation {
    left: 80px;
    width: 80%;
    padding: 0;
    margin: 0
  }

  #ancorIntroduction,
  #introduction {
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0
  }

  #canvas {
    width: 100%;
    height: 100vh
  }

  #h1Animation {
    top: 80px;
    font-size: 40px
  }

  #introduction {
    justify-content: center;
    width: 100%
  }

  #ancorIntroduction {
    top: 200px;
    text-align: center;
    position: absolute
  }

  #ViewMyWork {
    top: 0;
    left: 0;
    width: 270px;
    font-size: 20px;
    position: relative;
    height: 50px
  }
}

@media (min-width:768px) and (max-width:991px) {

  #ancorIntroduction,
  #introduction {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0
  }

  #canvas {
    width: 100%;
    height: 100vh
  }

  #h1Animation {
    top: 200px;
    left: 0;
    font-size: 55px;
    text-align: center;
    padding: 20px;
    margin: 0;
    width: 100%
  }

  #introduction {
    justify-content: center
  }

  #ancorIntroduction {
    top: 500px;
    justify-content: center;
    text-align: center;
    position: absolute
  }

  #ViewMyWork {
    top: 0;
    left: 0;
    width: 380px;
    font-size: 25px;
    position: relative;
    height: 50px
  }
}

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

  #ancorIntroduction,
  #introduction {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0
  }

  #canvas {
    width: 100%;
    height: 100vh
  }

  #h1Animation {
    top: 200px;
    left: 0;
    font-size: 40px;
    text-align: center;
    padding: 20px;
    margin: 0;
    width: 100%
  }

  #introduction {
    justify-content: center
  }

  #ancorIntroduction {
    top: 500px;
    justify-content: center;
    text-align: center;
    position: absolute
  }

  #ViewMyWork {
    top: 0;
    left: 0;
    width: 300px;
    height: 50px;
    font-size: 20px;
    position: relative
  }
}



@media (min-width:481px) and (max-width:600px) {

  #ancorIntroduction,
  #introduction {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0;
    margin: 0
  }

  #canvas {
    width: 100%;
    height: 100vh
  }

  #h1Animation {
    top: 200px;
    left: 0;
    font-size: 40px;
    text-align: center;
    padding: 20px;
    margin: 0;
    width: 100%
  }

  #introduction {
    justify-content: center
  }

  #ancorIntroduction {
    top: 500px;
    justify-content: center;
    text-align: center;
    position: absolute
  }

  #ViewMyWork {
    top: 0;
    left: 0;
    width: 250px;
    height: 50px;
    font-size: 15px;
    position: relative
  }

}

@media (min-width:361px) and (max-width:480px) {

  #ancorIntroduction,
  #canvas,
  #introduction {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0
  }

  #h1Animation {
    top: 200px;
    left: 0;
    font-size: 30px;
    text-align: center;
    padding: 20px
  }

  #introduction {
    display: flex;
    justify-content: center
  }

  #ViewMyWork {
    top: 0;
    left: 0;
    width: 250px;
    height: 50px;
    font-size: 15px;
    position: relative
  }


  body {
    /* overflow: hidden */
  }
}

@media (max-width:360px) {

  #canvas,
  #introduction,
  .myWorkLeft {
    width: 100%
  }

  #canvas {
    height: 100vh
  }

  #h1Animation {
    top: 200px;
    left: 0;
    padding: 0;
    font-size: 30px;
    text-align: center
  }

  #ViewMyWork {
    top: 400px;
    left: 3.4rem;
    width: 250px;
    font-size: 15px
  }

}

.contact-section {
  max-width: min(920px, calc(100% - 2rem));
  margin: 0 auto 6rem;
  padding: 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.contact-section__intro {
  display: grid;
  gap: .4rem;
}

.contact-section__intro h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.contact-section__intro p {
  max-width: 520px;
  color: #9b9b9b;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 184px;
  min-height: 48px;
  padding: .7rem 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #f3f3f3;
  font-size: .86rem;
  letter-spacing: .02em;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.contact-action .contact_btn {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-action span {
  color: #a0a0a0;
  font-size: 1.05rem;
  line-height: 1;
}

.contact-action:hover {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transform: translateY(-2px);
}

.contact-action--primary {
  border-color: #fff;
  background: #fff;
  color: #131417;
}

.contact-action--primary span {
  color: #575757;
}

.contact-action--primary:hover {
  border-color: #fff;
  background: #e3e3e3;
  color: #131417;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-links a {
  display: grid;
  gap: .32rem;
  padding: 1rem 0 .1rem;
  color: #fff;
  transition: color .2s ease;
}

.contact-links a+a {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.contact-links span {
  color: #888;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: .95rem;
  font-weight: 400;
}

.contact-links a:hover {
  color: #b9b9b9;
}

.project-description-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2147483647;
  transition: opacity .25s ease, visibility .25s ease;
}

.project-description-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-description-modal__backdrop {
  position: absolute;
  inset: 0;
}

.project-description-modal__dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(86vh, 960px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 20px 16px;
  border-radius: 18px;
  border: 1px solid rgba(43, 222, 253, .35);
  background: linear-gradient(160deg, rgba(24, 27, 35, .98), rgba(14, 15, 21, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
  z-index: 1;
}

.project-description-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.project-description-modal__close:hover {
  background: rgba(43, 222, 253, .24);
  border-color: rgba(43, 222, 253, .65);
}

#projectDescriptionTitle {
  margin: 0;
  padding-right: 42px;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: #fff;
}

.project-description-modal__content {
  overflow-y: auto;
  padding: 6px 6px 8px 2px;
  white-space: pre-wrap;
  line-height: 1.6;
  color: #d6dde6;
  font-size: .95rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  scrollbar-gutter: stable;
}

html.project-description-open,
body.project-description-open {
  overflow: hidden !important;
}

@media (max-width: 640px) {
  .project-description-modal {
    padding: 10px;
  }

  .project-description-modal__dialog {
    max-height: 90vh;
    border-radius: 14px;
    padding: 18px 14px 12px;
  }

  .project-description-modal__close {
    top: 8px;
    right: 8px;
  }
}

#upArrow {
  bottom: 28px;
}

#whatsappButton {
  position: fixed;
  left: 16px;
  bottom: 28px;
  z-index: 32100;
  width: 92px;
  height: 92px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .42));
  transition: transform .2s ease, opacity .2s ease, filter .2s ease, visibility .2s ease;
  animation: whatsappFloat 2s ease-out infinite;
}

#whatsappButton.visible {
  opacity: .86;
  visibility: visible;
  pointer-events: auto;
}

#whatsappButton img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#whatsappButton:hover {
  opacity: 1;
  transform: scale(1.06);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .48));
}

.section-nav {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 32110;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-nav button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.section-nav button:hover,
.section-nav button:focus {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.section-nav button:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .section-nav {
    right: 10px;
    gap: 10px;
  }

  .section-nav button {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }
}

@keyframes whatsappFloat {

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

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width:640px) {
  .contact-section {
    padding: 1.65rem 0;
    gap: 1.15rem;
  }

  .contact-action {
    width: 100%;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a+a {
    padding-left: 0;
    padding-top: .9rem;
    margin-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  #upArrow {
    right: 18px;
    bottom: 18px;
  }

  #whatsappButton {
    left: 6px;
    bottom: 18px;
    width: 68px;
    height: 68px;
  }
}

/* ################################################# */


.contentCard,
.links {
  position: relative;
  transition: .3s
}

#upArrow,
.btnCard,
.links {
  cursor: pointer
}

#slide1-1,
#slide1-2,
#slide1-3,
#slide2-1,
#slide2-2,
#slide2-3,
#slide3-1,
#slide3-2,
#slide3-3,
#slide4-1,
#slide4-2,
#slide4-3,
#slide5-1,
#slide5-2,
#slide5-3,
#slide6-1,
#slide6-2,
#slide6-3 {
  animation: .3s forwards slide
}

#h1Animation span,
#workMe,
.links {
  color: #2bdefd
}

#ViewMyWork,
#h1Animation {
  left: 300px;
  z-index: 30000
}


.links {
  text-align: center;
  font-size: 20px
}

#description,
#download,
#projectsTitle,
.card h1,
.informCard h1,
.links,
.titleContactLeft {
  font-family: "Chakra Petch", sans-serif
}

.card h1,
.card p {
  transform: translateY(-100px);
  color: #1b242f
}

#projects,
.containerRight {
  align-items: center;
  height: 100%
}

@keyframes mymove {

  0%,
  100% {
    bottom: -20px
  }

  50% {
    bottom: 10px
  }
}

.myWorkRight {
  width: 50%;
  height: 100%
}

.containerRight {
  width: 100%;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.containerLinks {
  display: flex;
  width: 100%
}

.links {
  width: 100%;
  font-weight: 100
}

.links:hover {
  color: #2bddfd93
}

.links::after {
  content: "";
  width: 0%;
  height: 3px;
  background: #2bdefd;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  display: flex;
  flex-direction: column;
  transition: .5s
}

.links.active-link::after {
  width: 100%
}

.contentLinks {
  width: 100%;
  height: 70%;
  padding: 30px 5px;
  align-items: start;
  justify-content: start;
  text-align: start;
  display: none
}

#projects,
#upArrow,
.btnCard,
.carouselContent {
  text-align: center
}

.contentLinks ul li span {
  text-transform: uppercase;
  color: #1e9db4;
  font-size: 18px;
  padding: 10px
}

.contentLinks ul li {
  text-align: justify;
  list-style: none;
  font-size: 19px;
  width: 100%;
  padding: 10px 0
}

#chanel {
  color: #ff8c2a;
  font-weight: 900
}

.active-tab.active-tab {
  display: block
}


@media (min-width:1367px) and (max-width:1800px) {
  #myWork {
    padding: 0
  }

  .containerPrinciples {
    gap: 30px
  }

  .principles {
    width: 300px;
    height: 300px
  }

  .principles img {
    width: 80px
  }

  .principles p {
    width: 290px;
    height: 90px;
    padding: 0;
    text-align: center;
    text-wrap: wrap
  }

  .containerMyWork {
    height: 900px;
    padding: 0 70px
  }

  .myWorkLeft {
    height: 400px
  }

  .myWorkLeft img {
    width: 400px
  }

  .containerRight {
    padding: 0 20px
  }

  .links {
    font-size: 16px
  }

  .contentLinks ul li,
  .contentLinks ul li span {
    font-size: 20px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:1200px) and (max-width:1366px) {
  #myWork {
    padding: 0
  }

  .containerPrinciples {
    gap: 30px
  }

  .principles {
    justify-content: center;
    width: 300px;
    height: 300px
  }

  .principles img {
    width: 80px
  }

  .principles p {
    width: 290px;
    height: 90px;
    padding: 0;
    text-wrap: wrap
  }

  .containerMyWork {
    height: 900px;
    padding: 0 30px
  }

  .myWorkLeft {
    height: 400px
  }

  .myWorkLeft img {
    width: 400px
  }

  .containerRight {
    padding: 0 20px
  }

  .links {
    font-size: 14px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:1001px) and (max-width:1200px) {
  #myWork {
    padding: 0
  }

  .containerPrinciples {
    gap: 30px
  }

  .principles {
    justify-content: center;
    width: 300px;
    height: 300px
  }

  .principles img {
    width: 80px
  }

  .principles p {
    width: 290px;
    height: 90px;
    padding: 0;
    text-wrap: wrap
  }

  .containerMyWork {
    height: 800px
  }

  .myWorkLeft {
    height: 400px
  }

  .myWorkLeft img {
    width: 400px
  }

  .containerRight {
    padding: 0 20px
  }

  .links {
    font-size: 14px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:801px) and (max-width:1000px) {
  #myWork {
    gap: 0;
    padding: 60px
  }

  #myWorkTitle {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 34px
  }

  .containerPrinciples {
    flex-direction: column;
    padding: 30px 80px;
    gap: 40px
  }

  .principles {
    width: 100%;
    gap: 10px
  }

  .principles img {
    width: 80px
  }

  .principles h1 {
    padding: 0;
    font-size: 28px
  }

  .principles p {
    width: 100%;
    padding: 0;
    font-size: 22px
  }

  .containerMyWork {
    flex-direction: column
  }

  .myWorkLeft {
    width: 100%
  }

  .myWorkLeft img {
    width: 80%;
    height: 80%;
    padding: 100px 0 10px
  }

  .myWorkRight {
    width: 100%;
    height: 800px;
    padding: 10px 5px
  }

  .containerRight {
    padding: 0
  }

  .links {
    font-size: 23px
  }

  .links::after {
    height: 1px
  }

  .contentLinks ul li span {
    font-size: 20px
  }

  .contentLinks ul li {
    font-size: 22px;
    text-align: center
  }

  #upArrow {
    padding: 7px;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:601px) and (max-width:800px) {
  #myWork {
    gap: 0;
    padding: 60px
  }

  #myWorkTitle {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px
  }

  .containerPrinciples {
    flex-direction: column;
    padding: 30px 5px;
    gap: 40px
  }

  .principles {
    width: 100%;
    gap: 10px
  }

  .principles img {
    width: 70px
  }

  .principles h1 {
    padding: 0;
    font-size: 22px
  }

  .principles p {
    width: 100%;
    padding: 0;
    font-size: 16px
  }

  .containerMyWork {
    flex-direction: column
  }

  .myWorkLeft {
    width: 100%
  }

  .myWorkLeft img {
    width: 80%;
    height: 80%;
    padding: 100px 0 10px
  }

  .myWorkRight {
    width: 100%;
    height: 800px;
    padding: 10px 5px
  }

  .containerRight {
    padding: 0
  }

  .links {
    font-size: 18px
  }

  .links::after {
    height: 1px
  }

  .contentLinks ul li span {
    font-size: 16px;
    font-weight: 600
  }

  .contentLinks ul li {
    font-size: 20px;
    text-align: center
  }

  #upArrow {
    padding: 7px;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

.card,
.contentCard {
  width: 400px;
  height: 400px;
  display: flex
}

#containerProjects {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%
}

.card {
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.carouselBtnClose:hover,
.carouselBtnNext:hover,
.carouselBtnPrev:hover,
.contentCard:hover,
.opacityOn {
  opacity: 1
}

.navOpacityOff,
.opacityOff,
[data-animate] {
  opacity: 0
}

.contentCard {
  background: #f5f5f5;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px
}

.carouselSlide {
  background-repeat: no-repeat;
  background-position: center
}

.btnCard,
.card h1,
.card p {
  transition: transform .5s, opacity .5s;
  opacity: 0
}

.card h1 {
  font-size: 25px
}

.contentCard:hover .btnCard,
.contentCard:hover h1,
.contentCard:hover p {
  transform: translateY(0);
  opacity: 1
}

.card p {
  font-size: 14px
}

.informCard h1,
.informCard p {
  color: #444649;
  transform: translateY(0)
}

.btnCard {
  transform: translateY(100px);
  border: 3px solid #2bdefd;
  padding: 10px 30px;
  font-size: 15px;
  color: #000
}

.btnCard:hover {
  background-color: #2bdefd;
  color: #fff
}

@keyframes fade {
  0% {
    transform: translate(0, 300px) scale(.5);
    opacity: 0
  }

  50% {
    transform: translate(0, 600px) scale(.5);
    opacity: 0
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1 !important
  }
}

.carouselContainer {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .8);
  z-index: 999;
  padding: 80px 400px
}

#canvas,
.carouselContent {
  position: relative
}

.carouselContent {
  width: 100%;
  height: 100%;
  animation: .2s forwards carouselOpen
}

@keyframes carouselOpen {
  0% {
    transform: scale(.5)
  }

  100% {
    transform: scale(1)
  }
}

.carouselSlides {
  width: 100%;
  height: 100%;
  gap: 0;
  padding: 0
}

.containerImage {
  height: 60%;
  background-color: #ffffffdd;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 20px
}

.carouselSlide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-size: contain;
  width: 100%;
  height: 100%
}

.reconnect {
  /* background-color: rgb(153, 51, 53); */
  /* border: 2px solid red; */
  display: flex;
  flex-direction: column !important;
  align-items: start !important;
  justify-content: start !important;
  /* align-self: flex-start; */
  gap: 0px;
  font-size: 16px;
  padding: 0px 20px !important;
  text-align: center !important;
  margin: 0px !important;
  white-space: wrap !important;
}

.reconnect p b {
  /* background-color: rgb(49, 175, 89); */
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  align-self: flex-start;
  font-size: 16px;
  /* border: 2px solid rgb(26, 255, 0); */
  /* width: 100px !important; */
  height: 100%;
  padding: 0px !important;
  margin: 0px !important;
}

.descriptionReconnect {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  text-align: center !important;
  font-weight: 800 !important;
  /* border: 2px solid orange !important; */
}

.reconnect p {
  /* background-color: rebeccapurple; */
  display: flex;
  flex-direction: row;
  align-items: start !important;
  justify-content: start !important;
  align-self: flex-start !important;
  font-size: 14px;
  padding: 4px 0px !important;
  /* border: 2px solid yellow; */
  width: 100% !important;
  margin: 0px !important;
}

.informCard,
.informCard h1 {
  align-items: center;
  width: 100%
}

.carouselBtnNext,
.carouselBtnPrev {
  background-image: linear-gradient(to bottom, transparent, transparent, #f5f5f555, transparent, transparent);
  border: none;
  opacity: .5;
  height: 200px;
  background-color: transparent;
  position: absolute;
  cursor: pointer
}

.carouselBtnNext {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  right: 0
}

.carouselBtnPrev {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  left: 0
}

.informCard {
  background-color: #ffffffdd;
  padding: 2px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 1;
  height: 40%
}

.informCard p,
.slideLinks {
  padding: 20px;
  display: flex
}

.informCard h1 {
  font-size: 30px;
  opacity: 1;
  display: flex;
  justify-content: center;
  height: 25%
}

.separete {
  width: 100%;
  height: 3px;
  background-color: #444649
}

.informCard p {
  font-family: Raleway, sans-serif;
  font-weight: 200;
  font-size: 100%;
  align-items: center;
  text-align: justify;
  opacity: 1;
  width: 90%;
  height: 40%
}

#ViewMyWork,
#containerYodaSMS,
#download,
#menuBtn,
#navbarDesktop,
.copyright,
.slideLinks a {
  text-align: center;

}

.slideLinks {
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 20%
}

.slideLinks a {
  border: 3px solid #594dff;
  width: 200px;
  height: 40px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #594dff;
  color: #fff
}

.slideLinks a:hover {
  border: 1px solid #594dff;
  background-color: transparent;
  color: #594dff;
  font-weight: 900
}

.carouselBtnClose {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  opacity: .5;
  cursor: pointer
}

#containerYodaSMS,
.iconWpp {
  position: fixed;
  z-index: 4999;
  opacity: .7;
  transition: .3s;

}

  .slideOn {
    transform: translate3d(0, -100px, 0)
  }

  .overflowOn {
    overflow: auto
  }

  .overflowOff {
    overflow: hidden
  }

@media (min-width:1600px) and (max-width:1919px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 180px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 380px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: row;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:1536px) and (max-width:1599px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 160px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1440px) and (max-width:1535px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 150px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1366px) and (max-width:1439px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 0 100px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1280px) and (max-width:1365px) {
  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    padding: 100px
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 250px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .containerImage {
    background-color: #ffffffff;
    height: 60%
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 90%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:1080px) and (max-width:1279px) {

  .containerImage,
  .informCard {
    background-color: #ffffffff
  }

  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px 150px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 80%;
    height: 40%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    padding: 0 15px 10px 0;
    height: 20%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:720px) and (max-width:1079px) {

  .containerImage,
  .informCard {
    background-color: #ffffffff
  }

  #projects {
    padding: 0 0 200px;
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  .carouselContainer {
    padding: 80px
  }

  .carouselBtnNext {
    border: none;
    width: 70px;
    right: 0
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 70px;
    height: 70px
  }

  .carouselBtnPrev {
    border: none;
    width: 70px;
    left: 0
  }

  .informCard {
    height: 40%;
    gap: 10px
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 18px;
    padding: 25px;
    width: 95%;
    height: 50%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px;
    height: 30px
  }

  .containerBtnClose {
    height: 10%
  }

  .containerBtnClose img {
    width: 20px;
    height: 20px
  }
}

@media (min-width:640px) and (max-width:719px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 60%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 40%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }
}

@media (min-width:480px) and (max-width:639px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

}

@media (min-width:426px) and (max-width:479px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }

}

@media (min-width:414px) and (max-width:425px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}

@media (min-width:375px) and (max-width:413px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 40%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 60%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px @media (min-width:360px) and (max-width:374px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 30%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 70%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }

}

@media (max-width:359px) {

  .card,
  .contentCard {
    width: 320px;
    height: 320px
  }

  #projects,
  .carouselContainer {
    padding: 0
  }

  #projects {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 50% 100%, 0 99%)
  }

  #containerProjects {
    gap: 20px;
    padding-bottom: 150px
  }

  .card {
    box-shadow: -2px 2px 4px 4px rgba(0, 0, 0, .2)
  }

  .carouselSlides {
    height: 100vh
  }

  .containerImage {
    height: 30%;
    background-color: #ffffffff
  }

  .carouselBtnNext,
  .carouselBtnPrev {
    border: none;
    width: 60px
  }

  .carouselBtnNext img,
  .carouselBtnPrev img {
    border: none;
    width: 60px;
    height: 60px
  }

  .informCard {
    height: 70%;
    background-color: #ffffffff
  }

  .informCard h1 {
    font-size: 25px;
    width: 90%;
    height: 20%
  }

  .informCard p {
    font-size: 20px;
    padding: 15px;
    width: 100%;
    height: 45%
  }

  .slideLinks {
    justify-content: space-around;
    padding: 0;
    height: 20%
  }

  .slideLinks a {
    width: 150px
  }

  .containerBtnClose {
    height: 15%
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }

  .reconnect {
    /* background-color: rgb(153, 51, 53); */
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    /* align-self: flex-start; */
    gap: 0px;
    font-size: 14px;
    padding: 0px 20px !important;
    text-align: center !important;
    margin: 0px !important;
  }

  .reconnect p b {
    /* background-color: rgb(49, 175, 89); */
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    align-self: flex-start;
    font-size: 14px !important;
    /* border: 2px solid rgb(26, 255, 0); */
    /* width: 100px !important; */
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
  }

  .descriptionReconnect {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    font-weight: 800 !important;
    /* border: 2px solid orange !important; */
  }

  .reconnect p {
    /* background-color: rebeccapurple; */
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    align-self: flex-start !important;
    font-size: 14px !important;
    padding: 4px 0px !important;
    /* border: 2px solid yellow; */
    width: 100% !important;
    margin: 0px !important;
  }
}




@keyframes slide {
  0% {
    transform: scale(.5)
  }

  50% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }
}


@keyframes myMovieYoda {

  0%,
  100% {
    bottom: 10px
  }

  50% {
    bottom: 0
  }
}

@keyframes myMovieYodaCP {

  0%,
  100% {
    bottom: 90px
  }

  50% {
    bottom: 80px
  }
}

@media (min-width:361px) and (max-width:600px) {
  #myWork {
    padding: 0;
    gap: 0
  }

  #myWorkTitle {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px
  }

  .containerPrinciples {
    flex-direction: column;
    padding: 30px 5px;
    gap: 40px
  }

  .principles {
    width: 100%;
    gap: 10px
  }

  .principles img {
    width: 70px
  }

  .principles h1 {
    padding: 0;
    font-size: 22px
  }

  .principles p {
    width: 100%;
    padding: 0;
    font-size: 16px
  }

  .containerMyWork {
    flex-direction: column
  }

  .myWorkLeft {
    width: 100%;
    align-items: center
  }

  .myWorkLeft img {
    width: 80%;
    height: 80%;
    padding: 50px 0 0
  }

  .myWorkRight {
    width: 100%;
    height: 950px;
    padding: 10px 5px
  }

  .containerRight {
    padding: 0
  }

  .links {
    font-size: 13px
  }

  .links::after {
    height: 1px
  }

  .contentLinks ul li span {
    font-size: 16px;
    font-weight: 600
  }

  .contentLinks ul li {
    text-align: center
  }

  #upArrow {
    padding: 7px;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px
  }

  .iconWpp {
    width: 60px;
    left: 2px
  }

  #containerYodaSMS {
    width: 140px;
    bottom: 60px;
    left: 5px;
    z-index: 2000
  }

  #yodaSMS {
    font-size: 10px;
    padding: 9px 2px 0 14px
  }

  #closeYodaSMS {
    font-size: 15px
  }

  .carouselBtnClose {
    position: absolute;
    /* ou fixed, dependendo do seu caso */
    top: 10px;
    /* ou qualquer valor que você deseje */
    right: 10px;
    /* ou left, dependendo de onde você quer que ele fique */
    /* border: 2px solid red; */
  }
}


[data-animate=toRight] {
  transform: translate3d(-600px, 0, 0) scale(.1, 1);
  transition: .3s
}

[data-animate=toLeft] {
  transform: translate3d(600px, 0, 0) scale(.1, 1);
  transition: .9s
}

[data-animate=toUp],
[data-animate].on {
  transform: translate3d(0, 0, 0) scale(1, 1)
}

[data-animate=toUp] {
  transition: .9s
}

[data-animate].on {
  opacity: 1
}

@media (min-width:1367px) and (max-width:1920px) {
  [data-animate=toRight] {
    transform: translate3d(-600px, 0, 0) scale(.1, 1)
  }

  [data-animate=toLeft] {
    transform: translate3d(600px, 0, 0) scale(.1, 1)
  }
}

@media (min-width:1200px) and (max-width:1366px) {
  [data-animate=toRight] {
    transform: translate3d(-530px, 0, 0) scale(.1, 1)
  }

  [data-animate=toLeft] {
    transform: translate3d(530px, 0, 0) scale(.1, 1)
  }
}

@media (min-width:992px) and (max-width:1199px) {
  [data-animate=toRight] {
    transform: translate3d(-440px, 0, 0) scale(.1, 1)
  }

  [data-animate=toLeft] {
    transform: translate3d(440px, 0, 0) scale(.1, 1)
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}


@media (min-width:1367px) and (max-width:1800px) {
  #aboutMe {
    clip-path: polygon(100% 0, 100% 98%, 49% 98%, 46% 100%, 0 100%, 0% 0%)
  }

  .aboutMeContainer {
    font-size: 10px;
    padding: 100px 50px
  }

  .aboutMeTitle {
    font-size: 52px
  }

  #description {
    font-size: 20px
  }
}

@media (min-width:1200px) and (max-width:1366px) {
  #aboutMe {
    clip-path: polygon(100% 0, 100% 98%, 49% 98%, 46% 100%, 0 100%, 0% 0%)
  }

  .aboutMeContainer {
    font-size: 10px;
    padding: 100px 50px
  }

  .aboutMeTitle {
    font-size: 52px
  }

  #description {
    font-size: 20px
  }
}

@media (min-width:992px) and (max-width:1199px) {
  #aboutMe {
    background-image: url(../images/background/background1.webp);
    clip-path: polygon(100% 0, 100% 98%, 49% 98%, 46% 100%, 0 100%, 0% 0%)
  }

  .aboutMeContainer {
    font-size: 10px;
    padding: 100px 50px
  }

  .aboutMeTitle {
    font-size: 52px
  }

  #description {
    font-size: 20px
  }
}

@media (min-width:850px) and (max-width:991px) {
  #aboutMe {
    background-image: url(../images/background/backgroundPhone3.webp);
    clip-path: polygon(100% 0, 100% 98%, 49% 98%, 46% 100%, 0 100%, 0% 0%)
  }

  .aboutMeContainer {
    font-size: 10px;
    align-items: center;
    justify-content: space-around !important;
    height: 100%;
    padding: 60px 50px
  }

  .aboutMeTitle {
    font-size: 62px;
    text-align: center
  }

  #description {
    font-size: 30px;
    width: 90%
  }

  .iconSocialMedia {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 0
  }

  .iconSocialMedia a img {
    margin: 9px
  }
}

@media (min-width:601px) and (max-width:850px) {
  #aboutMe {
    background-image: url(../images/background/backgroundPhone2.webp);
    clip-path: polygon(100% 0, 100% 98%, 49% 98%, 46% 100%, 0 100%, 0% 0%)
  }

  .aboutMeContainer {
    font-size: 10px;
    align-items: center;
    justify-content: space-around !important;
    height: 100%;
    padding: 60px 50px
  }

  .aboutMeTitle {
    font-size: 52px;
    text-align: center
  }

  #description {
    font-size: 20px;
    width: 100%
  }

  .iconSocialMedia {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 0
  }

  .iconSocialMedia a img {
    width: 30px;
    margin: 9px
  }


  @media (min-width:4097px) and (max-width:6400px) {
    #h1Animation {
      top: 400px;
      font-size: 120px;
      left: 500px
    }

    #ViewMyWork {
      left: 500px;
      top: 900px;
      width: 600px;
      font-size: 40px;
      height: 90px
    }
  }

  @media (min-width:3200px) and (max-width:4096px) {
    #h1Animation {
      top: 400px;
      font-size: 90px;
      left: 500px
    }

    #ViewMyWork {
      left: 500px;
      top: 700px;
      width: 500px;
      font-size: 30px;
      height: 80px
    }
  }

  @media (min-width:1367px) and (max-width:1920px) {

    #canvas,
    #introduction {
      width: 100%;
      height: 100vh
    }

    #h1Animation {
      top: 200px;
      left: 200px;
      padding: 0;
      font-size: 40px;
      margin: 0;
      width: 80%
    }

    #introduction {
      display: flex;
      justify-content: center;
      padding: 0;
      margin: 0
    }

    #ViewMyWork {
      top: 340px;
      left: 200px;
      width: 400px;
      font-size: 15px;
      height: 45px
    }

    .aboutMeTitle {
      font-size: 60px;
    }

    #description {
      font-size: 25px;
    }

    .btnNavbar {
      font-size: 16px !important;
    }

    .inconContact {
      width: 30px !important;
    }

    #upArrow {
      padding: 7px;
      width: 30px;
      height: 30px;
      bottom: 10px;
      right: 10px
    }

    footer {
      height: 40px;
      padding: 0px;
      margin: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .copyright {
      margin: 0px;
      padding: 0px;
    }

  }

  @media (min-width:1200px) and (max-width:1366px) {

    #ancorIntroduction,
    #h1Animation {
      left: 100px;
      width: 80%;
      padding: 0;
      margin: 0
    }

    #ancorIntroduction,
    #introduction {
      height: 100vh;
      display: flex;
      padding: 0;
      margin: 0
    }

    #canvas {
      width: 100%;
      height: 100vh
    }

    #h1Animation {
      top: 100px;
      font-size: 40px;
      text-align: start
    }

    #introduction {
      justify-content: center;
      width: 100%
    }

    #ancorIntroduction {
      top: 240px;
      justify-content: start;
      text-align: center;
      position: absolute
    }

    #ViewMyWork {
      top: 0;
      left: 0;
      width: 300px;
      font-size: 20px;
      position: relative;
      height: 50px
    }
  }

  @media (min-width:992px) and (max-width:1199px) {

    #ancorIntroduction,
    #h1Animation {
      left: 80px;
      width: 80%;
      padding: 0;
      margin: 0
    }

    #ancorIntroduction,
    #introduction {
      height: 100vh;
      display: flex;
      padding: 0;
      margin: 0
    }

    #canvas {
      width: 100%;
      height: 100vh
    }

    #h1Animation {
      top: 80px;
      font-size: 40px
    }

    #introduction {
      justify-content: center;
      width: 100%
    }

    #ancorIntroduction {
      top: 200px;
      text-align: center;
      position: absolute
    }

    #ViewMyWork {
      top: 0;
      left: 0;
      width: 270px;
      font-size: 20px;
      position: relative;
      height: 50px
    }
  }

  @media (min-width:768px) and (max-width:991px) {
    [data-animate=toRight] {
      transform: translate3d(-340px, 0, 0) scale(.1, 1)
    }

    [data-animate=toLeft] {
      transform: translate3d(340px, 0, 0) scale(.1, 1)
    }

    #ancorIntroduction,
    #introduction {
      width: 100%;
      height: 100vh;
      display: flex;
      padding: 0;
      margin: 0
    }

    #h1Animation {
      top: 200px;
      left: 0;
      font-size: 55px;
      text-align: center;
      padding: 20px;
      margin: 0;
      width: 100%
    }

    #ancorIntroduction {
      top: 500px;
      justify-content: center;
      text-align: center;
      position: absolute
    }

    #ViewMyWork {
      top: 0;
      left: 0;
      width: 380px;
      font-size: 25px;
      position: relative;
      height: 50px
    }
  }

  @media (min-width:601px) and (max-width:767px) {
    [data-animate=toRight] {
      transform: translate3d(-260px, 0, 0) scale(.1, 1)
    }

    [data-animate=toLeft] {
      transform: translate3d(260px, 0, 0) scale(.1, 1)
    }

    #ancorIntroduction{
      width: 100%;
      height: 100vh;
      display: flex;
      padding: 0;
      margin: 0
    }

    #h1Animation {
      top: 200px;
      left: 0;
      font-size: 40px;
      text-align: center;
      padding: 20px;
      margin: 0;
      width: 100%
    }


    #ancorIntroduction {
      top: 500px;
      justify-content: center;
      text-align: center;
      position: absolute
    }

    #ViewMyWork {
      top: 0;
      left: 0;
      width: 300px;
      height: 50px;
      font-size: 20px;
      position: relative
    }
  }


  @media (min-width:481px) and (max-width:600px) {

    .titleContactLeft {
      font-size: 30px
    }

    #workMe {
      font-size: 16px
    }


    [data-animate=toRight] {
      transform: translate3d(-210px, 0, 0) scale(.1, 1)
    }

    [data-animate=toLeft] {
      transform: translate3d(210px, 0, 0) scale(.1, 1)
    }

    #h1Animation {
      top: 200px;
      left: 0;
      font-size: 40px;
      text-align: center;
      padding: 20px;
      margin: 0;
      width: 100%
    }

    #ancorIntroduction {
      top: 500px;
      justify-content: center;
      text-align: center;
      position: absolute
    }

    #ViewMyWork {
      top: 0;
      left: 0;
      width: 250px;
      height: 50px;
      font-size: 15px;
      position: relative
    }

  }

  @media (min-width:361px) and (max-width:480px) {

    [data-animate=toRight] {
      transform: translate3d(-155px, 0, 0) scale(.1, 1)
    }

    [data-animate=toLeft] {
      transform: translate3d(155px, 0, 0) scale(.1, 1)
    }

    #h1Animation {
      top: 200px;
      left: 0;
      font-size: 30px;
      text-align: center;
      padding: 20px
    }

    #ancorIntroduction {
      top: 500px;
      display: flex;
      justify-content: center;
      text-align: center;
      position: absolute
    }

    #ViewMyWork {
      top: 0;
      left: 0;
      width: 250px;
      height: 50px;
      font-size: 15px;
      position: relative
    }

  }

  @media (max-width:360px) {
    #myWork {
      padding: 0;
      gap: 0
    }

    #myWorkTitle {
      padding-top: 50px;
      padding-bottom: 50px;
      font-size: 30px
    }

    .containerMyWork {
      flex-direction: column;
      align-items: center
    }

    .myWorkLeft {
      width: 100%
    }

    .myWorkLeft img {
      width: 80%;
      height: 80%;
      padding: 100px 0 10px
    }

    .myWorkRight {
      width: 100%;
      height: 900px;
      padding: 10px 5px
    }

    .containerRight {
      padding: 0
    }

    .links {
      font-size: 13px
    }

    .links::after {
      height: 1px
    }

    .contentLinks ul li span {
      font-size: 16px;
      font-weight: 600
    }

    .contentLinks ul li {
      font-size: 18px;
      text-align: center
    }


    .titleContactLeft {
      font-size: 30px
    }

    #workMe {
      font-size: 16px
    }

    [data-animate=toRight] {
      transform: translate3d(-155px, 0, 0) scale(.1, 1)
    }

    [data-animate=toLeft] {
      transform: translate3d(155px, 0, 0) scale(.1, 1)
    }

    #h1Animation {
      top: 200px;
      left: 0;
      padding: 0;
      font-size: 30px;
      text-align: center
    }

    #ViewMyWork {
      top: 400px;
      left: 3.4rem;
      width: 250px;
      font-size: 15px
    }

    .reconnect {
      display: flex;
      flex-direction: column !important;
      align-items: start !important;
      justify-content: start !important;
      /* align-self: flex-start; */
      gap: 0px;
      font-size: 14px;
      padding: 0px 20px !important;
      text-align: center !important;
      margin: 0px !important;
    }

    .reconnect p b {
      display: flex;
      flex-direction: row;
      align-items: start;
      justify-content: start;
      align-self: flex-start;
      font-size: 14px !important;
      height: 100%;
      padding: 0px !important;
      margin: 0px !important;
    }

    .descriptionReconnect {
      display: flex;
      align-items: center !important;
      justify-content: center !important;
      align-self: center !important;
      text-align: center !important;
      font-weight: 800 !important;
    }

    .reconnect p {
      display: flex;
      flex-direction: row;
      align-items: start !important;
      justify-content: start !important;
      align-self: flex-start !important;
      font-size: 14px !important;
      padding: 4px 0px !important;
      width: 100% !important;
      margin: 0px !important;
    }

    .carouselBtnClose {
      transform: translateY(-100%);
    }

  }

  @media (max-width: 768px) {
    .project {
      margin: 0 2rem;
    }

    .project--right,
    .description-container {
      transform: translateY(0) !important;
    }

    .description-container {
      padding: 2rem 1.5rem;
      max-width: 100%;
    }

    .description-container p {
      font-size: 1rem;
    }

    .gallery-wrap {
      margin: 15vh auto;
    }
  }

  @media (max-width: 480px) {
    .project {
      margin: 0 1rem;
    }

    .description-container {
      padding: 1.5rem 1rem;
    }

    .description-container p {
      font-size: 0.9rem;
    }

    .gallery-wrap {
      margin: 10vh auto;
    }

    .gallery--stack .caption {
      font-size: clamp(0.85rem, 4vw, 1rem);
      padding: 3vw;
    }
  }
}

@media (max-width: 767px) {
  #introduction {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  #canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  #h1Animation {
    position: relative;
    top: auto;
    left: auto;
    font-size: clamp(24px, 6.5vw, 36px);
    text-align: center;
    padding: 12px 24px;
    margin: 0;
    width: 100%;
    z-index: 2;
  }

  #ancorIntroduction {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-top: 4px;
    height: auto;
  }

  #ViewMyWork {
    position: relative;
    top: auto;
    left: auto;
    width: min(280px, 75vw);
    font-size: clamp(13px, 3.5vw, 17px);
    height: 46px;
    padding: 6px 20px;
    box-sizing: border-box;
  }
}