/* aboutcom1 */
#aboutcom1 .sec1 {
    background: url(../img/aboutcom1_1.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
#aboutcom1 .sec1 .right-txt {
    position: absolute;
    left: 50%;
    top: 0;
}
#aboutcom1 .sec1 .bigtit {
    font-size: 200px;
    line-height: 1em;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
}
#aboutcom1 .sec1 .iconWrp {
    margin: 10px 0 30px;
    text-align: center;
    max-width: 500px;
}
#aboutcom1 .sec1 .iconWrp .icon span {
    display: inline-block;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
#aboutcom1 .sec1 .iconWrp .icon span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/st_out.png) center center no-repeat;
    background-size: 100%;
    
    animation: spin1 10s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes spin1 {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}
#aboutcom1 .sec1 .iconWrp li:nth-child(2) .icon span:after {
    animation: spin2 10s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes spin2 {
	from {transform: rotate(50deg);}
	to {transform: rotate(410deg);}
}
#aboutcom1 .sec1 .iconWrp li:nth-child(3) .icon span:after {
    animation: spin3 10s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes spin3 {
	from {transform: rotate(100deg);}
	to {transform: rotate(460deg);}
}
#aboutcom1 .sec1 .iconWrp .icon img {
    border: 2px solid rgba(20, 166, 195, 0.3);
    border-radius: 50%;
}
#aboutcom1 .sec2 ul li {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
}
#aboutcom1 .sec2 ul li > .txt {
    padding: 0 40px;
}
@media (min-width:768px){
    #aboutcom1 .sec2 ul li {
        flex-wrap: nowrap;
    }
    #aboutcom1 .sec2 ul li > div {
        width: 50%;
    }
}
@media (max-width:992px){
    #aboutcom1 .sec1 .txt {
        word-break: keep-all;
    }
    #aboutcom1 .sec1 .txt .bigtit {
        font-size: 130px;
    }
    #aboutcom1 .sec1 .right-txt {
        left: 5px;
    }
    #aboutcom1 .sec2 ul li {
        flex-wrap: wrap;
    }
    #aboutcom1 .sec2 ul li > .txt,
    #aboutcom1 .sec2 ul li > .img {
        width: 100%;
    }
    #aboutcom1 .sec2 ul li > .txt {
        order: 2;
        padding: 50px 20px;
    }
    #aboutcom1 .sec2 ul li > .img img {
        width: 100%;
        order: 1;
    }
}
@media (max-width:768px){
    #aboutcom1 .sec1 .right-txt {
        display: none;
    }
    #aboutcom1 .sec1 .txt .bigtit {
        text-align: center;
        font-size: 100px;
    }
    #aboutcom1 .sec2 ul li > .txt {
        order: 2;
        padding: 30px 15px;
    }
}
/* aboutcom2 */
#aboutcom2 .sec1 {
    position: relative;
    overflow: hidden;
}
#aboutcom2 .sec1 .container {
    position: relative;
    z-index: 3;
}
#aboutcom2 .sec1 .txtFloat {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#aboutcom2 .sec1 .txtFloat h1 {
    font-size: 150px;
    white-space: nowrap;
    opacity: 0.05;
}
#aboutcom2 .sec2 {
    background: url(../img/aboutcom2_1.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
#aboutcom2 .sec2 .bg_sym {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
#aboutcom2 .sec2 .container {
    position: relative;
    z-index: 3;
}
#aboutcom2 .sec2 ul li .item {
    position: relative;
    padding-left: 110px;
}
#aboutcom2 .sec2 ul li .item .chkbox {
    position: absolute;
    left: 0;
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #14a5c3;
    box-shadow: 0 0 14px #00d3ff;
}
#aboutcom2 .sec2 ul li .item .chkbox:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background: url(../img/chkItem.png) center center no-repeat;
    opacity: 0;

    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition-delay: 1s;
}
#aboutcom2 .sec2 ul li.appear-animation-visible .item .chkbox:after {
    opacity: 1;
}
#aboutcom2 .counters li {
    position: relative;
}
#aboutcom2 .counters .bt h2 {
    font-size: 50px;
    font-weight: 800;
    display: inline-block;
}
#aboutcom2 .counters .bt .numInfo {
    margin-right: 15px;
    display: inline-block;
    margin-top: 15px;
}
#aboutcom2 .counters .bt span {
    color: #999;
    font-size: 20px;
}
#aboutcom2 .counters h4 {
    line-height: 1.2em;
}
#aboutcom2 .counters h4 span {
    font-weight: 700;
    color: #222;
}
@media (min-width:992px){
    #aboutcom2 .sec2 {
        background-attachment: fixed;
    }
}
@media (max-width:768px){
    #aboutcom2 .counters .bt h2 {
        font-size: 30px;
    }
    #aboutcom2 .sec2 ul li .item {
        padding-left: 65px;
    }
    #aboutcom2 .sec2 ul li .item .chkbox {
        top: calc(50% - 25px);
        width: 50px;
        height: 50px;
    }
    #aboutcom2 .sec2 ul li .item .chkbox:after {
        background-size: 45px;
    }
    #aboutcom2 .counters .bt .numInfo {
        margin-top: 5px;
    }
    #aboutcom2 .counters .bt span {
        font-size: 13px;
        color: #fff;
    }
}
/* hisList */
.hisList {
    position: relative;
}
.hisList:after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    background: url(../img/his_bg.png) center center no-repeat;
    background-attachment: fixed;
    background-color: #eee;
    top: 0;
    height: 100%;
    width: 3px;
}
.hisList > li {
    margin: 60px 0;
    padding-left: 40px;
    position: relative;
    z-index: 3;
}
.hisList > li ul {
    margin-top: 20px;
}
.hisList > li ul li {
    margin: 15px 0;
}
.hisList > li ul li h4 {
    position: relative;
    padding-left: 120px;
    word-break: keep-all;
    color: #444;
    font-weight: 300;
    position: relative;
}
.hisList > li ul li h4:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: -45px;
    height: 11px;
    width: 11px;
    border: 2px solid #0a2543;
    background-color: #fff;
    border-radius: 50%;
}
.hisList > li ul li h4 > strong {
    position: absolute;
    left: 0;
    color: #111;
    font-weight: 700;
}
@media (min-width:768px){
    .hisList > li {
        width: 50%;
    }
    .hisList > li:nth-child(odd) {
        margin-left: 50%;
    }
    .hisList > li:nth-child(even) {
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .hisList > li:nth-child(even) ul li h4 {
        padding-right: 120px;
        padding-left: 0;
    }
    .hisList > li:nth-child(even) ul li h4 > strong {
        left: auto;
        right: 0;
    }
    .hisList > li:nth-child(even) ul li h4:after {
        left: auto;
        right: -46px;
    }
}
@media (max-width:768px){
    .hisList:after {
        background: #eee;
        left: -2px;
    }
    .hisList > li {
        padding-left: 20px;
    }
    .hisList > li ul li h4 {
        padding-left: 70px;
    }
    .hisList > li ul li h4:after {
        left: -25px;
        height: 9px;
        width: 9px;
    }
}


/* table_basic */
.table.table_basic {
    border-top: 2px solid #333;
}
.table.table_basic tr th,
.table.table_basic tr td {
    font-size: 17px;
    text-align: center;
    font-weight: 300;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px;
    vertical-align: middle;
}
.table.table_basic tr th:first-child,
.table.table_basic tr td:first-child {
    border-left: 0px;
}
.table.table_basic tr th:last-child,
.table.table_basic tr td:last-child {
    border-right: 0px;
}
.table.table_basic tr th {
    font-weight: 500;
}
.table.table_basic thead tr th {
    background-color: #fff;
    border-bottom: 2px solid #333;
}
.table.table_basic tbody tr th {
    background-color: #f8f8f8;
}
.table.table_basic tr.this td {
    background-color: #fdf9ef;
}
@media (max-width:768px) {
    .table.table_basic tr th,
    .table.table_basic tr td {
        font-size: 13px;
        padding: 8px 5px;
    }
}
@media (max-width:992px){
    .oft {
        overflow-x: scroll;
    }
    .oft .table.table_basic {
        width: 900px;
    }
}

/* aboutcom3 */
#aboutcom3 .sec1 .fbox {
    display: flex;
    flex-wrap: nowrap;
}
@media (min-width:992px){
    #aboutcom3 .sec1 .fbox .txt {
        padding-right: 40px;
    }
}
@media (max-width:992px){
    #aboutcom3 .sec1 .fbox {
        flex-wrap: wrap;
    }
    #aboutcom3 .sec1 .fbox > div {
        width: 100%;
    }
    #aboutcom3 .sec1 .fbox .txt {
        text-align: center;
    }
}

