/**
* Template Name: HeroBiz
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/**
* Check out variables.css for easy customization of colors, typography, and other repetitive properties
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: '';
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

#main {
  margin-top: 100px;
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  section {
    padding: 10px 0;
  }
}
.modal {
  z-index: 9999;
}
.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 28px !important;
  margin-bottom: 20px;
  font-weight: 700 !important;
  color: var(--color-secondary);
  font: var(--font-default);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .speaker-modal .modal-title,
  .speaker-detail-info h3 {
    font-size: 1.25rem !important;
  }
  .content-section h4,
  .speaker-detail-info .title,
  .speaker-detail-info .company {
    font-size: 1rem !important;
  }
  .content-section p {
    font-size: 0.9rem !important;
  }
  .section-header h2 {
    font-size: 20px !important;
  }
  .speaker-modal .modal-header {
    padding: 10px !important;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: '/';
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 14px 0;
  transition: all 0.5s;
  z-index: 9999;
}
.header.fixed-top {
  background-color: #0d002f;
}
.header > div.container-fluid {
  max-width: 1320px;
}
.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .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: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

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

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }
  .sticked .mobile-nav-toggle {
    color: var(--color-default);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 90vh;
  /*background: url("../img/main-bg.2024.jpg?v=2") center center;
  background-size: cover;*/
  background-color: #06001b;
  position: relative;
  padding: 0px 0 60px;
}

.hero-animated p {
  color: var(--color-white);
  margin: 20px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-animated .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 42%;
  }
}

@media (max-width: 991px) {
  .hero-animated {
    width: 100%;
    min-height: 90vh;
    background: url('../img/main-bg.m.jpg?v=2') center center;
    background-size: cover;
    position: relative;
    padding: 120px 0 60px;
  }
  .hero-animated .animated {
    max-width: 45%;
  }
  .hero-animated > .position-relative {
    height: 43vh;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    max-height: 40px;
  }
  .hero-animated .animated {
    max-width: 80%;
  }
}

.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-animated .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0;
  background: var(--color-black);
  background: url('../img/hero-bg.png') center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  animation: fadeInDown 1s both 0.2s;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  color: var(--color-secondary-light);
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url('../img/hero-fullscreen-bg.jpg') center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: '';
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-fullscreen h2 span {
  color: var(--color-primary);
}

.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }

  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url('../img/hero-bg.png') center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-static h2 span {
  color: var(--color-primary);
}

.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }

  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-static .btn-get-started,
  .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: '';
  background: url('../img/about-bg.png') top left;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-default);
  font-weight: 700;
  font-size: 22px !important;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}

.about .nav-pills {
  border-bottom: 1px solid var(--color-secondary);
}

.about .nav-pills li + li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}

.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 14px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
  max-height: 43px;
}

.clients .swiper-slide img:hover {
}

.swiper-wrapper {
  justify-content: center;
  text-align: center;
}
@media (max-width: 640px) {
  .swiper-wrapper {
    justify-content: unset;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 60px;
}

.cta .container {
  padding: 80px;
  background: rgba(var(--color-secondary-rgb), 0.1);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .cta .container {
    padding: 60px;
  }
}

.cta .content h3 {
  color: var(--color-secondary);
  font-size: 48px;
  font-weight: 700;
}

.cta .content h3 em {
  font-style: normal;
  position: relative;
}

.cta .content h3 em:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.5);
  z-index: -1;
}

.cta .content p {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
}

.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.cta .content .cta-btn:hover {
  background: var(--color-primary);
}

.cta .img {
  position: relative;
}

.cta .img:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

.cta .img:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}

.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}

.onfocus .video-play {
  min-height: 400px;
  background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)),
    url('../img/onfocus-video-bg.jpg') center center;
  background-size: cover;
}

.onfocus .content {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)),
    url('../img/onfocus-content-bg.jpg') center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

.onfocus .content ul {
  list-style: none;
  padding: 0;
}

