* {
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.span {
  color: #1c6188;
  font-weight: 900;
  font-size: 20px;
}

.container {
  width: 1288px;
  margin: auto;
}

header {
  background: #1c6188;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

#header__icon {
  height: 20px;
  width: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.4s ease;
}

#header__icon:hover {
  opacity: 1;
}

.header__logo {
  height: 25px;
  width: 25px;
}

.header__title {
  font-size: 18px;
  font-weight: 700;
}

.header__subtitle {
  font-size: 14px;
  opacity: 0.7;
}

main {
  flex: 1;
  padding: 40px;
}

.content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.title {
  font-size: 24px;
  font-weight: 900;
}

.content__left {
  flex: 0.66;
}

.content__right {
  flex: 0.34;
}

.content__right__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.bordered {
  border: 2px solid #9ecbe4;
  border-radius: 7px;
  padding: 25px;
}

.text-small-muted {
  font-size: 11px;
  color: #000;
  opacity: 0.6;
}

section {
  margin-top: 20px;
}

.image {
  width: 750px;
  height: auto;
  border-radius: 7px;
}

p {
  text-align: justify;
}

.point {
  height: 55px;
  width: 55px;
}

.title-right {
  font-size: 18px;
  font-weight: 700;
}

.margin {
  margin-top: 30px;
}

.right {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.section-title {
  font-weight: 700;
  font-size: 14px;
  color: #1c6188;
}

.section-content {
  margin-top: 5px;
  font-size: 13px;
  text-align: justify;
  color: gray;
  cursor: pointer;
}

footer {
  background: #bde4fa;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hidden {
  display: none;
}

a {
  color: #1c6188;
  text-decoration: none;
  font-weight: 900;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.footer__left {
  flex: 0.75;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.footer__right {
  flex: 0.25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer__text {
  text-align: justify;
  font-size: 13px;
  opacity: 0.7;
}

.footer__divider {
  width: 100%;
  height: 1px;
  max-height: 1px;
  background: #1c6188;
  opacity: 0.5;
  margin-top: 20px;
}

.footer__down {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  font-size: 12px;
}

.education {
  margin-top: 5px;
  font-size: 11px;
  color: red;
  opacity: 0.7;
}
