/*****************************************
 JTMOTION LAB - ALEX AI written 2025
******************************************/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body, p {
	color: #53575a; 
	font: 300 1rem/1.625rem 'Noto Sans KR', 'Poppins', 'Open Sans', 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    overflow-x: hidden;
}

a {
	color: #53575a;
	text-decoration: none;
}

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

h1 {
	color: #161223;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h2 {
	color: #161223;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "Poppins"
}

h3 {
	color: #161223;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins"
}

h4 {
	color: #161223;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins"
}

h5 {
	color: #161223;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins"
}

h6 {
	color: #161223;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins"
}


.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
    margin-bottom: 1rem;
	border: 1px solid #5050ff;
	border-radius: 4px;
	background-color: #5050ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
    min-width: 198px;
    margin-right: 1rem;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #5050ff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
    cursor: pointer;
}
.btn-solid-sm {
	display: inline-block;
    text-align: center;
	padding: 0.82rem;
    margin: 0;
	border: 1px solid #5050ff;
	border-radius: 12px;
	background-color: transparent;
	color: #5f6cff;
	font-weight: 500;
	font-size: 0.76rem;
	line-height: 0;
	text-decoration: none;
    min-width: 120px;
	transition: all 0.2s;
}

.btn-solid-sm:hover {
	background-color: #5050ff;
	color: #ffffff; 
	text-decoration: none;
    cursor: pointer;
}
.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #5f6cff;
	border-radius: 4px;
	background-color: transparent;
	color: #5f6cff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
    min-width: 198px;
    margin-right: 1rem;
}

.btn-outline-lg:hover {
	background-color: #5050ff;
	color: #ffffff;
	text-decoration: none;
    cursor: pointer;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #161223;
	border-radius: 4px;
	background-color: transparent;
	color: #161223;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #161223;
	color: #ffffff;
	text-decoration: none;
}

.btn-round {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border-radius: 50px;
  color: #5f6cff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  transition: all 0.2s;
  border: 1px solid #5050ff;
  min-width: 198px;
}

