
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html { font-size: 100%; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
-ms-text-size-adjust: 100%; /* 2 */ }

html, html a { -webkit-font-smoothing: antialiased; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004); }
body { margin: 0; font-family: 'Noto Sans KR', 'Open Sans', 'Nanum Gothic',  gulim, 굴림, sans-serif !important; overflow-x:hidden;}
dl, dt, dd, ul, li {margin:0; padding:0; list-style:none;}
button {border:none;}

: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-blue);
}

.tc {text-align:center;}
.pt20 {padding-top:20px;}
.pt60 {padding-top:60px;}
.pl80 {padding-left:80px;}
.pr80 {padding-right:80px;}
.mt10 {margin-top:10px;}
.mt20 {margin-top:20px;}
.mt40 {margin-top:40px;}
.mr10 {margin-right:10px;}
.mb0 {margin-bottom:0px !important;}
.mb20 {margin-bottom:20px;}
.mb80 {margin-bottom:80px;}
.mb60 {margin-bottom:60px;}
.mb180 {margin-bottom:180px;}
.main-bg-black {background: #282f36;}
.wsp-normal {white-space: normal !important;}
.color-red {color: var(--color-red);}

/*--------------------------------------------------------------
# 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-blue);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-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;
  }
}

@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;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.container-header {max-width:1320px; position:relative;}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}
@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
/*  margin-top: 76px; */
}
.breadcrumbs h2 {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 600;
  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-blue);
  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-blue-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 {
  background: var(--color-white);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary-dark);
  font-family: var(--font-secondary);
}
.header .logo h1 span {
  color: var(--color-blue);
  font-weight: 500;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-blue);
  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-blue-rgb), 0.85);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
 .navbar {position: initial;}
 a.nav-link{white-space: nowrap;}
 .nav-link:focus{padding:12px 20px;}
 
@media (min-width: 1280px) {
  .navbar #newDropdownMobile{display: none;}
  .navbar #mobileMenuDropdown{display: none;}
  /* .nav-outlink a:focus{padding:7px 14px !important;} */
  .navbar {
    padding: 0;
    background-color: #010101;
   /* position: relative; */
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar a.nav-link{white-space: nowrap !important;}
  .navbar li {
     position: relative;
  }
  .navbar a/* , .navbar a:focus */ {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    /* font-family: var(--font-secondary); */
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    /* white-space: nowrap; */
    white-space: normal;

    transition: 0.3s;
     /* position: relative; */
  }
  .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-blue);
  }
  .navbar #newDropdown a:hover:before, .navbar #newDropdown:hover > a:before, .navbar #newDropdown .active:before {
    visibility: hidden;
  }
  .navbar #newDropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 67px;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    transition: 0.3s;
	/* box-shadow: inset 0 1rem 3rem rgb(7 40 64 / 7%), 0 1rem 3rem rgb(7 40 64 / 7%); */
  }
  .navbar #newDropdown ul li {
    min-width: 200px;
  }
  .navbar #newDropdown .m-text {min-width:300px; margin-right:60px;}
  .navbar #newDropdown .m-text a {font-size:14px; font-weight:400;}
  /* 드롭다운 타이틀 내의 작은 글씨 */
  .navbar #newDropdown .sub-title a {text-indent: 20px; font-size:12px; font-weight:400; padding-top: 0;}

  .navbar #newDropdown .m-text dt {font-size:26px; color: var(--color-secondary-dark); font-family: var(--font-secondary);}
  .navbar #newDropdown .m-text a:hover {color: rgba(var(--color-black-rgb), 0.5);}
  .navbar #newDropdown dt {margin-bottom:15px; color: var(--color-blue);}
  .navbar #newDropdown dt a {font-size: var(--bs-body-font-size) !important; color: var(--color-blue) !important; justify-content: normal;}
  .navbar #newDropdown ul dt a i {font-size: var(--bs-body-font-size) !important; margin-right: 5px;}
  .navbar #newDropdown.m-services ul li {
    padding: 0px 5px;
	  min-height:400px;
  }
  .navbar #newDropdown dt.m-2depth {color: var(--color-secondary-dark); font-size:13px; margin-bottom:5px;}
  .navbar #newDropdown ul a {
    padding: 5px 0px;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    color: rgba(var(--color-white-rgb), 0.5);
  }
  .navbar #newDropdown ul a i {
    font-size: 12px;
  }

  .navbar #newDropdown ul dd a i {
    font-size: 15px;
    margin-right: 5px;
    margin-left: 0;
  }
   .navbar #newDropdown ul .active, .navbar #newDropdown ul .active:hover, .navbar #newDropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-blue);
  }
  .navbar #newDropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
