/**
* Template Name: Bootslander - v2.1.0
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500&display=swap');

body {
  /* font-family: "Open Sans", sans-serif; */
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

a {
  /* color: #1acc8d; */
  color: #ffffff;
}

a:hover {
  /* color: #34e5a6; */
  color: #23549d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: "Montserrat", sans-serif; */
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1acc8d;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  /* background: #1acc8d; */
  background: #013585;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #013585;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
  /* background: rgba(1, 4, 136, 0.9); */
  /* background: #23549d; */
  background: #ffffff;
  /* opacity: 0.9; */
  height: 100px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 64px;
  }
  #header .logo h1 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  /* color: rgba(255, 255, 255, 0.7); */
  color: #30233d;
  padding: 10px 0 10px 75px;
  transition: 0.3s;
  font-size: 17px;
  font-weight: 500;
  /* font-family: "Poppins", sans-serif; */
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 25px;
  /* background-color: #1acc8d; */
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #30233d;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #30233d;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-radius: 5px;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

/* .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1acc8d;
} */

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  /* color: #fff; */
  color: #143970;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  /* background: #143970; */
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #01036f;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  /* color: #1acc8d; */
  color: #143970;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  /* background: rgba(13, 18, 252, 0.6); */
  background: #143970;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Home Header
--------------------------------------------------------------*/
#header-sub {
  width: 100%;
  height: 350px;
  background: url("../img/solution-header.jpg");
  position: relative;
  padding: 120px 0 0 0;
  /* background-image: linear-gradient(to top, #23549d, rgba(196, 196, 196, 0)); */
}

#header-sub:before {
  content: "";
  /* background: rgba(2, 5, 161, 0.91); */
  /* background: #23549d; */
  background: #143970;
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;

  /* background-image: linear-gradient(to top, #23549d, rgba(196, 196, 196, 0)); */
  background-image: linear-gradient(to top, #143970, rgba(196, 196, 196, 0));
}

#header-sub h1 {
  margin: 40px 20px 20px 20px;
  font-size: 45px;
  font-weight: 400;
  line-height: 65px;
  color: rgba(255, 255, 255, 0.9);
}

#header-sub h2 {
  color: rgba(255, 255, 255, 0.9);
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 13px;
}

#header-sub h3 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 24px;
}

#header-sub .btn-get-started {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #ff0000;
}

#header-sub .btn-get-started:hover {
  background: #ff0000;
}

#header-sub .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #header-sub {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #header-sub {
    padding-top: 80px;
  }
  #header-sub .animated {
    -webkit-animation: none;
    animation: none;
  }
  #header-sub .header-sub-img {
    text-align: center;
  }
  #header-sub .header-sub-img img {
    max-width: 50%;
  }
  #header-sub h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #header-sub h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #header-sub .header-sub-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.header-sub-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0 0 30px;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  /* font-family: "Poppins", sans-serif; */
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #1acc8d;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  /* font-family: "Poppins", sans-serif; */
  color: #010483;
}

.section-title-center {
  margin-left: auto;
}

.section-title-1 {
  font-size: 10px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: 6px;
  color: #5e239d;
  margin-bottom: 20px;
}

.section-title-2 {
  font-size: 38px;
  font-weight: 350;
  color: #30233d;
  margin-bottom: 20px;
}

.section-title-3 {
  font-size: 10px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: 6px;
  color: #fcfcfc;
  margin-bottom: 20px;
}

.section-title-4 {
  font-size: 38px;
  color: #fcfcfc;
  margin-bottom: 20px;
}

.section-text-1 {
  font-size: 16px;
  font-weight: 500;
  color: #30233d;
  margin-bottom: 20px;
}

.section-text-2 {
  font-size: 16px;
  color: #776c82;
  opacity: 0.9;
  margin-bottom: 40px;
}

.section-text-3 {
  font-size: 16px;
  font-weight: 500;
  color: #fcfcfc;
  margin-bottom: 20px;
}

.section-text-4 {
  font-size: 16px;
  color: #fcfcfc;
  opacity: 0.9;
  margin-bottom: 40px;
}
.section-button-round {
  /* position: relative; */
  width: 197px;
  height: 45px;
  border-radius: 36px;
  background-color: #5e239d;
}

.section-button-text {
  font-size: 13.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #fcfcfc;
  text-align: center;
  margin-top: 12px;
}

/*--------------------------------------------------------------
# Solution (TOP)
--------------------------------------------------------------*/
.solution-top {

}

