.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-image: url("../images/n-l.jpg");
}
.landing .img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.landing .img > img {
  width: 100%;
  height: 100%;
}
.landing .shadow {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  top: 0;
}
.landing .shadow .container:not(.first) {
  height: 100%;
  flex-direction: column;
  position: relative;
}
.landing .shadow .container:not(.first) .head-text {
  color: white;
  width: 330px;
  padding: 15px;
  border-bottom: 2px solid #6CACE4;
  flex-direction: column;
  gap: 10px;
}
.landing .shadow .container:not(.first) .head-text > .title {
  font-size: 60px;
  font-weight: 600;
}
.landing .shadow .container:not(.first) .head-text > .text {
  color: white;
  font-size: 19px;
  line-height: 1.8;
  width: 100%;
  text-align: center;
}
.landing .shadow .container:not(.first) .welcome {
  width: 330px;
  color: white;
  padding: 15px 0;
  font-size: 18px;
  text-align: center;
}

.section-1 .container {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .section-1 .container {
    flex-direction: column;
    gap: 60px;
  }
  .section-1 .container .content {
    text-align: center;
  }
  .section-1 .container .content .break-line {
    margin: 20px auto !important;
  }
}
.section-1 .container .image {
  position: relative;
  width: 250px;
  height: 375px;
}
.section-1 .container .image img {
  width: 100%;
}
.section-1 .container .image::before {
  content: "";
  position: absolute;
  background-color: #ebeced;
  width: 100px;
  height: calc(100% + 80px);
  top: -40px;
  left: -20px;
  z-index: -1;
}
.section-1 .container .image::after {
  top: -40px;
  content: "";
  position: absolute;
  width: 120px;
  height: 300px;
  border-left: 80px solid #B7BF10;
  border-bottom: 80px solid #B7BF10;
  z-index: -1;
  right: -150px;
}
@media (max-width: 992px) {
  .section-1 .container .image img {
    box-shadow: 4px 0rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }
  .section-1 .container .image::before, .section-1 .container .image::after {
    display: none;
  }
}
.section-1 .container .content {
  flex-basis: calc(90% - 500px);
  font-size: 15px;
  line-height: 25px;
}
.section-1 .container .content div > p:nth-child(1) {
  padding-bottom: 3px;
  margin-bottom: 10px;
}
.section-1 .container .content div > p:nth-child(1) b {
  font-size: 18px;
  border-bottom: 2px solid #ffc60b;
}
.section-1 .container .content > .break-line {
  height: 2px;
  width: 60%;
  background-color: #ffc60b;
  margin: 20px 0;
}

.section-2 {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ececec;
}
.section-2 .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  justify-content: center;
}
.section-2 .container .card {
  background-color: white;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  padding: 10px;
  border-radius: 4px;
}
@media (max-width: 646px) {
  .section-2 .container .card {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.section-2 .container .card .header {
  justify-content: flex-start;
  gap: 30px;
  position: relative;
}
.section-2 .container .card .header .logo {
  height: 90px;
  width: 90px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -50px;
  border: 10px solid #ececec;
}
.section-2 .container .card .header .logo img {
  height: 100%;
  width: 100%;
}
.section-2 .container .card .header .name {
  font-size: 25px;
  color: black;
  font-weight: 500;
}
.section-2 .container .card .line {
  height: 2px;
  width: 100%;
  background-color: #666;
  margin: 12px 0;
}
.section-2 .container .card .quote {
  color: black;
}

.edition-text-title .container .text {
  margin-top: 80px;
  font-weight: 600;
  font-size: 35px;
  position: relative;
  text-align: center;
  border: 2px solid #006298;
  padding: 15px 30px;
}
.edition-text-title .container .text::before {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #006298;
  position: absolute;
  left: -10px;
  top: 27px;
  border-radius: 50%;
}
.edition-text-title .container .text::after {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #006298;
  position: absolute;
  right: -10px;
  top: 27px;
  border-radius: 50%;
}

.section-3 {
  margin-top: 80px;
}
.section-3 .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: space-between;
  grid-gap: 40px;
}
@media (max-width: 646px) {
  .section-3 .container .break-line {
    display: block !important;
  }
}
.section-3 .container > * {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section-3 .container > * .title {
  font-size: 25px;
  font-weight: 500;
  width: 100%;
  color: #006298;
}
.section-3 .container > * ul {
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding-left: 34px;
  width: 100%;
}
.section-3 .container .break-line {
  width: 80%;
  height: 2px;
  background-color: #ececec;
  display: none;
}

.section-4 {
  margin-top: 80px;
}
.section-4 .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 10px;
  justify-content: center;
}
.section-4 .container .card {
  text-decoration: none;
  padding: 20px;
  background-color: #006298;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 300ms;
  cursor: pointer;
}
.section-4 .container .card:hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.section-4 .container .card .title {
  color: white;
  font-weight: 500;
  font-size: 18px;
}
.section-4 .container .card .line {
  height: 1px;
  width: 100%;
  background-color: #ececec;
}
.section-4 .container .card .action {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 5px;
}
.section-4 .container .card .action .read-btn {
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  padding: 5px;
}
.section-4 .container .card .action svg path {
  fill: white;
}

.resources {
  margin-top: 80px;
}
.resources .container {
  flex-direction: column;
}
.resources .container .text {
  font-size: 34px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  padding-bottom: 10px;
}
.resources .container .list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.resources .container .list .resource .title {
  border-bottom: 2px solid #ffc60b;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 500;
}
.resources .container .list .resource .bullets {
  margin-top: 20px;
  padding-left: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}/*# sourceMappingURL=main.css.map */