/* 드롭다운 메뉴 클릭하면 메뉴 사라지게 하기 */
  .navbar #newDropdown ul.hide {
    display: block;
    position: absolute;
    left: 0;
    top: 67px;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    transition: 0.3s;
  }
  
  .navbar #newDropdown {
    position: static;
  }
  .navbar #newDropdown ul {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(5%, 0);
    padding: 40px;
    width: 90%;
  }
  .navbar #newDropdown ul li {
    flex: 1;
  }
  .navbar #newDropdown ul li a, .navbar #newDropdown ul li:hover > a {
    color: rgba(var(--color-black-rgb), 0.5);
    background: none;
  }
  .navbar #newDropdown ul li a:hover, .navbar #newDropdown ul li .active, .navbar #newDropdown ul li .active:hover {
    color: var(--color-black);
   /* background: var(--color-blue); */
  }
  .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 #newDropdownMobile{display: none;}
  .navbar #mobileMenuDropdown{display: none;}
 /*  .nav-outlink a:focus{padding:7px 14px !important;} */
  .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; */
    white-space: normal;
    transition: 0.3s;
  }
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
  .navbar a.nav-link{white-space: nowrap !important;}
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (min-width: 991px) and (max-width: 1279px) {
/*   .nav-outlink a:focus{padding:7px 14px !important;} */
  .navbar #newDropdownMobile{display: none;}
  .navbar #mobileMenuDropdown{display: none;}
  .navbar #newDropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 67px;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    transition: 0.3s;
	/* box-shadow: inset 0 1rem 3rem rgb(7 40 64 / 7%), 0 1rem 3rem rgb(7 40 64 / 7%); */
  }
  .navbar #newDropdown ul li {
    min-width: 200px;
  }

  .navbar #newDropdown .m-text dt {font-size:18px; color: var(--color-secondary-dark); font-family: var(--font-secondary);}
  .navbar #newDropdown > ul > li:nth-child(1) > dl.m-text > dd > div {font-size:13px !important; font-weight:400 !important;}
  .navbar #newDropdown .m-text {min-width:300px; margin-right:60px;}
  .navbar #newDropdown .m-text a {font-size:12px; font-weight:400;}
  /* 드롭다운 타이틀 내의 작은 글씨 */
  .navbar #newDropdown .sub-title a {text-indent: 15px; font-size:10px; font-weight:400; padding-top: 0;}
  .navbar #newDropdown .m-text a:hover {color: rgba(var(--color-black-rgb), 0.5);}
  .navbar #newDropdown dt {margin-bottom:15px; color: var(--color-blue);}
  .navbar #newDropdown dt a {font-size: 15px !important; color: var(--color-blue) !important; justify-content: normal;}
  .navbar #newDropdown ul dt a i {font-size: var(--bs-body-font-size) !important; margin-right: 5px;}
  .navbar #newDropdown.m-services ul li {
	min-height:400px;
  }
  .navbar #newDropdown dt.m-2depth {color: var(--color-secondary-dark); font-size:13px; margin-bottom:5px;}
  .navbar #newDropdown ul a {
    padding: 5px 0px;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    color: rgba(var(--color-white-rgb), 0.5);
  }
  .navbar #newDropdown ul a i {
    font-size: 12px;
  }

  .navbar #newDropdown ul dd a i {
    font-size: 15px;
    margin-right: 5px;
    margin-left: 0;
  }
   .navbar #newDropdown ul .active, .navbar #newDropdown ul .active:hover, .navbar #newDropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-blue);
  }
  /* wwww */
  .navbar #newDropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar #newDropdown ul.hide {
    display: block;
    position: absolute;
    left: 0;
    top: 67px;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    transition: 0.3s;
  }

  .navbar #newDropdown {
    position: static;
  }
  .navbar #newDropdown ul {
    right: 0;
    padding: 40px;
    display: flex;
  }
  .navbar #newDropdown ul li {
    flex: 1;
  }
  .navbar #newDropdown ul li a, .navbar #newDropdown ul li:hover > a {
    color: rgba(var(--color-black-rgb), 0.5);
    background: none;
  }
  .navbar #newDropdown ul li a:hover, .navbar #newDropdown ul li .active, .navbar #newDropdown ul li .active:hover {
    color: var(--color-black);
   /* background: var(--color-blue); */
  }
  .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;
  }

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

