/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.bubble-button {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  display: flex; 
  flex-direction: column; 
  opacity: 0; 
  transition: opacity 0.4s ease;
}

.toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 999;
}

.toggle-button i {
  transition: transform 0.4s;
}

.bubble-options {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  right: 0;
  bottom: 40px;
}

.bubble-options a {
  display: block;
  margin-bottom: 10px;
}

.toggle-button:hover {
  background: rgba(19, 20, 27, 0.9);
  color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.486) !important;
}

#hamburger {
  font-size: 18px; 
}

.bubble-whatsapp i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #00df13;
  color: #fff;
  transition: all 0.4s;
}

.bubble-whatsapp i:hover {
  background: #00a00d;
  color: #fff;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  transition: all 0.2s;
}

.back-to-top i:hover {
  background: rgba(19, 20, 27, 0.9);
  color: #fff;
}

.show-bubble-button { 
  display: flex;
}

/* Bubble Notification */
.bubble-whatsapp {
  position: relative; 
}

.bubble-notification {
  background-color: #f1c40f; 
  color: #333; 
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  display: none; 
  position: absolute; 
  right: 100%;
  top: 50%;
  transform: translateY(-50%); 
  margin-right: 10px; 
  white-space: nowrap; 
  text-align: left; 
}

.bubble-whatsapp:hover .bubble-notification {
  display: block; 
}

.bubble-notification::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 115px;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #f1c40f;
}

@media (max-width: 1200px) {
  .bubble-notification {
    display: block;
  }
}

@media (max-width: 425px) {
  .toggle-button {
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: #47b2e4
  }
  
  .bubble-options {
    bottom: 35px;
  }

  .bubble-whatsapp i {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }

  .back-to-top i {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }

  .bubble-notification {
    padding: 8px 14px;
    font-size: 10px;
    top: 45%;
    right: 100%; 
  }

  .bubble-notification::before {
    content: '';
    top: 55%;
    left: 90px;
    margin-top: -4px;
    border-width: 5px;
  }
}

/*--------------------------------------------------------------
# Bar Progress
--------------------------------------------------------------*/
#bar {
  width: 0;
  height: 4px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
  z-index: 99999;
  border-radius: 50px;
} 

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  width: 100%;
  transition: all 0.5s;
  z-index: 997;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header.header-transparent {
  background-color: transparent;
}

#header.header-scrolled {
  background-color: rgba(19, 20, 27, 0.9);
}

#header .logo {
  margin-left: -6rem;
}

#header .logo a {
  display: flex;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 2560px) {
  #header .logo {
    font-size: 22px; 
    margin-top: 2px;
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 1450px) {
  #header .logo {
    font-size: 22px; 
    margin-top: 2px;
    margin-left: 5px;
    margin-right: auto;
  }
}

@media (max-width: 1080px) {
  #header .logo a {
    font-size: 22px; 
    margin-top: 2px;
    margin-left: 50px;
    margin-right: auto;
  }
}

@media (max-width: 990px) {
  #header .logo a {
    font-size: 22px; 
    margin-top: 0px;
    margin-left: 0;
    margin-right: auto;
    white-space: nowrap;
    text-align: left;
  }  
}

@media (max-width: 768px) {
  #header .logo a {
    font-size: 22px; 
    margin-top: 4px;
    margin-left: 0;
    margin-right: auto;
    white-space: nowrap;
    text-align: left;
  }
}

@media (max-width: 580px) {
  #header .logo a {
    font-size: 22px; 
    margin-top: 5px;
    margin-left: 10px;
    margin-right: auto;
    white-space: nowrap; 
    line-height: 1.2;
    max-width: 90%;
    text-align: left;
  }
}

@media (max-width: 490px) {
  #header .logo a {
    font-size: 22px;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: auto;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 70%;
    text-align: left;
  }
}

@media (max-width: 425px) {
  #header .logo a {
    font-size: 20px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: auto;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 70%;
    text-align: left;
  }
}

@media (max-width: 400px) {
  #header .logo a {
    font-size: 18px;
    margin-top: 6px;
    margin-left: 5px;
    margin-right: auto;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 75%;
    text-align: left;
  }
}

@media (max-width: 320px) {
  #header .logo a {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  display: flex;
  margin-top: 3px;
  margin-right: -10px;
  padding: 10px;
  list-style: none;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 15px 7px 15px;
  margin-left: 5px;
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  border-radius: 20px;
  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: #fff;
  background-color: #47b2e4;
}

