/********************************/
/* BELOW 1344 px (Smaller-Laptops) */
/********************************/

@media (max-width: 84em) {
  .animation {
    transform: translate(-1.6vw, -2vh);
  }

  .animation-shape {
    min-width: 28rem;
    min-height: 36rem;
  }

  .animation .paperplane-animation svg {
    width: 42.1rem;
  }


  /********************************/
  /* HERO */
  .hero {
    max-width: 120rem;
  }

  .heading-main {
    font-size: 9rem;
  }

  .description-main {
    font-size: 1.4rem;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 110rem;
  }

  /********************************/
  /* ABOUT */

  .container {
    max-width: 115rem;
  }

  /********************************/
  /* WORK */
  .work img {
    width: 110rem;
    height: 55rem;
  }

  ._3s-element-left,
  ._3d-element-right {
    max-width: 25rem;
  }
}

/********************************/
/* BELOW 1280 px (Smaller-Laptops) */
/********************************/

@media (max-width: 80em) {

  /********************************/
  /* HERO */
  .hero {
    max-width: 115rem;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 105rem;
  }

  .about-text {
    font-size: 2.6rem;
  }

  /********************************/
  /* SKILLS */

  .container {
    max-width: 100rem;
  }

  .step-number {
    margin: -18rem 0 0 10rem;
  }

  .step-text-box {
    max-width: 70rem;
  }

  .step-description {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  /********************************/
  /* EXPERIENCE */
  .white-heading {
    font-size: 3rem;
  }

  /********************************/
  /* WORK */
  .work img {
    width: 95rem;
    height: 50rem;
  }

  .work p {
    font-size: 3.6rem;
  }

  /********************************/
  /* CTA */

  .cta .heading-secondary {
    font-size: 3.6rem;
  }
}

/********************************/
/* BELOW 1168 px */
/********************************/

@media (max-width: 73em) {
  .animation {
    transform: translate(-1.6vw, -3vh);
  }

  .animation-shape {
    min-width: 26rem;
    min-height: 32rem;
  }

  .animation .paperplane-animation svg {
    width: 40.1rem;
  }

  .fixed-nav {
    left: 35%;
  }

  /********************************/
  /* HERO */
  .hero {
    max-width: 105rem;
  }

  .heading-main {
    font-size: 8rem;
  }

  .description-main {
    font-size: 1.6rem;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 90rem;
    height: 54rem;
  }

  .about-text {
    font-size: 2.2rem;
  }

  .about-profile-img {
    height: 50rem;
  }

  /********************************/
  /* SKILLS */

  .container {
    max-width: 90rem;
  }

  /********************************/
  /* WORK */
  .work img {
    width: 85rem;
    height: 45rem;
  }

  .work p {
    font-size: 3.2rem;
  }

  ._3s-element-left,
  ._3d-element-right {
    max-width: 20rem;
  }

  ._3d-element-right {
    bottom: 74%;
  }

  .image-carousel {
    border-radius: 0.9rem;
  }

  #prev {
    margin-right: 3rem;
  }

  #next {
    margin-left: 3rem;
  }

  /********************************/
  /* CTA */

  .cta .heading-secondary {
    font-size: 3.35rem;
  }
}

/********************************/
/* BELOW 1024 px */
/********************************/

@media (max-width: 64em) {

  /********************************/
  /* HERO */
  .hero {
    max-width: 95rem;
  }

  .heading-main {
    font-size: 7rem;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 85rem;
    height: 52rem;
  }

  .about-text {
    font-size: 2.1rem;
  }

  .about-profile-img {
    height: 48rem;
  }

  /********************************/
  /* SKILLS */

  .container {
    max-width: 70rem;
  }

  .step-number {
    margin: -18rem 0 0 4rem;
  }

  .step-text-box {
    max-width: 70rem;
  }

  /********************************/
  /* EXPERIENCE */
  .internship-container {
    flex-direction: column;
  }

  .community-wrapper {
    margin-left: 140px;
  }

  /********************************/
  /* WORK */
  .work img {
    width: 75rem;
    height: 38rem;
  }

  .work p {
    font-size: 3rem;
  }

  /********************************/
  /* CTA */

  .cta .heading-secondary {
    font-size: 2.9rem;
  }

  .cta-form input,
  .cta-form select {
    font-size: 1.2rem;
  }
}

