@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
}

.bg-blue {
  background-color: #0057A4;
}

.bg-green {
  background-color: #008F59;
}

.bg-yellow {
  background-color: #E3DA18;
}

.bg-golden {
  background-color: #FFA500;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.flag {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 36px;
  background-color: #0057A4;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 80px;
}

h1 {
  font-size: 1.8rem;
  color: #0057A4;
}

h2 {
  font-size: 1.4rem;
  color: #0057A4;
}

p {
  color: #494949;
}


.separator {
  margin-block: 24px;
  background-color: #e7e7e7;
  width: 100%;
  height: 2px;
}

.text-separator {
  background-color: #008F59;
  width: 36px;
  height: 3px;
  margin-top: 8px;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  width: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 2px;
}

.section-folder-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

.folder-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: bold;
  padding: 16px 16px;
  height: 100%;
  width: 180px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 15%) 0px 1px 8px;
  transition: all .2s ease;
}

.folder-btn:hover {
  transform: translateY(-6px);
  box-shadow: rgba(0, 0, 0, 15%) 0px 1px 20px;
}

.folder-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: all .2s ease;
}

.folder-btn:hover .icon {
  transform: scale(1.1);
}


.folder-btn .title {
  text-transform: uppercase;
  font-size: 12px;
  color: #494949;
}

footer {
  display: flex;
  flex-direction: column;
  padding-block: 120px;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

footer p {
  width: 800px;
  text-align: center;
}

.section-btn-law {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-law {
  background-color: transparent;
  padding: 8px 16px;
  border: 1px solid #0057A4;
  border-radius: 16px;
  color: #0057A4;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s ease;
}

.btn-law:hover {
  background-color: #0057A4;
  color: white;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  background-color: #0057A4;
  color: white;
  font-size: 12px;
}