/* Dropdown Styles */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 5px 2px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-radius: 20px;
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
  text-align: left;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  margin: 2px 5px;
  color: #14151c;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: white;
  background-color: #47b2e4;
}

.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;
  width: 100%;
  top: 100%;
  left: 0;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  margin-top: -8px;
  margin-right: 5px;
  line-height: 0;
  color: #fff;
}

.mobile-nav-toggle.bi-x {
  margin-top: 5px;
  margin-right: 3px;
  color: #fff;
}

@media (max-width: 1300px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(71, 178, 228, 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: 25px;
  bottom: 0px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin-right: 5px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background-color: #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: #fff;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: url("https://i.imgur.com/Dgq1c1z.jpg"), linear-gradient(0deg, #2a2c39 100%, #33364a 100%);
  padding: 0;
  background-size: cover;
}

#hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 100vh;
  padding-top: 50px;
}

#hero h1 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-size: 24px;
}

#hero p {
  width: 80%;  
  margin: 0 auto 20px auto;
  color: #fff;
  /* text-align: justify; */
  text-align-last: center;
}

/* Btn Watch Video */
#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 -5px;
  color: #fff;
  position: relative;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}

#hero .btn-watch-video:hover,
#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

.modal-body {
  width: 100%;
  height: 100%;
}

@media (max-width: 990px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
  }
  
  #hero p {
    font-size: 14px;
  }
  
  #hero .btn-watch-video {
    font-size: 16px;
    padding-left: 25px;
    margin-left: 5px;
  }

  #hero .btn-watch-video i {
    font-size: 18px;
    top: 9px;
  }
}

@media (max-width: 375px) {
  #hero h2 {
    font-size: 14px;
  }
  
  #hero p {
    font-size: 13px;
  }

  #hero .btn-watch-video {
    font-size: 14px;
    padding-left: 25px;
    margin-left: 5px;
  }
  #hero .btn-watch-video i {
    font-size: 15px;
    top: 8.5px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Waves */
.hero-waves {
  display: block;
  position: relative;
  width: 100vw;
  height: 60px;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #47b2e4;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background-color: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background-color: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  .section-title h2 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-title p {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .section-title p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Visi Misi
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0px;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #47b2e4;
  margin-bottom: 20px;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 50px;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
  font-family: "Poppins", sans-serif;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  padding-right: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-size: 18px;
  font-weight: 600;
  padding-right: 10px;
}

.why-us .accordion-list i {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 10px;
    padding-right: 10px;
  }

  .why-us .content h3 {
    font-size: 28px;
  }
}

