@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul {
  list-style: inside;
}

body {
  font-family: "arial", sans-serif;
  /*font-family: 'Roboto', sans-serif;*/
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #333333;
}

img {
  vertical-align: top;
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wow {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

body.no-scroll {
  position: fixed;
  left: 0;
  width: 100%;
}

.sp-on {
  display: none;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .sp-on {
    display: block;
  }
  .sp-off {
    display: none;
  }
}
#wrapper {
  background: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #wrapper {
    padding-top: 60px;
  }
}

.container {
  max-width: 1144px;
  margin: 0 auto;
}
@media screen and (max-width: 1144px) {
  .container {
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    margin: 0 10px;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  #header {
    background: #fff;
    -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
  }
}
#header.fixed {
  background: #fff;
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #header.fixed {
    background: #fff;
    -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
  }
}
#header.fixed .container #gnav > ul > li > a {
  color: #333;
}
#header.fixed .container .logo img:nth-child(1) {
  display: none;
}
#header.fixed .container .logo img:nth-child(2) {
  display: block;
}
@media screen and (max-width: 767px) {
  #header.fixed .container .logo img:nth-child(1) {
    display: none;
  }
  #header.fixed .container .logo img:nth-child(2) {
    display: block;
  }
}
#header.fixed .container .sns-top ul li img:nth-child(1) {
  display: none;
}
#header.fixed .container .sns-top ul li img:nth-child(2) {
  display: block;
}
#header .container {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  #header .container {
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 15px;
    margin: 0;
  }
}
#header .container .logo {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #header .container .logo {
    left: 15px;
  }
}
#header .container .logo img {
  height: auto;
  width: 200px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#header .container .logo img:nth-child(2) {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .container .logo img:nth-child(2) {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #header .container .logo img {
    height: 40px;
  }
  #header .container .logo img:nth-child(1) {
    display: none;
  }
}
#header .container .sns-top {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  #header .container .sns-top {
    display: none;
  }
}
#header .container .sns-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
#header .container .sns-top ul li {
  margin-left: 20px;
}
#header .container .sns-top ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .container .sns-top ul li img {
  height: 16px;
  width: auto;
}
#header .container .sns-top ul li img:nth-child(2) {
  display: none;
}
#header .container #gnav {
  margin-left: auto;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  #header .container #gnav {
    background: #fff;
    /*background: rgba(0,0,0,.9);*/
    width: 100%;
    height: calc(100vh - 60px);
    display: none;
    overflow: scroll;
    position: absolute;
    top: 60px;
    left: 0;
    bottom: 0;
    z-index: 9998;
    /*transition: all .3s;*/
  }
}
#header .container #gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#header .container #gnav ul li {
  list-style: none;
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li {
    display: block;
    border-bottom: 1px solid #666;
  }
}
#header .container #gnav ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /*position: relative;*/
  /*&:after {
  	content: "";
  	width: 100%;
  	height: 4px;
  	background: #000033;
  	position: absolute;
  	bottom: 0;
  	left: 0;
  }*/
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li a {
    display: block;
    color: #333;
    padding: 15px 20px;
  }
}
#header .container #gnav ul li a:hover {
  color: #f56616;
}
#header .container #gnav ul li.arrow {
  position: relative;
}
#header .container #gnav ul li.arrow:after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li.arrow:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li.arrow a {
    position: relative;
  }
}
#header .container #gnav ul li.arrow a .js-toggle_switch {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li.arrow a .js-toggle_switch {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    padding: 2px;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 9999;
  }
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li.arrow a .js-toggle_switch span {
    width: 15px;
    height: 15px;
    display: block;
    position: relative;
  }
  #header .container #gnav ul li.arrow a .js-toggle_switch span:before {
    content: "";
    width: 15px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 7px;
    left: 0;
  }
  #header .container #gnav ul li.arrow a .js-toggle_switch span:after {
    content: "";
    width: 1px;
    height: 15px;
    background: #333;
    position: absolute;
    top: 0;
    left: 7px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
#header .container #gnav ul li.arrow a .js-toggle_switch.is-open span:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#header .container #gnav ul li ul {
  min-width: 240px;
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*border-radius: 10px;*/
  box-shadow: 0px 10px 14px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 10px 14px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 10px 14px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li ul {
    position: static;
    display: none;
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background: #fff;
    border-radius: 0;
    box-shadow: unset;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    padding: 0 20px;
  }
}
#header .container #gnav ul li ul li {
  display: block;
  border-bottom: 1px solid #ebebeb;
  position: relative;
  /*&:after {
  	content: "";
  	width: 0;
  	height: 0;
  	border-left: 4px solid #fff;
  	border-top: 4px solid transparent;
  	border-right: 4px solid transparent;
  	border-bottom: 4px solid transparent;
  	position: absolute;
  	left: 15px;
  	top: 50%;
  	transform: translateY(-50%);
  	@include max-screen($breakpoint_sp) {
  		display: none;
  	}
  }*/
  /*&:hover {
  	&:after {
  		border-left: 4px solid $mainColor;
  	}
  }*/
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li ul li {
    border-bottom: 1px solid #000033;
  }
}
#header .container #gnav ul li ul li:last-child {
  border: none;
}
#header .container #gnav ul li ul li a {
  display: block;
  padding-left: 25px;
  font-weight: normal;
  color: #000033;
  font-size: 14px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  #header .container #gnav ul li ul li a {
    color: #333;
    position: relative;
    line-height: 1.2;
  }
  #header .container #gnav ul li ul li a:before {
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: rotate(45deg) translateX(-50%);
            transform: rotate(45deg) translateX(-50%);
  }
}
#header .container #gnav ul li ul li a:hover {
  background: #ebebeb;
  color: #000033;
}
#header .container #gnav ul li.btn a {
  background: #000033;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#header .container #gnav ul li.btn a:hover {
  opacity: 0.8;
}
#header .container #menu-sp {
  width: 35px;
  height: 30px;
  display: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  #header .container #menu-sp {
    display: block;
  }
}
#header .container #menu-sp span {
  display: block;
  width: 35px;
  height: 2px;
  background: #333;
  position: absolute;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header .container #menu-sp span:nth-child(1) {
  top: 7px;
}
#header .container #menu-sp span:nth-child(2) {
  top: 15px;
  width: 25px;
}
#header .container #menu-sp span:nth-child(3) {
  top: 23px;
}
#header .container #menu-sp.is-open span {
  -webkit-transform: skewX(0);
          transform: skewX(0);
}
#header .container #menu-sp.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px;
}
#header .container #menu-sp.is-open span:nth-child(2) {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  /*display: none;*/
}
#header .container #menu-sp.is-open span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.txt-lead {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.btn-default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-default a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding: 5px 30px;
  border: 0.5px solid #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  /*&:before {
     content: "";
     display: block;
     background: $mainColor;
     width: 0;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
     transition: all .3s ease;
  }*/
}
.btn-default a:hover {
  color: #fff;
  background: #000033;
  /*&:before {
  	width: 100%;
  }*/
}
.btn-default a:hover span {
  background: url(/images/ico-right-arrow-w.svg) no-repeat right center;
  background-size: 16px auto;
}
.btn-default a span {
  position: relative;
  padding-right: 25px;
  background: url(/images/ico-right-arrow.svg) no-repeat right center;
  background-size: 16px auto;
}

