
*{
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  background: #242034;
  perspective: 1px;
  transform-style: preserve-3d;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* gif background */
#header {
  position: fixed;
  width: 100%;
  height: 120vh;
  background-color: #242735;
  background-image: url(Images/Header/header-background.gif);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 26.3% 36.2%;
  transition: transform 0.2s;
  transform-origin: top;
}



/* ------- The main nav bar -------- */
#nav-wrapper {
  position: sticky; 
  display:inline;
  z-index: 9999;
  height: 0;
}

#nav-wrapper #nav{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: inline;
  background-color: #D1D7E0;
}

#nav-wrapper #nav ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  padding: 1% 0; 
  background-color: #D1D7E0; 
}

#nav-wrapper #nav ul li a {
  color: #242034;
  text-decoration: none;
  /* font-size: 20px; */
  font-size: 130%;
  position: relative;
}

#nav-wrapper #nav ul li a::after{
  content: '';
  width: 0;
  /* height: 3px; */
  height: 12%;
  background: #242034;
  position: absolute;
  left: 0;
  /* bottom: -4px; */
  bottom: -15%;
  transition: 0.5s;
}

#nav-wrapper #nav ul li a:hover::after{
  width:100%;
}

.nav-item {
  margin-right: 5rem;
}



.hamburger {
  display: none;
  position: sticky;
  margin-left: 5%;
  margin-top: 0%;
}

.bar {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #D89600;
}




/* ----- header text------- */

.header-text{
  position: relative;
  color: #D1D7E0;
  margin-top: 15%;
  margin-left: 54%;
  /* font-size: 47px; */
  font-size: 2rem;
  transition: letter-spacing 0.3s ease-in-out;
}

.header-text:hover {
  letter-spacing: 1.2px;
}

.header-text h1{
  /* margin-top: 10px;
  font-size: 55px; */
  font-size: 4rem;
  color: #D1D7E0;
}

.header-text h1 span{
  color: #D89600;
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #242034; 
  opacity: 0;
  pointer-events: none; /* To ensure clicks pass through the overlay */
  z-index: 1; /* div is on top of other header contents */
}



/* -------------about section--------------*/
#about{
  /* padding: 100px 80px 200px 80px; */
  padding: 0% 5% 5% 5%;

  margin: auto;
  /* margin-top: 1850px; */
  margin-top: 54%;
  width:100%;
  /* height: 100vh; */

}

#about .container{
  display: flex;
  align-items: top;
  flex-direction: row;

}

.about-image{
  width: 43%; 
  margin-top: -2%;
  object-fit: contain;
  z-index: 9000;
  transition: transform 0.3s;
}

.about-image:hover{
  transform: scale(1.1);
}


.about-text{
  position: relative;
  color: #D1D7E0;
  width: 50%;
  line-height: 1.5;
  text-align: justify;

}

.about-text h1 {
  /* font-size: 65px; */
  font-size: 4rem;
  font-weight: bold;
  color: #D1D7E0;
  border-bottom: 2px solid #D89600; /*line*/
  /* margin-bottom: 20px; */
  margin-bottom: 1%;
}


.about-text p{
  /* font-size: 22px; */
  font-size: 1.35rem;
  font-weight:light;
}

.about-text p span{
  color: #D89600;
}

.about-text p br {
  content: "";
  margin: 0.5em 0;
  display: block;
  line-height: 1em;
}



/* -------------languages--------------*/
#languages{
  /* padding: 150px 180px 150px 180px; */
  padding: 20% 12% 4% 12%;
  margin: auto;
}

.languages-section {
  display: flex;
  justify-content: space-between;
}

.right-side {
  flex: 1;
  margin-top: -5%;
  margin-left: -15%
}

.left-side {
  flex: 2;
}

.right-side {
  display: flex;
  flex-direction: column; 
  /* align-items: end;  */
  justify-content: center;
  align-items: stretch;
}

/* .right-side .content {
  width: 70%; 
  text-align: center; 
} */

.right-side h1 {
  color: #D1D7E0;
  /* font-size: 65px; */
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 2px solid #D89600; 
  padding-bottom: 2%;
  /* margin-bottom: 20px; */
  margin-bottom: 1%;
  position: relative;
  width: 100%;  
}

.right-side p {
  color: #D1D7E0;
  font-size: 1.38rem;
  font-weight: 300;
  width: 100%;  
}


/* .right-side h1 span {
  color: #D1D7E0;
  font-size: 1.38rem;
  font-weight: 300; 
  position: relative; 
}

.right-side h1 span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4px; 
  height: 2px;
  background-color: #D89600;
} */


