/* cores */
@keyframes bounce {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(6px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 32px));
  }
}
@keyframes scroll-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-100% - 32px));
  }
}
*, *:after, *:before {
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-track {
  background: #D0D6DD;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: rgba(51, 103, 111, 0.8);
  border-radius: 5px;
}
*::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(51, 51, 51, 0.4);
}

body {
  padding: 0;
  margin: 0;
}

ul {
  padding-left: 16px;
}

.show-sm {
  display: none;
}
@media (max-width: 991px) {
  .show-sm {
    display: flex;
  }
}

@font-face {
  font-family: "Poppins-Regular";
  src: local(Poppins-Regular);
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: local(Poppins-Medium);
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.eot#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.ttf") format("truetype"), url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: local(Poppins-SemiBold);
  src: url("../fonts/Poppins-SemiBold.eot");
  src: url("../fonts/Poppins-SemiBold.eot#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.ttf") format("truetype"), url("../fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: local(Poppins-Bold);
  src: url("../fonts/Poppins-Bold.eot");
  src: url("../fonts/Poppins-Bold.eot#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.ttf") format("truetype"), url("../fonts/Poppins-Bold.svg#Poppins-Bold") format("svg");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-ExtraBold";
  src: local(Poppins-ExtraBold);
  src: url("../fonts/Poppins-ExtraBold.eot");
  src: url("../fonts/Poppins-ExtraBold.eot#iefix") format("embedded-opentype"), url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff"), url("../fonts/Poppins-ExtraBold.ttf") format("truetype"), url("../fonts/Poppins-ExtraBold.svg#Poppins-ExtraBold") format("svg");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
p {
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins-Regular", serif;
  font-weight: 400;
}

h1 {
  font-size: 56px;
  line-height: 72px;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  line-height: 48px;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}

h3 {
  font-size: 36px;
  line-height: 48px;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}

h4, h5 {
  font-size: 28px;
  line-height: 36px;
  font-family: "Poppins-Medium", serif;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: "Poppins-Medium", serif;
  font-weight: 500;
}

b, strong {
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}

/* components */
.btn {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 50px;
  border: 0;
  letter-spacing: 0.5px;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}
.btn-primary {
  color: #FFF;
  background: linear-gradient(180deg, #438792 0%, #33676F 100%);
  transition: all linear 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #33676F 0%, #23474c 100%);
  transition: all linear 0.3s;
}
.btn-secondary {
  color: #FFF;
  background: linear-gradient(180deg, #7ed1dd 0%, #55c2d3 100%);
  transition: all linear 0.3s;
}
.btn-secondary:hover {
  background: linear-gradient(180deg, #55c2d3 0%, #32afc3 100%);
  transition: all linear 0.3s;
}
.btn-white {
  color: #33676F;
  background: #FFF;
  transition: all linear 0.3s;
}
.btn-white:hover {
  color: #33676F;
  background: #e6e6e6;
  transition: all linear 0.3s;
}

.sticky-wa {
  position: fixed;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.15);
  background-color: #25D374;
  z-index: 5;
  bottom: 20px;
  right: 20px;
  color: transparent;
  overflow: hidden;
}
.sticky-wa::after {
  content: "";
  display: inline-flex;
  text-decoration: none;
  background-image: url(../images/icon-wa.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  width: 47px;
  height: 47px;
  top: 6px;
  left: 7px;
}
.sticky-wa:hover {
  transform: scale(1.1);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  transition: all linear 0.3s;
}
header.scroll {
  background: #FFF;
  transition: all linear 0.3s;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}
header.scroll .navbar-brand a img {
  filter: none;
  transition: all linear 0.3s;
  height: 40px;
  width: auto;
}
header.scroll .navbar-nav .nav-item .nav-link {
  color: #000;
  transition: all linear 0.3s;
}
header.scroll .navbar .container .navbar-collapse .search__wrap .search .search-trigger {
  filter: none;
  transition: all linear 0.3s;
}
header .navbar-brand {
  margin: 0 10px;
}
header .navbar-brand a {
  display: inline-block;
  position: relative;
}
header .navbar-brand a img {
  height: 50px;
  width: auto;
  transition: all linear 0.3s;
}
header .navbar-brand a span {
  position: absolute;
  opacity: 0;
  color: transparent;
}
header .navbar-nav {
  margin: 0 32px;
}
header .navbar-nav .nav-item {
  margin: 0 12px;
  position: relative;
}
header .navbar-nav .nav-item .nav-link {
  font-family: "Poppins-Bold", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 2px solid transparent;
  color: #000;
  transition: all linear 0.3s;
}
header .navbar-nav .nav-item .nav-link:hover {
  color: #23474c;
}
header .navbar-nav .nav-item.has-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
header .navbar-nav .nav-item.has-dropdown > a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/chevron-down.svg) no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-flex;
}
header .navbar-nav .nav-item.has-dropdown:hover > .dropdown {
  display: block;
}
header .navbar-nav .nav-item.active .nav-link {
  color: #23474c;
}
header .navbar-nav .nav-item .dropdown {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  display: none;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}
header .navbar-nav .nav-item .dropdown > ul {
  list-style: none;
  padding-left: 0;
}
header .navbar-nav .nav-item .dropdown > ul li a {
  display: block;
  padding: 4px 6px;
  border-radius: 4px;
  color: #1a1a1a;
  text-decoration: none;
}
header .navbar-nav .nav-item .dropdown > ul li a:hover {
  background: #4b98a3;
  color: #FFF;
}
header .navbar .burger-menu {
  display: none;
}
header .navbar .container .navbar-collapse .search__wrap {
  position: relative;
  margin-right: 24px;
}
header .navbar .container .navbar-collapse .search__wrap .search {
  margin-right: 14px;
  transition: all linear 0.3s;
}
header .navbar .container .navbar-collapse .search__wrap .search .search-trigger {
  width: 24px;
  height: 24px;
  background: url(../images/ic-search.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: -10px;
  cursor: pointer;
  transition: all linear 0.3s;
}
header .navbar .container .navbar-collapse .search__wrap .search #searchform {
  opacity: 0;
  visibility: collapse;
  display: none;
  transition: all linear 0.3s;
}
header .navbar .container .navbar-collapse .search__wrap .search.show {
  width: 100%;
  max-width: 375px;
  background: #FFF;
  top: 7px;
  transition: all linear 0.3s;
}
header .navbar .container .navbar-collapse .search__wrap .search.show .search-trigger {
  display: none;
}
header .navbar .container .navbar-collapse .search__wrap .search.show #searchform {
  opacity: 1;
  visibility: visible;
  display: inline-flex;
  position: relative;
  width: 100%;
  transition: all linear 0.3s;
}
header .navbar .container .navbar-collapse .search__wrap .search.show #searchform .btn-search {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/ic-search.svg) no-repeat center;
  background-size: contain;
  right: 32px;
  top: 5px;
  padding: 0;
  border-radius: 0;
  border: none;
}
header .navbar .container .navbar-collapse .search__wrap .search.show #searchform .close {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/ic-close.svg) no-repeat center;
  background-size: contain;
  right: 5px;
  top: 5px;
}
@media (max-width: 1024px) {
  header .container .navbar-collapse.justify-content-end .search {
    display: none;
  }
}
@media (max-width: 991px) {
  header .navbar > .container {
    position: relative;
  }
  header .navbar-brand a img {
    height: 40px;
  }
  header .navbar .burger-menu {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 2;
    overflow: hidden;
  }
  header .navbar .burger-menu .bar {
    width: 30px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    background-color: #00b894;
    transition: all 0.3s ease-in-out;
  }
  header .navbar .burger-menu .bar:nth-of-type(2) {
    top: calc(50% - 9px);
  }
  header .navbar .burger-menu .bar:nth-of-type(3) {
    top: calc(50% + 9px);
  }
  header .navbar .burger-menu.active .bar:nth-of-type(1) {
    display: none;
  }
  header .navbar .burger-menu.active .bar:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
  }
  header .navbar .burger-menu.active .bar:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
  }
  header .navbar .navbar-collapse {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-200%);
    transition: all linear 0.3s;
    position: fixed;
    top: 67px;
    left: 0;
    background: #FFF;
    width: 100%;
    height: calc(100vh - 67px);
    justify-content: space-between !important;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 14px 32px 32px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  header .navbar .navbar-collapse .btn {
    width: 100%;
  }
  header .navbar .navbar-collapse .navbar-nav {
    margin: 0;
    width: 100%;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    margin: 0 0 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #D0D6DE;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 28px;
    line-height: 32px;
    font-family: "Poppins-Bold", serif;
    font-weight: 700;
  }
}
@media (max-width: 479px) {
  header {
    top: 0;
    background: #fff;
    padding: 9px 0;
    box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  }
  header .navbar {
    padding: 0;
  }
  header .navbar .container {
    background: transparent;
    box-shadow: none;
  }
  header .navbar .burger-menu {
    top: 10px;
    right: 20px;
  }
  header .navbar .navbar-collapse {
    top: 83px;
    height: calc(100vh - 83px);
  }
}