#footer {
  background: #00213d;
}
#footer .container {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0 0;
  }
}
#footer .container .info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #footer .container .info {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #footer .container .info.flex-sp .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
}
#footer .container .info .col {
  width: 50%;
}
#footer .container .info .col:nth-child(1) {
  padding-right: 40px;
}
#footer .container .info .col:nth-child(2) {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  #footer .container .info .col {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 !important;
  }
}
#footer .container .info .col p {
  text-align: justify;
}
#footer .container .info .col .sns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#footer .container .info .col .sns li {
  width: 38px;
  padding: 0;
  list-style: none;
  margin-left: 10px;
}
#footer .container .info .col .sns li img {
  width: 38px;
}
#footer .container .info .logo-footer {
  max-width: 170px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #footer .container .info .logo-footer {
    max-width: 144px;
    margin-bottom: 0;
    /*margin: 0 auto 20px;*/
  }
}
#footer .container .info .info-company {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  #footer .container .info .info-company {
    border: 0;
  }
}
#footer .container .info h3 {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  #footer .container .info h3 {
    font-size: 18px;
  }
}
#footer .container .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#footer .container .info ul li {
  width: 100%;
  list-style: none;
  font-size: 16px;
  padding-left: 25px;
  margin-bottom: 5px;
}
#footer .container .info ul li.pin {
  background: url(../images/ico-pin.svg) left 3px no-repeat;
  background-size: 18px auto;
}
#footer .container .info ul li.phone {
  background: url(../images/ico-phone.svg) left 3px no-repeat;
  background-size: 18px auto;
}
@media screen and (max-width: 415px) {
  #footer .container .info ul li.phone {
    width: 100%;
  }
}
#footer .container .info ul li.web {
  background: url(../images/ico-web.svg) left 3px no-repeat;
  background-size: 18px auto;
}
@media screen and (max-width: 415px) {
  #footer .container .info ul li.web {
    width: 100%;
  }
}
#footer .container .info ul li.email {
  background: url(../images/ico-mail.svg) left 3px no-repeat;
  background-size: 18px auto;
}
@media screen and (max-width: 415px) {
  #footer .container .info ul li.email {
    width: 100%;
  }
}
#footer .container .info ul li.mst {
  background: url(../images/ico-mst.svg) left 3px no-repeat;
  background-size: 18px auto;
}
@media screen and (max-width: 415px) {
  #footer .container .info ul li.mst {
    width: 100%;
  }
}
#footer .container .info ul li a {
  text-decoration: none;
  color: #fff;
}
#footer .copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 5px 0;
  border-top: 1px solid #ebebeb;
}

#gotop {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #000033;
  position: fixed;
  bottom: 40px;
  right: -40px;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gotop:hover {
  cursor: pointer;
  background: #ffd21f;
}
#gotop.show {
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  #gotop.show {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #gotop {
    display: none;
  }
}

#sub-visual {
  background-image: url(../images/bg_article.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#sub-visual:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#sub-visual .container {
  height: 500px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sub-visual .container {
    height: 350px;
  }
}
#sub-visual .container .title {
  color: #fff;
  margin-bottom: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
  font-size: 40px;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
#sub-visual .container .title span {
  display: block;
  font-weight: normal;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #sub-visual .container .title {
    font-size: 30px;
  }
}

#breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 767px) {
  #breadcrumb {
    padding: 5px 10px;
  }
}
#breadcrumb li {
  list-style: none;
  display: inline;
  color: #666;
  padding: 5px 0 5px 20px;
  position: relative;
}
#breadcrumb li:before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  left: 10px;
  top: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#breadcrumb li:first-child {
  padding-left: 0;
}
#breadcrumb li:first-child:before {
  display: none;
}
#breadcrumb li a {
  text-decoration: none;
  color: #666;
}
#breadcrumb li a:hover {
  text-decoration: underline;
}

.updating {
  display: block;
  width: 100%;
  padding: 30px 0px;
  text-align: center;
  color: #f00;
}

.call_sp {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15px;
  left: 25px;
  border-radius: 25px;
  z-index: 99;
  background: #000033;
}
@media screen and (max-width: 415px) {
  .call_sp {
    left: auto;
    right: 20px;
  }
}
.call_sp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  height: 40px;
  padding: 0 20px 0 50px;
  position: relative;
}
.call_sp a:before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: #ffffff url("/images/phone-ringing.svg") center center no-repeat;
  background-size: 30px auto;
  border-radius: 20px;
  position: absolute;
  left: 5px;
  top: 5px;
}

.call_zalo {
  position: fixed;
  bottom: 70px;
  left: 25px;
  z-index: 99;
}
@media screen and (max-width: 415px) {
  .call_zalo {
    bottom: 20px;
    left: auto;
    right: 20px;
  }
}
.call_zalo img {
  width: 50px;
}

.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
/* Shine */
.shine {
  position: relative;
}

