/* =======================================================
* Template Name: Multi - v4.7.0
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
a {
  color: #ed502e;
  text-decoration: none;
}
a:hover {
  color: #f1775d;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
.pc-display {
  display: block;
}
.sp-display {
  display: none;
}
@media(max-width: 768px) {
  .pc-display {
    display: none;
  }
  .sp-display {
    display: block;
  }
}
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.all-contents {
  line-height: 1.8;
  width: 85%;
  max-width: 1030px;
  margin: 0 auto;
}
.content {
  margin-bottom: 30px;
}
.img70 {
  width: 70%;
  margin: 0 15%;
  box-sizing: border-box;
}
.img80 {
  width: 80%;
  margin: 0 10%;
  box-sizing: border-box;
}
.img90 {
  width: 80%;
  margin: 0 10%;
  box-sizing: border-box;
}
.indent{
 text-indent: 1rem;
}
@media(max-width: 900px) {
  .img70, .img80, .img90 {
    width: 100%;
    margin: 0;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ed502e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#header .logo a {
  color: #0b2341;
}
#header .logo img {
  max-height: 40px;
  max-width: 112px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: bold;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ed502e;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ed502e;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ed502e;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ed502e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}
#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}
#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  #hero p {
    width: 52%;
  }
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ed502e;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #ed502e;
  margin-top: 15px;
}
#hero .btn-get-started:hover {
  background: #ef6445;
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
/*--------------------------------------------------------------
index.php
--------------------------------------------------------------*/
.index-section-title {
  padding-bottom: 40px;
}
.index-section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.index-section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #f38b74;
  display: inline-block;
  margin: 4px 10px;
}
.index-section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}
ul.newsList {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px dotted #999;
  padding: 10px 0;
}
ul.newsList li {
  display: block;
  margin: 10px 10px;
}
ul.newsList li:nth-child(-n + 3) {
  flex-basis: 130px;
}
ul.newsList li:nth-child(2) {
  border: 1px solid #f38b74;
  background-color: #f38b74;
  color: #fff;
  display: inline-block;
  font-size: 0.8rem;
  padding: 0 2em;
  text-align: center;
}
ul.newsList li i {
  font-size: 1rem;
}
ul.newsList li:nth-child(3) {
  flex-basis: auto;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-bg {
  background-color: #f6f9fd;
}
.section-title {
  padding-bottom: 10px;
}
.section-title h2 {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 0 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  display: inline-block;
  content: "";
  width: 100px;
  height: 1px;
  background: #f38b74;
  margin: 4px 10px;
}
.section-title p {
  display: inline-block;
  margin: 0;
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.team .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.team .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.team .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}
.team .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.team .icon-box h4,
.team .icon-box p {
  color: #0b2341;
}
.team .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.team .icon-box:hover {
  background: #f9c6bb;
  border-color: #f9c6bb;
}
.team .icon-box:hover .icon {
  background: #fff;
}
.team .icon-box:hover .icon i {
  color: #f1775d;
}
.team .icon-box:hover .icon::before {
  background: #f1775d;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}
.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ed502e;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ef6445;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.heading-block {
  padding: 45px 0;
  background-image: url(../img/background.png);
  min-height: 40px;
  margin-top: 82px;
}
.heading-block h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0f2f57;
  z-index: 100;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px 0 0 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}
@media (max-width: 992px) {
  .heading-block {
    margin-top: 74px;
  }
  .heading-block h2 {
    font-size: 28px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}
#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}
/*--------------------------------------------------------------
# Activities
--------------------------------------------------------------*/
.common-inner {
  margin: 0 auto;
  padding: 0 2.5rem;
}
.activities_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.activities_area{
  width: 1000px;
  display:block;
}
.activities_mark{
  color: #0f2f57;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0.4em 0.8em;
  background-color: #f38b7418;
}
.activities_aside {
  width: 140px;
  border-left: 1px solid #061527;
}
.activities_aside_list {
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
}
.activities_aside_content {
  list-style: none;
  padding: 2rem 0 0;
  font-size: 17.5px;
}
.activities_aside_content a {
  color: #0f2f57;
  font-weight: bold;
}
.activities_aside_content a:hover {
  color: #f1775d;
}
.activities_area ul i {
  padding-left: 0rem;
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}
.activities_area ul li {
  list-style: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.activities > a {
  position: relative;
  color: #061527;
}
@media screen and (max-width: 800px) {
  .activities_aside {
    display: none;
  }
  .activities_area ul {
    padding-left: 0;
  }
}
/*--------------------------------------------------------------
# member
--------------------------------------------------------------*/
#member th {
  color: #0f2f57;
  font-size: 1.3em;
}
.table-css {
  width: 80%;
  margin:5% 10%;
}
@media screen and (max-width: 1000px) {
  .table-css {
    width: 100%;
    margin:0;
  }
  #member td {
    display: block;
  }
  .table#member tr td:nth-child(3){
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Each-team
--------------------------------------------------------------*/
.subject_box {
  background-color: #0f2f57;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.next-arrow{
  position:absolute;
  bottom:40%;
  right:30%;
  animation: arrowmove 1s ease-in-out infinite;
  border-bottom: 1px solid #0f2f57;
  width: 150px;
  margin-bottom: 3%;
  font-size: 1.5em;
  letter-spacing: 0.08em;
  color: #0f2f57;
}
@keyframes arrowmove{
  0%{bottom:1%;}
  50%{bottom:2%;}
 100%{bottom:1%;}
}
.next-arrow:after{
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 18px;
  height: 1px;
  background: #0f2f57;
  transform: rotate(35deg);
}
.image-align li{
  list-style: none;
}
@media screen and (max-width: 768px) {
  .subject_box {
    margin-bottom:5%
  }
}
/* ---------- next ---------- */
.next .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  transition: all ease-in-out 0.3s;
  position: relative;
  width: auto;
  margin-top: 2%;
  padding: 50px 20px;
}
.next .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.next .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.next .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}
.next .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.next .icon-box h4,
.next .icon-box p {
  color: #0b2341;
}
.next .icon-box p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}
.next .icon-box:hover {
  background: #f9c6bb;
  border-color: #f9c6bb;
}
.next .icon-box:hover .icon {
  background: #fff;
}
.next .icon-box:hover .icon i {
  color: #f1775d;
}
.next .icon-box:hover .icon::before {
  background: #f1775d;
}
@media only screen and (max-width: 1400px){
  .next-arrow, .next-arrow:after{
    display: none;
  }
}
/* ---------- nurse/creation ---------- */