.languages-image-decor {
  /* max-width: 100%;  */
  transition: transform 0.3s;
}

.languages-image-decor:hover {
  transform: scale(1.1);
}

.language {
  position: absolute;
  width: 5rem; /* Icon size */
  height: 5rem;
  transition: transform 0.3s ease-in-out;
}

.language:nth-child(1) { transform: rotate(18deg) translate(150px) rotate(-18deg); }
.language:nth-child(2) { transform: rotate(90deg) translate(150px) rotate(-90deg); }
.language:nth-child(3) { transform: rotate(162deg) translate(150px) rotate(-162deg); }
.language:nth-child(4) { transform: rotate(234deg) translate(150px) rotate(-234deg); }
.language:nth-child(5) { transform: rotate(306deg) translate(150px) rotate(-306deg); }
.language:nth-child(6) { transform: rotate(378deg) translate(150px) rotate(-378deg); }

.language:hover {
  transform: translate(0, 0) scale(1.2);
  z-index: 10;
}

.language-content {
  display: flex;
  align-items: center;
}

.language-content img {
  /* width: 75px;
  height: 75px; */
  width: 5rem;
  height: 5rem;
}


.languages-list {
  position: relative;
  /* width: 300px;
  height: 300px; */
  display: flex;
  padding: 0% 0% 0% 25%;
  /* justify-content: center; */
  align-items: center;
}

.progress {
  background-color: #D1D7E0; 
  border-radius: 13px;
  /* height: 8px; */
  height: 0.5rem;
  width: 50%; 
  margin-right: 25%;
  /* margin-left: 5%; */
}

.progress-bar {
  background-color: #D89600;
  border-radius: 13px; 
  /* height: 8px; */
  height: 0.5rem;
}


/* -------------SkillSet--------------*/
#timeline {
  /* padding: 150px 180px 150px 180px; */
  padding: 12% 12% 8% 12%;
  /* margin: auto; */
  position: relative;
  /* max-width: 1100px; */
  margin: 0 auto;
}

#timeline::after {
  content: '';
  position: absolute;
  /* width: 5px; */
  width:0.25%;
  background-color: #D89600;
  /* top: 330px;
  bottom: 300px; */
  top: 13%;
  bottom: 7%;
  left: 50%;
}

#timeline h1{
  color: #D1D7E0;
  /* font-size: 65px; */
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 2px solid #D89600; /*line*/
  display: inline-block;
  padding-bottom: 1%;
}


.course {
  /* padding: 10px 40px; */
  padding: 1% 3.5%;
  position: relative;
  width: 50%;
  color: #242034;
  background-color: #d1d7e0;
  font-weight:light;
  border-radius: 7px; 
  /* margin-bottom: 20px;  */
  margin-bottom: 2%; 
  transition: background 0.3s, transform 0.3s;
}

.course:hover {
  background: #7395ae;
  color:#D1D7E0;
  transform: translateY(-10px);
}

.course::after {
  content: '';
  position: absolute;
  /* width: 25px;
  height: 25px;
  right: -17px; */
  width: 1.7rem;
  height: 1.7rem;
  right: -17px;
  background-color: #D1D7E0;
  border: 4px solid #D89600;
  /* top: 15px; */
  top: 12%;
  border-radius: 50%;
  z-index: 1;
}

.course:nth-child(even) {
  margin-left: 50%;
}

.course:nth-child(even)::after {
  left: -17px;
}

.course:nth-child(odd) {
  margin-left: 0;
}

.course:nth-child(odd)::after {
  right: -17px;
}


.course-title {
  border-bottom: 2px solid #D89600; /*line*/
  /* padding-bottom: 10px; */
  padding-bottom: 1%;
  /* font-size: 22px; */
  font-size: 1.35rem;
}

.course:hover .course-title {
  border-bottom: 2px solid #242034;
}

.course:hover::after {
  background-color: #D89600;
}

.skill {
  /* font-size: 16px; */
  font-size: 1rem;
  column-count: 2;
  list-style-position: outside;
  /* padding-left: 30px; */
  padding-left: 5%;
}

.skill li {
  position: relative;
  line-height: 1.6; /* space between lines */
}

.skill li ul li{
  /* font-size: 13px;
  margin-left: 30px; */
  font-size: 0.9rem;
  margin-left: 5%;
}


/* -------------Services--------------*/
#services{
  /* padding: 150px 180px 150px 180px; */
  padding: 12% 12% 11% 12%;
}

