@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * MAIN
 * ABOUT
 * HISTORY
 * NEWS
 * SERVICE
 * RESOURCES
 * DONATE
 * PARTICIPATE
 * LINKS
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  background-color: #f2f3f4;
  color: #666666;
  font-family: '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  padding-top: 50px;
}

@media (min-width: 992px) {
  body {
    padding-top: 110px;
  }
}

@media (min-width: 1810px) {
  body {
    padding-right: 110px;
  }
}

a {
  color: #666666;
  display: inline-block;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

a:hover,
a:focus {
  color: #116fb7;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */
}

.container {
  max-width: 100%;
}

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

#scrollUp {
  right: 5%;
  bottom: 5%;
  z-index: 1000 !important;
}

#scrollUp img {
  width: 20px;
}

@media (min-width: 1810px) {
  #scrollUp {
    right: 2.5%;
    bottom: 2%;
    z-index: 1030 !important;
  }
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.header>.container {
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 1810px) {
  .header>.container {
    max-width: 1280px;
  }
}

.navbar {
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 992px) {
  .navbar {
    height: 110px;
  }
}


.navbar-brand {
  padding: 0;
  margin-right: 0;
}

.navbar-brand img {
  width: 220px;
}

@media (min-width: 576px) {
  .navbar-brand img {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .navbar-brand img {
    width: auto;
    height: auto;
  }
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0;
  position: relative;
  top: 0;
  z-index: 1050;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  background: #116fb7;
  text-align: center;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 10px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
  top: 15px;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
  top: 33px;
}

.navbar-toggler.open .icon-bar {
  right: 6px;
}

.navbar-toggler.open .icon-bar:nth-of-type(1) {
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.open .icon-bar:nth-of-type(3) {
  top: 32px;
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar-nav {
  background-color: #ffffff;
  padding: 1rem;
  width: 80%;
  height: calc(100% - 50px);
  overflow-y: auto;
  position: fixed;
  top: 50px;
  right: -100%;
  bottom: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-nav.open {
  right: 0;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-nav {
    background-color: transparent;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    overflow-y: visible;
    position: relative;
    top: 0;
    right: 0;
    visibility: visible;
  }
}

.navbar-nav .nav-item {
  padding: 0;
}

@media (min-width: 1200px) {
  .navbar-nav .nav-item {
    padding: 0 0.5rem;
  }
}

@media (min-width: 1810px) {
  .navbar-nav .nav-item.d-block {
    display: none !important;
  }
}

.navbar-nav .nav-link {
  color: #116fb7;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  min-width: 90px;
  display: inline-block;
  position: relative;
}

.navbar-nav .nav-link::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -1rem;
}

.navbar-nav .nav-link span {
  display: block;
  color: #c4c2c2;
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.125rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #d69609;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    text-align: center;
  }

  .navbar-nav .nav-link::before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

.navbar-nav .nav-donate {
  display: block;
}

@media (min-width: 1810px) {
  .navbar-nav .nav-donate {
    display: none;
  }
}


.navbar-nav .nav-comm {
  margin-top: 1rem;
}

.navbar-nav .nav-comm a {
  border-radius: 50%;
  background-color: #6d6d6d;
  color: #ffffff;
  font-size: 1.0625rem;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
}

.navbar-nav .nav-comm a:last-child {
  background-color: #116fb7;
  margin-left: 0.5rem;
}

.navbar-nav .nav-comm a:hover,
.navbar-nav .nav-comm a:focus {
  background-color: #d69609;
}

@media (min-width: 992px) {
  .navbar-nav .nav-comm {
    margin-top: 0;
  }
}

@media (min-width: 1810px) {
  .navbar-nav .nav-comm {
    position: absolute;
    right: -9rem;
  }
}

.navbar-nav .dropdown .dropdown-menu {
  border-radius: 10px;
  border: none;
  background-color: rgba(17, 111, 183, 0.9);
  padding: 1rem;
  max-width: 300px;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.0625rem;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 0.75rem;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown .dropdown-menu .dropdown-item.active {
  background-color: transparent;
  font-weight: bold;
}

.navbar-nav .dropdown .dropdown-menu li:last-child>.dropdown-item {
  border-bottom: none;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-menu {
  background-color: rgba(223, 147, 0, 0.9);
  left: 100% !important;
}

@media (min-width: 1366px) {
  .navbar-nav .dropdown .dropdown-menu {
    top: 160%;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
    left: 160% !important;
  }
}

.navbar-secondary {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 110px;
  display: none;
}

.navbar-secondary .nav li a {
  background-color: #116fb7;
  color: #ffffff;
  width: 110px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar-secondary .nav li a span {
  letter-spacing: 0.1rem;
  margin-top: 0.5rem;
}

.navbar-secondary .nav li a:hover,
.navbar-secondary .nav li a:focus {
  background-color: #d69609;
}

.navbar-secondary .nav li:first-child a {
  background-color: #116fb7;
}

.navbar-secondary .nav li:first-child a:hover,
.navbar-secondary .nav li:first-child a:focus {
  background-color: #d69609;
}

.navbar-secondary p {
  font-size: 0.8125rem;
  letter-spacing: 0.06rem;
  white-space: nowrap;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 5rem;
  margin-bottom: 0;
}

@media (min-width: 1810px) {
  .navbar-secondary {
    display: block;
  }
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  border-bottom: 2px solid #116fb7;
  overflow: hidden;
}

.banner>.container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.banner>.container::before {
  content: '';
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.banner-pic {
  height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-txt .page-header {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-color: #013977;
  color: #ffffff;
  padding: 4rem 0;
}

.footer a {
  color: #ffffff;
}

.footer a:hover,
.footer a:focus {
  text-decoration: underline;
}

.footer .container>.row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-info {
  text-align: center;
}

.footer-info .nav {
  margin-top: 3rem;
}

.footer-info .nav li {
  letter-spacing: 0.05rem;
  margin-bottom: 0.65rem;
}

.footer-info .nav li svg {
  margin-right: 0.5rem;
}

.footer-info .nav li:last-child {
  margin-top: 1rem;
}

.footer-info .smo a {
  border-radius: 50%;
  background-color: #ffffff;
  color: #591a5b;
  font-size: 1.125rem;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
}

.footer-info .smo a:hover,
.footer-info .smo a:focus {
  color: #d69609;
}

.footer-info .smo a svg {
  margin-right: 0 !important;
}

.footer-info .smo a+a {
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .footer-info {
    text-align: left;
    padding: 0 2rem;
  }

  .footer-info .smo a {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .footer-info {
    border-left: 1px solid #bcbcbc;
    padding: 0 4.5rem;
  }
}

.footer-donate {
  text-align: center;
}

@media (min-width: 992px) {
  .footer-donate {
    border-left: 1px solid #bcbcbc;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .footer-donate {
    padding: 0 3rem;
  }
}

.footer-donate-link {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-donate-link .nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-donate-link .nav li:first-child {
  width: 100%;
}

.footer-donate-link h3 a {
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.footer-donate-link h3 a span {
  margin-left: 1rem;
}

.footer-donate-link h3 a::before {
  display: none;
}

.footer-donate-link a {
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  padding-left: 1rem;
  margin-left: 1rem;
  position: relative;
}

.footer-donate-link a::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

@media (min-width: 576px) {
  .footer-donate-link .nav li:first-child {
    width: auto;
  }
}

@media (min-width: 992px) {
  .footer-donate-link {
    margin-top: 0;
  }

  .footer-donate-link .nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.footer-donate-txt .nav li {
  letter-spacing: 0.05rem;
  margin-bottom: 0.25rem;
}

.footer-donate-txt .nav li.white {
  color: #ffffff;
}

.footer-donate-txt .nav li:last-child {
  color: #c8c8c8;
  font-size: 0.8125rem;
}

.footer-donate-txt span {
  position: relative;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
}

.footer-donate-txt span::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.footer-donate-pic {
  color: #ffffff;
  margin-top: 1rem;
}

.footer-donate-pic p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .footer-donate-pic {
    text-align: center;
    margin-top: 0;
  }
}

.footer-copy {
  color: #c2c2c2;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025rem;
  line-height: 1.5rem;
  margin-top: 1.5rem;
}

.footer-copy a {
  color: #c2c2c2;
}

/*------------------------------------*\
    MOBILE
\*------------------------------------*/
.mobile-btn {
  position: fixed;
  right: 15%;
  bottom: 2.5%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mobile-btn a {
  border-radius: 50%;
  background-color: #116fb7;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
}

.mobile-btn a:last-child {
  background-color: #116fb7;
}

.mobile-btn a:hover,
.mobile-btn a:focus {
  background-color: #d69609;
}

.mobile-btn .button {
  background-color: #d69609;
  position: relative;
  z-index: 2;
  opacity: 1;
}

.mobile-btn .list {
  position: absolute;
  bottom: 70px;
}

.mobile-btn .list.active a {
  opacity: 1;
}

.mobile-btn .list .donate {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.mobile-btn .list .lovecode {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.mobile-btn .list.active .donate {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mobile-btn .list.active .lovecode {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}


@media (min-width: 1810px) {
  .mobile-btn {
    display: none;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  padding: 4rem 0;
}

main>.container {
  position: relative;
  z-index: 3;
}

main>.container>.row {
  margin: 0;
}

/* PAGE-HEADER */
.page-header h1 {
  color: #ffffff;
  font-size: 1.375rem;
  letter-spacing: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.page-header h1::after {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.page-header h1 span {
  display: block;
  color: #d69609;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .page-header h1 span {
    font-size: 3rem;
  }
}

/* PAGE-TITLE */
.page-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.page-title h2 {
  color: #116fb7;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
  position: relative;
}

.page-title span {
  color: #353535;
  font-size: 1.125rem;
  letter-spacing: 0.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-title span img {
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .page-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0;
  }
}

/* BREADCRUMB */
.breadcrumb {
  background-color: transparent;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  font-size: 0.875rem;
  letter-spacing: 0.125rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: rgba(128, 166, 76, 0.5);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '>';
  color: rgba(255, 255, 255, 0.5);
}

/* SIDEMENU */
.sidemenu {
  padding-left: 0;
  position: relative;
  top: -70px;
  z-index: 3;
}

.sidemenu::before {
  content: '';
  width: 1px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.sidemenu h2 {
  background-color: #116fb7;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  line-height: 70px;
  padding: 0 2.5rem;
  margin-bottom: 0;
  height: 70px;
}

.sidemenu>.nav {
  background-color: #ffffff;
  padding: 1rem;
  position: relative;
}

.sidemenu>.nav::before {
  content: '';
  width: 1px;
  height: auto;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.sidemenu>.nav::after {
  content: '';
  width: 1px;
  height: 30px;
  background-color: #f4f4f4;
  position: absolute;
  left: 0;
  bottom: -30px;
}

.sidemenu>.nav>li>a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #116fb7;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 0.75rem 0;
}

.sidemenu>.nav>li>a:hover,
.sidemenu>.nav>li>a:focus,
.sidemenu>.nav>li>a.active {
  border-bottom: 1px solid #116fb7;
}

.sidemenu>.nav>li>.nav {
  display: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.sidemenu>.nav>li>.nav.show {
  display: block;
}

.sidemenu>.nav>li>.nav>li {
  margin-bottom: 0.25rem;
}

.sidemenu>.nav>li>.nav>li:last-child {
  margin-bottom: 0;
}

.sidemenu>.nav>li>.nav>li a {
  color: #666666;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
}

.sidemenu>.nav>li>.nav>li a:hover,
.sidemenu>.nav>li>.nav>li a:focus,
.sidemenu>.nav>li>.nav>li a.active {
  color: #000000;
  font-weight: bold;
}

.sidemenu>.nav>li>.nav>li>.nav {
  margin-top: 0.25rem;
  margin-left: 1.125rem;
}

@media (min-width: 1200px) {
  .sidemenu>.nav {
    padding: 1rem 2.5rem 2rem;
  }
}

/* CONTENT */
.content {
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 992px) {
  .content {
    padding: 5rem 3rem 4rem;
  }

  .content::before {
    content: '';
    width: 1px;
    height: auto;
    background-color: #e0e1e3;
    position: absolute;
    right: 0;
    top: 5rem;
    bottom: 4rem;
  }
}

/* LIST */
.list-wrap {
  padding: 0;
}

/* VIEW */
.view .content {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.view .content::before,
.view .content::after {
  display: none;
}

.view .text img {
  margin-bottom: 3rem;
}

.view .text iframe {
  margin-bottom: 3rem;
  width: 100%;
  height: 300px;
}

.view .text h2 {
  border-bottom: 1px solid #116fb7;
  color: #116fb7;
  font-size: 1.3125rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

.view .text h3 {
  color: #116fb7;
  font-size: 1.3125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.view .text h4 {
  color: #116fb7;
  font-size: 1.0625rem;
  font-weight: bold;
}

.view .text p {
  font-size: 1.0625rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.view .share {
  font-size: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.view .share a {
  border-radius: 50%;
  margin-left: 0.5rem;
  width: 30px;
  height: 30px;
}

.view .share a span {
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

.view .share a.fb {
  border: 1px solid #415a93;
  background-color: #415a93;
}

.view .share a.fb span {
  background-image: url(../images/fb.svg);
}

.view .share a.fb:hover,
.view .share a.fb:focus {
  background-color: transparent;
}

.view .share a.fb:hover span,
.view .share a.fb:focus span {
  background-image: url(../images/fb-hover.svg);
}

.view .share a.line {
  border: 1px solid #58bf38;
  background-color: #58bf38;
}

.view .share a.line span {
  background-image: url(../images/line.svg);
}

.view .share a.line:hover,
.view .share a.line:focus {
  background-color: transparent;
}

.view .share a.line:hover span,
.view .share a.line:focus span {
  background-image: url(../images/line-hover.svg);
}

@media (min-width: 768px) {
  .view .content {
    padding: 3rem;
  }

  .view .text iframe {
    height: 530px;
  }
}

@media (min-width: 1200px) {
  .view>.container {
    max-width: 1120px;
    padding: 0;
  }

  .view .content {
    padding: 5rem;
  }
}

/* MENU */
.menu {
  margin-bottom: 3rem;
}

.menu .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3rem;
  display: flex;
}

.menu .nav li {
  margin-bottom: 1rem;
}

.menu .nav li a {
  border: 1px solid #116fb7;
  color: #116fb7;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  padding: 0.4rem 1rem;
}

.menu .nav li a:hover,
.menu .nav li a:focus,
.menu .nav li a.active {
  background-color: #116fb7;
  color: #ffffff;
}

.menu .logout {
  border: 1px solid #116fb7;
  background-color: #116fb7;
  color: #ffffff;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  padding: 0.3rem 1rem;
  position: absolute;
  top: 1rem;
  right: 0;
}

.menu .logout:hover,
.menu .logout:focus {
  background-color: transparent;
  color: #116fb7;
}

@media (min-width: 576px) {
  .menu .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
  }

  .menu .nav li {
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .menu .nav li:last-child {
    margin-right: 0;
  }
}


/* PICTURE */
.pic a {
  background-color: #116fb7;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.pic a::before {
  content: '';
  width: 90px;
  height: 90px;
  background: url(../images/more.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a img {
  width: 100%;
  opacity: 1;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a span {
  background-color: #ffffff;
  color: #353535;
  letter-spacing: 0.1rem;
  line-height: 50px;
  width: 170px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.pic a:hover img,
.pic a:focus img {
  opacity: 0.2;
}

.pic a:hover::before,
.pic a:focus::before {
  opacity: 1;
}

/* PAGINATION */
.pagination {
  margin-bottom: 0;
}

.pagination-wrap {
  margin-top: 1rem;
}

.pagination .page-item {
  padding: 0 0.125rem;
}

.pagination .page-link {
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  color: #116fb7 !important;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
  padding: 0;
  cursor: pointer;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
  background-color: #116fb7;
  color: #ffffff !important;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  background: url(../images/arrow.svg) center center no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:first-child .page-link:focus,
.pagination .page-item:last-child .page-link:hover,
.pagination .page-item:last-child .page-link:focus {
  background: url(../images/arrow-active.svg) center center no-repeat;
}

.pagination .page-item:last-child .page-link {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .pagination .page-item {
    padding: 0 0.5rem;
  }

  .pagination .page-item:first-child {
    padding-right: 2rem;
  }

  .pagination .page-item:last-child {
    padding-left: 2rem;
  }
}

/* BUTTON */
.btn-wrap {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 576px) {
  .btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.btn {
  border-radius: 25px;
}

.btn-primary {
  border: 1px solid #116fb7 !important;
  background-color: #116fb7 !important;
  color: #ffffff !important;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
  line-height: 50px;
  width: 100%;
  height: 50px;
  padding: 0;
  display: block;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  color: #116fb7 !important;
}

.btn-primary-gray {
  border: 1px solid #666666 !important;
  background-color: transparent !important;
  color: #666666 !important;
}

.btn-primary-gray:hover,
.btn-primary-gray:focus,
.btn-primary-gray:active {
  background-color: #666666 !important;
  color: #ffffff !important;
}

.btn-back {
  border: 1px solid #116fb7 !important;
  background-color: transparent !important;
  color: #116fb7 !important;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
  line-height: 50px;
  width: 270px;
  height: 50px;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-back span {
  background-image: url(../images/button.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.btn-back:hover,
.btn-back:focus,
.btn-back:active {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: #116fb7 !important;
  color: #ffffff !important;
}

.btn-back:hover span,
.btn-back:focus span,
.btn-back:active span {
  background-image: url(../images/button-white.svg);
}

/* FORM */
.form .form-group {
  margin-bottom: 1.5rem;
}

.form .col-form-label {
  font-size: 1.0625rem;
  line-height: 45px;
  white-space: nowrap;
  height: 45px;
  padding: 0;
}

.form .col-form-label span {
  color: #116fb7;
}

.form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 1.0625rem;
  height: 45px;
  padding: 0;
  padding-left: 0.5rem;
}

.form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #116fb7;
}

.form .form-control:-webkit-autofill,
.form .form-control:-webkit-autofill:hover,
.form .form-control:-webkit-autofill:focus,
.form .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(141, 9, 131, 0.2) inset;
  box-shadow: 0 0 0px 1000px rgba(141, 9, 131, 0.2) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form .form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form .form-control:disabled,
.form .form-control[readonly] {
  background-color: transparent;
}

.form .code {
  text-align: right;
}

@media (min-width: 576px) {
  .form .col-form-label {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about {
  padding: 0;
}

.about>.container {
  width: 100%;
}

@media (min-width: 1200px) {
  .about>.container {
    width: 1180px;
    margin: 0 auto;
  }
}

.about-content h3 {
  color: #116fb7;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
}

.about-content p {
  line-height: 2rem;
  margin-bottom: 2rem;
}

.about-content p span {
  color: #116fb7;
}

.about-content strong {
  color: #116fb7;
}

.about-content hr {
  margin: 1.5rem 0 2.5rem;
}

.about-list-item {
  margin-bottom: 2rem;
}

.about-list-item h3 {
  color: #383838;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

.about-list-item h3 span {
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
}

/*------------------------------------*\
    HISTORY
\*------------------------------------*/
.history-item:first-child .history-date span {
  border: 1px solid #116fb7;
  color: #116fb7;
}

.history-item .history-date span {
  border: 1px solid #cecece;
  color: #494949;
}

.history-item:last-child .history-txt {
  margin-bottom: 0;
}

.history-date {
  text-align: center;
  position: relative;
}

.history-date::before {
  content: '';
  width: 1px;
  height: auto;
  background: url(../images/line.png);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
}

.history-date span {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 90px;
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 2;
}

.history-txt {
  background-color: #ffffff;
  padding: 2rem 1rem !important;
  margin: 2rem 0;
  position: relative;
}

.history-txt::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.history-txt-content {
  padding-left: 4rem;
  position: relative;
}

.history-txt-content span {
  color: #116fb7;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: absolute;
  top: 0;
  left: 0;
}

.history-txt-content:last-child .nav {
  margin-bottom: 0;
}

.history-txt .nav {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.history-txt .nav li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.history-txt .nav li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #d69609;
  position: absolute;
  top: 10px;
  left: 0;
}

.history-txt .nav li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .history-txt {
    margin-top: 0;
  }

  .history-txt::before {
    border-width: 10px 20px 10px 0;
    border-color: transparent #ffffff transparent transparent;
    top: 40px;
    left: -20px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (min-width: 992px) {
  .history-txt {
    padding: 2rem 3rem !important;
  }
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
@media (min-width: 992px) {
  .news .content::after {
    content: '';
    width: 1px;
    height: auto;
    background-color: #e0e1e3;
    position: absolute;
    left: 0;
    top: 5rem;
    bottom: 4rem;
  }
}

.news .menu {
  text-align: right;
  position: relative;
}

.news .menu .nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news .menu>a {
  border: 1px solid #d69609;
  color: #d69609;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  padding: 0.3rem 1rem;
  margin-top: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news .menu>a span {
  background-image: url(../images/bells.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.news .menu>a:hover,
.news .menu>a:focus,
.news .menu>a.active {
  background-color: #d69609;
  color: #ffffff;
}

.news .menu>a:hover span,
.news .menu>a:focus span,
.news .menu>a.active span {
  background-image: url(../images/bells-white.svg);
}

@media (min-width: 992px) {
  .news .menu>a {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.news-list-item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  background-color: #ffffff;
  padding: 2rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.news-list-item:hover,
.news-list-item:focus {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.news-list-txt h3 a {
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.news-list-txt h3 a:hover,
.news-list-txt h3 a:focus {
  text-decoration: underline;
}

.news-list-txt p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-list-txt p b {
  display: inline-block;
  color: #116fb7;
  font-weight: normal;
}

.news-list-txt p span {
  color: #999999;
}

@media (min-width: 992px) {
  .news-list {
    width: 910px;
    margin: 0 auto;
  }

  .news-list-item {
    padding: 2.5rem;
  }
}

/*------------------------------------*\
    SERVICE
\*------------------------------------*/
.service .view .text p {
  font-size: 1rem;
}

.service .view .text p strong {
  color: #116fb7;
}

/*------------------------------------*\
    RESOURCES
\*------------------------------------*/
.resources-list {
  margin: 0 -1.5rem;
}

.resources-list-item {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.resources-list-txt {
  margin-top: 1.5rem;
}

.resources-list-txt h3 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: bold;
  height: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 1.5rem;
}

.resources-list-txt p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  height: 75px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.resources-list-txt a {
  border: 1px solid #116fb7;
  background-color: transparent;
  color: #116fb7;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.125rem;
  line-height: 40px;
  width: 200px;
  height: 40px;
}

.resources-list-txt a span {
  background: url(../images/arrow-purple.png) center center no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 1rem;
}

.resources-list-txt a:hover,
.resources-list-txt a:focus {
  background-color: #116fb7;
  color: #ffffff;
}

.resources-list-txt a:hover span,
.resources-list-txt a:focus span {
  background: url(../images/arrow-white.png) center center no-repeat;
}

.resources-list-secondary {
  margin-bottom: 2rem;
}

.resources-list-secondary-item {
  margin-bottom: 1.5rem;
}

.resources-list-secondary-txt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.resources-list-secondary-txt h3 {
  color: #383838;
  font-size: 1.3125rem;
  font-weight: bold;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.resources-list-secondary-txt h3::before {
  content: '';
  background-color: #116fb7;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.resources-list-secondary-txt h3 a {
  color: #383838;
  font-size: 1.3125rem;
  font-weight: bold;
}

.resources-list-secondary-txt h3 a:hover,
.resources-list-secondary-txt h3 a:focus {
  color: #116fb7;
}

.resources-list-secondary-txt>a {
  border: 1px solid #116fb7;
  background-color: #116fb7;
  color: #ffffff;
  font-size: 0.875rem;
  text-align: center;
  line-height: 35px;
  width: 155px;
  height: 35px;
  white-space: nowrap;
}

.resources-list-secondary-txt>a svg {
  margin-right: 0.5rem;
}

.resources-list-secondary-txt>a:hover,
.resources-list-secondary-txt>a:focus {
  background-color: transparent;
  color: #116fb7;
}

@media (min-width: 992px) {
  .resources-list-secondary-txt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .resources-list-secondary-txt h3 {
    margin-bottom: 0;
    width: 80%;
  }
}

.resources.publication .content {
  padding-right: 0;
}

.resources.publication .content::before {
  display: none;
}

.resources.publication .resources-list {
  margin: 0 -1rem;
}

.resources.publication .resources-list-item {
  padding: 0 1rem;
}

.resources.publication .resources-list-txt a {
  font-size: 0.75rem;
  line-height: 35px;
  width: 100%;
  height: 35px;
}

@media (min-width: 576px) {
  .resources.publication .resources-list-txt a {
    width: 155px;
  }
}

.resources-login {
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #116fb7;
  padding: 2rem 1rem;
}

.resources-login h2 {
  color: #116fb7;
  font-size: 1.6875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.resources-login h2 span {
  display: block;
  color: #b7b7b7;
  font-size: 1.25rem;
  font-weight: normal;
  letter-spacing: 0.25rem;
  margin-top: 1rem;
}

.resources-login .btn-wrap {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .resources-login {
    padding: 3rem;
  }
}

@media (min-width: 1200px) {
  .resources-login {
    padding: 5rem 12rem;
  }
}

.resources-study .resources-list-secondary-txt h3 {
  width: 100%;
}

.resources-pic-item {
  margin-bottom: 2rem;
}

.resources-pic-item h3 {
  color: #383838;
  font-size: 1rem;
  text-align: center;
  margin-top: 0.5rem;
}


.resources-works h2 {
  color: #116fb7;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 3rem;
}

.resources-works .table {
  margin-bottom: 3rem;
}

.resources-works .table td,
.resources-works .table th {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  vertical-align: middle;
  width: 25%;
}

.resources-works .table th {
  border-top: 0;
  background-color: #dddddd;
  color: #383838;
  font-size: 1.25rem;
}

.resources-works .table th+th {
  position: relative;
}

.resources-works .table th+th::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.resources-works .table td {
  font-size: 1.125rem;
}

.resources-works .table td a img {
  width: 120px;
  height: 87px;
}

.resources-works .table td.pic a::before {
  width: 70px;
  height: 70px;
  background: url(../images/more-s.svg) center center no-repeat;
}

@media (max-width: 767px) {
  .resources-works .table thead {
    display: none;
  }

  .resources-works .table tr {
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }

  .resources-works .table tbody td {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    text-align: left;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    padding-left: 7.5rem;
    position: relative;
  }


  .resources-works .table tbody td::before {
    content: attr(data-content);
    background-color: #dddddd;
    white-space: nowrap;
    text-align: left;
    width: 100px;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}


/*------------------------------------*\
    DONATE
\*------------------------------------*/
.donate>.container {
  width: 100%;
}

@media (min-width: 1200px) {
  .donate>.container {
    width: 1000px;
    margin: 0 auto;
  }
}

.donate-tit {
  margin-bottom: 2rem;
}

.donate-tit .nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.donate-tit .nav li {
  color: #116fb7;
  font-size: 1.0625rem;
  font-weight: bold;
}

.donate-tit .nav li+li {
  position: relative;
  padding-left: 1rem;
  margin-left: 1rem;
}

.donate-tit .nav li+li::before {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #c7c7c7;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.donate-tit p {
  font-size: 1.0625rem;
  letter-spacing: 0.05rem;
  line-height: 2rem;
  text-align: center;
}

.donate-tit p span {
  color: #116fb7;
}

.donate-tit p strong {
  color: #116fb7;
}

.donate-item {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 1rem;
  margin-bottom: 2rem !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .donate-item {
    padding: 2.5rem;
  }
}

.donate-pic {
  text-align: center;
  margin-bottom: 1rem;
}

.donate-pic-content {
  border-radius: 50%;
  background-color: #116fb7;
  width: 145px;
  height: 145px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.donate-pic h3 {
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
}

@media (min-width: 768px) {
  .donate-pic {
    text-align: left;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .donate-pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.donate-txt {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.donate-txt p {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 0;
}

.donate-txt p span {
  color: #116fb7;
}

.donate-txt p span b {
  color: #666666;
  font-size: 0.875rem;
  font-weight: normal;
}

.donate-txt p b {
  font-size: 1.0625rem;
  font-weight: normal;
}

.donate-txt .btn-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}

.donate-txt .btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.05rem;
  line-height: 40px;
  width: auto;
  height: 40px;
  padding: 0 2rem;
}

.donate-txt .btn+.btn {
  margin-top: 1rem;
}

.donate-txt .nav li {
  color: #d69609;
  font-size: 0.875rem;
}

.donate-txt ol {
  padding-left: 1rem;
  margin-bottom: 0;
}

.donate-txt ol li {
  margin-bottom: 0.5rem;
}

.donate-txt ol li:last-child {
  margin-bottom: 0;
}

.donate-txt-note {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 1rem;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .donate-txt .btn-wrap {
    margin-top: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .donate-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
}

/*------------------------------------*\
    PARTICIPATE
\*------------------------------------*/
.participate>.container {
  width: 100%;
}

@media (min-width: 1200px) {
  .participate>.container {
    width: 1000px;
    margin: 0 auto;
  }
}

.participate-content h3 {
  color: #116fb7;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
}

.participate-content p {
  line-height: 2rem;
  margin-bottom: 2rem;
}

.participate-content hr {
  margin: 1.5rem 0 2.5rem;
}

/*------------------------------------*\
    LINKS
\*------------------------------------*/
.links-item {
  margin-bottom: 2rem;
}

.links-pic {
  text-align: center;
}

.links-pic a::before {
  width: 70px;
  height: 70px;
  background: url(../images/more-s.svg) center center no-repeat;
}

.links-pic img {
  border: 2px solid #116fb7;
}

.links-txt {
  margin-top: 1rem;
}

.links-txt h3 {
  color: #444444;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
}