.header {
  background-color: #ffffff;
  background-image: linear-gradient(to right, #ffffff 50%, rgba(0, 0, 0, 0.1) 100%);
  border-bottom: #0f282e 3px solid;
}

@media (max-width: 1024px) {
  .nav {
    width: 90%;
    max-width: 280px;
    height: auto;
    padding: 20px;
    margin-top: 3px;
    margin-left: 0;
    background-color: #ffffff;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), #ffffff);
    box-sizing: border-box;
    overflow-y: auto;
    flex-grow: 0;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1040;
    transform: translateX(100%);
    transition: 0.3s transform;
  }
}
.nav__text {
  color: #003979;
}
@media (max-width: 1024px) {
  .nav__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .nav__item:not(:nth-last-child(1)) {
    border-bottom: 1px solid rgba(0, 57, 121, 0.5);
  }
  .nav__item:not(:nth-last-child(1)):hover > .nav__text {
    color: #003979;
  }
}
.nav__item:hover {
  background-color: #ead7c1;
}

.nav__share__icon__fb {
  width: 70px;
  height: 70px;
  margin-right: 5px;
  transition: 0.3s background-color;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/images/share_icon.png);
  background-position: left top;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
}

.nav__share:hover .nav__share__icon__fb {
  background-image: url(../assets/images/share_icon.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  top: -1px;
}

.nav__share__icon__line {
  width: 70px;
  height: 70px;
  margin-right: 5px;
  transition: 0.3s background-color;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/images/share_icon.png);
  background-position: right top;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
}

.nav__share:hover .nav__share__icon__line {
  background-image: url(../assets/images/share_icon.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  top: -1px;
}

.ham > span {
  width: 85%;
  height: 3px;
  background-color: #003979;
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.3s all;
}

.footer {
  width: 100%;
  padding: 5px;
  background-color: #ffffff;
  background-image: linear-gradient(to right, #ffffff 50%, rgba(0, 0, 0, 0.1) 100%);
  border-top: #0f282e 3px solid;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.04375rem;
  line-height: 1.3125rem;
}
.footer__copyRight {
  color: #0f282e;
}
.footer__link > a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
}
.footer__link > a:hover {
  color: #3870a0;
}

.content {
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  background-image: linear-gradient(180deg, #f3954a, #3870a0);
  box-sizing: border-box;
  align-items: center;
  position: relative;
  cursor: default;
}

.main__scene {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;

  background-image: url(../images/bg.png);
  background-position: center bottom;
  background-repeat: repeat-x;
}
.main__scene__effect {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main__scene__effect::before {
  content: "";
  width: 100%;
  padding-bottom: 50%;
  background-image: url(../assets/images/effect.png);
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-animation: breathEffect 2s linear infinite;
          animation: breathEffect 2s linear infinite;
}
@-webkit-keyframes breathEffect {
  0% {
    opacity: 100;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes breathEffect {
  0% {
    opacity: 100;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}

.editor__wrap {
  border-bottom: 2px solid #3870a0;
  background-color: #ffffff;
  background-image: linear-gradient(180deg, rgba(234, 215, 193, 0.4), #ffffff);
  border-top: 2px solid #ffffff;
}

.editor__h1 {
  font-weight: bold;
  color: #cd1f56;
  font-size: 2.25rem;
  letter-spacing: 0rem;
  line-height: 3.375rem;
}

.editor__h2 {
  font-weight: bold;
  color: #3870a0;
  font-size: 1.5rem;
  letter-spacing: 0rem;
  line-height: 2.25rem;
  margin: 0.5rem 0;
}

.editor__h4 {
  font-weight: bold;
  color: #f3954a;
  font-size: 1.5rem;
  letter-spacing: 0rem;
  line-height: 2.25rem;
  margin: 0.25rem;
}

.editor__p {
  font-weight: bold;
  color: #0f282e;
  font-size: 1.25rem;
  letter-spacing: 0rem;
  line-height: 1.875rem;
}

.editor--gradient {
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(180deg, #cd1f56, rgba(243, 149, 74, 0.7));
  border-bottom: 1px solid #ead7c1;
  border-radius: 20px;
  box-shadow: 0 5px 0 rgba(10, 40, 45, 0.1);
}

.editor a {
  text-decoration: underline;
  word-break: break-all;
  color: #f3954a;
  transition: all 0.5s;
}
.editor a:hover {
  color: #cd1f56;
}



.tableWrap {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  overflow-y: auto;
}
@media (max-width: 812px) {
  .tableWrap {
    flex-direction: column;
    align-items: center;
  }
}

.tableWrap > .table {
  width: 98%;
  margin: 1%;
}

.table th,
.table td {
  padding: 15px;
  text-align: center;
  vertical-align: top;
  color: #000000;
  cursor: default;
  font-size: 1.25rem;
  letter-spacing: 0rem;
  line-height: 1.625rem;
}
@media (max-width: 568px) {
  .table th,
.table td {
    padding: 5px 1px;
    font-size: small;
  }
}

.table thead tr {
  background-color: #f3954a;
}

.table tbody tr:nth-child(even) {
  background-color: rgba(243, 149, 74, 0.4);
}

.table tbody tr:nth-child(odd) {
  background-color: rgba(243, 149, 74, 0.2);
}