/*aboutcom3*/
#aboutcom3 .sec2 {
	position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}
/* #aboutcom3 .sec2:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 60%;
    bottom: 0%;
    left: 0;
    background-color: #f9f9f9;
} */
#aboutcom3 .sub_container {
	position: relative;
	z-index: 3;
}
#aboutcom3 .dx_map .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
#aboutcom3 .dx_map .root_daum_roughmap .wrap_map,
#aboutcom3 .dx_map iframe {
    height: 500px !important;
}
#aboutcom3 .local_info > ul > li {
    font-size: 16px;
    line-height: 1.6em;
    color: #666;
    font-weight: 300;
	word-break: keep-all;
	position: relative;
}
#aboutcom3 .local_info > h3 img {
    width: 200px;
}
#aboutcom3 .local_info ul li h4 {
    color: #111;
    margin-bottom: 5px;
}
#aboutcom3 .local_info ul li h4 img {
    width: 40px;
}
@media (min-width:1400px){
	#aboutcom3 .local_info {
        padding-left: 400px;
    }
}
@media (max-width:1400px) and (min-width:992px){
	#aboutcom3 .local_info {
        padding-left: 300px;
    }
	#aboutcom3 .local_info > ul > li {
        padding: 0 10%;
    }
}
@media (min-width:992px){
	#aboutcom3 .local_info {
		position: relative;
		padding-right: 9%;
	}
	#aboutcom3 .local_info > ul {    
		display: flex;
	}
	#aboutcom3 .local_info > ul > li {
        padding: 0 5%;
    }
	#aboutcom3 .local_info > .fullLeft {
		position: absolute;
		left: 0;
		top: -5px;
		line-height: 1em;
	}
}
@media (max-width:992px){
	#aboutcom3 .sec2 {
		padding-bottom: 0px !important;
	}
	#aboutcom3 .sec2 .local_info {
		padding: 40px 0;
		margin-top: 0px;
	}
	#aboutcom3 .local_info > ul > li {
		margin-top: 20px;
	}
	#aboutcom3 .local_info h4 {
		margin-bottom: 5px;
	}
}
@media (max-width:768px) {
	#aboutcom3 .dx_map .root_daum_roughmap .wrap_map,
	#aboutcom3 .dx_map iframe {
		height: 250px !important;
	}
	#aboutcom3 .local_info > ul > li > ul > li {
		font-size: 14px;
	}
    #aboutcom3 .local_info ul li h4 img {
        width: 30px;
        vertical-align: middle;
    }
}