.shine:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.shine:hover:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 502;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 503;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  height: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 505;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 504;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 506;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  top: 0;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: solid transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  opacity: 0.8;
  border-top-width: 12px;
  border-bottom-width: 12px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 20px;
  border-bottom-width: 20px;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 12px solid black;
  left: 5px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  border-right: 20px solid white;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 12px solid black;
  left: 3px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 20px solid white;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1100px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

.mfp-iframe-holder .mfp-close {
  top: -43px;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure {
  line-height: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-break: break-word;
  padding-right: 36px;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
}
@media all and (max-width: 800px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

#main-visual {
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #main-visual {
    height: 40vh;
  }
}
#main-visual ul {
  margin: 0;
  padding: 0;
  display: block;
}
#main-visual ul li {
  display: block;
  height: 100vh;
  padding: 0;
  margin: 0;
  background-size: cover;
  background-position: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-visual ul li {
    height: 40vh;
  }
}
#main-visual ul li .slider-desc {
  max-width: 1144px;
  margin: 0 auto;
  padding-bottom: 30px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  height: 100%;
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  #main-visual ul li .slider-desc {
    text-align: center;
    padding: 0 20px;
    font-size: 20px;
    /*justify-content: center;*/
  }
}
#main-visual ul li .slider-desc h2 {
  /*max-width: 400px;*/
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #main-visual ul li .slider-desc h2 {
    font-size: 24px;
  }
}
#main-visual ul li .slider-desc p {
  /*max-width: 530px;*/
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #main-visual ul li .slider-desc p {
    font-size: 24px;
  }
}
#main-visual ul li .slider-desc .btn-default {
  font-size: 16px;
  font-weight: 300;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  #main-visual ul li .slider-desc .btn-default {
    margin-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#main-visual ul li .slider-desc .btn-default a {
  border: 0.5px solid #fff;
  color: #fff;
}
#main-visual ul li .slider-desc .btn-default a:before {
  content: "";
  display: block;
  background: #fff;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#main-visual ul li .slider-desc .btn-default a span {
  background: url(/images/ico-right-arrow-w.svg) no-repeat right center;
  background-size: 16px auto;
}
#main-visual ul li .slider-desc .btn-default a:hover {
  color: #333;
}
#main-visual ul li .slider-desc .btn-default a:hover:before {
  width: 100%;
}
#main-visual ul li .slider-desc .btn-default a:hover span {
  background: url(/images/ico-right-arrow.svg) no-repeat right center;
  background-size: 16px auto;
}
#main-visual ul .slick-dots {
  left: unset;
  right: 40px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  #main-visual ul .slick-dots {
    display: none;
  }
}
#main-visual ul .slick-dots li {
  display: block;
  background: no-repeat;
  border-radius: 0;
  width: 20px;
  height: 20px !important;
  line-height: 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  margin: 5px 0 !important;
}
#main-visual ul .slick-dots li:after {
  display: none;
}
#main-visual ul .slick-dots li.slick-active {
  background: none !important;
  border: 0.5px solid #fff;
}
#main-visual ul .slick-dots li a {
  text-indent: unset;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  width: 18px;
  height: 18px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#main-visual ul .slick-arrow {
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  left: unset;
  top: unset;
  width: 18px;
  height: 18px;
  background-size: auto 18px;
}
@media screen and (max-width: 767px) {
  #main-visual ul .slick-arrow {
    bottom: 10px;
    display: none;
  }
}
#main-visual ul .slick-arrow.slick-prev {
  right: 40px;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  background: url(/images/arrow-up-light.svg) center center no-repeat;
  background-size: 18px auto;
}
#main-visual ul .slick-arrow.slick-next {
  right: 40px;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  background: url(/images/arrow-down-light.svg) center center no-repeat;
  background-size: 18px auto;
}

#about-us {
  background: #fdfdfd url(../images/bg_gioithieu.jpg) center right no-repeat;
  background-size: auto 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #about-us {
    background: unset;
  }
}
#about-us .container {
  /*max-width: 1100px;*/
  display: block;
  padding: 100px 0 100px;
}
@media screen and (max-width: 767px) {
  #about-us .container {
    padding: 50px 0;
  }
}
#about-us .container .inner {
  max-width: 600px;
}
#about-us .container .title-home {
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #about-us .container .title-home {
    font-size: 26px;
  }
}
#about-us .container .title-home span {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
#about-us .container .title-home strong {
  color: #c1272d;
}
#about-us .container .desc {
  margin-bottom: 30px;
  text-align: justify;
}
#about-us .container .btn-default {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  #service-home {
    padding: 0 10px;
  }
}