/********************************/
/* BELOW 912 px */
/********************************/

@media (max-width: 57em) {
  .animation {
    transform: translate(-3.6vw, -5vh);
  }

  .animation-shape {
    min-width: 22rem;
    min-height: 28rem;
  }

  .animation .paperplane-animation svg {
    width: 32.1rem;
  }

  .header {
    font-size: 1.4rem;
    padding: 4.6rem 3.0rem 0 4.5rem;
  }

  /* .main-nav-list {
    gap: 3.6rem;
  }

  .profile {
    height: 5.8rem;
    width: 5.8rem;
  } */

  /* MOBILE NAVIGATION */
  .btn-mobile-nav {
    display: block;
  }

  .main-nav {
    background-color: #ffd9d9;
    /* background-color: #420fe7; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.01s ease-out;

    /* Hide navigation */
    /* Allows no transitions at all */
    /* display: none; */

    /* 1) Hide it visually */
    opacity: 0;

    /* 2) Make it unaccessible to mouse and keyboard */
    pointer-events: none;

    /* Hide it form screen readers */
    visibility: hidden;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(0);
  }

  .nav-open .icon-mobile-nav[name="close-outline"] {
    display: block;
    color: #420fe7;
  }

  .nav-open .icon-mobile-nav[name="menu-outline"] {
    display: none;
  }

  .icon-mobile-nav {
    color: #ffa6a6;
  }

  .main-nav-list {
    flex-direction: column;
    gap: 4.8rem;
    margin-top: 5rem;
  }

  .main-nav-link:link,
  .main-nav-link:visited {
    color: #420fe7;
    font-size: 2.4rem;
  }

  /********************************/
  /* HERO */
  .hero {
    max-width: 80rem;
  }

  .heading-main {
    font-size: 6rem;
  }

  .paper-plane {
    width: 300px;
  }

  /********************************/
  /* ABOUT */
  .section-about {
    padding-top: 14rem;
    padding-bottom: 8rem;
  }

  .container-about {
    padding-top: 4rem;
    max-width: 75rem;
    height: 44rem;
  }

  .about-text {
    margin-top: 2rem;
    font-size: 1.8rem;
  }

  .about-profile-img {
    padding-top: 1.2rem;
    height: 38rem;
  }

  /********************************/
  /* SKILLS */

  .container {
    max-width: 70rem;
  }

  .step-number {
    font-size: 50rem;
    margin: -10rem 0 0 4rem;
  }

  .step-text-box {
    max-width: 70rem;
  }

  /********************************/
  /* EXPERIENCE */
  .internship {
    font-size: 1.5rem;
  }

  .section-experience {
    padding-bottom: 40rem;
  }

  .community-wrapper {
    margin-left: 10rem;
  }

  .community-item.community-01 {
    z-index: 5;
    position: absolute;
    top: 20%;
    left: 6%;
    /* transform: scale(.7) */
  }

  .community-item.community-02 {
    z-index: 5;
    position: absolute;
    top: 64%;
    left: -2%
  }

  .community-item.community-03 {
    z-index: 5;
    position: absolute;
    top: 24%;
    left: 35%
  }

  .community-item.community-04 {
    z-index: 5;
    position: absolute;
    top: -17%;
    left: 22%;
    /* transform: scale(.7) */
  }

  .community-item.community-05 {
    z-index: 5;
    position: absolute;
    top: 54%;
    left: 20%
  }

  .community-item.community-06 {
    z-index: 5;
    position: absolute;
    top: 100%;
    left: 6%;
    /* transform: scale(.7) */
  }

  .community-item.community-07 {
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 42%
  }

  .community-item.community-08 {
    z-index: 5;
    position: absolute;
    top: 132%;
    left: 22%;
    /* transform: scale(.7) */
  }

  .community-item.community-09 {
    z-index: 5;
    position: absolute;
    top: -20%;
    right: 47%;
    /* transform: scale(.7) */
  }

  .community-item.community-10 {
    z-index: 5;
    position: absolute;
    top: 90%;
    right: 55%;
  }

  .community-item.community-11 {
    z-index: 5;
    position: absolute;
    top: 100%;
    right: 34%;
    /* transform: scale(.7) */
  }

  .community-item.community-12 {
    z-index: 5;
    position: absolute;
    top: 20%;
    right: 34%
  }

  .community-item.community-13 {
    z-index: 5;
    position: absolute;
    top: 60%;
    right: 22%
  }

  .community-item.community-14 {
    z-index: 5;
    position: absolute;
    top: 136%;
    right: 47%;
    /* transform: scale(.7) */
  }

  .community-item.community-15 {
    z-index: 5;
    position: absolute;
    bottom: 1%;
    right: 14%;
    /* transform: scale(.7) */
  }

  .community-item.community-16 {
    z-index: 5;
    position: absolute;
    top: 19%;
    right: 11%
  }

  .community-item.community-17 {
    z-index: 5;
    position: absolute;
    top: 51%;
    right: 3%
  }

  .community-item.community-18 {
    z-index: 5;
    position: absolute;
    top: -7%;
    right: 2%;
    /* transform: scale(.7) */
  }

  .community-connect-01 {
    z-index: 1;
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    left: 6%;
    top: 30%;
    transform: rotate(20deg)
  }

  .community-connect-02 {
    z-index: 1;
    width: 11%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 108%;
    left: 45%;
    transform: rotate(17deg)
  }

  .community-connect-03 {
    z-index: 1;
    width: 25%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 8%;
    left: 10%;
    transform: rotate(-45deg)
  }

  .community-connect-04 {
    z-index: 1;
    width: 1px;
    height: 30%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 30%;
    left: 18%;
    transform: rotate(-40deg)
  }

  .community-connect-05 {
    z-index: 1;
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 4%;
    left: 26.2%;
    transform: rotate(7deg)
  }

  .community-connect-06 {
    z-index: 1;
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 34%;
    left: 39%;
    transform: rotate(0deg)
  }

  .community-connect-07 {
    z-index: 1;
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 3%;
    left: 48%;
    transform: rotate(-6deg)
  }

  .community-connect-08 {
    z-index: 1;
    width: 1px;
    height: 45%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 62%;
    right: 46%;
    transform: rotate(-20deg)
  }

  .community-connect-09 {
    z-index: 1;
    width: 1px;
    height: 40%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 112%;
    right: 48%;
    transform: rotate(40deg)
  }

  .community-connect-10 {
    z-index: 1;
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 67%;
    right: 34%;
    transform: rotate(34deg)
  }

  .community-connect-11 {
    z-index: 1;
    width: 1px;
    height: 30%;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 130%;
    right: 66%;
    transform: rotate(98deg)
  }

  .community-connect-12 {
    z-index: 1;
    width: 20%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 95%;
    left: -1%;
    transform: rotate(60deg)
  }

  .community-connect-13 {
    z-index: 1;
    width: 20%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 88%;
    left: 10%;
    transform: rotate(-65deg)
  }

  .community-connect-14 {
    z-index: 1;
    width: 15%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 130%;
    left: 12%;
    transform: rotate(48deg)
  }

  .community-connect-15 {
    z-index: 1;
    width: 18%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 120%;
    left: 26%;
    transform: rotate(-60deg)
  }

  .community-connect-16 {
    z-index: 1;
    width: 16%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 14%;
    left: 28%;
    transform: rotate(60deg)
  }

  .community-connect-17 {
    z-index: 1;
    width: 25%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: -4%;
    left: 25%;
    transform: rotate(-1deg)
  }

  .community-connect-18 {
    z-index: 1;
    width: 14%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 86%;
    left: 37%;
    transform: rotate(-60deg)
  }

  .community-connect-19 {
    z-index: 1;
    width: 14%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 80%;
    left: 24%;
    transform: rotate(60deg)
  }

  .community-connect-20 {
    z-index: 1;
    width: 16%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 66%;
    left: 52%;
    transform: rotate(8deg)
  }

  .community-connect-21 {
    z-index: 1;
    width: 16%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 10%;
    left: 45%;
    transform: rotate(60deg)
  }

  .community-connect-22 {
    z-index: 1;
    width: 15%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 48%;
    right: 28%;
    transform: rotate(60deg)
  }

  .community-connect-23 {
    z-index: 1;
    width: 18%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 80%;
    right: 17%;
    transform: rotate(12deg)
  }

  .community-connect-24 {
    z-index: 1;
    width: 11%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 80%;
    right: 6%;
    transform: rotate(-20deg)
  }

  .community-connect-25 {
    z-index: 1;
    width: 10%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 13%;
    right: 5%;
    transform: rotate(-30deg)
  }

  .community-connect-26 {
    z-index: 1;
    width: 10%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 20%;
    right: 14%;
    transform: rotate(30deg)
  }

  .community-connect-27 {
    z-index: 1;
    width: 13%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    top: 40%;
    right: 13%;
    transform: rotate(-30deg)
  }

  /********************************/
  /* WORK */
  .work img {
    width: 65rem;
    height: 34rem;
  }

  .work p {
    font-size: 2.6rem;
  }

  ._3s-element-left,
  ._3d-element-right {
    max-width: 18rem;
  }

  /********************************/
  /* CTA */
  .cta {
    grid-template-columns: 1fr;
  }

  .cta-form input,
  .cta-form select {
    font-size: 1.6rem;
  }

  /* .cta-img-box {
    background-image: linear-gradient(to right bottom,
        rgba(249, 217, 217, 0.5),
        rgba(255, 166, 166, 0.5)),
      url("../images/image-contact1.jpg");
    background-size: auto;
    height: 20rem;
  } */

  /* FOOTER */
  /********************************/
  .grid--footer {
    gap: 30rem;
  }
}