/* stepsUseage */
.stepsUseage {
    border: 3px solid #ddd;
    padding: 30px 40px;
    margin-top: 25px;
}
.stepsUseage ul li {
    margin: 15px 0;
    position: relative;
}
.stepsUseage ul li .dot {
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
}
/* .stepsUseage .stepItem {
    padding-right: 20px;
} */
.stepsUseage .stepItem .icon {
    text-align: center;
}
.stepsUseage .stepItem .txt .nums {
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.stepsUseage .stepItem .txt .nums span {
    color: #333;
}
.stepsUseage .stepItem .txt p {
    line-height: 1.3em;
}
@media (min-width: 768px) {
    .stepsUseage ul {
        margin: 0 -20px;
    }
    .stepsUseage ul li {
        padding: 0 20px;
    }
    .stepsUseage .stepItem {
        text-align: center;
    }
    .stepsUseage .stepItem .txt {
        width: 120px;
        height: 120px;
        border: 2px solid #eee;
        background-color: #eee;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        padding: 0px;
    }
    .stepsUseage li:last-child .stepItem .txt {
        background-color: #032938;
    }
    .stepsUseage li:last-child .stepItem .txt h5,
    .stepsUseage li:last-child .stepItem .txt p,
    .stepsUseage li:last-child .stepItem .txt p span {
        color: #fff;
    }
    .stepsUseage li:last-child .stepItem .txt .nums {
        color: rgba(255, 255, 255, 0.5);
    }
}
@media (min-width: 1400px) {
    .stepsUseage .stepItem .txt {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 992px) and (min-width: 768px) {
    .stepsUseage ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .stepsUseage {
        border: 0px;
        padding: 0;
    }
    .stepsUseage ul li {
        margin: 0px;
    }
    .stepsUseage ul li:not(:last-child) .stepItem {
        border-bottom: 1px solid #ddd;
    }
    .stepsUseage ul li .dot {
        display: none;
    }
    .stepsUseage .stepItem {
        padding: 15px ;
        border: 1px solid #ddd;
        margin-top: -1px;
        text-align: center;
    }
    .stepsUseage .stepItem .icon {
        width: 35%;
    }
    .stepsUseage .stepItem .icon img {
        width: 60px;
    }
}

/**
 * ==============================================
 * Dot Stretching
 * ==============================================
 */
 .dot-stretching {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #aaa;
    color: #aaa;
    transform: scale(1.25, 1.25);
    animation: dotStretching 2.5s infinite ease-in;
  }
  
  .dot-stretching::before, .dot-stretching::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
  }
  
  .dot-stretching::before {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ddd;
    color: #ddd;
    animation: dotStretchingBefore 2.5s infinite ease-in;
  }
  
  .dot-stretching::after {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ddd;
    color: #ddd;
    animation: dotStretchingAfter 2.5s infinite ease-in;
  }
  
  @keyframes dotStretching {
    0% {
      transform: scale(1.25, 1.25);
    }
    50%,
    60% {
      transform: scale(0.8, 0.8);
    }
    100% {
      transform: scale(1.25, 1.25);
    }
  }
  
  @keyframes dotStretchingBefore {
    0% {
      transform: translate(0) scale(0.7, 0.7);
    }
    50%,
    60% {
      transform: translate(-15px) scale(1, 1);
    }
    100% {
      transform: translate(0) scale(0.7, 0.7);
    }
  }
  
  @keyframes dotStretchingAfter {
    0% {
      transform: translate(0) scale(0.7, 0.7);
    }
    50%,
    60% {
      transform: translate(15px) scale(1, 1);
    }
    100% {
      transform: translate(0) scale(0.7, 0.7);
    }
}

/* workenv */
.workenv .item {
    border-radius: 30px;
    padding: 40px 15px;
    box-shadow: 10px 10px 30px rgb(0 0 0 / 5%);
    border: 1px solid #ddd;
}
.workenv .item .txt {
    margin-top: 10px;
}
@media (max-width:1200px) and (min-width:768px){
    .workenv li {
        margin: 15px 0;
    }
    .workenv .item .txt h6 {
        height: 40px;
    }
}
@media (max-width:768px){
    .workenv li {
        margin: 10px 0;
    }
    .workenv .icon img {
        width: 30px;
    }
    .workenv .txt {
        width: 70%;
        padding-left: 15px;
        text-align: left;
    }
    .workenv .item {
        border-radius: 10px;
        padding: 20px 15px;
    }
}


/* formWrp */
.formWrp {
    max-width: 1000px;
    margin: 0 auto;
}
.formWrp ul li {
    margin: 20px 0;
}
.formWrp .formItem label {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}
.formWrp .formItem .form-control:not(textarea) {
    height: 45px;
}
.formWrp .formItem .form-control {
    padding: 4px 0;
    border: 0px;
    box-shadow:  0 0 0;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    background: transparent;
}
.formWrp .formItem .form-control:focus {
    border-color: #14a5c3;
}
.formWrp .formItem .radio-custom {
    display: inline-block;
    margin: 0 15px 0 0;
}
.formWrp .formItem .radio-custom label {
    font-weight: 300;
    margin: 0px;
}
.formWrp .formItem .input-group-addon {
    border-width: 2px;
}
.formWrp .formItem .input-group .form-control {
    border-radius: 0 4px 4px 0;
}
.formWrp .fileupload {
    margin-top: 10px;
}
.formWrp .fileupload .uneditable-input {
    position: relative;
}
.formWrp .fileupload .uneditable-input .fa {
    left: 10px;
}
.formWrp .chc .checkbox-custom {
	display: inline-block;
}
.formWrp .chc .checkbox-custom label {
    font-size: 15px;
    font-weight: 400;
}
.formWrp .chc .agr {
	display: inline-block;
	background-color: #fff;
	color: #666;
    border: 1px solid #ddd;
	font-size: 13px;
	font-weight: 300;
	padding: 9px 10px;
	margin-left: 5px;
	line-height: 1em;
	cursor: pointer;
}
@media (min-width:992px) {
    .formWrp {
        background-color: #f7f7f7;
        padding: 60px;
    }
}
@media (min-width:768px) {
    .formWrp .chkWrp {
        display: inline-block;
        padding-left: 15px;
    }
}
@media (max-width:768px) {
    .formWrp {
        padding: 0 15px;
    }
    .formWrp ul li {
        margin: 20px 0;
    }
    .formWrp .formItem .form-control {
        padding: 3px 5px;
    }
    .formWrp .formItem label {
        font-size: 14px;
    }
    .formWrp .chc .checkbox-custom label {
        font-size: 13px;
    }
    .formWrp .chc .agr {
        font-size: 11px;
        padding: 5px 2px;
        margin-left: 2px;
    }
}

/* docstory1 */
#docstory1 .sec1 {
    position: relative;
}
#docstory1 .sec1 .txt h1 {
    font-size: 100px;
    text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
}
#docstory1 .sec1 .txt h3 {
    text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