@media (max-width: 990px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

@media (max-width: 425px) {
  .why-us .accordion-list a {
    font-size: 14px;
    font-weight: 600;
  }
  
  .why-us .accordion-list span {
    padding-right: 2px;
    font-size: 14px;    
  }
  
  .why-us .accordion-list p {
    font-size: 12px;
  }
  
  .why-us .accordion-list ul {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Profil Lulusan
--------------------------------------------------------------*/
.skills .content h3 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #47b2e4;
}

.skills .row img {
  padding-right: 30px;
}

.skills .accordion-list li {
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

.skills .accordion-list p {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .skills {
    padding-left: 10px;
    padding-right: 10px;
  }

  .skills .content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .skills .row img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .skills .row img {
    min-height: 200px;
  }
}

@media (max-width: 425px) {
  .skills .content p {
    font-size: 12px;
  }
  
  .skills .accordion-list {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Capaian Pembelajaran & Kurikulum
--------------------------------------------------------------*/
.faq {
  padding-bottom: 0;
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  font-family: "Poppins", sans-serif;
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
  line-height: 1.5;
}

.faq .faq-list li {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #192a3d;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

.faq .section .download-silabus {
  background-color: #192a3d;
  padding: 12px; 
  margin-right: 10px; 
  margin-bottom: 30px; 
  color: #ffff; 
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.faq .section .download-akreditasi {
  background-color: #47b2e4;
  padding: 12px; 
  margin-right: 10px; 
  margin-bottom: 30px; 
  color: #ffff; 
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.table {
  border-collapse: collapse; 
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.table th,
.table td {
  border: 1px solid #dee2e6; 
  padding: 8px;
  vertical-align: middle; 
}

.table thead th {
  background-color: #f8f9fa; 
  font-weight: bold; 
}

.table tbody tr:nth-child(even) {
  background-color: #f9f9f9; 
}

.table tbody tr:hover {
  background-color: #f1f1f1;
}


@media (max-width: 1024px) {
  .faq {
    padding: 10px;
  }

  .faq .faq-list {
    padding: 0;
  }
}

@media (max-width: 425px) {
  .faq .faq-list li {
    padding: 20px;
  }

  .faq .faq-list {
    font-size: 12px;
  }

  .faq .faq-list a {
    font-size: 12px;
  }

  .faq .section .download-silabus {
    font-size: 12px;
  }
  
  .faq .section .download-akreditasi {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Kurikulum Details
--------------------------------------------------------------*/
.modal-open .modal,
.btnms:focus {
  outline: none !important;
}

.btnms:hover {
  border-style: solid;
  color: #47b2e4;
  border: 2px solid #47b2e4;
  background-color: transparent;
  color: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  border-color: #47b2e4;
  background-color: #47b2e4;
  color: white;
  animation-name: myanimation;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.btnms {
  border-style: solid;
  color: #47b2e4;
  border: 2px solid #47b2e4;
  background-color: transparent;
  color: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  animation-name: reverse;
  animation-duration: 1s;
}

.close {
  border-style: solid;
  border-radius: 5px;
  border: 2px solid #47b2e4;
  color: #fff;
  background-color: #47b2e4;
  cursor: pointer;
  padding-left: 7px;
  padding-right: 7px;
}


@keyframes myanimation {
  from {
    transform: rotate(0deg) scale(1);
    border-radius: 10px;
  }
  to {
    border-radius: 100px;
    transform: rotate(360deg) scale(0.7);
  }
}

@keyframes reverse {
  from {
    border-radius: 100px;
    transform: rotate(360deg) scale(0.7);
  }
  to {
    border-radius: 10px;
    transform: rotate(0deg) scale(1);
  }
}

@media (max-width: 425px) {
  .faq .faq-list li {
    padding: 20px;
  }

  .faq .faq-list {
    font-size: 12px;
  }

  .faq .faq-list a {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Peluang Kerja Lulusan
--------------------------------------------------------------*/
.services {
  background-color: #f3f5fa;
  padding-bottom: 0;
}

.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  margin-bottom: 25px;
  border-radius: 5px;
  transition: all ease-in-out 0.4s;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.services .icon-box h4 a {
  color: #192a3d;
  transition: ease-in-out 0.3s;
}

.services .icon-box a:hover {
  color: #73c5eb;
}

.services .icon-box p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

@media (max-width: 1030px) {
  .services {
    padding-bottom: 30px;
  }

  .services .icon-box {
    margin-bottom: -5px;
  }
}

@media (max-width: 425px) {
  .services {
    padding-bottom: 20px;
  }

  .services .icon-box {
    padding: 25px 25px;
    margin-bottom: 0;
  }
  
  .services .icon-box .icon i {
    font-size: 24px;
  }

  .services .icon-box h4 {
    font-size: 14px;
    font-weight: 600;
  }

  .services .icon-box p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Registrasi
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("https://i.imgur.com/AAuGQSQ.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Dosen, Tendik, Tata Usaha
--------------------------------------------------------------*/
.team {
  padding-bottom: 20px;
}

.tata-usaha {
  padding-bottom: 50px;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background-color: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .avatar-img {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .avatar-img img {
  width: 90%;
  overflow: hidden;
  border-radius: 50%;
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
  font-family: "Poppins", sans-serif;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background-color: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .member-info {
  width: 450px;
  margin-left: -25px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background-color: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background-color: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

@media (max-width: 425px) {
  .team {
    padding: 10px;
  }
  
  .team .member h4 {
    font-size: 16px;
  }
  
  .team .member h5 {
    font-size: 14px;
  }

  .team .member p {
    font-size: 12px;
  }

  .tata-usaha {
    padding-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: #47b2e4;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background-color: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background-color: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background-color: none;
  font-size: 16px;
  padding: 0 20px;
  background-color: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background-color: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background-color: #14151c;
  background-size: cover;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-family: "Jost", sans-serif;
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  color: white;
}

#footer .footer-top .footer-contact p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;  
  color: white;
}

#footer .footer-top h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #47b2e4;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1.5;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background-color: white;
  color: #47b2e4;
  text-decoration: none;
}

#footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  color: white;
  float: center;
}

@media (max-width: 1080px) {
  #footer .footer-top {
    display: none;
  }
  #footer .footer-top .footer-links {
    display: none;
  }
  #footer .copyright {
    text-align: center;
    float: center;
  }
}

/* Scrollbar Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 50px;
}

/* Scrollbar Handle on Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}