* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-style: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

html::-webkit-scrollbar {
  width: 15px;
}
html::-webkit-scrollbar-thumb {
  background-color: bisque;
  border: 3px solid rgb(47, 45, 45);
  width: 12px;
  border-radius: 13px;
}
html::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.8);
  border: 3px solid rgb(47, 45, 45);
  border-radius: 13px;
}

body {
  background-color: black;
  /* -ms-overflow-style: none;
  scrollbar-width: none; */
}

/* 
================================================
>> NAVBAR
================================================
*/
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(47, 45, 45);
  height: 50px;
  padding: 0px 10%;
  position: sticky;
  top: 0;
  box-shadow: 0px -10px 12px 13px rgba(0, 0, 0, 0.4);
  z-index: 999;
}
.nav-logo {
  color: bisque;
  font:
    normal 600 28px "Lato",
    sans-serif;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  display: flex;
  height: 30px;
  width: 100px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  color: bisque;
  transition: 0.2s ease;
}
.nav-links a:hover {
  background-color: rgb(37, 35, 35);
  color: bisque;
}
.nav-links a.active {
  background-color: bisque;
  color: black;
}
.nav-links a.active:hover {
  background-color: rgb(190, 159, 121);
  color: black;
}

/* 
================================================
>> ALL SECTION
================================================
*/
section {
  background-color: aquamarine;
  display: flex;
  flex-direction: column;
}

:root {
  --slider-height: 500px;
  --slider-width: 600px;
}

/* 
================================================
>> HEADER // FIRST PAGE // HOME
================================================
*/
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: calc(100vh - 50px);
  background-color: bisque;
}
.home-img {
  width: 250px;
  border: 5px dashed rgb(47, 45, 45);
  box-sizing: content-box;
}
.home-text-box {
  max-width: 550px;
}
.home-text-box h1 {
  font:
    normal 700 35px "Lato",
    sans-serif;
  color: rgb(47, 45, 45);
}
.home-text-box p {
  font:
    normal 400 20px "Lato",
    sans-serif;
  color: rgb(47, 45, 45);
  text-decoration: underline;
}

/* 
================================================
>> SECTION #1 // EXPERIENCE
================================================
*/
.experience {
  background-color: rgb(240, 240, 240);
}
.experience-section-title {
  height: 70px;
  font:
    normal 800 35px "Lato",
    sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(47, 45, 45);
}
.experience-layer {
  height: calc(100vh - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.experience-slider {
  width: var(--slider-width);
  height: var(--slider-height);
  border: 8px solid rgb(47, 45, 45);
  box-sizing: content-box;
  border-radius: 20px;
  overflow: hidden;
  background-color: bisque;
  box-shadow: inset 0px 0px 12px 7px rgba(0, 0, 0, 0.3);
}
.experience-slider-container {
  display: flex;
  width: 300%;
  transition: 0.2s ease-out;
}
.experience-slide {
  display: flex;
  width: var(--slider-width);
  height: var(--slider-height);
  justify-content: center;
  flex-shrink: 0;
}
.experience-slide img {
  max-height: var(--slider-height);
  max-width: var(--slider-width);
  object-fit: contain;
}
.experience-slider-buttons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 100px;
}
.experience-slider-buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px dashed rgb(47, 45, 45);
  border-radius: 50%;
  background-color: bisque;
  height: 50px;
  width: 50px;
  fill: rgb(47, 45, 45);
}
.experience-slider-buttons button:hover {
  background-color: rgb(190, 159, 121);
  fill: rgb(37, 35, 35);
}