@media (max-width: 991px) {
  .navbar #newDropdownMobile{display: block;}
  .navbar #solutionDropdown{display: none !important;}
  .navbar #dataDropdown{display: none !important;}
  /* .navbar .navbar-nav{display: none !important;} */
  .navbar .navbar-nav.gnb2{display: none !important;}
  .navbar #mobileMenuDropdown{display: block;}
  .navbar-nav{
    overflow-y: scroll;
    height: 100vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.navbar-nav::-webkit-scrollbar {
    display: none; 
}
  .navbar #newDropdown{display: none;}
  .navbar #newDropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 50px !important;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    transition: 0.3s;
    width: 100%;
	/* box-shadow: inset 0 1rem 3rem rgb(7 40 64 / 7%), 0 1rem 3rem rgb(7 40 64 / 7%); */
  }
  /* 생략 */
  #newDropdown > ul > li:nth-child(1), #newDropdown > ul > li:nth-child(1) > dl:nth-child(2) > dd.dropClose > a {display: none;}
  .navbar #newDropdown .m-text {display: none;}

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

  /* 4가지 카테고리 */
  .navbar #newDropdown ul dt a i {margin-right: 5px;}
  .navbar #newDropdown ul li:nth-child(2) dt a {margin-top: 15px;}
  .navbar #newDropdown ul dt a {font-size: 16px; color: #358bfe;padding-top: 9px; display: inline-block;}
  /* 제품들 */
  .navbar #newDropdown ul li dl dt, .navbar #newDropdown ul li dl dd {
    display: block; 
  }
  
  .navbar a/* , .navbar a:focus  */{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #f8f9fa;
    /* white-space: nowrap; */
    white-space: normal;
    transition: 0.3s;
  }
  .navbar #newDropdown ul li dl dd{
    display: block;
  }
  .navbar #newDropdown ul li dl dd a {
    padding-top: 5px;
    font-size: 13px !important; 
    text-align: left;
  }
  .navbar #newDropdown ul li dl dd a i{
    margin-left: 1px;
    margin-right: 4px;
  }
  .navbar #newDropdown ul li dl dd a:hover {color: #000000 !important;}

  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .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 #newDropdown ul.hide {
    display: none;
	/* box-shadow: inset 0 1rem 3rem rgb(7 40 64 / 7%), 0 1rem 3rem rgb(7 40 64 / 7%); */
  }
  .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    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);
  }

  .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-section-wrapper-3 {   
	position: relative;
    z-index: 1;
    background-position: top center;
}
.hero-section-wrapper-3 .shapes .shape.shape-1 {
    top: 20%;
    left: 5%;
}
.hero-section-wrapper-3 .shapes .shape {
    position: absolute;
    z-index: -1;
}
.hero-section-wrapper-3 .shapes .shape.shape-2 {
    top: 50%;
    left: 8%;
}
.hero-section-wrapper-3 .shapes .shape.shape-3 {
    top: 48%;
    left: 25%;
}
.hero-section-wrapper-3 .shapes .shape.shape-4 {
    bottom: 5%;
    left: 25%;
}
.hero-section-wrapper-3 .shapes .shape.shape-5 {
    top: 10%;
    right: 5%;
}
.hero-section-wrapper-3 .shapes .shape.shape-6 {
    top: 50%;
    right: 25%;
}
.hero-section-wrapper-3 .shapes .shape.shape-7 {
    bottom: 15%;
    right: 25%;
}
.hero-section-wrapper-3 .shapes .shape.shape-8 {
    bottom: 10%;
    right: 10%;
}