.onfocus .content ul li {
  padding-bottom: 10px;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.onfocus .content p:last-child {
  margin-bottom: 0;
}

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(var(--color-primary-rgb), 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.onfocus .play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.onfocus .play-btn:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus .play-btn:hover:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary)
    linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary);
}

.features .nav-link.active h4 {
  color: var(--color-white);
}

.features .nav-link.active i {
  color: var(--color-white) !important;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: 30px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--color-primary);
}

.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url('../img/testimonials-bg.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--color-secondary-dark-rgb), 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-yellow);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--color-white-rgb), 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Speech Section
--------------------------------------------------------------*/

.speech .speech-item {
  padding: 20px 10px;
  box-shadow: 0 3px 20px -2px rgba(var(--color-gray-rgb), 0.15);
  background: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}

.speech .speech-header {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)),
    url('/theme/aisummit/img/speech-bg.jpg') center center;
  background-size: cover;
  text-align: center;
  padding: 10px;
  margin: -20px -40px 0;
}

.speech h3 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 36px;
  color: var(--color-white);
}

.speech h4 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 0;
}

.speech h4 sup {
  font-size: 28px;
}

.speech h4 span {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 24px;
}

.speech ul {
  padding: 30px 0;
  list-style: none;
  color: var(--color-gray);
  text-align: left;
  line-height: 20px;
}

.speech ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.speech ul i {
  color: var(--color-secondary);
  font-size: 36px;
  padding-right: 3px;
  line-height: 0;
}

.speech ul .na {
  color: rgba(var(--color-gray-rgb), 0.5);
}

.speech ul .na i {
  color: rgba(var(--color-gray-rgb), 0.5);
  font-size: 24px;
  padding-left: 4px;
}

.speech ul .na span {
  text-decoration: line-through;
}

.speech .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: var(--color-secondary);
  transition: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid var(--color-secondary);
}

.speech .buy-btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.speech .featured {
  border-color: var(--color-secondary);
}

.speech .featured .speech-header {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)),
    url('../img/speech-bg.jpg') center center;
}

.speech .featured .buy-btn {
  background: var(--color-secondary);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .faq {
    padding: 0;
  }
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 40px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: var(--color-white);
  box-shadow: none;
  border-radius: 5px;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--color-primary);
}

.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--color-white);
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: var(--color-primary-light);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  background: var(--color-white);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .meta {
  margin-top: 15px;
}

.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(var(--color-secondary-dark-rgb), 0.7);
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 600px;
}

.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item + .info-item {
  padding-top: 25px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  width: 16%;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}

.contact .php-email-form {
  width: 100%;
  background: var(--color-white);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type='text']:focus,
.contact .php-email-form input[type='email']:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light);
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type='submit'] {
  background: var(--color-primary);
  border: 0;
  padding: 13px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}

.contact .php-email-form button[type='submit']:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-secondary-light);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
  height: 100%;
}

.blog .posts-list article + article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li + li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .posts-list .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .posts-list .read-more a:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.blog .blog-details .meta-bottom i {
  color: var(--color-secondary-light);
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(var(--color-secondary-rgb), 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ',';
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(var(--color-secondary-rgb), 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type='text'] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type='text']:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(var(--color-secondary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: var(--color-secondary-light);
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

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

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

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

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

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

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

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

.footer .footer-content .footer-newsletter form input[type='email']:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type='submit']:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-secondary-dark);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .footer {
    font-size: 12px;
  }
}

.copyright a {
  color: #fff;
}

.sticked .navbar a {
  color: var(--color-default);
}

