/* ********************************** */
/*  HEADER */
/* ********************************** */

.header {
  display: flex;
  width: 100%;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  z-index: 1117;

  /* want header to be sticky later */
  height: 9rem;
  padding: 0 4.8rem;
}

/* header and stickly class at the same time */
.header.sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  height: 7rem;
  transition: all 0.5s;
}

/* ********************************** */
/*  NAVIGATION */
/* ********************************** */

.home:link,
.home:visited {
  /* font-family: "Rubik"; */
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #3392c5;
  transition: all 0.3s;
  letter-spacing: 0.75;
}

.home:hover,
.home:active {
  color: #000;
  text-decoration: underline;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 9rem; */
  width: 100%;
  /* padding: 0 6rem; */
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  font-family: 'Rubik';
  text-decoration: none;
  color: #333;
  font-weight: 300;
  font-size: 1.8rem;
  text-transform: uppercase;
  transition: all 0.3s;
  letter-spacing: 0.75px;

  /* padding: 0.4rem; */
  /* background-color: orange; */
  /* border-bottom: solid 1px red; */
}

/* .main-nav-link:hover,
.main-nav-link:active {
  padding: 0 0.8rem;
  color: #3392c5;
} */

.current {
  border-bottom: solid 2px #2e83b1;
}
/* ********************************** */
/*  HERO SECTION */
/* ********************************** */

.hero {
  /* max-width: 130rem; */
  max-width: 100%;
  height: 100vh;
  margin: 0 auto;
  /* padding: 0 3.2rem; */
  position: relative;
  text-align: center;
  /* overflow: hidden; */
}

#particles-js {
  width: 100%;
  /* height: 800px; */
  height: 100vh;
  background-color: #fff;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.hero-welcome-box {
  max-width: 45rem;
  /* height: 50vh; */
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.hero-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo {
  /* width: 77%; */
  width: 25%;
  height: 100%;
}

.hero-heading {
  font-size: 5.2rem;
  color: #333;
  align-self: center;
}

.hero-vertical-line {
  width: 0.16rem;
  height: 10rem;
  /* display: inline-block; */
  border: none;
  color: #333;
  background-color: #333;
  margin: 2rem;
}

.hero-break-line {
  width: 10rem;
  height: 0.15rem;
  border: none;
  color: #333;
  background-color: #333;
  margin: auto;
  /* margin-top: -12rem; */
}

.hero-social-link {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}

.hero-social-link-button:link,
.hero-social-link-button:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #000;
}

.hero-social-link-button:hover,
.hero-social-link-button:active {
  color: #3392c5;
}

.social-icon {
  height: 4rem;
  width: 4rem;
}

.hero-description {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

/* MOBILE Navigation */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name='close-outline'] {
  display: none;
}

/* ********************************** */
/*  ABOUT ME SECTION */
/* ********************************** */

.section-about-me {
  padding: 12.8rem 0;
  background-color: #ebf4f9;
}

.about-me-img-box {
  display: grid;
  /* align-items: center;
  justify-content: center; */
  margin: 0 auto;
  overflow: hidden;
}

.about-me-img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.lazy-img {
  filter: blur(20px);
}

.about-me-img:hover {
  transform: scale(1.1);
}

.about-me-text-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-me-description {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

/* ********************************** */
/*  EDUCATION SECTION */
/* ********************************** */

.section-education {
  padding: 12.8rem 0;
}

.education-school-box {
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  flex-direction: column;
  /* border-top: solid 2.5px #c2deee; */
  border-radius: 0.5rem;
  padding: 1.6rem 2.4rem 2.4rem 2.4rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  transition: all 0.4s;
}

.education-school-box:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.006);
  /* border-top: none; */
}

.school-icon {
  width: 10%;
}

/* ********************************** */
/*  SKILLS SECTION */
/* ********************************** */

.section-skills {
  padding: 12.8rem 0;
  background-color: #ebf4f9;
}

.skill-box {
  display: flex;
  flex-direction: column;
}

.skill-icon {
  height: 2.5rem;
  width: 2.5rem;
}

.skill-detail {
  list-style-type: disc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
}

/* ********************************** */
/*  EXPERIENCE SECTION */
/* ********************************** */

.section-experience {
  padding: 12.8rem 0;
}

.experience-timeline-date-right {
  text-align: right;
  margin-top: 1.5rem;
}

.experience-timeline-date-left {
  text-align: left;
  margin-top: 1.5rem;
}

.experience-timeline-bar {
  background-color: #c2deee;
  position: relative;
}

.experience-timeline-point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #2e83b1;
  border-radius: 50%;
}

.experience-timeline-text {
  border-top: solid 2.5px #c2deee;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  transition: all 0.4s;
}

.experience-timeline-text:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.006);
}

/* ********************************** */
/* BLOCK QUOTE SECTION */
/* ********************************** */

.section-block-quote {
  padding: 2.4rem 0;
}

