@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;700;900&family=Fira+Code:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #94A3B8;
}

body {
  background: #0F172A;
  font-family: "Inter", sans-serif;
  color: #F8FAFC;
}

* {
  box-sizing: border-box;
}

main {
  padding-left: 102px;
  width: 100%;
  min-height: 100vh;
  background: #0F172A;
}
main > section {
  display: none;
  width: 100%;
  min-height: 100vh;
  padding: 80px 40px;
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease;
}
main > section.active {
  display: block;
  opacity: 1;
}
main > section .container {
  max-width: 1200px;
  margin: 0 auto;
}
main > section:not(#home) {
  padding-top: 64px;
}
main > section.active {
  display: block;
}
main > section header.has-bg {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
}
main > section header.has-bg img {
  display: none;
}
main > section header.custom {
  position: relative;
  text-align: center;
  margin-bottom: 42px;
}
main > section header.custom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #334155;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
main > section header.custom h2 {
  display: inline-block;
  padding: 0 24px;
  background: #0F172A;
}

.btn-custom-blue, #workModal .modal-body .container-fluid .right .project-link a, .btn-custom-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #10B981;
  padding: 12px 32px;
  text-decoration: none !important;
  color: #fff !important;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  z-index: 1;
  overflow: hidden;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}
.btn-custom-blue:hover, #workModal .modal-body .container-fluid .right .project-link a:hover, .btn-custom-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  background: rgb(18.0298507463, 208.4701492537, 145.3656716418);
}
.btn-custom-blue:active, #workModal .modal-body .container-fluid .right .project-link a:active, .btn-custom-dark:active {
  transform: translateY(0);
}

.btn-custom-dark {
  background: #334155;
  box-shadow: 0 4px 14px 0 rgba(51, 65, 85, 0.3);
}
.btn-custom-dark:hover {
  background: rgb(70.125, 89.375, 116.875);
  box-shadow: 0 6px 20px rgba(51, 65, 85, 0.4);
}

#sidebar {
  width: 80px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgb(19.0263157895, 29.1736842105, 53.2736842105);
  border-right: 1px solid rgba(148, 163, 184, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#sidebar .logo {
  margin-bottom: 3rem;
}
#sidebar .logo img {
  width: 32px;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}
#sidebar nav {
  flex-grow: 1;
  width: 100%;
}
#sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#sidebar nav ul li {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
#sidebar nav ul li a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #94A3B8;
  border-radius: 14px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: transparent;
}
#sidebar nav ul li a:hover, #sidebar nav ul li a.active {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
}
#sidebar nav ul li a span {
  display: none;
}
#sidebar nav ul li > span {
  position: absolute;
  left: 90px;
  background: #10B981;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
#sidebar nav ul li > span:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #10B981 transparent transparent;
}
#sidebar nav ul li:hover > span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#sidebar .language-switch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}
#sidebar .language-switch .flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
#sidebar .language-switch .flag .language-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 4px;
}
#sidebar .language-switch .flag img {
  width: 24px;
  height: auto;
  border-radius: 4px;
}
#sidebar .language-switch .flag:hover, #sidebar .language-switch .flag.active:not(.inactive) {
  opacity: 1;
}
#sidebar .language-switch .flag.inactive {
  cursor: default;
  opacity: 0.3;
}
#sidebar .toggle-sidebar {
  display: none;
}

main {
  padding-left: 80px;
}
@media (max-width: 991px) {
  main {
    padding-left: 0;
  }
}

#home {
  background-image: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
  background-color: #0F172A;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#home .info {
  padding-top: 3rem;
}
#home .info img.mini-pic {
  margin-bottom: 2rem;
  border: 2px solid #10B981;
  padding: 4px;
  border-radius: 50%;
  width: 80px;
}
#home .info h1 {
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}
#home .info h1 span {
  color: #10B981;
  font-weight: 400;
}
#home .info .field {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#home .info .field h2 {
  color: #F8FAFC;
  font-family: "Fira Code", monospace;
  font-size: 1.5rem;
  margin: 0;
}
#home .info .field h2:after {
  content: "|";
  animation: blink 1s infinite;
  color: #10B981;
  margin-left: 5px;
}
#home .info p {
  max-width: 500px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: #94A3B8;
}
#home .info .socials {
  margin-top: 4rem;
}
#home .info .socials ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
#home .info .socials ul li {
  margin: 0;
}
#home .info .socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  text-decoration: none;
  background: rgba(51, 65, 85, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#home .info .socials ul li a:hover {
  background: #10B981;
  transform: translateY(-5px);
  border-color: #10B981;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}
#home .info .socials ul li a:hover i,
#home .info .socials ul li a:hover svg {
  color: #fff;
}
#home .info .socials ul li a i,
#home .info .socials ul li a svg {
  font-size: 1.25rem;
  color: #F8FAFC;
  transition: all 0.3s;
}
#home .info .socials ul li a span {
  display: none;
}
#home .image {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#home .image img {
  border-radius: 24px;
  max-width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