:root {
  --body-font-family: 'Pretandard', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Neue, Arial, Noto Sans,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --body-font-size: 1rem; /*16px*/
  --body-font-weight: 500;
  --body-line-height: 1.5;
  --body-bg: #fff;
  --body-color: #000;
  --body-letter-spacing: 0;

  --ts-ease: all 0.5s linear;

  --body-text-align: left;

  --font-eng: 'Montserrat', sans-serif;
  --font-all: 'Montserrat', 'Pretandard', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Neue, Arial, Noto Sans,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-kr: 'Pretandard', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;

  --font-size-9: 0.563rem;
  --font-size-10: 0.625rem;
  --font-size-11: 0.688rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.813rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.938rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.313rem;
  --font-size-22: 1.375rem;
  --font-size-24: 1.5rem;
  --font-size-25: 1.563rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.688rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-31: 1.938rem;
  --font-size-32: 2rem;
  --font-size-33: 2.063rem;
  --font-size-34: 2.125rem;
  --font-size-35: 2.188rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-45: 2.813rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-54: 3.375rem;
  --font-size-58: 3.625rem;
  --font-size-59: 3.688rem;
  --font-size-60: 3.75rem;
  --font-size-65: 4.063rem;
  --font-size-70: 4.375rem;
  --font-size-76: 4.75rem;
  --font-size-80: 5rem;
  --font-size-92: 5.75rem;
  --font-size-100: 6.25rem;
  --font-size-116: 7.25rem;
  --font-size-205: 12.813rem;

  --red: #ff0000;
  --red-c91: #c9171a;
  --red-f04: #f04b81;

  --white: #ffffff;

  --black: #000000;
  --black-030: #030303;
  --black-030-50: rgba(3, 3, 3, 0.5);
  --black-262: #262626;

  --grey-ccc: #cccccc;
  --grey-ebe: #ebebeb;
  --grey-e1e: #e1e1e1;
  --grey-e2e: #e2e2e2;
  --grey-dbd: #dbdbdb;
  --grey-d0d: #d0d0d0;
  --grey-e0e: #e0e0e0;
  --grey-e3e: #e3e3e3;
  --grey-e5e: #e5e5e5;
  --grey-f0f: #f0f0f0;
  --grey-f1f: #f1f2f5;
  --grey-f4f: #f4f4f4;
  --grey-f4f9: #f4f4f9;
  --grey-f7f: #f7f7f8;
  --grey-fcf: #fcfcff;
  --grey-606: #606060;
  --grey-6a6: #6a6a6a;
  --grey-707: #707070;
  --grey-8d8: #8d8d8d;

  --blue-000: #000e2a;
  --blue-002: #002cfb;
  --blue-0b3: #0b3dd6;
  --blue-1b4: #1b41ce;
  --blue-1e2: #1e2632;
  --blue-1c2: #1c262b;
  --blue-121: #121f57;
  --blue-186: #186e9a;
  --blue-212: #212529;

  --green-30e: #30e36e;
  --green-33a: #33a23c;

  --min-width: 1300px;
  --con-width: 1300px;

  --dimd--22: rgba(0, 0, 0, 0.22);
  --dimd--50: rgba(0, 0, 0, 0.5);
  --dimd--61: rgba(0, 0, 0, 0.61);

  --font-w-t: 100;
  --font-w-el: 200;
  --font-w-l: 300;
  --font-w-m: 400;
  --font-w-r: 500;
  --font-w-sb: 600;
  --font-w-b: 700;
  --font-w-eb: 900;

  --w-5: 0.313rem;
  --w-10: 0.625rem;
  --w-15: 0.938rem;
  --w-20: 1.25rem;
  --w-25: 1.563rem;
  --w-30: 1.875rem;
  --w-35: 2.188rem;
  --w-40: 2.5rem;
  --w-45: 2.813rem;
  --w-50: 3.125rem;
  --w-55: 3.438rem;
  --w-60: 3.75rem;
  --w-65: 4.063rem;
  --w-70: 4.375rem;
  --w-75: 4.688rem;
  --w-80: 5rem;
  --w-85: 5.313rem;
  --w-90: 5.625rem;
  --w-95: 5.938rem;
  --w-100: 6.25rem;
  --w-105: 6.563rem;
  --w-110: 6.875rem;
  --w-115: 7.188rem;
  --w-120: 7.5rem;
  --w-125: 7.813rem;
  --w-130: 8.125rem;
  --w-135: 8.438rem;
  --w-140: 8.75rem;
  --w-145: 9.063rem;
  --w-150: 9.375rem;
  --w-155: 9.688rem;
  --w-160: 10rem;
  --w-165: 10.313rem;
  --w-170: 10.625rem;
  --w-175: 10.938rem;
  --w-180: 11.25rem;
  --w-185: 11.563rem;
  --w-190: 11.875rem;
  --w-195: 12.188rem;
  --w-200: 12.5rem;
  --w-205: 12.813rem;
  --w-210: 13.125rem;
  --w-215: 13.438rem;
  --w-220: 13.75rem;
  --w-225: 14.063rem;
  --w-230: 14.375rem;
  --w-235: 14.688rem;
  --w-240: 15rem;
  --w-245: 15.313rem;
  --w-250: 15.625rem;
  --w-260: 16.25rem;
  --w-275: 17.188rem;
  --w-280: 17.5rem;
  --w-290: 18.125rem;
  --w-300: 18.75rem;
  --w-305: 19.063rem;
  --w-310: 19.375rem;
  --w-315: 19.688rem;
  --w-320: 20rem;
  --w-330: 20.625rem;
  --w-350: 21.875rem;
  --w-360: 22.5rem;
  --w-340: 21.25rem;
  --w-370: 23.125rem;
  --w-375: 23.438rem;
  --w-380: 23.75rem;
  --w-385: 24.063rem;
  --w-390: 24.375rem;
  --w-400: 25rem;
  --w-405: 25.313rem;
  --w-450: 28.125rem;
  --w-460: 28.75rem;
  --w-500: 31.25rem;
  --w-545: 34.063rem;
  --w-570: 35.625rem;
  --w-600: 37.5rem;
  --w-620: 38.75rem;
  --w-640: 40rem;
  --w-645: 40.313rem;
  --w-700: 43.75rem;
  --w-745: 46.563rem;
  --w-760: 47.5rem;
  --w-780: 48.75rem;
  --w-830: 51.875rem;
  --w-950: 59.375rem;
  --w-965: 60.313rem;

  --min-width: 75rem;
}