.list-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px 30px -20px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .list-service {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px 0 -10px;
  }
}
.list-service li {
  width: calc(33.33% - 10px);
  -ms-flex-preferred-size: calc(33.33% - 10px);
      flex-basis: calc(33.33% - 10px);
  list-style: none;
  margin: 0 5px 10px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .list-service li {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 10px 0;
  }
}
.list-service li a {
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list-service li a .thumb {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.list-service li a .thumb:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 0;
}
.list-service li a .thumb img {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list-service li a .thumb .ttl {
  width: auto;
  font-family: "Roboto Condensed", sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  /*background: rgba(0,0,0,.7);*/
  border-bottom: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.list-service li a .thumb .ttl span {
  display: block;
  font-weight: 100;
  font-size: 14px;
}
.list-service .slick-arrow.slick-prev {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .list-service .slick-arrow.slick-prev {
    left: 10px;
  }
}
.list-service .slick-arrow.slick-next {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .list-service .slick-arrow.slick-next {
    right: 10px;
  }
}

#project-home {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  #project-home {
    padding: 40px 10px 0;
  }
}
#project-home .title-wrap {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #project-home .title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
#project-home .title-wrap .title-home {
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: #333;
}
#project-home .title-wrap .title-home span {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
#project-home .title-wrap .more {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding-right: 25px;
  background: url(/images/ico-right-arrow.svg) no-repeat right center;
  background-size: 16px auto;
}
#project-home .title-wrap .more:hover {
  border-bottom: 0.5px solid #333;
}
#project-home .project-tab .list-tab {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*background: $mainColor;*/
  /*border-bottom: 1px solid #333;*/
  position: relative;
}
@media screen and (max-width: 767px) {
  #project-home .project-tab .list-tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
  }
}
#project-home .project-tab .list-tab:after {
  content: "";
  display: block;
  width: calc(100vw - 100px);
  height: 1px;
  background: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #project-home .project-tab .list-tab:after {
    width: 100%;
  }
}
#project-home .project-tab .list-tab li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  width: 16.6666666667%;
  text-align: center;
  list-style: none;
  font-size: 14px;
  padding: 15px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*@include max-screen($breakpoint_sp) {
  	width: calc(100%/2);
  	border-left: none;
  	border-bottom: 1px solid #fff;
  	&:nth-child(2n) {
  		border-left: 1px solid #fff;
  	}
  }*/
}
@media screen and (max-width: 767px) {
  #project-home .project-tab .list-tab li {
    width: 50%;
    border-left: none;
    border-bottom: 1px solid #333;
  }
  #project-home .project-tab .list-tab li:nth-child(2n) {
    border-left: 1px solid #333;
  }
}
#project-home .project-tab .list-tab li:hover {
  cursor: pointer;
  font-weight: 700;
}
#project-home .project-tab .list-tab li.active {
  font-weight: 700;
}
#project-home .list-project-home {
  display: -ms-grid;
  display: grid;
  /*grid-template-columns: 50% calc(25% - 10px) calc(25% - 10px);*/
  -ms-grid-columns: calc(25% - 10px) 10px calc(25% - 10px) 10px calc(25% - 10px) 10px calc(25% - 10px);
  grid-template-columns: calc(25% - 10px) calc(25% - 10px) calc(25% - 10px) calc(25% - 10px);
  -ms-grid-rows: auto 10px auto;
  grid-template-rows: auto auto;
  grid-gap: 10px 10px;
  margin-bottom: 30px;
}
#project-home .list-project-home > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#project-home .list-project-home > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
#project-home .list-project-home > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
#project-home .list-project-home > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
#project-home .list-project-home > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
#project-home .list-project-home > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
#project-home .list-project-home > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
#project-home .list-project-home > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
@media screen and (max-width: 767px) {
  #project-home .list-project-home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
#project-home .list-project-home li {
  list-style: none;
  background: #fff;
  text-align: center;
  overflow: hidden;
  /*@include max-screen($breakpoint_sp) {
  	margin-bottom: 10px;
  }*/
}
#project-home .list-project-home li a {
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
}
#project-home .list-project-home li a .thumb {
  overflow: hidden;
}
#project-home .list-project-home li a .thumb img {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#project-home .list-project-home li a .desc {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#project-home .list-project-home li a .desc .ttl {
  font-size: 24px;
  font-weight: normal;
  padding: 0px 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
#project-home .list-project-home li a .desc .txt {
  font-size: 14px;
}
#project-home .list-project-home li a:hover .desc {
  opacity: 1;
}
#project-home .list-project-home li:first-child {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
}
#project-home .list-project-home li:first-child .thumb img {
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  #project-home .list-project-home li:first-child .thumb img {
    width: 100%;
  }
}

.news-home {
  background: url(../images/bg_news.jpg) top center no-repeat;
  background-size: cover;
}
.news-home .container {
  display: block;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .news-home .container {
    padding: 40px 10px;
  }
}
.news-home .container .title-wrap {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .news-home .container .title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.news-home .container .title-wrap .title-home {
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.news-home .container .title-wrap .title-home span {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
.news-home .container .title-wrap .more {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding-right: 25px;
  background: url(/images/ico-right-arrow-w.svg) no-repeat right center;
  background-size: 16px auto;
}
.news-home .container .title-wrap .more:hover {
  border-bottom: 0.5px solid #fff;
}
.news-home .container .list-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-home .container .list-news li {
  width: calc(33.3333333333% - 20px);
  list-style: none;
  overflow: hidden;
  color: #fff;
  margin: 0 10px;
}
.news-home .container .list-news li .thumb {
  overflow: hidden;
}
.news-home .container .list-news li .thumb img {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.news-home .container .list-news li .ttl {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: normal;
}
.news-home .container .list-news li .ttl a {
  text-decoration: none;
  color: #fff;
}
.news-home .container .list-news li .desc {
  display: block;
  text-align: justify-all;
  border-left: 1px solid #fff;
  padding: 20px;
}
.news-home .container .list-news li .desc .btn a {
  padding: 7px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.news-home .container .list-news li .desc .btn a:hover {
  background: #fff;
  color: #333;
}
.news-home .container .list-news .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.news-home .container .list-news .slick-slide {
  height: inherit !important;
}

.slick-arrow {
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  border: 0;
  background: none;
}
@media screen and (max-width: 767px) {
  .slick-arrow {
    width: 20px;
    height: 20px;
  }
}
.slick-arrow.slick-prev {
  left: -24px;
  background: url(../images/arrow-left-w.svg) center center no-repeat;
}
@media screen and (max-width: 767px) {
  .slick-arrow.slick-prev {
    left: -15px;
    background-size: 20px 20px;
  }
}
.slick-arrow.slick-next {
  right: -24px;
  background: url(../images/arrow-right-w.svg) center center no-repeat;
}
@media screen and (max-width: 767px) {
  .slick-arrow.slick-next {
    right: -15px;
    background-size: 20px 20px;
  }
}

ul.slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  ul.slick-dots {
    bottom: 10px;
  }
}
ul.slick-dots li {
  width: 10px;
  height: 10px !important;
  display: block;
  background: #fff;
  list-style: none;
  border-radius: 5px;
  padding: 0;
  margin: 0 5px !important;
  z-index: 10;
}
ul.slick-dots li button {
  display: block;
  padding: 0;
  text-indent: -9999px;
  width: 10px;
  height: 10px !important;
  border-radius: 5px;
  border: none;
  background: none;
}
ul.slick-dots li.slick-active {
  background: #000033 !important;
}

#material-home {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #material-home {
    padding: 50px 10px;
  }
}
#material-home .title-home {
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
  font-weight: 700;
  font-size: 30px;
  color: #333;
  margin-bottom: 50px;
}
#material-home .title-home span {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
#material-home .list-material {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #material-home .list-material {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#material-home .list-material li {
  width: calc((100% - 30px) / 4);
  list-style: none;
  margin: 0;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #material-home .list-material li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
}
#material-home .list-material li a {
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#material-home .list-material li a .thumb {
  overflow: hidden;
  position: relative;
}
#material-home .list-material li a .thumb:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 0;
}
#material-home .list-material li a .thumb img {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#material-home .list-material li a .thumb .ttl {
  width: 80%;
  font-family: "Roboto Condensed", sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  /*background: rgba(0,0,0,.7);*/
  border-bottom: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#material-home .list-material li a .thumb .ttl span {
  display: block;
  font-weight: 100;
  font-size: 14px;
}