#services .container h1{
  color: #D1D7E0;
  /* font-size: 65px; */
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 2px solid #D89600; /*line*/
  /* padding-bottom: 10px; */
  padding-bottom: 1%;
}

.services-img{
  /* width: 50px;
  height: 50px;
  margin-bottom: 10px; */
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1%;
}


.services-list{
  /* padding-left: 90px;
  padding-right: 90px; */
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); 
  /* grid-gap: 40px;
  margin-top: 50px; */
  grid-gap: 3%;
  margin-top: 4%;
  line-height: 1.3;
  
}

.services-list div{
  padding: 10%;
  color: #242034;
  background: #d1d7e0;
  /* padding: 30px; */
  border-radius: 7px; 
  transition: background 0.3s, transform 0.3s;
}

.services-list div:hover {
  background: #7395ae;
  color:#D1D7E0;
  transform: translateY(-10px);
}

.services-list div h2{
  /* font-size: 30px; */
  font-size: 1.7rem;
  /* font-weight: 500px; */
  font-weight:bold;
  /* margin-bottom: 15px; */
  margin-bottom: 3%;
  border-bottom: 2px solid #D89600; /*line*/
}

.services-list div p{
  /* font-size: 18px; */
  font-size: 1.1rem;
}


/* -------------Projects--------------*/
#projects{
  /* padding: 150px 180px 150px 180px; */
  padding: 8% 12% 8% 12%;
  text-align: center;
}

#projects h1{
  /* font-size: 65px; */
  font-size: 4rem;;
  color: #D1D7E0;
  border-bottom: 2px solid #D89600; /*line*/
  /* padding-bottom: 20px;
  margin-bottom: 20px; */
  padding-bottom: 1%;
  margin-bottom: 3%;
}

.project-list{
  display: grid;
  grid-template-columns: repeat(4, auto); 
  /* grid-gap: 40px;
  margin-top: 50px; */
  grid-gap: 1%;
  row-gap: 5%;
}

.project{
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.project-img{
  width: 100%;
  border-radius: 7px;
  display: block;
  transition: transform 0.5s;
}

.project-prev-img{
  /* width: 300px;
  height: 473px; */
  width:19rem;
  height: 31rem;
}

.layer{
  width:100%;
  height: 100%;
  height: 0%;
  background: linear-gradient(#242034a8, rgb(23, 7, 87));
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* padding: 0 40px; */
  padding: 0 20%;
  text-align: center;
  color: #D1D7E0;
  font-weight: light;
  /* font-size: 20px; */
  font-size: 1.2rem;
  transition: height 0.4s;
}

.layer h3{
  color: #D1D7E0;
  font-weight: bold;
  /* font-size: 30px;
  margin-bottom: 20px; */
  font-size: 1.7rem;
  margin-bottom: 2%;
}


.layer a {
  padding: 3% 7%;
  /* color: #D1D7E0;  */
  /* font-size: 16px;
  margin-top: 30px; */
  font-size: 1rem;
  margin-top: 10%;
  color: #242034;
  text-align: center;
  text-decoration: none;
  background: #D1D7E0;
  /* line-height: 30px; */
  line-height: 180%;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.layer a:hover {
  /* color: #D1D7E0;  */
  background: #D89600;
}

.layer a img {
  /* width: 12px;
  height: 12px; */
  width: 1rem;
  height: 1rem;
}

.project:hover img{
  transform: scale(1.1);
}

.project:hover .layer{
  height: 100%;
}

/* -------------resume--------------*/
#resume {
  /* padding: 200px 180px 200px 180px; */
  padding: 10% 12% 10% 12%;
  background-color: #7395ae;
  color: #242034;
  text-align: center;
}

#resume h1 {
  /* font-size: 65px; */
  font-size: 4rem;
  border-bottom: 4px solid #D89600; /*line*/
  /* padding-bottom: 10px;
  margin-bottom: 20px; */
  padding-bottom: 1%;
  margin-bottom: 2%;
  display: inline-block;
}

#resume p {
  /* font-size: 22px;
  margin-bottom: 40px; */
  font-size: 1.35rem;
  margin-bottom: 3%;
}

#resume button {
  background-color: #242034;
  color: #D1D7E0;
  border: none;
  padding: 15px 30px;
  text-transform: uppercase;
  cursor: pointer;
  /* font-size: 18px; */
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

#resume button:hover {
  background-color: #D89600;
  color: #242034;
}

/* -------------Contact--------------*/
#contact {
  /* padding: 200px 180px 200px 180px; */
  padding: 10% 12% 10% 12%;
  background: #D1D7E0;
  text-align: center;
  color: #242034;
}