/********************************/
/* BELOW 816 px */
/********************************/

@media (max-width: 51em) {
  .animation {
    transform: translate(-3.6vw, -3vh);
  }

  .animation-shape {
    min-width: 20rem;
    min-height: 24rem;
  }

  .animation .paperplane-animation svg {
    width: 28.1rem;
  }

  .fixed-nav {
    width: 29rem;
    height: 5.0rem;
    left: 32%;
  }

  .fixed-nav-link:link,
  .fixed-nav-link:visited {
    height: 3.2rem;
    width: 3.2rem;
  }

  .fixed-nav-icon {
    height: 2.6rem;
    width: 2.6rem;
  }

  .contact {
    height: 5.5rem;
  }

  .contact .icon {
    padding: 0 2rem;
    margin-right: 2rem;
  }

  .contact .mail {
    font-size: 1.6vw;
  }

  .profile {
    height: 5.8rem;
    width: 5.8rem;
  }

  .heading-secondary {
    margin-bottom: 12rem;
  }

  /********************************/
  /* HERO */
  .section-hero {
    height: 55rem;
    padding: 6rem 0;
  }

  .hero {
    max-width: 65rem;
    max-height: 34rem;
  }

  .heading-main {
    font-size: 4.7rem;
  }

  .description-main {
    font-size: 1.3rem;
  }

  .paper-plane {
    width: 280px;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 60rem;
    height: 36rem;
  }

  .subheading-about {
    margin-bottom: 1rem;
  }

  .about-text {
    padding-right: 3.8rem;
    max-width: 40rem;
    margin-top: 1rem;
    font-size: 1.6rem;
    gap: 2.4rem;
  }

  .about-profile-img {
    padding-left: 3rem;
    padding-top: 1.2rem;
    height: 30rem;
  }

  /********************************/
  /* SKILLS */

  .container {
    max-width: 55rem;
  }

  .subheading {
    font-size: 3.2rem;
  }

  .heading-secondary {
    font-size: 2rem;
    line-height: 1;
  }

  .step-number {
    font-size: 50rem;
    margin: -10rem 0 0 18rem;
  }

  .grid--2-cols {
    grid-template-columns: 1fr;
  }

  .step-img-box:nth-child(2) {
    grid-row: 1;
  }

  .step-img-box:nth-child(6) {
    grid-row: 5;
  }

  .step-img-box {
    width: 45rem;
    transform: translateY(2.4rem);
    transform: translatex(3.4rem);
  }

  /********************************/
  /* EXPERIENCE SECTION */
  .logos-img {
    padding-left: 3rem;
  }

  .white-heading {
    font-size: 2.5rem;
  }

  .community-item img {
    transform: scale(0.9);
  }

  /********************************/
  /* WORK */
  .section-work {
    padding-top: 4rem;
  }

  .work img {
    width: 32rem;
    height: 18rem;
  }

  .work-text {
    font-size: 0.8rem;
  }

  .work p {
    font-size: 1.4rem;
  }

  ._3s-element-left,
  ._3d-element-right {
    max-width: 14rem;
  }

  ._3s-element-left {
    bottom: -1%;
  }

  ._3d-element-right {
    bottom: 75%;
  }

  #prev {
    margin-right: 2rem;
  }

  #next {
    margin-left: 2rem;
  }

  .carousel-btn {
    border: solid 0.34rem;
  }

  /********************************/
  /* CTA */
  .section-cta {
    padding-top: 15rem;
  }

  .cta-form {
    grid-template-columns: 1fr 1fr;
  }

  .btn--form {
    margin-top: 1.2rem;
  }

  .cta-text-box {
    padding: 3.8rem 4rem;
  }

  /* FOOTER */
  /********************************/
  .grid--footer {
    gap: 10rem;
  }
}