#video-home {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #video-home {
    padding: 40px 0;
  }
}
#video-home .title-wrap {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #video-home .title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 0 10px;
  }
}
#video-home .title-wrap .title-home {
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
}
#video-home .title-wrap .title-home span {
  display: block;
  font-weight: 300;
  font-size: 20px;
}
#video-home .title-wrap .more {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding-right: 25px;
  background: url(/images/ico-right-arrow-w.svg) no-repeat right center;
  background-size: 16px auto;
}
#video-home .title-wrap .more:hover {
  border-bottom: 0.5px solid #fff;
}
#video-home .video-slider {
  margin: 0;
  padding: 0;
}
#video-home .video-slider li {
  margin: 0 5px;
  padding: 0;
  list-style: none;
  position: relative;
}
#video-home .video-slider li a {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #video-home .video-slider li a {
    width: 50px;
    height: 50px;
  }
}
#video-home .video-slider li a img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  #video-home .video-slider li a img {
    width: 50px;
    height: 50px;
  }
}
#video-home .video-slider .slick-list {
  overflow: unset;
}
@media screen and (max-width: 767px) {
  #video-home .video-slider .slick-list {
    overflow: hidden;
  }
}
#video-home .video-slider .slick-arrow.slick-next {
  background: url(../images/arrow-right-w.svg) center center no-repeat;
  right: 24px;
}
#video-home .video-slider .slick-arrow.slick-prev {
  background: url(../images/arrow-left-w.svg) center center no-repeat;
  left: 24px;
}
#video-home .video-slider .slick-slide {
  /*opacity:0.8;*/
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  bottom: 0;
  /*transform:scale(0.8);*/
}
@media screen and (max-width: 767px) {
  #video-home .video-slider .slick-slide {
    /*transform:scale(1);*/
  }
}
#video-home .video-slider .slick-slide.slick-center {
  /*transform:scale(1.1);*/
}
#video-home .video-slider .slick-dots {
  bottom: -30px;
}
#video-home .video-slider .slick-dots li {
  background: #ebebeb;
}

#main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0 40px;
}
#main #main-content {
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px) {
  #main #main-content {
    width: 100%;
  }
}
#main #main-content.full-width {
  width: 100%;
}
#main #main-content .sub-title {
  color: #000033;
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 20px;
}
#main #main-content .sub-title span {
  color: #999999;
  font-size: 11px;
  text-transform: none;
}
#main #main-content p {
  margin-bottom: 10px;
}
#main #main-content .content ul {
  list-style: none;
  /*margin-bottom: 10px;*/
}
#main #main-content .content ul li {
  padding-left: 18px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#main #main-content .content ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #0d9344;
  position: absolute;
  left: 0;
  top: 6px;
}
#main #main-content .content ul li:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #0d9344;
  position: absolute;
  left: 3px;
  top: 9px;
}
#main #main-content.full-width {
  width: 100%;
}
#main #side-bar {
  width: 230px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main #side-bar {
    display: none;
  }
}
#main #side-bar .box-link {
  background: #f4f6f8;
  padding: 20px;
  margin-bottom: 20px;
}
#main #side-bar .box-link h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
}
#main #side-bar .box-link ul {
  list-style: none;
}
#main #side-bar .box-link ul li {
  display: block;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
#main #side-bar .box-link ul li a {
  display: block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#main #side-bar .box-link ul li a:hover {
  background: #fff;
}
#main #side-bar .advs {
  max-width: 230px;
  list-style: none;
}
#main #side-bar .advs li {
  display: block;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
#main #side-bar .advs li:before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
#main #side-bar .advs li:hover:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
#main #side-bar .advs li:last-child {
  margin-bottom: 0;
}
#main #side-bar .advs li img {
  width: 100%;
}