/* .contactinfo {
  margin-top: 20px;
} */

#contact h1 {
  /* font-size: 65px; */
  font-size: 4rem;;
  border-bottom: 4px solid #D89600; /*line*/
  padding-bottom: 1%;
  margin-bottom: 2%;
  display: inline-block;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 10px; */
  margin-bottom: 0.8%;
}

.info-item img {
  width: 1.4%;
  transition: transform 0.3s;
}


.info-item p,
.info-item a {
  /* margin-left: -5px;
  font-size: 22px; */
  margin-left: 0.5%;
  font-size: 1.35rem;
  color: #242034;
}

.info-item:hover {
  transform: scale(1.1);
}





/* -------------FOR SMALL SCREEN-------------- */
@media (max-width: 600px) {

  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width:100%;
    background-color: #242735; 
  }
  
  #header {
    position: fixed;
    width: 100vw; /* This will cover 100% of the viewport width */
    height: 115vh; 
    background-color: #242735;
    background-image: url(Images/Header/header-background-mobile.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    transition: transform 0.2s;
    transform-origin: top;
  }

  /* ------------------------------------------------- */

  #nav-wrapper {

    position: sticky; 
    z-index: 9999;
    /* top: 0; */
    /* width: 60%;  */
    justify-content:left;
    align-items:start;
    padding: 1rem 1rem;
    color: #fff;
  }



  #nav-list {
    position: fixed;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow:
        0 10px 27px rgba(255, 0, 0, 0.05);
  }

  #nav-list.active {
    transform: translateX(0); 
  }

  .nav-item {
    margin: 1.2rem 0;
    font-size: 0.9rem;
  }

  .hamburger-wrapper {
    position: -webkit-sticky;
    top: 5%;
    left: 5%; 
    z-index: 1000;
  }

  .hamburger {
      display: block;
      cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  

  /* ------------------------------------------------------ */


  
/* ----- header text------- */
  .header-text{
    position: relative;
    color: #D1D7E0;
    margin-top: 20%;
    margin-left: 20%;
    /* font-size: 47px; */
    font-size: 1rem;
  }

  .header-text h1{
    margin-top: 10%;
    font-size: 2rem;
    color: #D1D7E0;
  }

  .header-text h1 span{
    color: #D89600;
  }

  /* -------------about section--------------*/
  #about{
    /* padding: 100px 80px 200px 80px; */
    padding: 0% 8% 12% 8%;
    margin-top: 200%;
    background-color: #242034;
  }

  #about .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .about-text, .about-image {
    width: 100%;
    max-width: 100%;
    margin-top: 1em; 
  }

  .about-text h1 {
    font-size: 2rem; 
    text-align: start;
  }

  .about-text p {
    font-size: 1rem; 
  }


  /* -------------languages--------------*/
  #languages{
    padding: 12% 8% 20% 8%;
    background-color: #242034;
  }


  .language:nth-child(1) { transform: rotate(18deg) translate(90px) rotate(-18deg); }
  .language:nth-child(2) { transform: rotate(90deg) translate(90px) rotate(-90deg); }
  .language:nth-child(3) { transform: rotate(162deg) translate(90px) rotate(-162deg); }
  .language:nth-child(4) { transform: rotate(234deg) translate(90px) rotate(-234deg); }
  .language:nth-child(5) { transform: rotate(306deg) translate(90px) rotate(-306deg); }
  .language:nth-child(6) { transform: rotate(378deg) translate(90px) rotate(-378deg); }
  
