/* Basic CSS reset  */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Set border and background to initial */
* {
  border: 0;
  background: none;
}

/* Makes these elements more responsive and easier to work with  */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Makes huge header tags wrap more uniformly  */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* Helps make P content more tidy and easier to read  */
p {
  max-width: 75ch; /* This can be adjusted to fit your design preference*/
  text-wrap: pretty;
}

/* Removes default list-styles */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* Removes default font styles if you set your own  */
input,
button,
textarea,
select {
  font: inherit;
}

/* Removes default link styles from a tags  */
a {
  color: inherit;
}

/* Sets body height to take up the full height of the screen  */
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: system-ui, sans-serif;
}

/* avoid iOS weirdness: */
body {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus styles (for accessibility) */
:focus-visible {
  outline: 2px solid var(--accent-color, #4f46e5); /* or something visible */
  outline-offset: 2px;
}

/* Makes scrolling when clicking an anchor element more fluid  */
@media (prefers-reduced-motion: no-preference) {
  html:has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
  }
}
/*  End of CSS Reset  */
.section-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 1.3rem;
  margin: 100px 0;
}

.border-1 {
  border: 0.5px solid rgba(19, 19, 22, 0.3098039216);
}

.btn {
  margin-left: 2rem;
  margin-top: 0.5rem;
  color: inherit;
  font-weight: 600;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
  color: #4895EF;
  text-decoration: underline;
}

.icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
.icons .icon {
  width: 30px;
  height: 30px;
}

.h-txt {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

header {
  min-width: 100%;
}

.navbar {
  min-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.brand-img {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0px rgba(128, 128, 128, 0.151);
  border: 1px solid rgba(128, 128, 128, 0.253);
}
.menu p {
  height: 100%;
  padding: 0.5rem 1.3rem;
}
.menu .contact-btn {
  background-color: #11212D;
  color: #FFF;
}
.menu a {
  text-decoration: none;
  transition: all 0.2s ease-out;
  font-weight: 600;
}
.menu a:hover {
  color: #4895EF;
}

.is-available {
  color: #29BF12;
}
.is-available span {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 5px;
  margin-right: 3px;
  margin-bottom: 1px;
}

@keyframes flicker {
  0% {
    box-shadow: none;
    background: radial-gradient(#62eb4c, #29BF12);
  }
  50% {
    box-shadow: 0 0 8px 2px #45df2d;
    background: radial-gradient(#81f370, #29BF12);
  }
  100% {
    box-shadow: none;
    background: radial-gradient(#62eb4c, #29BF12);
  }
}
.is-available span {
  animation: flicker 3s ease 2s infinite;
}

.pc {
  padding: 0.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.project-link {
  display: block;
  text-decoration: none;
}

.pi {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(128, 128, 128, 0.281);
}

.p-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 0 8px 1px rgba(128, 128, 128, 0.322);
}

.pt {
  font-weight: 600;
}

.plink {
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: translateY(8px);
}

.pd a {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  margin-left: 1rem;
  background-color: #11212D;
  color: #fff;
  border-radius: 15px;
  padding: 5px 12px;
}
.pd a:hover {
  cursor: pointer;
  transform: scale(1.5);
  box-shadow: 0 0 15px 1px rgba(128, 128, 128, 0.295);
}

.article {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(19, 19, 22, 0.1215686275);
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.article:hover {
  cursor: pointer;
  box-shadow: 2px 2px 8px 0 rgba(128, 128, 128, 0.178);
  transform: translateX(2px);
  border: 1px solid rgba(90, 90, 90, 0.137);
}
.article:hover a {
  color: #4895EF;
}
.article a {
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.article .article-date {
  margin-left: 1rem;
  color: #595858;
  font-size: 12px;
}
.article h4 {
  font-size: 16px;
}

.contact-section {
  margin: 84px 0;
}
.contact-section .contact-icons {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-icons .icons {
  gap: 2.5rem;
}
.contact-section .contact-icons .icons .icon {
  width: 45px;
  height: 45px;
}

#medium {
  transform: scale(1.35);
}

footer {
  min-width: 100%;
  border-top: 1px solid rgba(128, 128, 128, 0.26);
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  left: 0px;
  text-align: center;
}
footer .footer-links a {
  text-decoration: none;
  font-weight: 500;
  margin-right: 0.5rem;
  font-size: 14px;
}
footer .footer-links a:hover {
  opacity: 0.8;
}
footer p {
  font-size: 12px;
  color: grey;
}

.intro {
  gap: 3rem;
}
.intro h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}
.intro h1 span {
  font-weight: 400;
}

.stock-section {
  min-height: 100px;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stock-bar {
  border-top: 2px solid #11212D;
  border-bottom: 2px solid #11212D;
}
.stock-bar ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.4rem 0;
}
.stock-bar ul li {
  font-weight: 600;
  font-size: 14px;
}

html {
  background-color: #FAFAFA;
  color: #11212D;
}

body {
  max-width: 1216px;
  min-height: 100vh;
  padding: 1rem 4rem;
  margin: 0 auto;
  padding-bottom: 90px;
  position: relative;
  background-color: #FFF;
  border-left: 1px solid rgba(128, 128, 128, 0.26);
  border-right: 1px solid rgba(128, 128, 128, 0.26);
}

* {
  transition: all 0.2s ease-in-out;
}

p {
  color: #253745;
}

.brand-img {
  box-shadow: 0 0 8px 0 rgba(78, 78, 78, 0.281);
}

.toggle-icon {
  display: none;
  transition: all 100ms ease;
}
.toggle-icon:hover {
  cursor: pointer;
}
.toggle-icon:active {
  transform: scale(0.9);
}

.active {
  display: flex;
}

.icon:hover {
  transform: scale(0.98);
  cursor: pointer;
  opacity: 0.8;
}

.project-img {
  box-shadow: 0 0 8px 0 rgba(78, 78, 78, 0.281);
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 2.5rem;
  margin: 150px auto;
  max-width: 700px;
}
.about-container .about-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-wrap: wrap;
  gap: 2rem;
}
.about-container .about-sub .about-img {
  max-width: 224px;
  max-height: 239px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(128, 128, 128, 0.26);
}
.about-container p {
  max-width: 85ch;
}

.contact-icons {
  margin: 150px auto;
}
.contact-icons .icon {
  height: 45px;
  width: 45px;
}

@media (max-width: 780px) {
  body {
    padding: 0.5rem;
    padding-bottom: 86px;
    border: none;
  }
  .btn {
    margin-left: 0.3rem;
  }
  .page-title {
    font-size: 28px;
  }
  .navbar {
    padding-top: 10px;
    flex-direction: column;
    gap: 1rem;
  }
  .brand-img {
    height: 36px;
    width: 36px;
  }
  .menu p {
    padding: 0.3rem 0.9rem;
  }
  .is-available {
    text-align: center;
    font-size: 12px;
  }
  .contact-btn {
    background: none;
    color: #11212D;
  }
  p {
    width: 100%;
  }
  .intro h1 {
    font-size: 30px;
  }
  .pc {
    padding: 0;
  }
  .article {
    padding: 0.3rem;
    margin: 0.8rem 0;
  }
  .about-container .about-sub {
    flex-direction: column;
  }
  .about-container .about-sub .about-img {
    transform: rotate(5deg);
  }
  footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}/*# sourceMappingURL=main.css.map */