/*

Theme Name: SeoViet

Theme URI: seoviet.vn

Author: seoviet

Author URI: seoviet.vn

Description: 

Version: 4.0

License: GNU General Public License v2 or later

License URI: LICENSE

Text Domain: shtheme

Tags: seoviet



/*--------------------------------------------------------------

>>> TABLE OF CONTENTS:

----------------------------------------------------------------

# Normalize

# Typography

# Elements

# Forms

# Navigation

    ## Links

    ## Menus

# Accessibility

# Alignments

# Clearings

## Sidebar - Widgets

# Content

    ## Posts and pages

    ## Comments

# Media

    ## Captions

    ## Galleries

## Layout construct

## Shortcode

## Footer

## Menu Mobile

## Custom css

## Responsive

--------------------------------------------------------------*/

/*--------------------------------------------------------------

# Normalize

--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
}

a {
  color: #333;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #b41322;
}

a:hover,
a:active,
a:focus,
a:visited {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

@font-face {
  font-family: "IcoFont";
  font-weight: normal;
  font-style: "Regular";
  src: url("lib/webfonts/iconfonts/icofont.woff2") format("woff2"),
    url("lib/webfonts/iconfonts/icofont.woff") format("woff");
}

.site-boxed {
  max-width: 1200px;
  margin: 0 auto;
}

.site-boxed .container {
  padding-left: 0;
  padding-right: 0;
}

@-webkit-keyframes imageScaleAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@-moz-keyframes imageScaleAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes imageScaleAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.mt-6 {
  margin-top: 4.5rem;
}

/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

.site-title,
.site-description {
  font-size: 0;
  margin: 0;
}

/* Header style */

.site-header .logo {
  display: inline-block;
  padding: 15px 10px;
}

/* Header style 1 */

/* Header style 2 */

.site-header {
  position: relative;
  z-index: 5;
}

.site-header .header-main {
  width: 95px;
  height: 100%;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.site-header .header-main.active {
  background: #ad161d;
}

.site-header .header-main.active .logo {
  opacity: 0;
}

.site-header .header-main.active .botHd a {
  color: #fff;
}

.site-header .header-main.active .botHd a:first-child {
  border-right: 1px solid #fff;
}

.site-header .hamburger-menu {
  margin: auto;
  width: 32px;
  height: 20px;
  cursor: pointer;
  z-index: 11;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.site-header .hamburger-menu .bar {
  position: relative;
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px);
  background: #424d54;
  border-radius: 100px;
}

.site-header .hamburger-menu .bar::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: #424d54;
  border-radius: 100px;
  -webkit-transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header .hamburger-menu .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #424d54;
  border-radius: 100px;
  -webkit-transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header .hamburger-menu .bar,
.site-header .hamburger-menu .bar::after,
.site-header .hamburger-menu .bar::before {
  width: 32px;
  height: 3px;
}

.site-header .hamburger-menu .bar.animate {
  background: rgba(255, 255, 255, 0);
}

.site-header .hamburger-menu .bar.animate::before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  -o-transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  background: #fff;
}

.site-header .hamburger-menu .bar.animate::after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
    -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  -o-transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
  background: #fff;
}

.site-header .header-content {
  background: url(http://gsholding.webseoviet.com/wp-content/uploads/2021/03/favicon.png)
    right 10% bottom 10%/30% no-repeat #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 220px;
  display: none;
}

.site-header .botHd {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
}

.site-header .botHd a.glink {
  font-weight: 500;
}

.site-header .botHd a:first-child {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #333;
}

/* Header style 3 */

/*--------------------------------------------------------------

# Main Navigation

--------------------------------------------------------------*/

.main-navigation ul {
  padding: 0;
  margin: 0;
  width: 360px;
}

.main-navigation ul.menu li {
  position: relative;
  display: block;
}

.main-navigation ul.menu li a {
  font-size: 14px;
  color: #333;
  display: block;
  text-transform: none;
  white-space: nowrap;
  padding: 8px 20px 8px 8px;
  font-weight: 400;
}

.main-navigation ul.menu > li > a {
  display: block;
  font-weight: bold;
  font-size: 32px;
  color: #a7a7a7;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 5px 0;
}

.main-navigation ul.menu > li.current-menu-item > a,
.main-navigation ul.menu > li > a:hover,
.site-header.logo-left .main-navigation ul.menu > li.current-menu-item > a,
.site-header.logo-left .main-navigation ul.menu > li > a:hover {
  color: #b41322 !important;
}

.main-navigation ul ul {
  position: absolute;
  top: 10px;
  left: 100%;
  width: 400px;
  padding-left: 100px;
  display: none;
}

.main-navigation ul ul::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background: #dedede;
  position: absolute;
  top: 20px;
  left: 0;
}

.main-navigation ul.menu ul > li.current-menu-item > a,
.main-navigation ul.menu ul > li > a:hover,
.site-header.logo-left .main-navigation ul.menu ul > li.current-menu-item > a,
.site-header.logo-left .main-navigation ul.menu ul > li > a:hover {
  color: #b41322 !important;
}

.main-navigation ul.menu ul.sub-menu li a {
  display: block;
  font-size: 22px;
  color: #424d54;
  padding: 5px 0;
}

.site-header.header-banner .main-navigation,
.site-header.header-logo-style2 .main-navigation {
  background: #e7041c;
}

.site-header.header-logo .main-navigation {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/*--------------------------------------------------------------

# Elements

--------------------------------------------------------------*/

.heading {
  margin: 0 0 15px;
  padding: 0;
  font-size: 15px;
  color: #e7041c;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  border-bottom: 3px solid #f2f2f2;
}

.heading a {
  position: relative;
  display: inline-block;
  color: #e7041c;
}

.heading a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e7041c;
}

.page-title,
h1.entry-title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  margin: 5px 0 15px;
  text-transform: uppercase;
  position: relative;
}

.banner-header {
  overflow: hidden;
  width: 100%;
  padding: 200px 8.3333333333% 20px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(106, 57, 11, 0.5);
  opacity: 0.5;
  top: 0;
  left: 0;
}

.page-title-bar {
  padding: 20px 0 10px 0;
  margin-bottom: 20px;
}

.page-title-bar .title {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 0;
}

.breadcrumb {
  padding: 5px 0;
  margin-bottom: 10px;
  background: 0 0;
  color: #fff;
  position: relative;
}

.breadcrumb a {
  color: #fff;
  margin-right: 8px;
}

.breadcrumb span.breadcrumb_last {
  margin-left: 8px;
}

#back-top {
  border: 0 dotted #c12428;
  width: 50px;
  height: 50px;
  right: 25px;
  bottom: 120px;
  position: fixed;
  cursor: pointer;
  transform: rotate(0);
  transform-origin: center center 0;
  z-index: 1000;
}

#back-top,
#back-top:after,
#back-top:before,
#back-top .backtotop-morph {
  transition: all 0.25s ease-in-out 0s;
}

#back-top {
  margin: 0;
}

#back-top:after,
#back-top:before {
  height: 4px;
  position: absolute;
  background-color: #c12428;
  content: "";
}

#back-top:after {
  width: 25px;
  right: 5px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: center top 0;
}

#back-top:before {
  width: 18px;
  left: 6px;
  top: 56%;
  transform: rotate(-45deg) translateY(-50%);
  transform-origin: center top 0;
}

#back-top:hover {
  transform: rotate(90deg);
}

#back-top:hover:before {
  width: 30px;
  left: 10px;
  top: 30%;
  background-color: #c12428;
  transform: rotate(0) translateY(-8px);
}

#back-top:hover:after {
  width: 30px;
  right: 10px;
  top: 60%;
  background-color: #c12428;
  transform: rotate(0) translateY(8px);
}

#back-top .backtotop-morph {
  background-color: #c12428;
  width: 15px;
  height: 4px;
  left: 100%;
  top: 45%;
  position: absolute;
  opacity: 0;
  margin-bottom: -20px;
  transform: translate(-50%);
}

#back-top .backtotop-morph:before {
  width: 0;
  height: 0;
  left: -7px;
  top: -4px;
  position: absolute;
  border-color: transparent #c12428 transparent transparent;
  border-style: solid;
  border-width: 6px 10px 6px 0;
  content: "";
}

#back-top:hover .backtotop-morph {
  left: 40%;
  opacity: 1;
}

iframe[name="google_conversion_frame"] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

@media (min-width: 768px) {
  .col-md-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 992px) {
  .col-lg-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 1200px) {
  .col-xl-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.wpcf7 label {
  font-weight: 600;
  display: block;
}

.wpcf7 div.wpcf7-validation-errors {
  margin: 2em 0 1em;
}

.wpcf7 span.wpcf7-not-valid-tip {
  margin: 5px 0;
}

.page_nav {
  text-align: center;
  margin-bottom: 20px;
}

.page_nav * {
  display: inline-block;
  padding: 3px 10px;
  background: #fff;
  border: 1px solid #e7041c;
  margin: 0;
}

.page_nav .current,
.page_nav .page-numbers:hover {
  background: #e7041c;
  color: #fff;
}

.screen-reader-text {
  display: none;
}

.btn {
  font-size: 14px;
  background: #e7041c;
  color: #fff;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: #fff;
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  border-color: #e7041c;
}

.btn-primary:hover {
  color: #fff;
  background-color: #e7041c;
  border-color: #e7041c;
}

.form-control {
  height: 34px;
  font-size: 14px;
}

textarea.form-control {
  height: 160px;
}

/*--------------------------------------------------------------

## Css Scrollbar

--------------------------------------------------------------*/

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: #807d7d;
  border-radius: 8px;
}

/*--------------------------------------------------------------

# Alignments

--------------------------------------------------------------*/

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------

# Clearings

--------------------------------------------------------------*/

