@charset "UTF-8";
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-BlackItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Black.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-ExtraLightItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Italic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Light.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-BoldItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-ExtraLight.woff2") format("woff2"), url("../fonts/worksans/WorkSans-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Bold.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-ExtraBoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-ExtraBold.woff2") format("woff2"), url("../fonts/worksans/WorkSans-ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-SemiBold.woff2") format("woff2"), url("../fonts/worksans/WorkSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-LightItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-SemiBoldItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-MediumItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-ThinItalic.woff2") format("woff2"), url("../fonts/worksans/WorkSans-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Thin.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Medium.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans/WorkSans-Regular.woff2") format("woff2"), url("../fonts/worksans/WorkSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  line-height: 1.4;
  font-weight: 500;
}

/* 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;
  }
}
*/
.pd-0 {
  padding: 0 !important;
}

.mt-30 {
  margin-top: 30px !important;
}

#top-bar .flex-left {
  width: 65% !important;
}

.absolute-footer {
  display: none;
}

.mbws_justify-center {
  justify-content: center;
  display: flex;
}
.mbws_justify-center .section-title {
  justify-content: center;
  text-align: center;
}

.section-title-normal {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}
.section-title-normal span {
  border-bottom: 0 !important;
}

.mbws_subtitle-section {
  margin-bottom: 15px !important;
}
.mbws_subtitle-section .section-title {
  font-size: 17px;
  font-family: "Work Sans";
  font-weight: 600;
  font-style: normal;
  line-height: 26px;
  width: fit-content;
}
.mbws_subtitle-section .section-title .section-title-main {
  text-transform: uppercase;
}
.mbws_subtitle-section .section-title .section-title-main::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 45px;
  background: #eb1e25;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.mbws_title-section {
  margin-bottom: 20px !important;
}
.mbws_title-section .section-title {
  font-size: 48px;
  font-family: "Work Sans";
  font-weight: 500;
  line-height: 59px;
  font-style: normal;
}
@media (max-width: 767px) {
  .mbws_title-section .section-title {
    line-height: 42px;
    font-size: 35px;
  }
}
.mbws_title-section .section-title .section-title-main {
  text-transform: capitalize;
}

.mbws_des-section {
  font-size: 16px;
  font-family: "Work Sans";
  font-weight: 400;
  line-height: 23px;
  font-style: normal;
}

.mbws_fs-30 .section-title {
  font-size: 30px;
  font-weight: 600;
}
.mbws_fs-30 .section-title .section-title-main {
  text-transform: capitalize;
}

.video-button-wrapper .open-video {
  background-color: #061757 !important;
  border: 2px solid #061757 !important;
}

.flickity-page-dots {
  bottom: -60px !important;
}
@media (max-width: 767px) {
  .flickity-page-dots {
    bottom: -10px !important;
  }
}
.flickity-page-dots .dot {
  border-radius: 50% !important;
  background-color: #061757 !important;
  border: 3px solid #061757 !important;
  width: 12px !important;
  height: 12px !important;
  opacity: 1 !important;
}
.flickity-page-dots .is-selected {
  background-color: #eb1e25 !important;
  width: 24px !important;
  border-radius: 6px !important;
  border: 3px solid #eb1e25 !important;
}

.icon-menu:before {
  color: #ffffff;
}