@-webkit-keyframes shine {
  100% {
    left: 135%;
  }
}
@keyframes shine {
  100% {
    left: 135%;
  }
}
.list-category {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.list-category.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-category.flex-center li {
  padding: 15px 30px;
}
.list-category.flex-center li:first-child {
  padding: 15px 30px;
}
.list-category.flex-center li:last-child {
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  .list-category {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.list-category:after {
  content: "";
  display: block;
  width: calc(100vw - 100px);
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .list-category:after {
    width: 100%;
    background: #333;
  }
}
.list-category li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  /*width: calc(100%/6);*/
  text-align: center;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list-category li {
    width: 50%;
    border-left: none;
    border-bottom: 1px solid #333;
  }
  .list-category li:nth-child(2n) {
    border-left: 1px solid #333;
  }
  .list-category li:last-child {
    border: none;
  }
}
.list-category li:first-child {
  padding-left: 0;
}
.list-category li:last-child {
  padding-right: 0;
}
.list-category li:hover {
  cursor: pointer;
  /*font-weight: 700;*/
}
.list-category li:hover:before {
  content: "";
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-bottom: 8px solid #000033;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.list-category li.active {
  font-weight: 700;
}
.list-category li.active:before {
  content: "";
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-bottom: 8px solid #000033;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.list-category li a {
  text-decoration: none;
  color: #333;
}

/* news
===========================================*/
.article-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.article-wrap .news {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 20px;
  margin: 0 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 415px) {
  .article-wrap .news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.article-wrap .news .txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .article-wrap .news .txt {
    width: 100%;
  }
}
@media screen and (max-width: 415px) {
  .article-wrap .news .txt {
    width: 100%;
  }
}
.article-wrap .news .txt h3 {
  color: #000033;
  font-size: 18px;
  margin: 0;
  padding: 3px 0 5px;
}
@media screen and (max-width: 767px) {
  .article-wrap .news .txt h3 {
    font-size: 16px;
  }
}
.article-wrap .news .txt h3 a {
  color: #000033;
  text-decoration: none;
}
.article-wrap .news .txt h3 a:hover {
  color: #333333;
  text-decoration: none;
}
.article-wrap .news .txt p {
  margin: 0;
  padding: 0;
}
.article-wrap .news .thumb {
  width: calc(50% - 30px);
  margin-right: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-wrap .news .thumb {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 415px) {
  .article-wrap .news .thumb {
    width: 100%;
    margin: 0 0 10px;
  }
}
.article-wrap .news .thumb img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.article-wrap .news .btn-default {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* About
===========================================*/
.thuchien-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thuchien-wrap .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 70px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .thuchien-wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
  }
}
.thuchien-wrap .item .txt {
  width: 50%;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .thuchien-wrap .item .txt {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.thuchien-wrap .item .txt h3 {
  color: #000033;
  font-size: 28px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .thuchien-wrap .item .txt h3 {
    font-size: 22px;
  }
}
.thuchien-wrap .item .txt h3 a {
  color: #000033;
  text-decoration: none;
}
.thuchien-wrap .item .txt h3 a:hover {
  color: #333333;
  text-decoration: none;
}
.thuchien-wrap .item .txt p {
  margin: 0;
  padding: 0;
}
.thuchien-wrap .item .txt .btn-default {
  margin-top: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.thuchien-wrap .item .thumb {
  width: calc(50% - 50px);
  margin-left: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .thuchien-wrap .item .thumb {
    width: 100%;
    margin: 0 0 20px 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.thuchien-wrap .item .thumb img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thuchien-wrap .item:nth-child(even) {
  background: #f4f6f8;
  position: relative;
}
.thuchien-wrap .item:nth-child(even):after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #f4f6f8;
  display: block;
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  bottom: 0;
  z-index: 0;
}
.thuchien-wrap .item:nth-child(even) .thumb {
  position: relative;
  z-index: 1;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin: 0 50px 0 0;
}
.thuchien-wrap .item:nth-child(even) .txt {
  position: relative;
  z-index: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.project-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.project-info .title {
  width: 100%;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.project-info .left {
  width: calc(100% - 350px);
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .project-info .left {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.project-info .right {
  width: 350px;
  padding-left: 50px;
  border-left: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .project-info .right {
    width: 100%;
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid #333;
  }
}

/*.project-wap {
  .list-projects-tab {
    width: 100%;
    display: flex;
    justify-content: center;
    background: $mainColor;
    margin: 0 10px 20px 10px;
    @include max-screen($breakpoint_sp) {
      flex-wrap: wrap;
      margin: 0 0 20px 0;
    }
    li {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      width: calc(100%/6);
      text-align: center;
      list-style: none;
      padding: 15px 10px;
      border-left: 1px solid #fff;
      transition: all .3s;
      @include max-screen($breakpoint_sp) {
        width: calc(100%/2);
        border-left: none;
        border-bottom: 1px solid #fff;
        &:nth-child(2n) {
          border-left: 1px solid #fff;
        }
      }
      &:first-child {
        border-left: 0;
      }
      &:hover {
        cursor: pointer;
        background: #ffe10a;
        color: #333;
      }
      &.active {
        background: #ffe10a;
        color: #333;
      }
    }
  }
}*/
.tin_khac {
  margin-top: 50px;
}
.tin_khac > h3 {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 0;
  border-bottom: 0.5px solid #333;
  margin-bottom: 10px;
}
.tin_khac ul {
  list-style: none outside none;
  margin: 5px 0;
  padding: 0px 0px 0px 10px;
}
.tin_khac ul li {
  display: block;
  padding: 3px 0;
}
.tin_khac ul li a {
  color: #000000;
  padding: 0 0 0 10px;
  text-decoration: none;
  position: relative;
}
.tin_khac ul li a:after {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tin_khac ul li a:hover {
  text-decoration: underline;
}

.date_post {
  color: #666666;
  font-size: 12px;
  margin: 0 0 20px;
  padding: 0px 0px 0px 16px;
  background: url(../images/ico_calenda.png) 0 1px no-repeat;
}

.date_post span {
  background: url(../images/ico-view.png) 0 1px no-repeat;
  margin: 0px 0px 0px 5px;
  padding: 0px 0px 0px 17px;
}

/* about */
.about-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.about-wrap .txt-lead {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
.about-wrap .txt-lead:after {
  content: "";
  width: 20px;
  height: 4px;
  background: #ffd21f;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about-wrap .about-tab {
  /*border-bottom: 1px solid $mainColor;*/
  position: relative;
}
.about-wrap .about-tab:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: #000033;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.about-wrap .about-tab .list-abouts-tab {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-wrap .about-tab .list-abouts-tab li {
  width: calc(20% - 20px);
  height: auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 10px;
  padding: 10px 0;
  position: relative;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .about-wrap .about-tab .list-abouts-tab li {
    width: calc(20% - 10px);
    margin: 0 5px;
  }
}
.about-wrap .about-tab .list-abouts-tab li img {
  display: block;
  height: 80px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .about-wrap .about-tab .list-abouts-tab li img {
    height: 40px;
    width: auto;
  }
}
.about-wrap .about-tab .list-abouts-tab li span {
  width: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  font-weight: 700;
  font-family: "Roboto Condensed", arial;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .about-wrap .about-tab .list-abouts-tab li span {
    font-size: 10px;
  }
}
.about-wrap .about-tab .list-abouts-tab li.active {
  opacity: 1;
}
.about-wrap .about-tab .list-abouts-tab li.active:before {
  content: "";
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-bottom: 8px solid #000033;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about-wrap .about-tab .list-abouts-tab li:hover {
  cursor: pointer;
}
.about-wrap .about-tab .list-abouts-tab li:hover:before {
  content: "";
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-bottom: 8px solid #000033;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about-wrap .about-tab .list-abouts-tab .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.about-wrap #about-content {
  padding: 30px 0;
}

.list-project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px 30px -20px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .list-project {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.list-project.col3 {
  margin: 0 -10px 30px -10px;
  padding: 0 5px;
}
.list-project.col3 li {
  width: calc(33.33% - 10px);
  -ms-flex-preferred-size: calc(33.33% - 10px);
      flex-basis: calc(33.33% - 10px);
  margin: 0 5px 10px;
}
.list-project li {
  width: calc(50% - 10px);
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
  list-style: none;
  margin: 0 5px 10px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  /*    &.full-width {
        width: 100%;
        flex-basis: 100%;
      }*/
}
@media screen and (max-width: 767px) {
  .list-project li {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 20px 0;
  }
}
.list-project li a {
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
}
.list-project li a .thumb {
  overflow: hidden;
  margin: 0 !important;
}
.list-project li a .thumb img {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list-project li a .desc {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list-project li a .desc .ttl {
  font-size: 20px;
  font-weight: normal;
  padding: 0px 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.list-project li a .desc .txt {
  font-size: 14px;
}
.list-project li a:hover {
  /*.thumb {
    img {
      transform: scale(1.1);
    }
  }*/
}
.list-project li a:hover .desc {
  opacity: 1;
}

/* Phân trang
=========================*/
.pagination {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.pagination p {
  display: block;
  margin: 8px 0px;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 5px 12px;
  margin-right: 4px;
  border: solid 2px #c0c0c0;
  font-weight: bold;
  text-decoration: none;
  color: #717171;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pagination a:hover, .pagination span:hover {
  border: 2px solid #000033;
}
.pagination a.active, .pagination span.active {
  border: 2px solid #000033;
  background: #000033;
  color: #fff;
}

#contact-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#contact-wrap .info {
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  #contact-wrap .info {
    width: 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 20px;
  }
}
#contact-wrap .map {
  width: 50%;
  border: 1px solid #000033;
}
@media screen and (max-width: 767px) {
  #contact-wrap .map {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.project-slide {
  /* display: flex;*/
  margin: 0 0 30px;
}
.project-slide .pro-slick {
  /*width: 80%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  /*border: 5px solid #ebebeb;*/
}
@media screen and (max-width: 767px) {
  .project-slide .pro-slick {
    border: 3px solid #ebebeb;
  }
}
.project-slide .pro-slick li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  padding: 0 !important;
}
.project-slide .pro-slick li:before, .project-slide .pro-slick li:after {
  display: none;
}
.project-slide .pro-slick .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.project-slide .pro-slick-nav {
  list-style: none;
}
.project-slide .pro-slick-nav li {
  width: 25%;
  padding: 0 !important;
  overflow: hidden;
  border: 5px solid #fff;
}
@media screen and (max-width: 767px) {
  .project-slide .pro-slick-nav li {
    border: 3px solid #fff;
  }
}
.project-slide .pro-slick-nav li:before, .project-slide .pro-slick-nav li:after {
  display: none;
}
.project-slide .pro-slick-nav li.slick-current {
  border: 5px solid #ebebeb;
}
@media screen and (max-width: 767px) {
  .project-slide .pro-slick-nav li.slick-current {
    border: 3px solid #ebebeb;
  }
}
.project-slide .pro-slick-nav .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.project-slide .pro-slick-nav .slick-arrow {
  /*background: rgba(0,0,0,.8);*/
}
.project-slide .pro-slick-nav .slick-arrow.slick-next {
  right: 5px;
  background: rgba(255, 255, 255, 0.8) url(../images/arrow-right.svg) center center no-repeat;
  background-size: 16px 16px;
}
.project-slide .pro-slick-nav .slick-arrow.slick-prev {
  left: 5px;
  background: rgba(255, 255, 255, 0.8) url(../images/arrow-left.svg) center center no-repeat;
  background-size: 16px 16px;
}

#register-wrap {
  width: 100%;
  min-height: 600px;
  background: url(../images/bg_dangki.jpg) center center no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.wrap-form {
  max-width: 400px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 35px;
  text-align: center;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .wrap-form {
    padding: 20px;
  }
}
.wrap-form h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.wrap-form ul {
  margin-bottom: 20px;
}
.wrap-form ul li {
  text-align: left;
  position: relative;
}
.wrap-form ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #0d9344;
  position: absolute;
  left: 0;
  top: 6px;
}
.wrap-form ul li:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #0d9344;
  position: absolute;
  left: 3px;
  top: 9px;
}
.wrap-form ::-webkit-input-placeholder { /* Edge */
  color: #333;
}
.wrap-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #333;
}
.wrap-form ::-moz-placeholder {
  color: #333;
}
.wrap-form ::-ms-input-placeholder {
  color: #333;
}
.wrap-form ::placeholder {
  color: #333;
}

.form-group {
  margin-bottom: 10px;
  text-align: left;
}
.form-group label {
  font-size: 14px;
  font-weight: bold;
}
.form-group label.error {
  color: #f00;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
}
.form-group input[type=text] {
  padding: 5px 10px;
  border-radius: 0;
  border: 1px solid #bbb;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: none;
  outline: none;
  color: #333;
}
.form-group select {
  width: 100%;
  border: 1px solid #bbb;
  height: 40px;
  line-height: 40px;
  padding: 5px 10px;
  background: none;
  outline: none;
  color: #333;
}
.form-group textarea {
  padding: 5px 10px;
  border-radius: 0;
  border: 1px solid #bbb;
  width: 100%;
  height: 80px;
  background: none;
  outline: none;
  font-family: "Roboto", sans-serif;
  color: #333;
}
.form-group input[type=submit] {
  -webkit-appearance: none;
  background: #0d9344;
  color: #fff;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 30px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-group input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.8;
}

.form-group-full {
  width: 100%;
}
.form-group-full input[type=submit] {
  -webkit-appearance: none;
  background: #000033;
  color: #fff;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 30px;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0 auto;
  display: block;
}
.form-group-full input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.8;
}

.profile-sp {
  border: 5px solid #333;
  height: 700px;
  padding: 5px;
  margin-top: 30px;
  overflow: scroll;
}
.profile-sp img {
  width: 100%;
  height: auto;
}

.du-toan.container {
  max-width: 900px;
  padding: 40px 0;
}
.du-toan.container h2 {
  font-size: 20px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  position: relative;
}
.du-toan.container h2:before {
  content: "";
  width: 50px;
  height: 4px;
  background: #000033;
  position: absolute;
  bottom: 0;
  left: 0;
}

.box-thongtin {
  border: 1px solid #bbb;
  padding: 20px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}

#frmDutoan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#frmDutoan .form-group {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  #frmDutoan .form-group {
    width: 100%;
  }
}
#frmDutoan .form-group-full input[type=submit] {
  height: auto;
  border-radius: 0;
  padding: 5px 30px;
  margin: 10px auto 0;
}

.box-ketqua {
  margin-bottom: 10px;
  overflow: auto;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}
.box-ketqua table {
  width: 100%;
  min-width: 800px;
  font-size: 14px;
  border: 1px solid #bbb;
}
.box-ketqua table th {
  background: #000033;
  color: #fff;
}
.box-ketqua table td,
.box-ketqua table th {
  border: 1px solid #bbb;
  padding: 5px;
}
.box-ketqua table tr td:nth-child(1) {
  text-align: center;
}
.box-ketqua table tr td:nth-child(3),
.box-ketqua table tr td:nth-child(4),
.box-ketqua table tr td:nth-child(5) {
  text-align: right;
}

.box-help h2 {
  font-size: 20px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  position: relative;
}
.box-help h2:before {
  content: "";
  width: 50px;
  height: 4px;
  background: #000033;
  position: absolute;
  bottom: 0;
  left: 0;
}
.box-help ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.box-help ul li {
  width: calc(50% - 5px);
  margin-bottom: 10px;
  border: 1px solid #bbb;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .box-help ul li {
    width: 100%;
  }
}
.box-help ul li:last-child {
  width: 100%;
  margin: 0;
}
.box-help ul li:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.box-help ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  font-weight: bold;
}
.box-help ul li a p {
  margin-bottom: 0 !important;
}
.box-help ul li a p span {
  display: block;
  font-weight: normal;
}
.box-help ul li a img {
  height: 16px;
  width: auto;
  margin: 5px 10px 0;
}

.txt-note {
  font-size: 14px;
  margin-bottom: 50px;
}
.txt-note a {
  color: #000033;
  text-decoration: underline;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}

.txt-red {
  color: #da1622;
}

.content800 * {
  max-width: 800px;
  margin: 0 auto;
}

.content800 img {
  max-width: 1144px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .content800 img {
    max-width: 100%;
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
}

.content800 .video-full {
  width: 143%;
  height: 650px;
  max-width: unset;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .content800 .video-full {
    width: 100%;
    height: 500px;
  }
}
@media screen and (max-width: 800px) and (max-width: 640px) {
  .content800 .video-full {
    height: 350px;
  }
}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}

.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .model-open .custom-model-inner {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
  border: 2px solid #fff;
}

.custom-model-wrap .wrap-form {
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  padding: 0;
  max-width: inherit;
}

@media screen and (min-width: 1024px) {
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: 0px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .custom-model-inner {
    margin: 0 auto;
  }
}
#thungo .intro {
  width: 100%;
  background: url(../images/thu-ngo/bg-thungo.jpg) right center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #thungo .intro {
    background: none;
  }
}
#thungo .intro .inner {
  width: 50%;
  max-width: 600px;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  #thungo .intro .inner {
    width: 100%;
    max-width: inherit;
    padding-bottom: 50px;
  }
}
#thungo .intro .inner h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
#thungo .intro .inner p {
  margin-bottom: 10px;
  text-align: justify;
}
#thungo .aboutus {
  background: url(../images/thu-ngo/bg-thungo2.jpg) right center no-repeat;
  background-size: cover;
  position: relative;
}
#thungo .aboutus:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}
#thungo .aboutus .inner {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #thungo .aboutus .inner {
    padding: 50px 0;
  }
}
#thungo .aboutus .inner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
#thungo .aboutus .inner .txt {
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #thungo .aboutus .inner .txt {
    text-align: justify;
  }
}
#thungo .aboutus .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #thungo .aboutus .inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#thungo .aboutus .inner ul li {
  width: calc((100% - 100px) / 3);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  #thungo .aboutus .inner ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
