@charset "utf-8";

/*table-card
========================================== */
.table-card{
    width: 100%;
}  

.table-card tbody{
   display: grid;
   gap: clamp(10px, 1vw, 15px);
} 

.table-card tbody tr {
  background-color: #F3F4F6;
  padding: clamp(15px, 2vw, 25px);
}

.table-card i {
    font-size: clamp(45px, 8vw, 55px);
    text-shadow: var(--long-shadow);
	display: block;
}


/* .table-card i {
    margin: 0 auto 10px auto;
    font-size: clamp(45px, 8vw, 50px);
    text-shadow: var(--long-shadow);
    display: block;
    justify-content: center;
    align-items: center;
    width: clamp(60px, 12vw, 80px);
    aspect-ratio: auto 1 / 1;
    background-color: var(--primary-color-400);
    color: #fff;
    border-radius: 100%;
    line-height: 0.8;
}
 */


.table-card p{
    margin:0;
	padding:0;
}

.table-card img{
   border-radius: 100%;
   margin: 15px auto;
   width: 150px;
   height:150px;
   object-fit: cover;
   object-position: 50% 50%;
}

/* flex-row */
.flex-row tbody tr {
    border-left: 4px solid var(--secondary-color);
	border-radius: 5px;
}

.flex-row tbody tr td {
  padding: clamp(10px, 1vw, 15px);
}
.flex-row tbody tr td:nth-child(1) {
  text-align:center;
}
@media only screen and (min-width: 767px) {
.flex-row tbody tr td:nth-child(1) {
  width: clamp(140px, 15vw, 350px);
}
.flex-row tbody tr td:nth-last-child(1) {
  border-left: 1px solid rgba(0,0,0,0.1);
}
}
@media only screen and (max-width: 767px) {
.flex-row tbody tr {
    display: flex;  
    flex-direction: column;
}

}

/* flex-column */
.flex-column tbody tr {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}
.flex-column tbody tr td {
  padding: 0px;
}
.flex-column tbody tr td:nth-last-child(1) {

}

/* table-card grid */
@media only screen and (min-width: 950px) {
.grid-221 tbody{
    grid-template-columns: 1fr 1fr;
}
.grid-321 tbody{
    grid-template-columns: 1fr 1fr 1fr;
}
}

@media screen and (max-width: 950px) and (min-width: 767px) {
.grid-321 tbody{
    grid-template-columns: 1fr 1fr;
}
}
.grid-222 tbody{
    grid-template-columns: 1fr 1fr;
}


/* faculty */

@media only screen and (min-width: 767px) {
.faculty tbody tr td:nth-child(2) {
   width: clamp(160px, 15vw, 260px);
}
}
@media only screen and (max-width: 767px) {
.faculty tbody tr td:nth-child(2) {
  text-align:center;
}
}
.faculty img{
  border-radius:100px;
  object-fit: cover;
  object-position: 50% 50%; 

}

/* features */
.features tbody tr {
    border-left: 0px;
	border-radius: 0px;
	padding:2vw;
}


@media only screen and (min-width: 767px) {
.features tbody tr td:nth-child(1) {
    
  width: 50%;
}

.features tbody tr td:nth-child(1) img{
aspect-ratio: auto 3 / 1; 
  width:100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%; 

}
}



/* ==========================================
   table-faq
========================================== */
.table-faq{
  width: 100%;
  border: 0 !important;
  padding-left: 0;
  margin: 0;
  display: block;
}

.table-faq > tbody{
  display: block;
}

