*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: "Inter", sans-serif;
  color: #333333;
  width: 100%;
  overflow-x: hidden;
}

.section {
  position: relative;
  width: 100%;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  color: #0c1f3f;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-size: clamp(4vw, 1.5rem, 7vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2.5rem;
  }
}
*:focus {
  outline: 2px solid #ff9900;
  outline-offset: 2px;
}

.section {
  position: relative;
  width: 100%;
}

.contact {
  padding-left: 10%;
}

.content .first-list li {
  padding: 1px 0;
}

.unordered {
  list-style: disc;
}

.section {
  padding-top: 120px;
  text-align: justify;
}

.title,
.content-wrapper h3,
.content-wrapper .info {
  padding-bottom: 20px;
}

.title h1 {
  text-align: center;
  font-size: 35px;
}

.content {
  padding-bottom: 80px;
}

/* .content ol,
.content ul {
  padding-inline-start: 16px;
} */

.content li {
  padding: 10px 0;
  margin-left: 10px;
}

.link {
  text-decoration: none;
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .header {
    height: 100px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.section {
  padding-top: 150px;
}

.title {
  padding-bottom: 80px;
}

body {
  background-color: #fff;
  color: #3d3d3d;
}

.header a {
  color: #3d3d3d;
  height: 100%;
  position: absolute;
  display: block;
  z-index: 10;
}

span.lang {
  color: #3d3d3d;
  cursor: pointer;
}

a {
  color: #1d63c2;
}

a:hover {
  color: #2a7f8e;
}

@media all and (max-width: 1050px) {
  .content {
    padding-bottom: 50px;
  }
}

@media all and (max-width: 650px) {
  .section {
    padding-top: 50px;
  }
}

.navigation {
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.navigation .container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.navigation .logo_link {
  z-index: 30;
}
.navigation .logo {
  width: clamp(3rem, 16vw, 4rem);
}
.navigation .navigation-items {
  position: fixed;
  top: 0%;
  background-color: #fff;
  right: -100%;
  width: 100%;
  height: 100vh;
  transition: right 0.3s ease;
  color: #0c1f3f;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  padding-top: 20vh;
}
.navigation .navigation-items.active {
  right: 0;
}
.navigation .navigation-items li {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  transition: 0.5s;
  cursor: pointer;
}
.navigation .navigation-items li:hover {
  color: #1d63c2;
}
.navigation .hamburger {
  position: relative;
  width: clamp(1.5rem, 12vw, 2.5rem);
  height: clamp(1.5rem, 12vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 20;
}
.navigation .hamburger.active .hamburger_line:first-child {
  transform: rotate(45deg) translate(20%);
}
.navigation .hamburger.active .hamburger_line:nth-child(2) {
  transform: rotate(-45deg) translate(20%);
}
.navigation .hamburger.active .hamburger_line:last-child {
  opacity: 0;
}
.navigation .hamburger .hamburger_line {
  position: relative;
  display: block;
  width: 100%;
  height: 12%;
  background-color: #0c1f3f;
  transition: 0.5s;
}

@media (min-width: 768px) {
  .navigation {
    justify-content: center;
  }
  .navigation .container {
    position: relative;
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .navigation .logo {
    width: clamp(3rem, 16vw, 4rem);
  }
  .navigation .navigation-items {
    position: relative;
    display: flex;
    width: fit-content;
    flex-direction: row;
    right: 0%;
    height: 100%;
    padding-top: unset;
  }
  .navigation .navigation-items li {
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 1rem;
    font-size: 0.75rem;
    transition: 0.5s;
    cursor: pointer;
  }
  .navigation .navigation-items li:hover {
    color: #1d63c2;
  }
  .navigation .hamburger {
    display: none;
  }
}
@media (min-width: 992px) {
  .navigation .navigation-items {
    position: relative;
    display: flex;
    width: fit-content;
    flex-direction: row;
    right: 0%;
    height: 100%;
    padding-top: unset;
  }
  .navigation .navigation-items li {
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 1rem;
    font-size: 1rem;
    transition: 0.5s;
    cursor: pointer;
  }
  .navigation .navigation-items li:hover {
    color: #1d63c2;
  }
  .navigation .hamburger {
    display: none;
  }
}

.navigation a {
  color: #0c1f3f;
}

.navigation a:hover {
  color: #1d63c2;
}

.content ol {
  list-style: upper-roman;
}

p {
  margin: 1rem 0;
}

ol.first-list {
  list-style: decimal;
}

.letters {
  list-style: lower-alpha;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer a {
  color: #333333;
}
footer .container {
  padding: 7rem 0;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(5vh, 7rem, 14vh) 0;
}
footer .container .footer_part {
  margin: 1rem 0;
}
footer .container .footer_part h4 {
  font-size: 0.75rem;
  color: #0c1f3f;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
footer .container .footer_part ul {
  margin-top: 1rem;
}
footer .container .footer_part li {
  color: #333333;
  display: flex;
  margin: 0.5rem 0;
  align-items: flex-start;
  font-size: 0.75rem;
}
footer .container .footer_part li a {
  display: flex;
}
footer .container .footer_part li img {
  width: 1.2rem;
  flex-shrink: 0;
  margin-right: 1rem;
}
footer p {
  color: #000;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  footer .container {
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .container .footer_part h4 {
    font-size: 1rem;
  }
}