.experience-info {
  display: flex;
  flex-direction: column;
  width: 450px;
  box-shadow: 0px 0px 12px 7px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
.experience-company {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid black;
  border-left: 2px solid black;
  border-right: 2px solid black;
  background-color: bisque;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.experience-company h3 {
  font:
    normal 400 17px "Lato",
    sans-serif;
  color: black;
}
.experience-detail {
  height: 135px;
  background-color: white;
  border-bottom: 2px solid black;
  border-left: 2px solid black;
  border-right: 2px solid black;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
}
.experience-detail p {
  max-width: 90%;
  font:
    normal 400 16px "Lato",
    sans-serif;
}
.experience-position {
  margin-bottom: 0px;
  margin-bottom: 12px;
  text-align: center;
}

/* 
================================================
>> SECTION #2 // PROJECT
================================================
*/
.project {
  background-color: rgb(47, 45, 45);
}
.project-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  font:
    normal 800 35px "Lato",
    sans-serif;
  color: bisque;
}
.project-layer {
  height: calc(100vh - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-info {
  text-align: right;
  max-width: 35%;
}
.project-title {
  background-color: bisque;
  border-radius: 15px;
  padding: 5px 10px 8px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  font:
    normal 400 20px "Lato",
    sans-serif;
  margin-bottom: 10px;
}
.project-description {
  font:
    normal 400 17px "Lato",
    sans-serif;
  color: bisque;
}

.project-divider {
  border: none;
  border-right: 5px solid bisque;
  align-self: stretch;
  margin: 0px 10px;
}

.project-slider {
  width: var(--slider-width);
  height: var(--slider-height);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid bisque;
  box-sizing: content-box;
  box-shadow: inset 0px 0px 12px 7px rgba(0, 0, 0, 0.3);
  background-color: white;
}
.project-slider-container {
  display: flex;
  flex-direction: column;
  height: 200%;
  transition: 0.2s ease-out;
}
.project-slide {
  display: flex;
  width: var(--slider-width);
  height: var(--slider-height);
  justify-content: center;
  flex-shrink: 0;
}
.project-slide img {
  max-height: var(--slider-height);
  max-width: var(--slider-width);
  object-fit: contain;
}

.project-slider-indicators {
  list-style: none;
  height: var(--slider-height);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 10px;
}
.project-indicator {
  width: 30px;
  flex: 1;
}
.project-indicator.active a {
  background-color: bisque;
}
.project-indicator a {
  display: block;
  height: 100%;
  border: 5px solid bisque;
  transition: 0.1s ease;
}
.project-indicator:hover a {
  background-color: rgb(37, 35, 35);
  border-color: rgb(190, 159, 121);
}
.project-indicator.active:hover a {
  background-color: rgb(190, 159, 121);
}
.project-indicator:first-child,
.project-indicator:first-child a {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.project-indicator:last-child,
.project-indicator:last-child a {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* 
================================================
>> SECTION #3 // PROFILE
================================================
*/
.profile {
  background-color: bisque;
}
.profile-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  font:
    normal 800 35px "Lato",
    sans-serif;
  color: rgb(47, 45, 45);
}
.profile-layer {
  height: calc(100vh - 50px);
  display: flex;
  justify-content: center;
  align-items: center;

  display: flex;
}

.profile-img-box {
  border: 5px solid rgb(47, 45, 45);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: white;
  padding: 10px;
}
.profile-img {
  height: 500px;
  border: 5px double rgb(47, 45, 45);
  box-sizing: content-box;
}

.profile-info-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  text-align: left;
  margin-left: 8px;
}
.profile-info-box {
  border: 5px solid rgb(47, 45, 45);
  display: flex;
  justify-content: left;
  align-items: center;
  border-radius: 20px;
  background-color: white;
  padding: 25px 10px;
  position: relative;
}
.profile-info-title {
  position: absolute;
  border: 5px solid rgb(47, 45, 45);
  background-color: rgb(47, 45, 45);
  color: bisque;
  border-radius: 20px;
  top: 0;
  transform: translateY(-55%);
  padding-bottom: 2px;
  left: 15px;
  width: 200px;
  display: flex;
  justify-content: center;
}

.profile-skills .markup {
  background-color: rgb(250, 189, 92);
  padding: 2px 10px 5px;
  border-radius: 10px;
}
.profile-skills .language {
  background-color: rgb(118, 212, 106);
  padding: 2px 10px 5px;
  border-radius: 10px;
}
.profile-skills .database {
  background-color: rgb(140, 181, 232);
  padding: 2px 10px 5px;
  border-radius: 10px;
}

.profile-education {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* 
================================================
>> FOOTER // LAST PAGE
================================================
*/
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(47, 45, 45);
  height: 150px;
}

.footer-contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}
.footer-contacts-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 250px;
  height: 35px;
  border-radius: 20px;
  background-color: bisque;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-contacts-icon {
  height: 35px;
  width: 35px;
  fill: rgb(47, 45, 45);
}
.footer-contacts-name {
  margin-bottom: 2px;
  font:
    normal 600 18px "Lato",
    sans-serif;
  color: rgb(47, 45, 45);
}
.footer-contacts-link:hover {
  background-color: rgb(190, 159, 121);
}
.footer-contacts-link:hover .footer-contacts-icon {
  fill: rgb(37, 35, 35);
}
.footer-contacts-link:hover .footer-contacts-name {
  color: rgb(37, 35, 35);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.footer-copyright button {
  height: 20px;
  width: 85px;
  border-radius: 10px;
  background-color: bisque;
  border: none;
  font:
    normal 400 14px "Lato",
    sans-serif;
  transition: 0.2s ease;
}
.footer-copyright button:hover {
  background-color: rgb(190, 159, 121);
}
.footer-copyright-text {
  color: bisque;
  font:
    normal 400 14px "Lato",
    sans-serif;
  margin-bottom: 15px;
}
