html {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 768px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 640px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    max-width: 480px;
    padding: 0 20px;
  }
}

.mx-auto {
  margin: 0 auto;
}

.my-auto {
  margin: auto 0;
}

p {
  font-size: 14px;
  font-weight: 400;
  color: #6D7E8C;
}

a {
  text-decoration: none;
}

.navbar {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  padding-top: 30px;
}
.navbar .navbar-left {
  grid-column: span 4/span 4;
}
.navbar .navbar-mid {
  grid-column: span 4/span 4;
}
.navbar .navbar-mid .menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-mid .menu .menu-child {
  text-align: center;
  color: #024059;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.navbar .navbar-right {
  grid-column: span 4/span 4;
  justify-self: flex-end;
}
.navbar .navbar-right .nav-hamburger {
  display: none;
}
.navbar .navbar-right .nav-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.navbar .navbar-right .nav-contact a.contact-me-link {
  color: #024059;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-mid .menu {
    display: block;
  }
  .navbar .navbar-right .nav-hamburger {
    display: block;
  }
  .navbar .navbar-right .nav-contact {
    display: none;
  }
}

.nav-mobile {
  overflow: hidden;
}
.nav-mobile .drawer-menu {
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-areas: "MENU OVERLAY";
  grid-template-columns: 14fr 6fr;
}
@media screen and (max-width: 640px) {
  .nav-mobile .drawer-menu {
    grid-template-columns: 0fr 12fr;
  }
}
.nav-mobile [data-menu]:checked ~ .drawer-menu {
  transform: none;
}
.nav-mobile .menu-sidebar {
  display: block;
  flex-flow: column wrap;
  transform: translateX(30%);
  opacity: 0;
  color: #024059;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0;
  contain: content;
  grid-area: "MENU";
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
  box-shadow: -5px 20px 15px 10px rgba(0, 0, 0, 0.1);
}
.nav-mobile .menu-sidebar .close-btn {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 0 0;
}
.nav-mobile .menu-sidebar .close-btn svg {
  width: 28px;
  height: 28px;
  color: #024059;
}
.nav-mobile .menu-sidebar .menu {
  padding: 20px 0 0 0;
  margin: 0;
}
.nav-mobile .menu-sidebar .menu li {
  display: block;
  text-decoration: none;
  text-align: center;
}
.nav-mobile .menu-sidebar .menu li:not(:last-child) {
  border-bottom: 0.5px solid #dfdfdf;
}
.nav-mobile .menu-sidebar .menu li span {
  text-decoration: none;
  color: #024059;
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
}
.nav-mobile .menu-sidebar .nav-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  padding: 80px 0;
}
.nav-mobile .menu-sidebar .nav-contact a.contact-me-link {
  color: #024059;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 30em) {
  .nav-mobile .menu-sidebar {
    min-width: 400px;
  }
}
.nav-mobile [data-menu]:checked ~ .drawer-menu .menu-sidebar {
  transform: none;
  opacity: 1;
}
.nav-mobile .menu-overlay {
  display: block;
  grid-area: "OVERLAY";
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0;
}
.nav-mobile [data-menu]:not(:checked) ~ .drawer-menu .menu-overlay {
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo .logo-detail p {
  margin: 0 15px;
}
.logo .logo-detail .logo-name {
  font-size: 24px;
  font-weight: 500;
  color: #024059;
  margin: 0 15px;
}
.logo .logo-detail .logo-position {
  font-size: 14px;
  font-weight: 400;
  color: #6D7E8C;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .logo .logo-detail .logo-name,
  .logo .logo-detail .logo-position {
    display: none;
  }
}

.separator.-v {
  height: 24px;
  border-left: 1px solid #dfdfdf;
}

hr {
  color: #dfdfdf;
  opacity: 0.3;
  margin: 30px 0;
}

.btn-primary {
  border: none;
  background-color: #024059;
  color: #ffffff;
  padding: 9px 24px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary.-lg {
  font-size: 24px;
  padding: 16px 50px;
  border-radius: 40px;
}

.btn-secondary {
  border: none;
  background-color: #41B883;
  color: #ffffff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
}

.btn-backtoTop {
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #024059;
  color: #ffffff;
  border: none;
}
@media screen and (max-width: 640px) {
  .btn-backtoTop {
    bottom: 25px;
    right: 15px;
  }
}
.btn-backtoTop svg {
  width: 25px;
  height: 25px;
}

.bg-wave {
  position: absolute;
  width: 100%;
  z-index: -99;
}
@media screen and (max-width: 640px) {
  .bg-wave {
    height: 400px;
  }
}

.inner-container {
  max-width: 910px;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .inner-container {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .inner-container {
    max-width: 580px;
  }
}
@media screen and (max-width: 640px) {
  .inner-container {
    max-width: 420px;
    padding: 20px;
  }
}

.hero {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: auto 0;
  height: 500px;
  align-items: center;
}
.hero .intro {
  grid-column: span 2/span 2;
}
.hero .intro p {
  line-height: 1.5rem;
}
.hero .intro p.title {
  font-size: 16px;
  font-weight: 500;
}
.hero .intro .title-name.clip {
  margin: 0;
}
.hero .intro .title-name.clip span {
  display: inline-block;
  padding: 0.2em 0;
}
.hero .intro .title-name.clip .title-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  overflow: hidden;
  vertical-align: top;
}
.hero .intro .title-name.clip .title-words-wrapper p {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-family: "Great Vibes", cursive;
  font-size: 64px;
  font-weight: 300;
  color: #024059;
  opacity: 0;
  margin: 28px 0;
}
.hero .intro .title-name.clip .title-words-wrapper p.is-visible {
  opacity: 1;
  position: relative;
}
.hero .intro .title-name.clip .title-words-wrapper p span.circle-dot {
  display: inline-block;
  width: 20px;
  height: auto;
  background-color: #41B883;
  border-radius: 100%;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .hero .intro .title-name.clip .title-words-wrapper p {
    font-size: 42px;
  }
  .hero .intro .title-name.clip .title-words-wrapper span.circle-dot {
    width: 15px;
  }
}
.hero .intro .title-name.clip .title-words-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #dfdfdf;
}
.hero .intro .icon-sosmed {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.hero .intro .icon-sosmed img {
  width: 35px;
  height: 35px;
}
.hero .intro .view-more {
  color: #41B883;
  cursor: pointer;
}
.hero .ilustration {
  grid-column: span 2/span 2;
}
.hero .ilustration .my-animation-hero {
  width: 550px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .hero {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hero div:nth-of-type(1) {
    order: 2;
  }
  .hero div:nth-of-type(2) {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .hero .ilustration .my-animation-hero {
    width: 320px;
    height: auto;
  }
}

.about-me {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 80px 0 0;
  align-items: center;
  gap: 60px;
}
.about-me .my-foto {
  grid-column: span 1/span 1;
}
.about-me .my-foto img {
  width: 300px;
  height: auto;
}
.about-me .detail-about-me {
  grid-column: span 2/span 2;
}
.about-me .detail-about-me h2 {
  margin: 0 0 10px 0;
  color: #024059;
  font-size: 36px;
  font-weight: 500;
}
.about-me .detail-about-me h3 {
  color: #024059;
  font-weight: 500;
}
.about-me .detail-about-me p {
  margin: 0;
  line-height: 1.5rem;
  font-size: 14px;
  font-weight: 400;
  color: #6D7E8C;
  text-align: justify;
}
.about-me .list-interest {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.about-me .list-interest .item-interest {
  width: 50px;
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  background-color: #EBF6FF;
  border-radius: 6px;
}
.about-me .list-interest .item-interest img {
  width: 20px;
  height: 20px;
}
.about-me .list-interest .item-interest p {
  line-height: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about-me {
    margin: 40px 0;
  }
  .about-me .my-foto img {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .about-me {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 0;
    margin: 10px 0;
  }
  .about-me .my-foto img {
    width: 100%;
  }
}

.section-service {
  padding: 80px 0;
}
.section-service .skill {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.section-service .skill .card {
  width: 100%;
  height: 280px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 6px 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-out;
  text-decoration: none;
  padding: 10px 0 15px;
}
.section-service .skill .card.-web:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  border-radius: 6px;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.08), 0 11px 46px rgba(65, 184, 131, 0.35);
}
.section-service .skill .card.-web:hover .overlay {
  transform: scale(10) translateZ(0);
}
.section-service .skill .card.-web .overlay {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  top: 25px;
  transition: transform 0.45s ease-out;
  opacity: 0.5;
  background: rgba(65, 184, 131, 0.35);
}
.section-service .skill .card.-web .circle {
  width: 125px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.section-service .skill .card.-web .circle img {
  width: 50px;
  margin-bottom: 6px;
}
.section-service .skill .card.-performace:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  border-radius: 6px;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.08), 0 11px 46px rgba(65, 184, 131, 0.35);
}
.section-service .skill .card.-performace:hover .overlay {
  transform: scale(10) translateZ(0);
}
.section-service .skill .card.-performace .overlay {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  top: 25px;
  transition: transform 0.45s ease-out;
  opacity: 0.5;
  background: rgba(65, 184, 131, 0.35);
}
.section-service .skill .card.-performace .circle {
  width: 125px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.section-service .skill .card.-performace .circle img {
  width: 45px;
  margin-bottom: 12px;
}
.section-service .skill .card.-seo:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  border-radius: 6px;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.08), 0 11px 46px rgba(65, 184, 131, 0.35);
}
.section-service .skill .card.-seo:hover .overlay {
  transform: scale(10) translateZ(0);
}
.section-service .skill .card.-seo .overlay {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  top: 25px;
  transition: transform 0.45s ease-out;
  opacity: 0.5;
  background: rgba(65, 184, 131, 0.35);
}
.section-service .skill .card.-seo .circle {
  width: 125px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.section-service .skill .card.-seo .circle img {
  width: 50px;
  margin-bottom: 12px;
}
.section-service .skill .card p {
  z-index: 9;
  transition: color 0.3s ease-out;
  text-align: center;
  margin: 0;
}
.section-service .skill .card p.card-title {
  font-size: 18px;
  color: #024059;
  font-weight: 500;
}
.section-service .skill .card p.card-description {
  font-size: 14px;
  color: #6D7E8C;
  font-weight: 400;
  padding: 10px 15px;
  line-height: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .section-service .skill {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.tools {
  background-color: rgba(3, 76, 140, 0.1);
  padding: 50px 20px;
}
.tools .container-tools {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.tools .container-tools h2 {
  font-size: 36px;
  font-weight: 700;
  color: #024059;
  margin: 0 0 25px 0;
}
.tools .list-tools {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 15px;
  justify-items: left;
  align-items: center;
  margin-bottom: 20px;
}
.tools .list-tools .row {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  height: 100%;
  width: 100%;
}
.tools .list-tools .row .vertical {
  display: grid;
  grid-template-rows: repeat(1, minmax(0, 1fr));
  height: 100%;
}
.tools .list-tools .column {
  grid-column: span 3/span 3;
  grid-row: span 2/span 2;
  height: 100%;
  width: 100%;
}
.tools .list-tools .column .horizontal {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  height: 100%;
}
.tools .list-tools .box {
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
}
.tools .list-tools .box.-h {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tools .list-tools .box.-h h3 {
  margin: 0 0 5px 0;
}
.tools .list-tools .box img {
  width: 50px;
  height: 50px;
}
.tools .list-tools .box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #024059;
  margin: 18px 0 5px 0;
}
.tools .list-tools .box p {
  margin: 0;
  font-weight: 300;
}
@media screen and (max-width: 640px) {
  .tools .list-tools {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .tools .list-tools .row {
    grid-column: span 3/span 3;
  }
  .tools .list-tools .box.-v {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .tools .list-tools .box.-v h3 {
    margin: 0 0 5px 0;
  }
}

.navbar-icon {
  display: flex;
  justify-content: flex-end;
  height: 40px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .navbar-icon {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .navbar-menu nav {
    transform: translateX(520px);
    transition: transform 260ms ease-in-out;
    position: fixed;
  }
}
.navbar-menu nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: flex-end;
}
.navbar-menu nav ul li {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .navbar-menu nav ul li {
    transform: translateX(-10px);
    opacity: 0;
  }
}
.navbar-menu nav ul li a {
  display: block;
  padding: 10px 20px;
  color: #024059;
  transition: 0.3s;
}
.navbar-menu nav ul li:hover a {
  text-decoration: none;
  transform: translateY(-3px);
}

.footer {
  padding: 80px 0 40px 0;
  background-color: rgba(3, 76, 140, 0.1);
}
.footer .lets-connect {
  text-align: center;
}
.footer .lets-connect h3 {
  font-size: 56px;
  font-weight: 700;
  color: #024059;
  margin: 20px 0;
}
.footer .lets-connect p {
  font-size: 16px;
  font-weight: 400;
  color: #6D7E8C;
  line-height: 1.7rem;
  margin: 0;
}
.footer .lets-connect a {
  margin: 20px 0;
}
@media screen and (max-width: 640px) {
  .footer .lets-connect h3 {
    font-size: 32px;
  }
}
.footer .footer-cp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-cp .icon-contacts {
  display: flex;
  gap: 18px;
  padding: 20px 16px;
}
.footer .footer-cp .icon-contacts img {
  width: 25px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .footer .footer-cp {
    display: block;
    text-align: center;
  }
  .footer .footer-cp .icon-contacts {
    justify-content: center;
    padding: 0;
  }
}

.projects {
  padding: 60px 0 40px 0;
  text-align: center;
}
.projects h2.title {
  font-size: 36px;
  font-weight: 700;
  color: #024059;
  margin: 0;
}
.projects p.description {
  max-width: 500px;
  margin: 20px auto;
  font-size: 14px;
  font-weight: 400;
  color: #6D7E8C;
  line-height: 1.4rem;
}
.projects .project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
  text-align: left;
}
.projects .project-list figure {
  display: none;
}
.projects .project-list .card-content {
  border: 1px solid #f0f0f0;
  color: #ffffff;
  float: left;
  font-size: 16px;
  margin: 0 1%;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
}
.projects .project-list .card-content * {
  box-sizing: border-box;
  transition: all 0.25s ease;
}
.projects .project-list .card-content img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
}
.projects .project-list .card-content figcaption {
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  cursor: pointer;
}
.projects .project-list .card-content figcaption .card-gradient {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects .project-list .card-content figcaption .card-gradient img {
  width: 25px;
  height: 25px;
}
.projects .project-list .card-content figcaption:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #024059 60%, #024059 80%);
  opacity: 0.85;
  background: linear-gradient(90deg, #024059 0%, #41B883 100%, #41B883 100%);
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.projects .project-list .card-content figcaption .card-software {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.projects .project-list .card-content figcaption .card-software .rounded-tool {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 50px;
}
.projects .project-list .card-content figcaption .card-software .rounded-tool img {
  width: 15px;
  height: 12px;
}
.projects .project-list .card-content figcaption .card-software .rounded-tool p {
  color: #024059;
}
.projects .project-list .card-content h2, .projects .project-list .card-content p {
  margin: 0;
  padding: 0;
}
.projects .project-list .card-content h2 {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  margin: 5px 0;
  color: #ffffff;
}
.projects .project-list .card-content p {
  font-size: 12px;
  line-height: 1.6em;
  margin-bottom: 0px;
  color: #ffffff;
}
.projects .project-list .card-content:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 640px) {
  .projects .project-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  .projects .project-list .card-content h2 {
    font-size: 18px;
  }
  .projects .project-list .card-content .card-software .rounded-tool p {
    font-size: 10px;
  }
}
.projects .btn-show-more {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 700;
  text-align: -webkit-center;
  cursor: pointer;
  color: #024059;
}
.projects .btn-show-more svg {
  display: block;
  width: 20px;
  height: auto;
}

.project-details {
  overflow: hidden;
}
.project-details .drawer-detail {
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-areas: "DETAIL GRAY";
  grid-template-columns: 16fr 8fr;
  opacity: 1;
}
@media screen and (max-width: 640px) {
  .project-details .drawer-detail {
    grid-template-columns: 0fr 12fr;
  }
}
.project-details [data-menu]:checked ~ .drawer-detail {
  transform: none;
}
.project-details .sidebar-content {
  display: block;
  flex-flow: column wrap;
  transform: translateX(30%);
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0;
  contain: content;
  grid-area: "DETAIL";
  box-sizing: border-box;
  padding: 24px;
  box-shadow: -5px 20px 15px 10px rgba(0, 0, 0, 0.1);
}
.project-details .sidebar-content::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  color: #024059;
  opacity: 0.9;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #024059 60%, #024059 80%);
  background: linear-gradient(90deg, #024059 0%, #41B883 100%, #41B883 100%);
}
.project-details .sidebar-content .close-btn {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}
.project-details .sidebar-content .close-btn svg {
  width: 28px;
  height: 28px;
  color: #024059;
  cursor: pointer;
}
.project-details .sidebar-content img {
  width: 100%;
}
.project-details .sidebar-content h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
}
.project-details .sidebar-content p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6rem;
}
.project-details .sidebar-content .card-software {
  display: flex;
  align-items: center;
  gap: 5px;
}
.project-details .sidebar-content .card-software p {
  margin: 0;
  line-height: 0;
}
.project-details .sidebar-content .card-software .rounded-tool {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: #ffffff;
  padding: 8px 6px;
  border-radius: 50px;
}
.project-details .sidebar-content .card-software .rounded-tool img {
  width: 15px;
  height: 12px;
}
.project-details .sidebar-content .card-software .rounded-tool p {
  color: #024059;
  margin: 0;
  line-height: 0;
}
.project-details .sidebar-content .content-sidebar {
  max-height: 100vh;
  overflow: auto;
}
.project-details .sidebar-content .content-sidebar .full-content h2 {
  position: sticky;
  top: 0;
  margin: 0;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(3, 73, 102, 0.25) 0%, rgba(65, 184, 131, 0.37) 80%, rgba(65, 184, 131, 0) 100%, rgba(65, 184, 131, 0) 100%, rgba(65, 184, 131, 0) 100%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.project-details .sidebar-content .content-sidebar .full-content .tool-description {
  padding-bottom: 160px;
  text-align: justify;
}
.project-details .sidebar-content .content-sidebar .full-content .tool-description ul li {
  color: #ffffff;
  line-height: 1.6em;
  margin-bottom: 8px;
}
.project-details .sidebar-content .content-sidebar .full-content .tool-description a {
  color: #ffffff;
  font-style: italic;
  text-decoration: underline;
}
.project-details .sidebar-content .content-sidebar .full-content .tool-description p.my-project-link {
  text-align: left;
}
@media screen and (max-width: 640px) {
  .project-details .sidebar-content .card-software .rounded-tool p {
    font-size: 10px;
  }
}
.project-details [data-menu]:checked ~ .drawer-detail .sidebar-content {
  transform: none;
  opacity: 1;
}
.project-details .menu-overlay {
  display: block;
  grid-area: "GRAY";
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 1s;
}
.project-details [data-menu]:not(:checked) ~ .drawer-detail .menu-overlay {
  pointer-events: none;
}/*# sourceMappingURL=main.css.map */