#about .tit,
#about .tit {
  background: var(--color-secondary);
  color: var(--color-white);
  height: var(--w-70);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: var(--font-w-sb);
  display: flex;
  justify-content: center;
  align-items: center;
}

#about table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
#about table th,
#about table td {
  padding: var(--w-15) 0;
  text-align: center;
}
#about table td .btn-youtube {
  width: var(--w-155);
  height: 2rem;
  border: 1px solid var(--grey-d0d);
  border-radius: var(--w-10);
  background: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-12);
  font-weight: var(--font-w-sb);
  color: var(--blue-000);
  text-transform: uppercase;
  margin: 0.5rem auto 0;
}
#about table td .btn-youtube i {
  width: 1.5rem;
  height: 1.063rem;
  background: url('../img/ic-youtube.png') no-repeat center;
  font-size: 0;
  background-size: cover;
  margin-right: 0.5rem;
}
#about table td .btn-youtube span {
  color: var(--red-c91);
  margin-right: 0.313rem;
}
#about table td {
  border-bottom: 1px solid var(--grey-d0d);
  text-align: left;
  padding: var(--w-15) var(--w-25);
}
#about table th {
  background: rgba(11, 61, 214, 0.1);
  border-bottom: 1px solid var(--grey-d0d);
}
#about table th:not(:last-child) {
  border-right: 1px solid var(--white);
}
#about table td:not(:last-child) {
  border-right: 1px solid var(--grey-e1e);
}
/*#about table  td:not(.incell):nth-child(1){ text-align: center !important; padding-left:0; padding-right:0}*/
#about table .wd200 {
  width: var(--w-200);
}
#about table .wd300 {
  width: var(--w-300);
}
#about table .wd225 {
  width: calc((100% - 18.75rem) / 4) !important;
}
#about table td.tac {
  text-align: center !important;
  padding-left: 0;
  padding-right: 0;
}
#about table td.tal {
  text-align: left !important;
  padding-left: 10px;
}
#about table td.font-w {
  font-weight: var(--font-w-sb);
}
#about table td.type01 {
  font-size: var(--font-size-16);
  font-weight: var(--font-w-m);
}
#about table td.type02 {
  font-size: var(--font-size-16);
  font-weight: var(--font-w-sb);
  text-align: left;
}
#about table td.type03 {
  font-size: var(--font-size-14);
  text-align: center;
  padding: var(--w-25) 0;
}
#about table td.type04 {
  font-size: var(--font-size-16);
  font-weight: var(--font-w-m);
  text-align: left;
  padding: var(--w-25);
  color: var(--blue-000);
}
#about table td.type04 strong {
  font-weight: var(--font-w-sb);
}
#about table td span,
#about table th span {
  color: var(--blue-0b3);
}
#about table td span.clr-grey {
  color: var(--grey-8d8);
}
#about table td.inr-td {
  padding: 0;
  vertical-align: top;
}
#about table td.inr-td * {
  font-size: var(--font-size-14);
}
#about table td.inr-td .grid {
  width: 100%;
  display: grid;
  gap: 0;
  justify-items: stretch;
  align-items: stretch;
}
#about table td.inr-td .grid.grid2-0 {
  grid-template-rows: 6.094rem 6.094rem;
}
#about table td.inr-td .grid.grid3-0 {
  grid-template-rows: var(--w-65) var(--w-65) var(--w-65);
}
#about table td.inr-td .grid.grid2 {
  grid-template-rows: var(--w-105) var(--w-105);
}
#about table td.inr-td .grid.grid2-1 {
  grid-template-rows: var(--w-120) var(--w-120);
}
#about table td.inr-td .grid.grid3 {
  grid-template-rows: var(--w-80) var(--w-65) var(--w-65);
}
#about table td.inr-td .grid.grid3-1 {
  grid-template-rows: repeat(3, var(--w-80));
}
#about table td.inr-td .grid.grid5 {
  grid-template-rows: repeat(5, 3rem);
}
#about table td.inr-td .grid .itm {
  width: 100%;
  border-bottom: 1px solid var(--grey-d0d);
  display: flex;
  text-align: center;
  position: relative;
  align-items: stretch;
}
#about table td.inr-td .grid .itm div {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about table td.inr-td .grid .itm span {
}
#about table td.inr-td .grid.grid3 .itm {
  padding: 0.5rem 0;
}
#about table td.inr-td .grid .itm:last-child {
  border-bottom: 0;
}
#about table td .row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#about table td .row em {
  width: var(--w-110);
  height: var(--w-30);
  background: rgba(11, 61, 214, 0.1);
  font-size: 1rem;
  color: var(--blue-0b3);
  font-weight: var(--font-w-sb);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  letter-spacing: -0.04rem;
}
#about table td .row p {
  display: inline-flex;
  font-weight: var(--font-w-sb);
  text-align: left;
}
#about table td .row + .row {
  margin-top: 0.313rem;
}
#about .cau {
  width: 100%;
  height: 3.25rem;
  background: var(--grey-f4f9);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue-212);
  margin-top: var(--w-60);
  font-weight: var(--font-w-m);
}
#about .cau span {
  position: relative;
  padding-left: var(--w-15);
}
#about .cau span:before {
  content: '＊';
  color: var(--font-size-16);
  font-weight: var(--font-w-m);
  color: var(--blue-0b3);
  position: absolute;
  top: 3px;
  left: 0;
}

