@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body{
  word-break: keep-all;
  word-wrap: break-word;
  font-family: 'Noto Sans KR', sans-serif;
  
}

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

a:hover {
  color: #EA5420;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
    
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

p, li{
  color: #555;
}

h1,h2,h3,h4,h5,h6,p{
  font-family: 'Noto Sans KR', sans-serif;
}


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

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

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

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-bg{
  background: #FAFAFA;
}

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

.section-header h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-default);
}

.section-header p {
  margin: 0 auto;
  font-size: 22px;
  color: var(--color-primary);
}

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

@media (max-width: 640px) {

  section {
    padding: 30px 0;
  }
  

  .section-header {
    padding-bottom: 50px;
  }

  .section-header h2{
    font-size: 28px;
    margin-bottom: 10px;
  }
  .section-header p{
    font-size: 16px;
  }
  
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

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

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

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  width: 180px;
  padding-left: 20px;
}



.header .btn-getstarted {
  color: #444;
  font-size: 18px;
  padding: 4px 20px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-orange);
}

@media (max-width: 1279px) {

  .header .btn-getstarted{
    margin-right: 40px;
  }
}

@media (max-width: 768px) {

  .header .logo img {
    width: 150px;
    padding-left: 0;
  }
}

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

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

  .navbar li {
    position: relative;
    font-weight: 700;
    padding: 0 10px;
  }

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

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 18px;
    color: #363636;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

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

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

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: #EA5420;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 10px 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #000;
    transition: 0.3s;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#  Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  background: url("../img/hero/hero.png") center center;
  background-size: cover;
  position: relative;
}

.hero h2 {
  margin: 30px 0 10px 0;
  font-size: 30px;
  color: #363636;
  font-weight: 400;
  
}

.hero .text {
  margin-top: 150px;
 
}




@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
    background: url("../img/hero/hero_@M.png") center center;
    background-size: cover;
    position: relative;
  }

  .hero .text {
   
  }
  .hero h2 {
    font-size: 22px;
    line-height: 32px;
  }

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

  .hero img {
    width: 260px;
  }


  
}



/*--------------------------------------------------------------
# main-company Section
--------------------------------------------------------------*/
.main-company{
  background: #FEF4F5;
}

.main-company .service-item {
  padding: 10px 60px;
  transition: all ease-in-out 0.4s;
}



.main-company .service-item h4 {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 50px;
}

.main-company .service-item h4 a {
  color: var(--color-default);
  transition: ease-in-out 0.3s;
}

.main-company .service-item p {
  line-height: 34px;
  font-size: 22px;
  margin-bottom: 65px;
  color: var(--color-primary);
}

.main-company .service-item:hover {
  transform: translateY(-10px);
}

.main-company .service-item:hover h4 a {
  color: var(--color-orange);
}

@media (max-width: 640px) {
  .main-company .service-item {
    padding: 0px 30px;
  }

  .main-company .service-item h4{
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .main-company .service-item p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .main-company .service-item .img img{
    width: 60%;
  }

  
}

/*--------------------------------------------------------------
# main-tech Section
--------------------------------------------------------------*/

.main-tech .box {
  padding: 50px 0 40px 0;
  text-align: center;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  position: relative;
  height: 100%;
}

.main-tech .box img{
  width: 145px;
}

.main-tech .box .btn{
  border-radius: 50px;
  border: 1px solid #ebebeb;
  padding: 6px 20px;
  color: #555555;
}

.main-tech .box .btn:hover{
  background: #EA5420;
  border: 1px solid #EA5420;
  color: #fff;
}

.main-tech h3 {
  color: var(--color-default);
  font-weight: 700;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {

  .main-tech{
    padding-top: 60px;
  }

  
  .main-tech .box {
    padding: 20px 0 20px 0;
    border: 1.5px solid #ebebeb;
  }
  
  .main-tech .box img{
    width: 100px;
  }
  
  .main-tech h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .main-tech .box .btn{
    font-size: 12px;
    padding: 6px 20px;
  }
  
  
}

/*--------------------------------------------------------------
# 3banner Section
--------------------------------------------------------------*/
.banner3  {
  background: #FAFAFA;
  padding: 100px 0;
}

.banner3 h3{  
  font-size: 26;
  font-weight: bold;
  color: #000;
}


.banner3 .box1 {
  padding: 40px;
  background: #FDEFE9;;
  border-radius: 15px;
  position: relative;
  height: 100%;
}


.banner3 .box1 p{
  font-size: 18px;
  color: #555555;
  width: 70%;
  padding-top: 20px;
}
.banner3 .tier-logo{
  width: 120px;
}

.banner3 .tier{
  padding: 0 30px 30px 0;
  width: 400px;
}

.banner3 .arrow{
  padding: 40px;
}

.banner3 .box2 {
  padding: 40px;
  background: #EAE6FD;
  border-radius: 15px;
  position: relative;
}



.banner3 .box2 p{  
  width: 70%;
  padding-bottom: 20px;
  color: #555555;
}


.banner3 .box3 {
  padding: 40px;
  background: #DDF9FB;
  border-radius: 15px;
  position: relative;
  margin-top: 30px;
}


.banner3 .box3 p{  
  width: 70%;
  padding-bottom: 20px;
  color: #555555;
}

.banner3 .ic{
  padding: 30px;
  width: 160px;
}
@media (max-width: 960px) {
  .banner3 .tier{
    padding: 0 30px 30px 0;
    width: 150px;
  }
  .banner3 .box1 p{
    padding-bottom: 100px;
  }
}
@media (max-width: 640px) {

  .banner3  {
    background: #FAFAFA;
    padding: 50px 0;
  }

  .banner3 .arrow{
    padding: 30px;
  }
    
  .banner3 .box1 {
    padding: 30px;
    position: relative;
  }
    
  
  .banner3 .box1 p{
    font-size: 16px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .banner3 .tier-logo{
    width: 80px;
  }
  
  .banner3 .tier{
    padding: 0 30px 30px 0;
    width: 150px;
  }
  
  
  .banner3 .box2 {
    padding: 30px;
    position: relative;
  }
  
  .banner3 .box2 h3{  
    font-size: 26;
  }
  
  .banner3 .box2 p{  
    width: 70%;
    padding-bottom: 20px;
  }
  
  .banner3 .ic{
    padding: 30px;
    width: 140px;
  }
  
  .banner3 .box3 {
    margin-top: 22px;
  }
  
  .banner3 .box3 h3{  
    font-size: 26;
    font-weight: bold;
    color: #000;
  }
  .banner3 .box3 p{  
    width: 70%;
    padding-bottom: 20px;
    color: #555555;
  }
  


}




/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
.partners .ptn{
  padding: 10px ;
}

@media (max-width: 640px) {
  .partners {
    padding-top: 60px;  
    padding-bottom: 100px;
  }    

}

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

@media (max-width: 640px) {
  .footer {
    padding-top: 0px;  
  }    

}

.footer .footer-content {
  background: #000;
  padding-top: 60px ;
}

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

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

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

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

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



.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: #7D7D7D;
  font-size: 12px;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

.footer .footer-legal {
  padding: 30px 0 60px 0;
  background: #000;
  color: #7D7D7D;
}

.footer .footer-content hr{
  
  background-color: #4e4e4e;
}


.footer .footer-legal .credit {
  margin-bottom: 6px;
}
.footer .footer-legal .credit span{
  color: #444;
  padding: 0 10px 0 10px;
}

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

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