@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
}

body {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
}

body.show-focus-outline a:focus,
body.show-focus-outline button:focus,
body.show-focus-outline input:focus,
body.show-focus-outline select:focus,
body.show-focus-outline textarea:focus,
body.show-focus-outline .icon:focus {
  outline: 2px solid blue;
}

h3 {
  font-size: 3rem;
  font-weight: 600;
  font-weight: 600;
}

h4 {
  font-size: 2.5rem;
}

/* Start of header */
@media screen and (max-width: 450px) {
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* End of header */
    /* Start of Hero Section */
    /* End of Hero Section */
    /* Start of Project Section */
    /* End of Project Section */
    /* Start of About Section */
    /* End of About Section */
    /* Start of Skills Section */
    /* End of Skills Section */
    /* Start of Contact Section */
    /* End of Contact Section */
    /* Start of Dropdown portion */
    /* End of Dropdown portion */
    /* Start of Footer */
    /* End of Footer */
  }
  .container header {
    background-color: #16181a;
    box-shadow: 0px 2px 4px rgb(87, 87, 87);
    padding: 0.75em 0em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .container header .nav-section {
    color: #efefef;
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 90%;
  }
  .container header .nav-section a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 28px;
  }
  .container header .nav-section #logo {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container header .nav-section #logo img {
    max-width: 33px;
    height: auto;
    min-width: 33px;
    transform: rotate(90deg);
    animation: fadeInLogo 1.2s ease-in-out forwards;
    animation-delay: 1.5s;
  }
  @keyframes fadeInLogo {
    from {
      transform: rotate(90deg);
    }
    to {
      transform: rotate(0);
    }
  }
  .container header .nav-section #menu-toggle {
    display: none;
    z-index: -1;
  }
  .container header .nav-section #menu-toggle:checked ~ .slide-menu {
    left: -15%;
    top: 3.125em;
    transition: 0.4s ease-in-out;
    z-index: -1;
  }
  .container header .nav-section #menu-toggle:checked ~ .slide-menu .menu-link {
    animation: fadeInMenu 1.6s ease-in-out forwards;
  }
  .container header .nav-section #menu-toggle:checked ~ .mobile-footer {
    left: 0;
    transition: 0.4s ease-in-out;
  }
  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .container header .nav-section #menu-toggle:not(:checked) ~ .slide-menu {
    background-color: rgb(221, 219, 219);
    left: -100%;
    right: 0;
    top: 3.125em;
    transition: 0.5s ease-in-out;
    z-index: -1;
  }
  .container header .nav-section #menu-toggle:not(:checked) ~ .mobile-footer {
    background-color: rgb(221, 219, 219);
    left: -100%;
    right: 0;
    transition: 0.5s ease-in-out;
  }
  .container header .nav-section .hamburger {
    align-self: center;
    display: flex;
    flex-direction: column;
    height: 15px;
    justify-content: space-between;
    width: 23px;
    z-index: 3;
  }
  .container header .nav-section .hamburger span {
    background-color: #efefef;
    color: #efefef;
    height: 1.5px;
    width: 100%;
    border-radius: 0.5em;
  }
  .container header .nav-section .slide-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgb(221, 219, 219);
    display: flex;
    flex-direction: column;
    z-index: -1;
    padding: 0em 0em 0em 15%;
  }
  .container header .nav-section .slide-menu .my-address {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #909292;
    z-index: -1;
  }
  .container header .nav-section .slide-menu .my-address .my-avatar {
    padding: 1em 0em 1em 0em;
    display: flex;
    align-items: flex-start;
    width: 25%;
  }
  .container header .nav-section .slide-menu .my-address .my-avatar img {
    width: 100%;
    height: auto;
    padding-bottom: 0.5em;
  }
  .container header .nav-section .slide-menu .my-address .my-location {
    display: flex;
    flex-direction: column;
    margin: auto;
    font-size: 1.2rem;
    align-items: flex-start;
  }
  .container header .nav-section .slide-menu .my-address .my-location :first-child {
    font-size: 2rem;
  }
  .container header .nav-section .slide-menu .nav-bar-links {
    background-color: rgb(221, 219, 219);
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: -1;
  }
  .container header .nav-section .slide-menu .nav-bar-links li {
    padding: 1em;
    border-bottom: 1px solid whitesmoke;
    width: 100%;
  }
  .container header .nav-section .slide-menu .nav-bar-links li a {
    width: 100%;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-items: flex-start;
    color: #16181a;
  }
  .container header .nav-section .slide-menu .nav-bar-links .menu-send-message {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .container header .nav-section .slide-menu .nav-bar-links .mobile-footer {
    padding: 2em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    width: 85%;
    color: #16181a;
    z-index: -1;
    position: fixed;
    bottom: 0;
  }
  .container header .nav-section .slide-menu .nav-bar-links .mobile-footer .legal-regulations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .container header .nav-section .slide-menu .nav-bar-links .mobile-footer .legal-regulations a {
    width: 100%;
    padding: 0em 0em 0.5em;
  }
  .container .hero-section {
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(220, 220, 220), rgb(186, 186, 186), rgb(160, 160, 160));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container .hero-section .hero-container {
    color: #efefef;
    margin: auto;
    margin-top: 0em;
    padding-top: 5em;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #16181a;
  }
  .container .hero-section .hero-container .hero-details {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .container .hero-section .hero-container .hero-details p, .container .hero-section .hero-container .hero-details h2 {
    margin-bottom: 0em;
  }
  .container .hero-section .hero-container .hero-details p:is(h2), .container .hero-section .hero-container .hero-details h2:is(h2) {
    width: 100%;
    margin-top: 1em;
    font-size: 1.5rem;
    animation: fadeIn 1.6s ease-in-out forwards;
  }
  .container .hero-section .hero-container .hero-details p:is(p), .container .hero-section .hero-container .hero-details h2:is(p) {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
    animation: fadeIn 1.3s ease-in-out forwards;
  }
  .container .hero-section .hero-container .hero-details h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 0em;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .container .hero-section .hero-container .hero-details .buttons {
    display: none;
  }
  .container .hero-section .hero-container .hero-img {
    opacity: 0;
    filter: blur(10px); /* Initial blur effect */
    margin: 1.5em 0em 2em;
    width: 100%;
    height: auto;
    animation: fadeInAndBlurRemoval 0.8s ease-in-out 0.5s forwards;
  }
  @keyframes fadeInAndBlurRemoval {
    from {
      opacity: 0;
      filter: blur(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
  .container .hero-section #buttons2 {
    display: none;
  }
  .container #projects.projects-section {
    background-color: rgb(160, 160, 160);
    display: flex;
    flex-direction: column;
    padding: 0em 0em 5em;
    color: #16181a;
  }
  .container #projects.projects-section h3 {
    font-size: 3.5rem;
    margin-top: 0.5em;
  }
  .container #projects.projects-section h4 {
    margin-top: 0.5em;
    margin-bottom: 5em;
    font-size: 1.5rem;
  }
  .container #projects.projects-section .featured-projects {
    overflow: hidden;
    width: 100%;
  }
  .container #projects.projects-section .featured-projects .carousel {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .container #projects.projects-section .featured-projects .carousel::-webkit-scrollbar {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a,
  .container #projects.projects-section .featured-projects .carousel .project-b,
  .container #projects.projects-section .featured-projects .carousel .project-c {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 90%;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a a,
  .container #projects.projects-section .featured-projects .carousel .project-b a,
  .container #projects.projects-section .featured-projects .carousel .project-c a {
    display: block; /* Make the link a block-level element to cover the entire image */
    text-decoration: none; /* Remove default link underline */
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img,
  .container #projects.projects-section .featured-projects .carousel .project-b img,
  .container #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    filter: blur(10px); /* Adjust the blur amount */
  }
  .container #projects.projects-section .featured-projects .carousel .project-a p,
  .container #projects.projects-section .featured-projects .carousel .project-b p,
  .container #projects.projects-section .featured-projects .carousel .project-c p {
    display: flex;
    text-align: center;
    font-size: 1.5rem;
    width: 85%;
    justify-content: center;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  .container #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  .container #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  .container #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  .container #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a:hover {
    background-color: transparent;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img {
    transform: scale(1);
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(0px); /* Adjust the blur amount */
  }
  .container #projects.projects-section .featured-projects .indicators {
    display: flex;
    justify-content: center;
    margin-top: 3em;
    margin-bottom: 1em;
  }
  .container #projects.projects-section .featured-projects .indicators .indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
  }
  .container #projects.projects-section .featured-projects .indicators .indicator.active {
    background-color: #16181a;
  }
  .container #projects.projects-section h4:nth-of-type(2) {
    display: none;
  }
  .container #projects.projects-section .personal-projects {
    display: none;
  }
  .container #projects.projects-section h4:last-of-type {
    display: none;
  }
  .container #aboutmyself.aboutmyself {
    color: #efefef;
    padding: 5em 0em;
    background-color: #16181a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself h3 {
    font-size: 3rem;
    font-weight: 300;
  }
  .container #aboutmyself.aboutmyself h4 {
    margin: 0.5em 0em 2em;
    font-size: 1.5rem;
  }
  .container #aboutmyself.aboutmyself .about-me-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1.5em;
  }
  .container #aboutmyself.aboutmyself .about-me-container .image-container {
    display: flex;
    margin-bottom: 2em;
    width: 90%;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version .about p {
    width: 90%;
    margin-bottom: 5em;
    line-height: 1.5;
    margin-bottom: 1.5em;
    font-size: 1.5rem;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long p {
    width: 90%;
    margin-bottom: 5em;
    line-height: 1.5;
    font-size: 1.5rem;
    margin-bottom: 0em;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long p span {
    word-break: break-all;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long .read-more {
    color: #FBBF00;
    font-weight: 300;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long img {
    display: none;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version {
    display: none;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a {
    margin-right: 0.5em;
    color: #FBBF00;
    font-weight: 300;
    font-size: 1.5rem;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img {
    max-width: 3.5%;
  }
  .container .skills {
    padding: 0em 2em 5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #16181a;
    color: #efefef;
  }
  .container .skills p {
    margin-bottom: 2em;
    font-size: 3rem;
  }
  .container .skills .tech-skills-a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-a .group-a, .container .skills .tech-skills-a .group-b {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-a .group-a img, .container .skills .tech-skills-a .group-b img {
    width: 100%;
    height: auto;
    padding: 1em;
    padding: 0.5em;
    width: 90%;
    height: auto;
  }
  .container .skills .tech-skills-b {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-b .group-c, .container .skills .tech-skills-b .group-d {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-b .group-c img, .container .skills .tech-skills-b .group-d img {
    width: 100%;
    height: auto;
    padding: 1em;
    padding: 0.5em;
    width: 90%;
    height: auto;
  }
  .container #contact.contact {
    background-color: #efefef;
    align-self: center;
    padding: 3em 0em 0em 0em;
  }
  .container #contact.contact h3 {
    margin-bottom: 0.25em;
  }
}
@media screen and (max-width: 450px) and (max-width: 210px) {
  .container #contact.contact h3 {
    word-break: break-all;
  }
}
@media screen and (max-width: 450px) {
  .container #contact.contact h3:first-of-type {
    padding: 0em 0.5em;
  }
  .container #contact.contact h4 {
    width: 90%;
    margin: auto;
    padding-bottom: 4em;
    font-size: 1.5rem;
  }
  .container #contact.contact .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #efefef;
  }
  .container #contact.contact .contact-container .contact-form {
    width: 100%;
    height: auto;
    padding: 5em 10% 0em 10%;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-form h3 {
    margin-bottom: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
  }
  .container #contact.contact .contact-container .contact-form h4 {
    width: 100%;
    padding-bottom: 3em;
    margin: 0em;
  }
  .container #contact.contact .contact-container .contact-form form {
    display: flex;
    flex-direction: column;
  }
  .container #contact.contact .contact-container .contact-form form textarea, .container #contact.contact .contact-container .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
    text-align: left;
  }
  .container #contact.contact .contact-container .contact-form form label {
    padding: 1em 0em 0.5em;
    text-align: left;
    font-size: 1.5rem;
  }
  .container #contact.contact .contact-container .contact-form form ::-moz-placeholder {
    font-size: 1.5rem;
    text-align: left;
    padding-left: 0.5em;
  }
  .container #contact.contact .contact-container .contact-form form ::placeholder {
    font-size: 1.5rem;
    text-align: left;
    padding-left: 0.5em;
  }
  .container #contact.contact .contact-container .contact-form form button {
    align-self: center;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    width: 10em;
    border-radius: 0.5em;
    font-size: 1.5rem;
    margin-right: 0em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    margin-top: 5em;
    box-shadow: 0px 2px 4px rgba(161, 165, 161, 0.718);
  }
  .container #contact.contact .contact-container .contact-me {
    width: 100%;
    background-color: #16181a;
    padding: 2.5em 0% 2.5em;
  }
  .container #contact.contact .contact-container .contact-me h3:first-of-type {
    display: none;
  }
  .container #contact.contact .contact-container .contact-me h4:first-of-type {
    display: none;
  }
  .container #contact.contact .contact-container .contact-me h3:last-of-type {
    margin-bottom: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container #contact.contact .contact-container .contact-me h4:last-of-type {
    margin: auto;
    padding-bottom: 8em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 3em;
    font-size: 1.5rem;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-icon img {
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-number-details {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .email-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .email-icon img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
}
@media screen and (max-width: 450px) and (max-width: 335px) {
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .my-email {
    word-break: break-all;
  }
}
@media screen and (max-width: 450px) {
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .my-email {
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .address-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .address-icon img {
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .local-address {
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .social-links2 {
    display: none;
  }
  .container .dev-process {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 2em;
    transition: height 0.3s ease;
    font-size: 1.5rem;
    overflow: hidden;
  }
  .container .dev-process .icon {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: scale 0.1s ease;
    margin: auto;
  }
  .container .dev-process .icon img {
    width: 50%;
    height: auto;
    padding: 0.2em 0em;
    text-align: center;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .container .dev-process p {
    width: 100%;
    padding: 3em 5% 2em;
    background-color: #16181a;
    color: #efefef;
    bottom: -100%;
    right: 0;
    z-index: -1;
  }
  .container .dev-process.open {
    height: auto;
    transition: height 0.3s ease;
  }
  .container .dev-process.open .icon img {
    transform: rotate(180deg);
    transition-delay: 0.1s;
  }
  .container footer {
    display: none;
  }
}
@media screen and (min-width: 451px) and (max-width: 800px) {
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Start of header */
    /* End of Header Section */
    /* Start of Hero Section */
    /* End of Hero Section */
    /* Start of Project Section */
    /* End of Project Section */
    /* Start of About Section */
    /* End of About Section */
    /* Start of Skills Section */
    /* End of Skills Section */
    /* Start of Contact Section */
    /* End of Contact Section */
    /* Start of Dropdown portion */
    /* End of Dropdown portion */
    /* Start of Footer */
    /* End of Footer */
  }
  .container header {
    background-color: #16181a;
    box-shadow: 0px 2px 4px rgba(87, 87, 87, 0.4);
    padding: 0.75em 0 0.75em 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .container header .nav-section {
    align-items: center;
    color: #efefef;
    display: flex;
    margin: auto;
    width: 90%;
  }
  .container header .nav-section #logo {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container header .nav-section #logo img {
    max-width: 33px;
    height: auto;
    min-width: 33px;
    transition: transform 0.3s ease;
  }
  .container header .nav-section #menu-toggle {
    display: none;
  }
  .container header .nav-section .hamburger {
    display: none;
  }
  .container header .nav-section .slide-menu {
    display: flex;
    justify-content: flex-end;
    font-size: 2rem;
    width: 100%;
  }
  .container header .nav-section .slide-menu .nav-bar-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container header .nav-section .slide-menu .nav-bar-links li a {
    padding: 0.5em 0em 0.5em 0.5em;
    margin-left: 1em;
    color: #efefef;
    transition: color 0.3s ease;
    font-size: 2rem;
  }
  .container header .nav-section .slide-menu .nav-bar-links .menu-send-message {
    display: none;
  }
  .container header .nav-section .slide-menu .my-address {
    display: none;
  }
  .container header .nav-section .mobile-footer {
    display: none;
  }
  .container .hero-section {
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(220, 220, 220), rgb(186, 186, 186), rgb(160, 160, 160));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container .hero-section .hero-container {
    color: #efefef;
    margin: auto;
    margin-top: 0em;
    padding-top: 7em;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #16181a;
  }
  .container .hero-section .hero-container .hero-details {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .container .hero-section .hero-container .hero-details p, .container .hero-section .hero-container .hero-details h2 {
    margin-bottom: 0em;
  }
  .container .hero-section .hero-container .hero-details p:is(h2), .container .hero-section .hero-container .hero-details h2:is(h2) {
    width: 100%;
    margin-top: 1em;
    font-size: 2rem;
    animation: fadeIn 1.6s ease-in-out forwards;
    text-align: justify;
  }
  .container .hero-section .hero-container .hero-details p:is(p), .container .hero-section .hero-container .hero-details h2:is(p) {
    font-size: 2rem;
    margin-bottom: 1.5em;
    animation: fadeIn 1.3s ease-in-out forwards;
  }
  .container .hero-section .hero-container .hero-details h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 0em;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .container .hero-section .hero-container .hero-details .buttons {
    display: none;
  }
  .container .hero-section .hero-container .hero-img {
    opacity: 0;
    filter: blur(10px); /* Initial blur effect */
    margin: 1.5em 0em 2em;
    width: 70%;
    height: auto;
    animation: fadeInAndBlurRemoval 0.8s ease-in-out 0.5s forwards;
  }
  @keyframes fadeInAndBlurRemoval {
    from {
      opacity: 0;
      filter: blur(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
  .container .hero-section #buttons2 {
    display: none;
  }
  .container #projects.projects-section {
    background-color: rgb(160, 160, 160);
    display: flex;
    flex-direction: column;
    padding: 0em 0em 5em;
    color: #16181a;
  }
  .container #projects.projects-section h3 {
    font-size: 3.5rem;
    margin-top: 0.5em;
  }
  .container #projects.projects-section h4 {
    margin-top: 0.5em;
    margin-bottom: 5em;
    font-size: 2rem;
  }
  .container #projects.projects-section .featured-projects {
    overflow: hidden;
    width: 100%;
  }
  .container #projects.projects-section .featured-projects .carousel {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .container #projects.projects-section .featured-projects .carousel::-webkit-scrollbar {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a,
  .container #projects.projects-section .featured-projects .carousel .project-b,
  .container #projects.projects-section .featured-projects .carousel .project-c {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 90%;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a a,
  .container #projects.projects-section .featured-projects .carousel .project-b a,
  .container #projects.projects-section .featured-projects .carousel .project-c a {
    display: block; /* Make the link a block-level element to cover the entire image */
    text-decoration: none; /* Remove default link underline */
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img,
  .container #projects.projects-section .featured-projects .carousel .project-b img,
  .container #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    filter: blur(10px); /* Adjust the blur amount */
  }
  .container #projects.projects-section .featured-projects .carousel .project-a p,
  .container #projects.projects-section .featured-projects .carousel .project-b p,
  .container #projects.projects-section .featured-projects .carousel .project-c p {
    display: flex;
    text-align: center;
    font-size: 2rem;
    width: 90%;
    justify-content: center;
    text-align: justify;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  .container #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  .container #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  .container #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  .container #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a:hover {
    background-color: transparent;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img {
    transform: scale(1);
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(0px); /* Adjust the blur amount */
  }
  .container #projects.projects-section .featured-projects .indicators {
    display: flex;
    justify-content: center;
    margin-top: 3em;
    margin-bottom: 1em;
  }
  .container #projects.projects-section .featured-projects .indicators .indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
  }
  .container #projects.projects-section .featured-projects .indicators .indicator.active {
    background-color: #16181a;
  }
  .container #projects.projects-section h4:nth-of-type(2) {
    display: none;
  }
  .container #projects.projects-section .personal-projects {
    display: none;
  }
  .container #projects.projects-section h4:last-of-type {
    display: none;
  }
  .container #aboutmyself.aboutmyself {
    color: #efefef;
    padding: 5em 0em;
    background-color: #16181a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself h3 {
    font-size: 3rem;
    font-weight: 300;
  }
  .container #aboutmyself.aboutmyself h4 {
    margin: 0.5em 0em 2em;
    font-size: 2rem;
  }
  .container #aboutmyself.aboutmyself .about-me-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .image-container {
    display: flex;
    margin-bottom: 2em;
    width: 90%;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version .about p {
    width: 90%;
    margin-bottom: 5em;
    line-height: 1.5;
    margin-bottom: 1.5em;
    font-size: 2rem;
    text-align: justify;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long p {
    width: 90%;
    margin-bottom: 5em;
    line-height: 1.5;
    font-size: 2rem;
    text-align: justify;
    margin-bottom: 0em;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long p span {
    word-break: break-all;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long .read-more {
    color: #FBBF00;
    font-weight: 300;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .somewhat-long img {
    display: none;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version {
    display: none;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a {
    margin-right: 0.5em;
    color: #FBBF00;
    font-weight: 300;
    font-size: 2rem;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img {
    max-width: 3.5%;
  }
  .container .skills {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em 1em 5em;
    background-color: #16181a;
    color: #efefef;
  }
  .container .skills p {
    font-size: 2.5rem;
    margin-bottom: 2em;
  }
  .container .skills .tech-skills-a {
    display: flex;
    width: 100%;
    height: auto;
  }
  .container .skills .tech-skills-a .group-a, .container .skills .tech-skills-a .group-b {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-a .group-a img, .container .skills .tech-skills-a .group-b img {
    padding: 1em;
    width: 100%;
  }
  .container .skills .tech-skills-b {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
  }
  .container .skills .tech-skills-b .group-c, .container .skills .tech-skills-b .group-d {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-b .group-c img, .container .skills .tech-skills-b .group-d img {
    padding: 1em;
    width: 100%;
  }
  .container #contact.contact {
    background-color: #efefef;
    align-self: center;
    padding: 4em 0em 0em 0em;
  }
  .container #contact.contact h3 {
    margin-bottom: 0.25em;
  }
}
@media screen and (min-width: 451px) and (max-width: 800px) and (max-width: 210px) {
  .container #contact.contact h3 {
    word-break: break-all;
  }
}
@media screen and (min-width: 451px) and (max-width: 800px) {
  .container #contact.contact h3:first-of-type {
    padding: 0em 0.5em;
  }
  .container #contact.contact h4 {
    width: 90%;
    margin: auto;
    padding-bottom: 4em;
    font-size: 2rem;
  }
  .container #contact.contact .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #efefef;
  }
  .container #contact.contact .contact-container .contact-form {
    width: 100%;
    height: auto;
    padding: 5em 10% 2.5em 10%;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-form h3 {
    margin-bottom: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
  }
  .container #contact.contact .contact-container .contact-form h4 {
    width: 100%;
    padding-bottom: 3em;
  }
  .container #contact.contact .contact-container .contact-form form {
    display: flex;
    flex-direction: column;
  }
  .container #contact.contact .contact-container .contact-form form textarea, .container #contact.contact .contact-container .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
    text-align: left;
  }
  .container #contact.contact .contact-container .contact-form form label {
    padding: 1em 0em 0.5em;
    text-align: left;
    font-size: 2rem;
  }
  .container #contact.contact .contact-container .contact-form form ::-moz-placeholder {
    font-size: 2rem;
    text-align: left;
    padding-left: 0.5em;
  }
  .container #contact.contact .contact-container .contact-form form ::placeholder {
    font-size: 2rem;
    text-align: left;
    padding-left: 0.5em;
  }
  .container #contact.contact .contact-container .contact-form form button {
    align-self: center;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    width: 10em;
    border-radius: 0.5em;
    font-size: 1.5rem;
    margin-right: 0em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    margin-top: 5em;
    box-shadow: 0px 2px 4px rgba(161, 165, 161, 0.718);
    font-size: 2rem;
  }
  .container #contact.contact .contact-container .contact-me {
    width: 100%;
    background-color: #16181a;
    padding: 2.5em 0% 2.5em;
  }
  .container #contact.contact .contact-container .contact-me h3:first-of-type {
    display: none;
  }
  .container #contact.contact .contact-container .contact-me h4:first-of-type {
    display: none;
  }
  .container #contact.contact .contact-container .contact-me h3:last-of-type {
    margin-bottom: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container #contact.contact .contact-container .contact-me h4:last-of-type {
    margin: auto;
    padding-bottom: 8em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 3em;
    font-size: 2rem;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-icon img {
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-number-details {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .email-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .email-icon img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
}
@media screen and (min-width: 451px) and (max-width: 800px) and (max-width: 335px) {
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .my-email {
    word-break: break-all;
  }
}
@media screen and (min-width: 451px) and (max-width: 800px) {
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .my-email {
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .address-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .address-icon img {
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .local-address {
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .social-links2 {
    display: none;
  }
  .container .dev-process {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 2em;
    transition: height 0.3s ease;
    font-size: 2rem;
    overflow: hidden;
  }
  .container .dev-process .icon {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: scale 0.1s ease;
    margin: auto;
  }
  .container .dev-process .icon img {
    width: 50%;
    height: auto;
    padding: 0.2em 0em;
    text-align: center;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .container .dev-process p {
    width: 100%;
    padding: 3em 5% 2em;
    background-color: #16181a;
    color: #efefef;
    bottom: -100%;
    right: 0;
    z-index: -1;
    text-align: justify;
  }
  .container .dev-process.open {
    height: auto;
    transition: height 0.3s ease;
  }
  .container .dev-process.open .icon img {
    transform: rotate(180deg);
    transition-delay: 0.1s;
  }
  .container footer {
    background-color: #16181a;
    color: #efefef;
    padding: 0em 1.5em;
    box-shadow: 0px -5px 10px 0px #3d3d3d;
  }
  .container footer .footer-container {
    padding: 2em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
  }
  .container footer .footer-container .sitemap {
    display: none;
  }
  .container footer .footer-container .social-links {
    display: none;
  }
  .container footer .footer-container address {
    display: none;
  }
  .container footer .footer-container .hire {
    display: flex;
    color: #FBBF00;
    font-weight: 600;
    margin-bottom: 2em;
    font-size: 2rem;
  }
  .container footer .footer-container .legal-regulations {
    font-size: 2rem;
  }
  .container footer .footer-container .legal-regulations strong {
    color: #FBBF00;
    font-weight: 600;
  }
  .container footer .footer-container .legal-regulations #zip {
    color: #efefef;
    font-weight: 300;
  }
}
@media screen and (min-width: 801px) and (max-width: 1080px) {
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Start of header */
    /* End of Header Section */
    /* Start of Hero Section */
    /* End of Hero Section */
    /* Start of Project Section */
    /* End of Project Section */
    /* Start of About Section */
    /* End of About Section */
    /* Start of Skills Section */
    /* End of Skills Section */
    /* Start of Contact Section */
    /* End of Contact Section */
    /* Start of Dropdown portion */
    /* End of Dropdown portion */
    /* Start of Footer */
    /* End of Footer */
  }
  .container header {
    background-color: #16181a;
    box-shadow: 0px 2px 4px rgba(87, 87, 87, 0.4);
    padding: 0.75em 0 0.75em 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .container header .nav-section {
    align-items: center;
    color: #efefef;
    display: flex;
    margin: auto;
    width: 90%;
  }
  .container header .nav-section #logo {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container header .nav-section #logo img {
    max-width: 33px;
    height: auto;
    min-width: 33px;
    transition: transform 0.3s ease;
  }
  .container header .nav-section #menu-toggle {
    display: none;
  }
  .container header .nav-section .hamburger {
    display: none;
  }
  .container header .nav-section .slide-menu {
    display: flex;
    justify-content: flex-end;
    font-size: 2rem;
    width: 100%;
  }
  .container header .nav-section .slide-menu .nav-bar-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container header .nav-section .slide-menu .nav-bar-links li a {
    padding: 0.5em 0em 0.5em 0.5em;
    margin-left: 1em;
    color: #efefef;
    transition: color 0.3s ease;
    font-size: 2rem;
  }
  .container header .nav-section .slide-menu .nav-bar-links .menu-send-message {
    display: none;
  }
  .container header .nav-section .slide-menu .my-address {
    display: none;
  }
  .container header .nav-section .mobile-footer {
    display: none;
  }
  .container .hero-section {
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(220, 220, 220), rgb(186, 186, 186), rgb(160, 160, 160));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 4em 0em;
  }
  .container .hero-section .hero-container {
    color: #efefef;
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    width: 90%;
    height: auto;
    color: #16181a;
  }
  .container .hero-section .hero-container .hero-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .container .hero-section .hero-container .hero-details p, .container .hero-section .hero-container .hero-details h2 {
    line-height: 1.7em;
    margin-bottom: 0.5em;
    text-align: left;
    font-size: 2rem;
  }
  .container .hero-section .hero-container .hero-details p:nth-child(2), .container .hero-section .hero-container .hero-details h2:nth-child(2) {
    font-style: italic;
    animation: fadeIn 1.6s ease-in-out forwards;
  }
  .container .hero-section .hero-container .hero-details p + h2, .container .hero-section .hero-container .hero-details h2 + h2 {
    margin-top: 1em;
    font-size: 2rem;
    animation: fadeIn 1.3s ease-in-out forwards;
  }
  .container .hero-section .hero-container .hero-details h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: left;
    animation: fadeIn 1s ease-in-out forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .container .hero-section .hero-container .hero-details .buttons {
    display: none;
  }
  .container .hero-section .hero-container .hero-img {
    opacity: 0;
    margin-top: 2em;
    margin-bottom: 4em;
    max-width: 50%;
    min-width: 25%;
    height: auto;
    animation: fadeInAndBlurRemoval 1s ease-in-out 0.5s forwards;
  }
  @keyframes fadeInAndBlurRemoval {
    from {
      opacity: 0;
      filter: blur(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
  .container .hero-section #buttons2 {
    display: none;
  }
  .container #projects.projects-section {
    background-color: rgb(160, 160, 160);
    display: flex;
    flex-direction: column;
    padding: 0em 0em 5em;
    color: #16181a;
  }
  .container #projects.projects-section h3 {
    font-size: 3.5rem;
    animation: fadeIn 2s ease-in-out forwards;
  }
  .container #projects.projects-section h4 {
    margin-top: 0.5em;
    margin-bottom: 3em;
    font-size: 2rem;
    animation: fadeIn 2.3s ease-in-out forwards;
  }
  .container #projects.projects-section .featured-projects {
    overflow: hidden;
    width: 100%;
  }
  .container #projects.projects-section .featured-projects .carousel {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .container #projects.projects-section .featured-projects .carousel::-webkit-scrollbar {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a,
  .container #projects.projects-section .featured-projects .carousel .project-b,
  .container #projects.projects-section .featured-projects .carousel .project-c {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 90%;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a a,
  .container #projects.projects-section .featured-projects .carousel .project-b a,
  .container #projects.projects-section .featured-projects .carousel .project-c a {
    display: block; /* Make the link a block-level element to cover the entire image */
    text-decoration: none; /* Remove default link underline */
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img,
  .container #projects.projects-section .featured-projects .carousel .project-b img,
  .container #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    filter: blur(10px); /* Adjust the blur amount */
  }
  .container #projects.projects-section .featured-projects .carousel .project-a p,
  .container #projects.projects-section .featured-projects .carousel .project-b p,
  .container #projects.projects-section .featured-projects .carousel .project-c p {
    display: flex;
    text-align: center;
    font-size: 2rem;
    width: 50%;
    justify-content: center;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  .container #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  .container #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  .container #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  .container #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  .container #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: none;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a:hover {
    background-color: transparent;
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img {
    transform: scale(1);
  }
  .container #projects.projects-section .featured-projects .carousel .project-a img {
    max-width: 50%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(0px); /* Adjust the blur amount */
  }
  .container #projects.projects-section .featured-projects .indicators {
    display: flex;
    justify-content: center;
    margin-top: 3em;
    margin-bottom: 1em;
  }
  .container #projects.projects-section .featured-projects .indicators .indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
  }
  .container #projects.projects-section .featured-projects .indicators .indicator.active {
    background-color: #16181a;
  }
  .container #projects.projects-section h4:nth-of-type(2) {
    display: none;
  }
  .container #projects.projects-section .personal-projects {
    display: none;
  }
  .container #projects.projects-section h4:last-of-type {
    display: none;
  }
  .container #aboutmyself.aboutmyself {
    display: flex;
    flex-direction: column;
    background-color: #303030;
    color: #efefef;
    padding: 5em 5% 7em;
    background-color: #16181a;
    width: 100%;
    margin: auto;
  }
  .container #aboutmyself.aboutmyself h3 {
    font-size: 3.5rem;
  }
  .container #aboutmyself.aboutmyself h4 {
    margin: 0.5em 0em 3em;
    font-size: 2rem;
  }
  .container #aboutmyself.aboutmyself .about-me-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .container #aboutmyself.aboutmyself .about-me-container .image-container {
    display: flex;
    margin-bottom: 2em;
    width: 100%;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version {
    display: flex;
    width: 100%;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version p {
    line-height: 1.5;
    margin-top: 3em;
    padding-bottom: 1.5em;
    text-align: justify;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions {
    width: 100%;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions p {
    padding-bottom: 1.5em;
    line-height: 1.5;
    text-align: justify;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .read-more {
    color: #FBBF00;
    font-weight: 600;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .read-more:hover {
    color: #eaeaea;
    cursor: pointer;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions img {
    display: none;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version {
    width: 100%;
    margin-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 1em;
    border-radius: 10px;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5em;
    color: #efefef;
    transition: color 0.3s ease;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img {
    max-width: 4%;
    height: auto;
    padding: 0.5em 0em;
  }
  .container #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img:hover {
    cursor: pointer;
  }
  .container .skills {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em 5em;
    background-color: #16181a;
    color: #efefef;
  }
  .container .skills p {
    font-size: 3.5rem;
    margin-bottom: 2em;
  }
  .container .skills .tech-skills-a {
    display: flex;
    width: 100%;
    height: auto;
  }
  .container .skills .tech-skills-a .group-a, .container .skills .tech-skills-a .group-b {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-a .group-a img, .container .skills .tech-skills-a .group-b img {
    padding: 1em;
    width: 100%;
  }
  .container .skills .tech-skills-b {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
  }
  .container .skills .tech-skills-b .group-c, .container .skills .tech-skills-b .group-d {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container .skills .tech-skills-b .group-c img, .container .skills .tech-skills-b .group-d img {
    padding: 1em;
    width: 100%;
  }
  .container #contact.contact {
    background-color: #efefef;
    align-self: center;
    padding: 3em 0em 0em 0em;
  }
  .container #contact.contact h3 {
    margin-bottom: 0.25em;
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 801px) and (max-width: 1080px) and (max-width: 210px) {
  .container #contact.contact h3 {
    word-break: break-all;
  }
}
@media screen and (min-width: 801px) and (max-width: 1080px) {
  .container #contact.contact h3:first-of-type {
    padding: 0em 0.5em;
    font-size: 3.5rem;
  }
  .container #contact.contact h4 {
    width: 90%;
    margin: auto;
    padding-bottom: 4em;
    font-size: 2rem;
  }
  .container #contact.contact .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #efefef;
  }
  .container #contact.contact .contact-container .contact-form {
    width: 100%;
    padding: 5em 10% 2.5em 10%;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-form h3 {
    margin-bottom: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
  }
  .container #contact.contact .contact-container .contact-form h4 {
    width: 100%;
    padding-bottom: 3em;
  }
  .container #contact.contact .contact-container .contact-form form {
    display: flex;
    flex-direction: column;
  }
  .container #contact.contact .contact-container .contact-form form textarea, .container #contact.contact .contact-container .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
    text-align: left;
  }
  .container #contact.contact .contact-container .contact-form form label {
    padding: 1em 0em 0.5em;
    text-align: left;
    font-size: 2rem;
  }
  .container #contact.contact .contact-container .contact-form form ::-moz-placeholder {
    font-size: 2rem;
    text-align: left;
    padding-left: 0.5em;
  }
  .container #contact.contact .contact-container .contact-form form ::placeholder {
    font-size: 2rem;
    text-align: left;
    padding-left: 0.5em;
  }
  .container #contact.contact .contact-container .contact-form form button {
    align-self: center;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    width: 10em;
    border-radius: 0.5em;
    font-size: 1.5rem;
    margin-right: 0em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    margin-top: 5em;
    box-shadow: 0px 2px 4px rgba(161, 165, 161, 0.718);
    font-size: 2rem;
  }
  .container #contact.contact .contact-container .contact-me {
    width: 100%;
    background-color: #16181a;
    padding: 2.5em 0% 2.5em;
  }
  .container #contact.contact .contact-container .contact-me h3:first-of-type {
    display: none;
  }
  .container #contact.contact .contact-container .contact-me h4:first-of-type {
    display: none;
  }
  .container #contact.contact .contact-container .contact-me h3:last-of-type {
    margin-bottom: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container #contact.contact .contact-container .contact-me h4:last-of-type {
    margin: auto;
    padding-bottom: 8em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 3em;
    font-size: 2rem;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-icon img {
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-phone .phone-number-details {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .email-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .email-icon img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
}
@media screen and (min-width: 801px) and (max-width: 1080px) and (max-width: 335px) {
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .my-email {
    word-break: break-all;
  }
}
@media screen and (min-width: 801px) and (max-width: 1080px) {
  .container #contact.contact .contact-container .contact-me .contact-links .business-email .my-email {
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1em 1em;
    width: 100%;
    margin: auto;
    position: relative;
    border: 2px solid rgba(251, 192, 0, 0.2470588235);
    border-radius: 10px;
    margin-bottom: 4em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .address-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0em 1em;
    position: absolute;
    top: -2em;
    background-color: #000000;
    background-color: #16181a;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .address-icon img {
    max-width: 100%;
    height: auto;
    min-width: 40px;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .address2 .local-address {
    padding: 1em;
  }
  .container #contact.contact .contact-container .contact-me .contact-links .social-links2 {
    display: none;
  }
  .container .dev-process {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 2em;
    transition: height 0.3s ease;
    font-size: 2rem;
    overflow: hidden;
  }
  .container .dev-process .icon {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: scale 0.1s ease;
    margin: auto;
  }
  .container .dev-process .icon img {
    width: 50%;
    height: auto;
    padding: 0.2em 0em;
    text-align: center;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .container .dev-process p {
    width: 100%;
    padding: 3em 5% 2em;
    background-color: #16181a;
    color: #efefef;
    bottom: -100%;
    right: 0;
    z-index: -1;
    text-align: justify;
  }
  .container .dev-process.open {
    height: auto;
    transition: height 0.3s ease;
  }
  .container .dev-process.open .icon img {
    transform: rotate(180deg);
    transition-delay: 0.1s;
  }
  .container footer {
    background-color: #16181a;
    color: #efefef;
    padding: 0em 1.5em;
    box-shadow: 0px -5px 10px 0px #3d3d3d;
  }
  .container footer .footer-container {
    padding: 2em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
  }
  .container footer .footer-container .sitemap {
    display: none;
  }
  .container footer .footer-container .social-links {
    display: none;
  }
  .container footer .footer-container address {
    display: none;
  }
  .container footer .footer-container .hire {
    display: flex;
    color: #FBBF00;
    font-weight: 600;
    margin-bottom: 2em;
    font-size: 2rem;
  }
  .container footer .footer-container .legal-regulations {
    font-size: 2rem;
  }
  .container footer .footer-container .legal-regulations strong {
    color: #FBBF00;
    font-weight: 600;
  }
  .container footer .footer-container .legal-regulations #zip {
    color: #efefef;
    font-weight: 300;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  /* Start of header */
  header {
    background-color: #16181a;
    box-shadow: 0px 2px 4px rgba(87, 87, 87, 0.4);
    padding: 0.75em 0 0.75em 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  header .nav-section {
    align-items: center;
    color: #efefef;
    display: flex;
    margin: auto;
    width: 90%;
  }
  header .nav-section #logo {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .nav-section #logo img {
    max-width: 33px;
    height: auto;
    min-width: 33px;
    transition: transform 0.3s ease;
  }
  header .nav-section #logo:hover img {
    cursor: pointer;
    transform: rotate(90deg);
  }
  header .nav-section #menu-toggle {
    display: none;
  }
  header .nav-section .hamburger {
    display: none;
  }
  header .nav-section .slide-menu {
    display: flex;
    justify-content: flex-end;
    font-size: 2rem;
    width: 100%;
  }
  header .nav-section .slide-menu .nav-bar-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .nav-section .slide-menu .nav-bar-links li a {
    padding: 0.5em 0em 0.5em 0.5em;
    margin-left: 1em;
    color: #efefef;
    transition: color 0.3s ease;
    font-size: 2rem;
  }
  header .nav-section .slide-menu .nav-bar-links li a:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  header .nav-section .slide-menu .nav-bar-links .menu-send-message {
    display: none;
  }
  header .nav-section .slide-menu .my-address {
    display: none;
  }
  header .nav-section .mobile-footer {
    display: none;
  }
  /* End of Header Section */
  /* Start of Hero Section */
  .hero-section {
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(220, 220, 220), rgb(186, 186, 186), rgb(160, 160, 160));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 4em 0em;
  }
  .hero-section .hero-container {
    color: #efefef;
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    width: 80%;
    height: auto;
    color: #16181a;
  }
  .hero-section .hero-container .hero-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 2em;
  }
  .hero-section .hero-container .hero-details p, .hero-section .hero-container .hero-details h2 {
    line-height: 1.7em;
    margin-bottom: 0.5em;
    text-align: left;
    font-size: 2.5rem;
  }
  .hero-section .hero-container .hero-details p:nth-child(2), .hero-section .hero-container .hero-details h2:nth-child(2) {
    font-style: italic;
    animation: fadeIn 1.6s ease-in-out forwards;
  }
  .hero-section .hero-container .hero-details p + h2, .hero-section .hero-container .hero-details h2 + h2 {
    margin-top: 2em;
    font-size: 2rem;
    animation: fadeIn 1.3s ease-in-out forwards;
  }
  .hero-section .hero-container .hero-details h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: left;
    animation: fadeIn 1s ease-in-out forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-section .hero-container .hero-details .buttons {
    display: none;
  }
  .hero-section .hero-container .hero-img {
    opacity: 0;
    margin-top: 2em;
    margin-bottom: 4em;
    max-width: 40%;
    height: auto;
    animation: fadeInAndBlurRemoval 1s ease-in-out 0.5s forwards;
  }
  @keyframes fadeInAndBlurRemoval {
    from {
      opacity: 0;
      filter: blur(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
  .hero-section #buttons2 {
    display: none;
  }
  /* End of Hero Section */
  /* Start of Project Section */
  #projects.projects-section {
    background-color: rgb(160, 160, 160);
    padding: 0em 0em 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5em;
  }
  #projects.projects-section h3 {
    margin-bottom: 1em;
    animation: fadeIn 2s ease-in-out forwards;
  }
  #projects.projects-section h4 {
    margin-bottom: 4em;
    font-size: 2.5rem;
    animation: fadeIn 2.3s ease-in-out forwards;
  }
  #projects.projects-section .featured-projects {
    position: relative;
    overflow: hidden;
    min-width: 80%;
  }
  #projects.projects-section .featured-projects .carousel {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
  }
  #projects.projects-section .featured-projects .carousel .project-a,
  #projects.projects-section .featured-projects .carousel .project-b,
  #projects.projects-section .featured-projects .carousel .project-c {
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    width: 100%;
  }
  #projects.projects-section .featured-projects .carousel .project-a.project-b,
  #projects.projects-section .featured-projects .carousel .project-b.project-b,
  #projects.projects-section .featured-projects .carousel .project-c.project-b {
    margin: 0em 1em;
  }
  #projects.projects-section .featured-projects .carousel .project-a:hover,
  #projects.projects-section .featured-projects .carousel .project-b:hover,
  #projects.projects-section .featured-projects .carousel .project-c:hover {
    background-color: rgba(185, 185, 185, 0.2392156863);
    cursor: pointer;
  }
  #projects.projects-section .featured-projects .carousel .project-a:hover img,
  #projects.projects-section .featured-projects .carousel .project-b:hover img,
  #projects.projects-section .featured-projects .carousel .project-c:hover img {
    transform: scale(1.2);
  }
  #projects.projects-section .featured-projects .carousel .project-a img,
  #projects.projects-section .featured-projects .carousel .project-b img,
  #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(10px); /* Adjust the blur amount */
  }
  #projects.projects-section .featured-projects .carousel .project-a p,
  #projects.projects-section .featured-projects .carousel .project-b p,
  #projects.projects-section .featured-projects .carousel .project-c p {
    display: flex;
    text-align: center;
    font-size: 2rem;
    width: 90%;
    justify-content: center;
    height: 10em;
    text-align: center;
  }
  #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
    opacity: 0;
    position: absolute;
    flex-direction: column;
    margin-left: 50%;
    background-color: #303030;
    font-size: 1.6rem;
    padding: 8em 0em;
    z-index: 2;
    transition: opacity 0.3s ease;
    width: 50%;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0.5em 0.5em;
    background-color: #303030;
    width: 100%;
    transition: background-color 0.3s ease;
    color: #efefef;
    z-index: 2;
    font-size: 1.6rem;
  }
  /* End of Project Section */
  /* Start of About Section */
  /* End of About Section */
  /* Start of Skills Section */
  /* End of Skills Section */
  /* Start of Contact Section */
  /* End of Contact Section */
  /* Start of Footer */
  /* End of Footer */
}
@media screen and (min-width: 1081px) and (max-width: 1440px) and (min-width: 1285px) {
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a:hover,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a:hover,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a:hover {
    cursor: pointer;
    color: #fbc000;
  }
  #projects.projects-section .featured-projects .carousel .project-a:hover {
    background-color: transparent;
  }
  #projects.projects-section .featured-projects .carousel .project-a img {
    transform: scale(1);
  }
  #projects.projects-section .featured-projects .carousel .project-a img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(0px); /* Adjust the blur amount */
  }
  #projects.projects-section h4:nth-of-type(2),
  #projects.projects-section h4:nth-of-type(3) {
    display: none;
  }
  #projects.projects-section .personal-projects {
    display: none;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1440px) and (min-width: 1081px) and (max-width: 1440px) and (min-height: 601px) and (max-height: 800px) and (-webkit-min-device-pixel-ratio: 1.5625), screen and (min-width: 1081px) and (max-width: 1440px) and (min-width: 1081px) and (max-width: 1440px) and (min-height: 601px) and (max-height: 800px) and (min-resolution: 150dpi) {
  #projects.projects-section {
    height: auto;
    background-color: #eaeaea;
    padding: 5em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #projects.projects-section h4 {
    margin-bottom: 2em;
  }
  #projects.projects-section .featured-projects {
    overflow: hidden;
    width: 100%;
    height: auto; /* Adjust the height as needed */
  }
  #projects.projects-section .featured-projects .carousel {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  #projects.projects-section .featured-projects .carousel::-webkit-scrollbar {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a,
  #projects.projects-section .featured-projects .carousel .project-b,
  #projects.projects-section .featured-projects .carousel .project-c {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 1em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 90%;
  }
  #projects.projects-section .featured-projects .carousel .project-a img,
  #projects.projects-section .featured-projects .carousel .project-b img,
  #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0em;
  }
  #projects.projects-section .featured-projects .carousel .project-a p,
  #projects.projects-section .featured-projects .carousel .project-b p,
  #projects.projects-section .featured-projects .carousel .project-c p {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: none;
  }
  #projects.projects-section .featured-projects .indicators {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    height: 10px; /* Set a specific height for indicators */
  }
  #projects.projects-section .featured-projects .indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
  }
  #projects.projects-section .featured-projects .indicators .indicator.active {
    background-color: black;
  }
  #projects.projects-section h4:nth-of-type(2) {
    display: none;
  }
  #projects.projects-section .personal-projects {
    display: none;
  }
  #projects.projects-section h4:last-of-type {
    display: none;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  #aboutmyself.aboutmyself {
    display: flex;
    flex-direction: column;
    color: #efefef;
    padding: 5em 5% 5em;
    background-color: #16181a;
    width: 100%;
    margin: auto;
  }
  #aboutmyself.aboutmyself h3 {
    margin-bottom: 1em;
  }
  #aboutmyself.aboutmyself .about-me-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5em;
  }
  #aboutmyself.aboutmyself .about-me-container .image-container {
    max-width: 50%;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    padding-left: 3em;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version {
    display: flex;
    width: 100%;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version p {
    padding-bottom: 1.5em;
    text-align: justify;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions {
    width: 100%;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions p {
    padding-bottom: 1.5em;
    text-align: justify;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .read-more {
    color: #FBBF00;
    font-weight: 600;
    transition: margin-left 0.3s ease;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .read-more:hover {
    margin-left: 1em;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions img {
    display: none;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions a {
    color: #FBBF00;
    font-weight: 600;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions a:hover {
    cursor: pointer;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version {
    width: 50%;
    margin-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 120em;
    left: 25%;
    right: 25%;
    display: none;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #efefef;
    width: 65%;
    padding: 1em;
    border-radius: 10px;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5em;
    color: #efefef;
    transition: color 0.3s ease;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img {
    max-width: 4%;
    height: auto;
    min-width: 15px;
    padding: 0.5em 0em;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img:hover {
    cursor: pointer;
  }
  .skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    top: 130em;
    left: 5%;
    right: 5%;
    background-color: #16181a;
    color: #efefef;
    padding-bottom: 1em;
  }
  .skills p {
    font-size: 3rem;
    margin-bottom: 2em;
  }
  .skills .tech-skills-a {
    display: flex;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .skills .tech-skills-a .group-a, .skills .tech-skills-a .group-b {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    padding: 1em;
  }
  .skills .tech-skills-a .group-a:is(.group-a), .skills .tech-skills-a .group-b:is(.group-a) {
    padding-right: 0em;
  }
  .skills .tech-skills-a .group-a img, .skills .tech-skills-a .group-b img {
    padding: 0em 1em;
    width: 90%;
  }
  .skills .tech-skills-b {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
  }
  .skills .tech-skills-b .group-c, .skills .tech-skills-b .group-d {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    padding: 1em;
    margin-bottom: 3em;
  }
  .skills .tech-skills-b .group-c:is(.group-c), .skills .tech-skills-b .group-d:is(.group-c) {
    padding-right: 0em;
  }
  .skills .tech-skills-b .group-c img, .skills .tech-skills-b .group-d img {
    padding: 0em 1em;
    width: 90%;
  }
  #contact.contact {
    background-color: #efefef;
    align-self: center;
    padding: 5em 0em 0em 0em;
  }
  #contact.contact h3 {
    margin-bottom: 0.5em;
    font-weight: 600;
    text-align: center;
  }
  #contact.contact h4 {
    width: 90%;
    text-align: center;
    margin: auto;
    padding-bottom: 4em;
  }
  #contact.contact .contact-container {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: left;
  }
  #contact.contact .contact-container .contact-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #efefef;
    width: 50%;
    text-align: left;
    background-color: #16181a;
    padding: 8em 10% 5em 4em;
  }
  #contact.contact .contact-container .contact-me h3:first-of-type {
    display: none;
  }
  #contact.contact .contact-container .contact-me h4:first-of-type {
    display: none;
  }
  #contact.contact .contact-container .contact-me h4:last-of-type {
    margin: 0em;
    padding-bottom: 6em;
  }
  #contact.contact .contact-container .contact-me .send-message {
    display: none;
    padding: 0.5em;
    text-align: left;
    align-self: center;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    width: 10em;
    border-radius: 2em;
    font-size: 2rem;
    margin-right: 0em;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .business-email, #contact.contact .contact-container .contact-me .business-phone {
    display: flex;
    align-items: center;
    padding: 1em;
  }
  #contact.contact .contact-container .contact-me .business-email .email-icon, #contact.contact .contact-container .contact-me .business-phone .email-icon {
    max-width: 80%;
    height: auto;
    padding: 0em 1.5em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .business-email .email-icon img, #contact.contact .contact-container .contact-me .business-phone .email-icon img {
    display: flex;
    align-items: center;
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .business-email a, #contact.contact .contact-container .contact-me .business-phone a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    transition: margin-left 0.3s ease;
  }
  #contact.contact .contact-container .contact-me .business-email a:hover, #contact.contact .contact-container .contact-me .business-phone a:hover {
    cursor: pointer;
    margin-left: 1em;
  }
  #contact.contact .contact-container .contact-me .business-email .phone-icon, #contact.contact .contact-container .contact-me .business-phone .phone-icon {
    display: flex;
    padding: 0em 1.5em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .business-email .phone-icon img, #contact.contact .contact-container .contact-me .business-phone .phone-icon img {
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .business-email .phone-number-details, #contact.contact .contact-container .contact-me .business-phone .phone-number-details {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #contact.contact .contact-container .contact-me .address2 {
    display: flex;
    padding: 1em 1em 1em 1em;
    font-weight: 100;
  }
  #contact.contact .contact-container .contact-me .address2 img {
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .address2 strong {
    transition: margin-left 0.3s ease-in-out;
  }
  #contact.contact .contact-container .contact-me .address2 strong:hover {
    cursor: pointer;
    margin-left: 1em;
  }
  #contact.contact .contact-container .contact-me .address2 .address-icon {
    display: flex;
    align-items: center;
    padding: 0em 1.5em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .social-links2 {
    display: flex;
    margin-bottom: 3em;
    padding: 1em 1em 1em 1em;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon {
    display: flex;
    align-items: center;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon a:first-of-type, #contact.contact .contact-container .contact-me .social-links2 .social-icon a:last-of-type {
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale 0.2s ease-in-out;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon a:first-of-type:hover, #contact.contact .contact-container .contact-me .social-links2 .social-icon a:last-of-type:hover {
    cursor: pointer;
    scale: 1.15;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon a:first-of-type img, #contact.contact .contact-container .contact-me .social-links2 .social-icon a:last-of-type img {
    width: 60%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .social-links2 .chat-icon {
    display: flex;
    align-items: center;
    padding: 0em 0.9em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .social-links2 .chat-icon img {
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-details2 {
    display: none;
  }
  #contact.contact .contact-container .contact-form {
    width: 50%;
    height: auto;
    padding: 8em 4em 5em 10%;
    background-color: #16181a;
    color: #efefef;
  }
  #contact.contact .contact-container .contact-form h4 {
    margin: auto;
    margin-bottom: 0em;
  }
  #contact.contact .contact-container .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  #contact.contact .contact-container .contact-form form textarea, #contact.contact .contact-container .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  #contact.contact .contact-container .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
  }
  #contact.contact .contact-container .contact-form form button {
    margin-top: 2em;
    text-align: center;
    height: 54px;
    max-width: 200px;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    border-radius: 2em;
  }
  #contact.contact .contact-container .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
  .dev-process {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    height: 2em;
    transition: height 0.3s ease;
    padding: 0em 10%;
    background-color: #16181a;
  }
  .dev-process .icon {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: scale 0.1s ease;
    margin: auto;
  }
  .dev-process .icon img {
    width: 60%;
    height: auto;
    padding: 0.3em 0em;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .dev-process .icon:hover {
    cursor: pointer;
  }
  .dev-process.open {
    height: auto;
    transition: height 0.3s ease;
  }
  .dev-process.open .icon img {
    transform: rotate(180deg);
    transition-delay: 0.1s;
  }
  .dev-process p {
    width: 100%;
    padding: 3em 5% 2em;
    background-color: #16181a;
    color: #efefef;
  }
  footer {
    background-color: #16181a;
    color: #efefef;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0em 5% 0em 5%;
    transition: position 0.3s ease;
    z-index: 1;
    box-shadow: 0px -5px 10px 0px #3d3d3d;
  }
  footer .footer-container {
    padding: 1em 0em;
    display: flex;
    justify-content: flex-start;
  }
  footer .footer-container address {
    display: none;
  }
  footer .footer-container .sitemap {
    display: none;
    justify-content: center;
    font-size: 1.5rem;
    align-items: center;
    color: #efefef;
    transition: color 0.3s ease;
  }
  footer .footer-container .sitemap:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  footer .footer-container .legal-regulations {
    font-size: 1.5rem;
    text-align: center;
    width: 60%;
    right: 20%;
  }
  footer .footer-container .legal-regulations strong {
    color: #FBBF00;
    transition: color 0.3s ease;
  }
  footer .footer-container .legal-regulations strong:hover {
    cursor: pointer;
    color: #efefef;
  }
  footer .footer-container .social-links {
    display: none;
  }
  footer .footer-container .hire {
    display: flex;
    justify-content: flex-start;
    font-size: 1.5rem;
    align-items: center;
    width: 20%;
  }
  footer .footer-container .hire strong {
    color: #FBBF00;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  footer .footer-container .hire strong:hover {
    cursor: pointer;
    color: #efefef;
  }
  footer.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1441px) {
  /* Start of header */
  header {
    background-color: #16181a;
    box-shadow: 0px 2px 4px rgba(87, 87, 87, 0.4);
    padding: 0.75em 15% 0.75em 15%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  header .nav-section {
    align-items: center;
    color: #efefef;
    display: flex;
    margin: auto;
    width: 90%;
  }
  header .nav-section #logo {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .nav-section #logo img {
    max-width: 33px;
    height: auto;
    min-width: 33px;
    transition: transform 0.3s ease;
  }
  header .nav-section #logo:hover img {
    cursor: pointer;
    transform: rotate(90deg);
  }
  header .nav-section #menu-toggle {
    display: none;
  }
  header .nav-section .hamburger {
    display: none;
  }
  header .nav-section .slide-menu {
    display: flex;
    justify-content: flex-end;
    font-size: 2rem;
    width: 100%;
  }
  header .nav-section .slide-menu .nav-bar-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .nav-section .slide-menu .nav-bar-links li a {
    padding: 0.5em 0em 0.5em 0.5em;
    margin-left: 1em;
    color: #efefef;
    transition: color 0.3s ease;
    font-size: 2rem;
  }
  header .nav-section .slide-menu .nav-bar-links li a:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  header .nav-section .slide-menu .nav-bar-links .menu-send-message {
    display: none;
  }
  header .nav-section .slide-menu .my-address {
    display: none;
  }
  header .nav-section .mobile-footer {
    display: none;
  }
  /* End of Header Section */
  /* Start of Hero Section */
  .hero-section {
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(220, 220, 220), rgb(186, 186, 186), rgb(160, 160, 160));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 4em 0em;
  }
  .hero-section .hero-container {
    color: #efefef;
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    width: 60%;
    height: auto;
    color: #16181a;
  }
  .hero-section .hero-container .hero-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 2em;
  }
  .hero-section .hero-container .hero-details p, .hero-section .hero-container .hero-details h2 {
    line-height: 1.7em;
    margin-bottom: 0.5em;
    text-align: left;
  }
  .hero-section .hero-container .hero-details p:nth-child(2), .hero-section .hero-container .hero-details h2:nth-child(2) {
    font-style: italic;
    animation: fadeIn 1.6s ease-in-out forwards;
  }
  .hero-section .hero-container .hero-details p + h2, .hero-section .hero-container .hero-details h2 + h2 {
    margin-top: 2em;
    animation: fadeIn 1.3s ease-in-out forwards;
  }
  .hero-section .hero-container .hero-details h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: left;
    animation: fadeIn 1s ease-in-out forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-section .hero-container .hero-details .buttons {
    display: none;
  }
  .hero-section .hero-container .hero-img {
    opacity: 0;
    margin-top: 2em;
    margin-bottom: 4em;
    max-width: 40%;
    height: auto;
    animation: fadeInAndBlurRemoval 1s ease-in-out 0.5s forwards;
  }
  @keyframes fadeInAndBlurRemoval {
    from {
      opacity: 0;
      filter: blur(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
  .hero-section #buttons2 {
    display: none;
  }
  /* End of Hero Section */
  /* Start of Project Section */
  #projects.projects-section {
    background-color: rgb(160, 160, 160);
    padding: 0em 0em 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5em;
  }
  #projects.projects-section h3 {
    margin-bottom: 1em;
    font-size: 3rem;
    animation: fadeIn 2s ease-in-out forwards;
  }
  #projects.projects-section h4 {
    margin-bottom: 4em;
    font-size: 2rem;
    animation: fadeIn 2.3s ease-in-out forwards;
  }
  #projects.projects-section .featured-projects {
    position: relative;
    overflow: hidden;
    min-width: 80%;
  }
  #projects.projects-section .featured-projects .carousel {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: auto;
  }
  #projects.projects-section .featured-projects .carousel .project-a,
  #projects.projects-section .featured-projects .carousel .project-b,
  #projects.projects-section .featured-projects .carousel .project-c {
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    width: 100%;
  }
  #projects.projects-section .featured-projects .carousel .project-a.project-b,
  #projects.projects-section .featured-projects .carousel .project-b.project-b,
  #projects.projects-section .featured-projects .carousel .project-c.project-b {
    margin: 0em 1em;
  }
  #projects.projects-section .featured-projects .carousel .project-a:hover,
  #projects.projects-section .featured-projects .carousel .project-b:hover,
  #projects.projects-section .featured-projects .carousel .project-c:hover {
    background-color: rgba(185, 185, 185, 0.2392156863);
    cursor: pointer;
  }
  #projects.projects-section .featured-projects .carousel .project-a:hover img,
  #projects.projects-section .featured-projects .carousel .project-b:hover img,
  #projects.projects-section .featured-projects .carousel .project-c:hover img {
    transform: scale(1.2);
  }
  #projects.projects-section .featured-projects .carousel .project-a img,
  #projects.projects-section .featured-projects .carousel .project-b img,
  #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(10px); /* Adjust the blur amount */
  }
  #projects.projects-section .featured-projects .carousel .project-a p,
  #projects.projects-section .featured-projects .carousel .project-b p,
  #projects.projects-section .featured-projects .carousel .project-c p {
    display: flex;
    text-align: center;
    font-size: 2rem;
    width: 90%;
    justify-content: center;
    height: 10em;
    text-align: center;
  }
  #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
    opacity: 0;
    position: absolute;
    flex-direction: column;
    margin-left: 50%;
    background-color: #303030;
    font-size: 1.6rem;
    padding: 8em 0em;
    z-index: 2;
    transition: opacity 0.3s ease;
    width: 50%;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0.5em 0.5em;
    background-color: #303030;
    width: 100%;
    transition: background-color 0.3s ease;
    color: #efefef;
    z-index: 2;
    font-size: 1.6rem;
  }
  /* End of Project Section */
  /* Start of About Section */
  /* End of About Section */
  /* Start of Skills Section */
  /* End of Skills Section */
  /* Start of Contact Section */
  /* End of Contact Section */
  /* Start of Footer */
  /* End of Footer */
}
@media screen and (min-width: 1441px) and (min-width: 1285px) {
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a:hover,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a:hover,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a:hover {
    cursor: pointer;
    color: #fbc000;
  }
  #projects.projects-section .featured-projects .carousel .project-a:hover {
    background-color: transparent;
  }
  #projects.projects-section .featured-projects .carousel .project-a img {
    transform: scale(1);
  }
  #projects.projects-section .featured-projects .carousel .project-a img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1em;
    transition: transform 0.3s ease;
    filter: blur(0px); /* Adjust the blur amount */
  }
  #projects.projects-section h4:nth-of-type(2),
  #projects.projects-section h4:nth-of-type(3) {
    display: none;
  }
  #projects.projects-section .personal-projects {
    display: none;
  }
}
@media screen and (min-width: 1441px) and (min-width: 1081px) and (max-width: 1440px) and (min-height: 601px) and (max-height: 800px) {
  #projects.projects-section {
    height: auto;
    background-color: #eaeaea;
    padding: 5em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #projects.projects-section h4 {
    margin-bottom: 2em;
  }
  #projects.projects-section .featured-projects {
    overflow: hidden;
    width: 100%;
    height: auto; /* Adjust the height as needed */
  }
  #projects.projects-section .featured-projects .carousel {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  #projects.projects-section .featured-projects .carousel::-webkit-scrollbar {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a,
  #projects.projects-section .featured-projects .carousel .project-b,
  #projects.projects-section .featured-projects .carousel .project-c {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 1em 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 90%;
  }
  #projects.projects-section .featured-projects .carousel .project-a img,
  #projects.projects-section .featured-projects .carousel .project-b img,
  #projects.projects-section .featured-projects .carousel .project-c img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0em;
  }
  #projects.projects-section .featured-projects .carousel .project-a p,
  #projects.projects-section .featured-projects .carousel .project-b p,
  #projects.projects-section .featured-projects .carousel .project-c p {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-a .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-b .buttons-c,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-a,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-b,
  #projects.projects-section .featured-projects .carousel .project-c .buttons-c {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options {
    display: none;
  }
  #projects.projects-section .featured-projects .carousel .project-a .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-b .doc-options a,
  #projects.projects-section .featured-projects .carousel .project-c .doc-options a {
    display: none;
  }
  #projects.projects-section .featured-projects .indicators {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    height: 10px; /* Set a specific height for indicators */
  }
  #projects.projects-section .featured-projects .indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
  }
  #projects.projects-section .featured-projects .indicators .indicator.active {
    background-color: black;
  }
  #projects.projects-section h4:nth-of-type(2) {
    display: none;
  }
  #projects.projects-section .personal-projects {
    display: none;
  }
  #projects.projects-section h4:last-of-type {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  #aboutmyself.aboutmyself {
    display: flex;
    flex-direction: column;
    color: #efefef;
    padding: 5em 5% 5em;
    background-color: #16181a;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
  }
  #aboutmyself.aboutmyself h3 {
    margin-bottom: 1em;
  }
  #aboutmyself.aboutmyself h4 {
    font-size: 2rem;
  }
  #aboutmyself.aboutmyself .about-me-container {
    display: flex;
    margin-top: 5em;
    width: 70%;
  }
  #aboutmyself.aboutmyself .about-me-container .image-container {
    max-width: 100%;
    min-width: 60%;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    padding-left: 3em;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version {
    display: flex;
    width: 100%;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .short-version p {
    padding-bottom: 1.5em;
    text-align: justify;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions {
    width: 100%;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions p {
    padding-bottom: 1.5em;
    text-align: justify;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .read-more {
    color: #FBBF00;
    font-weight: 600;
    transition: margin-left 0.3s ease;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions .read-more:hover {
    margin-left: 1em;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions img {
    display: none;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions a {
    color: #FBBF00;
    font-weight: 600;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .other-versions a:hover {
    cursor: pointer;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version {
    width: 50%;
    margin-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 25%;
    right: 25%;
    display: none;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #efefef;
    width: 65%;
    padding: 1em;
    border-radius: 10px;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5em;
    color: #efefef;
    transition: color 0.3s ease;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon a:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img {
    max-width: 4%;
    height: auto;
    min-width: 15px;
    padding: 0.5em 0em;
  }
  #aboutmyself.aboutmyself .about-me-container .about-me-details .downloadable-version .cv-icon img:hover {
    cursor: pointer;
  }
  .skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    top: 130em;
    left: 5%;
    right: 5%;
    color: #efefef;
    background-color: #16181a;
  }
  .skills p {
    font-size: 3rem;
    margin-top: 3em;
    margin-bottom: 2em;
  }
  .skills .tech-skills-a {
    display: flex;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .skills .tech-skills-a .group-a, .skills .tech-skills-a .group-b {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    padding: 1em;
  }
  .skills .tech-skills-a .group-a:is(.group-a), .skills .tech-skills-a .group-b:is(.group-a) {
    padding-right: 0em;
  }
  .skills .tech-skills-a .group-a img, .skills .tech-skills-a .group-b img {
    padding: 0em 1em;
    width: 90%;
  }
  .skills .tech-skills-b {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
  }
  .skills .tech-skills-b .group-c, .skills .tech-skills-b .group-d {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    padding: 1em;
    margin-bottom: 3em;
  }
  .skills .tech-skills-b .group-c:is(.group-c), .skills .tech-skills-b .group-d:is(.group-c) {
    padding-right: 0em;
  }
  .skills .tech-skills-b .group-c img, .skills .tech-skills-b .group-d img {
    padding: 0em 1em;
    width: 90%;
  }
  #contact.contact {
    background-color: #efefef;
    align-self: center;
    padding: 5em 0em 0em 0em;
  }
  #contact.contact h3 {
    margin-bottom: 0.5em;
    font-weight: 600;
    text-align: center;
  }
  #contact.contact h4 {
    width: 90%;
    text-align: center;
    margin: auto;
    padding-bottom: 4em;
  }
  #contact.contact .contact-container {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: left;
  }
  #contact.contact .contact-container .contact-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #efefef;
    width: 50%;
    text-align: left;
    background-color: #16181a;
    padding: 8em 20% 5em 4em;
  }
  #contact.contact .contact-container .contact-me h3:first-of-type {
    display: none;
  }
  #contact.contact .contact-container .contact-me h4:first-of-type {
    display: none;
  }
  #contact.contact .contact-container .contact-me h4:last-of-type {
    margin: 0em 0em 0em 0em;
    padding-bottom: 6em;
  }
  #contact.contact .contact-container .contact-me .send-message {
    display: none;
    padding: 0.5em;
    text-align: left;
    align-self: center;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    width: 10em;
    border-radius: 2em;
    font-size: 2rem;
    margin-right: 0em;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .send-message:hover {
    cursor: pointer;
    background-color: #ffaa00;
  }
  #contact.contact .contact-container .contact-me .business-email, #contact.contact .contact-container .contact-me .business-phone {
    display: flex;
    align-items: center;
    padding: 1em;
  }
  #contact.contact .contact-container .contact-me .business-email .email-icon, #contact.contact .contact-container .contact-me .business-phone .email-icon {
    max-width: 80%;
    height: auto;
    padding: 0em 1.5em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .business-email .email-icon img, #contact.contact .contact-container .contact-me .business-phone .email-icon img {
    display: flex;
    align-items: center;
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .business-email a, #contact.contact .contact-container .contact-me .business-phone a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    transition: margin-left 0.3s ease;
  }
  #contact.contact .contact-container .contact-me .business-email a:hover, #contact.contact .contact-container .contact-me .business-phone a:hover {
    cursor: pointer;
    margin-left: 1em;
  }
  #contact.contact .contact-container .contact-me .business-email .phone-icon, #contact.contact .contact-container .contact-me .business-phone .phone-icon {
    display: flex;
    padding: 0em 1.5em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .business-email .phone-icon img, #contact.contact .contact-container .contact-me .business-phone .phone-icon img {
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .business-email .phone-number-details, #contact.contact .contact-container .contact-me .business-phone .phone-number-details {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #contact.contact .contact-container .contact-me .address2 {
    display: flex;
    padding: 1em 1em 1em 1em;
    font-weight: 100;
  }
  #contact.contact .contact-container .contact-me .address2 img {
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .address2 strong {
    transition: margin-left 0.3s ease-in-out;
  }
  #contact.contact .contact-container .contact-me .address2 strong:hover {
    cursor: pointer;
    margin-left: 1em;
  }
  #contact.contact .contact-container .contact-me .address2 .address-icon {
    display: flex;
    align-items: center;
    padding: 0em 1.5em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .social-links2 {
    display: flex;
    margin-bottom: 3em;
    padding: 1em 1em 1em 1em;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon {
    display: flex;
    align-items: center;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon a:first-of-type, #contact.contact .contact-container .contact-me .social-links2 .social-icon a:last-of-type {
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale 0.2s ease-in-out;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon a:first-of-type:hover, #contact.contact .contact-container .contact-me .social-links2 .social-icon a:last-of-type:hover {
    cursor: pointer;
    scale: 1.15;
  }
  #contact.contact .contact-container .contact-me .social-links2 .social-icon a:first-of-type img, #contact.contact .contact-container .contact-me .social-links2 .social-icon a:last-of-type img {
    width: 60%;
    height: auto;
  }
  #contact.contact .contact-container .contact-me .social-links2 .chat-icon {
    display: flex;
    align-items: center;
    padding: 0em 0.9em 0em 0em;
  }
  #contact.contact .contact-container .contact-me .social-links2 .chat-icon img {
    max-width: 80%;
    height: auto;
  }
  #contact.contact .contact-container .contact-details2 {
    display: none;
  }
  #contact.contact .contact-container .contact-form {
    width: 50%;
    height: auto;
    padding: 8em 4em 5em 20%;
    background-color: #16181a;
    color: #efefef;
  }
  #contact.contact .contact-container .contact-form h4 {
    margin: auto;
    margin-bottom: 0em;
  }
  #contact.contact .contact-container .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  #contact.contact .contact-container .contact-form form textarea, #contact.contact .contact-container .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  #contact.contact .contact-container .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
  }
  #contact.contact .contact-container .contact-form form button {
    margin-top: 2em;
    text-align: center;
    height: 54px;
    max-width: 200px;
    background-color: #FBBF00;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    color: #000000;
    font-weight: 600;
    padding: 0.6em 1em;
    transition: background-color 0.3s ease;
    border-radius: 2em;
  }
  #contact.contact .contact-container .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
  .dev-process {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    height: 2em;
    transition: height 0.3s ease;
    padding: 0em 10%;
    background-color: #16181a;
  }
  .dev-process .icon {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: scale 0.1s ease;
    margin: auto;
  }
  .dev-process .icon img {
    width: 60%;
    height: auto;
    padding: 0.3em 0em;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .dev-process .icon:hover {
    cursor: pointer;
  }
  .dev-process.open {
    height: auto;
    transition: height 0.3s ease;
  }
  .dev-process.open .icon img {
    transform: rotate(180deg);
    transition-delay: 0.1s;
  }
  .dev-process p {
    width: 100%;
    padding: 3em 5% 2em;
    background-color: #16181a;
    color: #efefef;
  }
  footer {
    background-color: #16181a;
    color: #efefef;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0em 20% 0em 20%;
    transition: position 0.3s ease;
    z-index: 1;
    box-shadow: 0px -5px 10px 0px #3d3d3d;
  }
  footer .footer-container {
    padding: 1em 0em;
    display: flex;
    justify-content: flex-start;
  }
  footer .footer-container address {
    display: none;
  }
  footer .footer-container .sitemap {
    display: none;
    justify-content: center;
    font-size: 1.5rem;
    align-items: center;
    color: #efefef;
    transition: color 0.3s ease;
  }
  footer .footer-container .sitemap:hover {
    cursor: pointer;
    color: #FBBF00;
  }
  footer .footer-container .legal-regulations {
    font-size: 1.5rem;
    text-align: center;
    width: 60%;
    right: 20%;
  }
  footer .footer-container .legal-regulations strong {
    color: #FBBF00;
    transition: color 0.3s ease;
  }
  footer .footer-container .legal-regulations strong:hover {
    cursor: pointer;
    color: #efefef;
  }
  footer .footer-container .social-links {
    display: none;
  }
  footer .footer-container .hire {
    display: flex;
    justify-content: flex-start;
    font-size: 1.5rem;
    align-items: center;
    width: 20%;
  }
  footer .footer-container .hire strong {
    color: #FBBF00;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  footer .footer-container .hire strong:hover {
    cursor: pointer;
    color: #efefef;
  }
  footer.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form {
    padding: 8em 35% 5em 35%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #16181a;
    color: #efefef;
    overflow-y: auto;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1439px) {
  .contact-form {
    padding: 8em 30% 5em 30%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #16181a;
    color: #efefef;
    overflow-y: auto;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form ::-moz-placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form ::placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    text-align: left;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (min-width: 451px) and (max-width: 1080px) {
  .contact-form {
    padding: 8em 20% 5em 20%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #16181a;
    color: #efefef;
    overflow-y: auto;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    text-align: left;
  }
  .contact-form form ::-moz-placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form ::placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (max-width: 450px) {
  .contact-form {
    padding: 5em 10% 5em 10%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #16181a;
    color: #efefef;
    overflow-y: auto;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
    font-size: 1.5rem;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-form form ::-moz-placeholder {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-form form ::placeholder {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 8em 35% 5em 35%;
    background-color: #16181a;
    color: #efefef;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    text-align: left;
  }
  .contact-form form ::-moz-placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form ::placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1439px) {
  .contact-form {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 8em 30% 5em 30%;
    background-color: #16181a;
    color: #efefef;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form ::-moz-placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form ::placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    text-align: left;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (min-width: 451px) and (max-width: 1080px) {
  .contact-form {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 8em 20% 5em 20%;
    background-color: #16181a;
    color: #efefef;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    text-align: left;
  }
  .contact-form form ::-moz-placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form ::placeholder {
    text-align: left;
    padding-left: 0.25em;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}
@media screen and (max-width: 450px) {
  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 5em 10% 5em 10%;
    background-color: #16181a;
    color: #efefef;
  }
  .contact-form h3 {
    margin-bottom: 2em;
  }
  .contact-form h4 {
    margin-bottom: 2em;
    font-size: 1.5rem;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    color: #efefef;
  }
  .contact-form form textarea, .contact-form form input {
    background-color: #3d3d3d;
    border: 2px solid #efefef;
    border-radius: 0.3em;
  }
  .contact-form form label {
    padding-top: 1em;
    padding-bottom: 0.5em;
    color: #efefef;
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-form form ::-moz-placeholder {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-form form ::placeholder {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-form form button {
    margin: 5em 0em 5em;
    align-self: center;
    width: 10.5em;
    background-color: #FBBF00;
    width: 10.5em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    width: 10.5em;
    color: #000000;
    width: 10.5em;
    font-weight: 600;
    width: 10.5em;
    padding: 0.6em 1em;
    width: 10.5em;
    transition: background-color 0.3s ease;
    width: 10.5em;
    width: 10em;
    width: 10.5em;
    border-radius: 0.5em;
    width: 10.5em;
    font-size: 1.5rem;
    width: 10.5em;
    margin-right: 0em;
    width: 10.5em;
    text-shadow: 1px 1px 1px rgba(221, 219, 219, 0.5);
    width: 10.5em;
  }
  .contact-form form button:hover {
    background-color: #ffaa00;
    cursor: pointer;
  }
}/*# sourceMappingURL=style.css.map */