#docstory1 .sec1 .txt ul {
    max-width: 580px;
}
#docstory1 .sec1 .txt ul li .c_wrp {
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}
#docstory1 .sec1 .txt ul li p {
    color: #111;
    line-height: 1.2em;
    margin-top: 5px;
}
@media (min-width:992px){
    #docstory1 .sec1 .txt {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    #docstory1 .sec1 .txt ul li .c_wrp {
        height: 180px;
    }
}
@media (max-width:992px){
    #docstory1 .sec1 .txt {
        margin-bottom: -10%;
    }
    #docstory1 .sec1 .txt h1 {
        font-size: 80px;
    }
    #docstory1 .sec1 .txt ul li .c_wrp {
        height: 130px;
        padding: 0 15px;
    }
}
@media (max-width:768px){
    #docstory1 .sec1 .txt {
        text-align: center;
    }
    #docstory1 .sec1 .txt h1 {
        font-size: 50px;
    }
}

/* docstory1 :: sec2 */
#docstory1 .sec2 {
    position: relative;
}
#docstory1 .sec2:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 100%;
    height: 50%;
    background-color: #191923;
}
#docstory1 .sec2 .imgBox {
    position: relative;
    z-index: 3;
}
#docstory1 .sec2 .imgBox > ul > li {
    position: relative;
}
#docstory1 .sec2 .imgBox > ul > li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 1px);width: 100%;
    border-bottom: 2px dashed #fff;
}
#docstory1 .sec2 .imgBox {
    background-color: #3d60cf;
    padding: 60px;
    text-align: center;
}
#docstory1 .sec2 .imgBox .circleBox {
    height: 310px;
    width: 310px;
    border: 2px dashed #fff;
    border-radius: 50%;
    display: inline-block;
    background-color: #3d60cf;
    position: relative;
    z-index: 3;
}
#docstory1 .sec2 .imgBox .circleBox h4 {
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}
@media (max-width:1200px){
    #docstory1 .sec2 .imgBox .circleBox {
        height: 250px;
        width: 250px;
    }
    #docstory1 .sec2 .imgBox .circleBox img {
        width: 80px;
    }
}
@media (max-width:992px){
    #docstory1 .sec2 .imgBox {
        padding: 40px 20px;
    }
    #docstory1 .sec2 .imgBox .circleBox {
        height: 200px;
        width: 200px;
    }
    #docstory1 .sec2 .imgBox .circleBox img {
        width: 50px;
    }
}
@media (max-width:768px){
    #docstory1 .sec2 .imgBox {
        padding: 15px;
    }
    #docstory1 .sec2 .imgBox ul li {
        padding: 5px !important;
    }
    #docstory1 .sec2 .imgBox .circleBox {
        height: auto;
        width: 100%;
        border-radius: 0px;
        padding: 15px;
        border-width: 1px;
    }
    #docstory1 .sec2 .imgBox > ul > li:not(:last-child)::after {    
        border-width: 1px;
        bottom: 100%;
        left: 50%;
        height: 100%;
        width: 1px;
        border-left: 1px dashed #fff;
    }
    #docstory1 .sec2 .imgBox .circleBox h4 {
        font-size: 14px;
        line-height: 1.2em;
    }
}
/* docstory1 :: sec3 */
#docstory1 .sec3 {
    background-color: #191923;
}
#docstory1 .sec3 ul li {
    display: flex;
    align-items: center;
}
#docstory1 .sec3 .txt {
    padding: 0 40px;
}
#docstory1 .sec3 .txt .lined {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    line-height: 0px;
    margin: 15px 0;
}
@media (min-width:992px){
    #docstory1 .sec3.sec4 {
        background: url(../img/doc_bg.png) center bottom no-repeat;
        background-color: #191923;
    }
}
@media (min-width:768px){
    #docstory1 .sec3 ul li {
        flex-wrap: nowrap;
    }
    #docstory1 .sec3 ul li > div {
        width: 50%;
    }
}
@media (max-width:992px){
    #docstory1 .sec3 ul li {
        flex-wrap: wrap;
    }
    #docstory1 .sec3 .txt,
    #docstory1 .sec3 .img {
        width: 100%;
    }
    #docstory1 .sec3 .txt {
        order: 2;
        padding: 50px 20px;
    }
    #docstory1 .sec3 .img img {
        width: 100%;
        order: 1;
    }
}
@media (max-width:768px){
    #docstory1 .sec3 .img {
        order: 2;
    }
    #docstory1 .sec3 .txt {
        order: 1;
        padding: 30px 15px;
    }
    #docstory1 .sec3 .txt h1 {
        line-height: 1.3em;
    }
    #docstory1 .sec3 .txt .lined {
        width: 20px;
        margin: 5px 0;
    }
    #docstory1 .sec3.sec4 {
        padding-top: 0;
    }
    #docstory1 .sec3.sec4 .txt {
        text-align: left;
    }
}
/* docstory1 :: sec5 */
#docstory1 .sec5 {
    overflow: hidden;
}
/* productInfo */
#productInfo .slick-slide img {
    display: inline-block;
    margin: 0 auto;
}
.owl-theme .owl-dots {
    margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: #aaa;
    opacity: 1;
}
.owl-theme .owl-dots .owl-dot.active span {
    background-color: #14a5c3;
}
.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.slick-dots li button {
    background-color: #aaa;
    opacity: 1;
}
.slick-dots li.slick-active button {
    background-color: #14a5c3;
}
/* prdCom */
.prdCom.prd1 {
    background-color: #eee;
}
.prdCom .fbox {
    display: flex;
    flex-wrap: nowrap;
}
.prdCom .fbox > div {
    width: 50%;
}
.prdCom.prd3 .fbox .ibox,
.prdCom.prd1 .fbox .ibox {
    text-align: right;
}
.prdCom .fbox .pt .ptTit span {
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    padding: 0 35px;
    border-radius: 100px;
    font-weight: 600;
    position: relative;
    border-color: #14a5c3;
    color: #fff;
    background-color: #14a5c3;
}
.prdCom .fbox .pt ul {
    margin: 0 -5px;
}
.prdCom .fbox .pt ul li {
    padding: 0 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.prdCom .fbox .pt ul li .c_wrp {
    border: 1px solid #aaa;
    height: 120px;
}
.prdCom .fbox .pt ul li .c_wrp .icon {
    padding: 15px;
    width: 35%;
    text-align: center;
}
.prdCom .fbox .pt .targ span {
    display: inline-block;
    padding-left: 30px;
    margin-right: 20px;
    background: url(../img/targ_arr.png) left center no-repeat;
}
@media (min-width:992px){
    .prdCom.prd3 .fbox .ibox,
    .prdCom.prd1 .fbox .ibox {
        padding-left: 30px;
    }
    .prdCom.prd2 .fbox .ibox {
        padding-right: 30px;
    } 
}
@media (max-width:992px){
    .prdCom .fbox {
        flex-wrap: wrap;
    }
    .prdCom .fbox > div {
        width: 100%;
    }
    .prdCom .fbox .ibox {
        order: 1;
    }
    .prdCom.prd3 .fbox .ibox, 
    .prdCom.prd1 .fbox .ibox {
        text-align: center;
    }
    .prdCom .fbox .tbox {
        order: 2;
        padding-top: 30px;
    }
    .prdCom.prd3 .fbox .ibox {
        order: 2;
        padding-top: 30px;
    }
    .prdCom.prd3 .fbox .tbox {
        order: 1;
        padding-top: 0;
    }
    .prdCom .fbox .pt ul li .c_wrp {
        height: 100px;
        padding: 15px;
    }
    .prdCom .fbox .pt ul li .c_wrp .icon {
        width: 35%;
        padding: 0px;
    }
    .prdCom .fbox .pt ul li .c_wrp .icon img {
        width: 40px;
    }
    .prdCom .fbox .pt .ptTit span {
        font-size: 15px;
        line-height: 30px;
        padding: 0 25px;
    }
}
@media (max-width:768px){
    .prdCom .fbox .pt .targ span {
        display: block;
    }
}


/* smtech1 */
#smtech1 .sec1 {
    background-color: #101758;
}
#smtech1 .sec1 .fbox > li {
    text-align: center;
    position: relative;
}
#smtech1 .sec1 .ware li {
    margin: 10px 0;
}
#smtech1 .sec1 .ware li h5 {
    line-height: 1.2em;
    padding: 15px;
    background-color: #b70000;
    border: 1px dashed #fff;
    border-radius: 100px;
}
#smtech1 .sec1 .doc {
    border: 2px solid #36d6cc;
    border-radius: 30px;
    padding: 20px;
}
#smtech1 .sec1 .doc h6 {
    opacity: 0.5;
    position: relative;
}
#smtech1 .sec1 .doc h6:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #101758);
}
#smtech1 .sec1 .docList {
    border: 1px solid #283290;
    background-color: #060c45;
    padding: 20px;
}
@media (min-width:992px){
    #smtech1 .sec1 .fbox {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #smtech1 .sec1 .fbox > li {
        width: 30%;
    }
    #smtech1 .sec1 .docList,
    #smtech1 .sec1 .doc {
        height: 700px;
    }
    #smtech1 .sec1 .fbox > li::after {
        content: "";
        position: absolute;
        top: 0;
        height: 100%;
    }
    #smtech1 .sec1 .fbox > li:nth-child(1)::after {
        background: url(../img/blocked.png) right center no-repeat;
        width: 145px;
        right: -60px;
    }
    #smtech1 .sec1 .fbox > li:nth-child(2)::after {
        background: url(../img/linked.png) right center no-repeat;
        width: 103px;
        right: -103px;
    }
}
@media (max-width:992px){
    #smtech1 .sec1 .fbox > li {
        padding: 30px 0;
    }
    #smtech1 .sec1 .fbox > li img {
        max-width: 70%;
    }
    #smtech1 .sec1 .docList,
    #smtech1 .sec1 .doc {
        padding: 40px 20px;
    }
    #smtech1 .sec1 .docList .conbox,
    #smtech1 .sec1 .doc .conbox {
        margin-top: 10px;
    }
    #smtech1 .sec1 .ware li {
        display: inline-block;
        margin: 5px 2px;
    }
    #smtech1 .sec1 .ware li h5 {
        padding: 5px 15px;
    }
    #smtech1 .sec1 .fbox > li::after {
        content: "";
        position: absolute;
        width: 100%;
        left: 0;
    }
    #smtech1 .sec1 .fbox > li:nth-child(1)::after {
        background: url(../img/blocked_m.png) center center no-repeat;
        height: 90px;
        background-size: contain !important;
        top: auto;
        bottom: -20px;
    }
    #smtech1 .sec1 .fbox > li:nth-child(2)::after {
        background: url(../img/linked_m.png) center center no-repeat;
        height: 70px;
        background-size: contain !important;
        top: calc(100% - 25px);
    }
}
/* smtech2 */
#smtech2 .sec1 {
    background-color: #0a0d30;
    position: relative;
    overflow: hidden;
    background: url(../img/smtech2_bg.png) center top no-repeat;
    background-size: cover;
}
#smtech2 .sec1  canvas {
    width: 100%;
}
#smtech2 .sec1 .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: url(../img/visual_bg.png) right center no-repeat; */

    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