body.menu-open {
  overflow: hidden;
}
body.menu-open header {
  top: 0;
  background: #FFF;
  z-index: 99;
  transition: all linear 0.3s;
}
body.menu-open header .navbar {
  border-bottom: 1px solid #D0D6DE;
  transition: all linear 0.3s;
}
body.menu-open header .navbar .container {
  border-radius: 0;
  box-shadow: none;
  transition: all linear 0.3s;
}
body.menu-open header .navbar .burger-menu .bar:nth-of-type(1) {
  display: none;
}
body.menu-open header .navbar .burger-menu .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
body.menu-open header .navbar .burger-menu .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}
body.menu-open header .navbar .navbar-collapse {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all linear 0.3s;
}
@media (max-width: 479px) {
  body.menu-open header {
    background: #FFF;
    border-radius: 0;
    transition: all linear 0.3s;
  }
  body.menu-open header .navbar {
    border-bottom: 1px solid #D0D6DE;
    transition: all linear 0.3s;
  }
  body.menu-open header .navbar .container {
    box-shadow: none;
    transition: all linear 0.3s;
  }
  body.menu-open header .navbar .container .navbar-collapse {
    top: 67px;
    height: calc(100% - 67px);
  }
  body.menu-open header .navbar .container .navbar-collapse .navbar-nav .nav-item.has-dropdown:hover .dropdown {
    width: 100%;
    border: 0;
    box-shadow: none;
    padding: 8px 0;
    position: relative;
    top: 0;
    left: 0;
  }
  body.menu-open header .navbar .container .navbar-collapse .navbar-nav .nav-item.has-dropdown:hover .dropdown > ul li {
    margin-bottom: 8px;
  }
  body.menu-open header .navbar .container .navbar-collapse .navbar-nav .nav-item.has-dropdown:hover .dropdown > ul li a {
    font-size: 20px;
    line-height: 28px;
  }
}