.content-sidebar-wrap:before,
.content-sidebar-wrap:after {
  clear: both;
  display: table;
  content: " ";
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------

# Sidebar - Widgets

--------------------------------------------------------------*/

.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

.sidebar .widget {
  margin: 0 0 20px 0;
}

.sidebar .widget-title {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background: #e7041c;
  padding: 10px;
  margin: 0;
}

.sidebar .widget ul {
  padding: 0;
}

.sidebar .widget_nav_menu > div,
.widget_supports .list-supporter,
.sidebar .content-feature-page,
.sidebar .slider-products,
.sidebar .list-post-item,
.sidebar .widget_text .textwidget,
.sidebar .widget_recently_viewed_products .product_list_widget {
  border: 1px solid #cccccc;
  border-top: none;
}

.sidebar .widget_list_posts .list-post-item,
.sidebar .widget_list_view_posts .list-post-item,
.sidebar .widget .content-feature-page,
.sidebar .textwidget,
.sidebar .widget_recently_viewed_products .product_list_widget {
  padding: 10px;
}

.sidebar .widget:not(.widget_slider_products) ul {
  margin: 0;
}

.sidebar .widget:not(.widget_slider_products) ul li {
  display: block;
}

/* Widget Custom Menu */

.sidebar .widget_nav_menu ul li {
  position: relative;
  padding: 8px 10px;
}

.sidebar .widget_nav_menu ul.menu > li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.sidebar .widget_nav_menu ul li a {
  font-size: 14px;
  font-weight: 400;
  display: block;
  color: #333;
}

.sidebar .widget_nav_menu ul li a:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e7041c;
  border-radius: 50%;
  margin-right: 5px;
}

.sidebar .widget_nav_menu .menu-item-has-children .sub-menu {
  background: #fff;
  position: absolute;
  top: -1px;
  left: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  min-width: 200px;
  border: 1px solid #ccc;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-transform: translate(40px, 0);
  -webkit-transform: translate(40px, 0);
  transform: translate(40px, 0);
}

.content-sidebar .sidebar .widget_nav_menu .menu-item-has-children .sub-menu,
.sidebar-content-sidebar
  .sidebar.sidebar-secondary
  .widget_nav_menu
  .menu-item-has-children
  .sub-menu {
  right: 100%;
  left: initial;
  -moz-transform: translate(-40px, 0);
  -webkit-transform: translate(-40px, 0);
  transform: translate(-40px, 0);
}

.content-sidebar
  .sidebar
  .widget_nav_menu
  .menu-item-has-children:hover
  .sub-menu,
.sidebar .widget_nav_menu .menu-item-has-children:hover > .sub-menu,
.sidebar-content-sidebar
  .sidebar.sidebar-secondary
  .widget_nav_menu
  .menu-item-has-children:hover
  .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* Custom Search */

div.icon-search {
  display: inline-block;
  outline: 0;
  background: #e7041c;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

div.icon-search > a {
  color: #fff;
  display: block;
}

#search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  -ms-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
  opacity: 0;
  visibility: hidden;
}

#search.open {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
  z-index: 99999999;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  opacity: 1;
  font-size: 27px;
  color: #fff;
  cursor: pointer;
}

.icon-search_custom i {
  color: #999;
}

.search-form label {
  width: 100%;
  margin-bottom: 0;
}

.search-form input[type="search"],
.search-form input[type="submit"] {
  outline: 0;
  border: none;
}

.search-form {
  position: relative;
}

.search-form input[type="search"] {
  width: 100%;
  color: #999;
  font-weight: 400;
  padding: 0 28px 0 20px;
  height: 100%;
  height: 46px;
  font-size: 16px;
  position: relative;
  background: #fff;
}

.search-form input[type="submit"] {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
  background: url(lib/images/search_mobile.png) center center no-repeat;
  text-indent: -9999px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.search-form input[type="search"]::-webkit-input-placeholder {
  color: #fff;
}

.search-form input[type="search"]::-moz-placeholder {
  color: #fff;
}

.search-form input[type="search"]:-ms-input-placeholder {
  color: #fff;
}

.search-form input[type="search"]:-moz-placeholder {
  color: #fff;
}

.sidebar .search-form {
  padding: 4px 12px;
  background: #e7041c;
  overflow: hidden;
}

.site-header .search-form {
  position: absolute;
  top: 6px;
  right: 5px;
  z-index: 9;
  width: 200px;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}

.site-header input[type="search"] {
  color: #333;
  padding-left: 10px;
}

#search .search-form {
  position: absolute;
  top: 55%;
  left: 0;
  width: 90%;
  margin: 0 5%;
  color: #fff;
  background: 0 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  font-size: 30px;
  text-align: center;
  outline: 0;
}

/* Widget Recent Posts */

.sidebar .widget_recent_entries ul li {
  padding: 5px 10px;
  border-bottom: 1px solid #cccccc;
}

.sidebar .widget_recent_entries ul li:last-child {
  border-bottom: none;
}

.sidebar .widget_recent_entries .post-date {
  display: block;
}

/* Widget Recent Posts */

.widget .list-post-item li {
  margin-bottom: 10px;
}

.widget .list-post-item li:last-child {
  margin-bottom: 0;
}

.widget .list-post-item .post:after {
  clear: both;
}

.widget .list-post-item .alignleft {
  width: 100px;
  margin-right: 10px;
}

.widget .list-post-item .alignright {
  width: 100px;
  margin-left: 10px;
}

.widget .list-post-item .aligncenter {
  text-align: center;
}

.widget .list-post-item h3 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.widget .list-post-item h3 a {
  color: inherit;
}

/* Widget Support */

@media (min-width: 1200px) {
  .widget_supports .list-supporter {
    padding-top: 190px;
    background-image: url(lib/images/bg-support.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
  }
}

.widget_supports .support-style-1 {
  background-color: #fff;
}

.widget_supports .support-style-1 .supporter {
  padding: 0 10px 10px;
}

.widget_supports .support-style-1 li {
  padding: 5px 0;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #333;
}

.widget_supports .support-style-1 li:first-child {
  border-top: none;
}

.widget_supports .support-style-1 li:last-child {
  border-bottom: none;
}

.widget_supports .support-style-1 i {
  width: 22px;
  margin-right: 12px;
}

.widget_supports .support-style-2 .supporter {
  margin: 0 8px;
  padding: 5px 8px 5px 50px;
  border-top: 1px solid #ddd;
  background: url(lib/images/ic-phone.png) 7px 10px no-repeat;
  position: relative;
}

.widget_supports .support-style-2 .supporter:first-child {
  border-top: none;
}

.widget_supports .support-style-2 .name {
  font-weight: 600;
}

.widget_supports .support-style-2 .phone {
  font-size: 20px;
  color: red;
  font-weight: 600;
}

.widget_supports .support-style-2 .skype {
  position: absolute;
  right: 7px;
  bottom: 10px;
  z-index: 1;
}

.widget_supports .list-supporter .email {
  padding: 5px 10px;
  font-weight: 600;
  line-height: 20px;
}

.widget_supports .support-style-2 .email a {
  color: #333;
}

.widget_supports .support-style-3 .supporter:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}

.widget_supports .support-style-3 ul {
  position: relative;
  padding: 8px 10px;
}

.widget_supports .support-style-3 .name {
  font-size: 12px;
  color: #333;
}

.widget_supports .support-style-3 .phone {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #e70c0c;
}

.widget_supports .support-style-3 .social {
  position: absolute;
  bottom: 10px;
  right: 8px;
  z-index: 1;
}

.widget_supports .support-style-3 .social a {
  display: inline-block;
  margin-left: 4px;
}

/* Widget Slider Products */

.sidebar .content-feature-page,
.sidebar .slider-products {
  padding: 10px 10px 0;
}

html .widget_slider_products .slick-carousel.slick-dotted.slick-slider {
  margin: 0;
}

.item-product-slide {
  overflow: hidden;
  margin-bottom: 15px;
}

.item-product-slide:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.item-product-slide .alignleft,
.item-product-slide .alignright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  width: 100px;
  height: 100px;
  background: #fff;
}

.item-product-slide .alignleft {
  margin-right: 15px;
}

.item-product-slide .alignright {
  margin-left: 15px;
}

.item-product-slide .alignleft > div,
.item-product-slide .alignright > div {
  width: 100%;
}

.slick-slide.item-product-slide img {
  width: auto;
  display: inline-block;
  max-height: 100px;
  max-width: 100px;
}

.item-product-slide .alignnone img {
  margin: 0 auto 10px;
}