/********************************/
/* BELOW 608 px */
/********************************/

@media (max-width: 38em) {
  .animation {
    transform: translate(-3.6vw, -3vh);
  }

  .animation-shape {
    min-width: 16rem;
    min-height: 20rem;
  }

  .animation .paperplane-animation svg {
    margin-left: -3rem;
    width: 24.1rem;
  }

  .fixed-nav {
    width: 28rem;
    height: 4.8rem;
    left: 28%;
  }

  .fixed-nav-link:link,
  .fixed-nav-link:visited {
    height: 3.0rem;
    width: 3.0rem;
  }

  .fixed-nav-icon {
    height: 2.4rem;
    width: 2.4rem;
  }

  .header {
    padding-left: 2rem;
  }

  .icon-mobile-nav {
    height: 3.8rem;
    width: 3.8rem;
    color: #ffa6a6;
  }

  .contact {
    height: 5rem;
  }

  .contact .icon {
    padding: 0 2rem;
    margin-right: 1rem;
  }

  .contact .mail {
    font-size: 1.6vw;
  }

  /********************************/
  /* HERO */

  .hero {
    max-width: 54rem;
  }

  .heading-main {
    font-size: 3.8rem;
  }

  .description-main {
    font-size: 1.2rem;
  }

  .paper-plane {
    width: 220px;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 45rem;
    height: 32rem;
    padding-top: 4.2rem;
  }

  .subheading-about {
    margin: 0 30vw;
  }

  .about-text {
    padding-right: 2.2rem;
    max-width: 35rem;
    margin-top: 2.2rem;
    font-size: 1.2rem;
    gap: 2rem;
  }

  .about-profile-img {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    height: 26rem;
  }

  /********************************/
  /* SKILLS */

  .container {
    max-width: 35rem;
  }

  .subheading {
    font-size: 2.4rem;
  }

  .heading-secondary {
    font-size: 1.4rem;
    line-height: 1;
  }

  .step-number {
    font-size: 45rem;
    margin: -15rem 0 0 7rem;
  }

  .step-img-box {
    width: 34rem;
    transform: translateY(2.4rem);
    /* transform: translatex(1.8rem); */
  }

  /********************************/
  /* EXPERIENCE SECTION */
  .internship {
    font-size: 1.2rem;
  }

  .apostrophe {
    font-size: 15rem;
    top: -10.5rem;
  }

  .internship-logo {
    margin-top: -0.5rem;
    height: 4rem;
  }

  .container-details {
    font-size: 1rem;
  }

  .section-experience {
    padding-bottom: 6rem;
  }

  .mycontain {
    margin-top: 6rem;
  }

  .white-heading {
    font-size: 1.5rem;
    padding-bottom: 0;
  }

  .community-wrapper {
    margin-top: 0;
    margin-left: 2rem;
    width: fit-content;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .community-item {
    position: relative;
  }

  .community-item.community-01,
  .community-item.community-02,
  .community-item.community-03,
  .community-item.community-04,
  .community-item.community-05,
  .community-item.community-06,
  .community-item.community-07,
  .community-item.community-08,
  .community-item.community-09,
  .community-item.community-10,
  .community-item.community-11,
  .community-item.community-12,
  .community-item.community-13,
  .community-item.community-14,
  .community-item.community-15,
  .community-item.community-16,
  .community-item.community-17,
  .community-item.community-18 {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 6rem;
    /* margin-bottom: 0.1rem; */
  }

  .community-name {
    margin-top: -1.5rem;
    font-size: 1.2rem;
    margin-left: 2.5rem;
  }

  .name-margin {
    margin-top: -3rem;
    margin-left: 3.5rem;
  }

  /* .community-item.community-01 {
    padding-left: 8rem;
    grid-column-start: 1;
    grid-column-end: 3;
  } */

  .community-item.community-06,
  .community-item.community-07,
  .community-item.community-04 {
    margin-left: 4.5rem;
  }

  .community-item.community-13,
  .community-item.community-14 {
    margin-left: 6.5rem;
  }

  .community-item img {
    transform: scale(0.6);
    top: 0;
    left: 0;
    align-items: start;
    justify-content: start;
  }

  .line {
    display: none;
  }


  .experience-icon {
    padding: 12rem 0 3rem 0;
  }

  .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4rem;
    justify-content: center;
    align-items: center;
  }

  .logos-img {
    padding-left: 6rem;
  }

  /********************************/
  /* WORK */
  .carousel-btn {
    height: 6rem;
    border: solid 0.26rem;
  }

  ._3s-element-left,
  ._3d-element-right {
    max-width: 10rem;
  }


  /********************************/
  /* CTA */
  .cta .heading-secondary {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 1.8rem;
  }

  .cta-form input,
  .cta-form select {
    font-size: 1.2rem;
  }

  .btn--form {
    font-size: 1.4rem;
  }

  .footer {
    margin-left: -9rem;
  }


  .social-links {
    gap: 1.4rem;
    margin-bottom: 1rem;
  }
}