.mbws_top-bar-infor-header .mbws_item-1 {
  padding-bottom: 0 !important;
}
.mbws_top-bar-infor-header .mbws_item-1 .text {
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-1::after {
  position: absolute;
  content: "\ea70";
  left: -10px;
  top: 0;
  font-family: "matbaows-icons";
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-2 {
  padding-bottom: 0 !important;
}
.mbws_top-bar-infor-header .mbws_item-2 a {
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-2 .text {
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-2::after {
  position: absolute;
  content: "屮";
  left: -10px;
  top: 0;
  font-family: "matbaows-icons";
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-3 {
  padding-bottom: 0 !important;
}
.mbws_top-bar-infor-header .mbws_item-3 a {
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-3 .text {
  color: #ffffff;
}
.mbws_top-bar-infor-header .mbws_item-3::after {
  position: absolute;
  content: "\eae5";
  left: -10px;
  top: 0;
  font-family: "matbaows-icons";
  color: #ffffff;
}

#top-bar {
  padding-bottom: 30px;
}

.header-main {
  z-index: 9999 !important;
  margin-top: -40px;
}
@media (max-width: 767px) {
  .header-main {
    margin-top: 0;
  }
}
.header-main .header-inner {
  background-color: #eb1e25;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .header-main .header-inner {
    border-radius: 0;
  }
}
.header-main .header-inner .header_logo {
  /*filter: brightness(0) invert(1);*/
}
.header-main .header-inner .header-nav .menu-item-type-post_type {
  margin-right: 30px;
  margin-left: 30px;
  padding: 15px 0;
}
.header-main .header-inner .header-nav .menu-item a {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  text-transform: capitalize;
}
.header-main .header-inner .header-nav .menu-item a::after {
  content: "";
  width: 0%;
  height: 4px;
  background-color: #061757;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 300ms ease-in;
}
.header-main .header-inner .header-nav .menu-item:hover a::after {
  content: "";
  width: 100%;
}
.header-main .header-inner .header-nav .current-menu-item a::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #061757;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 300ms ease-in;
}

.stuck .header-main {
  margin-top: 0;
  background-color: #eb1e25;
}

@media (max-width: 1024px) {
  #logo a {
    margin: 0 auto;
  }
}

.mobile-sidebar .menu-item {
  margin-right: 30px;
  margin-left: 30px;
  padding: 20px 0;
  border-top: 0 !important;
}
.mobile-sidebar .menu-item a {
  border-top: 0 !important;
  font-size: 26px;
  line-height: 27px;
  font-weight: 500;
  color: #061757;
  text-transform: capitalize;
}
.mobile-sidebar .menu-item a::after {
  content: "";
  width: 0%;
  height: 4px;
  background-color: #061757;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 300ms ease-in;
}
.mobile-sidebar .menu-item:hover a::after {
  content: "";
  width: 100%;
}
.mobile-sidebar .current-menu-item a::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #061757;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 300ms ease-in;
}

.mbws_section-banner-home {
  margin-top: -50px;
  overflow: hidden;
}
.mbws_section-banner-home .mbws_content-banner {
  background-color: rgba(255, 255, 255, 0.7019607843);
  padding: 72px !important;
}
@media (max-width: 767px) {
  .mbws_section-banner-home .mbws_content-banner {
    padding: 15px !important;
    margin-top: 50px;
  }
}
.mbws_section-banner-home .mbws_content-banner .mbws_subtitle-section .section-title {
  font-size: 30px;
  line-height: 44px;
}
@media (max-width: 1024px) {
  .mbws_section-banner-home .mbws_content-banner .mbws_subtitle-section .section-title {
    font-size: 22px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .mbws_section-banner-home .mbws_content-banner .mbws_subtitle-section .section-title {
    font-size: 22px;
    line-height: 20px;
  }
}
.mbws_section-banner-home .mbws_content-banner .mbws_title-section {
  margin-bottom: 50px !important;
}
@media (max-width: 1024px) {
  .mbws_section-banner-home .mbws_content-banner .mbws_title-section {
    margin-bottom: 20px !important;
  }
}
.mbws_section-banner-home .mbws_content-banner .mbws_title-section .section-title {
  font-size: 70px;
  line-height: 70px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .mbws_section-banner-home .mbws_content-banner .mbws_title-section .section-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .mbws_section-banner-home .mbws_content-banner .mbws_title-section .section-title {
    font-size: 35px;
    line-height: 40px;
  }
}
.mbws_section-banner-home .mbws_content-banner .mbws_des-section {
  font-size: 18px;
  margin-bottom: 30px !important;
}
.mbws_section-banner-home .mbws_content-banner .mbws_group-button {
  color: #eb1e25;
  background-color: #ffffff;
  border-radius: 15px !important;
  border: 1px solid #ffffff;
  padding: 10px 40px;
  font-weight: 500;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.0784313725);
}
.mbws_section-banner-home .mbws_content-banner .mbws_group-button:hover {
  background-color: #eb1e25;
  border: 1px solid #eb1e25;
}
.mbws_section-banner-home .mbws_image-abs {
  position: absolute;
  width: 1000px !important;
  right: 0px;
  bottom: -155px;
}
.mbws_section-banner-home .mbws_image-abs .img-inner img {
  width: 1000px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-banner-home .mbws_image-abs-2 {
  position: absolute;
  width: 286px !important;
  left: -145px;
  bottom: -145px;
}
.mbws_section-banner-home .mbws_image-abs-2 .img-inner img {
  width: 286px;
  height: 100%;
  object-fit: contain;
}

.mbws_section-infor-under-banner {
  padding-bottom: 120px !important;
}
@media (max-width: 1024px) {
  .mbws_section-infor-under-banner {
    padding-bottom: 60px !important;
  }
}

.mbws_section-about-us.mbws_financial-experts {
  padding-top: 0 !important;
}
.mbws_section-about-us.mbws_financial-experts .video-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mbws_section-financial-plan {
  padding-top: 220px !important;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mbws_section-financial-plan {
    padding-top: 120px !important;
  }
}
.mbws_section-financial-plan .mbws_content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mbws_section-financial-plan .mbws_content .section-title-container {
  margin-bottom: 10px;
}
.mbws_section-financial-plan .mbws_content .section-title-container .section-title {
  justify-content: center;
  font-size: 118px;
  line-height: 117px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .mbws_section-financial-plan .mbws_content .section-title-container .section-title {
    font-size: 80px;
    line-height: 60px;
  }
}
.mbws_section-financial-plan .mbws_content .text {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  text-align: center;
}
.mbws_section-financial-plan .mbws_content .text p {
  margin-bottom: 0;
}
.mbws_section-financial-plan .mbws_image-main .img-inner img {
  border-radius: 15px;
}
.mbws_section-financial-plan .mbws_image-main .img-inner::after {
  content: "";
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(6, 23, 87, 0.2), rgba(6, 23, 87, 0.5), rgb(6, 23, 87));
}
.mbws_section-financial-plan .mbws_image-abs {
  width: 300px !important;
  position: absolute;
  right: -85px;
  bottom: -130px;
  z-index: -1;
  transform: rotate(160deg);
}
.mbws_section-financial-plan .mbws_image-abs .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-financial-plan .button.mbws_group-button {
  color: #eb1e25;
  background-color: #ffffff;
  border-radius: 15px !important;
  border: 1px solid #ffffff;
  padding: 10px 40px;
  font-weight: 500;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.0784313725);
}
.mbws_section-financial-plan .button.mbws_group-button:hover {
  background-color: #eb1e25;
  border: 1px solid #eb1e25;
}
@media (max-width: 1024px) {
  .mbws_section-financial-plan .row .col {
    padding-bottom: 0 !important;
  }
}

