/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #444444;
  letter-spacing: -0.1px;
  font-family: "Noto Sans KR", "Nanum Gothic", "Montserrat", "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

a:hover {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -1px;
  font-family: "Roboto";
}

#process h2, #history h2 {
  font-weight: bold;
}

::selection {color:black;background:#71bf5f;}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 50px;
  bottom: 50px;
  z-index: 996;
  background: #b3b3b3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 300px;
}

#header .catagory .logo .logo_b {
  display: block;  
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 5%);
  background-color: white;
}
#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#header .logo .logo_w {
  display: block;
}
#header.header-scrolled .logo .logo_w {
  display: none;
}

#header .logo .logo_b {
  display: none;
}
#header.header-scrolled .logo .logo_b {
  display: block;
}

#header .logo img {
  max-height: 22px;
}

/*--------------------------------------------------------------
# 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 li .navname {
  color: #b3b3b3;
}

#header.header-scrolled #navbar li .navname {
  color: #b3b3b3;
}

.navbar_black li .navname {
  color: #b3b3b3;
}

.navbar a, #navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 80px;
  font-size: 16px;
  font-weight: 600;
  color: #b3b3b3;
  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: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}
#navbar .getstarted, #navbar .getstarted:focus {
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
#navbar .getstarted:hover, #navbar .getstarted:focus:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 50px;
  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;
}
#navbar .dropdown ul li {
  min-width: 160px;
  padding: 5px 30px;
}
#navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  font-weight: 600;
}
#navbar .dropdown ul a i {
  font-size: 12px;
  font-weight: 600;
}
#navbar .dropdown ul a:hover, #navbar .dropdown ul .active:hover, #navbar .dropdown ul li:hover > a {
  color: rgba(0, 0, 0, 0.7);
}
#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: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .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(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #b3b3b3;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: rgba(0, 0, 0, 0.7);
}
.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: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# mainslide Section
--------------------------------------------------------------*/
#mainslide {
  width: 100%;
  height: 92vh;
  margin-top: 80px;
  background-color: rgba(63, 73, 83, 0.9);
  overflow: hidden;
  position: relative;
}
#mainslide .carousel, #mainslide .carousel-inner, #mainslide .carousel-item, #mainslide .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#mainslide .carousel-item {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
#mainslide .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.6);
}
#mainslide .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}
#mainslide .container {
  text-align: left;
  position: relative;
}
#mainslide h2 {
  color: #fff;
  margin-bottom: 100px;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  padding-top: 180px;
}
#mainslide p {
  font-size: 16px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  line-height: 25px;
}
#mainslide .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#mainslide .carousel-inner .carousel-item,
#mainslide .carousel-inner .active.carousel-item-start,
#mainslide .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#mainslide .carousel-inner .carousel-item-next.carousel-item-start,
#mainslide .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#mainslide .carousel-inner .carousel-item-next,
#mainslide .carousel-inner .carousel-item-prev,
#mainslide .carousel-inner .active.carousel-item-start,
#mainslide .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#mainslide .carousel-control-next-icon, #mainslide .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px; 
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
}

#mainslide .carousel-control-next-icon:hover, #mainslide .carousel-control-prev-icon:hover {
  color: rgba(255, 255, 255, 0.8);
}
#mainslide .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#mainslide .carousel-indicators li.active {
  opacity: 1;
  width: 20px;
}

@media (max-width: 992px) {
  #mainslide {
    height: 100vh;
  }
  #mainslide .carousel-container {
    top: 8px;
  }
}
@media (max-width: 768px) {
  #mainslide h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #mainslide .carousel-control-prev, #mainslide .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #mainslide {
    height: 120vh;
  }
}

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

/* section:last-child {
  padding: 200px 0 0;
} */

.section-bg, .services .icon-box {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #aaaaaa;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e6636a;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #b3b3b3;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  min-height: 40px;
  margin-top: 80px;
}

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

.breadcrumbs ol li a {
  font-weight: 600;
}

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

.breadcrumbs ol li:last-child {
  font-weight: 600;
  color: #71bf5f;;
}

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 600;
  font-size: 35px;
  line-height: 52px;
  text-transform: uppercase;
  letter-spacing: -3;
  
}
.about .content .about-title {
  padding: 0 120px 0 20px;
}
.about .content .about-text {
  padding: 0 20px 0 120px;
  font-size: 18px;
  line-height: 32px;
  
}

.about .content .about-text a {
  font-weight: 700;
    color: #71bf5f;
}

/* .about .content .about-text a:hover {
  color: #71bf5f;
  transition: all 0.3s ease-in-out;
} */

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  text-align: center;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-filters {
  list-style: none;
  text-align: center;
  padding-left: 0;
}

