html {
  font-family: 'Open Sans';
}

section {
  width: 1000px;
  margin: 40px auto;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  position: relative;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 {
  text-transform: uppercase;
}

header li {
  display: inline;
  font-size: 14px;
}

header li:not(:last-child)::after {
  content: '|';
}

header li > a {
  color: #000;
}

section > h2 {
  font-size: 18px;
  text-transform: uppercase;
}

h3 > a {
  color: #000;
  text-decoration: none;
}

h3 > .subtitle {
  font-size: 12px;
  font-weight: 400;
}

section .line {
  height: 2px;
  background-color: #000;
  margin-bottom: 20px;
}

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

.fw-400 {
  font-weight: 400;
}

.italic {
  font-style: italic;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.experience ul {
  margin-left: 20px;
}

.experience li {
  font-size: 14px;
  margin-bottom: 5px;
}

.experience .apps > li  {
  font-weight: 600;
}

.experience .apps > li  > a {
  color: #213555;
}

.text-primary {
  color: #074799;
}

.skills ul {
  list-style: none;
  margin-bottom: 20px;
}

.skills .languages li {
  display: inline-block;
  font-size: 12px;
}

.skills .languages li:not(:last-child)::after{
  content: ';';
}

.remarks {
  margin-top: 20px;
  font-size: 12px;
  font-style: italic;
}

.tooltip {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  display: none;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  max-width: 300px;
  font-size: 14px;
  z-index: 2;
  border-radius: 6px;
}

.tooltip img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.tooltip p {
  font-size: 12px;
}

.tooltip p:nth-child(1) {
  font-weight: 500;
}

.tooltip-body {
  display: flex;
  gap: 6px;
}

@media (max-width: 1200px) {

}
@media (max-width: 992px) {

}
@media (max-width: 768px) {

}
@media (max-width: 576px) {
  header {
    align-items: flex-start;
  }

  section {
    max-width: 300px;
    margin-left: 0px;
  }

  h3 > .subtitle {
    display: block;
  }

  .tooltip {
    left: unset;
  }
}