.pc-only {
  display: inline-table;
}
.mobile-only {
  display: none;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none;
  }
  .mobile-only {
    display: inline-table;
  }
}

.tabs-inner {
  width: 100%;
  padding: 0;
  display: none;
}
.tabs-inner.current {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.tabs-inner h3.stitle {
  margin-bottom: var(--w-60);
  font-weight: var(--font-w-b);
  width: 100%;
}
.tabs-inner h3.stitle span {
  font-size: var(--font-size-24);
  display: block;
  color: var(--color-primary);
}
.tabs-inner h3.stitle p {
  margin-top: 10px;
  font-size: var(--font-size-40);
}

.tabs-inner h4.title {
  width: 100%;
  position: relative;
  text-align: left;
  padding-bottom: 0.75rem;
  font-size: var(--font-size-24);
  font-weight: var(--font-w-sb);
  color: var(--bs-heading-color);
  text-transform: none;
}
.tabs-inner h4.title span {
  display: flex;
  width: 4.813rem;
  height: 2px;
  background: var(--blue-0b3);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.tabs-inner h4.title em {
  color: var(--blue-000);
}
.tabs-inner h4.title:after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}

.tabs-inner .left {
  width: 36%;
}
.tabs-inner .left ul.lst {
  margin: 1.125rem 0 var(--w-45) 0;
}
.tabs-inner .left ul.lst li {
  position: relative;
  color: var(--blue-1c2);
  padding-left: 0.75rem;
}
.tabs-inner .left ul.lst li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.tabs-inner .left ul.lst li:before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue-0b3);
  display: inline-flex;
  position: absolute;
  top: 0.625rem;
  left: 0;
}
.tabs-inner .left p.g-txt {
  line-height: 1.5;
  text-align: left;
  color: var(--blue-1c2);
  margin: 1.125rem 0 var(--w-50) 0;
}