.hero-animated {
  width: 100%;
  min-height: 80vh;
  background: url("../img/hero-bg.png") center center;
  /* background: url("../img/hero-carousel/hero-bg.svg") center center; */
 
  background-size: cover;
  position: relative;
  padding: 120px 0 0px;
}
.hero-animated h2 {
  width: 70%;
  margin: 60px 0 20px 0;
  font-size: 42px;
  font-weight: 600;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-animated h2 span {
  color: var(--color-blue);
}
.hero-animated p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  /* box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15); */ 
}
@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100% !important;}
  .hero-animated .animated {
    max-width: 80%;
  }
}
.hero-animated .btn-get-started {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-blue);
  font-family: var(--font-secondary);
}
.hero-animated .btn-get-started:hover {
  background: rgba(var(--color-blue-rgb), 0.8);
  color: var(--color-white);
}
.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-blue);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-animated .btn-watch-video:hover {
  color: var(--color-blue);
}
.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-blue-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;
  }
}

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

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  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;
}
@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}
.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  -webkit-animation: fadeInDown 1s both 0.2s;
  animation: fadeInDown 1s both 0.2s;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}
.hero p {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .img {
  margin-bottom: 40px;
  -webkit-animation: fadeInDownLite 1s both;
  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;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
.hero .btn-get-started:hover {
  background: var(--color-blue);
  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 {
  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-blue);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  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);
  }
}
@-webkit-keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 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-blue);
}
.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-blue);
  font-family: var(--font-secondary);
}
.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-blue-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-blue);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-blue);
}
.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-blue-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-blue);
}
.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-blue);
  font-family: var(--font-secondary);
}
.hero-static .btn-get-started:hover {
  background: rgba(var(--color-blue-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-blue);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-static .btn-watch-video:hover {
  color: var(--color-blue);
}
.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-blue-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-blue);
  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-blue);
}

/*--------------------------------------------------------------
# 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-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.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-blue);
  background: none;
  border-bottom: 3px solid var(--color-blue);
}
@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-blue);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 60px 0 60px 0;
}
.clients .swiper-slide img {
  opacity: 0.6;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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-blue-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-blue-dark-rgb), 0.9);
}
.cta .content .cta-btn:hover {
  background: var(--color-blue);
}
.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;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03a3c;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}

.section-bg1 {
  padding: 250px 0;
  color: #fff;
}
.section-bg1:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.main-text {width:80%; margin-left:10%; text-align:center;}
.main-text p {font-weight:300; color:#fff;}

.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); 
  */
  background: #282f36;
  padding: 40px;
}

.onfocus.call .content h3 {
	font-weight: 500;
    line-height: 1.6em;
    font-size: 24px;
}
.onfocus.call  .content {padding:120px 0;}
.onfocus.call .btn-get-started {
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-blue);
    font-family: var(--font-secondary);
}
 .btn-get-started:hover {
  background: rgba(var(--color-blue-rgb), 0.8);
  color: var(--color-white);
}
.onfocus.call .line-btn.buy-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    color: var(--color-white);
    transition: none;
    font-size: 18px;
    transition: 0.3s;
    border: 1px solid var(--color-white);
}
.onfocus.call .line-btn.buy-btn:hover {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 160px 0px;
	font-weight:300;
  }
}
.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom:40px;
  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-blue);
}
.read-more {padding-top:20px;}
.read-more a {font-weight:500;}
.onfocus .content p:last-child {
  margin-bottom: 0;
}
.read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

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

.onfocus .content .read-more {
  font-family: var(--font-blue);
  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-blue);
}
.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-blue-rgb), 0.9);
  padding-right: 19px;
}
.onfocus .content .read-more:hover i {
  margin-left: 10px;
}
/*
.read-more {
  font-family: var(--font-blue);
  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-blue);
}
.read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.read-more:hover {
  background:rgba(var(--color-blue-rgb), 0.8);
  color: var(--color-white);
  padding-right: 19px;
}
.read-more:hover i {
  margin-left: 10px;
}
*/

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-blue) 50%, rgba(var(--color-blue-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;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-blue-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;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-blue);
  transform: scale(20);
}

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features p {margin-bottom:40px; font-weight:300;}
.features .img-fluid {box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);}
.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: 18px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}
.features .nav-link:hover {
  color: var(--color-blue);
}
.features .nav-link.active {
  transition: 0.3s;
  /* background: var(--color-secondary) linear-gradient(rgba(var(--color-blue-rgb), 0.95), rgba(var(--color-blue-rgb), 0.6)); */
  background:  var(--color-blue);
  border-color: var(--color-blue);
}
.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 .active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.features h3 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom:20px;
  color: var(--color-secondary);
}
.features ul {
  list-style: none;
  padding: 0;
}
.features ul li {
  clear:both;
  padding-bottom: 10px;
  font-weight:300;
}
.features ul i {
  float:left;
  font-size: 20px;
  margin-right: 10px;
  color: var(--color-blue);
}