.portfolio #portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 30px 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #b3b3b3;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio #portfolio-filters li:hover, .portfolio #portfolio-filters li.filter-active {
  color: rgba(0, 0, 0, 0.7);
}

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


.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(85, 85, 85, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(85, 85, 85, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: white;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .btn-more {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 9px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 40px;
    border: 2px solid #71bf5f;
}

.portfolio .btn-more:hover {
  background: #71bf5f;
  color: white;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
#portfolio {
  padding-bottom: 200px;
}
.portfolio-details {
  padding-top: 60px;
  margin: 50px 0 0;
}
.portfolio-details ul {
  list-style: none;
}
.portfolio-details .portfolio-description {
  padding: 50px 50px 100px;
  display: flex;
}
.portfolio-details .portfolio-description h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
.portfolio-details .portfolio-title {
  width: 50%;
}
.portfolio-details .portfolio-title p {
  font-size: 13px;
}
.portfolio-details .portfolio-title ul {
  padding: 30px 0 0 0;
  font-size: 13px;
  display: flex;
}
.portfolio-details .portfolio-title li {
  padding-right: 15px;
}
.portfolio-details .portfolio-info {
  padding: 30px 30px 20px;
  width: 50%;
  box-shadow: 0px 0 30px rgba(85, 98, 112, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  padding: 0;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-photo {
  width: 98%;
}

.portfolio-details .portfolio-photo li {
  display: block;
  margin: 20px 0;
}
.portfolio-details .portfolio-photo li img {
  width: 100%;
}

.portfolio-details .listbtn {
  text-align: center;
  margin-top: 100px;
  font-weight: 800;
  font-size: 18px;
  opacity: 0.5;
  transition: all 0.9s;
}

.portfolio-details .listbtn:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description {
    padding: 30px 30px 60px;
  }
}

#margin {
  margin-top: 150px;
}

/*--------------------------------------------------------------
# Qna
--------------------------------------------------------------*/
#qna {
  width: 100%;
  height: 60vh;
  background: url("../../assets/img/QnA/qna_01.jpg") top center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

#qna2 {
  width: 100%;
  height: 50vh;
  background: url("../../assets/img/QnA/qna_02.jpg") top center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  font-family: "Nanum Gothic";
}

.qna:before {
  content: "";
  background: rgba(97, 97, 97, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#qna .container {
  text-align: center;
  padding-top: 50px;
}

#qna2 .container {
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 992px) {
  #mainslide .container {
    padding-top: 0;
  }
}
.qna h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 56px;
  color: #eee;
  font-family: "Nanum Gothic";
}
.qna h2 {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 32px;
}
.qna h2 span {
  /* background-color: #535353; */
  padding: 1px 10px;
}

.qna h2 .h2-big {
  font-size: 51px;
}

/* .qna .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 40px;
  border: 2px solid #71bf5f;
  color: #fff;
}
.qna .btn-get-started:hover {
  background: #71bf5f;
} */

@media (min-width: 1024px) {
  #mainslide {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  .qna {
    height: 100vh;
  }
  .qna h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .qna h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/

#process ul {
  list-style: none;
  padding-top: 100px;
  padding-left: 0;
  text-align: center;
}

#process li {
  display: inline-block;
  width: 24%;
  height: 300px;
  padding: 20px 60px;
}

#process .process-img {
  text-align: center;
  height: 140px;
}
#process img {
  max-height: 100px;
  opacity: 0.5;
}
#process img:hover {
  max-height: 105px;
  transition: all 0.5s;
  opacity: 1;
}

#process li h3 {
  font-size: 22px;
  font-weight: 700;
}

#process .list-bottom {
  padding-top: 50px;
}
#process .list-bottom li {
  width: 24%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #535353;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 13px;
}
#footer .footer-top {
  padding: 60px 0 0;
}
#footer .footer-top .footer-info {
  padding-top: 30px;
  margin-bottom: 30px;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  color: rgb(194 194 194 / 100%);
}

#footer .footer-top .footer-info .warning {
  font-size: 11px;
  line-height: 18px;
  color: #fff;
}

#footer .footer-top .social-links {
  display: inline-block;
  width: 110px;
  margin: 140px 0 20px 110px;
}
#footer .footer-top .social-links img {
  max-height: 22px;
}
#footer .footer-top .social-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #71bf5f;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-map {
  margin-bottom: 30px;
  width: 75%;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}
#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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: white;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: rgb(194 194 194 / 100%);
  border-top-style:solid;
  border-width: 1px;
  border-color:rgba(255, 255, 255, 0.1);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: none;
}
#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  font-weight: 600;
}
#footer .credits a:hover {
  color: white;
}