#home .image img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.1);
}
#home .meteor-shower {
  display: none;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#about_me {
  background-color: #0F172A;
}
#about_me .hero {
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about_me .hero .image img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
#about_me .hero .image img:hover {
  transform: scale(1.01);
}
#about_me .hero .info {
  position: relative;
  z-index: 2;
}
#about_me .hero .info h1 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#about_me .hero .info h2 {
  color: #10B981;
  font-family: "Fira Code", monospace;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
#about_me .hero .info p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
#about_me .hero .info .items .item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#about_me .hero .info .items .item .title {
  font-weight: 700;
  color: #F8FAFC;
}
#about_me .hero .info .items .item .value {
  color: #94A3B8;
}
#about_me .hero .info .buttons {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}
#about_me .languages-skills {
  margin-bottom: 6rem;
}
#about_me .languages-skills .custom h2 {
  text-align: left;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}
#about_me .languages-skills .custom h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background: #10B981;
  border-radius: 2px;
}
#about_me .languages-skills .item {
  margin-bottom: 2rem;
}
#about_me .languages-skills .item h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #F8FAFC;
}
#about_me .languages-skills .item .rate {
  height: 8px;
  background: rgba(51, 65, 85, 0.3);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}
#about_me .languages-skills .item .rate span {
  flex: 1;
  height: 100%;
  background: transparent;
  border-right: 1px solid #0F172A;
}
#about_me .languages-skills .item .rate span.fill {
  background: #10B981;
}
#about_me .languages-skills .item .rate span:last-child {
  border-right: none;
}
#about_me .languages-skills .ds-skills .item {
  background: rgba(51, 65, 85, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
#about_me .languages-skills .ds-skills .item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: grayscale(0.5);
  transition: all 0.3s ease;
}
#about_me .languages-skills .ds-skills .item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
#about_me .languages-skills .ds-skills .item .year {
  font-size: 0.8rem;
  color: #94A3B8;
}
#about_me .languages-skills .ds-skills .item:hover {
  background: rgba(51, 65, 85, 0.2);
  border-color: #10B981;
  transform: translateY(-5px);
}
#about_me .languages-skills .ds-skills .item:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
#about_me .languages-skills .ds-skills .additional-skills {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}
#about_me .languages-skills .ds-skills .additional-skills h3 {
  color: #3B82F6;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
#about_me .languages-skills .ds-skills .additional-skills p {
  margin: 0;
  font-size: 0.95rem;
}
#about_me .certifications {
  padding: 4rem 0;
}
#about_me .certifications .item {
  transition: all 0.3s ease;
}
#about_me .certifications .item img {
  width: 100%;
  max-width: 250px;
  border-radius: 15px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}
#about_me .certifications .item:hover {
  transform: scale(1.05);
}
#about_me .certifications .item:hover img {
  filter: brightness(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

#my_resume {
  background-color: #0F172A;
}
#my_resume .custom h2 {
  text-align: left;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}
#my_resume .custom h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background: #10B981;
  border-radius: 2px;
}
#my_resume .items {
  position: relative;
  padding-left: 3rem;
}
#my_resume .items:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(16, 185, 129, 0.2);
}
#my_resume .items .item {
  position: relative;
  margin-bottom: 3rem;
}
#my_resume .items .item:last-child, #my_resume .items .item.last {
  margin-bottom: 0;
}
#my_resume .items .item .icon {
  position: absolute;
  left: -3rem;
  width: 32px;
  height: 32px;
  background: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 4px #0F172A;
}
#my_resume .items .item .icon i {
  font-size: 1rem;
  color: #fff;
}
#my_resume .items .item .box {
  background: rgba(51, 65, 85, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}
#my_resume .items .item .box:hover {
  background: rgba(51, 65, 85, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(10px);
}
#my_resume .items .item .box .year {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 500;
}
#my_resume .items .item .box .title {
  font-size: 1.25rem;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
#my_resume .items .item .box p {
  font-weight: 600;
  color: #3B82F6;
  margin-bottom: 1rem;
}
#my_resume .items .item .box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#my_resume .items .item .box ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #94A3B8;
  line-height: 1.6;
}
#my_resume .items .item .box ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: bold;
}

#my_work {
  background-color: #0F172A;
}
#my_work .text-center {
  margin-bottom: 2rem;
}
#my_work .filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
#my_work .filters button {
  background: rgba(51, 65, 85, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #94A3B8;
  padding: 8px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#my_work .filters button h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}
#my_work .filters button:hover {
  border-color: #10B981;
  color: #F8FAFC;
}
#my_work .filters button.active {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
#my_work .work-items .item {
  margin-bottom: 2rem;
}
#my_work .work-items .item .wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #334155;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
#my_work .work-items .item .wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#my_work .work-items .item .wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#my_work .work-items .item .wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
#my_work .work-items .item .wrap:hover img {
  transform: scale(1.1);
}
#my_work .work-items .item .wrap:hover:after {
  opacity: 1;
}