.footer {
  background: #33676F;
  color: #FFF;
}
.footer__top {
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.footer__menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  padding-left: 0;
}
.footer__menu ul li {
  position: relative;
}
.footer__menu ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: calc(50% - 2px);
  left: -14px;
  display: inline-flex;
}
.footer__menu ul li:first-child::before {
  display: none;
}
.footer__menu ul li a {
  color: #FFF;
  text-decoration: none;
  opacity: 0.8;
  transition: all linear 0.3s;
}
.footer__menu ul li a:hover {
  opacity: 1;
  transition: all linear 0.3s;
  text-decoration: underline;
}
.footer__copyright {
  text-align: right;
}
.footer__bottom {
  padding: 24px 0;
  align-items: center;
}
.footer__meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer__logo {
  flex: 0 0 189px;
  display: inline-flex;
  background: #FFF;
  padding: 8px 24px;
  border-radius: 50px;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__contact {
  flex: 0 0 calc(100% - 189px);
}
.footer__contact ul {
  list-style: none;
}
.footer__contact ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
}
.footer__contact ul li:last-child {
  margin-bottom: 0;
}
.footer__contact ul li::before {
  content: "";
  display: none;
  width: 16px;
  height: 15px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.footer__contact ul li.addr::before {
  display: inline-flex;
  background: url(../images/icon-addr.svg) no-repeat;
  background-size: contain;
}
.footer__contact ul li.wa::before {
  display: inline-flex;
  background: url(../images/icon-wa.svg) no-repeat;
  background-size: contain;
}
.footer__contact ul li.email::before {
  display: inline-flex;
  background: url(../images/icon-email.svg) no-repeat;
  background-size: contain;
}
.footer__contact ul li a {
  color: #FFF;
  text-decoration: none;
  opacity: 0.8;
  transition: all linear 0.3s;
}
.footer__contact ul li a:hover {
  opacity: 1;
  text-decoration: underline;
  transition: all linear 0.3s;
}
.footer__sosmed ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  gap: 16px;
}
.footer__sosmed ul li a {
  display: inline-flex;
  padding: 12px;
  border-radius: 50%;
  background: #FFF;
  position: relative;
  transition: all linear 0.3s;
}
.footer__sosmed ul li a img {
  height: 30px;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all linear 0.3s;
}
.footer__sosmed ul li a span {
  position: absolute;
  color: transparent;
  opacity: 0;
}
.footer__sosmed ul li a:hover {
  background: #33676F;
  transition: all linear 0.3s;
}
.footer__sosmed ul li a:hover img {
  filter: invert(0.5) brightness(2);
  transition: all linear 0.3s;
}
@media (max-width: 479px) {
  .footer__menu {
    margin-bottom: 16px;
  }
  .footer__menu ul {
    justify-content: center;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__contact {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 16px;
  }
  .footer__contact ul {
    padding-left: 0;
  }
  .footer__sosmed {
    margin: 16px 0;
  }
  .footer__sosmed ul {
    justify-content: center;
  }
}

/* pages */
.masthead {
  background: #edfcff;
  color: #000;
  padding: 224px 0 128px;
}
.masthead__meta {
  text-transform: lowercase;
  font-size: 20px;
  line-height: 28px;
  color: #33676F;
  letter-spacing: 2px;
  font-family: "Poppins-Medium", serif;
  font-weight: 500;
}
.masthead__title {
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.masthead__title span {
  color: #33676F;
}
.masthead__desc {
  margin-bottom: 24px;
}
.masthead__img {
  padding: 10px;
  background: #FFF;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.masthead__img img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 479px) {
  .masthead {
    padding: 120px 0;
  }
  .masthead__title {
    font-size: 42px;
    line-height: 56px;
  }
  .masthead__right {
    padding-top: 32px;
  }
}

.upcoming-event {
  padding: 64px 0;
}
.upcoming-event__head {
  margin-bottom: 32px;
}
.upcoming-event__title {
  text-align: left;
}
.upcoming-event__title span {
  color: #33676F;
}
.upcoming-event .box {
  background: #2b393b;
  border-radius: 8px;
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.upcoming-event .box::before {
  content: "";
  width: 600px;
  height: 600px;
  display: inline-flex;
  background: url(../images/bg-circle.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -100px;
  right: -100px;
  z-index: 1;
}
.upcoming-event .box::after {
  content: "";
  width: 500px;
  height: 500px;
  display: inline-flex;
  background: url(../images/bg-circle.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -100px;
  right: 190px;
  z-index: 1;
}
.upcoming-event .box__left, .upcoming-event .box__right {
  flex: 0 0 50%;
  position: relative;
  z-index: 2;
}
.upcoming-event .box__left {
  padding: 32px;
}
.upcoming-event .box__left .box__title {
  font-size: 28px;
  line-height: 32px;
}
.upcoming-event .box__left .box__desc {
  margin-bottom: 24px;
}
.upcoming-event .box__left .box__info {
  margin-bottom: 24px;
}
.upcoming-event .box__left .box__info strong {
  display: block;
  margin-bottom: 12px;
}
.upcoming-event .box__left .box__info ul {
  list-style: none;
  padding-left: 28px;
}
.upcoming-event .box__left .box__info ul li {
  color: #FFF;
  position: relative;
  margin-bottom: 8px;
}
.upcoming-event .box__left .box__info ul li a {
  color: #FFF;
  text-decoration: none;
}
.upcoming-event .box__left .box__info ul li a:hover {
  text-decoration: underline;
}
.upcoming-event .box__left .box__info ul li.location::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/ic-location.png) no-repeat center;
  background-size: contain;
  display: inline-flex;
  position: absolute;
  filter: invert(1);
  top: 0;
  left: -30px;
}
.upcoming-event .box__left .box__info ul li.datetime::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/ic-calendar.png) no-repeat center;
  background-size: contain;
  display: inline-flex;
  position: absolute;
  filter: invert(1);
  top: 0;
  left: -30px;
}
.upcoming-event .box__left .box__speakers {
  margin-bottom: 24px;
}
.upcoming-event .box__left .box__speakers strong {
  display: block;
  margin-bottom: 12px;
}
.upcoming-event .box__left .box__speakers ul {
  list-style: none;
  padding-left: 0;
}
.upcoming-event .box__left .box__speakers ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}
.upcoming-event .box__left .box__speakers ul li .left {
  flex: 0 0 50px;
  margin-right: 16px;
  border-radius: 50%;
  overflow: hidden;
}
.upcoming-event .box__left .box__speakers ul li .left img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.upcoming-event .box__left .box__speakers ul li .right strong {
  margin-bottom: 0;
}
.upcoming-event .box__left .box__action {
  margin-top: 32px;
}
.upcoming-event .box__right {
  text-align: center;
}
@media (max-width: 479px) {
  .upcoming-event {
    padding: 32px 0;
  }
  .upcoming-event__title {
    font-size: 28px;
    line-height: 36px;
  }
  .upcoming-event .box {
    flex-direction: column-reverse;
  }
  .upcoming-event .box__left, .upcoming-event .box__right {
    flex: 0 0 100%;
    width: 100%;
  }
  .upcoming-event .box::before, .upcoming-event .box::after {
    display: none;
  }
  .upcoming-event .box__left .box__title {
    font-size: 26px;
    line-height: 32px;
  }
  .upcoming-event .box__left .box__speakers .right {
    flex: 0 0 calc(100% - 66px);
  }
}