.item-product-slide h3 {
  margin: 5px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.item-product-slide h3 a {
  color: #333;
}

.item-product-slide .price {
  font-weight: 700;
  color: red;
  margin: 0;
}

.item-product-slide .price del,
.item-product-slide .price ins {
  display: block;
  text-decoration: none;
}

.item-product-slide .price ins {
  margin-right: 0;
}

.item-product-slide .price del {
  text-decoration: line-through;
  font-weight: 400;
  color: #666;
}

/* Widget Slider Posts */

.sidebar .widget_listpost_widget ul {
  padding: 20px 10px;
  background: #fafafa;
}

/* Slick Slider */

html .slick-carousel.slick-dotted.slick-slider {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.slick-slider .slick-slide,
.slick-slider .slick-slide a {
  outline: 0;
}

.slick-slider .slick-next,
.slick-slider .slick-prev {
  z-index: 1;
}

.slick-slider .slick-next {
  right: 35px;
}
.slick-slider .slick-prev {
  left: 15px;
}

.slick-slider .slick-arrow:before {
  font-family: IcoFont !important;
}

.slick-prev:before {
  content: "\ea9d" !important;
}

.slick-next:before {
  content: "\eaa0" !important;
}

.slick-slider .slick-next:before,
.slick-slider .slick-prev:before {
  opacity: 1;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #afafb1;
  color: #fff;
}

.slick-slider .slick-next:hover:before,
.slick-slider .slick-prev:hover:before {
  color: #333;
}

.slick-slider .slick-dots {
  bottom: 10px;
}

.slick-slider .slick-dots li button:before {
  font-size: 14px;
  color: #d8d8d8;
}

.slick-slider .slick-dots li {
  margin: 0;
}

.slick-slider .slick-dots li.slick-active button:before {
  color: #00a9b2;
  opacity: 1;
}

@media (max-width: 575.5px) {
  .slick-slider .slick-prev {
    left: 5px;
  }

  .slick-slider .slick-next {
    right: 5px;
  }
}

.slick-slider {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.slick-slide {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Widget Featured Page */

.widget_featuredpage .entry-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.widget_featuredpage .entry-title a {
  color: #e7041c;
}

.widget_featuredpage .alignleft,
.widget_featuredpage .alignright {
  width: 30%;
}

.widget_featuredpage .alignleft {
  margin-right: 10px;
}

.widget_featuredpage .alignright {
  margin-left: 10px;
}

.widget_featuredpage .aligncenter {
  margin-bottom: 10px;
}

.widget_featuredpage p {
  font-size: 13px;
  text-align: justify;
}

/* Widget Information */

.widget_information li {
  padding: 3px 0 3px 22px;
  position: relative;
}

.widget_information i {
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  text-align: center;
}

.widget_information li.label-company {
  padding-left: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.widget_information li.label-company i {
  display: none;
}

/* Widget Social */

.widget_social ul {
  margin: 0;
  padding: 0;
}

.widget_social ul li {
  display: inline-block;
  margin-right: 5px;
}

.widget_social ul li a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #333;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease-out;
}

.widget_social .icon_facebook a {
  background: #3b5999;
  color: #fff;
}

.widget_social .icon_twitter a {
  background: #55acee;
  color: #fff;
}

.widget_social .icon_google a {
  background: #dd4b39;
  color: #fff;
}

.widget_social .icon_youtube a {
  background: #cd201f;
  color: #fff;
}

.widget_social .icon_linkedin a {
  background: #0077b5;
  color: #fff;
}

.widget_social .icon_pinterest a {
  background: #bd081c;
  color: #fff;
}

.widget_social .icon_instagram a {
  background: #e4405f;
  color: #fff;
}

.widget_social ul li a:hover {
  transform: translateY(-5px);
}

/* Widget Tag Cloud */

.tagcloud a {
  font-size: 14px !important;
  display: inline-block;
  border: 1px solid #e7041c;
  margin: 0 3px 5px 0;
  padding: 2px 5px;
  border-radius: 3px;
  color: #e7041c;
}

.tagcloud a:hover {
  background: #e7041c;
  color: #fff;
}

/* Count Per Day */

.sidebar .cpd {
  padding: 5px 10px;
}

.sidebar .cpd li {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

.sidebar .cpd li:last-child {
  border-bottom: none;
}

/* Slider */

.wtb-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  display: block;
}

.wtb-slider .search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wtb-slider .swiper-container {
  height: 100%;
}

.wtb-slider .swiper-container .swiper-wrapper .swiper-slide ._item {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: block;
  overflow: hidden;
}

.wtb-slider .swiper-container .swiper-wrapper .swiper-slide ._item ._image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  animation: imageScaleAnimation 30s infinite ease;
}

html .theme-default .nivo-controlNav {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/*--------------------------------------------------------------

## Comments

--------------------------------------------------------------*/

.comments-area .comment-list .comment-content a {
  word-wrap: break-word;
}

.comment-form label {
  display: block;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  padding: 5px 10px;
}

.comment-form input,
.comment-form textarea {
  border: 1px solid rgba(51, 51, 51, 0.1);
  color: rgba(51, 51, 51, 0.7);
}

.comment-form input[type="submit"] {
  background: #e7041c;
  color: #fff;
  padding: 5px 10px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding: 1.6em 0;
}

.comment-content {
  padding: 10px 20px 45px;
  margin: 25px 0 0;
  font-size: 15px;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  line-height: 1.5em !important;
}

.comment-list li .reply {
  position: absolute;
  margin: -45px 0 0 10px;
  padding: 5px 10px;
}

.comment-list .children {
  list-style: none;
  margin: 0;
}

.comment-list .children > li {
  padding-left: 0.8em;
}

.comment-author {
  padding: 10px 5px 0;
}

.comment-list li .avatar {
  background: #fff;
  float: left;
  margin: 0 10px 0 0px;
  border-radius: 50%;
  -moz-border-radius: 50%;
}

.comment-list p,
.ping-list p {
  font-weight: normal;
  text-transform: none;
  margin: 10px 5px 10px 0;
  padding: 0;
  word-wrap: break-word;
}

.comment-list li .fn,
.comment-list li .cfn {
  font-size: 16px;
  display: inline-block;
  margin: 10px 0 0;
}

.comment-list li .says {
  display: none;
}

/* Extra Comments */

#formcmmaxweb {
  margin-bottom: 20px;
}

#formcmmaxweb textarea.form-control {
  height: auto;
}

span.title_comment {
  font-size: 20px;
  color: #606664;
  line-height: 1.3em;
  font-weight: 700;
  margin: 15px 0;
  display: block;
}

.comment-author.vcard {
  width: 25px;
}

.comment-author.vcard {
  float: left;
  clear: both;
  z-index: 2;
  position: relative;
  text-align: center;
}

.commentlist {
  margin-top: 10px;
}

.commentlist li {
  overflow: hidden;
  clear: both;
  margin-bottom: 10px;
}

.commentlist .children {
  margin-top: 10px;
}

.commentBody em {
  color: red;
}

.commentBody {
  position: relative;
  margin-left: 35px;
  overflow: hidden;
}

.comment-meta.commentmetadata {
  position: relative;
  padding: 0;
  margin: 0 0 5px;
}

.noidungcomment {
  font-size: 14px;
  line-height: 22px;
}

.cancel-comment-reply a {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  text-decoration: none;
  color: #a9883f;
}

.nocomments {
  border-color: #d98d8d;
  background-color: #ffcece;
  background-position: left -792px;
  color: #665252;
  padding: 10px;
}

.comment-meta.commentmetadata .ngaythang {
  position: absolute;
  top: 0;
  right: 0;
  color: #e7041c;
  opacity: 0.3;
  font-size: 12px;
}

.commentBody:hover .comment-meta.commentmetadata .ngaythang {
  opacity: 1;
}

.commentBody .reply {
  float: right;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

.comment-meta.commentmetadata .fn {
  font-weight: 700;
  color: #333;
  margin: 0;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 22px;
  margin-top: 2px;
}

ol.commentlist_mw,
ol.commentlist_mw ul.children {
  list-style: none;
  padding: 0;
}

ol.commentlist_mw li {
  margin-bottom: 10px;
}

ol.commentlist_mw > ul.children {
  margin: 10px 0 15px 35px;
  background: #f8f8f8;
  padding: 10px;
  position: relative;
  border: 1px solid #dfdfdf;
}

ol.commentlist_mw > ul.children:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 13px;
  width: 0;
  height: 0;
  border-bottom: 11px solid #dfdfdf;
  border-left: 11px solid rgba(238, 238, 238, 0);
  border-right: 11px solid rgba(238, 238, 238, 0);
}

ol.commentlist_mw > ul.children:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 14px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #f8f8f8;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

div.error {
  color: red;
  font-size: 14px;
  text-align: left;
  line-height: 16px;
  margin: 10px 0 0;
}

.tools_comment a {
  color: #e7041c;
  font-size: 14px;
  position: relative;
  padding: 0 15px 0 0;
  margin: 0 7px 0 0;
  line-height: 14px;
}

.tools_comment a:after {
  content: "";
  width: 4px;
  height: 4px;
  top: 50%;
  margin-top: -2px;
  background: #999;
  position: absolute;
  right: 0;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.tools_comment a:last-child:after {
  display: none;
}

.tools_comment a:last-child {
  padding: 0;
  margin: 0;
}

.noidungcomment p {
  margin: 0 0 5px;
}

/*--------------------------------------------------------------

# Media

--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------

## Captions

--------------------------------------------------------------*/

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------

# Phone Ring

--------------------------------------------------------------*/

@-webkit-keyframes quick-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-o-keyframes quick-alo-circle-anim {
  0% {
    -o-transform: rotate(0) scale(0.5) skew(1deg);
    -o-opacity: 0.1;
  }
  30% {
    -o-transform: rotate(0) scale(0.7) skew(1deg);
    -o-opacity: 0.5;
  }
  100% {
    -o-transform: rotate(0) scale(1) skew(1deg);
    -o-opacity: 0.1;
  }
}
@-moz-keyframes quick-alo-circle-fill-anim {
  0%,
  100% {
    -moz-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes quick-alo-circle-fill-anim {
  0%,
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
}
@-o-keyframes quick-alo-circle-fill-anim {
  0%,
  100% {
    -o-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -o-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
}
@-moz-keyframes quick-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes quick-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@-o-keyframes quick-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -o-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes quick-alo-circle-img-anim {
  0%,
  100%,
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
}

/* Style 1 */

.quick-alo-ph-circle,
.quick-alo-phone {
  width: 100px;
  height: 100px;
  background-color: transparent;
}

.alo-floating,
.quick-alo-phone {
  text-align: center;
  cursor: pointer;
}

.alo-floating,
.phone_text {
  line-height: 40px;
  white-space: nowrap;
}

.quick-alo-phone {
  position: fixed;
  visibility: hidden;
  display: inline-block;
  z-index: 200000 !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: visibility 0.5s;
  -moz-transition: visibility 0.5s;
  -o-transition: visibility 0.5s;
  transition: visibility 0.5s;
  bottom: 0;
  left: 0;
}

.quick-alo-phone.quick-alo-hover,
.quick-alo-phone:hover {
  opacity: 1;
}

.quick-alo-phone.quick-alo-show {
  visibility: visible;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle {
  border-color: #00aff2;
  opacity: 0.5;
}

.quick-alo-ph-circle,
.quick-alo-ph-circle-fill {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 0.1;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  z-index: 999999;
  position: absolute;
}

.quick-alo-ph-circle {
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  -webkit-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -moz-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -ms-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -o-animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.quick-alo-ph-circle-fill {
  width: 80px;
  height: 80px;
  top: 10px;
  left: 10px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle-fill {
  background-color: rgba(51, 122, 83, 0.7);
  opacity: 0.75 !important;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
  background-color: #00aff2;
}

.quick-alo-ph-img-circle {
  width: 40px;
  z-index: 999999;
  height: 40px;
  top: 30px;
  left: 30px;
  position: absolute;
  background: url(lib/images/icon-phone.png) center center no-repeat
    rgba(30, 30, 30, 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.7;
  -webkit-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -moz-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -ms-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -o-animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green.quick-alo-hover .quick-alo-ph-circle-fill,
.quick-alo-phone.quick-alo-green:hover .quick-alo-ph-circle-fill {
  background-color: rgba(51, 122, 83, 0.7);
  opacity: 0.75 !important;
}

.quick-alo-phone.quick-alo-green.quick-alo-hover .quick-alo-ph-img-circle,
.quick-alo-phone.quick-alo-green:hover .quick-alo-ph-img-circle {
  background-color: #75eb50;
}

.quick-alo-phone.quick-alo-green.quick-alo-hover .quick-alo-ph-circle,
.quick-alo-phone.quick-alo-green:hover .quick-alo-ph-circle {
  border-color: #75eb50;
  opacity: 0.5;
}

.phone_text {
  position: absolute;
  bottom: 30px;
  width: 200px;
  right: -230px;
  height: 40px;
  transform: translateX(-50%);
  background: 0 0 !important;
  color: #fff;
  font-size: 16px;
  padding: 0 10px 0 30px;
  font-weight: 700;
  border-radius: 50px;
}

.alo-floating {
  display: block;
  left: 10px;
  bottom: 10px;
  position: fixed;
  z-index: 9999;
  height: 40px;
  font-size: 14px;
  text-shadow: 1px 1px 0 #000;
  border-radius: 40px;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #e42222;
  padding: 0 10px;
}

.alo-floating a {
  color: #fff;
}

.alo-floating-zalo {
  bottom: 100px;
  left: 30px;
  padding-left: 45px;
  background: url(lib/images/icon-zalo.png) 8px center no-repeat, #009dff;
  background-size: 30px auto;
}

/* Style 2 */

.hotline-phone-ring-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 110px;
  height: 110px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}

.hotline-bar {
  position: absolute;
  background: #337ab7;
  height: 45px;
  white-space: nowrap;
  line-height: 40px;
  padding: 0 10px 0 30px;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  z-index: 9;
  border-radius: 50px !important;
  left: 42px;
  bottom: 31px;
}

.hotline-bar > a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-indent: 32px;
  letter-spacing: 1px;
  display: block;
  line-height: 45px;
}

.hotline-bar > a:active,
.hotline-bar > a:hover {
  color: #fff;
}

.hotline-phone-2 .quick-alo-ph-circle {
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
}

.hotline-phone-2 .quick-alo-ph-circle-fill {
  top: 16px;
  left: 16px;
  width: 80px;
  height: 80px;
  background: rgba(51, 122, 83, 0.7);
}

.hotline-phone-2 .quick-alo-ph-img-circle {
  top: 31px;
  left: 31px;
  width: 50px;
  height: 50px;
  background: #337ab7;
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotline-phone-2 .quick-alo-ph-img-circle .pps-btn-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hotline-phone-2 .quick-alo-ph-img-circle .pps-btn-img img {
  width: 33px;
  height: 33px;
}

.hotline-phone-2 .alo-floating-zalo {
  bottom: 120px;
  left: 30px;
}

/*--------------------------------------------------------------

## Galleries

--------------------------------------------------------------*/

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------

## Layout construct 

--------------------------------------------------------------*/

@media (min-width: 992px) {
  .sidebar-content .site-main,
  .content-sidebar .site-main {
    float: right;
    width: 74.5%;
  }

  .sidebar-content .sidebar,
  .content-sidebar .sidebar {
    float: left;
    width: 23.5%;
  }

  .content-sidebar .site-main {
    float: left;
  }

  .content-sidebar .sidebar {
    float: right;
  }

  .sidebar-content-sidebar .content-sidebar-wrap,
  .sidebar-sidebar-content .content-sidebar-wrap,
  .content-sidebar-sidebar .content-sidebar-wrap {
    float: left;
    width: 75.5%;
  }

  .sidebar-content-sidebar .site-main,
  .sidebar-sidebar-content .site-main,
  .content-sidebar-sidebar .site-main {
    float: right;
    width: 67.5496689%;
  }

  .sidebar-content-sidebar .sidebar-primary,
  .sidebar-sidebar-content .sidebar-primary,
  .content-sidebar-sidebar .sidebar-primary {
    float: left;
    width: 31.1258278%;
  }

  .sidebar-content-sidebar .sidebar-secondary,
  .sidebar-sidebar-content .sidebar-secondary {
    float: right;
    width: 23.5%;
  }

  .sidebar-sidebar-content .sidebar {
    float: left;
  }

  .sidebar-sidebar-content .content-sidebar-wrap {
    float: right;
  }

  .content-sidebar-sidebar .sidebar-primary {
    float: right;
  }

  .content-sidebar-sidebar .sidebar-secondary {
    float: right;
    width: 23.5%;
  }

  .content-sidebar-sidebar .site-main {
    float: left;
  }
}

.site-content,
.site-footer {
  position: relative;
  padding-left: 95px;
  overflow: hidden;
}

.home .site-main,
.page-template-page-fullwidth .site-main {
  width: 100%;
}

/*--------------------------------------------------------------

## Shortcode 

--------------------------------------------------------------*/

.sh-blog-shortcode .element .entry-content {
  margin: 0;
}

.sh-blog-shortcode .element .entry-thumb a {
  overflow: hidden;
  display: block;
}

.sh-blog-shortcode .element .entry-thumb a img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sh-blog-shortcode .element .entry-thumb a img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.sh-blog-shortcode .element .entry-meta {
  color: #888;
  margin-bottom: 5px;
}

.sh-blog-shortcode .element .entry-meta i {
  margin-right: 5px;
}

.sh-blog-shortcode .element .entry-title {
  margin: 10px 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  text-transform: uppercase;
}

.sh-blog-shortcode .element .entry-description {
  text-align: justify;
  line-height: 1.5;
}

/* Blog Shortcode 1 */

.sh-blog-shortcode.style-1 .element .entry-thumb {
  float: left;
  width: 25%;
  margin-right: 15px;
}

.sh-blog-shortcode.style-1 .element .entry-title {
  margin: 0 0 5px 0;
}

.sh-blog-shortcode.style-1 .element .entry-title a {
  color: #333333;
}

.sh-blog-shortcode.style-1 .element .entry-title a:hover {
  color: #e7041c;
}

.sh-blog-shortcode.style-1 .element .entry-description p {
  margin-bottom: 0;
}

/* Blog Shortcode 2 */

/* Blog Shortcode 3 */

/* Blog Shortcode 4 */

/* Blog Shortcode 5 */

.sh-blog-shortcode.style-5 .entry-thumb {
  float: left;
  width: 110px;
  margin-right: 15px;
}

.sh-blog-shortcode.style-5 .element .entry-title {
  margin-top: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: normal;
}

.sh-blog-shortcode.style-5 .element .entry-title a {
  color: #333333;
}

.sh-blog-shortcode.style-5 .element .entry-title a:hover {
  color: #e7041c;
}

.sh-blog-shortcode.style-5 .element .entry-description {
  font-size: 13px;
}

/* Blog Shortcode 6 */

.sh-blog-shortcode.style-6 .entry-thumb {
  padding: 3px;
  background: #fff;
  border: 1px solid #cdcdcd;
}

.sh-blog-shortcode.style-6 .entry-title a {
  color: #333;
}

.sh-blog-shortcode.style-6 .entry-title a:hover {
  color: #e7041c;
}

.sh-blog-shortcode.style-6 .first-element-layout,
.sh-blog-shortcode.style-6 .second-element-layout {
  margin-bottom: 20px;
}

.sh-blog-shortcode.style-6 .second-element-layout .entry-thumb {
  float: left;
  width: 110px;
  margin-right: 15px;
}

.sh-blog-shortcode.style-6 .second-element-layout .entry-title {
  margin-top: 0;
}

.sh-blog-shortcode.style-6 .second-element-layout .element:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
}

.sh-blog-shortcode.style-6 .first-element-layout .element,
.sh-blog-shortcode.style-6 .second-element-layout .element:last-child {
  margin-bottom: 0;
}

/* Blog Shortcode 7 */

.sh-blog-shortcode.style-7 .first-element-layout .element .entry-thumb {
  float: left;
  width: 30%;
  margin-right: 20px;
}

.sh-blog-shortcode.style-7 .first-element-layout .element .entry-title {
  margin: 0 0 5px;
}

.sh-blog-shortcode.style-7 .second-element-layout {
  margin-bottom: 20px;
}

.sh-blog-shortcode.style-7 .second-element-layout .element {
  margin-bottom: 5px;
}

.sh-blog-shortcode.style-7 .second-element-layout .element .entry-title {
  margin: 0;
}

.sh-blog-shortcode.style-7
  .second-element-layout
  .element
  .entry-title
  a:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e7041c;
  border-radius: 50%;
  position: relative;
  top: -2px;
  margin-right: 5px;
}

/* Blog Shortcode 8 */

.sh-blog-shortcode.style-8 .element {
  margin-bottom: 30px;
}

.sh-blog-shortcode.style-8 .element .post-inner {
  position: relative;
}

.sh-blog-shortcode.style-8 .element .entry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: rgb(0, 0, 0, 0.5);
  padding: 10px;
}

.sh-blog-shortcode.style-8 .element .entry-title {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.sh-blog-shortcode.style-8 .element .entry-title a {
  display: block;
  color: #fff;
  max-height: 40px;
  overflow: hidden;
}

.sh-blog-shortcode.style-8 .element .entry-title a:hover {
  text-decoration: underline;
}

@media (max-width: 414px) {
  .sh-blog-shortcode .element {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------

## Posts and pages

--------------------------------------------------------------*/

.sticky {
  display: block;
}

.hentry {
  margin: 0 0 30px;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-links {
  clear: both;
  margin: 0 0 30px;
}

.single .button_share {
  margin-bottom: 10px;
  margin-top: 17px;
}

.single .entry-content table tr td {
  padding: 8px;
  line-height: 1.42857143;
}

.entry-meta {
  font-size: 13px;
  margin-bottom: 10px;
}

.entry-meta span {
  color: #747474;
  display: inline-block;
  margin-right: 10px;
}

.entry-meta span i {
  color: #747474;
}

.related-posts {
  margin-bottom: 30px;
}

.related-posts .related-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.related-posts ul {
  padding-left: 0;
  list-style-position: inside;
}

.related-posts ul li {
  margin-bottom: 5px;
}

.related-posts ul li a {
  color: #333333;
}

.sidebar .widget_nav_menu ul li a:hover,
.post-next-prev-content a:hover,
.related-posts ul li a:hover,
.item-product-slide h3 a:hover,
.widget .list-post-item h3 a:hover,
.new-list article .more-link {
  color: #e7041c;
}

.next_prev_post .post-title {
  font-size: 15px;
  color: #555555;
  margin-bottom: 10px;
}

.next_prev_post .entry-content .entry-title {
  text-transform: none;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}

/*--------------------------------------------------------------

## Footer 

--------------------------------------------------------------*/

.site-footer,
.site-footer a {
  color: #fff;
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-image: url("lib/images/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.footer-widgets .footer-left-block {
  width: calc((100% / 12) * 7.5);
  padding: 45px;
}

.footer-widgets .footer-left {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widgets .footer-left .logo-footer {
  padding-bottom: 20px;
}

.footer-widgets .footer-left .logo-footer img {
  width: 100px;
}

.footer-widgets .footer-left .text-contact {
  display: flex;
  flex-wrap: wrap;
}

.footer-widgets .footer-left .text-contact .text {
  width: calc((100% - 90px) / 2);
  margin-right: 30px;
}

.footer-widgets .footer-left .text-contact .text:nth-of-type(3n) {
  margin-right: 0;
}

.footer-widgets .footer-left .text-contact .text h3 {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 18px;
  text-transform: uppercase;
}

.footer-widgets .footer-left .text-contact .text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-widgets .footer-left .text-contact .text p:nth-of-type(2n) a {
  font-size: 14px;
  color: #fff;
  transform: scale(1);
  display: inline-block;
  transition: all 0.3s ease-in-out 0.2s;
}

.footer-widgets .footer-left .text-contact .text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding-top: 10px;
}

.footer-widgets .footer-right {
  width: calc((100% / 12) * 4.5);
  position: relative;
  background-position: center center;
  background-size: cover;
  padding: 110px 45px 57px 120px;
  text-align: right;
}

.footer-widgets .footer-right .contact-form .wpcf7-form .label {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer-widgets .contact-form .wpcf7-form .contact-desc {
  width: 60%;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 20px;
  float: right;
}

.footer-widgets .contact-form .wpcf7-form .form-group input {
  border-radius: 26px;
  outline: none;
  width: 340px;
  height: 36px;
  display: inline-block;
  line-height: 36px;
  padding: 0 19px;
  background: transparent;
  border: 1px solid #ccc;
  color: #fff;
  text-align: right;
}

.footer-widgets .contact-form .wpcf7-form input[type="submit"] {
  border: 0;
  border-radius: 26px;
  min-width: 87px;
  height: 30px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: rgb(237, 129, 28);
  background: linear-gradient(
    90deg,
    rgba(237, 129, 28, 1) 0%,
    rgba(251, 179, 15, 1) 100%
  );
  color: #fff;
  font-size: 11px;
  overflow: hidden;
  outline: none;
  font-weight: bold;
}

.footer-widgets .contact-form .wpcf7-form .ajax-loader {
  display: block !important;
}

.footer-widgets h4.widget-title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-widgets ul {
  padding-left: 0;
  list-style: none;
}

.footer-widgets ul ul {
  display: none;
}

.footer-widgets .widget_nav_menu ul li {
  position: relative;
  padding: 3px 0 3px 15px;
}

.footer-widgets .widget_nav_menu ul li a:before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "\ea69";
  font-family: IcoFont;
}

.footer-widgets .widget_nav_menu ul li a:hover {
  text-decoration: underline;
}

.site-info {
  color: #333;
  padding: 10px 0;
  background-color: #fff;
}

.site-info a {
  color: #333;
}

.site-info .widget_social,
.site-info p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------

## Custom Css 

--------------------------------------------------------------*/

.viewmore-btn {
  min-width: 115px;
  padding: 0 20px;
  height: 28px;
  border-radius: 26px;
  background: rgb(237, 129, 28);
  background: linear-gradient(
    90deg,
    rgba(237, 129, 28, 1) 0%,
    rgba(251, 179, 15, 1) 100%
  );
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  display: inline-block;
  letter-spacing: 2px;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.underline-title-block {
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
  width: 100%;
}

.underline-title-block::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #f99621;
  position: absolute;
  left: 0;
  bottom: 0;
}

.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.popup-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.invest-field__desc {
  background-size: cover;
  background-position: center center;
  width: 20%;
  position: relative;
  height: 100%;
  padding: 78px 40px;
}

.invest-field__link {
  position: absolute;
  display: inline-block;
  left: 40px;
  bottom: 45px;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 20px;
}

.invest-field__link::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #b59448;
  position: absolute;
  right: -50px;
  top: 8.5px;
}

.invest-field__content {
  height: 100%;
  width: 80%;
  position: relative;
}

.invest-field__content #home_invest_field_slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.invest-field__content #home_invest_field_slide .swiper-slide {
  width: 33.3333%;
  height: 100%;
}

.invest-field__item {
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.invest-field__item::before {
  content: "";
  display: block;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(14, 28, 51, 0.1);
}

.invest-field__item:hover::before {
  background: rgba(249, 150, 33, 0.3);
}

.invest-field__text {
  position: absolute;
  z-index: 20;
  display: block;
  right: 25px;
  bottom: 55px;
  left: 25px;
}

.invest-field__index {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.invest-field__index span {
  font-weight: 500;
  font-size: 20px;
  color: #faea69;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.invest-field__type {
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
}

.invest-field__name {
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  margin-bottom: 40px;
}

.invest-field__name::before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.invest-field__item .viewmore-btn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.invest-field__pagination {
  display: block;
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  left: -30px !important;
  height: 60px !important;
  line-height: 60px;
  width: 60px !important;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  background: rgb(237, 129, 28);
  background: linear-gradient(
    90deg,
    rgba(237, 129, 28, 1) 0%,
    rgba(251, 179, 15, 1) 100%
  );
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
}

.invest-field__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  z-index: 200;
  cursor: pointer;
}

.invest-field__arrow i {
  font-size: 31px;
  color: rgba(255, 255, 255, 0.5);
}

.invest-field #invest_field_prev {
  left: -70px;
}

.invest-field #invest_field_next {
  left: 35px;
}

section.invest-field {
  height: calc(100vh - 58px);
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

section.invest-field .section-text__title {
  font-size: 37px;
  color: #fff;
  font-weight: bolder;
  line-height: 38px;
  position: relative;
}

section.invest-field .section-text__title::before {
  content: "";
  height: 42px;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
  position: absolute;
  top: -32px;
  left: 69px;
  z-index: 0;
  transform: rotate(28deg);
}

section.invest-field .section-text__title::after {
  content: "";
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
  position: absolute;
  top: 26px;
  left: 33px;
  z-index: 0;
  transform: rotate(28deg);
}

section.invest-field .section-text__title span {
  padding-left: 55px;
}

section.invest-field .section-text__label {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  padding-right: 10px;
  padding-left: 55px;
}

section.invest-field .section-text__label span {
  color: rgba(255, 255, 255, 0.4);
}

section.section-3 {
  background: #fff;
  position: relative;
  background-size: cover;
  background-position: center center;
}

section.section-3::before {
  content: "";
  background-image: url(lib/images/bg3.png);
  position: absolute;
  background-position: center center;
  background-size: cover;
  width: 528px;
  height: 100%;
}

section.section-3 .s3-block {
  padding: 77px 0px 87px 0;
  position: relative;
  margin-left: 118px;
}

section.section-3 .s3-block .menu-tab-home-project {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

section.section-3 .s3-block .menu-tab-home-project .project-title {
  width: calc((100% / 12) * 2);
  position: absolute;
  left: -77px;
  top: 51px;
}

section.section-3 .s3-block .menu-tab-home-project .project-title .title {
  font-size: 37px;
  color: #fff;
  font-weight: bold;
}

section.section-3
  .s3-block
  .menu-tab-home-project
  .project-title
  .title::before {
  content: "";
  height: 42px;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
  position: absolute;
  top: -32px;
  left: 69px;
  z-index: 0;
  transform: rotate(28deg);
}

section.section-3
  .s3-block
  .menu-tab-home-project
  .project-title
  .title::after {
  content: "";
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
  position: absolute;
  top: 26px;
  left: 33px;
  z-index: 0;
  transform: rotate(28deg);
}

section.section-3 .s3-block .menu-tab-home-project .project-title .label {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  padding-right: 10px;
  position: absolute;
  top: 44px;
  left: 61px;
}

section.section-3
  .s3-block
  .menu-tab-home-project
  .project-title
  .label::before {
  content: "";
  background-image: url(lib/images/Shape2-small.png);
  position: absolute;
  background-position: center center;
  background-size: cover;
  width: 8px;
  height: 13px;
  right: 0px;
  bottom: 1px;
}

section.section-3 .s3-block .home-project-tab {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  padding: 30px 0px;
  justify-content: center;
}

section.section-3 .s3-block .home-project-tab .home-news-project-list {
  width: 100%;
  position: relative;
  top: auto;
  left: auto;
  min-height: 520px;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container {
  height: 100% !important;
  width: 100%;
  float: left;
  overflow: inherit;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper {
  height: 100% !important;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide {
  height: calc((100% - 50px) / 2) !important;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item {
  width: 100% !important;
  display: block;
  float: left;
  height: 100%;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd {
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd::before {
  content: "";
  position: absolute;
  background: -webkit-linear-gradient(
    to top,
    #f996218f,
    rgba(152, 125, 64, 0.1)
  );
  background: -o-linear-gradient(to top, #f996218f, rgba(152, 125, 64, 0.1));
  background: -moz-linear-gradient(to top, #f996218f, rgba(152, 125, 64, 0.1));
  background: linear-gradient(to top, #f996218f, rgba(152, 125, 64, 0.1));
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.14) 19%,
    rgba(0, 0, 0, 0.46) 63%,
    rgba(0, 0, 0, 0.54) 76%,
    rgba(0, 0, 0, 0.6) 89%,
    rgba(0, 0, 0, 0.6) 99%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.14) 19%,
    rgba(0, 0, 0, 0.46) 63%,
    rgba(0, 0, 0, 0.54) 76%,
    rgba(0, 0, 0, 0.6) 89%,
    rgba(0, 0, 0, 0.6) 99%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.14) 19%,
    rgba(0, 0, 0, 0.46) 63%,
    rgba(0, 0, 0, 0.54) 76%,
    rgba(0, 0, 0, 0.6) 89%,
    rgba(0, 0, 0, 0.6) 99%,
    rgba(0, 0, 0, 0.6) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0a000000', endColorstr='#99000000', GradientType=0);
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd:hover::before {
  opacity: 1;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd:hover::after {
  opacity: 0;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd
  .text {
  width: 55%;
  position: absolute;
  left: 24px;
  bottom: 14px;
  z-index: 999;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd
  .text
  p {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  display: block;
  padding-bottom: 8px;
  letter-spacing: 1px;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd
  .text
  .view {
  font-size: 12px;
  position: relative;
  color: #fff;
  letter-spacing: 1.5px;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .bg-grd
  .text
  .view::before {
  content: "";
  width: 15px;
  height: 1px;
  background: #fff;
  top: 5px;
  left: 60px;
  position: absolute;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .news_item-text {
  padding: 23px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  display: none;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .news_item-text
  .title {
  width: 70%;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .news_item-text
  .title
  a {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #333;
  transition: all 0.3s ease;
  display: inline-block;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .news_item-text
  .title
  p {
  font-size: 14px;
  color: #c6cacf;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .news_item-text
  .view {
  width: 30%;
  padding-left: 51px;
}

section.section-3
  .s3-block
  .home-project-tab
  .home-news-project-list
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .item
  .news_item-text
  .view
  a {
  padding: 6px 40px;
  border-radius: 26px;
  background: #b08e42;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  display: block;
  letter-spacing: 2px;
  position: relative;
}

section.section-3 .s3-block .home-project-tab .pagination-page {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

/*Contact Page*/

.page-template-page-contact .map .detail-address ._1address {
  padding: 15px 10px 10px 15px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.4s;
  height: 100%;
  display: block;
  margin-bottom: 10px;
}

.page-template-page-contact .map .detail-address ._1address:last-child {
  margin-bottom: 0;
}

.page-template-page-contact .map .detail-address ._1address:hover {
  box-shadow: 3px 2px 20px 5px #b1903e36;
}

.page-template-page-contact .map .detail-address b._title {
  color: #b08e3a;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  padding-bottom: 5px;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 15px;
  cursor: pointer;
}

.page-template-page-contact .map .detail-address b._title::before {
  content: "";
  position: absolute;
  width: 47px;
  height: 1px;
  background: #00163c;
  bottom: 0;
  left: 0;
}

.page-template-page-contact .map .detail-address ._1address ._1line {
  width: calc((100% - 60px) / 2);
  display: flex;
  align-items: baseline;
}

.page-template-page-contact .map .detail-address ._1address ._1line i {
  color: #31353f;
  display: inline-block;
  margin-right: 5px;
  transition: 0.4s;
}

.page-template-page-contact .map .detail-address ._1address ._1line span {
  display: inline-block;
  color: #31353f;
  flex: 14px;
  line-height: 20.5px;
  transition: 0.4s;
}

.page-template-page-contact
  .map
  .detail-address
  ._1address
  ._1line:nth-of-type(1) {
  float: left;
}

.page-template-page-contact
  .map
  .detail-address
  ._1address
  ._1line:nth-of-type(2),
.page-template-page-contact
  .map
  .detail-address
  ._1address
  ._1line:nth-of-type(3) {
  float: right;
}

.page-template-page-contact
  .map
  .detail-address
  ._1address
  ._1line:nth-of-type(2) {
  margin-bottom: 0px;
}

.page-template-page-contact .map .detail-address ._1address.active span,
.page-template-page-contact .map .detail-address ._1address.active i,
.page-template-page-contact .map .detail-address ._1address.active b {
  color: white;
}

.page-template-page-contact .map .detail-address ._1address.active b::before {
  background: white;
}

.page-template-page-contact .map .detail-address ._1address.active {
  background: #b5964d;
}

.page-template-page-contact .map .gmap .ggle-map {
  display: none;
}

.page-template-page-contact .map .gmap .ggle-map.active {
  display: block;
}

.page-template-page-contact .wpcf7-form b._title {
  color: #b08e3a;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  padding-bottom: 5px;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 15px;
  cursor: pointer;
}

.page-template-page-contact .wpcf7-form b._title::before {
  content: "";
  position: absolute;
  width: 47px;
  height: 1px;
  background: #00163c;
  bottom: 0;
  left: 0;
}

.page-template-page-contact .wpcf7-form .form-control {
  height: 45px;
  border: unset;
  border-bottom: 1px solid #ccc;
}

.page-template-page-contact .wpcf7-form textarea {
  height: unset !important;
}

.page-template-page-contact .wpcf7-form input[type="submit"] {
  background: #b2913d;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  border: 1px solid #b2913d;
  border-radius: 20px;
  transition: 0.4s;
  height: 36px;
  margin-top: 20px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

/*Lĩnh Vực Đầu Tư Page*/

.page-template-page-linhvucdautu .loop-lvdt .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 22px;
  box-shadow: 0px 1px 20px rgba(51, 51, 51, 0.2);
}

.page-template-page-linhvucdautu .loop-lvdt .item ._img-left {
  width: calc((100% / 10) * 5.5);
  background-size: cover;
  background-position: center;
  position: relative;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.page-template-page-linhvucdautu .loop-lvdt .item:nth-of-type(2n) ._img-left {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.page-template-page-linhvucdautu .loop-lvdt .item ._text-right {
  width: calc((100% / 10) * 4.5);
  padding: 60px;
}

.page-template-page-linhvucdautu .loop-lvdt .item:nth-of-type(2n) ._text-right {
  text-align: right;
}

.page-template-page-linhvucdautu .loop-lvdt .item ._text-right .number {
  font-size: 20px;
  color: #333;
  font-weight: bolder;
  position: relative;
}

.page-template-page-linhvucdautu .loop-lvdt .item ._text-right .number::before {
  content: "";
  position: absolute;
  background: #b19044;
  width: 120px;
  height: 1px;
  bottom: 13px;
  left: -120px;
}

.page-template-page-linhvucdautu
  .loop-lvdt
  .item:nth-of-type(2n)
  ._text-right
  .number::before {
  left: auto;
  right: -120px;
}

.page-template-page-linhvucdautu .loop-lvdt .item ._text-right .number span {
  font-size: 38px;
  display: inline-block;
  padding-right: 5px;
}

.page-template-page-linhvucdautu .loop-lvdt .item ._text-right .text-title {
  font-size: 24px;
  font-weight: bolder;
  color: #b19044;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.page-template-page-linhvucdautu
  .loop-lvdt
  .item
  ._text-right
  .viewmore-btn:hover {
  background: #fff;
  color: #b08e42;
}

.page-template-page-linhvucdautu .loop-lvdt .item .field-popup {
  width: 1200px;
  position: fixed;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  height: calc(100% - 100px);
  display: none;
}

.page-template-page-linhvucdautu .loop-lvdt .item.is-active .field-popup {
  display: block;
}

.page-template-page-linhvucdautu .loop-lvdt .item .field-popup .popup-inner {
  height: 100%;
  overflow-y: auto;
}

.page-template-page-linhvucdautu .loop-lvdt .item .field-popup .field-popup-bg {
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

.page-template-page-linhvucdautu
  .loop-lvdt
  .item
  .field-popup
  .popup-text-left {
  padding: 30px 238px;
  background: #fff;
}

.page-template-page-linhvucdautu
  .loop-lvdt
  .item
  .field-popup
  .popup-text-left
  h3 {
  font-size: 40px;
  font-weight: bold;
  color: #b19044;
  padding-bottom: 30px;
}

.page-template-page-linhvucdautu
  .loop-lvdt
  .item
  .field-popup
  .popup-text-left
  p {
  padding-bottom: 10px;
  line-height: 23px;
}

/*Page CTTN*/

.page-template-page-cttv .member .item {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  transition: 0.5s;
  border-collapse: separate;
  overflow: hidden;
}

.page-template-page-cttv .member .item .item-left {
  width: 50%;
  height: 100%;
  text-align: center;
  padding: 40px;
}

.page-template-page-cttv .member .item .item-left .img {
  margin-bottom: 20px;
}

.page-template-page-cttv .member .item .item-left .title {
  font-weight: bold;
  color: #333;
}

.page-template-page-cttv .member .item:hover .item-left .title {
  color: #b08e42;
}

.page-template-page-cttv .member .item .item-right {
  width: 50%;
}

.page-template-page-cttv .member .item .item-right .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/*Page Intro*/

.page-template-page-introduce .intro-01 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  height: 740px;
  padding: 0 calc((100% - 1140px) / 2);
}

.page-template-page-introduce .intro-01::before {
  width: 44.0277777778%;
  right: 0;
  background: url(lib/images/about-bg012.png) center center no-repeat;
  background-size: cover;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
}

.page-template-page-introduce .intro-01::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55.9722222222%;
  left: 0;
  background: url(lib/images/about-bg01.png) center center no-repeat;
  background-size: cover;
  height: 100%;
}

.page-template-page-introduce .intro-01 .__left {
  float: left;
  position: relative;
  height: -webkit-fill-available;
  padding: 0;
  z-index: 2;
}

.page-template-page-introduce .intro-01 .__left h2.title {
  font-weight: bolder;
  color: #b2913d;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  padding: 50px 0;
}

.page-template-page-introduce .intro-01 .__left p {
  color: #31353f;
  font-size: 14px;
  padding-bottom: 20px;
  line-height: 25px;
  margin-bottom: 0;
}

.page-template-page-introduce .intro-01 img.__right {
  max-width: 50%;
  height: auto;
  float: right;
  margin-right: -21px;
  position: relative;
}

.page-template-page-introduce .intro-02 ._1tiem .__title {
  width: 59.0277777778%;
  margin: auto;
  color: #b2913d;
  padding: 65px 0px 40px;
}

.page-template-page-introduce .intro-02 ._1tiem .__title h2 {
  font-size: 43px;
  max-width: 580px;
}

.page-template-page-introduce .intro-02 ._1tiem p {
  width: 59.0277777778%;
  margin: auto;
  color: #31353f;
  font-size: 16px;
  padding-bottom: 30px;
  line-height: 25px;
}

.page-template-page-introduce .intro-02 ._1tiem img.bg {
  max-width: 100%;
  width: 100%;
}

.page-template-page-introduce .intro-02 .text-img {
  position: relative;
}

.page-template-page-introduce .intro-02 ._1tiem .text-img p,
.page-template-page-introduce .intro-02 ._1tiem .text-img ul {
  width: 38%;
  margin-left: 20.4861111111%;
  text-align: justify;
}

.page-template-page-introduce .intro-02 ._1tiem .text-img ul {
  padding: 0;
}

.page-template-page-introduce .intro-02 ._1tiem .text-img img {
  position: absolute;
  right: 6.7361111111%;
  top: -10px;
  max-width: 33.4027777778%;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img {
  width: 83.3333333333%;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img .img {
  margin-bottom: 2px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(1),
.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(5) {
  width: 26.6666666667%;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(1),
.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(2),
.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(3) {
  height: 375px;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(2),
.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(3) {
  width: 36.5%;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(4),
.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(5) {
  height: 485px;
}

.page-template-page-introduce .intro-02 ._1tiem .block-img .img:nth-of-type(4) {
  width: 73.1666666667%;
}

.page-template-page-introduce .intro-02 ._1tiem:nth-of-type(3) .text-img p {
  margin: auto;
  margin-right: 20.4861111111%;
}

.page-template-page-introduce .intro-02 ._1tiem:nth-of-type(3) .text-img img {
  left: 6.7361111111%;
  right: unset;
}

.page-template-page-introduce .intro-02 ._1tiem img.last {
  margin: 30px 0 40px;
  width: 100%;
}

@media (min-width: 1441px) {
  .page-template-page-introduce .intro-01 {
    padding: 0 calc((100% - 1200px) / 2);
  }

  .page-template-page-introduce .intro-01::before {
    width: 35%;
  }

  .page-template-page-introduce .intro-01::after {
    width: 65%;
  }

  .page-template-page-introduce .intro-01 .__left {
    width: 65%;
  }

  .page-template-page-introduce .intro-02 ._1tiem .__title {
    width: 1200px;
  }

  .page-template-page-introduce .intro-02 ._1tiem p {
    width: 1200px;
  }

  .page-template-page-introduce .intro-02 ._1tiem img.bg {
    margin-bottom: 30px;
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img {
    margin-bottom: 120px;
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img p,
  .page-template-page-introduce .intro-02 ._1tiem .text-img ul {
    margin-left: calc((100% - 1200px) / 2);
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img img {
    right: calc((100% - 1200px) / 2 - 23px);
  }

  .page-template-page-introduce .intro-02 ._1tiem .block-img {
    margin-bottom: 50px;
  }

  .page-template-page-introduce .intro-02 ._1tiem:nth-of-type(3) .text-img p {
    margin-right: calc((100% - 1200px) / 2);
  }

  .page-template-page-introduce .intro-02 ._1tiem:nth-of-type(3) .text-img img {
    left: calc((100% - 1200px) / 2 - 23px);
  }
}

@media (min-width: 1336px) {
  section.section-3 .s3-block .home-project-tab {
    margin-right: 100px;
  }
}

/*Dự Án Taxonomy*/
.tax-danh_muc .section-duan .mb-4 {
  margin-bottom: 35px !important;
}
.tax-danh_muc .section-duan .item {
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 49px -15px rgba(51, 51, 51, 0.5);
  border-collapse: separate;
  overflow: hidden;
  height: 100%;
}

.tax-danh_muc .section-duan .item .img {
  width: 100%;
  height: 320px;
  display: block;
  position: relative;
}

.tax-danh_muc .section-duan .item .img .bg {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.tax-danh_muc .section-duan .item .img .bg::before {
  content: "";
  position: absolute;
  background: -webkit-linear-gradient(to top, #9b7f42, rgba(152, 125, 64, 0.1));
  background: -o-linear-gradient(to top, #9b7f42, rgba(152, 125, 64, 0.1));
  background: -moz-linear-gradient(to top, #9b7f42, rgba(152, 125, 64, 0.1));
  background: linear-gradient(to top, #9b7f42, rgba(152, 125, 64, 0.1));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.tax-danh_muc .section-duan .item .img .bg:hover::before {
  opacity: 1;
}

.tax-danh_muc .section-duan .item .news_item-text {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
}

.tax-danh_muc .section-duan .item .news_item-text .title {
  width: 70%;
}

.tax-danh_muc .section-duan .item .news_item-text .title a {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #333;
  transition: all 0.3s ease;
}

.tax-danh_muc .section-duan .item .view.view-project {
  position: absolute;
  right: 30px;
  top: 20px;
  width: auto !important;
  padding-left: 0px !important;
}

.tax-danh_muc .section-duan .item .view a {
  width: 115px;
  height: 28px;
  border-radius: 26px;
  background: rgb(237, 129, 28);
  background: linear-gradient(
    90deg,
    rgba(237, 129, 28, 1) 0%,
    rgba(251, 179, 15, 1) 100%
  );
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  display: block;
  letter-spacing: 2px;
  position: relative;
}

.tax-danh_muc .section-duan .item .view a span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tax-danh_muc .section-duan .item .view a span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -150%, 0);
  -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -150%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, -150%, 0);
}

.tax-danh_muc .section-duan .item .view:hover span::after {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, 150%, 0);
  -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, 150%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
    translate3d(0, 150%, 0);
}

.du_an-template-default article .entry-content .project-info {
  padding: 40px 120px;
  box-shadow: 0px 0px 49px -15px rgba(51, 51, 51, 0.5);
  border-collapse: separate;
  overflow: hidden;
  margin-bottom: 50px;
}

.du_an-template-default article .entry-content .project-info .title {
  font-size: 25px;
  text-transform: uppercase;
  color: #b59448;
  padding-bottom: 45px;
  font-weight: bold;
  text-align: center;
}

.du_an-template-default article .entry-content .item-block {
  display: flex;
  flex-wrap: wrap;
}

.du_an-template-default article .entry-content .item-block .item {
  margin-bottom: 3px;
  margin-right: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 1) {
  width: calc((100% / 10) * 3 - 3px);
  height: 370px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 2) {
  width: calc((100% / 10) * 7 - 3px);
  margin-right: 0px;
  height: 370px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 3) {
  width: calc((100% / 10) * 7 - 3px);
  height: 460px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 4) {
  width: calc((100% / 10) * 3 - 3px);
  margin-right: 0px;
  height: 460px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 5) {
  width: calc((100% / 10) * 3 - 3px);
  height: 370px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 6) {
  width: calc((100% / 10) * 7 - 3px);
  margin-right: 0px;
  height: 370px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 7) {
  width: calc((100% / 10) * 7 - 3px);
  height: 460px;
}

.du_an-template-default
  article
  .entry-content
  .item-block
  .item:nth-of-type(4n + 8) {
  width: calc((100% / 10) * 3 - 3px);
  margin-right: 0px;
  height: 460px;
}

.du_an-template-default article .entry-content .the-content {
  padding: 30px 110px 0px;
}

/*--------------------------------------------------------------

## Responsive 

--------------------------------------------------------------*/

/* Extra large devices (large desktops) */

@media (max-width: 1366px) {
  .footer-widgets .contact-form .wpcf7-form .form-group input {
    width: 100%;
  }

  .footer-widgets .contact-form .wpcf7-form .ajax-loader {
    display: none !important;
  }
}

/* Large devices (desktops, less than 1200px) */

@media (max-width: 1200px) {
}

@media (max-width: 1024px) {
  .site-header .header-main {
    width: 100%;
    height: 60px;
  }

  .site-header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    margin-top: 0;
    margin-left: 0;
  }

  .site-header .logo img {
    width: 55px;
  }

  .site-header .hamburger-menu {
    top: 50%;
    left: 20px;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  .site-header .botHd {
    left: auto;
    right: 20px;
    bottom: 21px;
    width: auto;
  }

  .site-header .header-content {
    padding-left: 20px;
  }

  .main-navigation ul {
    width: 100%;
  }

  .main-navigation ul.menu > li > a {
    font-size: 24px;
  }

  .main-navigation ul ul {
    visibility: visible;
    transform: unset;
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 0;
    display: block;
  }

  .main-navigation ul.menu ul.sub-menu li a {
    font-size: 16px;
  }

  .main-navigation ul ul::after {
    display: none;
  }

  .site-content,
  .site-footer {
    padding-left: 0;
  }

  .footer-widgets {
    background-size: auto;
  }

  .footer-widgets .footer-right {
    background-position: initial;
    padding-right: 30px;
  }

  .footer-widgets .contact-form .wpcf7-form .contact-desc {
    width: 80%;
  }

  .du_an-template-default article .entry-content .the-content {
    padding: 30px 80px;
  }

  .du_an-template-default article .entry-content .project-info {
    padding: 40px 90px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 1) {
    width: calc((100% / 10) * 3 - 3px);
    height: 300px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 2) {
    width: calc((100% / 10) * 7 - 3px);
    margin-right: 0px;
    height: 300px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 3) {
    width: calc((100% / 10) * 7 - 3px);
    height: 400px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 4) {
    width: calc((100% / 10) * 3 - 3px);
    margin-right: 0px;
    height: 400px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 5) {
    width: calc((100% / 10) * 3 - 3px);
    height: 300px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 6) {
    width: calc((100% / 10) * 7 - 3px);
    margin-right: 0px;
    height: 300px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 7) {
    width: calc((100% / 10) * 7 - 3px);
    height: 400px;
  }

  .du_an-template-default
    article
    .entry-content
    .item-block
    .item:nth-of-type(4n + 8) {
    width: calc((100% / 10) * 3 - 3px);
    margin-right: 0px;
    height: 400px;
  }

  .page-template-page-linhvucdautu .loop-lvdt .item.is-active .field-popup {
    width: 730px;
    height: calc(100% - 200px);
  }

  .page-template-page-linhvucdautu
    .loop-lvdt
    .item
    .field-popup
    .popup-text-left {
    padding: 30px 100px;
  }

  .page-template-page-introduce .intro-01 {
    padding: 30px;
    min-height: unset;
  }

  .page-template-page-introduce .intro-02 ._1tiem .__title {
    width: 100%;
    padding: 30px;
  }

  .page-template-page-introduce .intro-02 ._1tiem .__title h2 {
    width: 100%;
    max-width: 600px;
  }

  .page-template-page-introduce .intro-02 ._1tiem p {
    width: 100%;
    padding: 30px;
    padding-top: 0;
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img p,
  .page-template-page-introduce .intro-02 ._1tiem .text-img ul {
    margin: 0;
    width: 65%;
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img img {
    right: 30px;
  }

  .page-template-page-introduce .intro-02 ._1tiem .block-img {
    width: 100%;
    padding: 30px;
  }

  .page-template-page-introduce .intro-02 ._1tiem:nth-of-type(3) .text-img p {
    margin-right: 0px;
  }

  .page-template-page-introduce .intro-02 ._1tiem:nth-of-type(3) .text-img img {
    left: 15px;
  }

  .invest-field__desc {
    padding: 60px 16px;
  }

  section.section-3 .s3-block {
    margin-left: 98px;
  }

  section.section-3 .s3-block .home-project-tab {
    margin-right: 90px;
  }
}

/* Medium devices (tablets, less than 992px) */

@media (max-width: 992px) {
  #site-navigation,
  .sidebar .widget_nav_menu ul ul {
    top: 80px;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }

  .site-boxed .site-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-content {
    padding: 0;
  }

  .invest-field__desc {
    width: 35%;
    height: 100%;
  }

  .invest-field__content {
    width: 65%;
    height: 100%;
  }

  .invest-field__item::before {
    background-color: rgba(14, 28, 51, 0.6);
  }

  .invest-field__arrow i {
    font-size: 38px;
  }

  .invest-field #invest_field_prev {
    left: -250px;
  }

  .invest-field #invest_field_next {
    left: 455px;
  }

  section.invest-field {
    height: 400px;
    min-height: 400px;
  }

  .invest-field__content #invest_field_pagination {
    display: none;
  }

  .footer-widgets {
    background-image: none;
    background: #111;
  }

  .footer-widgets .footer-left-block {
    width: 100%;
    padding: 30px;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }

  .footer-widgets .footer-left {
    padding-left: 0;
    border-left: 0;
  }

  .footer-widgets .footer-right {
    width: 100%;
    padding: 30px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }

  .footer-widgets .contact-form .wpcf7-form .contact-desc {
    width: 100%;
  }

  .footer-widgets .contact-form .wpcf7-form .form-group input {
    width: 340px;
    text-align: left;
  }

  .page-template-page-linhvucdautu .loop-lvdt .item ._text-right {
    padding: 30px;
  }
}

/* Small devices (landscape phones, less than 768px) */

@media (max-width: 768px) {
  .site-info,
  .site-info * {
    text-align: center;
  }

  .sh-blog-shortcode.style-3 .post-inner .entry-content {
    padding-top: 15px;
  }

  .sh-blog-shortcode.style-3 .element .entry-title {
    margin-top: 0;
  }

  .sh-blog-shortcode.style-3 .post-inner .entry-description {
    height: 77px;
    overflow: hidden;
  }

  section.section-3 .s3-block .home-project-tab .home-news-project-list {
    min-height: 220px;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide {
    height: 100% !important;
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img p,
  .page-template-page-introduce .intro-02 ._1tiem .text-img ul {
    width: 100%;
  }

  .page-template-page-introduce .intro-02 ._1tiem .text-img img {
    position: unset;
    width: 100%;
    max-width: unset;
  }

  section.section-3 .s3-block .home-project-tab {
    padding-top: 50px;
  }

  .wtb-slider {
    height: 60vh;
  }
}

/* Extra small devices (portrait phones, less than 576px) */

@media (max-width: 576px) {
  .alo-floating-zalo {
    height: 38px;
    padding-left: 28px;
    background: url(lib/images/icon-zalo.png) 4px center no-repeat, #009dff;
    background-size: 30px auto;
  }

  .alo-floating-zalo a strong {
    display: none;
  }

  .banner-header {
    padding-top: 150px;
  }

  .invest-field__desc {
    width: 100%;
    height: 100%;
    padding: 30px 70px 70px 70px;
  }

  .invest-field__link {
    bottom: 10px;
  }

  .invest-field__content {
    width: 100%;
    height: 300px;
  }

  .invest-field__item::before {
    background-color: rgba(14, 28, 51, 0.2);
  }

  .invest-field__text {
    bottom: 50px;
    left: 39px;
  }

  .invest-field #invest_field_prev {
    left: 0px;
  }

  .invest-field #invest_field_next {
    left: auto;
    right: 0;
  }

  section.invest-field {
    height: 100%;
  }

  section.section-3 {
    background-image: unset !important;
    padding-bottom: 25px;
  }

  section.section-3::before {
    background-image: unset;
  }

  section.section-3 .s3-block {
    padding: 30px 0px 0px 0px;
    margin-left: 0px;
  }

  section.section-3 .s3-block .menu-tab-home-project {
    padding-bottom: 0;
  }

  section.section-3 .s3-block .menu-tab-home-project .project-title {
    width: 100%;
    left: auto;
    top: auto;
    position: relative;
    padding-bottom: 40px;
  }

  section.section-3 .s3-block .menu-tab-home-project .project-title .title {
    text-align: center;
    color: #333;
  }

  section.section-3
    .s3-block
    .menu-tab-home-project
    .project-title
    .title::before,
  section.section-3
    .s3-block
    .menu-tab-home-project
    .project-title
    .title::after {
    display: none;
  }

  section.section-3 .s3-block .menu-tab-home-project .project-title .label {
    position: absolute;
    left: 53%;
    top: 45px;
    color: #a4abb3;
  }

  section.section-3
    .s3-block
    .menu-tab-home-project
    .project-title
    .label::before {
    background-image: url(lib/images/line-small.png);
  }

  section.section-3 .s3-block .home-project-tab {
    margin-right: 0;
    padding-top: 20px;
  }

  section.section-3 .s3-block .home-project-tab .home-news-project-list {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container {
    width: 100%;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item {
    padding: 15px;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .bg-grd {
    height: 220px;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .bg-grd
    .text {
    display: none;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .news_item-text {
    display: block;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .news_item-text
    .title {
    width: 100%;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .news_item-text
    .title
    a {
    font-size: 15px;
    padding-bottom: 12px;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .news_item-text
    .title
    p {
    font-size: 13px;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .home-news-project-list
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .item
    .news_item-text
    .view {
    width: 100%;
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  section.section-3 .s3-block .home-project-tab .pagination-page {
    display: flex;
    align-items: center;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .pagination-page
    .swiper-pagination-bullet {
    position: relative;
    width: 6px;
    height: 6px;
    border: 2px solid transparent;
    background-color: #a9b0b7;
    margin: 0px 5px;
    opacity: 1;
    border-radius: 50%;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    outline: none;
  }

  section.section-3
    .s3-block
    .home-project-tab
    .pagination-page
    .swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
    border: 3px solid #af8d41;
    background-color: transparent;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    outline: none;
  }

  .du_an-template-default article .entry-content .project-info {
    padding: 40px 20px 20px;
  }

  .du_an-template-default article .entry-content .item-block .item {
    width: calc(50% - 3px) !important;
    height: 200px !important;
  }

  .du_an-template-default article .entry-content .the-content {
    padding: 30px 20px 0px;
  }

  .footer-widgets .footer-left-block {
    padding: 15px;
  }

  .footer-widgets .footer-left .logo-footer {
    text-align: center;
  }

  .footer-widgets .footer-left .text-contact .text {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
  }

  .page-template-page-linhvucdautu .loop-lvdt .item ._img-left {
    width: 100%;
    height: 200px;
  }

  .page-template-page-linhvucdautu .loop-lvdt .item ._text-right {
    width: 100%;
    padding: 20px;
  }

  .page-template-page-linhvucdautu .loop-lvdt .item:nth-of-type(2n) ._img-left {
    -webkit-box-ordinal-group: 0;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: 0;
    -webkit-order: 0;
    order: 0;
  }

  .page-template-page-linhvucdautu
    .loop-lvdt
    .item
    .field-popup
    .popup-text-left {
    padding: 30px;
  }

  .page-template-page-linhvucdautu .loop-lvdt .item.is-active .field-popup {
    width: 480px;
  }

  .page-template-page-introduce .intro-01 {
    padding: 15px;
    flex-direction: column;
    display: inline-block;
    height: unset;
  }

  .page-template-page-introduce .intro-01::before,
  .page-template-page-introduce .intro-01::after {
    display: none;
  }

  .page-template-page-introduce .intro-01 .__left {
    height: max-content;
    text-align: justify;
  }

  .page-template-page-introduce .intro-01 .__left,
  .page-template-page-introduce .intro-01 img.__right {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .page-template-page-introduce .intro-01 img.__right {
    margin: auto;
  }

  .page-template-page-introduce .intro-02 ._1tiem .__title,
  .page-template-page-introduce .intro-02 ._1tiem p {
    padding: 15px;
  }

  .page-template-page-introduce
    .intro-02
    ._1tiem
    .block-img
    .img:nth-of-type(1),
  .page-template-page-introduce
    .intro-02
    ._1tiem
    .block-img
    .img:nth-of-type(2),
  .page-template-page-introduce
    .intro-02
    ._1tiem
    .block-img
    .img:nth-of-type(3),
  .page-template-page-introduce
    .intro-02
    ._1tiem
    .block-img
    .img:nth-of-type(4),
  .page-template-page-introduce
    .intro-02
    ._1tiem
    .block-img
    .img:nth-of-type(5) {
    height: 160px;
  }

  .page-template-page-introduce .intro-02 ._1tiem .block-img {
    padding: 15px;
  }
}

@media (max-width: 414px) {
  .page-template-page-linhvucdautu .loop-lvdt .item.is-active .field-popup {
    width: 320px;
  }
}