.team-content ul {
  list-style: none;
  padding: 0;
}
.team-content ul li {
  padding-left: 28px;
  position: relative;
}
.team-content ul li + li {
  margin-top: 10px;
}
.team-content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ed502e;
  line-height: 1;
}
/* ---------- link ---------- */
.link_effect{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  max-width: 450px;
  height: 48px;
  line-height: 48px;
  display: flex;
  text-align: center;
  background: #fff;
  font-size: 1em;
  font-weight: bold;
  box-shadow: 0 0 20px rgb(214 215 216 / 60%);
}
.link_effect .spacing {
  height: 80px;
}
.link_text{
width: 100%;
height: 100%;
color: #0f2f57;
z-index: 10;
}
.link_text:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #0f2f57;
  z-index: -1;
  transition: .4s;
}
.link_text:hover{
  color: #fff;
}
.link_text:hover:before{
  width: 100%;
}
/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
#about .text_area {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  text-align: justify;
}
#about .text670 {
  width: 670px;
}
#about .text540 {
  width: 540px;
}
.about-box {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);  
  padding: 30px;
  width: 100%;
  text-align: center;
}
.about-box i {
  font-size: 30px;
  color: #ed502e;
}
.about-box p {
  display: inline-block;
}
#about .quote-icon-right,
#about .quote-icon-left {
  color: #fdedea;
  font-size: 26px;
}
#about .img300 {
  width:300px;
  max-width:300px;
  max-height: 290px;
}
#about .img400 {
  width:400px;
  max-width:400px;
  max-height: 188px;
}
@media only screen and (max-width: 768px){
  #about .text_area {
    display: block;
    margin: 0 0 30px;
  }
  #about .text_area img {
    width: 100%;
    margin: 0 0 15px;
  }
  .text_area .text {
    width: auto;
  }
  #about .text_area p {
    width:fit-content
  }
  #about .text670,
  #about .text540 {
    width: auto;
  }
  .about-box {
    padding: 20px;
  }
}
/* ------------------------------------------------------------------------------
	# event
-------------------------------------------------------------------------------*/
.unity-block {
	padding-bottom: 50px;
}
.event-content p {
  margin-bottom:0.05rem
}
@media only screen and (max-width: 768px){
  #study_archive .table {
    width: 100%;
    font-size: 14px;
  }
  #study_archive .table tr td:nth-child(1) {
    width: 35px;
  }
  #study_archive .table tr td:nth-child(2) {
    width: 100px;
  }
  #study_archive .table tr td:nth-child(3){
    width: 60px;
  }
}
/*--------------------------------------------------------------
# Objective
--------------------------------------------------------------*/
#objective .img {
  width:100%;
  text-align: center;
}
#frame {
	padding: 30px;
	position: relative;
  text-align: center;
  width: 100%;
  font-size: 1.2em;
}
#frame::before, #frame::after {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
  margin: 10px 30px 10px 30px;
}
#frame::before {
	border-left: solid 7px #aaaaaa;
	border-top: solid 7px #aaaaaa;
	top: 0;
	left: 0;
  color: #f38b74;
}
#frame::after {
	border-right: solid 7px #aaaaaa;
	border-bottom: solid 7px #aaaaaa;
	bottom: 0;
	right: 0;
}
@media only screen and (max-width: 900px){
  #objective .section-title p:first-child {
    font-size: 22px;
  }
  #frame {
    text-align: left;
  }
  #frame::before, #frame::after {
    margin: 0;
  }
}
/*--------------------------------------------------------------
# activiities
--------------------------------------------------------------*/
.select-text {
  text-align: center;
  font-size: 1em;
  color: #0f2f57;
  font-weight: bold;
  margin-bottom: 3%;
}