.categories {
  padding: 64px 0;
}
.categories__head {
  margin-bottom: 48px;
  text-align: center;
}
.categories__title span {
  color: #33676F;
}
.categories__desc {
  color: #6D737A;
  font-size: 20px;
  line-height: 28px;
}
.categories .item {
  flex: 0 0 30%;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  transition: all linear 0.3s;
}
.categories .item:hover {
  border-color: #33676F;
  transition: all linear 0.3s;
}
.categories .item__wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.categories .item__meta {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e5e5e5;
  flex: 0 0 100%;
  padding: 24px;
}
.categories .item__img {
  flex: 0 0 40px;
  max-width: 40px;
  margin-right: 16px;
}
.categories .item__title {
  font-size: 20px;
  line-height: 28px;
}
.categories .item__action {
  padding: 16px;
  margin-top: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 0 0 100%;
}
@media (max-width: 479px) {
  .categories {
    padding: 32px 0;
  }
  .categories__title {
    font-size: 28px;
    line-height: 36px;
  }
  .categories .item {
    flex: 0 0 100%;
    width: 100%;
  }
}

.cta-footer {
  padding: 64px 0;
  background-color: #edfcff;
  background-image: url(../images/bg-accent.png);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
}
.cta-footer::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 408px;
  top: 0;
  right: 0;
  background: url(../images/bg-accent-2.png) no-repeat;
  background-size: cover;
  display: none;
}
.cta-footer__title {
  font-size: 36px;
  line-height: 52px;
  margin-bottom: 16px;
}
.cta-footer__title span {
  color: #33676F;
}
@media (max-width: 479px) {
  .cta-footer {
    padding: 32px 0;
  }
  .cta-footer__title {
    font-size: 28px;
    line-height: 36px;
  }
}