/* .language:nth-child(6) { transform: rotate(365deg) translate(75px) rotate(-365deg); } */


  .languages-section {
    align-items: center;

    flex-direction: column-reverse;
  }

  .right-side {
    display: flex;
    position: relative;
    flex-direction: column; 
    align-items: start; 
    justify-content:right;
    margin-left: 0;
  }

  .right-side .content {
    width: 100%; 
    text-align: center; 
  }
  
  .right-side h1 {
    font-size: 2rem;
    border-bottom: none;
    padding-bottom: 0%;
    margin-bottom: 1%;
  }

  .right-side p {
    color: #D1D7E0;
    font-size: 1rem;
    font-weight: light;;
    margin-bottom: 1.2rem;
    border-top: 2px solid #D89600;
    padding-top: 2%;
    /* padding: 0 0 0 35%; */
    /* text-align: justify; */
  }

  .left-side {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content */
    justify-content: center;
    width: 100%;
    margin-top: 35%; 
  }

  .language {
    width: 12rem;
  }

  .language-content {
    align-items: center;
  }
  
  .language-content img {
    width: 3.5rem; 
    height: 3.5rem; 
  }

  .languages-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0% 0% 0% 30%;
    gap: 1rem;
    width: 100%;
  }


  /* .languages-list {
    padding: 0% 0% 0% 0%;
  } */


  /* .languages-list {
    column-gap: 1%;
    row-gap: 10%;
  }
  
  .progress, .progress-bar {
    height: 0.35rem; 
  } */


  /* something here for the test */

  
  /* End of the test */

  /* -------------SkillSet--------------*/
  #timeline{
    padding: 20% 8% 20% 8%;
    background-color: #242034;
  }

  #timeline h1{
    font-size: 2rem;
    display:flex;
    padding-bottom: 1%;
    margin-bottom: 7%;
  }

  #timeline::after {
    position: flex;
    width:0.8%;
    top: 10%;
    bottom: 10%;
    left: 10%;
  }
  
  .course {
    padding: 2% 5%;
    margin-bottom: 5%; 
    width: 100%; 
  }
  
  .course::after {
    width: 1.1rem;
    height: 1.1rem;
  }
  
  .course:nth-child(even) {
    margin-left: 3%;
  }

  .course:nth-child(odd) {
    margin-left: 3%;
  }

  .course::after {
    left: -17px;
  }
  
  .course-title {
    padding-bottom: 1%;
    margin-bottom: 0.5%;
    font-size: 1rem;

  }
  
  .skill {
    font-size: 0.78rem;
  }
  
  .skill li {
    line-height: 1.3; 
  }
  
  .skill li ul li{
    font-size: 0.7rem;
  }

  
  /* -------------Services--------------*/
  #services{
    padding: 12% 8% 20% 8%;
    background-color: #242034;
  }

  #services .container h1{
    font-size: 2rem;
    padding-bottom: 1%;
  }

  .services-img{
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1%;
  }


  .services-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); 
    grid-gap: 2%;
    /* margin-top: 4%; */
    line-height: 1.2;
    
  }

  .services-list div{
    padding: 5%;
  }

  .services-list div h2{
    font-size: 1.3rem;
    /* margin-bottom: 3%; */
  }

  .services-list div p{
    /* font-size: 18px; */
    font-size: 0.78rem;
  }

  
  /* -------------Projects--------------*/
  #projects{
    padding: 20% 8% 20% 8%;
    background-color: #242034;
  }

  #projects h1{
    font-size: 2rem;;
    /* padding-bottom: 1%;
    margin-bottom: 3%; */
  }

  .project-list{
    /* display: grid; */
    grid-template-columns: repeat(2, auto); 
    grid-gap: 2%;
    row-gap: 2%;
  }

  /* .project{
    border-radius: 7px;
    position: relative;
    overflow: hidden;
  } */

  /* .project-img{
    width: 100%;
    border-radius: 7px;
    display: block;
    transition: transform 0.5s;
  } */

  .project-prev-img{
    width:12.5rem;
    height: 19rem;
  }

  .layer{
    /* width:100%;
    height: 100%;
    height: 0%;
    background: linear-gradient(#242034a8, rgb(23, 7, 87));
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20%;
    text-align: center;
    color: #D1D7E0;
    font-weight: light; */
    font-size: 1rem;
    /* transition: height 0.4s; */
  }

  .layer h3{
    /* color: #D1D7E0;
    font-weight: bold; */
    font-size: 1.3rem;
    /* margin-bottom: 2%; */
  }


  .layer a {
    font-size: 0.78rem;
    margin-top: 10%;
  }

  .layer a img {
    width: 0.78rem;
    height: 0.78rem;
  }
  

  /* -------------resume--------------*/
  #resume {
    padding: 25% 8% 25% 8%;
  }

  #resume h1 {
    font-size: 2rem;
    border-bottom: 3px solid #D89600; /*line*/
    /* padding-bottom: 1%;
    margin-bottom: 2%; */
  }

  #resume p {
    font-size: 1rem;
    margin-bottom: 3%;
  }

  #resume button {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  /* -------------Contact--------------*/
  #contact {
    padding: 25% 8% 25% 8%;
  }

  #contact h1 {
    font-size: 2rem;;
    border-bottom: 3px solid #D89600; /*line*/
    /* padding-bottom: 1%;
    margin-bottom: 2%; */
  }

  /* .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8%;
  } */

  .info-item img {
    width: 5%;
  }

  .info-item p,
  .info-item a {
    font-size: 1rem;
  }


}