.btn-round:hover {
  background: #5050ff;
  color: #fff;
}
.btn-solid-round {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  transition: all 0.2s;
  background: linear-gradient(to right, #8700ff, #00adff);  
  min-width: 198px;
}

.btn-solid-round:hover {
  background: linear-gradient(to left, #8700ff, #00adff); 
  color: #fff;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #5050ff;
	border-radius: 4px;
	background-color: #5050ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #5050ff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}


form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-textarea {
	display: block;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #5050ff;
	border-radius: 4px;
	background-color: #5050ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #5050ff;
	background-color: transparent;
	color: #5050ff;
}
.round {
    width:10px;
    height: 10px;
    margin-right: 5px;
    border-radius: 50%;
    display: inline-block;
}
.round-text {
    padding: 3px 12px 5px 12px;
    text-align: center;
    line-height: 1.125rem;
    font-size: 0.875rem;
    margin-right: 5px;
    border-radius: 9999px;
    display: inline-block;

}
.newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e6edfc;
  border-bottom: 1px solid #e6edfc;  
}

.newsletter h4 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 2rem;
  font-weight: 700;
  color: #012970;
  word-break: keep-all;
}
.wordbreak-lg {
    word-break: keep-all;
}

/* 이미지 둥둥 떠있는 amimation */
.floating {
    position: relative;
    animation: float 10s ease-in-out infinite;
}

@media (max-width: 576px) {
   .btn-solid-lg, .btn-outline-lg {
    margin-right: 0;
    margin-bottom: 1rem;
  }
   .wordbreak-sm {
    word-break: keep-all;
}
}
@media (max-width: 1200px) {
	.header .btn-solid-lg, .header .btn-outline-lg {
		padding: 1.875rem 3rem;
		font-size: 1rem;
	}
}

@keyframes float {
    0% { transform: translateY(0);}
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* 깜빡이는 amimation */
@keyframes blink { 
    0%, 100% {
    background-color: var(--circle-color); }
    50% { 
    background-color: transparent; }
}
.blinking {
  display: inline-block; 
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: blink 3s infinite;
}
.narrow {
    letter-spacing: -0.05rem;
}
/* 컬러 색상 */
.key {color: #5050ff !important;}
.blue {color: #368AFF !important;}
.orange {color:#e88213 !important;}
.green {color:#1ab72c !important;}
.pink {color:#dd4ab0 !important;}
.purple {color:#A465FD !important;}
.midpurple {color:#5050ff !important;}
.darkpurple {color:#6b2ce5 !important;}
.lightpurple {color:#c2cbf2 !important;}
.darkblue {color: #0245bc !important;}
.verydarkblue {color: #012970 !important;}
.gblue {color: #009ca8 !important;}
.lightblue {color: #e6edfc !important;}
.bluegreen {color:#17c6c6 !important;}
.ygreen {color:#98bc15 !important;}
.midgreen {color:#71d377 !important;}
.white {color:#fff !important;}
.black {color:#000 !important;}
.grey {color:#bbb !important;}
.gradient-text {background: linear-gradient(to right, #8c28ff, #3264ff);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;}

/* 배경 컬러 색상 */
.b-white {background-color:#fff;}
.b-black {background-color:#000;}
.b-blueblack {background-color: #061f44;}
.b-darkblack {background-color:#161223;}
.b-dark {background-color:#012970;}
.b-value {background-color:#061f44;}
.b-purple {background-color:#A465FD;}
.b-midpurple {background-color:#c8b2ea;}
.b-darkpurple {background-color:#6b2ce5;}
.b-lightpurple {background-color:#c2cbf2;}
.b-blue {background-color: #368AFF;}
.b-midblue {background-color: #c4e6f5;}
.b-darkblue {background-color: #0245bc;}
.b-lightblue {background-color: #e6edfc;}
.b-light {background-color: #f0f4fc;}
.b-verylight {background-color: #fafbff;}
.b-pink {background-color:#dd4ab0;}
.b-orange {background-color:#e88213;}
.b-green {background-color:#1ab72c;}
.b-midgreen {background-color:#d3eba3;}
.b-bluegreen {background-color:#17c6c6;}
.b-ygreen {background-color:#98bc15;}
.b-gradient0 {background: linear-gradient(to right, rgba(140, 40, 255, 1), rgba(50, 100, 255, 1)); }
.b-gradient1 {background: linear-gradient(to right, rgba(140, 40, 255, 0.6), rgba(114, 57, 255, 0.6)); }
.b-gradient2 {background: linear-gradient(to right, rgba(114, 57, 255, 0.6), rgba(87, 76, 255, 0.6)); }
.b-gradient3 {background: linear-gradient(to right, rgba(87, 76, 255, 0.6), rgba(50, 100, 255, 0.6)); }
.b-gradient4 {background: linear-gradient(to right, rgba(140, 40, 255, 1), rgba(114, 57, 255, 1)); }
.b-gradient5 {background: linear-gradient(to right, rgba(114, 57, 255, 1), rgba(87, 76, 255, 1)); }
.b-gradient6 {background: linear-gradient(to right, rgba(87, 76, 255, 1), rgba(50, 100, 255, 1)); }
/* 테두리 색상 */
.bd-key {border: solid #5050ff;}
.bd-blue {border: solid #368AFF; }
.bd-orange {border: solid #e88213; }
.bd-green {border: solid #1ab72c; }
.bd-pink {border: solid #dd4ab0; }
.bd-purple {border: solid #A465FD; }
.bd-midpurple {border: solid #5050ff; }
.bd-ygreen {border: solid #98bc15; }
.bd-verydarkblue {border: solid #012970; }
.bd-grey {border: solid #aaa; }

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 0.875rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #5050ff;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 2.375rem;
  line-height: 2.625rem;
  font-weight: 700;
  color: #012970;
}

.h2-heading {
	margin-bottom: 1.125rem;
    text-align: center;
    color: #012970;
    font-weight:800;
    font-size: 2.375rem;
    line-height: 2.625rem;
}
.p-heading {
	margin-bottom: 4rem;
	text-align: center;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    word-break: keep-all;
}
.h3-heading {
    text-align: center;
    color: #012970;
    font-weight:700;
    font-size: 2rem;
    line-height: 2.375rem;
}
.h4-heading {
    text-align: center;
    color: #012970;
    font-weight:700;
    font-size: 1.5rem;
    line-height: 2rem;
}


@media (min-width: 992px) {
	.h2-heading, .h3-heading, h4-heading {
		width: 48rem;
		margin-right: auto;
		margin-left: auto;
	}
	.section-header p {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 768px) {
  section {  
  padding: 40px 0;
  }
  .section-header p {
    font-size: 1.5rem;
    line-height: 2rem; 
  }
  .lan-select {
    margin: 0 5px;
    }
  .h2-heading {
      font-size: 1.7rem;
      letter-spacing: 0.02rem;
      line-height: 2.2rem;
      word-break: keep-all;
    }
  .h3-heading {
      font-size: 1.5rem;
    }
   .h4-heading {
      font-size: 1.5rem;
    }
   .p-heading {
	margin-bottom: 2rem;
}
    .p-small {
    font-size: 0.875rem;
}
}

/*--------------------------------------------------------------
# language custom select / 언어선택바
--------------------------------------------------------------*/
.lan-select {
  position: relative;
  display: inline-block;
  width: 120px;
  user-select: none;
  font-size: 0.875rem;
  color: #012970;
  margin: 0 20px;
}

.select-selected {
  border: 1px solid #5f6cff;
  padding: 2px 12px 3px 12px;
  color: #5f6cff;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.select-selected::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 12px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #5f6cff;
  transform: translateY(-50%);
}

.select-items {
  position: absolute;
  background-color: white;
  border: 1px solid #5f6cff;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 150px;
  overflow-y: auto;
  border-radius: 0 0 6px 6px;
}

.select-items div {
  padding: 8px 12px;
  cursor: pointer;
  color: #012970;
}

.select-items div:hover {
  background-color: #e6ecff;
}

/* 숨기기용 */
.select-hide {
  display: none;
}

@media (max-width: 768px) {
.select-selected {
    margin-top: 10px;
}
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 1.75rem;
  font-weight: 500;
}

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

.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #5050ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 1.5rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-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 {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;    
}

.header.header-scrolled {
  background: #061f44;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
    width: 100px;
	height: 32px;
    margin-left: 10px;
    margin-right: 20px;
}

@media (max-width: 991px) {
  .header .logo img {
    width: 70px;
  }
  .header {
  padding: 20px 0;    
  }    
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 600;
  color: #ddd;
  white-space: nowrap;
  transition: all 0.2s ease;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #5f6cff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: transparent;
  padding: 8px 20px;
  margin-left: 30px;
  border: solid 1px #5050ff; 
  border-radius: 4px;
  color: #5050ff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5050ff;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 0.875rem;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 0.75rem;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5050ff;
}

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

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

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ddd;
  font-size: 1.75rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #ddd;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 0.875rem;
  color: #012970;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 0.75rem;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5050ff;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  text-align: center;
  background: linear-gradient(rgba(21, 35, 63, 0.9), rgba(0, 0, 0, 0.2));
}

.hero #video-background {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
    z-index: -2;
}

.hero .hero-content {
	padding-top: 11rem;
	padding-bottom: 9rem;
	background: linear-gradient(rgba(21, 35, 63, 0.5), rgba(21, 35, 63, 0.5));
	background-size: cover;
	text-align: center; 
}
.hero h1 {
	margin: 1rem 0 1rem 0;
	color: #ffffff;
    font-family: "Noto Sans KR"
	font-size: 2rem;
	line-height: 3rem;
}

.hero h2 {
  color: #627594;
  margin-bottom: 2rem;
  font-size: 1.625rem;
}
.hero h3 {
  color: #fff;
  margin: 0 0 4rem 0;
  font-size: 2rem;
  font-weight: 400;
}
.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #5050ff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 1.125rem;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img img {
  text-align: center;
  width: 28%;
  margin-bottom: 4%;
}

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

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
.hero h1 {
	font-size: 1.8rem;
	line-height: 2.5rem;
}
.hero h3 {
    font-size: 1rem;
    margin: 0 0 2rem 0;
    line-height: 1.5rem;
}
  .hero .hero-img {
    text-align: center;
    margin-top: 2.75rem;
    margin-bottom: 1rem;
  }

  .hero .hero-img img {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero .hero-img img {
    width: 50%;
  }
  .hero h1 {
    font-size: 	1.2rem;
    line-height: 1.8rem;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .hero h3 {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}


/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
.introduction {
  font-size: 1rem;
}
.introduction .content {
  padding: 40px;
}
.introduction .card {
    background-color: transparent;
}
.cards-1 {
	padding-top: 9.125rem;
	padding-bottom: 5.25rem;
	text-align: center;
}

.cards-1 .card {
	border: none;
	border-radius: 6px;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-icon {
	width: 90px;
	height: 90px;
	margin-right: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	border-radius: 50%;
	text-align: center;
}

.cards-1 .card-icon .fas, .cards-1 .card-icon i {
	color: #fff;
	font-size: 2.125rem;
	line-height: 90px;
}

.cards-1 .card-title {
	margin-bottom: 0.625rem;
}

@media (max-width: 768px) {
    .introduction {
    font-size: 0.8rem;
    }
    .introduction .content {
     padding: 40px 8px;
    }
    .card-body h4 {
    font-size: 1.3rem;   
    }
    .cards-1 .card-icon {
	margin-bottom: 1rem;
	width: 70px;
	height: 70px;
}
    .card-body p {
    margin-bottom: 1.75rem;
    }
    .cards-1 .card-icon .fas, .cards-1 .card-icon i {
    line-height: 70px;    
    }
}
@media (max-width: 991px) {
    .introduction {
    background-color: #fff;
    }
}
@media (min-width: 992px) {
	.cards-1 .card {
		display: inline-block;
		width: 30%;
		vertical-align: top;
	}
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.75rem;
		margin-left: 1.75rem;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .service-box {
  box-shadow: 0px 0 25px rgba(1, 41, 112, 0.2);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  background-color: #fff;
}

.services .service-box .icon {
  font-size: 2.25rem;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 800;
  font-size: 1.5rem;
}
.services .service-box p {
  font-size: 1rem;  
  min-height: 80px;
}
.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 1.125rem;
}

.services .service-box.blue {
  border-bottom: 5px solid #368AFF;
}

.services .service-box.blue .icon {
  color: #368AFF;
  background: #D6F0FF;
}

.services .service-box.blue .read-more {
  color: #368AFF;
}

.services .service-box.midpurple {
  border-bottom: 5px solid #5050ff;
}

.services .service-box.midpurple .icon {
  color: #5050ff;
  background: #E9E4FF;
}

.services .service-box.midpurple .read-more {
  color: #5050ff;
}

.services .service-box.purple1 {
  border-bottom: 5px solid #A465FD;
}

.services .service-box.purple1 .icon {
  color: #A465FD;
  background: #FAEBFF;
}

.services .service-box.purple1 .read-more {
  color: #A465FD;
}

.services .service-box.red {
  border-bottom: 5px solid #e9222c;
}

.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.services .service-box.red .read-more {
  color: #e9222c;
}

.services .service-box.purple {
  border-bottom: 5px solid #b50edf;
}

.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.services .service-box.purple .read-more {
  color: #b50edf;
}

.services .service-box.pink {
  border-bottom: 5px solid #f51f9c;
}

.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.services .service-box.pink .read-more {
  color: #f51f9c;
}

.services .service-box:hover .icon {
  background: #fff;
}

.counts .count-box .side { 
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
}

.services .feature-icons .content .icon-box {
  display: flex;
  padding: 30px 20px;
  justify-content: center;
}

.services .feature-icons h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0 0;
  color: #0245bc;  
}

.services .feature-icons .content .icon-box h4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: #012970;
}
.services .feature-icons .content .icon-box p {
  font-size: 0.875rem;
}
.services .feature-icons .content .icon-box i {
  font-size: 2.75rem;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

@media (min-width: 769px) {
.services .service-box.blue:hover {
  background: #368AFF;
}
.services .service-box.midpurple:hover {
  background: #5050ff;
}
.services .service-box.purple1:hover {
  background: #A465FD;
}
.services .service-box.red:hover {
  background: #e9222c;
}
.services .service-box.pink:hover {
  background: #f51f9c;
}
.services .service-box.purple:hover {
  background: #b50edf;
}
.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more,
.services .service-box:hover b {
  color: #fff !important;
}
}

@media (max-width: 768px) {
  .services .feature-icons .content .icon-box {
  padding-left: 20px;
  margin: 0;
  border-bottom: 1px solid #ddd;
}  
  .services .service-box h3 {
  font-size: 1.3rem;
}
  .services .service-box p {
  font-size: 0.875rem;  
  min-height: 30px;
}
  .services .service-box {
  box-shadow: none;
  padding: 40px 20px;
  text-align: center;      
}
  .services .service-box .icon {
  font-size: 2rem;
  padding: 30px 15px;
}
  .services .feature-icons .content .icon-box i {
  font-size: 2rem;
  line-height: 36px;
}
  .services .service-box.purple1 {
  padding-top:0;
}
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px 20px 20px 40px;
  width: 100%;
  min-height: 130px;
  margin-bottom: 8px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 2.625rem;
  line-height: 0;
  margin-right: 20px;
}

.counts .count-box span {
  font-family: "Nunito", sans-serif;
  font-size: 2.25rem;
  display: block;
  font-weight: 800;
  color: #0b198f;
}

.counts .count-box p {
  padding: 0;
  margin: 5px 0 0 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .counts .count-box {
  padding: 30px 40px 25px 40px;
  min-height: 100px;
  margin-bottom: 1px;
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.2);
}
.counts .count-box i {
  font-size: 2rem;
}
.counts .count-box span {
  font-size: 2rem;
}
}
/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
#values { 
  padding: 100px 0;
}
.values {
    position: relative;
    overflow: visible;
}

.shape-back {
  background: #fff url(../img/values-back.svg) no-repeat center / contain;
}
.values .back {  
  padding:30px 10px; 
  background: #061f44;
  background: #061f44 url(../img/values-back.svg) no-repeat center / contain; 
  border-radius: 20px; 
  box-shadow: 0px 0 25px rgba(1, 41, 112, 0.4);
}

.values .box {
  position: relative;
  overflow: hidden;  
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.2);
  padding: 20px 10px 40px 10px;
  margin-bottom: 8px;
  text-align: center;
  z-index: -2; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  border-radius: 12px;
  border-width: 2px;
  transform-origin: center center;
  will-change: transform;
}

.values .box .icon {
  font-size: 2.625rem;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
  color: #5050ff;
}

.values .box .btn-solid-lg, 
.values .box2 .btn-solid-lg {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}

.values .box h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  font-family: 'Noto Sans KR'
  margin-bottom: 18px;
}
.values .box p { 
    color:#fff;
    font-size: 1rem;
}
.values .box2 { /* AI Command Hub */ 
  padding: 20px 10px 0 10px;
  margin: 20px 20px;
  text-align: center;
  background: rgba(1, 41, 112, 0.4);
  border: 1px solid #5050ff;
}
.values .box2 h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  font-family: 'Noto Sans KR'
  margin-bottom: 18px;
}
.values .box2 p { 
    color:#fff;
    font-size: 0.875rem;
}
.values .box2 .icon {
    font-size: 2.3rem;
    line-height: 3.8rem;
}
.values b { color:#5050ff }

@media (min-width: 769px) { /* 모바일에서 hover안나오게 */
  .values .box:hover {
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    outline: 10px solid rgba(255, 255, 255, 0.5);
    outline-offset: -10px;
    transition: all 0.3s ease;
  }
}
@media (max-width: 768px) {
  #values {
  padding: 20px 0;
}
  .values .box {
  box-shadow: none;
  border:0;
  border-bottom: 1px solid #ddd;
  padding: 15px 10px 30px 10px;
  margin-bottom: 2px;
  background-color: #fff
}  
  .values .box2 {    
  margin: 10px;
}
  .values .box h3 {
  font-size: 1.3rem;
  color: #012970;
}
  .values .box p { 
  color:#012970; 
}
  .values .back,
  #values {
  background-image: none; 
}
}

@media (max-width: 992px) {
	.values .back,
    #values {
	background-image: none; 
}
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    position: relative;
    overflow: visible;
}
}

.features .feature-box {
  padding: 0px 20px;
  /* box-shadow: 0px 0 20px rgba(1, 41, 112, 0.2); */
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 1.125rem;
  color: #012970;
  font-weight: 700;
  margin: 0;
  display: inline-block;
}
.features .feature-box p {
  font-size: 1rem;  
  font-weight: 500;  
}
.features .feature-box i {
  color: #fff;
  line-height: 0;
  background: #5050ff;
  padding: 2px;
  margin-right: 8px;
  font-size: 1.2rem;
  border-radius: 50%;
  transition: 0.3s;
}
@media (min-width: 769px) {
.features .feature-box:hover i {
  background: #fff;
  color: #5050ff;
}
}
.features .feture-tabs {
  margin-top: 60px;
}

.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-family: 'Noto Sans KR';
  font-size: 1.125rem;
  font-weight: 700;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #5050ff;
  border-bottom: 4px solid #5050ff;
}

.features .feture-tabs .tab-content h4 {
  font-size: 1.125rem;
  margin: 0;
  font-weight: 700;
  color: #012970;
}
.features .feture-tabs .tab-content h2 {
  font-size: 1.125rem;
  margin: 0;
  font-weight: 700;
  color: #0245bc;
}
@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 1.75rem;
}
}
@media (max-width: 991px) {
   .features .feture-tabs img, .mdisplay {
    display: none;
}
}
/*--------------------------------------------------------------
# step / price 이용 안내, 요금제 안내
--------------------------------------------------------------*/
#customer { background-color: #f6f9ff; }
.steping {
    position: relative;
    overflow: visible;
}
.steping .box {
  position: relative;
  overflow: hidden;  
  padding: 50px 35px 50px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 10px rgba(45, 62, 86, 0.2);
  border-radius: 4px;
  transition: 0.3s;
}
@media (min-width: 769px) {
.steping .box:hover {
  transform: scale(1.06);
  box-shadow: 0px 0 20px rgba(45, 62, 86, 0.5);
}
}
.steping .box-1 {
  background-image: linear-gradient(
    60deg,
    rgba(149, 190, 255, 0.5) 0%,   /* #95beff */
    rgba(225, 165, 255, 0.5) 95%   /* #e1a5ff */
  );
}

.steping .box-2 {
  background-image: linear-gradient(
  60deg,
  rgba(190, 146, 255, 0.5) 0%,   /* #be92ff */
  rgba(106, 166, 255, 0.5) 95%   /* #6aa6ff */
);
}

.steping .box-3 {
  background-image: linear-gradient(
  60deg,
  rgba(100, 134, 255, 0.5) 0%,   /* #6386ff */
  rgba(187, 81, 255, 0.5) 95%   /* #bb51ff */
);
}
.steping .box-4 {
  background-image: linear-gradient(
    60deg,
    rgba(133, 219, 255, 0.5) 0%,   /* #85dbff */
    rgba(234, 255, 0, 0.5) 95%   /* #eaff00 */
  );
}

.steping .box-5 {
  background-image: linear-gradient(
  60deg,
  rgba(175, 245, 42, 0.5) 0%,   /* #aff52a */
  rgba(107, 203, 255, 0.5) 95%   /* #6bcbff */
);
}

.steping .box-6 {
  background-image: linear-gradient(
  60deg,
  rgba(71, 188, 255, 0.5) 0%,   /* #47bcff */
  rgba(170, 255, 92, 0.5) 95%   /* #aaff5c */
);
}


.steping .box.box-4 img, 
.steping .box.box-5 img, 
.steping .box.box-6 img {
  height: 130px;
  padding: 30px 10px 20px 10px;
  opacity: 80%;
}
.steping .box.box-1 img, 
.steping .box.box-2 img, 
.steping .box.box-3 img {
  height: 130px;
  padding: 30px 10px 20px 10px;
  opacity: 60%;
}
.price { 
  font-weight: 700;
  font-size: 2.25rem;
  color: #061f44;
  margin-bottom: 20px;
}
.credit { 
  font-weight: 700;
  font-size: 2rem;
  color: #061f44;
  margin-bottom: 20px;
}
.price sup {
  font-size: 1.25rem;
  margin-right: 5px;
}

.price span {
  color: #061f44;
  font-size: 1rem;
  font-weight: 300;
}

.steping .box h3 {
  font-family: 'Noto Sans KR';
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.steping .box p { 
    color: #061f44;
    font-size: 0.875rem;
}

.steping .steps {
  font-size: 1.5rem;
  color: #012970;
  font-weight: 700;
}

.steping .box img {
    width: 60%;
    opacity: 80%;
}
.steping .box p {
    min-height: 77px;
}
.steping .steps sup {
  font-size: 1.25rem;
  top: -15px;
  left: -3px;
}

.steping .steps span {
  color: #bababa;
  font-size: 1rem;
  font-weight: 300;
}
 
.steping .box ul {
  padding: 0;
  list-style: none;
  color: #000;
  text-align: center;
  line-height: 21px;
  font-size: 1rem;
  margin-bottom: 5px;
  min-height: 100px;
}

.steping .box ul.box123 {
  min-height: 140px !important;
}

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

.steping ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.steping .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -60px;
  transform: rotate(38deg);
  z-index: 1;
  font-size: 0.875rem;
  padding: 1px 0 3px 0;
  background: #5050ff;
  color: #fff;
}

.steping .price-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
}

/* 요금제 안내 토글 */
  .tab2-button {
    border: 2px solid #fff; 
    border-radius: 50px;
    padding: 8px 20px 10px 20px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    margin: 0 4px 8px 4px;
    color: #444444;
  }

  .tab2-button:hover,
  .tab2-button.active {
    border: 2px solid #5050ff;  
    color: #5050ff;
    background-color: #fff;
    transition: 0.3s;
  }

  .tab2-content {
    display: none;
    margin-top: 20px;
  }

  .tab2-content.active {
    display: block;
  }


@media (max-width: 768px) {
    .steping .box {
     margin-bottom:20px;
     padding: 30px 20px 20px 20px;
} 
    .steping .box img {
     margin-top: 10px;
     width: 30%;
     opacity: 80%;
}
    .steping .box ul, 
    .steping .box ul.box123 {
     min-height: 50px !important;
}
    .steping .price-title {
     font-size: 1.3rem;
}
}



/*--------------------------------------------------------------
# background-shape 둥둥 떠 있는 bg 이미지
--------------------------------------------------------------*/
.step-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -3;
}

.price-bg {
  position: absolute;
  bottom: 0;
  width: 100%; 
  z-index: -3;
}

.price-bg-shape-1 {
  position: absolute;
  top: 100px;
  left: 20px;
  z-index: -1;
}

.price-bg-shape-2 {
  position: absolute;
  top: 0;
  right: 160px;
  z-index: -1;
}

.price-bg-shape-3 {
  position: absolute;
  top: 15%;
  left: 10%;
  z-index: -1;
}

.price-bg-shape-4 {
  position: absolute;
  bottom: 0%;
  right: 150px;
  z-index: -1;
}

.price-bg-shape-5 {
  width:22%;
  position: absolute;
  bottom: 0;
  right: 100px;
  z-index: -1;
}

@media (max-width: 768px) {
  .price-bg-shape-1, .price-bg-shape-2, .price-bg-shape-3, .price-bg-shape-4, .price-bg-shape-5  {
    display: none;
  }
}

.left-right-animation {
  animation: left_right 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes left_right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

@keyframes left_right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

.up-down-animation {
  animation: up_down 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes up_down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes up_down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 1.125rem;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #5050ff;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}

@media (max-width: 768px) {
  .faq .accordion-button {
   font-size: 1rem;
   line-height: 1.5rem;
   padding: 15px 5px;   
  }
  .faq .accordion-body {
   font-size: 0.875rem;
   padding: 0 5px 15px 5px;
}
  .md-bd-1 {
   border-bottom: 1px solid #ddd !important;
}
}

/*--------------------------------------------------------------
# sample
--------------------------------------------------------------*/
.sample #sample-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.sample #sample-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 2px solid #fff;
}

.sample #sample-filters li:hover,
.sample #sample-filters li.filter-active {
  color: #5050ff;
  border-color: #5050ff;
}

.sample #sample-filters li:last-child {
  margin-right: 0;
}

.sample-wrap {
    background-color: #fff;
    border: solid 6px #368AFF;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.sample-heading {
    background-color: #368AFF;
    padding: 1rem 1rem 0.5rem 2rem;
    color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.sample-heading p {
    line-height: 1.2rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.bg-tools {
  background-color: rgba(80, 80, 255, 0.2); /* #0d6efd */
}

@media (max-width: 769px) {
   .sample #sample-filters {
    margin-bottom:0;
    padding: 0;
}
    .sample #sample-filters li {
    font-size: 0.875rem;
    padding: 8px 10px 10px 10px;
    margin: 0 2px 4px 2px;
}
    .sample-wrap h5 {
    font-size: 1.16rem;
}
}

/*--------------------------------------------------------------
# Chart
--------------------------------------------------------------*/
.chart {
  margin-left: 40px;
}
canvas {
  text-align: left;
}
.chart-wrap {
  padding: 30px 30px;
  text-align: left;
  background-color: #fff;
}
.chart h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  color: #012970;
}
.chart h3::before {
  content: '•';
  margin-right: 0.4em;
}

@media (max-width: 991px) {
  .chart {
  margin-left: 0;
}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 2.375rem;
  line-height: 0;
  color: #5050ff;
}

.contact .info-box h3 {
  font-size: 1.25rem;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 0.875rem;
  margin-bottom: 0;
}

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

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

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

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 0.875rem;
}

.footer .footer-top {
  background: white url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

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

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 30px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 0.875rem;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 1.25rem;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 0.75rem;
  line-height: 0;
}

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

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

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

.footer .footer-top .footer-links ul a:hover {
  color: #5050ff;
}
.footer .footer-top p.footer-contact a {
    font-size: 0.9rem;
    color: #013289;
    line-height: 2rem;
}
.footer .footer-top p.footer-contact i {
  color: #d0d4fc;
  font-size: 0.75rem;
  line-height: 1rem;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #012970;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  color: #012970;
}

@media (max-width: 576px) {
  .footer .footer-top .footer-links,
  .footer .credits, .footer .copyright  {
   display: none;
}
  .footer .footer-top {
  background-size: cover;
}
}
@media (max-width: 769px) {
  .footer .footer-top .footer-info .logo img {
  max-height: 25px;
}
  .footer .footer-top .footer-info a {
   justify-content: center;     
}    
  .footer .footer-top .footer-info {
   text-align: center;
   margin: 10px;
}
   .footer .footer-top p.footer-contact {
    font-size: 0.875rem;
}
}