.mbws_section-home-call-now {
  overflow: hidden;
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-home-call-now {
    padding-top: 60px !important;
  }
}
@media (max-width: 767px) {
  .mbws_section-home-call-now {
    padding-top: 30px !important;
  }
}
.mbws_section-home-call-now .mbws_wrap-content .col-inner {
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
}
@media (max-width: 767px) {
  .mbws_section-home-call-now .mbws_wrap-content .col-inner {
    display: block;
    padding: 30px 30px;
  }
}
.mbws_section-home-call-now .mbws_wrap-content .col-inner .mbws_content-item .section-title-container {
  margin-bottom: 10px;
}
.mbws_section-home-call-now .mbws_wrap-content .col-inner .mbws_content-item .section-title-container .section-title-normal {
  font-size: 49px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mbws_section-home-call-now .mbws_wrap-content .col-inner .mbws_content-item .section-title-container .section-title-normal {
    font-size: 35px;
  }
}
.mbws_section-home-call-now .mbws_wrap-content .col-inner .mbws_content-item .section-title-container .section-title-normal .section-title-main {
  text-transform: capitalize;
}
.mbws_section-home-call-now .mbws_wrap-content .col-inner .mbws_wrap-button {
  color: #ffffff;
  background-color: #eb1e25;
  border-radius: 15px !important;
  border: 1px solid #eb1e25;
  padding: 10px 40px;
  font-weight: 500;
}
.mbws_section-home-call-now .mbws_wrap-content .col-inner .mbws_wrap-button:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #eb1e25;
}
.mbws_section-home-call-now .mbws_wrap-content .mbws_wrap-content-contact .mbws_image-abs-1 {
  width: 300px !important;
  position: absolute;
  top: -130px;
  left: -132px;
}
.mbws_section-home-call-now .mbws_wrap-content .mbws_wrap-content-contact .mbws_image-abs-1 .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-home-call-now .mbws_wrap-content .mbws_wrap-content-contact .mbws_image-abs-2 {
  width: 300px !important;
  position: absolute;
  bottom: -130px;
  right: -132px;
}
.mbws_section-home-call-now .mbws_wrap-content .mbws_wrap-content-contact .mbws_image-abs-2 .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-home-call-now .mbws_image-abs-1 {
  width: 286px !important;
  position: absolute;
  top: -130px;
  left: -145px;
}
.mbws_section-home-call-now .mbws_image-abs-1 .img-inner img {
  width: 286px;
  height: 100%;
  object-fit: contain;
}