#thungo .aboutus .inner ul li h3 {
  font-size: 40px;
  text-align: center;
}
#thungo .vision {
  padding: 50px 0;
}
#thungo .vision h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
#thungo .vision ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #thungo .vision ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#thungo .vision ul li {
  width: calc(70% - 40px);
}
#thungo .vision ul li:first-child {
  width: calc(30% - 40px);
}
@media screen and (max-width: 767px) {
  #thungo .vision ul li:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #thungo .vision ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
#thungo .vision ul li h3 {
  font-size: 24px;
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
}
#thungo .vision ul li p {
  text-align: justify;
}
#thungo .giatri {
  padding: 100px 0;
  background: #f4f6f8;
}
@media screen and (max-width: 767px) {
  #thungo .giatri {
    padding: 50px 0;
  }
}
#thungo .giatri h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}
#thungo .giatri ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #thungo .giatri ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#thungo .giatri ul li {
  width: calc((100% - 300px) / 5);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #thungo .giatri ul li {
    width: auto;
    margin: 0 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
  }
  #thungo .giatri ul li:last-child {
    border-bottom: none;
  }
}
#thungo .giatri ul li img {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #thungo .giatri ul li img {
    width: 100px;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
#thungo .giatri ul li p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #thungo .giatri ul li p {
    text-align: justify;
  }
}
#thungo .team {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #thungo .team {
    padding: 50px 0;
  }
}
#thungo .team h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #thungo .team h2 {
    margin-bottom: 30px;
  }
}
#thungo .team ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #thungo .team ul {
    /*flex-direction: column;*/
    width: 100%;
  }
}
#thungo .team ul li {
  width: calc((100% - 200px) / 3);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #thungo .team ul li {
    width: calc((100% - 30px) / 2);
  }
}
#thungo .team ul li img {
  margin-bottom: 20px;
}
#thungo .team ul li h3 {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #thungo .team ul li h3 {
    font-size: 14px;
  }
}
#thungo .team ul li h3 span {
  display: block;
  font-size: 14px;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  #thungo .team ul li h3 span {
    font-size: 12px;
  }
}