#workModal .modal-content {
  background-color: rgb(17.6842105263, 27.1157894737, 49.5157894737);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 24px;
  overflow: hidden;
  color: #F8FAFC;
}
#workModal .modal-body {
  padding: 0;
}
#workModal .modal-body .modal-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
#workModal .modal-body .modal-close-button:hover {
  background: #10B981;
}
#workModal .modal-body img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
#workModal .modal-body .container-fluid {
  padding: 2.5rem;
}
#workModal .modal-body .container-fluid .left .title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #F8FAFC;
}
#workModal .modal-body .container-fluid .left .description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #94A3B8;
}
#workModal .modal-body .container-fluid .right {
  background: rgba(51, 65, 85, 0.1);
  border-radius: 20px;
  padding: 2rem;
}
#workModal .modal-body .container-fluid .right div {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
#workModal .modal-body .container-fluid .right div i {
  color: #10B981;
  font-size: 1.25rem;
  margin-top: 3px;
}
#workModal .modal-body .container-fluid .right div .title {
  font-weight: 600;
  color: #F8FAFC;
  min-width: 90px;
}
#workModal .modal-body .container-fluid .right div .value {
  color: #94A3B8;
}
#workModal .modal-body .container-fluid .right .project-link {
  margin-top: 2rem;
}
#workModal .modal-body .container-fluid .right .project-link a {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
}

#contact_me {
  background: #0F172A;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#contact_me .form {
  background: rgba(51, 65, 85, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.06);
  padding: 2rem;
  border-radius: 16px;
}
#contact_me .form .form-item {
  margin-bottom: 1.5rem;
}
#contact_me .form .form-item label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #F8FAFC;
}
#contact_me .form .form-item input,
#contact_me .form .form-item textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #F8FAFC;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
#contact_me .form .form-item input:focus,
#contact_me .form .form-item textarea:focus {
  outline: none;
  border-color: #10B981;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
#contact_me .form .form-item textarea {
  min-height: 140px;
  resize: vertical;
}
#contact_me .form .form-success, #contact_me .form .form-error {
  padding: 2rem;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.06);
  color: #F8FAFC;
}
#contact_me .info {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
#contact_me .info .item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#contact_me .info .item i {
  color: #10B981;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
#contact_me .info .item .text .title {
  display: block;
  font-size: 0.85rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#contact_me .info .item .text p, #contact_me .info .item .text a {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #F8FAFC;
  text-decoration: none;
  transition: color 0.2s ease;
}
#contact_me .info .item .text a:hover {
  color: #10B981;
}

@media (min-width: 1920px) {
  main > section .container {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media (max-width: 1400px) {
  #about_me .hero .image img {
    max-width: 350px;
  }
}
@media (max-width: 1200px) {
  #home .info h1 {
    font-size: 3rem;
  }
  #about_me .hero .image {
    order: 2;
  }
  #about_me .hero .image img {
    max-width: 300px;
    margin-top: 2rem;
  }
  #about_me .hero .info {
    order: 1;
  }
  #about_me .languages-skills .languages-key-skills {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  #sidebar {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    height: 70px;
    border-right: none;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 0;
    flex-direction: row;
    justify-content: center;
    background: rgba(19.0263157895, 29.1736842105, 53.2736842105, 0.95);
    backdrop-filter: blur(10px);
  }
  #sidebar .logo {
    display: none;
  }
  #sidebar .language-switch {
    display: none;
  }
  #sidebar nav {
    height: 100%;
  }
  #sidebar nav ul {
    flex-direction: row;
    height: 100%;
    gap: 0;
    justify-content: space-around;
  }
  #sidebar nav ul li {
    height: 100%;
  }
  #sidebar nav ul li a {
    height: 100%;
    border-radius: 0;
    width: 60px;
  }
  #sidebar nav ul li > span {
    display: none;
  }
  main {
    padding-left: 0;
    padding-bottom: 80px;
  }
  main > section {
    padding-left: 20px;
    padding-right: 20px;
  }
  #home {
    text-align: center;
  }
  #home .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
  }
  #home .info h1 {
    font-size: 2.5rem;
  }
  #home .info p {
    margin: 0 auto 2rem;
  }
  #home .image {
    display: none;
  }
  #about_me .hero {
    flex-direction: column;
    text-align: center;
  }
  #about_me .hero .info .buttons {
    justify-content: center;
  }
  #about_me .hero .info .items .item {
    justify-content: center;
  }
  #about_me .languages-skills .custom h2 {
    text-align: center;
  }
  #about_me .languages-skills .custom h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 576px) {
  #home h1 {
    font-size: 2rem;
  }
  #home .field h2 {
    font-size: 1.2rem;
  }
  #about_me .hero .info .buttons {
    flex-direction: column;
    width: 100%;
  }
  #about_me .hero .info .buttons .btn-custom-blue, #about_me .hero .info .buttons #workModal .modal-body .container-fluid .right .project-link a, #workModal .modal-body .container-fluid .right .project-link #about_me .hero .info .buttons a,
  #about_me .hero .info .buttons .btn-custom-dark {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