.blog-card {
  padding: 64px 0;
}
.blog-card__head {
  margin-bottom: 32px;
}
.blog-card__action {
  margin-top: 16px;
  text-align: center;
}
.blog-card__title span {
  color: #33676F;
}
.blog-card .card {
  border-radius: 16px;
  overflow: hidden;
  height: calc(100% - 16px);
  margin-bottom: 16px;
}
.blog-card .card__img {
  width: 100%;
  height: 200px;
}
.blog-card .card__img img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card .card__content {
  padding: 16px;
}
.blog-card .card__cat {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.blog-card .card__cat .badge {
  display: inline-flex;
  padding: 2px 8px;
  background: #33676F;
  color: #FFF;
  border-radius: 8px;
}
.blog-card .card__date {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}
.blog-card .card__title {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.25px;
  margin-bottom: 8px;
}
.blog-card .card__title a {
  color: #2b393b;
  text-decoration: none;
}
.blog-card .card__title a:hover {
  text-decoration: none;
}
.blog-card .card__desc, .blog-card .card__desc p {
  font-size: 16px;
  line-height: 24px;
}
.blog-card .card__action {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
}
@media (max-width: 479px) {
  .blog-card {
    padding: 32px 0;
  }
  .blog-card__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.testimonial {
  padding: 48px 0;
}
.testimonial__title {
  text-align: center;
}
.testimonial__title span {
  color: #33676F;
}
.testimonial__slider {
  max-width: 700px;
  padding: 24px 24px 0;
}
.testimonial__slider .item {
  padding: 48px;
  border-radius: 25px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}
.testimonial__slider .item .content {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 24px;
}
.testimonial__slider .item .info .left .name {
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.testimonial__slider .item .info .left .company {
  font-size: 14px;
  line-height: 20px;
}
.testimonial__pagination {
  margin-top: 24px;
  text-align: center;
}
.testimonial__pagination .swiper-pagination-bullet {
  width: 35px;
  height: 8px;
  border-radius: 16px;
}
.testimonial__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #33676F;
}
@media (max-width: 479px) {
  .testimonial {
    padding: 32px 0;
  }
  .testimonial__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.form {
  padding: 48px 0;
}
.form__title {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 24px;
}
.form__title span {
  color: #33676F;
}
.form__img img {
  display: block;
  margin: 0 auto;
}
.form__form {
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}
.form__form .form-group {
  margin-bottom: 16px;
}
.form__form .form-group.text-right {
  text-align: right;
}
.form__form .form-group .form-control {
  padding: 12px 16px;
}
.form__form .form-group .form-control:focus, .form__form .form-group .form-control:hover {
  border: 1px solid #33676F;
  box-shadow: none;
}
@media (max-width: 479px) {
  .form {
    padding: 32px 0;
  }
  .form__title {
    font-size: 20px;
    line-height: 28px;
  }
  .form__img {
    margin-bottom: 16px;
  }
  .form__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.masthead--sub {
  background: #edfcff;
  padding: 140px 0 64px 0;
  position: relative;
}
.masthead--sub.article {
  padding-top: 140px;
}
.masthead--sub.article .masthead__title {
  font-size: 32px;
  line-height: 1.5;
}

.about-us {
  padding: 64px 0;
}
.about-us__img {
  padding: 10px;
  background: #FFF;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.about-us__img img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 479px) {
  .about-us {
    padding: 32px 0;
  }
}

.visi-misi {
  padding: 32px 0;
}
.visi-misi__box {
  padding: 32px;
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.visi-misi__box--dark {
  background: #33676F;
  color: #FFF;
}
.visi-misi__box--dark p {
  font-size: 24px;
  line-height: 32px;
}
.visi-misi__title {
  margin-bottom: 24px;
}
.visi-misi__title span {
  color: #33676F;
}
@media (max-width: 479px) {
  .visi-misi {
    padding: 32px 0 0 0;
  }
  .visi-misi__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.trainer {
  padding: 64px 0;
}
.trainer__head {
  margin-bottom: 32px;
}
.trainer__title span {
  color: #33676F;
}
.trainer .card {
  overflow: hidden;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.trainer .card__img {
  border-radius: 24px;
  overflow: hidden;
  max-height: 264px;
  height: 100%;
  width: 100%;
  margin-bottom: 16px;
}
.trainer .card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.trainer .card__info {
  text-align: center;
}
.trainer .card__title {
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 479px) {
  .trainer {
    padding: 32px 0;
  }
}

.masthead-slider .masthead__img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  padding: 0;
  border-radius: 0;
}
.masthead-slider .masthead__img img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.masthead-slider .masthead__slider {
  height: 100vh;
  max-height: 607px;
}
.masthead-slider .masthead__slider .container {
  height: 100%;
}
.masthead-slider .masthead__slider .container .row {
  height: 100%;
}
.masthead-slider .masthead__slider .container .row .col-12 {
  height: 100%;
}
.masthead-slider .masthead__wrapper {
  background: rgba(0, 0, 0, 0.38);
  height: 100%;
  position: relative;
}
.masthead-slider .masthead__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 714px;
}
.masthead-slider .masthead__title {
  color: #FFF;
  font-size: 56px;
  line-height: 67.2px;
  letter-spacing: 0.56px;
}
.masthead-slider .masthead__pagination {
  position: absolute;
  bottom: 16px;
  left: 0;
  z-index: 2;
  text-align: center;
}
.masthead-slider .masthead__pagination .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 10px;
  background: #FFF;
  opacity: 0.7;
  transition: opacity linear 0.3s;
}
.masthead-slider .masthead__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  transition: opacity linear 0.3s;
}
@media (max-width: 479px) {
  .masthead-slider .masthead__title {
    font-size: 32px;
    line-height: 48px;
  }
  .masthead-slider .masthead__slider {
    height: 250px;
  }
}

.events {
  padding: 64px 0;
}
.events__head {
  margin-bottom: 32px;
}
.events__title span {
  color: #33676F;
}
.events .card {
  border-radius: 16px;
  overflow: hidden;
  height: calc(100% - 16px);
  margin-bottom: 16px;
}
.events .card__img {
  width: 100%;
  height: 200px;
}
.events .card__img img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events .card__content {
  padding: 16px;
}
.events .card__cat {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.events .card__cat .badge {
  display: inline-flex;
  padding: 2px 8px;
  background: #33676F;
  color: #FFF;
  border-radius: 8px;
}
.events .card__date {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}
.events .card__title {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.25px;
  margin-bottom: 16px;
}
.events .card__title a {
  color: #2b393b;
  text-decoration: none;
}
.events .card__title a:hover {
  text-decoration: none;
}
.events .card__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
@media (max-width: 479px) {
  .events__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.propose {
  padding: 64px 0;
}
.propose__title {
  margin-bottom: 24px;
}
.propose__title span {
  color: #33676F;
}
.propose__desc ul {
  list-style: none;
  padding-left: 0;
}
.propose__desc ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}
.propose__desc ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/ic-check.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.propose__img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479px) {
  .propose {
    padding: 32px 0;
  }
  .propose__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.faq-block {
  padding: 64px 0;
}
.faq-block__title {
  text-align: center;
  margin-bottom: 24px;
}
.faq-block__title span {
  color: #33676F;
}
.faq-block .accordion .accordion-item {
  border: none;
}
.faq-block .accordion .accordion-item .accordion-header .accordion-button {
  padding: 8px 16px;
  background: transparent;
}
.faq-block .accordion .accordion-item .accordion-header .accordion-button:active, .faq-block .accordion .accordion-item .accordion-header .accordion-button:focus, .faq-block .accordion .accordion-item .accordion-header .accordion-button:hover, .faq-block .accordion .accordion-item .accordion-header .accordion-button:visited {
  box-shadow: none;
}
.faq-block .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #33676F;
}
.faq-block .accordion .accordion-item .accordion-body {
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 479px) {
  .faq-block {
    padding: 32px 0;
  }
  .faq-block__title {
    font-size: 28px;
    line-height: 32px;
  }
  .faq-block .accordion .accordion-item .accordion-body h3, .faq-block .accordion .accordion-item .accordion-body h4 {
    font-size: 20px;
    line-height: 28px;
  }
}

.article {
  padding: 64px 0;
}
.article .item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
}
.article .item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.article .item__title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.article .item p {
  font-size: 16px;
  line-height: 24px;
}
.article .item label {
  display: block;
  margin-block: 8px;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}
.article .item ul {
  list-style: none;
  padding-left: 0;
  max-width: 570px;
}
.article .item ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}
.article .item ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/ic-check.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.article .item .cta-box {
  display: flex;
  max-width: 375px;
  background: #33676F;
  border-radius: 20px;
  padding: 24px;
  margin-top: 32px;
  color: #FFF;
  flex-wrap: wrap;
}
.article .item .cta-box dl {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.article .item .cta-box dl dt {
  flex: 0 0 70px;
  margin-bottom: 8px;
}
.article .item .cta-box dl dd {
  flex: 0 0 calc(100% - 70px);
  position: relative;
  margin-bottom: 8px;
}
.article .item .cta-box dl dd::before {
  content: ":";
  margin-right: 4px;
}

.calendar {
  transform: translate3d(0, 0, 0);
  width: 420px;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  /* Animations are cool! */
}
.calendar .header {
  height: 50px;
  width: 420px;
  background: #33676F;
  text-align: center;
  position: relative;
  z-index: 100;
}
.calendar .header h3 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 50px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #FFF;
}
.calendar .left, .calendar .right {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  top: 50%;
  margin-top: -7.5px;
  cursor: pointer;
}
.calendar .left {
  border-width: 7.5px 10px 7.5px 0;
  border-color: transparent rgb(255, 255, 255) transparent transparent;
  left: 20px;
}
.calendar .right {
  border-width: 7.5px 0 7.5px 10px;
  border-color: transparent transparent transparent rgb(255, 255, 255);
  right: 20px;
}
.calendar .month {
  /*overflow: hidden; */
  opacity: 0;
}
.calendar .month.new {
  -webkit-animation: fadeIn 1s ease-out;
  opacity: 1;
}
.calendar .month.in.next {
  animation: moveFromTopFadeMonth 0.4s ease-out;
  opacity: 1;
}
.calendar .month.out.next {
  animation: moveToTopFadeMonth 0.4s ease-in;
  opacity: 1;
}
.calendar .month.in.prev {
  animation: moveFromBottomFadeMonth 0.4s ease-out;
  opacity: 1;
}
.calendar .month.out.prev {
  animation: moveToBottomFadeMonth 0.4s ease-in;
  opacity: 1;
}
.calendar .week {
  background: #edfcff;
}
.calendar .day {
  display: inline-block;
  width: 60px;
  padding: 10px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  background: #edfcff;
  position: relative;
  z-index: 100;
}
.calendar .day.other {
  color: #acacac;
}
.calendar .day.today {
  color: #FFF;
  background: #33676F;
  border-radius: 8px;
}
.calendar .day.today .day-name {
  color: #FFF;
}
.calendar .day-name {
  font-size: 9px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #000;
  letter-spacing: 0.7px;
}
.calendar .day-number {
  font-size: 24px;
  letter-spacing: 1.5px;
}
.calendar .day .day-events {
  list-style: none;
  margin-top: 3px;
  text-align: center;
  height: 12px;
  line-height: 6px;
  overflow: hidden;
}
.calendar .day .day-events span {
  vertical-align: top;
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 5px;
  height: 5px;
  line-height: 5px;
  margin: 0 1px;
}
.calendar .blue {
  background: rgb(156, 202, 235);
}
.calendar .orange {
  background: rgb(247, 167, 0);
}
.calendar .green {
  background: rgb(153, 198, 109);
}
.calendar .yellow {
  background: rgb(249, 233, 0);
}
.calendar .details {
  position: relative;
  width: 420px;
  height: 75px;
  background: #33676F;
  margin-top: 5px;
  border-radius: 4px;
  color: #FFF;
}
.calendar .details.in {
  animation: moveFromTopFade 0.5s ease both;
}
.calendar .details.out {
  animation: moveToTopFade 0.5s ease both;
}
.calendar .arrow {
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -2px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #33676F transparent;
  transition: all 0.7s ease;
}
.calendar .events {
  height: 75px;
  padding: 7px 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.calendar .events.in {
  animation: fadeIn 0.3s ease both;
  animation-delay: 0.3s;
}
.calendar .details.out .events {
  animation: fadeOutShink 0.4s ease both;
}
.calendar .events.out {
  animation: fadeOut 0.3s ease both;
}
.calendar .event {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  padding: 2px 16px;
  vertical-align: top;
}
.calendar .event.empty {
  color: #eee;
}
.calendar .event-category {
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 6px 0 0;
  vertical-align: top;
}
.calendar .event span {
  display: inline-block;
  padding: 0 0 0 7px;
}
.calendar .legend {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  background: #33676F;
  line-height: 30px;
  display: none;
}
.calendar .entry {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 13px;
  display: inline-block;
  line-height: 30px;
  background: transparent;
}
.calendar .entry:after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  top: 12px;
  left: 14px;
}
.calendar .entry.blue:after {
  background: rgb(156, 202, 235);
}
.calendar .entry.orange:after {
  background: rgb(247, 167, 0);
}
.calendar .entry.green:after {
  background: rgb(153, 198, 109);
}
.calendar .entry.yellow:after {
  background: rgb(249, 233, 0);
}
@media (max-width: 479px) {
  .calendar {
    width: 100%;
  }
  .calendar .header {
    width: 100%;
  }
  .calendar .day {
    width: 14.2857142857%;
  }
}
@keyframes moveFromTopFade {
  from {
    height: 0px;
    margin-top: 0px;
    transform: translateY(-100%);
  }
}
@keyframes moveToTopFade {
  to {
    height: 0px;
    transform: translateY(-100%);
  }
}
@keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -moz-transform: translateY(-30%);
  }
}
@keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -moz-transform: translateY(30%);
  }
}
@keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%);
  }
}
@keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}

