@charset "UTF-8";
/*
Theme Name: MatBaoWS
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE.   ***************/
/**
 * _base.scss
 * 
 * 1/ biến màu săc
 * 2/ biến kích thước font chữ
 * 3/ Cấu hình border
 * 4/ Mixin
 * 5/ Responsive
*/
:root {
  --fs-color-primary: #263a96;
  --fs-color-secondary: #00823d;
  --fs-color-success: #7a9c59;
  --fs-color-alert: #b20000;
  --fs-experimental-link-color: #334862;
  --fs-experimental-link-color-hover: #111;
}

/* sử dụng responsive đơn gian 
EX: 
.my-element {
  font-size: 24px;
  @include responive(phone-sm) {
    display:none;
  }
}
*/
/* sử dụng responsive  min-width và max-width
EX: 
.my-element {
  font-size: 24px;
  @include responive(phone-sm,max) {
    display:none;
  }
}
.my-element {
  font-size: 24px;
  @include responive(min,tablet) {
    display:none;
  }
}
.my-element {
  font-size: 24px;
  @include responive(420px, down) {
    display:none;
  }
}
*/
/* sử dụng responsive  min-width và max-width có thể custom breakpoints 2 giá trị max và min
EX: 
.my-element {
  font-size: 24px;
  @include responive(420px, 768px) {
    display:none;
  }
}
*/
.__ellipsis_2_rows, .post-item h5.post-title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4 !important;
  min-height: 2.8em !important;
}

.__ellipsis_3_rows {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4 !important;
  min-height: 4.2em !important;
}

h1, h2, h3, h4 {
  font-weight: 400 !important;
}

.home .stuck {
  position: unset;
}
.home #main-menu-home {
  width: 220px;
  overflow: hidden !important;
}
.home #main-menu-home .nav-sidebar.nav-vertical > li + li {
  border-top: none;
}
.home #main-menu-home button.toggle {
  color: white;
  opacity: 1;
  font-weight: normal;
  font-size: 18px;
}
.home #main-menu-home button.toggle .icon-angle-right:before {
  content: "";
  background-image: url(assets/img/icon-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.home #main-menu-home button.toggle .icon-angle-left:before {
  content: "";
  background-image: url(assets/img/icon-arrow-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.home #main-menu-home .nav-slide > li > .sub-menu > li:not(.nav-slide-header), .home #main-menu-home .mobile-sidebar-levels-2 .nav-slide > li > ul.children > li:not(.nav-slide-header) {
  border-top: none;
}
.home #main-menu-home .nav-slide > li > .sub-menu > li:not(.nav-slide-header) a, .home #main-menu-home .mobile-sidebar-levels-2 .nav-slide > li > ul.children > li:not(.nav-slide-header) a {
  color: white;
  text-transform: unset;
  font-size: 18px;
}
.home #main-menu-home .nav-sidebar.nav-vertical > li.menu-item.active, .home #main-menu-home .nav-sidebar.nav-vertical > li.menu-item:hover {
  background-color: unset;
}
.home ul.sub-menu.is-current-slide {
  height: 400px;
}
.home .banner-layers h2, .home .banner-layers h3 {
  font-size: 150px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1600px) {
  .home .banner-layers h2, .home .banner-layers h3 {
    font-size: 120px;
  }
}
@media (max-width: 1025px) {
  .home .banner-layers h2, .home .banner-layers h3 {
    font-size: 100px;
  }
}
@media (max-width: 850px) {
  .home .banner-layers h2, .home .banner-layers h3 {
    font-size: 60px;
    white-space: unset;
  }
}
.home .mobile-sidebar-levels-1 .nav-slide > li > .sub-menu, .home .mobile-sidebar-levels-1 .nav-slide > li > ul.children {
  overflow: unset;
  overflow-y: unset;
}
.home .flickity-page-dots {
  left: 70px;
  text-align: left;
}
.home .flickity-page-dots .dot {
  border-width: 1px;
  height: 10px;
  width: 10px;
}

.nav-dark #main-menu-home .nav > li > a {
  color: white;
}

.nav-vertical > li > a {
  text-transform: uppercase !important;
  font-size: 18px;
}

#main-menu .sidebar-menu .nav > li > a {
  color: black;
}
#main-menu .sidebar-menu button.toggle {
  color: black;
  opacity: 1;
  font-weight: normal;
  font-size: 18px;
}
#main-menu .sidebar-menu button.toggle > i {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
}