.features table ul i {
  float:left;
  font-size: 15px;
  margin-right: 5px;
  color: var(--color-blue);
}

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

/* .features .row {margin-bottom:180px;} */
.business .features .row {margin-bottom:80px;}
.documents .features .row {margin-bottom:40px;}
.use_cases .features .row {margin-bottom:0px;}
.data .features .row {margin-bottom:0px;}


@media (max-width: 992px) {
  .features .pl80  {
    padding-left:0;
	margin-top:40px;
  }
   .features .pr80  {
    padding-right: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: -100px 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-blue);
  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-blue);
}
.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-blue);
}
.services .service-item:hover .details .icon i {
  color: var(--color-blue);
}
.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%;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: rgba(var(--color-secondary-rgb), 0.04);
}
.pricing .pricing-item {
  padding: 60px 40px;
  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: 4px solid var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}
.pricing .pricing-header {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)), url("../img/pricing-bg.jpg") center center;
  background-size: cover;
  text-align: center;
  padding: 40px;
  margin: -60px -40px 0;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 36px;
  color: var(--color-white);
}
.pricing h4 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-blue);
  margin-bottom: 0;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 24px;
}
.pricing ul {
  padding: 30px 0;
  list-style: none;
  color: var(--color-gray);
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing ul i {
  color: var(--color-blue);
  font-size: 36px;
  padding-right: 3px;
  line-height: 0;
}
.pricing ul .na {
  color: rgba(var(--color-gray-rgb), 0.5);
}
.pricing ul .na i {
  color: rgba(var(--color-gray-rgb), 0.5);
  font-size: 24px;
  padding-left: 4px;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: var(--color-blue);
  transition: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid var(--color-blue);
}
.pricing .buy-btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.line-btn.buy-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  color: var(--color-blue);
  transition: none;
  font-size: 18px;
  transition: 0.3s;
  border: 1px solid var(--color-blue);
}
.line-btn.buy-btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.pricing .featured {
  border-color: var(--color-blue);
}
.pricing .featured .pricing-header {
  background: linear-gradient(rgba(var(--color-blue-rgb), 0.9), rgba(var(--color-blue-rgb), 0.9)), url("../img/pricing-bg.jpg") center center;
}
.pricing .featured .buy-btn {
  background: var(--color-blue);
  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-blue);
  border-bottom: 0;
  box-shadow: none;
}
.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-blue);
}
.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--color-blue);
}
.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-flters li:hover, .portfolio .portfolio-flters li.filter-active {
  color: var(--color-blue);
}
.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-item {
  position: relative;
  border: 1px solid var(--color-white);
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-item img {
  transition: all 0.3s;
}
.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(var(--color-secondary-rgb), 0.8);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 20px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-white);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.portfolio .portfolio-item:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}

/*--------------------------------------------------------------
# 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-blue);
  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-blue-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-blue);
}
.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-blue);
}
.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: 400px;
}
.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: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.contact .info-item i {
  font-size: 24px;
  color: var(--color-blue);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  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);
  -webkit-animation: animate-loading 1s linear infinite;
  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-blue);
  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-blue-rgb), 0.85);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@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-blue);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-blue);
}
.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;
}

/*--------------------------------------------------------------
# inner-page
--------------------------------------------------------------*/
.inner-page {    
  background: var(--bs-dark);
  color: var(--color-white);
  margin-top: 77px;
}
.inner-page .section-header h2{
color: var(--color-white);
}
.inner-page .section-header {
  text-align:left;
 }
.inner-page .col-xl-5 {align-self: center;}
.products .tab-content>.tab-pane {margin-bottom:120px;}

@media (min-width: 1280px) {

.inner-page .section-header p {
max-width: 100%;
color: var(--color-white);
}

}