.benefit {
  padding: 64px 0;
}
.benefit__title {
  margin-bottom: 32px;
}
.benefit__title span {
  color: #33676F;
}
.benefit .item {
  margin: 0 auto;
  text-align: center;
}
.benefit .item__icon {
  margin-bottom: 16px;
}
.benefit .item__title {
  font-size: 18px;
  line-height: 28px;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
}
@media (max-width: 479px) {
  .benefit {
    padding: 32px 0;
  }
  .benefit__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.box-card {
  padding: 64px 0;
}
.box-card__title {
  margin-bottom: 32px;
}
.box-card__title span {
  color: #33676F;
}
.box-card .item {
  margin: 0 auto;
  text-align: center;
  background: #edfcff;
  border-radius: 35px;
  padding: 24px;
  height: calc(100% - 24px);
  margin-bottom: 24px;
}
.box-card .item__icon {
  margin-bottom: 16px;
}
.box-card .item__desc, .box-card .item__desc p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins-Regular", serif;
  font-weight: 400;
}
@media (max-width: 479px) {
  .box-card {
    padding: 32px;
  }
  .box-card__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.tab-service {
  padding: 64px 0;
  background: #FFF;
}
.tab-service__title {
  margin-bottom: 24px;
}
.tab-service__title span {
  color: #33676F;
}
.tab-service .nav {
  margin-right: 24px;
}
.tab-service .nav .nav-item {
  width: 100%;
  display: flex;
  flex: 0 0 100%;
  padding: 24px 16px;
  border: 1px solid #33676F;
  background: #33676F;
  border-radius: 8px;
  margin-bottom: 16px;
}
.tab-service .nav .nav-item.active, .tab-service .nav .nav-item:hover {
  cursor: pointer;
  box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.tab-service .nav .nav-item.active .nav-link::after, .tab-service .nav .nav-item:hover .nav-link::after {
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  background: url(../images/ic-chevron-right-white.svg) no-repeat center;
  background-size: contain;
  background-color: #000;
  border-radius: 50px;
  margin-left: auto;
  filter: invert(1);
}
.tab-service .nav .nav-item .nav-link {
  gap: 8px;
  align-items: center;
  justify-content: left;
  display: flex;
  padding: 0;
  color: #FFF;
  position: relative;
  width: 100%;
}
.tab-service .nav .nav-item .nav-link::after {
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  background: url(../images/ic-chevron-right-white.svg) no-repeat center;
  background-size: contain;
  margin-left: auto;
}
.tab-service .tab-content {
  height: 100%;
}
.tab-service .tab-content .tab-pane {
  height: 100%;
}
.tab-service .tab-content .tab-pane .tab-service__box {
  height: calc(100% - 16px);
  padding: 32px;
  border-radius: 8px;
  background: #33676F;
  color: #FFF;
  box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.tab-service .tab-content .tab-pane .tab-service__box .title,
.tab-service .tab-content .tab-pane .tab-service__box h3,
.tab-service .tab-content .tab-pane .tab-service__box h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .tab-service .nav {
    display: none;
  }
  .tab-service .tab-content {
    height: -moz-max-content;
    height: max-content;
  }
  .tab-service .tab-content .tab-pane:not(.active) {
    display: block;
    opacity: 1;
  }
  .tab-service .tab-content .tab-pane {
    height: -moz-max-content;
    height: max-content;
  }
  .tab-service .tab-content .tab-pane .tab-service__box {
    margin-bottom: 24px;
    padding: 16px;
  }
  .tab-service .tab-content .tab-pane .tab-service__box .title {
    font-size: 20px;
    line-height: 32px;
  }
  .tab-service .tab-content .tab-pane .tab-service__box .desc {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 479px) {
  .tab-service {
    padding: 32px 0;
  }
  .tab-service__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.trainer {
  padding: 64px 0;
}
.trainer__title {
  margin-bottom: 16px;
}
.trainer__img {
  padding: 10px;
  background: #FFF;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.trainer__img img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.trainer__action {
  margin-top: 24px;
}
@media (max-width: 479px) {
  .trainer {
    padding: 32px 0;
  }
  .trainer__title {
    font-size: 28px;
    line-height: 32px;
  }
  .trainer__img {
    margin-top: 24px;
  }
}

.training {
  padding: 48px 0;
}
.training__title {
  text-align: center;
  margin-bottom: 24px;
}
.training__title span {
  color: #33676F;
}
.training__item {
  padding: 48px 0;
}
.training__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}
.training__poster {
  flex: 0 0 100%;
  width: 100%;
  max-width: 500px;
  padding: 10px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.training__poster img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.training__meta {
  flex: 0 0 100%;
  width: 100%;
  max-width: calc(100% - 532px);
}
.training__meta .title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.training__meta .action {
  text-align: right;
  margin-top: 24px;
}
.training__meta ul.list {
  list-style: none;
  padding-left: 0;
}
.training__meta ul.list > li {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.training__meta ul.list > li > span:first-child {
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
  flex: 0 0 100%;
  width: 100%;
  max-width: 150px;
  position: relative;
}
.training__meta ul.list > li > span:first-child::after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
}
.training__meta ul.list > li > span:last-child {
  flex: 0 0 100%;
  width: 100%;
  max-width: calc(100% - 154px);
}
.training__meta ul.list > li > span:last-child > ul {
  list-style: decimal;
}
.training__meta ul.list > li > span:last-child > ul > li {
  margin-bottom: 8px;
}
.training__meta ul.list > li > span:last-child > ul > li > span {
  display: block;
}
.training__meta ul.list > li > span:last-child > ul > li > span:first-child {
  margin-bottom: 4px;
  font-family: "Poppins-Medium", serif;
  font-weight: 500;
}
.training__tabs {
  margin-top: 24px;
}
.training__tabs .nav {
  margin-bottom: 0;
  display: flex;
}
.training__tabs .nav .nav-item {
  flex: 0 0 50%;
}
.training__tabs .nav .nav-item .nav-link {
  background: #FFF;
  border: 1px solid #33676F;
  border-radius: 8px 8px 0 0;
  color: #33676F;
  width: 100%;
  font-family: "Poppins-SemiBold", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.training__tabs .nav .nav-item .nav-link.active {
  background: #33676F;
  color: #FFF;
}
.training__tabs .tab-content .tab-pane {
  background: #33676F;
  color: #FFF;
  padding: 24px;
  border-radius: 0 0 8px 8px;
}
.training__tabs .tab-content .tab-pane > ol li {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .training {
    padding: 32px 0;
  }
  .training__title {
    font-size: 28px;
    line-height: 32px;
  }
  .training__item {
    padding: 32px 0;
  }
  .training__poster {
    max-width: 320px;
  }
  .training__meta {
    max-width: calc(100% - 360px);
  }
  .training__meta ul.list > li > span:first-child, .training__meta ul.list > li > span:last-child {
    max-width: 100%;
  }
  .training__meta ul.list > li > span:first-child::after {
    position: relative;
    margin-left: 4px;
  }
}
@media (max-width: 479px) {
  .training__poster, .training__meta {
    max-width: 100%;
  }
}

.blog-related {
  padding: 64px 0;
}
.blog-related__head {
  margin-bottom: 32px;
}
.blog-related__action {
  margin-top: 16px;
  text-align: center;
}
.blog-related__title span {
  color: #33676F;
}
.blog-related .card {
  border-radius: 16px;
  overflow: hidden;
  height: calc(100% - 16px);
  margin-bottom: 16px;
}
.blog-related .card__img {
  width: 100%;
  height: 200px;
}
.blog-related .card__img img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-related .card__content {
  padding: 16px;
}
.blog-related .card__cat {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.blog-related .card__cat .badge {
  display: inline-flex;
  padding: 2px 8px;
  background: #33676F;
  color: #FFF;
  border-radius: 8px;
}
.blog-related .card__date {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}
.blog-related .card__title {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.25px;
  margin-bottom: 8px;
}
.blog-related .card__title a {
  color: #2b393b;
  text-decoration: none;
}
.blog-related .card__title a:hover {
  text-decoration: none;
}
.blog-related .card__desc, .blog-related .card__desc p {
  font-size: 16px;
  line-height: 24px;
}
.blog-related .card__action {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
}
@media (max-width: 479px) {
  .blog-related {
    padding: 32px 0;
  }
  .blog-related__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.blog-article {
  padding: 48px 0;
}
.blog-article__img {
  margin-bottom: 24px;
}
.blog-article__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-article article p {
  font-size: 16px;
  line-height: 1.5;
}
.blog-article article h2 {
  font-size: 28px;
  line-height: 1.5;
}
.blog-article article h3 {
  font-size: 26px;
  line-height: 1.5;
}
.blog-article article h4 {
  font-size: 24px;
  line-height: 1.5;
}
.blog-article article img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479px) {
  .blog-article {
    padding: 32px 0;
  }
}/*# sourceMappingURL=main.css.map */