body {
  font-family: "Lato", sans-serif !important;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0rem;
}

h1 {
  font-size: 3rem !important;
  font-weight: 500 !important;
}

h2 {
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  padding: 1rem;
}

h3 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}

h4 {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2.25rem !important;
  }
  h3 {
    font-size: 1.75rem !important;
  }
  h4 {
    font-size: 1.5rem !important;
  }
  p {
    font-size: 1.125rem !important;
  }
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.75rem !important;
  }
  h3 {
    font-size: 1.5rem !important;
  }
  h4 {
    font-size: 1.25rem !important;
  }
  p {
    font-size: 1rem !important;
  }
}
.navbar {
  padding-top: 0 !important;
}

.top-nav-bar {
  display: flex;
  justify-content: flex-end;
  background-color: #E7ECEF;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
  height: 4rem;
}

.top-nav-bar .nav-link {
  color: #274C77 !important;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem;
  width: 7rem;
}

.top-nav-bar .nav-link:hover {
  background-color: #274C77;
  color: #ffffff !important;
}

@media screen and (max-width: 640px) {
  .top-nav-bar .nav-link {
    text-align: left;
  }
}
.footer {
  background-color: #E7ECEF;
  padding: 1rem;
}

.footer h3 {
  font-weight: 700;
  color: #274C77;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.footer-item a,
.footer-item p,
.footer-item i {
  text-decoration: none;
  color: #274C77;
  margin: 0;
  font-size: 1.25rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  margin: 0;
  color: #274C77;
}

.projectCard {
  position: relative;
  background-color: rgba(163, 206, 241, 0.1254901961);
  border-radius: 1rem;
  display: flex;
  overflow: hidden;
  flex-direction: row;
  width: 100%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.projectCard-left {
  background-color: #274C77;
  width: 2.5rem;
  flex-shrink: 0;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
}

.projectCard-right {
  background-color: #ffffff;
  height: 20rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  margin-left: 0;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}

.projectCard-image {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projectCard-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.projectCard-text {
  margin-top: auto;
  background-color: rgba(163, 206, 241, 0.1254901961);
}

.projectCard-text h3,
.projectCard-text p {
  margin: 0;
  margin-left: 0.5rem;
  color: #274C77;
}

.projectCard:hover .project-overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.project-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-overlay .primary-btn {
  margin: 0;
}

.popup-container {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  height: fit-content;
  z-index: 999;
  border-radius: 1rem;
}

.popup-container.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  background-color: #274C77;
}

.popup-container h2 {
  margin: 0.5rem;
  color: #274C77;
}

.popup-content {
  width: 100%;
  height: fit-content;
  max-height: 70vh;
  background-color: #ffffff;
  margin: 1rem;
  border-radius: 1rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #6096ba #ffffff;
}

.popup-content p {
  margin: 1rem;
}

.popup-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

#popup-images {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.popup-content img {
  min-width: 0;
  height: auto;
  max-width: 100%;
  max-height: 20rem;
  border-radius: 1rem;
  object-fit: contain;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  visibility: hidden;
  opacity: 0;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.technology-icons-row {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

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

.primary-btn {
  background-color: #274C77;
  color: #ffffff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  margin: 2rem;
  font-weight: bold;
}

.primary-btn:hover {
  background-color: #6096BA;
}

.competenceCard {
  position: relative;
  background-color: rgba(163, 206, 241, 0.1254901961);
  border-radius: 1rem;
  display: flex;
  overflow: hidden;
  flex-direction: row;
  width: 100%;
}

.competenceCard-left {
  background-color: #274C77;
  width: 1.5rem;
  flex-shrink: 0;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
}

.competenceCard-right {
  background-color: #ffffff;
  height: 10rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  margin-left: 0;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 0.5rem;
  text-align: center;
  position: relative;
}

.competenceCard-right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* low opacity */
  z-index: 1;
}

.competenceCard-right h3 {
  color: #274C77;
  font-weight: 700;
}

.competenceCard-right h3,
.competenceCard-right p {
  position: relative;
  z-index: 2;
  margin: 0 0 10px 0;
}

.competencies-description {
  opacity: 0;
}

.competenceCard-right:hover .competencies-description {
  opacity: 1;
  animation: fadeInUp;
  animation-duration: 0.3s;
  font-weight: 500;
}

.competenceCard-right:hover h3 {
  transform: translateY(-0.5rem);
  transition: transform 0.3s;
}

.accordion-item {
  border-top: #274C77 0.15rem solid !important;
  border-bottom: #274c77 0.15rem solid !important;
  border-left: none !important;
  border-right: none !important;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0 !important;
}

.accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.accordion-header i {
  margin-left: auto;
  font-size: 1.5rem;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header i.rotate {
  transform: rotate(180deg);
}

.accordion-title {
  font-weight: bold;
  color: #274C77;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.accordion-company {
  font-weight: normal;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.accordion-content.open {
  max-height: 50rem;
  opacity: 1;
}

.accordion-content li {
  font-size: 1.2rem;
  padding: 0.5rem;
}

.frontpage-top-wrapper {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  background-color: rgba(68, 13, 15, 0.0196078431);
}

.frontpage-top-wrapper h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.frontpage-top-wrapper .row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.frontpage-top-wrapper .row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../Images/Stockphoto/UX.jpg) center left/cover no-repeat;
  mask-image: linear-gradient(to right, black 0%, black 33.3%, transparent 50%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 33.3%, transparent 50%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.frontpage-top-wrapper .row::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../Images/Stockphoto/code_illustration.jpg) center right/cover no-repeat;
  z-index: -2;
  mask-image: linear-gradient(to right, transparent 50%, black 66.6%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 50%, black 66.6%, black 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.image-wrapper img {
  mask-image: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
  border-bottom-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
}

.frontpage-top-left, .frontpage-top-middle, .frontpage-top-right {
  text-align: center;
}

.frontpage-top-button {
  display: flex;
  justify-content: center;
}

.frontpage-project-wrapper {
  padding: 4rem;
}

.frontpage-project-wrapper h2 {
  text-align: center;
  padding: 1rem;
}

.frontpage-projects {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .frontpage-project-wrapper {
    padding: 0.5rem !important;
  }
}
.experience-top-wrapper {
  padding: 4rem;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  background-color: rgba(68, 13, 15, 0.0196078431);
}

.experience-top-right {
  text-align: center;
}

.experience-top-right img {
  width: 30rem;
  height: auto;
  border-radius: 1rem;
}

.work-experience-wrapper, .education-wrapper {
  padding: 4rem;
  animation: fadeInUp;
  animation-duration: 2s;
}

.work-data-container, .education-data-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  .experience-top-wrapper, .work-experience-wrapper, .education-wrapper {
    padding: 0.5rem !important;
  }
}
.about-top-wrapper {
  padding: 4rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  background-color: rgba(68, 13, 15, 0.0196078431);
}

.about-top-wrapper .row {
  align-items: center;
  justify-content: center;
}

.about-top-right {
  text-align: center;
}

.about-top-right img {
  width: 20rem;
  height: auto;
  border-radius: 10rem;
}

.competencies-wrapper {
  padding: 4rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  text-align: center;
}

.competencies-wrapper .row {
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  .about-top-wrapper, .competencies-wrapper {
    padding: 0.5rem !important;
  }
}
.projects-top-wrapper {
  padding: 4rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  background-color: rgba(68, 13, 15, 0.0196078431);
}

.projects-top-right {
  text-align: center;
}

.projects-top-right img {
  width: 30rem;
  height: auto;
  border-radius: 1rem;
}

.project-wrapper {
  padding: 4rem;
}

.project-wrapper h2 {
  text-align: center;
  padding: 1rem;
}

.project-data-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .projects-top-wrapper, .project-wrapper {
    padding: 0.5rem !important;
  }
}

/*# sourceMappingURL=main.css.map */