.table-faq > tbody > tr{
  display: flex;
  flex-direction: column;
  margin: 0 0 5px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.table-faq > tbody > tr:hover{

}

.table-faq > tbody > tr > td{
  width: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  position: relative;
  padding: 10px 10px 10px 62px;
}

.table-faq > tbody > tr > td ul,
.table-faq > tbody > tr > td ol{
  margin: 8px 0 0;
  padding-left: 18px;
}

.table-faq > tbody > tr > td li{
  margin: 4px 0;
}

.table-faq > tbody > tr > td::before{
  position: absolute;
  left: 18px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .5px;
  margin-left: 0;
  padding: 0;
  box-shadow: 0 12px 22px -18px rgba(0,0,0,.45);
}

.table-faq > tbody > tr > td:nth-child(1){
  background-color: var(--gray-color-50);
  color: var(--primary-color-950);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.document .table-faq > tbody > tr > td:nth-child(1){
  background-color: var(--gray-color-50);
}

.table-faq > tbody > tr > td:nth-child(1)::before{
  content: "Q";
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid rgba(31, 50, 140, .22);
}

.table-faq > tbody > tr > td:nth-child(1)::after{
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(31, 50, 140, .55);
  border-bottom: 2px solid rgba(31, 50, 140, .55);
  transform: translateY(-55%) rotate(45deg);
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
  opacity: .9;
}

.table-faq > tbody > tr:hover > td:nth-child(1)::after{
  border-color: rgba(31, 50, 140, .85);
}

.table-faq > tbody > tr > td:nth-child(2){
  background-color: #fff;
  color: rgba(0,0,0,.78);
  border-top: 1px solid rgba(0,0,0,.06) !important;
  padding-top: 14px;
  padding-bottom: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-faq > tbody > tr > td:nth-child(2)::before{
  content: "A";
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid rgba(31, 50, 140, .08);
}

.table-faq > tbody > tr > td.open{
  background-color: var(--primary-color) !important;
  color: #fff;
  font-weight: 800;
}

.table-faq > tbody > tr > td.open::before{
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.table-faq > tbody > tr > td.open::after{
  transform: translateY(-35%) rotate(-135deg);
  opacity: 1;
}

.table-faq > tbody > tr > td.closed{
  cursor: pointer;
}

.table-faq > tbody > tr > td.open + td{
  animation: faqIn .22s ease both;
}

@keyframes faqIn{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}

.table-faq > tbody > tr > td:nth-child(2) a{
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.table-faq > tbody > tr > td:nth-child(2) a:hover{
  text-decoration-thickness: 2px;
}

.table-faq > tbody > tr > td:nth-child(2) a.button3{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: var(--primary-color);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 16px 28px -22px rgba(31, 50, 140, .55);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.table-faq > tbody > tr > td:nth-child(2) a.button3:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 36px -26px rgba(31, 50, 140, .6);
}

.table-faq > tbody > tr > td:nth-child(2) a.button3:active{
  transform: translateY(0);
  opacity: .92;
}

.table-faq > tbody > tr > td:nth-child(2) .box-line{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 10px 12px;
  background-color: var(--primary-color-50);
  margin-top: 10px;
}

.table-faq > tbody > tr > td:nth-child(1):focus,
.table-faq > tbody > tr > td:nth-child(1):focus-visible{
  outline: 2px solid rgba(31, 50, 140, .25);
  outline-offset: -2px;
}

@media (max-width: 768px){
  .table-faq > tbody > tr > td{
    padding: 10px 14px 10px 56px;
  }
  .table-faq > tbody > tr > td::before{
    left: 14px;
    top: 10px;
  }
  .table-faq > tbody > tr > td:nth-child(1)::after{
    right: 14px;
  }
}



/* table-link
========================================== */
.table-link,
.table-link td {
  border: 0 !important;
  background-color: transparent !important;
}

.table-link tbody {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(10px, 1.2vw, 25px);
}

.table-link tbody tr {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 1vw 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.table-link tbody tr:hover {
  box-shadow: 0 35px 32px -30px rgb(0 0 0 / 30%);
}

.table-link tbody tr:nth-child(1n) {
  background-color: #3b90a5;
}
.table-link tbody tr:nth-child(2n) {
  background-color: #30948d;
}
.table-link tbody tr:nth-child(3n) {
  background-color: #76b8b3;
}
.table-link tbody tr:nth-child(4n) {
  background-color: #5078ad;
}
.table-link tbody tr:nth-child(5n) {
  background-color: #82a5d4;
}
.table-link tbody tr:nth-child(6n) {
  background-color: #9594ca;
}
.table-link tbody tr:nth-child(7n) {
  background-color: #e6b26e;
}

.table-link tbody tr:nth-child(8n) {
  background-color: #e78787;
}

.table-link tbody tr td {
  color: #fff;
  text-align: center;
  padding: 0px;
}

.table-link tbody tr td a,
.table-link tbody tr td a:hover {
  color: #fff !important;
  text-decoration: none;
}

.table-link tbody tr td:nth-child(1) {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  width: 90px;
  aspect-ratio: auto 1 / 1;
  margin: 5px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px !important;
}

.table-link tbody tr td:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
}
.table-link tbody tr td:nth-child(3) {
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}