.icon-angle-right:before {
  content: "";
  background-color: currentColor;
  mask: url(assets/img/icon-arrow-right.svg) no-repeat center; /* Áp dụng SVG làm mask */
  mask-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.icon-angle-left:before {
  content: "";
  background-color: currentColor;
  mask: url(assets/img/icon-arrow-left.svg) no-repeat center; /* Áp dụng SVG làm mask */
  mask-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.icon-angle-down:before {
  content: "";
  background-color: currentColor;
  mask: url(assets/img/icon-arrow-down.svg) no-repeat center; /* Áp dụng SVG làm mask */
  mask-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.icon-menu:before {
  content: "";
  background-color: currentColor;
  mask: url(assets/img/icon-menu.svg) no-repeat center; /* Áp dụng SVG làm mask */
  mask-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
}

footer a {
  background-image: linear-gradient(to top, currentcolor 1px, transparent 0);
  background-position: 0 0;
  transition: background-size 0.8s cubic-bezier(0.33, 0.02, 0, 0.93);
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position-x: 100%;
}
footer a:hover {
  background-size: 100% 100%;
  background-position-x: 0;
}
footer a.button {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.__a_hover_underline, .post-item h5.post-title a {
  background-image: linear-gradient(to top, currentcolor 1px, transparent 0);
  background-position: 0 0;
  transition: background-size 0.8s cubic-bezier(0.33, 0.02, 0, 0.93);
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position-x: 100%;
}
.__a_hover_underline:hover, .post-item h5.post-title a:hover {
  background-size: 100% 100%;
  background-position-x: 0;
}

a.button {
  background-image: linear-gradient(to top, currentcolor 1px, transparent 0);
  background-position: 0 0;
  transition: background-size 0.8s cubic-bezier(0.33, 0.02, 0, 0.93);
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position-x: 100%;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
a.button:hover {
  background-size: 100% 100%;
  background-position-x: 0;
}

a#top-link {
  border: none;
  background-image: none;
  transition: all 0.2s ease-in-out;
}
a#top-link:hover {
  background-color: unset;
  color: currentColor;
  transform: translateY(-10px);
}
a#top-link .icon-angle-up::before {
  content: "";
  background-color: currentColor;
  mask: url(assets/img/icon-arrow-up.svg) no-repeat center; /* Áp dụng SVG làm mask */
  mask-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
}

.accordion {
  counter-reset: counter;
}
.accordion .accordion-item {
  counter-increment: count;
}
.accordion .accordion-item .accordion-title {
  padding-left: 0;
  font-size: 28px;
  border-top: none;
  border-bottom: 1px solid #ddd;
}
.accordion .accordion-item .accordion-title::before {
  content: counter(count, decimal-leading-zero);
  font-size: 13px;
  line-height: 1;
}
.accordion .accordion-item .accordion-title:hover {
  border-color: #ddd;
}
.accordion .accordion-item .accordion-title.active {
  background-color: unset;
  font-weight: inherit;
  border-color: #ddd;
}
.accordion .accordion-item .accordion-title span {
  padding-left: 7px;
}
.accordion .accordion-item .accordion-inner {
  padding-left: 32px;
}
.accordion .accordion-item button.toggle {
  right: 0;
  left: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion .icon-angle-down:before {
  width: 14px;
  height: 14px;
  display: block;
}

.badge.post-date {
  top: 0;
  width: 60px;
  text-transform: uppercase;
}
.badge.post-date .badge-inner {
  padding: 5px;
}
.badge.post-date .post-date-day {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.125em;
  border-bottom: 1px solid #707070;
}
.badge.post-date .post-date-month {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  display: block;
  margin-top: 5px;
}

.image-cover img {
  transform: scale(1.1);
  transition: transform 1s cubic-bezier(0.33, 0.02, 0, 0.93);
}

.image-cover:hover img {
  transform: scale(1.1) translateX(4%);
}

.post-item h5.post-title {
  font-size: 28px;
  font-weight: 400;
  min-height: 2.8em !important;
}
.post-item h5.post-title a {
  display: inline;
}
.post-item p.cat-label {
  font-size: 15px;
}
.post-item p.cat-label:hover {
  opacity: 1;
}
.post-item .is-divider {
  display: none;
}

.mbws-col-haft .mbws-col-text {
  padding: 0 15px 30px !important;
}
.mbws-col-haft .mbws-col-text .col-inner {
  display: flex;
  height: 100%;
}
.mbws-col-haft .mbws-col-text .col-inner .page-title-inner {
  padding-top: 0;
}
.mbws-col-haft .mbws-col-text .col-inner .icon-box.bt-30 {
  position: absolute;
  bottom: 30px;
}
.mbws-col-haft .mbws-col-text .col-inner .icon-box.bt-30 p:last-of-type {
  margin-bottom: 0;
}
.mbws-col-haft .mbws-col-text.sticky .col-inner {
  height: 100vh;
  align-items: center;
}
@media (max-width: 850px) {
  .mbws-col-haft .mbws-col-text.sticky .col-inner {
    height: auto;
  }
}
.mbws-col-haft .mbws-col-text .icon-box.pr-300 {
  padding-right: 32%;
}
@media (max-width: 1600px) {
  .mbws-col-haft .mbws-col-text .icon-box.pr-300 {
    padding-right: 7%;
  }
}
.marquee-text p, .marquee-text h2, .marquee-text h3 {
  margin-bottom: 0;
}

.list-logo {
  display: flex;
  max-width: 1400px;
  flex-wrap: wrap;
  margin: auto;
}
.list-logo > .logo-item {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 0 0 140px;
  justify-content: center;
}
@media (max-width: 850px) {
  .list-logo > .logo-item {
    flex: 0 0 33.3333333333%;
  }
}
.list-logo > .logo-item img {
  transition: 0.6s cubic-bezier(0.33, 0.02, 0, 0.93);
}
.list-logo > .logo-item:hover img {
  transform: translateY(-8px);
}

.gap-57vh {
  padding-top: 57vh !important;
}

.mbws-cv-page .page-title-inner {
  flex-flow: column;
  align-items: flex-start;
}
.mbws-cv-page .page-title-sub {
  margin-left: 0 !important;
}

.form-flat input:not([type=submit]), .form-flat select, .form-flat textarea {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.size-90 {
  font-size: 90px;
  white-space: nowrap;
}
.size-90 h1, .size-90 h2, .size-90 h3, .size-90 h4 {
  font-size: 1em;
  z-index: 1;
  position: relative;
}
@media (max-width: 1600px) {
  .size-90 {
    font-size: 80px;
  }
}
@media (max-width: 1025px) {
  .size-90 {
    font-size: 70px;
  }
}
@media (max-width: 850px) {
  .size-90 {
    font-size: 60px;
    white-space: unset;
  }
}

.size-200 {
  font-size: 200px;
  white-space: nowrap;
}
.size-200 h1, .size-200 h2, .size-200 h3, .size-200 h4 {
  font-size: 1em;
  z-index: 1;
  position: relative;
}
@media (max-width: 1600px) {
  .size-200 {
    font-size: 160px;
  }
}
@media (max-width: 1025px) {
  .size-200 {
    font-size: 120px;
  }
}
@media (max-width: 850px) {
  .size-200 {
    font-size: 63px;
    white-space: unset;
  }
}

.portfolio-box-category .show-on-hover {
  opacity: 1;
}

.portfolio-box .box-text.text-center {
  font-size: 1.5em;
  text-align: left;
  padding-left: 0;
}

section.responsive {
  padding: 110px 55px 0 !important;
}
@media (max-width: 850px) {
  section.responsive {
    padding: 125px 10px 0 !important;
  }
}

.off-canvas-right .mfp-content {
  background-color: white;
}

@media (min-width: 850px) and (max-width: 1025px) {
  .nav-spacing-xlarge > li {
    margin: 0 8px;
  }
}

.select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection, select {
  border-radius: 0;
}

input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, select:focus, textarea:focus {
  box-shadow: none;
}

.select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection, input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
  box-shadow: none;
  border-radius: 0;
}

.is-form, button.is-form, button[type=submit].is-form, input[type=button].is-form, input[type=reset].is-form, input[type=submit].is-form {
  border-radius: 0;
}

button[type=submit],
input[type=submit] {
  width: 100%;
  border-radius: 0;
}

form.searchform input[type=search] {
  border-radius: 16px;
  height: 40px;
}
form.searchform button[type=submit] {
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
}

.searchform-wrapper .flex-row .flex-col {
  padding-right: 0;
  order: 1;
}
.searchform-wrapper .flex-row .flex-col input[type=search] {
  padding-left: 50px;
  border-color: transparent;
}
.searchform-wrapper .flex-row .flex-col input[type=search]:focus {
  border-color: black;
}
.searchform-wrapper .flex-row .flex-col:last-of-type {
  order: 0;
  margin-left: 0;
  width: 0;
}

#masthead {
  border-bottom: 1px solid #d4d4d4;
}
#masthead .nav > li > a {
  text-transform: uppercase;
}
#masthead.nav-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2705882353);
}
#masthead .nav > li > a > i.icon-menu {
  font-size: 3em;
}
@media (min-width: 850px) and (max-width: 1025px) {
  #masthead #logo {
    width: 100px;
  }
}

.blog-archive .container, .blog-archive .row {
  max-width: 1400px;
}

.blog-single .container, .blog-single .row {
  max-width: 1400px;
}
.blog-single .entry-content {
  padding: 0 8.125%;
}
.blog-single .entry-header-text {
  margin-top: 65px;
  padding: 0 8.125%;
}
.blog-single h1 {
  font-size: 60px;
}
.blog-single .entry-category {
  font-size: 1rem !important;
}
.blog-single .entry-author,
.blog-single .navigation-post,
.blog-single .comments-area {
  padding: 0 8.125%;
}

.portfolio-archive .container, .portfolio-archive .row {
  max-width: 1400px !important;
}

.portfolio-single-page .container, .portfolio-single-page .row {
  max-width: 1400px !important;
}

#footer {
  border-top: 1px solid #d4d4d4;
}

.absolute-footer {
  display: none;
}