.mbws_section-my-team {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-my-team {
    padding-top: 30px !important;
  }
}
.mbws_section-my-team .mbws_item-content .mbws_group-button {
  color: #eb1e25;
  background-color: #ffffff;
  border-radius: 15px !important;
  border: 1px solid #ffffff;
  padding: 10px 40px;
  font-weight: 500;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.0784313725);
}
.mbws_section-my-team .mbws_item-content .mbws_group-button:hover {
  background-color: #eb1e25;
  border: 1px solid #eb1e25;
}
.mbws_section-my-team .mbws_item-member {
  position: relative;
  margin-left: 100px;
}
@media (max-width: 1024px) {
  .mbws_section-my-team .mbws_item-member {
    margin-left: 0;
  }
}
.mbws_section-my-team .mbws_item-member .img .img-inner img {
  border-radius: 15px;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px !important;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member .col-inner {
  padding: 30px;
  background-image: linear-gradient(to top, rgba(235, 30, 37, 0.1), rgba(235, 30, 37, 0.5), rgba(235, 30, 37, 1));

  border-radius: 15px;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member .section-title-container {
  margin-bottom: 15px;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member .section-title-container .section-title-normal {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member .section-title-container .section-title-normal .section-title-main {
  text-transform: capitalize;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member .social-icons .icon {
  border: 2px solid #ffffff !important;
  margin-right: 20px;
}
.mbws_section-my-team .mbws_item-member .mbws_infor-member .social-icons .icon i::before {
  color: #ffffff !important;
}
.mbws_section-my-team .mbws_item-member .col-inner:hover .mbws_infor-member {
  transition: 0.3s;
  display: block;
}
.mbws_section-my-team .mbws_item-member .mbws_image-abs {
  width: 300px !important;
  position: absolute;
  z-index: -1;
  bottom: -50px;
  left: -100px;
}
.mbws_section-my-team .mbws_item-member .mbws_image-abs .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}

.mbws_section-contact-home {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-contact-home {
    padding-top: 0 !important;
  }
}
.mbws_section-contact-home .mbws_wrap-map {
  margin-right: -30px;
}
@media (max-width: 767px) {
  .mbws_section-contact-home .mbws_wrap-map {
    margin-right: 0;
  }
}
.mbws_section-contact-home .mbws_wrap-map iframe {
  width: 100%;
  height: 300px;
}
.mbws_section-contact-home .mbws_wrap-map .mbws_image-abs-1 {
  width: 300px !important;
  position: absolute;
  left: -98px;
  bottom: -150px;
  z-index: -2;
}
.mbws_section-contact-home .mbws_wrap-map .mbws_image-abs-1 .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-contact-home .mbws_wrap-map .mbws_image-abs-2 {
  width: 150px !important;
  position: absolute;
  left: -115px;
  bottom: -150px;
  z-index: -1;
}
.mbws_section-contact-home .mbws_wrap-map .mbws_image-abs-2 .img-inner img {
  width: 150px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner {
  background-color: #061757;
  padding: 20px 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mbws_section-contact-home .mbws_wrap-content-form .col-inner {
    padding: 20px 30px;
  }
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_image-abs {
  width: 300px !important;
  position: absolute;
  right: -95px;
  top: -125px;
  transform: rotate(160deg);
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_image-abs .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_title-section {
  margin-bottom: 0 !important;
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home {
  margin-top: 40px;
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home .title-form {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home .form-field {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home .form-field {
    margin-bottom: 15px;
  }
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home .form-field .wpcf7-form-control {
  height: 50px;
  border-radius: 15px;
  background-color: #0A347E !important;
  border: 0 !important;
  color: #ffffff;
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home .form-group-button .wpcf7-submit {
  float: left !important;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.48px;
  height: 50px;
  border-radius: 15px 15px 15px 15px;
  margin: 0px 0px 0px 0px;
  background-color: #eb1e25;
}
.mbws_section-contact-home .mbws_wrap-content-form .col-inner .mbws_wrap-form-home .wpcf7-response-output {
  color: #ffffff;
}

.mbws_section-blogs-home {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-blogs-home {
    padding-top: 30px !important;
  }
}
.mbws_section-blogs-home .mbws_item-content .mbws_group-button {
  color: #eb1e25;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 40px;
  font-weight: 500;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.0784313725);
}
.mbws_section-blogs-home .mbws_item-content .mbws_group-button:hover {
  background-color: #eb1e25;
  border: 1px solid #eb1e25;
}

.mbws_contact-map iframe {
  width: 100%;
  height: 300px;
}

.mbws_contact-infor {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mbws_contact-infor {
    padding-top: 0 !important;
    padding-bottom: 60px !important;
  }
}
.mbws_contact-infor .mbws_col-item .col-inner {
  background-color: #eb1e25;
  border-radius: 20px;
}
.mbws_contact-infor .mbws_col-item .col-inner .mbws_row-item {
  padding: 60px 50px;
}
.mbws_contact-infor .mbws_col-item .col-inner .mbws_row-item:not(:first-child) {
  padding-top: 0 !important;
}
.mbws_contact-infor .mbws_col-item .col-inner .col .img {
  margin-right: 10px !important;
}
.mbws_contact-infor .mbws_col-item .col-inner .col .img .img-inner {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eb1e25;
}
.mbws_contact-infor .mbws_col-item .col-inner .col img {
  width: 22px;
}
.mbws_contact-infor .mbws_col-item .col-inner .col .text {
  margin-left: 10px;
}
.mbws_contact-infor .mbws_col-item .col-inner .col .text a {
  color: #ffffff;
}
.mbws_contact-infor .mbws_call-now {
  margin-top: 40px;
}
.mbws_contact-infor .mbws_image-position-1 {
  position: absolute;
  height: 288px;
  left: -90px;
  bottom: -100px;
  width: 210px !important;
}
.mbws_contact-infor .mbws_image-position-1 .img-inner {
  width: 210px;
}

.wpcf7-form .mbws_wrap-form .form-field input {
  background-color: #F2F2F2;
  border: solid 1px #F2F2F2;
  height: 60px;
  box-shadow: none;
  border-radius: 10px;
  margin-bottom: 20px;
}
.wpcf7-form .mbws_wrap-form .form-field textarea {
  background-color: #F2F2F2;
  border: solid 1px #F2F2F2;
  box-shadow: none;
  border-radius: 20px;
  margin-bottom: 20px;
}
.wpcf7-form .wpcf7-submit {
  float: right;
  margin: 0 !important;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #061757;
  color: #ffffff;
  border-radius: 15px;
  padding: 6px 40px;
}
@media (max-width: 1024px) {
  .wpcf7-form .wpcf7-submit {
    float: left;
  }
}

.mbws_section-service {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-service {
    padding-top: 60px !important;
  }
}
.mbws_section-service .mbws_icon {
  background-color: #eb1e25;
  padding: 30px;
  width: 120px !important;
  border-radius: 15px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .mbws_section-service .mbws_icon {
    width: 120px !important;
  }
}
@media (max-width: 767px) {
  .mbws_section-service .mbws_icon {
    padding: 20px;
    width: 85px !important;
  }
}
.mbws_section-service .mbws_icon .img-inner img {
  width: 85px;
  height: 55px;
  object-fit: contain;
}
.mbws_section-service .mbws_content {
  margin-left: 15px !important;
  margin-right: 15px !important;
  overflow: hidden;
  margin-top: -80px;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.0784313725);
  padding: 120px 50px 40px 50px !important;
  border-radius: 10px;
  border-radius: 25px;
  transition: 0.3s;
}
.mbws_section-service .mbws_content .mbws_background-abs {
  display: none;
}
@media (max-width: 767px) {
  .mbws_section-service .mbws_content {
    padding: 120px 15px 40px 15px !important;
  }
}
.mbws_section-service .mbws_content .mbws_group-button {
  display: flex;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #061757;
}
.mbws_section-service .mbws_content .mbws_group-button i {
  margin-left: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mbws_section-service .mbws_content:hover {
  background-color: #061757;
}
.mbws_section-service .mbws_content:hover .section-title-main {
  color: #ffffff !important;
}
.mbws_section-service .mbws_content:hover .text {
  color: #ffffff;
}
.mbws_section-service .mbws_content:hover .mbws_background-abs {
  display: block;
  position: absolute;
  right: -100px;
  bottom: -85px;
  width: 100%;
  height: 100%;
}
.mbws_section-service .mbws_content:hover .mbws_group-button {
  background-color: #eb1e25;
}

.mbws_section-event {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-event {
    padding-top: 30px !important;
  }
}
.mbws_section-event .mbws_image-abs {
  position: absolute;
  top: 0;
  right: -125px;
}
.mbws_section-event .mbws_image-abs .img-inner img {
  width: 286px;
  height: 392px;
  object-fit: contain;
  float: right;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.mbws_section-event .mbws_event-content .mbws_title-section {
  padding: 0 180px !important;
}
@media (max-width: 1024px) {
  .mbws_section-event .mbws_event-content .mbws_title-section {
    padding: 0 !important;
  }
}
.mbws_section-event .mbws_event-number {
  margin-top: 30px;
}
.mbws_section-event .mbws_event-number .mbws_number {
  font-size: 70px;
  font-weight: 600;
  line-height: 70px;
}
@media (max-width: 767px) {
  .mbws_section-event .mbws_event-number .mbws_number {
    font-size: 55px;
    line-height: 50px;
  }
}
.mbws_section-event .mbws_event-number .mbws_number P {
  margin-bottom: 20px;
}
.mbws_section-event .mbws_event-number .mbws_des-section {
  font-size: 21px;
}

.mbws_section-faq {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-faq {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
.mbws_section-faq .mbws_image .mbws_image-main {
  z-index: 9999;
}
.mbws_section-faq .mbws_image .mbws_image-main .img-inner img {
  border-radius: 15px;
}
.mbws_section-faq .mbws_image .mbws_image-abs {
  position: absolute;
  height: 100%;
  top: -110px;
  left: -130px;
}
.mbws_section-faq .mbws_image .mbws_image-abs .img-inner img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}
.mbws_section-faq .mbws_content {
  padding-left: 200px;
}
@media (max-width: 1024px) {
  .mbws_section-faq .mbws_content {
    padding-left: 15px;
  }
}
.mbws_section-faq .mbws_content .mbws_wrap-faq .accordion-item {
  background-color: #061757;
  margin-bottom: 30px;
  border-radius: 15px;
}
.mbws_section-faq .mbws_content .mbws_wrap-faq .accordion-item .accordion-title {
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  padding: 30px;
  border-top: 0;
}
.mbws_section-faq .mbws_content .mbws_wrap-faq .accordion-item .accordion-title .toggle {
  right: 0 !important;
  left: auto;
}

.mbws_section-about-us {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-about-us {
    padding-top: 60px !important;
  }
}
.mbws_section-about-us .mbws_content {
  padding-right: 200px;
}
@media (max-width: 1024px) {
  .mbws_section-about-us .mbws_content {
    padding-right: 15px;
  }
}
.mbws_section-about-us .mbws_content .mbws_content-item {
  margin-top: 50px;
}
.mbws_section-about-us .mbws_content .mbws_content-item .col {
  padding-right: 65px;
}
.mbws_section-about-us .mbws_content .mbws_content-item .col .img {
  background-color: #eb1e25;
  padding: 10px 15px;
  width: 50px !important;
  border-radius: 5px;
  margin-bottom: 20px;
}
.mbws_section-about-us .mbws_content .mbws_content-item .col .img .img-inner img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.mbws_section-about-us .mbws_content .mbws_content-item .col .section-title-container {
  margin-bottom: 20px;
  min-height: 75px;
}
@media (max-width: 767px) {
  .mbws_section-about-us .mbws_content .mbws_content-item .col .section-title-container {
    min-height: 35px;
  }
}
.mbws_section-about-us .mbws_content .mbws_content-item .col .section-title-container .section-title {
  font-size: 23px;
  font-weight: 500;
}
.mbws_section-about-us .mbws_content .mbws_content-item .col .section-title-container .section-title .section-title-main {
  text-transform: capitalize;
}
.mbws_section-about-us .mbws_image .mbws_image-main .img-inner img {
  border-radius: 15px;
}
.mbws_section-about-us .mbws_image .mbws_image-abs-1 {
  position: absolute;
  bottom: -75px;
  margin-bottom: 0 !important;
  left: -145px;
  width: 300px !important;
  height: 300px;
  z-index: -1;
  transform: rotate(100deg);
}
.mbws_section-about-us .mbws_image .mbws_image-abs-1 .img-inner img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}
.mbws_section-about-us .mbws_image .mbws_image-abs-2 {
  position: absolute;
  width: 280px !important;
  left: -100px;
  bottom: -140px;
}
.mbws_section-about-us .mbws_image .mbws_image-abs-2 .img-inner img {
  width: 280px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-about-us .mbws_image .mbws_image-abs-3 {
  position: absolute;
  width: 150px !important;
  right: -15px;
  bottom: -130px;
}
.mbws_section-about-us .mbws_image .mbws_image-abs-3 .img-inner img {
  width: 150px;
  height: 100%;
  object-fit: contain;
}

.mbws_section-our-team {
  padding-top: 160px !important;
}
.mbws_section-our-team .mbws_title .mbws_title-section {
  padding: 0 315px !important;
}
@media (max-width: 1024px) {
  .mbws_section-our-team .mbws_title .mbws_title-section {
    padding: 0 !important;
  }
}
.mbws_section-our-team .mbws_content {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .mbws_section-our-team .mbws_content {
    margin-top: 0;
  }
}
.mbws_section-our-team .mbws_content .mbws_image-main .img-inner img {
  border-radius: 15px;
}
.mbws_section-our-team .mbws_content .mbws_image-abs-1 {
  position: absolute;
  bottom: -120px;
  margin-bottom: 0 !important;
  left: -125px;
  width: 300px !important;
  height: 300px;
  z-index: -1;
}
.mbws_section-our-team .mbws_content .mbws_image-abs-1 .img-inner img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}
.mbws_section-our-team .mbws_content .mbws_image-abs-2 {
  position: absolute;
  width: 280px !important;
  right: -100px;
  bottom: -140px;
  z-index: -1;
  transform: rotate(160deg);
}
.mbws_section-our-team .mbws_content .mbws_image-abs-2 .img-inner img {
  width: 280px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-our-team .mbws_content .mbws_process-bar {
  padding-left: 100px !important;
}
@media (max-width: 1024px) {
  .mbws_section-our-team .mbws_content .mbws_process-bar {
    padding-left: 15px !important;
  }
}
.mbws_section-our-team .mbws_content .mbws_process-bar .wpsm_progress {
  margin-bottom: 50px;
}
.mbws_section-our-team .mbws_content .mbws_process-bar .wpsm_progress .wpsm_progress-title {
  font-size: 27px !important;
  line-height: 31px !important;
  font-weight: 500 !important;
  font-family: "Work Sans" !important;
}
.mbws_section-our-team .mbws_content .mbws_process-bar .wpsm_progress .wpsm_progress-value {
  font-size: 27px !important;
  line-height: 31px !important;
  font-weight: 500 !important;
  font-family: "Work Sans" !important;
}
.mbws_section-our-team .mbws_content .mbws_process-bar .wpsm_progress .wpsm_progress-pro-bar {
  background-color: #C7C7C7;
  border-radius: 10px;
  height: 10px;
}
.mbws_section-our-team .mbws_content .mbws_process-bar .wpsm_progress .wpsm_progress-pro-bar .wpsm_progress-bar {
  height: 10px !important;
  border-radius: 10px;
  background-color: #eb1e25 !important;
}

.mbws_about-video {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_about-video {
    padding-top: 0 !important;
  }
}
.mbws_about-video .mbws_banner-video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(235, 30, 37, 0.1), rgba(235, 30, 37, 0.5), rgba(235, 30, 37, 1));
  border-radius: 15px;
}
.mbws_about-video .mbws_banner-video .img-inner img {
  border-radius: 15px;
  height: 370px;
  width: 100%;
  object-fit: cover;
}
.mbws_about-video .mbws_image-abs {
  position: absolute;
  width: 280px !important;
  right: -60px;
  bottom: -45px;
  z-index: -1;
}
.mbws_about-video .mbws_image-abs .img img {
  width: 280px;
  height: 100%;
  object-fit: contain;
}
.mbws_about-video .mbws_wrap-button-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767px) {
  .mbws_about-video .mbws_wrap-button-video {
    left: 53%;
  }
}
.mbws_about-video .mbws_wrap-button-video .section-title {
  font-size: 31px;
  line-height: 40px;
  font-weight: 500;
  padding: 0 170px;
}
@media (max-width: 1024px) {
  .mbws_about-video .mbws_wrap-button-video .section-title {
    padding: 0;
  }
}
.mbws_about-video .mbws_wrap-button-video .section-title .section-title-main {
  text-transform: initial;
}
@media (max-width: 1024px) {
  .mbws_about-video .mbws_wrap-button-video .section-title .section-title-main {
    margin-right: 0;
  }
}

.mbws_section-testimonial {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-testimonial {
    padding-top: 60px !important;
  }
}
.mbws_section-testimonial .slider-wrapper .mbws_content {
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  font-style: italic;
  padding: 0 200px;
}
@media (max-width: 767px) {
  .mbws_section-testimonial .slider-wrapper .mbws_content {
    padding: 0;
  }
}
.mbws_section-testimonial .slider-wrapper .mbws_infor-customer .img .img-inner img {
  border-radius: 50%;
}
.mbws_section-testimonial .slider-wrapper .mbws_infor-customer .section-title-container {
  margin-bottom: 0 !important;
}
.mbws_section-testimonial .slider-wrapper .mbws_infor-customer .section-title-container .section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 767px) {
  .mbws_section-testimonial .slider-wrapper .mbws_infor-customer .section-title-container .section-title {
    justify-content: center;
  }
}
.mbws_section-testimonial .slider-wrapper .mbws_infor-customer .section-title-container .section-title .section-title-main {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .mbws_section-testimonial .slider-wrapper .mbws_infor-customer .text {
    text-align: center !important;
  }
}
.mbws_section-testimonial .slider-wrapper .mbws_infor-customer .text p {
  margin-bottom: 0;
}
.mbws_section-testimonial .slider-wrapper .flickity-prev-next-button {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background-color: #061757;
  opacity: 1;
}
.mbws_section-testimonial .slider-wrapper .flickity-prev-next-button::after {
  content: "";
  position: absolute;
  box-shadow: 2px 0px 35px 35px rgba(11, 111, 248, 0.3);
  -webkit-box-shadow: 2px 0px 35px 35px rgba(11, 111, 248, 0.3);
}
.mbws_section-testimonial .slider-wrapper .flickity-prev-next-button:hover .flickity-button-icon {
  background-color: #061757;
}
.mbws_section-testimonial .slider-wrapper .flickity-prev-next-button .flickity-button-icon {
  border-radius: 10px;
  border: 2px solid #061757;
}

.mbws_section-logo-customer {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}
@media (max-width: 1024px) {
  .mbws_section-logo-customer {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
.mbws_section-logo-customer .img .img-inner {
  text-align: center;
}
.mbws_section-logo-customer .img .img-inner img {
  width: 110px;
  height: 100%;
  object-fit: contain;
}

.mbws_section-title-blog .section-title-container {
  margin-bottom: 0 !important;
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .mbws_section-title-blog .section-title-container {
    padding: 50px 0;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .mbws_section-title-blog .section-title-container {
    padding-bottom: 30px !important;
  }
}
.mbws_section-title-blog .section-title-container .section-title {
  font-weight: 600 !important;
}
.mbws_section-title-blog .section-title-container .section-title .section-title-main {
  text-transform: uppercase !important;
}

.mbws_section-blogs {
  padding-top: 160px !important;
  padding-bottom: 130px !important;
}
@media (max-width: 1024px) {
  .mbws_section-blogs {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

.mbws_wrap-blogs .post-item .col-inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(6, 23, 87, 0.1), rgba(6, 23, 87, 0.5), rgb(6, 23, 87));
  border-radius: 15px;
  transition: 0.3s;
}
.mbws_wrap-blogs .post-item .col-inner:hover::after {
  background-image: linear-gradient(to bottom, rgba(235, 30, 37, 0.1), rgba(235, 30, 37, 0.5), rgba(235, 30, 37, 1));
}
.mbws_wrap-blogs .post-item .col-inner .box-text {
  padding: 0 60px 30px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9999;
}
.mbws_wrap-blogs .post-item .col-inner .box-text .box-text-inner {
  display: flex;
  flex-direction: column-reverse;
}
.mbws_wrap-blogs .post-item .col-inner .box-text .box-text-inner .post-title {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  line-height: 31px;
  margin-top: 10px;
}
.mbws_wrap-blogs .post-item .col-inner .box-text .box-text-inner .post-title a:hover {
  color: #ffffff;
}
.mbws_wrap-blogs .post-item .col-inner .box-text .box-text-inner .post-meta {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400px;
  line-height: 24px;
}
.mbws_wrap-blogs .post-item .col-inner .box-text .box-text-inner .is-divider {
  display: none;
}
.mbws_wrap-blogs .ux-relay__control {
  margin-top: 20px;
}
.mbws_wrap-blogs .ux-relay__control .ux-relay__load-more-button {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Work Sans";
  background-color: #061757;
}
.mbws_wrap-blogs .ux-relay__control .ux-relay__load-more-button:hover {
  background-color: #eb1e25;
}
.mbws_wrap-blogs .mbws_image-abs {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 300px !important;
  z-index: -1;
}
.mbws_wrap-blogs .mbws_image-abs .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}

.mbws_page-finance {
  padding-top: 160px !important;
  padding-bottom: 140px !important;
}
@media (max-width: 767px) {
  .mbws_page-finance {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

.mbws_section-package-finance {
  padding-top: 160px !important;
}
@media (max-width: 1024px) {
  .mbws_section-package-finance {
    padding-top: 60px !important;
  }
}

.mbws_wrap-post-type-finance .post-item .box-blog-post::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 38%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(6, 23, 87, 0), rgba(6, 23, 87, 0.3), rgb(6, 23, 87));
  transition: 0.3s;
  z-index: 1;
  border-radius: 0 0 15px 15px;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post:hover::before {
  background-image: linear-gradient(to bottom, rgba(235, 30, 37, 0), rgba(235, 30, 37, 0.5), rgba(235, 30, 37, 1));

}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-image img {
  border-radius: 15px;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text {
  position: absolute;
  bottom: 80px;
  left: 0;
  z-index: 2;
}
@media (max-width: 1024px) {
  .mbws_wrap-post-type-finance .post-item .box-blog-post .box-text {
    bottom: 40px;
  }
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner {
  padding: 0 40px;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .post-title {
  font-size: 26px;
  line-height: 26px;
  color: #ffffff;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .post-title:hover a {
  color: #061757;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .is-divider {
  display: none;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .mbws_wrap-button {
  position: absolute;
  right: 55px;
  bottom: -100px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: #eb1e25;
}
@media (max-width: 1024px) {
  .mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .mbws_wrap-button {
    bottom: -60px;
  }
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .mbws_wrap-button:hover {
  background-color: #061757;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .mbws_wrap-button .mbws_button {
  opacity: 0;
}
.mbws_wrap-post-type-finance .post-item .box-blog-post .box-text .blog-post-inner .mbws_wrap-button::before {
  content: "\ea61";
  font-family: "matbaows-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 25px;
}
.mbws_wrap-post-type-finance .flickity-page-dots {
  left: 0 !important;
}

.portfolio-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 38%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(6, 23, 87, 0), rgba(6, 23, 87, 0.3), rgb(6, 23, 87));
  transition: 0.3s;
  z-index: 1;
  border-radius: 0 0 15px 15px;
}
.portfolio-box:hover::before {
  background-image: linear-gradient(to bottom, rgba(235, 30, 37, 0), rgba(235, 30, 37, 0.5), rgba(235, 30, 37, 1));

}
.portfolio-box .box-image img {
  border-radius: 15px;
}
.portfolio-box .box-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 2;
}
.portfolio-box .box-text .box-text-inner {
  padding: 0 20px;
}
.portfolio-box .box-text .box-text-inner .portfolio-box-title {
  text-align: left;
  font-size: 26px;
  line-height: 26px;
  color: #ffffff;
}
.portfolio-box .box-text .box-text-inner .portfolio-box-title:hover a {
  color: #061757;
}
.portfolio-box .box-text .box-text-inner .portfolio-box-category {
  display: block !important;
  text-align: left;
}
.portfolio-box .box-text .box-text-inner .portfolio-box-category span {
  opacity: 1 !important;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 16px;
}
.portfolio-box .box-text .box-text-inner .is-divider {
  display: none;
}

.single-post .article-inner .entry-header .entry-image {
  text-align: center;
}
.single-post .article-inner .entry-header .entry-image img {
  width: 830px;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}
.single-post .article-inner .entry-header .entry-header-text {
  margin-top: 50px;
  text-align: center;
}
.single-post .article-inner .entry-header .entry-header-text .entry-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 75px;
  color: #061757;
  font-family: "Work Sans";
}
.single-post .article-inner .entry-header .entry-header-text .entry-divider {
  display: none;
}
.single-post .article-inner .entry-header .entry-header-text .entry-meta {
  font-size: 16px;
  color: #7a7a7a;
}

.portfolio-single-page {
  margin-top: 40px;
  padding-bottom: 90px;
}
.portfolio-single-page .portfolio-summary .mbws_wrap-thumbnail-portfolio img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 20px;
  object-position: 0%;
}
.portfolio-single-page .portfolio-bottom {
  padding: 30px;
  background-color: #061757;
  border-radius: 20px;
  margin-top: -100px;
  position: relative;
}
.portfolio-single-page .portfolio-bottom .plain {
  color: #ffffff;
  font-size: 26px;
  line-height: 30px;
  font-weight: 500px;
  display: flex;
  align-items: center;
}
.portfolio-single-page .portfolio-bottom .plain .icon-angle-right {
  padding-left: 30px;
}
.portfolio-single-page .portfolio-bottom .plain .icon-angle-left {
  padding-right: 30px;
}
.portfolio-single-page #portfolio-content {
  padding-left: 45px;
}
.portfolio-single-page #portfolio-content .featured_item_cats a {
  color: #061757;
  text-transform: capitalize;
  font-weight: 500;
}
.portfolio-single-page #portfolio-content .entry-title {
  font-size: 44px;
  line-height: 53px;
  color: #061757;
  text-transform: capitalize;
  font-weight: 500;
}
.portfolio-single-page #portfolio-content .mbws_content-portfolio {
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 15px;
}
.portfolio-single-page #portfolio-content .mbws_content-portfolio-acf {
  margin-top: 30px;
}
.portfolio-single-page #portfolio-content .mbws_content-portfolio-acf .item {
  margin-top: 20px;
}
.portfolio-single-page #portfolio-content .mbws_content-portfolio-acf .item .title {
  font-size: 26px;
  font-weight: 500;
  line-height: 39px;
  color: #061757;
  margin-bottom: 5px;
}
.portfolio-single-page #portfolio-content .mbws_content-portfolio-acf .item .content {
  font-size: 20px;
}
.portfolio-single-page .mbws_portfolio-related {
  margin-top: 120px;
}
.portfolio-single-page .mbws_portfolio-related .mbws_title-section {
  font-size: 36px;
  font-weight: 500;
  line-height: 65px;
  color: #061757;
}
.portfolio-single-page .mbws_portfolio-related .portfolio-related {
  margin-top: 30px;
}

.mbws_section-footer {
  overflow: hidden;
  padding-top: 120px !important;
}
@media (max-width: 767px) {
  .mbws_section-footer {
    padding-top: 60px !important;
  }
}
.mbws_section-footer .mbws_footer-logo .img .img-inner img {
  width: 220px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-footer .mbws_wrap-icon .mbws_footer-icon .img-inner img {
  width: 22px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-footer .mbws_wrap-icon .mbws_des-section a {
  color: #ffffff;
}
.mbws_section-footer .mbws_footer-menu .section-title-container {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .mbws_section-footer .mbws_footer-menu .section-title-container {
    margin-bottom: 5px;
  }
}
.mbws_section-footer .mbws_footer-menu .section-title-container .section-title {
  font-size: 23px;
  font-weight: 500;
  line-height: 35px;
}
.mbws_section-footer .mbws_footer-menu .section-title-container .section-title .section-title-main {
  text-transform: capitalize;
}
.mbws_section-footer .mbws_footer-menu .ux-menu .ux-menu-link a {
  color: #ffffff;
  border-bottom: none;
  border-bottom-style: unset !important;
}
.mbws_section-footer .mbws_footer-menu .wrap-form-footer .wpcf7-text {
  background-color: #0A347E;
  border-radius: 10px;
  border: 0;
  height: 50px;
  color: #ffffff;
}
.mbws_section-footer .mbws_footer-menu .wrap-form-footer .wpcf7-submit {
  float: left !important;
  background-color: #eb1e25;
  border-radius: 15px;
}
.mbws_section-footer .mbws_footer-copyright p {
  margin-bottom: 0;
}
.mbws_section-footer .mbws_image-abs-1 {
  position: absolute;
  width: 300px !important;
  left: -135px;
  bottom: -60px;
}
.mbws_section-footer .mbws_image-abs-1 .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}
.mbws_section-footer .mbws_image-abs-2 {
  position: absolute;
  width: 300px !important;
  right: -150px;
  bottom: -130px;
}
.mbws_section-footer .mbws_image-abs-2 .img-inner img {
  width: 300px;
  height: 100%;
  object-fit: contain;
}

.mbws_Tittle_Fbanner .title .title-main {
 color: #fff !important;
}
.mbws_footer-copyright a {
	color: #77776e;
}