/*--------------------------------------------------------------
# scrollmenu
--------------------------------------------------------------*/
#scrollmenu.scroll-menu {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 62px;
    text-align: center;
    display: none;
    background: #fff;
    border-bottom: 1px solid #010101;
}
#navi {
    /* top: 180px; */
    position: -webkit-sticky;
    position: sticky;
    margin: 0;
}
.scroll-nav li {
    width: 10%;
    float: left;
    line-height: 40px;
}

#navi li a.current {
    color: #358bfe;
    margin-left: 20px;
    position: relative;
}
#navi li a.current:after {
    position: absolute;
    top: 50%;
    left: -24px;
    width: 20px;
    height: 2px;
    content: '';
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #358bfe;
}


/*--------------------------------------------------------------
# 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: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  text-align:left;
 /* text-transform: uppercase; */
}
.footer .footer-content .footer-info h3 span {
  color: var(--color-blue);
}
.footer .footer-content .footer-info p {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-blue);
  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-blue);
  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-blue);
  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-blue-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-blue-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-blue);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Products & Services
--------------------------------------------------------------*/
.num_img img {
    height: 25px;
}
.num_img {
    vertical-align: bottom;
    padding-right: 10px;
}


table.data-table {
	width:100%;
	font-size:14px;
	border-spacing: 0;
    clear: both;
    border-collapse: collapse;
	background: #fff;
	border: 1px solid #485664;
}
.data table.data-table td {
	width:70%;
}

table.data-table td {
	vertical-align:top;
}

.documents table.data-table td {
	vertical-align:middle;
}

.products table.data-table td:first-child {
vertical-align:middle;
}

table.data-table td, table.data-table th {
	border: 1px dotted #adb5bd;
	/* border: 1px solid #adb5bd; */
	white-space: nowrap;
	padding: 10px;
}
table.data-table tr > th {
    padding: 10px 8px !important;
    background: var(--color-secondary);
	color: var(--color-white) !important;
	/* border: 1px solid #adb5bd; */
	border-collapse: separate !important;
	font-weight:500;
	text-align:center;
}

.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: #f7fafc!important;
}

.data .table-striped > tbody > td:nth-of-type(odd) {
	background-color: #f7fafc!important;
}

.striped {
	background-color: #f7fafc!important;
}

p a {font-weight:600; text-decoration:underline;}
p a:hover {font-weight:600; text-decoration:underline;}

.data .container h3 {text-align:center;}
.data .container ul li {text-align:left;}
.data .container table {text-align:left;}

.btn-get-started {
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-blue);
    font-family: var(--font-secondary);
}
 .btn-get-started:hover {
  background: rgba(var(--color-blue-rgb), 0.8);
  color: var(--color-white);
}

.section-bg-gray {
    background: rgba(var(--color-secondary-rgb), 0.04);
}

.use_cases  .features dt {
	margin-bottom:10px;
}
.use_cases .features dd {
	margin-bottom:40px;
}

.tag {
padding:5px 10px; 
border-radius:5px;
width: max-content;
display:inline-block;
}

.tag-r  {
padding:5px 10px; 
border-radius:50px;
width: max-content;
}

.tag-gray {
background: rgba(var(--color-black-rgb), 0.04);
color: var(--color-black);
}

.tag-red {
background: rgba(var(--color-red-rgb), 0.04);
color: var(--color-red);
}

.tag-blue {
background: rgba(var(--color-blue-rgb), 0.04);
color: var(--color-blue);
}

.tag-indigo {
background: rgba(var(--color-indigo-rgb), 0.04);
color: var(--color-indigo);
}

.tag-teal {
background: rgba(var(--color-teal-rgb), 0.04);
color: var(--color-teal);
}

caption {position:absolute; margin-top:-99999px; *display:none;}

.btn-default {
	color: var(--color-black);	
    font-size: 12px;
    padding: 4px 6px;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
	background: var(--color-white);
    display: inline-block;
    transition: 0.3s;
	text-decoration:none;
	border-radius: 2px;
}

/*
.btn-default.active {
	border: 1px solid var(--color-blue);
	color: var(--color-blue);
}
*/

.btn-default:hover {
	text-decoration:none;
	border: 1px solid var(--color-blue);
}

.disabled {
background: rgba(var(--color-black-rgb), 0.04);
color: var(--color-secondary-light);
}
.disabled:hover {
color: var(--color-secondary-light);
border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
}