.tabs-inner .right {
  width: 60%;
  margin-left: var(--w-50);
}
.tabs-inner .right .pc-block {
  flex-wrap: wrap;
}

.tabs-inner .right .t-title {
  width: 100%;
  height: var(--w-40);
  background: var(--blue-0b3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-16);
  font-weight: 700;
  margin-top: 1rem;
  color: var(--white);
}
.tabs-inner .right .t-title span {
  font-size: var(--font-size-14);
  margin-left: 0.5rem;
  font-weight: var(--font-w-m);
  display: inline-flex;
  font-family: var(--font-kr);
}

.tabs-inner .right table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}
.tabs-inner .right table thead th {
  background: var(--color-secondary) !important;
  color: var(--color-white);
}
.tabs-inner .right table th {
  background: rgba(11, 61, 214, 0.1);
  font-size: var(--font-size-14);
  text-align: left;
  padding-left: 0.875rem;
  height: var(--w-40);
  font-weight: 500;
}
.tabs-inner .right table th:not(:last-child) {
  border-right: 1px solid var(--white);
}
.tabs-inner .right table td {
  text-align: left;
  padding: 0.75rem 0 0.75rem 0.625rem;
  border-bottom: 1px solid var(--grey-dbd);
  line-height: 1.5;
  font-size: var(--font-size-14);
  letter-spacing: -0.04rem;
  font-weight: var(--font-w-m);
}
.tabs-inner .right table td[class*='md0'] {
  cursor: pointer;
}
.tabs-inner .right table td:not(:last-child) {
  border-right: 1px solid var(--grey-dbd);
}
.tabs-inner .right table td span {
  color: var(--grey-8d8);
}
#about table td {
  text-align: center !important;
}
#about table td span,
#about table th span {
  color: var(--grey-8d8);
}