.block-quote-box {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-quote-text {
  padding: 3.2rem 12.8rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background-color: #c2deee;
  box-shadow: 0 1.6rem 2.4rem rgba(0, 0, 0, 0.075);
  transition: all 0.4s;
}

.author {
  text-align: right;
  font-size: 1.4rem;
}

/* ********************************** */
/*  PROJECT SECTION */
/* ********************************** */

.section-project {
  padding: 1rem 0 12.8rem 0;
  /* background-color: #ebf4f9; */
  /* background-image: url('/img/project-background.jpeg');
  background-position: center;
  background-repeat: no-repeat; */
}

.projects {
  margin-top: 9.6rem;
}

.project-btn {
  padding: 2rem 2rem !important;
}

.projects-tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.projects-tab {
  margin-right: 1.2rem;
  transform: translateY(-50%);
}

/* .projects-tab:hover {
  transform: translateY(-66%);
} */

.projects-tab-active {
  transform: translateY(-66%);
}

.projects-content {
  display: none;
}

.projects-content-active {
  display: grid;
  row-gap: 2.4rem;
  column-gap: 3.2rem;
  /* background-color: orange; */
}

/* .project-box:link,
.project-box:visited {
  position: relative;
  display: block;
  border-top: solid 1px #2e83b1;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;

  background-color: rgba(255, 255, 255, 0.6);

  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
  box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.075);
}

.project-box:hover {
  transition: all 0.6s;
  background-color: rgba(248, 248, 248);
}

.project-box:active {
  transform: translateY(5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.006);
}

.project-box:focus {
  outline: none;
} */

/* .project-box:link,
.project-box:visited {
  height: 19rem;
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
  border-radius: 20px;
  width: 250px;
  background-size: cover;
  box-shadow: inset 0 0 0 2px #ebf4f9;
} */

.project-box--to-right:link,
.project-box--to-right:visited {
  display: block;
  position: relative;
  height: 19rem;
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
  border-radius: 20px;
  background: url(./../img/backgroundToRight.jpeg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.project-box--to-left:link,
.project-box--to-left:visited {
  display: block;
  position: relative;
  height: 19rem;
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
  border-radius: 20px;
  background: url(./../img/backgroundToLeft.jpeg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.project-box--content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background-color: #ebf4f9;
  border-top-left-radius: 20px;
  transform: translateY(78px);
  transition: transform 0.25s;
}

.project-box--content-up-small {
  transform: translateY(60px);
}

.project-box--content-up-medium {
  transform: translateY(40px);
}

/* .project-box--content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -47px;
  width: 100px;
  height: 100px;
  transform: rotate(-175deg);
  border-radius: 50%;
  box-shadow: inset 45px 45px #ebf4f9;
} */

.project-box--title {
  /* color: #fff; */
  font-size: 1.8rem;
  /* line-height: 1.6rem; */
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-box--subtitle {
  /* color: #fff; */
  display: block;
  font-size: 1rem;
  /* font-weight: 700; */
  /* margin-bottom: 1.6rem; */
}

.project-box--description {
  /* color: #fff; */
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.5s;
  font-weight: 500;
  /* line-height: 2rem; */
}

.project-box--to-right:hover .project-box--content,
.project-box--to-left:hover .project-box--content {
  transform: translateY(0);
}

.project-box--to-right:hover .project-box--description,
.project-box--to-left:hover .project-box--description {
  opacity: 1;
  transition-delay: 0.25s;
}

/* ********************************** */
/*  ACTIVITIES SECTION */
/* ********************************** */

.section-activities {
  padding: 12.8rem 0;
  background-color: #ebf4f9;
}

.slider {
  max-width: 100rem;
  height: 40rem;
  margin: 0 auto;
  position: relative;

  /* IN THE END */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 35rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;
}

.slide-text {
  width: 70%;
  position: relative;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  border: none;
  background: #ffffffb3;
  font-family: inherit;
  color: #333;
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
  font-size: 3.25rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--left:hover,
.slider__btn--right:hover {
  background-color: #3392c5;
  color: #fff;
  transition: all 0.15s;
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: none;
  background-color: #b9b9b9;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  /* background-color: #fff; */
  background-color: #888;
  opacity: 1;
}

.activities-upcoming {
  list-style-type: none;
}

.activities-upcoming span {
  font-weight: 600;
}
/* ********************************** */
/*  CONTACT SECTION */
/* ********************************** */

.section-contact {
  display: flex;
  padding: 12.8rem 0rem;
  height: 100vh;
  position: relative;
}

.sidebar {
  flex-basis: 50rem;
  /* background-color: #ebf4f9; */
  padding: 3rem 5rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* text-align: center; */
}

.contact-link:link,
.contact-link:visited {
  text-decoration: none;
  font-size: 2rem;
  color: #333;
  letter-spacing: 0.25px;
  text-transform: lowercase;
}

.contact-link:hover,
.contact-link:active {
  color: #2e83b1;
}

.copyright {
  margin-top: auto;
  font-size: 1.2rem;
  text-align: center;
  color: #333;
}

.scrollTop {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}

.up-icon {
  padding: 0.75rem 0.75rem !important;
}

/* MAP */
#map {
  flex: 1;
  height: 100%;
  /* background-color: #ebf4f9; */
}

.leaflet-content {
  font-family: Source Serif 4;
  font-size: 17px;
}

/* class="leaflet-content" style = "font-family: Source Serif 4; font-size: 17px; */
