@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600&display=swap");
@keyframes fade_in_show {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
body {
  font-family: "Rajdhani", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
  max-width: 100vw;
  font-weight: 400;
  font-size: 20px;
  color: #020202;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

.data-analysis-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 5.5rem;
  z-index: 999;
}
.data-analysis-header__top-line {
  display: flex;
  justify-content: space-between;
  background-color: white;
  height: 3rem;
}
.data-analysis-header__bottom-line {
  background-color: #FED21C;
  text-align: center;
  height: 2rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2rem;
}
.data-analysis-header .top-line__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  margin: 0.5rem 2rem;
}
.data-analysis-header .top-line .logo__img-logo {
  height: 2rem;
}
.data-analysis-header .top-line__contact {
  margin: 0.5rem 2rem;
  display: block;
  font-size: 18px;
  width: calc(100% - 8rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  line-height: 2rem;
}

.data-analysis-container {
  width: 85%;
  max-width: 900px;
  margin: 5.75rem auto 3.75rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.title-paragraph__more-and-png {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.more-and-png__description {
  width: 95%;
  text-align: center;
  max-width: 400px;
}
.more-and-png__image {
  width: 95%;
  max-width: 350px;
}

.more-about {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-top: 2rem;
}
.more-about__description {
  width: 95%;
  max-width: 400px;
}
.more-about__description-full-width {
  width: 95%;
  background-color: rgba(0, 157, 233, 0.5);
  padding: 0 1rem 1rem;
}
.more-about--last-paragraph {
  padding-bottom: 2rem;
}
.more-about--bottom {
  place-self: flex-end;
  background-color: rgba(0, 157, 233, 0.5);
  padding: 1rem;
  margin-bottom: 2rem;
}
.more-about .description-full-width--quote {
  padding-top: 2rem;
}
.more-about .description-full-width--quote p {
  text-align: right;
}
.more-about__image {
  width: 95%;
  max-width: 450px;
}
.more-about .image--me {
  width: 95%;
  max-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 4rem;
}
.more-about .image--me .img-me {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
}
.more-about .image--me .say-hi-on-hover {
  display: none;
  background-color: #FED21C;
  width: 100%;
  max-width: 205px;
  height: 100%;
  max-height: 205px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.more-about .image--me:hover .say-hi-on-hover {
  display: flex;
  position: absolute;
  top: 0;
  animation: fade_in_show 0.5s;
}

.description--bigger-font {
  font-size: 22px;
}

.data-analysis-footer {
  width: 100%;
  height: 3rem;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
  background-color: white;
}
.data-analysis-footer__top-line, .data-analysis-footer__middle-line {
  width: 95%;
  text-align: center;
}
.data-analysis-footer__middle-line {
  margin-bottom: 6rem;
}
.data-analysis-footer__bottom-line {
  width: 100%;
  text-align: center;
  background-color: #FED21C;
  height: 2rem;
  line-height: 2rem;
  font-size: 16px;
  position: fixed;
  bottom: 0;
  right: 0;
}

.bold-text {
  font-weight: 600;
}

.uppercase-text {
  text-transform: uppercase;
}

.hover-link:hover {
  background-color: #FED21C;
}

.underline-link {
  text-decoration: underline;
}

.underline-link-color {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 4px solid #009DE9;
}

.small-font-size {
  font-size: 12px;
}

.right-text {
  text-align: right;
  border-top: 2px solid white;
  padding-top: 1rem;
}

.no-dots-list {
  list-style: none;
}/*# sourceMappingURL=main.css.map */