@media all and (max-width: 1279px) {
  .s07-n {
    padding: var(--w-120) 0;
  }
  .sub-content {
    width: 100%;
  }
  h2 {
    margin-bottom: var(--w-70);
  }
  .tabs-wr {
    width: 100%;
    margin: 0 0 var(--w-50);
    overflow-x: auto;
    padding-left: 1rem;
  }
  .tabs {
    display: grid;
    grid-template-columns: repeat(3, var(--w-140));
    gap: 1rem 1rem;
    width: 28.25rem;
    margin-bottom: 0;
  }
  .tabs-wr::-webkit-scrollbar {
    display: none;
  }
  .tabs li {
    width: var(--w-140);
    height: var(--w-110);
    border-radius: 1.5rem;
    font-size: var(--font-size-14);
    overflow: hidden;
  }
  .tabs li:hover,
  .tabs li.current {
    border-radius: 1.5rem;
    font-size: var(--font-size-14);
    background: url('../img/s07-n-tab-bg-m.png') no-repeat center;
    background-size: cover;
  }

  .tabs-inner {
    width: 100%;
    padding: var(--w-50) 1rem 0 1rem;
    display: none;
  }
  .tabs-inner h3.stit {
    margin-bottom: var(--w-40);
  }
  .tabs-inner h3.stit span {
    font-size: var(--font-size-20);
  }
  .tabs-inner h3.stit p {
    font-size: var(--font-size-28);
  }

  .tabs-inner h4.tit {
  }

  .tabs-inner .left {
    width: 100%;
  }
  .tabs-inner .left ul.lst {
    margin: 1rem 0 var(--w-40) 0;
  }
  .tabs-inner .left ul.lst li {
    position: relative;
    color: var(--blue-1c2);
    padding-left: 0.75rem;
    font-size: var(--font-size-16);
  }
  .tabs-inner .left p.g-txt {
    color: var(--blue-1c2);
    margin: 1rem 0 var(--w-40) 0;
  }

  .tabs-inner .right {
    width: 100%;
    margin-left: 0;
  }

  .tabs-inner .right .t-tit {
    width: 100%;
    height: auto;
    min-height: var(--w-40);
    margin-top: 1rem;
    flex-direction: column;
    padding: var(--w-10) 0;
  }
  .tabs-inner .right .t-tit span {
    margin-left: 0;
    display: inline-flex;
  }

  .tabs-inner .right table th {
    text-align: center;
    padding-left: 0;
  }
  .tabs-inner .right table td {
    text-align: left;
    padding: 0.625rem;
  }
  .tabs-inner .right table td.tBd {
    border-top: 1px solid var(--grey-dbd);
  }
  .tabs-inner .right table td.bg {
    background: var(--grey-f4f9);
    text-align: center !important;
  }
  .tabs-inner .right table td[class*='md0'] {
    cursor: pointer;
  }

  .tabs-inner#session01 .right table th:nth-child(1) {
    width: 50%;
  }
  .tabs-inner#session01 .right table th:nth-child(2) {
    width: 50%;
  }

  .tabs-inner .right .mo-block {
    flex-wrap: wrap;
  }
  .tabs-inner .right table.type02 {
  }
  .tabs-inner .right table.type02 + table.type02 {
    margin-top: var(--w-40);
  }
  .tabs-inner .right table.type02 th {
    padding: 0.625rem 0;
    width: 100%;
  }
  .tabs-inner .right table.type02 tr:nth-of-type(1) th {
    width: 100%;
  }
  .tabs-inner .right table.type02 tr:nth-of-type(3) th {
    width: 100%;
  }
  .tabs-inner .right table.type02 th {
    border-bottom: 1px solid var(--grey-d0d);
  }
  .tabs-inner .right table.type02 tr:last-child th {
  }
  .tabs-inner .right table.type02 td {
    text-align: center;
    padding: 1rem;
  }

  .tabs-inner .right table.sub13 {
    margin-top: 0;
  }
  .tabs-inner .right table.sub13 + .t-tit {
    margin-top: var(--w-45);
  }
  .tabs-inner .right table.sub13 th {
    border-bottom: 1px solid var(--grey-dbd);
  }
  .tabs-inner .right table.sub13 td {
  }
  .tabs-inner .right table.sub13 td span {
  }
  .tabs-inner .right table.sub13 td strong {
  }
  .tabs-inner .right table.sub13 td:nth-of-type(1) {
    width: var(--w-80);
  }
  .tabs-inner .right table.sub13 td:nth-of-type(2) {
    width: calc(100% - var(--w-80));
  }
  .tabs-inner .right table.sub13 td:nth-of-type(3) {
  }
  .tabs-inner .right table.sub13 td:nth-of-type(1) {
    text-align: left;
  }
  .tabs-inner .right table.sub13 td:nth-of-type(2) {
    text-align: left;
    line-height: 1.8;
    padding-left: 0.5rem;
  }
  .tabs-inner .right table.sub13 td:nth-of-type(3) {
    text-align: left;
    padding-left: 0.5rem;
  }

  .tabs-inner .right .itm {
    margin-top: 1rem;
    background-size: 4.813rem auto;
  }
  .tabs-inner .right .itm a {
  }
  .tabs-inner .right .itm i {
    width: var(--w-80);
    height: var(--w-80);
    flex-shrink: 0;
  }

  .tabs-inner .right .itm dl {
    margin-left: var(--w-25);
  }
  .tabs-inner .right .itm dl dt {
    font-size: var(--font-size-16);
    margin-bottom: 1rem;
  }
  .tabs-inner .right .itm dd label {
    margin-right: var(--w-25);
  }
  .tabs-inner .right .itm dd em {
    width: 50%;
  }
  .tabs-inner .right .itm:hover {
  }
  .tabs-inner .right .itm + .itm {
    margin-top: 1rem;
  }
}
@media all and (max-width: 786px) {
  .tabs-inner h3.stitle span {
    font-size: var(--font-size-18);
  }
  .tabs-inner h3.stitle p {
    font-size: var(--font-size-22);
  }
  .tabs-inner h4.title {
    font-size: var(--font-size-18);
  }
  .tabs-inner {
    padding-top: 0px !important;
  }
  .tabs-inner h3.stitle {
    margin-bottom: var(--w-20);
  }
  .tabs-inner .right {
    margin-top: 20px;
  }
}