#smtech2 .sec1 .container {
    position: relative;
    z-index: 5;
}
#smtech2 .sec1 .img {
    border: 1px solid #283290;
    background-color: #060c45;
    padding: 50px;
    display: inline-block;
    border-radius: 30px;
}
@media (max-width:768px){
    #smtech2 .sec1 .img {
        padding: 10px;
        border-radius: 10px;
    }
}
/* smtech2 */
#smtech2 .sec2 {
    background-color: #0a0d30;
    position: relative;
    overflow: hidden;
    background: url(../img/smtech2_bg.png) center top no-repeat;
    background-size: cover;
}
#smtech2 .sec2 .img {
    border: 1px solid #283290;
    background-color: #060c45;
    padding: 50px;
    display: inline-block;
    border-radius: 30px;
    width: 100%;
}
@media (max-width:768px){
    #smtech2 .sec2 .img {
        padding: 10px;
        border-radius: 10px;
    }
}
/* docAuto */
.docAuto {
    width: 100%;
    border-left: 1px solid #838aca;
    border-right: 1px solid #838aca;
}
.docAuto .fbox {
    display: flex;
    flex-wrap: nowrap;
}
.docAuto .mdBox .fbox > div {
    padding: 25px 5px;
}
.docAuto .mdBox .fbox > div.box1 {
    width: 60%;
}
.docAuto .mdBox .fbox > div.box2,
.docAuto .mdBox .fbox > div.box3 {
    width: 20%;
}
.docAuto .mdBox .fbox > div.box3 {
    border-left: 1px dashed #838aca;
}
.docAuto .mdBox .fbox > div .c_wrp {
    border: 2px solid #36d6cc;
    border-radius: 30px;
    height: 150px;
}
.docAuto .mdBox .fbox > div .c_wrp h4 {
    color: #36d6cc;
    font-weight: 700;
}
.docAuto .mdBox .fbox > div.box2 .c_wrp {
    border-color: #409bfb;
}
.docAuto .mdBox .fbox > div.box2 .c_wrp h4 {
    color: #409bfb;
}
.docAuto .mdBox .fbox > div.box3 .c_wrp {
    border-color: #838aca;
}
.docAuto .mdBox .fbox > div.box3 .c_wrp h4 {
    color: #838aca;
}
.docAuto .gradi h4 {
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}
.docAuto .gradi h4:after {
    content: "";
    position: absolute;
    border-width: 7px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    left: -8px;
    top: calc(50% - 7px);
}
.docAuto .gradi h4:before {
    content: "";
    position: absolute;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    right: -8px;
    top: calc(50% - 7px);
}
.docAuto .gradi.top h4 {
    background: linear-gradient(to left, transparent 0%, #56173E 29%, #56173E 70%, transparent 100%);
}
.docAuto .gradi.bt .sp1 {
    width: 80%;
}
.docAuto .gradi.bt .sp2 {
    width: 20%;
    border-left: 1px dashed #838aca;
}
.docAuto .gradi.bt .sp1 h4 {
    background: linear-gradient(to left, transparent 0%, #144480 29%, #144480 70%, transparent 100%);
}
.docAuto .gradi.bt .sp2 h4 {
    background: linear-gradient(to left, transparent 0%, #56173E 29%, #56173E 70%, transparent 100%);
}
.docAuto .gradi h4 > span {
    display: inline-block;
    position: relative;
}
.docAuto .gradi h4 > span:after,
.docAuto .gradi h4 > span:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1000px;
    height: 1px;
    border-bottom: 1px dashed #fff;
}
.docAuto .gradi h4 > span:before {
    left: 110%;
}
.docAuto .gradi h4 > span:after {
    right: 110%;
}
@media (max-width:768px){
    .docAuto .mdBox .fbox > div.box1 {
        width: 50%;
    }
    .docAuto .mdBox .fbox > div.box2,
    .docAuto .mdBox .fbox > div.box3 {
        width: 25%;
    }
    .docAuto .gradi.bt .sp1 {
        width: 75%;
    }
    .docAuto .gradi.bt .sp2 {
        width: 25%;
    }
    .docAuto .mdBox .fbox > div .c_wrp {
        border-radius: 10px;
    }
}
@media (max-width:400px){
    .docAuto .gradi h4,
    .docAuto .mdBox .fbox > div .c_wrp h4 {
        font-size: 12px;
        letter-spacing: -0.06em;
    }
    .docAuto .gradi h4 > span:before {
        left: 105%;
    }
    .docAuto .gradi h4 > span:after {
        right: 105%;
    }
}
/* conList */
.conList > li {
    padding: 40px;
    border-top: 1px solid #ddd;
}
@media (max-width:992px){
    .conList > li {
        padding: 40px 0;
    }
}

/* smtech3 */
#smtech3 .fbox {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#smtech3 .fbox .tbox {
    width: 60%;
}
#smtech3 .fbox .ibox {
    width: 40%;
    text-align: center;
}
#smtech3 .iwr {
    background-color: #f7f7f7;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
}
@media (max-width:992px){
    #smtech3 .fbox {
        flex-wrap: wrap;
    }
    #smtech3 .fbox .tbox,
    #smtech3 .fbox .ibox {
        width: 100%;
    }
    #smtech3 .fbox .ibox {
        padding-top: 20px;
    }
}