/* K2D FONT */
@import url("https://fonts.googleapis.com/css2?family=K2D:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

/* Custom select arrow to the right */
.custom-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.custom-select img {
  margin-left: auto;
}
/* Override Bootstrap progress bar background to black */
:root {
  --bs-progress-bg: #000;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #000;
}
.hero-section,
.navbar-section {
  background-color: black;
  width: 100%;
}

/* NAVBAR */
.bi-list {
  display: none;
}
.menu-overlay {
  display: none;
}
.navbar-section {
  width: 100%;
  height: 80px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}
.navbar .logo {
  color: #525ceb;
  font-size: 30px;
  font-family: "K2D", sans-serif;
  font-weight: 700;
}
.list ul {
  font-family: "Lato", sans-serif;
  font-weight: medium;
  font-size: 20px;
  color: #959595;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 50px;
}
.list ul li a {
  text-decoration: none;
  color: #959595;
  transition: color 0.3s ease;
}
.list ul li a {
  transition: color 0.3s ease;
}
.list ul li a:hover {
  color: #525ceb;
}

/* HERO SECTION */
.button-secondary a {
  color: #959595;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.button-secondary:hover a {
  color: #fff;
}
.button-secondary:hover {
  background: #444;
}
.hero-section {
  margin-top: 30px;
}
.hero-section .hero > div {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero p .text1 {
  font-family: "Lato", sans-serif;
  font-weight: semi-bold;
  color: #959595;
  font-size: 24px;
}
.hero p .text2 {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #959595;
  font-size: 28px;
}
.hero p .text3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 60px;
  background: linear-gradient(90deg, #525ceb 0%, #6a72ed 46%, #6a72ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.hero-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.hero-icons img:hover {
  transform: scale(1.1);
}
.progress-section .number {
  font-family: "Lato", sans-serif;
  font-weight: black;
  color: #525ceb;
  font-size: 24px;
}

.progress-section .text {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #959595;
  font-size: 20px;
}
#home
  > div
  > div
  > div.col-lg-6.col-sm-12
  > div.hero-buttons
  > div
  > button.button-secondary.btn.btn-lg
  > a:hover {
  color: #fff;
}

/* PROGRESS 1 CIRCULAR */
.progress-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
  gap: 40px;
}
.progress11 {
  animation: progress11 2s 0.5s forwards;
  width: 75px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  place-items: center;
  -webkit-animation: progress11 2s 0.5s forwards;
}
.progress11::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    rgb(82, 92, 235) calc(var(--percentage) * 1%),
    rgb(0, 0, 0) 0
  );
  transform: scaleX(-1);
  border-radius: 50%;
  mask: radial-gradient(black 55%, transparent 0);
  mask-mode: alpha;
  -webkit-mask: radial-gradient(#0000 55%, #000 0);
  -webkit-mask-mode: alpha;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@property --percentage {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@keyframes progress11 {
  0% {
    --percentage: 0;
  }

  100% {
    --percentage: 100;
  }
}

/* PROGRESS 2 CIRCULAR */
.progress22 {
  animation: progress22 2s 0.5s forwards;
  width: 75px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  place-items: center;
  -webkit-animation: progress22 2s 0.5s forwards;
}
.progress22::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  background: conic-gradient(
    rgb(82, 92, 235) calc(var(--percentage) * 1%),
    rgb(0, 0, 0) 0
  );
  border-radius: 50%;
  mask: radial-gradient(black 55%, transparent 0);
  mask-mode: alpha;
  -webkit-mask: radial-gradient(#0000 55%, #000 0);
  -webkit-mask-mode: alpha;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@property --percentage {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@keyframes progress22 {
  0% {
    --percentage: 0;
  }

  100% {
    --percentage: 60;
  }
}

/* PROGRESS 3 CIRCULAR */
.progress33 {
  animation: progress33 2s 0.5s forwards;
  width: 75px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  place-items: center;
  -webkit-animation: progress33 2s 0.5s forwards;
}
.progress33::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  background: conic-gradient(
    rgb(82, 92, 235) calc(var(--percentage) * 1%),
    rgb(0, 0, 0) 0
  );
  border-radius: 50%;
  mask: radial-gradient(black 55%, transparent 0);
  mask-mode: alpha;
  -webkit-mask: radial-gradient(#0000 55%, #000 0);
  -webkit-mask-mode: alpha;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@property --percentage {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@keyframes progress33 {
  0% {
    --percentage: 0;
  }

  100% {
    --percentage: 85;
  }
}
.progress1,
.progress2,
.progress3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}
.progress1 .number,
.progress2 .number,
.progress3 .number {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}
.progress1 .text,
.progress2 .text,
.progress3 .text {
  font-size: 20px;
  margin: 0;
  text-align: center;
}

img.progress-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 17.5px;
  left: 17.5px;
}

/* SERVICES SECTION */
section.services,
section.port {
  background-color: black;
  margin-bottom: 40px;
}
.services-container,
.port-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* make all children equal height in the row */
  gap: 20px;
  margin-top: 40px;
}
.services-title,
.contact-title,
.port-title {
  font-family: "K2D", sans-serif;
  font-weight: 700;
  color: #ffff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}
.services-sub-text,
.contact-sub-text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #959595;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  margin: auto 80px;
}
/*FEATURE SECTION */
.feature {
  flex: 1 1 300px; /* flexible width but min 300px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 27px 42px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
}
.feature > h3 {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #525ceb;
  font-size: 24px;
}
.feature > p {
  font-family: "Lato", sans-serif;
  font-weight: medium;
  color: #959595;
  font-size: 20px;
  margin-top: 10px;
}

/* PORT SECTION */
.scroll-container {
  display: none;
}
.wrapper,
.modal {
  display: block;
}
.port-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.port-buttons button {
  padding: 12px 40px;
}
.button-port {
  background: #1f1f1f;
  opacity: 100%;
  color: #c6c6c6;
  border: none;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.button-port:hover {
  background: #4141c9;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(82, 92, 235, 0.16);
}
.wrapper {
  width: 100%;
  position: relative;
}
.wrapper .carousel {
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  scroll-behavior: smooth;
}
.carousel img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  margin-left: 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.carousel img:first-child {
  margin-left: 0;
}

.wrapper i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #4141c9;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  z-index: 999;
  top: 50%;
}
.wrapper i:first-child {
  left: -28px;
}
.wrapper i:last-child {
  right: -28px;
}

/* POP UP */
.popup-overlay {
  display: none;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: block;
  margin: 5% auto;
  max-width: 60%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px #fff;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* CONTACT SECTION */
.contact-container {
  margin-bottom: 30px;
}
/* CONTACT BUTTONS */
.button-contact {
  background: #525ceb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: bold;
  height: 45px;
}

.button-contact {
  background: #4141c9;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(82, 92, 235, 0.16);
}

/*HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px; /* Equivalent to Bootstrap's gap-2 */
  justify-content: flex-start;
  margin-top: 1rem; /* Equivalent to mt-3 */
  flex-wrap: wrap; /* Optional: makes buttons wrap on smaller screens */
}
/* Primary contact button style */
.button-contact {
  background: #4141c9;
  color: #fff;
  border: 2px solid #4141c9;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(82, 92, 235, 0.16);
  width: 200px; /* Make both buttons same width */
}
.button-contact:hover {
  background-color: #525ceb;
  color: #fff;
}

/* Secondary button style (Download CV) */
.button-secondary {
  background: transparent;
  color: #959595;
  border: 2px solid #959595;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: bold;
  width: 200px;
  height: 45px;
}
.button-secondary:hover {
  background-color: #959595;
  color: #fff;
}

.contact-inputs {
  background-color: black;
  padding: 20px 100px;
  margin: auto 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contact-left-inputs,
.contact-right-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}
.contact-inputs input,
.contact-inputs textarea,
select .custom-select {
  width: 491px;
  padding: 15px;
  margin: 18px 8px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #959595;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-inputs > input:focus,
.contact-inputs > textarea:focus,
select.custom-select:focus {
  outline: none;
  border: none;
}
.contact-right-inputs button {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  align-self: flex-end;
  margin-top: 12px;
  margin-right: 8px;
  border: solid;
  text-align: center;
}

/* CUSTOM SELECT */
.contact-select {
  position: relative;
  width: 491px;
  margin: 18px 8px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

.custom-select {
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #959595;
  cursor: pointer;
}

.select-options {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 8px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 999;
  display: none;
}

.select-options li {
  padding: 15px;
  color: #959595;
  cursor: pointer;
  background-color: #000;
}

.select-options li:hover {
  background-color: #959595;
  color: black;
}
.select-options {
  display: none;
  position: absolute;
  background: #000;
  width: 100%;
  border-radius: 8px;
  z-index: 999;
}

/* FOOTER SECTION */
.footer-container {
  color: #959595;
  padding: 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.footer-container .navbar {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-list ul {
  font-family: "Lato", sans-serif;
  font-size: 20px;
}
.footer-container {
  border-bottom: 1px solid #959595;
}
.mine-section {
  color: #959595;
  padding: 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}

.mine-section p {
  text-align: center;
  margin-top: 8px;
}

.mine-section a {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.mine-section a:hover {
  color: #525ceb;
}

.mine-section .dev-name {
  position: relative;
}

.sidenav {
  display: none;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1300px; /* Or whatever fits your design */
  }
  .hero p .text1 {
    font-size: 41px;
  }
  .hero p .text2 {
    font-size: 45px;
  }
  .hero p .text3 {
    font-size: 65px;
  }
  #contactBtn{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .button-contact,
  .button-secondary {
    max-width: 280px;
    padding: 8px 16px;
    font-size: 26px;
    height: 70px;
  }
  .button-secondary a {
    display: flex;
    /* align-content: center; */
    align-items: center;
  }
  .progress-section .number {
    font-family: "Lato", sans-serif;
    font-weight: black;
    color: #525ceb;
    font-size: 35px;
  }
  .progress-section .text {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    color: #959595;
    font-size: 25px;
  }
  /* PROGRESS 1 CIRCULAR */
  .progress-section {
    margin-top: 20px;
    gap: 40px;
  }
  .progress1,
  .progress2,
  .progress3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
  }
  .progress11,
  .progress22,
  .progress33 {
    width: 100px;
  }
  img.progress-icon {
    width: 41px;
    height: 41px;
    position: absolute;
    top: 28.7px;
    left: 28.7px;
  }
}
@media (max-width: 1000px) {
  /* NAVBAR SECTION */
  .navbar {
    padding: auto 0px;
  }
  body > section.navbar-section.container > div > div.logo {
    margin-left: 50px;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
    z-index: 1000; /* behind your menu but above page content */
  }
  .bi-list {
    display: block;
    font-size: 30px;
    color: #525ceb;
  }
  .navbar .logo {
    font-size: 25px;
  }
  body > section.navbar-section.container > div > div.list {
    display: none;
  }
  /* SIDEBAR */
  .sidenav {
    display: none;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background-color: #111111;
    overflow-x: hidden;
    transition: 0.5s;
  }

  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.3s;
  }

  .sidenav a:hover {
    color: #525ceb;
  }
  .sidenav {
    display: block;
  }
  .sidenav .closebtn {
    width: 60px;
    font-size: 50px;
    border: none;
    margin-bottom: 70px;
  }
  /*.buutton-contact-sidenav {
    font-size: 20px;
    margin-top: 350px;
    border: none;
    padding: 5px 20px;
    background: #4141c9;
    color: #fff;
    border: 2px solid #4141c9;
    border-radius: 8px;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(82, 92, 235, 0.16);
    width: 180px;
  }*/
  /* HERO SECTION */
  .hero-section {
    margin-top: 30px;
  }
  .hero-section .hero {
    flex-direction: column-reverse;
  }
  .hero-section .hero > div {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .hero-section .hero :nth-child(2) > .hero-text > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-section .hero :nth-child(2) p {
    text-align: center;
  }
  .hero p .text1 {
    font-size: 16px;
  }
  .hero p .text2 {
    font-size: 20px;
  }
  .hero p .text3 {
    font-size: 40px;
  }

  div.hero-text > p > br:nth-child(5) {
    display: none;
  }
  .hero-icons {
    display: flex;
    justify-content: center;
    margin: 20px auto;
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .button-contact,
  .button-secondary {
    max-width: 100px;
    padding: 8px 16px;
    font-size: 10px;
    height: 35px;
  }

  .progress-section .number {
    font-family: "Lato", sans-serif;
    font-weight: black;
    color: #525ceb;
    font-size: 24px;
  }

  .progress-section .text {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    color: #959595;
    font-size: 20px;
  }

  /* PROGRESS 1 CIRCULAR */
  .progress-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    gap: 13px;
  }
  .progress11,
  .progress22,
  .progress33 {
    width: 60px;
  }
  img.progress-icon {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 17.5px;
    left: 17.5px;
  }
  .progress1 .number,
  .progress2 .number,
  .progress3 .number {
    font-size: 15px;
  }
  .progress1 .text,
  .progress2 .text,
  .progress3 .text {
    font-size: 15px;
  }

  /* CONTACT SECTION */
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-inputs {
    flex-direction: column;
    align-items: center;
    max-width: 382px;
  }
  .contact-inputs input,
  .contact-inputs textarea {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 18px 0;
    flex: 1;
  }
  .custom-select {
    max-width: 382px;
  }
  .contact-left-inputs,
  .contact-right-inputs {
    max-width: 382px;
    padding: 0 40px;
  }
  .contact-select {
    max-width: 382px;
    margin: 18px 0px;
  }
  .contact-right-inputs button {
    max-width: 85px;
    font-size: 20px;
    margin-top: 12px;
    margin-right: 115px;
    text-align: center;
  }
  /* SERVICE SECTION */
  .services-title,
  .contact-title,
  .port-title,
  .services-sub-text,
  .contact-sub-text {
    font-size: 32px;
    text-align: left;
    margin: auto 0;
  }
  .services-sub-text,
  .contact-sub-text {
    font-size: 18px;
    color: #707070;
  }
  .services-container {
    flex-direction: column;
  }
  .services-container {
    flex-direction: column;
    align-items: center;
  }
  .feature {
    width: 100%;
    max-width: 400px; /* keeps them from getting too wide */
  }
  .feature {
    width: 319px;
  }
  .feature > h3 {
    font-size: 15px;
  }
  /*PORTFOLIO SECTION */
  .wrapper,
  .modal {
    display: none;
  }
  .port-buttons {
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .button-port {
    font-size: 16px;
  }

  .port-buttons button.all,
  .port-buttons button.app,
  .port-buttons button.web {
    padding: 8px 12px;
    height: fit-content;
  }
  /*PORT MOBILE */
  .scroll-container {
    display: block;
  }
  .scroll-container {
    width: 100%;
    height: 304px;
    overflow: auto;
    white-space: nowrap;
    display: flex;
    gap: 15px;
    -ms-overflow-style: none; /*EDGE ,FIREFOX */
  }
  .scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .scroll-container div img {
    width: 100%;
    height: auto;
  }
  .card-text {
    width: 250px;
    height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #141414;
    color: #959595;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .card-text p {
    margin: 0;
  }
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
  }

  .popup-img {
    display: block;
    max-width: 100%;
    max-height: 90%;
    margin: 5% auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }

  .popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 5001;
  }
  /* FOOTER SECTION */
  .footer-container {
    color: #959595;
    padding: 10px;
    text-align: center;
  }
  .footer-container .navbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  body > section.footer > div > div > div:nth-child(2) > ul {
    font-family: "Lato", sans-serif;
    font-weight: medium;
    font-size: 16px;
    color: #959595;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 30px;
  }
  .footer-list ul {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  body > section.navbar-section.container > div > div.logo {
    margin-left: 0px;
  }
  .port-buttons {
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .button-port {
    font-size: 13px;
  }

  .port-buttons button.all,
  .port-buttons button.app,
  .port-buttons button.web {
    padding: 8px 12px;
    height: fit-content;
  }
  .feature {
    width: 280px;
  }
  .services-title,
  .contact-title,
  .port-title,
  .services-sub-text,
  .contact-sub-text {
    font-size: 26px;
    text-align: left;
    margin: auto 0;
  }
  .services-title,
  .contact-title,
  .port-title,
  .services-sub-text,
  .contact-sub-text {
    font-size: 18px;
    text-align: left;
    margin: auto 0;
  }
  body > section.footer > div > div > div:nth-child(2) > ul {
    font-size: 10px;
  }
  /*PORT MOBILE */
  .card-text {
    width: 200px;
    height: 54px;
    padding: 16px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