/*--------------------------------------------------------------
# 상담 예약
--------------------------------------------------------------*/
.box-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
  background-color: #ffffff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.6s ease;
}

.box-collapse .title-box-d {
  padding-top: 30px;
  padding-left: 60px;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: .3s;
}

.box-collapse-wrap {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 6.5rem;
  bottom: 5rem;
  padding-left: 60px;
  padding-right: 60px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
  transition: opacity 0.5s 0.5s ease, -webkit-transform 0.5s 0.5s ease;
  transition: transform 0.5s 0.5s ease, opacity 0.5s 0.5s ease;
  transition: transform 0.5s 0.5s ease, opacity 0.5s 0.5s ease, -webkit-transform 0.5s 0.5s ease;
}

.box-collapse-open .click-closed {
  visibility: visible;
}

.box-collapse-open .box-collapse {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  opacity: 1;
}

.box-collapse-open .box-collapse .title-box-d {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.box-collapse-open .box-collapse-wrap {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.box-collapse-closed .box-collapse {
  opacity: .7;
  transition-delay: 0s;
}

.box-collapse-closed .box-collapse .title-box-d {
  opacity: 0;
  transition-delay: 0s;
}

.box-collapse-closed .box-collapse .form-a {
  opacity: 0;
  transition-delay: 0s;
}

.click-closed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 1035;
  background-color: #000000;
  opacity: .4;
}

.close-box-collapse {
  position: absolute;
  z-index: 1050;
  top: 1rem;
  font-size: 3.5rem;
  line-height: 1;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.right-boxed {
  right: 4.2857rem;
}

.title-box-d .title-d {
    font-weight: 600;
    font-size: 2rem;
}

.form-a label {
    color: #000000;
    position: relative;
	margin-bottom: 0.2rem;
}

.form-a .form-control {
    border-radius: 0;
    font-size: .9rem;
    font-weight: 300;
}

.biz-company a {color:#fff; font-size:18px;}
.biz-company div {margin-bottom:10px;}
.biz-company a img {height:22px;}

.box-collapse .form-group {margin-bottom:0.5rem;}

@media (min-width: 768px) {
  .box-collapse {
    width: 50%;
  }
 }

 @media (max-width: 575px) {
  .box-collapse .title-box-d {
    left: 35px;
  }

  .box-collapse .title-box-d .title-d {
    font-size: 1.3rem;
  }
}



/* new gnb */
.dropdown-menu.nav-data-box{padding:0 !important;margin:0; border-top:0 !important; top:65px;}
.nav-data-box{width:260px; position: absolute; background:#fff;display: none;}
.data-group{min-width:200px; padding:15px 0px;border-left: 1px solid #eee;}
.data-group:first-child{border-bottom:1px solid #ecedf3;}
a.data-item{color:#131313 !important; font-size:14px; white-space: nowrap;}
a.data-item:hover{color:rgb(0, 136, 232) !important; }
a.data-menu{cursor:pointer; padding-bottom:0;}
a.data-menu h6{color:rgb(0, 136, 232); font-size: 12px; margin-bottom:5px;}


.nav-solution{width:100%; background:#fff; position:fixed; top:77px;right: 50%;transform: translateX(50%);box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); display:none;}
.nav-flex-box{width:auto; background:#fff; position:fixed; top:77px;right: 50%;transform: translateX(50%);box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); display:none;}
.nav-flex-box>div.d-flex{height: 100%;}
.nav-inbox{width:260px; background:#23252d; padding: 25px;}
.nav-inbox h3{color:#fff;}
.nav-inbox p{color:#fff;}
.nav-inbox.gray{background:#f7f8fb;}
.inbox-desc{display: flex; flex-direction: column; align-items: flex-start;justify-content: center; height:100%;}
/* .solution-desc{width:100%; max-width:1300px; display:flex; flex-direction: column; align-content: flex-start !important;}
.solution-desc a{padding:20px 25px; display:flex;flex-direction: column; align-items: flex-start; }
.solution-desc h3{font-size:20px;}
.solution-desc p{font-size:14px !important; color:#888; margin-bottom:0;} */
.nav-app{width:auto; padding:0;}
.nav-category-group{display:flex; flex-direction: column;align-items: flex-start; border-left: 1px solid #eee; padding:12px 8px; min-width:260px;}
.nav-category-group ul{flex-direction: column; align-items: flex-start;}
.nav-outlink{padding:20px 10px;width:100%; max-width:1300px;}
.nav-app>ul{align-items: flex-start; flex-direction: column;width:25%;}
.nav-app>ul>li{width:100%;}
.nav-app .app-desc>a{align-items: flex-start; justify-content: flex-start; flex-direction: column; padding: 7px 14px;}
.nav-app .app-desc h3{font-size:13px; font-weight:500; color:rgb(0, 136, 232); margin-bottom:5px;}
.nav-app .app-desc:hover h3{transition: 0.2s ease; opacity: 0.7;}
.nav-app .app-desc:hover h3 span{margin-left:7px; transition: 0.2s ease; opacity: 0.8;}
.nav-app .app-desc:hover p{transition: 0.2s ease; opacity: 0.8;}
.nav-app .app-desc p{font-size:12px !important; color:#888; line-height:1.4em; margin-bottom:0;}
.nav-outlink>ul{align-items: flex-start; flex-direction: column;width:25%;}
.nav-outlink>ul>li{width:100%;}
.nav-outlink>ul>li>a{align-items: flex-start; justify-content: space-between;flex-direction: column; padding:7px 14px;transition:0.3s !important; }
.nav-outlink>ul>li>a>h5{color:#565656; font-size:13px; margin-bottom:0; font-weight:500;transition:0.3s !important;}
.nav-outlink>ul>li>a>p{font-size:12px !important; color:#888; margin-bottom:0;line-height:1.4em;padding:7px 0;}
.app__solution{width:100%; align-items: flex-start !important; justify-content: flex-start !important; transition:0.3s !important; padding: 10px 14px !important;}
.app__solution img{width:32px; border-radius:6px; margin-right:12px;}
.app__solution h5{font-size:14px; transition:0.3s;}
.app__solution p{font-size:12px !important; color:#888; margin-bottom:0; line-height:1.4em;}
.app__solution:hover{border-radius:6px; background:#f4f5f9;}
.app__solution:hover h5{color:#007bff;}
.nav-outlink>ul>li>a:hover{border-radius:6px;background:#eff0f5;}
.nav-outlink>ul>li>a:hover h5{color:#007bff;}
.pdf__badge{background:#def0ff; color:rgb(0, 136, 232); font-size:11px; padding:0px 7px; border-radius:10px; font-weight:300;}
.ml5{margin-left:5px;}
.mb14{margin-bottom:14px;}
.intro__solution{display:flex; justify-content: flex-start !important; flex-direction: row !important; align-items: stretch !important;border:1px solid #e1e1e1; border-radius:4px; padding:0 !important;}
.intro__solution>div{padding:10px 14px;}
.intro__solution>div:first-child{border-right:1px solid #e1e1e1;display:flex;align-items: center;background: #f4f4f9;}
.intro__solution img{width:30px;}
.intro__solution h5{color: #565656;font-size: 13px;font-weight: 500;transition: 0.3s !important;}
.intro__solution p{font-size:12px !important; color:#888; margin-bottom:0; line-height:1.4em;}





@media (max-width: 991px) {
  .app__solution{display: flex !important; flex-direction: row !important; padding:20px !important;}
  .app__solution:hover{display: flex !important; flex-direction: row !important; background: #1e1e20 !important;border-radius: 0;}
  .app__solution h5{color:#fff; margin:0;}
  .app__solution:hover h5{color:#fff !important;}
  .app__solution p{color:#aaa;}

  .intro__solution{display:flex!important; justify-content: flex-start !important; flex-direction: row !important; align-items: stretch !important;border:0; border-radius:4px; padding:0 !important; }
  .intro__solution>div{padding:0;}
  .intro__solution>div:first-child{border-right:0; display:flex;align-items: center;background: inherit;}
  .intro__solution img{margin-right:14px;}
  .intro__solution h5{color: #fff;font-size: 12px;font-weight: 500;transition: 0.3s !important;}
  .intro__solution p{font-size:12px !important; color:#aaa; margin-bottom:0; line-height:1.4em;}
  .pdf__badge{background: rgb(71 71 75);color: #d9dfe3;}
 }