.solution-top .title {
  color: #f61067;
  margin-bottom: 20px;
}

.solution-top .text {
  font-size: 20px;
  font-weight: 200;
  color: #000;
  margin-bottom: 5px;
}

.solution-top .title-1 {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #30233d;
  margin-bottom: 10px;
  font-weight: bold;
}

.solution-top .title-2 {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #30233d;
  margin-bottom: 5px;
}

.solution-top .text-2 {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  color: #776c82;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Solution
--------------------------------------------------------------*/
.solution {
  z-index: 7;
}

.solution .menu {
  height: 70px;
  background-color: rgba(2, 81, 200, 0.6);
}

.solution .active {
  height: 70px;
  background-color: #0251c8;
  border-bottom: 2px solid red;
}

.solution .non-active {
  height: 70px;
  /* background-color: #0251c8; */
  border-bottom: 2px solid rgba(2, 81, 200, 0.6);;
}

.solution .menu-text {
  display: block;
  font-size: 25px;
  margin-left: auto;
  margin-right: auto;
}

.solution .content {
  padding-left: 0px;
  padding-right: 0px;
}

.solution .box-1 {
  position: relative;
  height: 250px;
  width: 100%;
  background-color: #150433;
}

.solution .box-1 .title {
  font-size: 14px;
  color: #fff;
  margin-left: 100px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.solution .box-1 .text {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  margin-left: 100px;
  margin-top: 20px;
}

.solution .box-2 {
  position: relative;
  /* height: 400px; */
  width: 80%;
  background-color: #013585;
  margin-bottom: 100px;
}

.solution .box-2 .item {
  padding: 80px 130px 30px 70px;
}

.solution .box-2 .item .title {
  float: left;
  font-size: 27px;
  font-weight: 500; 
  color: #fff;
}

.solution .box-2 .item .text {
  /* float: left; */
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-left: 90px;
  padding-left: 70px;
}

.solution .box-2 .item2 {
  padding: 30px 70px 30px 70px;
}

.solution .box-2 .item2 .title {
  float: left;
  font-size: 27px;
  font-weight: 500;
  color: #fff;
}

.solution .box-2 .item2 .text {
  /* float: left; */
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-left: 90px;
  padding-left: 70px;
}

.solution .box-2 img {
  width: 100%;
}

.solution .box-3 {
  position: absolute;
  /* height: 200px;
  width: 200px;
  background-color: #031f4b; */
  top: 250px;
  right: 0px;
  width: 310px;
  /* height: 410px; */
  object-fit: contain;
  background-blend-mode: multiply;
  background-image: linear-gradient(to bottom, #003eb8, #003eb8);
}

.solution .box-3 img {
  width: 100%;
}

.solution .right-image {
  position: absolute;
  top: 50px;
  /* width: 231px;
  height: 369px; */
  z-index: 4;
  object-fit: contain;
}

.solution .right-image img {
  width: 331px;
  height: 469px;
  /* height: 100%; */
}

.solution .right-box-1 {
  position: absolute;
  top: 50px;
  /* left: 300px;  */
  right: 0px;
  width: 289px;
  height: 370px;
  background-color: #0251c8;
  z-index: 5;
}

.solution .right-box-1 .right-box-1-inbox {
  padding: 40px;
}

.solution .right-box-1 .right-label {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.solution .right-box-1 .right-comma {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
}

.solution .right-box-2 {
  position: absolute;
  top: 0px;
  /* left: 0px; */
  right: 0px;
  width: 80%;
  height: 370px;
  background-color: #0251c8;
  z-index: 3;
}

@media (max-width: 1000px) {
  #menu-solution {
    display: none;
  }

  #menu-solution-gpo {
    display: none;
  }

  .solution .box-2 .item {
    padding: 80px 100px 30px 100px;
  }
  .solution .box-2 {
    width: 100%;
  }
  .solution .box-3 {
    display: none;
  }
}

@media (max-width: 575px) {

  .solution {
    padding: 30px 0 0 0px;
  }
  .solution .box-1 .title {
    margin-left: 20px;
  }

  .solution .box-1 .text {
    margin-left: 20px;
    font-size: 35px;
  }

  .solution .box-2 .item {
    padding: 20px 40px 20px 40px;
  }
}

/*--------------------------------------------------------------
# Solution Clients
--------------------------------------------------------------*/
.solution-client {
  z-index: 7;
}

.solution-client .menu {
  height: 70px;
  background-color: rgba(2, 81, 200, 0.6);
}

.solution-client .box-1 {
  height: 100%;
  width: 100%;
  background-color: #0251c8;
  padding: 80px;
}

.solution-client .box-1 .title {
  font-size: 36px;
  font-weight: 500;
  color: #f61067;
  /* margin-left: 100px;
  margin-top: 40px; */
  margin-bottom: 20px;
}

.solution-client .box-1 .text {
  font-size: 18px;
  font-weight: 500;
  color: #fcfcfc;
  /* margin-left: 100px;
  margin-top: 20px; */
  margin-bottom: 20px;
}

.solution-client .box-2 {
  background-color: #ffffff;
  margin-top: -100px;
  margin-bottom: 50px;;
}

.solution-client .box-2 .title {
  font-size: 12.6px;
  font-weight: 800;
  line-height: 1.64;
  letter-spacing: 6px;
  color: #30233d;
}

.solution-client .box-2 .box-client {
  float: left;
  /* width: 40%; */
}

.solution-client .box-2 .box-client img {
  /* float: left; */
  width: 300px;
  /* margin-left: 30px; */
  margin-top: 10px;
  /* margin-bottom: 20px; */
}


/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.service {
  z-index: 7;
}

.service .head {
  padding-left: 0px;
  padding-right: 0px;
}

.service .content {
  padding-left: 0px;
  padding-right: 0px;
}

.service .box-1 {
  /* position: relative; */
  height: 200px;
  width: 100%;
  background-color: #150433;
}

.service .box-1 .title {
  font-size: 14px;
  color: #fff;
  margin-left: 100px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.service .box-1 .text {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  margin-left: 100px;
  margin-top: 20px;
}

.service .box-2 {
  /* position: relative; */
  /* height: 400px; */
  /* width: 30%; */
  /* background-color: #013585; */
  width: 100%;
  margin-bottom: 100px;;
}

.service .box-2 .item {
  height: 245px;
  border-left: 1px solid #013585;
}

.service .box-2 .item .title {
  float: left;
  width: 350px;
  height: 100%;
  font-size: 27px;
  font-weight: 500; 
  color: #013585;
  background-color: #ffffff;
  padding: 80px 50px 30px 100px;
}

.service .box-2 .item .text {
  float: left;
  width: 480px;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #013585;
  /* margin-left: 90px;
  padding-left: 70px; */
  padding: 80px 30px 30px 30px;
}


.service .box-2 .item-blank {
  height: 190px;
  border-left: 1px solid #013585;
  border-bottom: 1px solid #013585;
  border-right: 1px solid #013585;
}

.service .box-2 .item-blank .title {
  float: left;
  width: 350px;
  height: 100%;
  font-size: 27px;
  font-weight: 500; 
  color: #013585;
  background-color: #ffffff;
  padding: 80px 50px 30px 100px;
}

.service .box-2 .item-blank .text {
  float: left;
  width: 480px;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #013585;
  /* margin-left: 90px;
  padding-left: 70px; */
  padding: 80px 30px 30px 30px;
}

.service .box-2-1 {
  float: left;
  /* position: relative; */
  height: 600px;
  width: 350px;
  background-color: #ffffff;
  /* margin-bottom: 100px;; */
}

.service .box-2-1 .item {
  padding: 80px 50px 30px 100px;
}

.service .box-2-1 .item .title {
  float: left;
  font-size: 27px;
  font-weight: 500; 
  color: #013585;
}

.service .box-2-1 .item .text {
  /* float: left; */
  font-size: 18px;
  font-weight: 500;
  color: #013585;
  margin-left: 90px;
  padding-left: 70px;
}

.service .box-2-2 {
  float: left;
  position: relative;
  height: 600px;
  width: 480px;
  background-color: #013585;
  margin-bottom: 100px;;
}

.service .box-2-2 .item {
  padding: 80px 20px 30px 0px;
}

.service .box-2-2 .item .title {
  float: left;
  font-size: 27px;
  font-weight: 500; 
  color: #fff;
}

.service .box-2-2 .item .text {
  /* float: left; */
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  /* margin-left: 90px;
  padding-left: 70px; */
}

.service .content .box-3 {
  /* position: relative; */
  height: 700px;
  width: 100%;
}

.service .content .box-3 .title-3 {
  font-size: 14px;
  color: #fff;
  margin-left: 100px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.service .content .box-3 .text-3 {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  margin-left: 100px;
  margin-top: 20px;
}

.service .content .box-3 img {
  text-align: center;
}

.service .box-4 {
  position: absolute;
  /* height: 200px;
  width: 200px;
  background-color: #031f4b; */
  top: 200px;
  right: 0px;
  width: 310px;
  /* height: 410px; */
  object-fit: contain;
  background-blend-mode: multiply;
  background-image: linear-gradient(to bottom, #003eb8, #003eb8);
}

.service .box-4 img {
  width: 100%;
}

.service .right-image {
  position: absolute;
  top: 50px;
  /* width: 231px;
  height: 369px; */
  z-index: 4;
  object-fit: contain;
}

.service .right-image img {
  width: 331px;
  height: 469px;
  /* height: 100%; */
}

.service .right-box-1 {
  position: absolute;
  top: 50px;
  /* left: 300px;  */
  right: 0px;
  width: 289px;
  height: 370px;
  background-color: #0251c8;
  z-index: 5;
}

.service .right-box-1 .right-box-1-inbox {
  padding: 40px;
}

.service .right-box-1 .right-label {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.service .right-box-1 .right-comma {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
}

.service .right-box-2 {
  position: absolute;
  top: 0px;
  /* left: 0px; */
  right: 0px;
  width: 80%;
  height: 370px;
  background-color: #0251c8;
  z-index: 3;
}


@media (max-width: 1200px) {

  /* .solution .box-2 .item {
    padding: 80px 100px 30px 100px;
  }
  */
  /* .solution .box-2 {
    width: 100%;
  } */
  .service .box-2 .item .title {
    width: 35%;
  }
  .service .box-2 .item .text {
    width: 65%;
  }
  .service .box-2 .item-blank {
    display: none;
  }
  .service .box-4 {
    display: none;
  }
}

@media (max-width: 1000px) {
  .service .box-2 .item .title {
    padding: 20px 20px 20px 20px;
  }
  .service .box-2 .item .text {
    padding: 20px 20px 20px 20px;
  }
}

@media (max-width: 575px) {

  .service {
    padding: 30px 0 0 0px;
  }
  .service .box-1 .title {
    margin-left: 20px;
  }

  .service .box-1 .text {
    margin-left: 20px;
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# Service - simple
--------------------------------------------------------------*/
.service-simple {
  /* background-color: #013585; */
  padding: 0 0 0 30px;
  margin-top: -100px;
}

.service-simple .content-erp {
  background-color: #0251c8;
}

.service-simple .content-scm {
  background-color: #013585;
}

.service-simple .title {
  /* margin-left: auto; */
  color: #fcfcfc;
  /* margin-top: 150px; */
  /* margin-bottom: 50px; */
  /* text-align: center; */
  /* margin-left: 80px; */
  padding: 150px 30px 50px 30px;
}

.service-simple .title h2 {
  /* font-size: 38px;
  font-weight: 500; */
  font-size: 12.6px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: 6px;
  color: #f61067;
}

.service-simple .title p {
  /* font-size: 16px;
  font-weight: 400; */
  font-size: 27px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fcfcfc;
}

.service-simple .content {
  padding: 30px 60px 30px 60px;
  /* padding: 60px; */
}

.service-simple .icon-box {
  /* display: flex; */
  align-items: center;
  padding: 20px;
  /* background: #f5f5ff; */
  /* transition: ease-in-out 0.3s; */
  height: 320px;
  margin-bottom: 40px;
  border: solid 1px rgba(255, 255, 255, 0.2);
}

.service-simple .icon-box .icon .circle {
  position: absolute;
  width: 42px;
  height: 42px;
  /* background: #fcfcfc; */
  border-style: solid;
  border-radius: 50%;
  border-color: #fcfcfcbd;
  border-width: 1px;
  top: 0;
}

.service-simple .icon-box .icon i {
  position: absolute;
  font-size: 50px;
  opacity: 0.8;
  /* padding-right: 10px; */
  line-height: 1;
  top: 9px;
  left: 29px;
}

.service-simple .icon-box .box-title {
  font-size: 16px;
  font-weight: 400;
  /* font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal; */
  color: #fcfcfc;
  margin-bottom: 20px;
  margin-top: 40px;
}

.service-simple .icon-box .box-text {
  font-size: 16px;
  /* font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal; */
  color: #fcfcfc;
  margin-bottom: 20px;
}

.service-simple .icon-box-2 {
  /* display: flex; */
  align-items: center;
  padding: 20px;
  /* background: #f5f5ff; */
  /* transition: ease-in-out 0.3s; */
  height: 190px;
  margin-bottom: 40px;
  border: solid 1px rgba(255, 255, 255, 0.2);
}

.service-simple .icon-box-2 .box-title {
  font-size: 16px;
  font-weight: 400;
  /* font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal; */
  color: #fcfcfc;
  margin: 10px;
}

.service-simple .icon-box-2 .box-text {
  font-size: 16px;
  /* font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal; */
  color: #fcfcfc;
  margin-bottom: 10px;
}

.service-simple .icon-box-img {
  text-align: center;
}

.service-simple .icon-box-3 {
  /* display: flex; */
  align-items: center;
  padding: 20px;
  /* background: #f5f5ff; */
  /* transition: ease-in-out 0.3s; */
  height: 600px;
  margin-bottom: 40px;
  /*border: solid 1px rgba(255, 255, 255, 0.2);*/
}

.service-simple .icon-box-3 .box-title {
  font-size: 16px;
  font-weight: 400;
  /* font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal; */
  color: #fcfcfc;
  margin: 10px;
}

.service-simple .icon-box-3 .box-text {
  font-size: 16px;
  /* font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal; */
  color: #fcfcfc;
  margin-bottom: 30px;
}
.service-simple .icon-box-3 img {
  width: 100%;
  margin-bottom: 30px;
}

.service-simple .button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 575px) {

  .service-simple {
    padding: 30px 0 0 0px;
  }
  .service-simple .title p {
    padding: 10px 10px 10px 0px;
  }

}


/**
  Service - Clients
**/

.service-client {
  z-index: 7;
}

.service-client .menu {
  height: 70px;
  background-color: rgba(2, 81, 200, 0.6);
}

.service-client .box-1 {
  height: 100%;
  width: 100%;
  background-color: #0251c8;
  padding: 80px;
}

.service-client .box-1 .title {
  font-size: 36px;
  font-weight: 500;
  color: #f61067;
  /* margin-left: 100px;
  margin-top: 40px; */
  margin-bottom: 20px;

}
.service-client .box-1 .text {
  font-size: 18px;
  font-weight: 500;
  color: #fcfcfc;
  /* margin-left: 100px;
  margin-top: 20px; */
  margin-bottom: 20px;
}

.service-client .box-2 {
  background-color: #ffffff;
}

.service-client .box-2 .title {
  font-size: 12.6px;
  font-weight: 800;
  line-height: 1.64;
  letter-spacing: 6px;
  color: #30233d;
}

.service-client .box-2 .box-client {
  float: left;
  margin-left: 10px;
  margin-right: 10px;
  /* width: 40%; */
}

.service-client .box-2 .box-client img {
  float: left;
  width: 250px;
  /* margin-left: 40px; */
  margin-top: 40px;
  margin-bottom: 30px;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .service-client .box-2 .box-client img {
    width: 50%;
  }
  .service-simple .m-box-2 {
    height: auto;
  }
  .m-icon-box-img img{
    width: 100%;
  }

  .m-margin-top {
    margin-top: 20px;
    height: auto;
  }

  .history .history-year .year {
    font-size: 18px!important;
    line-height: 20px!important;
  }
  .history .history-year .content .text {
    font-size: 14px!important;
  }
  .col-xl-6.col-lg-6 iframe {
    width: 100%!important;
  }
  .solution .box-1 .text {
    font-size: 30px;
  }

  .service .box-1 .text {
    font-size: 30px;
  }

}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-top {

}

.about-top .title {
  font-size: 27px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.08;
  letter-spacing: 6px;
  color: #f61067;

  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.about-top .text {
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #30233d;

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;

  text-align: center;

  margin-bottom: 20px;
}

.about-top .title-2 {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #30233d;
}

.about-top .text-2 {
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #30233d;

  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 730px; */

  text-align: center;
  margin-bottom: 20px;
}

.about-top .text-3 {
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #30233d;

  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 730px; */

  text-align: center;
  /* margin-bottom: 20px; */
}

.about-top .location {
  width: 100%;
}

.about-top .location img {
  width: 100%;
}

.about-top .mission {
  /* display: flex; */
  /* align-items: center; */
  padding: 0px 0px 20px 10px;
  /* background: #f5f5ff; */
  /* transition: ease-in-out 0.3s; */

  margin-bottom: 20px;
}

.about-top .mission .icon {
  /* float: left; */
}

.about-top .mission .icon .circle {
  /* position: absolute; */
  float: left;
  width: 42px;
  height: 42px;
  /* background: #fcfcfc; */
  /* border-style: solid; */
  border-radius: 50%;
  border: solid 1px rgba(1, 53, 133, 0.5);
  /* border-width: 1px; */
  top: 0;
}

.about-top .mission .icon img {
  /* position: absolute; */
  float: left;
  margin-top: 5px;
  margin-left: -50px;
  font-size: 24px;
  opacity: 0.8;
  /* padding-right: 10px; */
  line-height: 1;
  /* top: 9px;
  left: 29px; */
  color: #013585;
}

.about-top .mission img {
  float: left;
  width: 42px;
}

.about-top .mission .text {
  float: left;
  margin-left: 20px;

  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #013585;

  text-align: left;
}

/*
 About - Certification
*/

.about-cert {
  /* display: block;
  margin-left: auto;
  margin-right: auto; */
}

.about-cert .content {
  /* width: 700px;

  display: block;
  margin-left: auto;
  margin-right: auto; */
}

.about-cert .box-cert {
  float: left;
  width: 270px;
  padding: 20px;
}

.about-cert img {
  width: 100%;
}




/*--------------------------------------------------------------
# About - History
--------------------------------------------------------------*/
.history {

}

.history .title {
  font-size: 27px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.08;
  letter-spacing: 6px;
  color: #f61067;

  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}


.history .history-year .year{
  float: left;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #013585;
  text-align: center;

  width: 20%;
}

.history .history-year .content {
  float: left;
  width: 80%;
  margin-bottom: 20px;
}

.history .history-year .content .text {
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #013585;
  text-align: left;
}


/*--------------------------------------------------------------
# Usecase
--------------------------------------------------------------*/
.usecase-voice {
  /* background-color: #fcfcfc; */
  margin-bottom: 50px;
}

.line {
  border-bottom: 1px solid #f61067;
}

.usecase-voice .content {
  width: 80%;
  padding: 30px;
}

.usecase-voice .content .text {
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  /* font-style: italic; */
  line-height: 1.77;
  letter-spacing: normal;
  color: #30233d;

  text-align: center;
  margin-bottom: 30px;
}

.usecase-voice .content .customer {
  display: block;
  margin-left: auto;
  margin-right: auto;

  margin-bottom: 20px;
}

.usecase-voice .content .customer .company {
  float: left;

  font-size: 18px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  color: #f61067;
}

.usecase-voice .content .customer .name {
  float: left;

  font-size: 18px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  color: #30233d;

  margin-left: 10px;
}


.usercase-video {

}

.usercase-video .video {
  width: 400px;
}

.usecase-video .video img {
  width: 100%;
}

.usecase-video .video .text {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  color: #30233d;

  text-align: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #010351; */
  /* background: #23549d; */
  background: #143970;
  /* padding: 0 0 30px 0; */
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  /* float: left; */
  /* margin-bottom: 15px; */
  /* background: #010246; */
  /* background: #23549d; */
  color: #fff;
  /* border-top: 4px solid #1acc8d; */
  text-align: center;
  padding: 30px 20px 10px;
}

#footer .footer-top .footer-info img {
  float: left;
  width: 108px;
  height: 38px;
}

#footer .footer-top .footer-info .copyright {
  /* border-top: 1px solid #010479; */
  float: left;
  /* height: 38px; */
  margin-left: 15px;
  margin-top: 17px;
  /* padding-top: 30px; */
}

#footer .footer-top .footer-contact {
  /* margin-left: 10px; */
  display: block;
  padding: 25px 30px 10px;
  margin-left: auto;
  margin-right: auto;
}

#footer .footer-top .footer-contact .contactus {
  width: 100px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-contact .email {
  float: left;
}

#footer .footer-top .footer-contact .email .email-icon {
  float: left;
  margin-top: 7px;
}

#footer .footer-top .footer-contact .email .email-text {
  float: left;
  margin-left: 5px;
}

#footer .footer-top .footer-contact .phone {
  float: left;
  margin-left: 10px;
}

#footer .footer-top .footer-contact .phone .phone-icon {
  float: left;
  margin-top: 4px;
}

#footer .footer-top .footer-contact .phone .phone-text {
  float: left;
  margin-left: 5px;
}

/*
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

 #footer .footer-top .social-links a:hover {
  background: #1acc8d;
  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-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: #61ebba;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .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: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #149f6e;
} */


/* #footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
} */

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