.keynote-wrap {
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 60px;
  margin-bottom: 60px;
}
.keynote-wrap img {
  max-width: 200px;
  margin-right: 30px;
  border: 6px solid rgba(var(--color-black-rgb), 0.15);
}
.keynote-wrap .post-author {
  position: relative;
}
.keynote-wrap .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
  padding: 0;
  color: var(--color-secondary);
}
.keynote-wrap .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  word-break: keep-all;
}

.keynote-wrap blockquote {
  overflow: hidden;
  background-color: rgba(var(--color-secondary-rgb), 0.06);
  padding: 30px;
  position: relative;
  text-align: left;
  margin: 20px 0;
}
.keynote-wrap blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
}
.keynote-wrap blockquote:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}
.keynote-wrap h3 {
  font-size: 20px !important;
  margin: 10px 0 !important;
  font-weight: bold;
}
.keynote-wrap p {
  line-height: 34px;
}
.gray-line {
  margin: 20px 0 30px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.keynote-wrap .keynote-badge {
  position: absolute;
  right: -60px;
  top: -60px;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 14px 30px 12px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .keynote-wrap {
    padding: 20px;
  }
  .keynote-wrap img {
    max-width: 140px;
    margin-right: 10px;
    margin-top: 30px;
  }
  .keynote-wrap .keynote-badge {
    left: 0px;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 8px 0 6px;
    font-size: 16px !important;
  }
  .keynote-wrap .post-author {
    padding-top: 30px;
  }
  .keynote-wrap .post-author h4 {
    margin-top: 20px;
    font-size: 16px;
  }
  .keynote-wrap .post-author p {
    font-size: 14px;
  }
  .keynote-wrap p {
    line-height: 24px;
  }
}