/********************************/
/* BELOW 480 px */
/********************************/

@media (max-width: 30em) {
  .animation {
    transform: translate(4vw, 2vh);
  }

  .animation-shape {
    min-width: 12rem;
    min-height: 16rem;
  }

  .animation .paperplane-animation svg {
    margin-left: -2rem;
    width: 18.1rem;
  }


  .fixed-nav {
    width: 26rem;
    height: 4.3rem;
    left: 20vw;
    bottom: 4%;
  }

  .fixed-nav-link:link,
  .fixed-nav-link:visited {
    height: 2.8rem;
    width: 2.8rem;
  }

  .fixed-nav-icon {
    height: 2.2rem;
    width: 2.2rem;
  }

  .contact {
    height: 5.5rem;
    width: 28rem;
  }

  .contact .icon {
    padding: 0 2rem;
    margin-right: 1rem;
  }

  .contact .mail {
    font-size: 3vw;
  }

  /********************************/
  /* HERO */
  .section-hero {
    height: 65rem;
  }

  .hero {
    max-width: 40rem;
  }

  .hero-text-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .heading-main {
    font-size: 3.6rem;
  }

  .description-main {
    margin-top: 12rem;
    font-size: 1.3rem;
  }

  .paper-plane {
    width: 200px;
  }

  /********************************/
  /* ABOUT */
  .container-about {
    max-width: 30rem;
    height: 22rem;
    padding-top: 2rem;
  }

  .div-about {
    margin: auto;
  }

  .about-text {
    padding-right: 2.2rem;
    max-width: 35rem;
    margin-top: 2.2rem;
    font-size: 0.8rem;
    gap: 2rem;
  }

  .about-profile-img {
    padding-left: 2.2rem;
    padding-right: 1rem;
    padding-top: 1.6rem;
    height: 18rem;
  }

  /********************************/
  /* SKILLS */

  .section-skills {
    padding: 2rem 0;
  }

  .container {
    max-width: 40rem;
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .subheading {
    font-size: 1.6rem;
  }

  .heading-secondary {
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 3rem;
  }

  .step-number {
    font-size: 32rem;
    margin: 3rem 0 0 6rem;
  }

  .heading-tertiary {
    font-size: 2rem;
  }

  .step-description {
    font-size: 1.2rem;
  }

  .grid {
    row-gap: 6rem;
  }

  .step-img-box {
    width: 26rem;
    margin: 0 auto;
    margin-top: 4rem;
    margin-bottom: 2rem;
    transform: translateY(2.4rem);
    /* transform: translatex(1.8rem); */
  }

  /********************************/
  /* EXPERIENCE SECTION */
  .internship {
    font-size: 1rem;
  }

  .apostrophe {
    font-size: 12rem;
    top: -8.5rem;
  }

  .internship-heading {
    margin-top: 1rem;
  }

  .community-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-icon {
    padding: 5rem 0 3rem 0;
  }

  .logos-img {
    padding-left: 4rem;
  }

  /********************************/
  /* WORK */
  .section-work {
    padding-bottom: 5rem;
    padding-top: 2rem;
    overflow: hidden;
  }

  ._3d-element-right,
  ._3s-element-left {
    max-width: 8rem;
  }

  ._3s-element-left {
    bottom: -4%;
  }

  ._3d-element-right {
    bottom: 79%;
  }

  .work-text {
    font-size: 0.7rem;
  }

  .work img {
    /* padding-left: 5rem; */
    width: 26rem;
    height: 14rem;
  }

  .work p {
    font-size: 1rem;
  }

  /********************************/
  /* CTA */
  .cta .heading-secondary {
    font-size: 1.4rem;
  }

  .cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cta-form label {
    font-size: 1.2rem;
  }

  .cta-text-box .subheading {
    font-size: 3rem;
  }

  .cta-text-box {
    padding: 3rem 3rem 2rem 3rem;
  }

  .email {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .cta-text {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .cta-form input,
  .cta-form select {
    font-size: 1rem;
  }

  .your-details {
    margin-bottom: 1rem;
  }

  .section-cta {
    padding-top: 12rem;
  }

  /* FOOTER */
  /********************************/
  .grid--footer {
    gap: 5rem;
  }

  .footer-heading {
    font-size: 1.2rem;
  }

  .footer {
    margin-left: 0;
  }

  .social-icon {
    height: 1.4rem;
    width: 1.4rem;
  }

  .copyright,
  .contacts,
  .footer-link:link,
  .footer-link:visited {
    font-size: 0.8rem;
  }
}

/********************************/
/* BELOW 416 px */
/********************************/

@media (max-width: 26em) {
  .fixed-nav {
    left: 18vw;
  }

  .animation {
    transform: translate(-8vw, 3vh);
    /* transform: translate(0, 0); */
  }

  .animation-shape {
    min-width: 12rem;
    min-height: 16rem;
  }

  .animation .paperplane-animation svg {
    margin-left: -2rem;
    width: 18.1rem;
  }

  .section-hero {
    height: 70rem;
  }

  .subheading-about {
    margin: 0 12rem;
  }

  ._3s-element-left {
    left: -8%;
    bottom: -6%;
  }

  ._3d-element-right {
    right: -8%;
    bottom: 74%;
  }
}

/********************************/
/* BELOW 320 px */
/********************************/

@media (max-width: 20em) {
  .internship {
    font-size: 0.8rem;
    margin-top: 3rem;
  }

  .apostrophe {
    font-size: 9rem;
    top: -6.5rem;
  }

  .container-details {
    font-size: 0.6rem;
  }

  .internship-logo {
    height: 3rem;
  }

  .community-wrapper {
    margin-left: -2rem;
  }
}