@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: white;
  font-family: "Poppins", sans-serif;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

:root {
  --main-color: #fc8c05;
  --dark-main-color: #cd7000;
  --less-main-color: rgba(252, 140, 5, 0.55);
  --bg-main-color: rgba(251, 243, 229, 0.49);
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  backdrop-filter: blur(5px);
  background: rgba(256, 256, 256, 0.3);
}
section {
  padding: 5rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: var(--main-color);
}
.subheading {
  color:#555;
  font-size: 1.6rem;
  text-align: center;
  max-width: 700px;
  margin: -20px auto 0;
  font-weight: normal;
}
header .navbar {
  margin: auto;
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: var(--main-color);
  border-bottom: 0.2rem solid var(--main-color);
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}

.nav-toggle {
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 0;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
    transition: all 0.3s ease;
  }

  header .navbar.active {
    right: 0;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid var(--main-color);
  }
  .fa-times {
    transform: rotate(180deg);
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle i:before{
    font-size: 20px;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image {
  flex: 1 1 40rem;
  z-index: 1;
}
.home .image img {
  width: 70%;
  margin-left: 6rem;
  border-radius: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--dark-main-color);
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: var(--main-color);
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: var(--main-color);
  box-shadow: 0px 5px 18px var(--less-main-color);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: var(--dark-main-color);
}
.home .btn:hover i {
  transform: translateX(5px);
}

.quick-navigation-buttons {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
}

a {
  color: unset;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: var(--main-color);
  font-family: "Nunito", sans-serif;
  width: fit-content;
  text-transform: uppercase;
}

/* social icons start */
.socials {
  position: relative;
  margin-top: 3rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 0rem 0;
  }
  .quick-navigation-buttons {
    gap: 10px;
    flex-wrap: wrap;
  }
  .quick-navigation-buttons .fas {
    display: none;
  }
  .home .image img {
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: rgb(255, 255, 255);
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  mix-blend-mode: luminosity;
  transition: 0.3s;
  cursor: pointer;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: var(--main-color);
}
.resumebtn {
  margin-top: 3rem;
}
.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: var(--main-color);
  box-shadow: 0px 5px 10px var(--less-main-color);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: var(--dark-main-color);
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */

/* work section starts */
.projects {
  background: var(--bg-main-color);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 10%;
  position: relative;
  max-height: 80vh;
  transition: max-height 0.5s ease;
  overflow: hidden;
}

.projects h2 {
  color: var(--dark-main-color);
  padding: 1rem;
}

.main-projects {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.project {
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  border: none;
  overflow: auto;
  padding: 4rem 2rem;
}

.project .swiper-slide a {
  display: flex;
}
/* Desktop and large screens */
@media (max-width: 1024px) {
  .card-slider {
    width: 300px !important;
  }

  .projects {
    padding: 5rem 4%;
  }

  .main-projects .project:nth-child(even) {
    flex-direction: column-reverse;
  }

  .project {
    flex-direction: column;
  }
}

/* Tablet and up */
@media (max-width: 768px) {
}

.project img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-slider-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-slider {
  width: 600px;
  border: 1px solid #b5b5b5;
  border-radius: 20px;
  overflow: hidden;
}

.project-main-img {
  position: relative;
}

.details-panel {
  background: white;
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

.details-panel h3 {
  font-size: 3rem;
  margin: 0;
}

.description {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #555;
  text-align: left;
  margin-top: 20px;
}

.description ul {
  margin-left: 20px;
  margin-top: 10px;
}

.tech-stack {
  display: flex;
  gap: 0.4rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.tech-stack span {
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.buttons {
  display: flex;
  gap: 0.5rem;
}

.buttons a {
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}

.buttons a.code {
  background: #333;
  color: white;
}

.buttons a.code:hover {
  background: #555;
}

.buttons a.demo {
  background: #ff5722;
  color: white;
}

.buttons a.demo:hover {
  background: #e64a19;
}
/* work section ends */

/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #ff9f55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #f68c09;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.3em 0.7em;
  background-color: #f5f5f5;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tech-badge::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tech-badge-javascript {
  background-color: #fbf6cf;
}
.tech-badge-html {
  background-color: #ffe2d6;
}
.tech-badge-css {
  background-color: #c8d6ff;
}
.tech-badge-postgresql {
  background-color: #d1ebff;
}
.tech-badge-rails {
  background-color: #ffe0e0;
}
.tech-badge-wordpress {
  background-color: #a4e5ff;
}
.tech-badge-haml {
  background-color: #ececec;
}
.tech-badge-php {
  background-color: #dadbff;
}
.tech-badge-svelte {
  background-color: #ffe2d6;
}
.tech-badge-inertia {
  background-color: #e5d9f6;
}
.tech-badge-css::before {
  background-image: url("/assets/images/skills/css.svg");
}
.tech-badge-haml::before {
  background-image: url("/assets/images/skills/haml.svg");
}
.tech-badge-html::before {
  background-image: url("/assets/images/skills/html.svg");
}
.tech-badge-javascript::before {
  background-image: url("/assets/images/skills/javascript.svg");
}
.tech-badge-php::before {
  background-image: url("/assets/images/skills/php.svg");
}
.tech-badge-postgresql::before {
  background-image: url("/assets/images/skills/postgresql.svg");
}
.tech-badge-rails::before {
  background-image: url("/assets/images/skills/rails.svg");
}
.tech-badge-wordpress::before {
  background-image: url("/assets/images/skills/wordpress.svg");
}
.tech-badge-svelte::before {
  background-image: url("/assets/images/skills/svelte.svg");
}
.tech-badge-inertia::before {
  background-image: url("/assets/images/skills/inertia.svg");
}
.small-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.small-projects-grid h3 {
  display: none;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay hidden by default */
.project-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Button styling */
.view-btn {
  padding: 0.6rem 1.2rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.view-btn:hover {
  background: #000;
  color: #fff;
}

.projects-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,  rgba(255,255,255,1) 80%,  rgba(255,255,255,1) 100%);
  pointer-events: none; /* allow clicks through */
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Hide overlay when expanded */
.projects-overlay.hidden {
  opacity: 0;
}

.view-more-wrapper {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 50px;
  z-index: 3;
}

.view-more-wrapper button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border: 2px solid #000;
  border-radius: 30px; /* rounded rectangle */
  background: #fff;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.view-more-wrapper button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.view-more-wrapper .arrow {
  font-size: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Hover effect */
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .overlay {
  opacity: 1;
}

/* Responsive grid */
@media (max-width: 992px) {
  .small-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card .overlay {
    position: relative;
    opacity: 1;
    background: none;
    margin: 5px;
  }
}
@media (max-width: 600px) {
  .small-projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card .overlay {
    position: relative;
    opacity: 1;
    background: none;
    margin: 5px;
  }
}
/* --- Contact Section --- */
.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-main-color);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: black;
}

.contact-section p {
  font-size: 1.6rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: black;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  color: black;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.contact-icon i,
.contact-icon img {
  font-size: 24px;
  z-index: 1;
}

#zalo-svg {
  width: 47px;
  height: 47px;
  object-fit: cover;
  border-radius: 50%;
}
.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.contact-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--main-color);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.contact-icon:hover::before {
  transform: scale(1);
}

.contact-icon:hover i,
.contact-icon:hover img {
  color: white;
}

#zalo-svg {
  padding: 5px;
}

.zalo:hover #zalo-svg {
  fill: white;
  background: blue;
}

/* experience section ends */
.footer {
  background: var(--main-color);
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}

@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0,0,0,0.1);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0,0,0,0.05);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0,0,0,0.1);
    transform: translatey(0px);
  }
}