/*
Theme Name: 
Theme URI: 
Author: 
Author URI:
Description:
Version: 1.0
@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* COLOR OPACITY */
/* BORDER COLOR OPACITY */
/* BORDER RADIUS */
/* User-select*/
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/*///////////////////////////////////ANIMATION//////////////////////////////////*/
/*/////////////////////////////////////SCREEN////////////////////////////////////////*/
/*/////////////////////////////////////DIV////////////////////////////////////////*/
/******common******/
.mgt-5 {
  margin-top: 5px; }

.mgt-10 {
  margin-top: 10px; }

.mgt-15 {
  margin-top: 15px; }

.mgt-20 {
  margin-top: 20px; }

.mgr-5 {
  margin-right: 5px; }

.mgr-10 {
  margin-right: 10px; }

.mgr-15 {
  margin-right: 15px; }

.mgr-20 {
  margin-right: 20px; }

.mgb-5 {
  margin-bottom: 5px; }

.mgb-10 {
  margin-bottom: 10px; }

.mgb-15 {
  margin-bottom: 15px; }

.mgb-20 {
  margin-bottom: 20px; }

.mgl-5 {
  margin-left: 5px; }

.mgl-10 {
  margin-left: 10px; }

.mgl-15 {
  margin-left: 15px; }

.mgl-20 {
  margin-left: 20px; }

ul {
  list-style: none;
  padding: 0;
  margin: 0; }

body,
p {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

/*************/
.clear {
  clear: both; }

form.form-text-seach {
  padding: 30px;
  background: #ededed;
  margin-bottom: 20px; }

input.form-control.text-class {
  border: 1px solid #ddd;
  border-radius: 4px;
  width: calc(100% - 80px);
  float: left;
  padding: 10px 15px;
  transition: border-color 0.3s ease; }
  input.form-control.text-class:focus {
    border-color: #57b2e9;
    outline: none; }

form.form-text-seach button {
  border-radius: 4px;
  background: #0a3c75;
  border: 1px solid #0a3c75;
  width: 80px;
  transition: all 0.3s ease; }
  form.form-text-seach button:hover {
    background: #57b2e9;
    border-color: #57b2e9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }

.quatrang {
  text-align: center;
  margin: 30px 0; }
  .quatrang .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500; }
    .quatrang .page-numbers:hover {
      background: #57b2e9;
      color: #fff;
      border-color: #57b2e9;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
  .quatrang span.page-numbers.current {
    background: #0a3c75;
    color: #fff;
    border-color: #0a3c75;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); }
  .quatrang a.page-numbers:hover {
    background: #57b2e9;
    color: #fff;
    border-color: #57b2e9;
    text-decoration: none; }

.sidebar-item {
  margin-bottom: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease; }
  .sidebar-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px); }
  .sidebar-item .title-news {
    width: 100%; }

.category-content,
.sidebar-item,
.category-post-avatar {
  overflow: hidden;
  /* Quan trọng để ảnh không zoom tràn ra ngoài */
  border-radius: 4px;
  /* Bo góc nhẹ cho ảnh */ }
  .category-content img,
  .sidebar-item img,
  .category-post-avatar img {
    width: 100%;
    /* Force full width */
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
    backface-visibility: hidden; }
  .category-content:hover img,
  .sidebar-item:hover img,
  .category-post-avatar:hover img {
    opacity: 1;
    transform: scale(1.05); }

p#breadcrumbs {
  margin-bottom: 30px;
  padding: 12px 0;
  font-size: 13px;
  color: #888;
  background: transparent;
  border-bottom: 1px solid #f0f0f0; }
  p#breadcrumbs a {
    color: #555;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    p#breadcrumbs a:hover {
      color: #0a3c75; }
  p#breadcrumbs i {
    margin: 0 8px;
    font-size: 11px;
    color: #ccc; }
    p#breadcrumbs i.fa-home {
      margin-right: 5px;
      margin-left: 0; }

div#___plusone_0 {
  position: relative;
  top: 5px; }

b.post-meta-cate a {
  color: #fff; }

.category-post-info a {
  color: #fff; }

.category-post-info.color a {
  color: #57b2e9; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0; }

h1.single-title {
  font-size: 32px;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #003d77;
  font-weight: 700;
  line-height: 1.3; }

.textwidget.custom-html-widget {
  text-align: center;
  background: #ededed;
  padding: 10px; }

.border-circle {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden; }

.vhidden {
  visibility: hidden;
  height: 0px;
  width: 0px;
  position: absolute; }

.text-white {
  color: #fff; }

.list-social-top ul {
  display: inline-block; }
  .list-social-top ul li {
    line-height: 30px; }
    .list-social-top ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1em;
      transition: all 0.3s ease; }
      .list-social-top ul li a:hover {
        color: #57b2e9;
        transform: translateY(-2px); }

.fv-header .fv-header-top {
  height: 30px;
  background-color: #0a3c75;
  overflow: hidden; }
  .fv-header .fv-header-top .fvhd-left ul,
  .fv-header .fv-header-top .fvhd-right ul {
    display: inline-block; }
    .fv-header .fv-header-top .fvhd-left ul li,
    .fv-header .fv-header-top .fvhd-right ul li {
      line-height: 30px; }
      .fv-header .fv-header-top .fvhd-left ul li a,
      .fv-header .fv-header-top .fvhd-right ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 1em; }
        .fv-header .fv-header-top .fvhd-left ul li a:hover,
        .fv-header .fv-header-top .fvhd-right ul li a:hover {
          color: #57b2e9; }
  .fv-header .fv-header-top .fvhd-left ul li {
    float: left; }
    .fv-header .fv-header-top .fvhd-left ul li a {
      margin-right: 15px; }
  .fv-header .fv-header-top .fvhd-right ul li {
    float: right; }
    .fv-header .fv-header-top .fvhd-right ul li a {
      margin-left: 15px; }
.fv-header .header-logo .hl-container {
  display: inline-block;
  width: 100%; }
.fv-header .header-logo .logo {
  float: left;
  width: 270px;
  margin: 20px 40px 10px 0; }
  .fv-header .header-logo .logo h1 {
    display: inline-block;
    margin: 0; }
.fv-header .header-logo .fv-banner {
  margin: 20px 0px 10px 40px;
  text-align: right;
  float: right; }

.fv-mainnav {
  background: #0a3c75;
  background: linear-gradient(90deg, rgba(10, 60, 117, 0.95) 0%, #062446 100%);
  box-shadow: 0 4px 20px rgba(10, 60, 117, 0.2);
  margin-bottom: 30px;
  border-radius: 4px;
  z-index: 100;
  position: relative;
  min-height: 50px;
  /* Force height */
  /* Clearfix */ }
  .fv-mainnav:after {
    content: "";
    display: table;
    clear: both; }
  .fv-mainnav .main-nav {
    width: 100%;
    /* Search Dropdown */ }
    .fv-mainnav .main-nav ul > li {
      float: left;
      display: inline-block;
      line-height: 50px;
      /* Dropdown Menu */ }
      .fv-mainnav .main-nav ul > li > a {
        padding: 0 25px;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        display: block;
        position: relative;
        transition: all 0.3s ease;
        opacity: 0.9;
        letter-spacing: 0.5px; }
        .fv-mainnav .main-nav ul > li > a i {
          position: absolute;
          top: 20px;
          right: 5px;
          font-size: 11px;
          color: rgba(255, 255, 255, 0.6); }
        .fv-mainnav .main-nav ul > li > a:after {
          content: '';
          width: 0;
          height: 3px;
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          margin: 0 auto;
          background-color: #f9c100;
          transition: width .3s ease;
          box-shadow: 0 -2px 5px rgba(249, 193, 0, 0.5); }
        .fv-mainnav .main-nav ul > li > a:hover {
          color: #fff;
          opacity: 1;
          background-color: rgba(255, 255, 255, 0.1); }
      .fv-mainnav .main-nav ul > li.current-menu-item > a, .fv-mainnav .main-nav ul > li:hover > a {
        color: #fff;
        opacity: 1; }
        .fv-mainnav .main-nav ul > li.current-menu-item > a:after, .fv-mainnav .main-nav ul > li:hover > a:after {
          width: 100%; }
      .fv-mainnav .main-nav ul > li.menu-item-has-children {
        position: relative; }
        .fv-mainnav .main-nav ul > li.menu-item-has-children > a {
          padding-right: 35px; }
        .fv-mainnav .main-nav ul > li.menu-item-has-children > ul {
          background: #fff;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          position: absolute;
          z-index: 999;
          min-width: 230px;
          display: block;
          visibility: hidden;
          opacity: 0;
          top: 120%;
          left: 0;
          transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
          border-radius: 0 0 4px 4px;
          border-top: 3px solid #f9c100; }
          .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li {
            width: 100%;
            line-height: normal;
            position: relative;
            border-bottom: 1px solid #f0f0f0; }
            .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li:last-child {
              border-bottom: none; }
            .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li a {
              font-size: 14px;
              font-weight: 600;
              padding: 12px 20px;
              display: block;
              color: #333;
              text-transform: none;
              opacity: 1;
              letter-spacing: 0;
              transition: all 0.2s; }
              .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li a:hover {
                background-color: #f8f9fa;
                color: #0a3c75;
                padding-left: 25px; }
              .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li a:after {
                display: none; }
            .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li ul {
              position: absolute;
              top: 0;
              left: 100%;
              visibility: hidden;
              opacity: 0;
              transition: all 0.3s ease;
              margin-left: 10px;
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
              background: #fff;
              min-width: 200px;
              border-radius: 4px; }
            .fv-mainnav .main-nav ul > li.menu-item-has-children > ul li:hover > ul {
              visibility: visible;
              opacity: 1;
              margin-left: 0; }
        .fv-mainnav .main-nav ul > li.menu-item-has-children:hover > ul {
          visibility: visible;
          opacity: 1;
          top: 100%; }
    .fv-mainnav .main-nav .search-dropdown {
      float: right; }
      .fv-mainnav .main-nav .search-dropdown .dropdown-toggle {
        border: none;
        font-size: 18px;
        background-color: transparent;
        line-height: 50px;
        padding: 0 25px;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s; }
        .fv-mainnav .main-nav .search-dropdown .dropdown-toggle:hover, .fv-mainnav .main-nav .search-dropdown .dropdown-toggle:focus {
          color: #fff;
          background-color: rgba(255, 255, 255, 0.1);
          outline: none; }
      .fv-mainnav .main-nav .search-dropdown .dropdown-menu {
        margin-top: 0px;
        right: 0;
        left: auto;
        padding: 20px;
        border: none;
        border-top: 3px solid #f9c100;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        min-width: 320px;
        border-radius: 0 0 6px 6px; }
        .fv-mainnav .main-nav .search-dropdown .dropdown-menu:before {
          position: absolute;
          top: -8px;
          right: 24px;
          content: '';
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 0 6px 6px 6px;
          border-color: transparent transparent #f9c100 transparent; }
        .fv-mainnav .main-nav .search-dropdown .dropdown-menu .form-search-header {
          width: 100%; }
          .fv-mainnav .main-nav .search-dropdown .dropdown-menu .form-search-header .input-group {
            display: flex;
            flex-wrap: nowrap;
            width: 100%; }
            .fv-mainnav .main-nav .search-dropdown .dropdown-menu .form-search-header .input-group .form-control {
              border-radius: 4px 0 0 4px !important;
              border: 1px solid #ddd;
              height: 45px;
              box-shadow: none;
              width: auto;
              flex: 1 1 auto;
              font-size: 14px;
              margin-right: 0; }
              .fv-mainnav .main-nav .search-dropdown .dropdown-menu .form-search-header .input-group .form-control:focus {
                border-color: #0a3c75;
                z-index: 2; }
            .fv-mainnav .main-nav .search-dropdown .dropdown-menu .form-search-header .input-group button.btn {
              border-radius: 0 4px 4px 0 !important;
              background-color: #0a3c75;
              color: #fff;
              height: 45px;
              padding: 0 20px;
              border: 1px solid #0a3c75;
              font-weight: 600;
              transition: all 0.3s;
              white-space: nowrap;
              margin-left: -1px; }
              .fv-mainnav .main-nav .search-dropdown .dropdown-menu .form-search-header .input-group button.btn:hover {
                background-color: #08305e;
                border-color: #08305e; }

.news-post-item {
  margin-bottom: 25px;
  transition: all 0.3s ease; }
  .news-post-item .new-post-item-inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative; }
    .news-post-item .new-post-item-inner:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
      border-color: transparent; }
  .news-post-item .post-avatar {
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0; }
    .news-post-item .post-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      -webkit-transition: all 0.4s ease;
      -khtml-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
  .news-post-item:hover .post-avatar img {
    transform: scale(1.08); }
  .news-post-item .post-content {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 15px;
    width: 100%;
    background: #fff; }
    .news-post-item .post-content h3 {
      margin-top: 0px;
      overflow: hidden;
      font-size: 16px;
      line-height: 1.4;
      margin-bottom: 10px; }
      .news-post-item .post-content h3 a {
        color: #333;
        text-decoration: none; }
        .news-post-item .post-content h3 a:hover {
          color: #0a3c75; }
    .news-post-item .post-content p {
      margin: 0;
      color: #666;
      font-size: 13px; }

/* Featured News Overlay Style */
.feature-news .news-post-item {
  margin-bottom: 0; }
  .feature-news .news-post-item .new-post-item-inner {
    background: transparent;
    border: none;
    border-radius: 0; }
    .feature-news .news-post-item .new-post-item-inner:hover {
      box-shadow: none;
      transform: none; }
  .feature-news .news-post-item .post-avatar {
    border-radius: 0; }
  .feature-news .news-post-item .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
    padding: 20px 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    min-height: auto;
    max-height: none; }
    .feature-news .news-post-item .post-content h3 {
      font-weight: 700; }
      .feature-news .news-post-item .post-content h3 a {
        color: #fff; }
    .feature-news .news-post-item .post-content p {
      color: rgba(255, 255, 255, 0.8); }
    .feature-news .news-post-item .post-content .post-meta-cate {
      margin-bottom: 10px; }

.fv-content .feature-news {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%; }
  .fv-content .feature-news .fn-post-large,
  .fv-content .feature-news .fn-post-medium {
    width: 50%;
    float: left; }
  .fv-content .feature-news .fn-post-large {
    padding-right: 2.5px;
    max-height: 465px;
    overflow: hidden; }
    .fv-content .feature-news .fn-post-large .news-post-item .new-post-item-inner .post-avatar {
      height: 465px; }
    .fv-content .feature-news .fn-post-large .news-post-item .new-post-item-inner .post-content a {
      text-decoration: none; }
    .fv-content .feature-news .fn-post-large .news-post-item .new-post-item-inner .post-content h3 {
      font-size: 1.9em;
      line-height: 30px;
      max-height: 90px; }
  .fv-content .feature-news .fn-post-medium {
    padding-left: 2.5px; }
    .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(1) {
      width: 100%;
      margin-bottom: 5px; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(1) .new-post-item-inner .post-avatar {
        height: 230px; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(1) .new-post-item-inner .post-content a {
        text-decoration: none; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(1) .new-post-item-inner .post-content h3 {
        font-size: 1.6em;
        line-height: 22px;
        max-height: 70px; }
    .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(2) {
      width: 50%;
      float: left;
      padding-right: 2.5px; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(2) .new-post-item-inner .post-avatar {
        height: 230px; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(2) .new-post-item-inner .post-content a {
        text-decoration: none; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(2) .new-post-item-inner .post-content h3 {
        font-size: 1.2em;
        line-height: 20px;
        max-height: 60px; }
    .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(3) {
      padding-left: 2.5px;
      width: 50%;
      float: left; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(3) .new-post-item-inner .post-avatar {
        height: 230px; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(3) .new-post-item-inner .post-content a {
        text-decoration: none; }
      .fv-content .feature-news .fn-post-medium .news-post-item:nth-child(3) .new-post-item-inner .post-content h3 {
        font-size: 1.1em; }

.category-news {
  margin-bottom: 30px; }

.fv-title {
  margin-bottom: 20px; }
  .fv-title h3 {
    border-bottom: 2px solid #57b2e9;
    font-size: 1em;
    margin: 0;
    line-height: 25px; }
    .fv-title h3 span {
      padding: 5px 10px;
      line-height: 15px;
      color: #fff;
      text-transform: uppercase;
      background-color: #57b2e9; }
    .fv-title h3 .view-all {
      color: #57b2e9;
      text-decoration: none;
      -webkit-transition: all 0.2s ease-in-out;
      -khtml-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .fv-title h3 .view-all:hover {
        background-color: #57b2e9;
        padding: 1px 10px;
        color: #fff;
        -webkit-transition: all 0.2s ease-in-out;
        -khtml-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }

.category-post-item {
  width: 100%;
  display: inline-block; }
  .category-post-item .category-post-item-inner a {
    text-decoration: none; }
  .category-post-item .category-post-item-inner .category-post-content .category-post-title {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #222;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    max-height: 90px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Be Vietnam Pro', sans-serif; }
    .category-post-item .category-post-item-inner .category-post-content .category-post-title:hover {
      color: #0a3c75;
      transform: translateY(-2px); }
  .category-post-item .category-post-item-inner .category-post-content .category-post-info {
    color: #999;
    margin-bottom: 8px;
    font-size: 13px;
    display: flex;
    align-items: center; }
    .category-post-item .category-post-item-inner .category-post-content .category-post-info b {
      color: #fff;
      background-color: #0a3c75;
      padding: 3px 10px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      margin-right: 10px;
      line-height: normal;
      letter-spacing: 0.5px;
      display: inline-block; }
      .category-post-item .category-post-item-inner .category-post-content .category-post-info b a {
        color: #fff !important;
        text-decoration: none; }
      .category-post-item .category-post-item-inner .category-post-content .category-post-info b:hover {
        background-color: #062446; }
  .category-post-item .category-post-item-inner .category-post-content .category-post-desc {
    font-size: 13px;
    line-height: 20px;
    max-height: 60px;
    overflow: hidden;
    color: #777;
    margin-top: 9px; }

.category-post-item.category-module-full {
  margin-bottom: 25px;
  display: inline-block;
  width: 100%; }
  .category-post-item.category-module-full .category-post-item-inner .category-post-avatar {
    width: 250px;
    float: left;
    margin-right: 15px; }
    .category-post-item.category-module-full .category-post-item-inner .category-post-avatar img {
      max-width: 100%; }
  .category-post-item.category-module-full .category-post-item-inner .category-post-content .category-post-title {
    margin-top: 0px;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
    font-weight: 500;
    max-height: 75px; }
  .category-post-item.category-module-full .category-post-item-inner .category-post-content .category-post-info {
    margin-top: 5px;
    line-height: normal;
    margin-bottom: 8px;
    font-size: 13px;
    display: flex;
    align-items: center; }
    .category-post-item.category-module-full .category-post-item-inner .category-post-content .category-post-info b {
      padding: 3px 10px;
      color: #fff;
      background-color: #0a3c75;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      margin-right: 10px; }
      .category-post-item.category-module-full .category-post-item-inner .category-post-content .category-post-info b a {
        color: #fff !important;
        text-decoration: none; }
      .category-post-item.category-module-full .category-post-item-inner .category-post-content .category-post-info b:hover {
        background-color: #062446; }
  .category-post-item.category-module-full .category-post-item-inner .category-post-content .category-post-desc {
    font-size: 15px;
    line-height: 20px;
    max-height: 60px;
    margin-bottom: 0px; }

.category-post-item.category-module-small {
  margin-bottom: 25px; }
  .category-post-item.category-module-small .category-post-item-inner .category-post-avatar {
    width: 100px;
    float: left;
    margin-right: 15px; }
    .category-post-item.category-module-small .category-post-item-inner .category-post-avatar img {
      max-width: 100%;
      height: 75px;
      width: 100px;
      object-fit: cover; }
  .category-post-item.category-module-small .category-post-item-inner .category-post-content .category-post-title {
    margin-top: 0px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 500;
    max-height: 60px; }
  .category-post-item.category-module-small .category-post-item-inner .category-post-content .category-post-info {
    margin-top: 5px;
    line-height: 15px;
    margin-bottom: 0px; }
    .category-post-item.category-module-small .category-post-item-inner .category-post-content .category-post-info b {
      padding: 0;
      color: #57b2e9;
      background-color: transparent; }

.load_more_link {
  text-align: center; }
  .load_more_link .load_more_btn {
    display: inline-block;
    font-size: 12px;
    color: #c9c9c9;
    text-decoration: none;
    line-height: 1;
    padding: 8px 15px;
    border: 1px solid #c9c9c9;
    text-align: center;
    vertical-align: middle; }
    .load_more_link .load_more_btn:hover {
      background-color: #57b2e9;
      color: #fff;
      border-color: #57b2e9; }

.line-footer {
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0; }

.fv-footer {
  background-color: #111 !important;
  background-image: none !important;
  padding-top: 60px;
  padding-bottom: 40px;
  color: #eee; }
  .fv-footer .block-title {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    position: relative; }
    .fv-footer .block-title:after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: #f9c100; }
  .fv-footer .footer-post .footer-post-item .category-post-item.category-module-small {
    background: transparent;
    border: none;
    margin-bottom: 15px;
    padding: 0; }
    .fv-footer .footer-post .footer-post-item .category-post-item.category-module-small .category-post-item-inner .category-post-avatar {
      border-radius: 4px;
      overflow: hidden;
      width: 80px; }
    .fv-footer .footer-post .footer-post-item .category-post-item.category-module-small .category-post-item-inner .category-post-content .category-post-title {
      color: #ccc;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.4; }
      .fv-footer .footer-post .footer-post-item .category-post-item.category-module-small .category-post-item-inner .category-post-content .category-post-title:hover {
        color: #fff; }
    .fv-footer .footer-post .footer-post-item .category-post-item.category-module-small .category-post-item-inner .category-post-info {
      color: #777;
      font-size: 11px; }
  .fv-footer .footer-post .footer-post-item .list-cate-footer ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0; }
    .fv-footer .footer-post .footer-post-item .list-cate-footer ul li:last-child {
      border-bottom: none; }
    .fv-footer .footer-post .footer-post-item .list-cate-footer ul li a {
      color: #aaa;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s;
      display: block; }
      .fv-footer .footer-post .footer-post-item .list-cate-footer ul li a:hover {
        color: #fff;
        padding-left: 5px; }
      .fv-footer .footer-post .footer-post-item .list-cate-footer ul li a span {
        font-size: 13px;
        color: #666; }
  .fv-footer .about-footer p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8; }
  .fv-footer .social-footer ul li {
    margin-right: 12px;
    margin-bottom: 12px;
    float: left; }
    .fv-footer .social-footer ul li:last-child {
      margin-right: 0; }
    .fv-footer .social-footer ul li a {
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      display: inline-block;
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      -webkit-transition: all 0.3s ease;
      -khtml-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .fv-footer .social-footer ul li a i {
        color: #fff;
        font-size: 16px; }
      .fv-footer .social-footer ul li a:hover {
        background-color: #0a3c75;
        border-color: #0a3c75;
        transform: translateY(-3px); }

.fv-footer-copyr {
  background-color: #0d0d0d;
  color: #fff8f8;
  font-size: 12px;
  text-align: center; }
  .fv-footer-copyr p {
    margin-bottom: 0px;
    line-height: 25px;
    padding: 5px 0; }

.fv-breadcrumbs a {
  color: #57b2e9;
  text-decoration: none; }
  .fv-breadcrumbs a:hover {
    color: #0a3c75; }
.fv-breadcrumbs span {
  color: #999; }

.fv-post-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border: 1px solid #f0f0f0; }
  .fv-post-content .post-content-title {
    margin-bottom: 30px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 25px; }
    .fv-post-content .post-content-title h1 {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 32px;
      line-height: 42px;
      margin-bottom: 20px;
      font-weight: 800;
      color: #1a1a1a; }
    .fv-post-content .post-content-title .post-meta-info {
      display: flex;
      align-items: center;
      width: 100%; }
      .fv-post-content .post-content-title .post-meta-info .post-meta-cate {
        margin-right: 15px; }
        .fv-post-content .post-content-title .post-meta-info .post-meta-cate b {
          background-color: #0a3c75;
          color: #fff !important;
          padding: 4px 12px;
          font-size: 11px;
          text-transform: uppercase;
          font-weight: 700;
          border-radius: 4px;
          display: inline-block; }
          .fv-post-content .post-content-title .post-meta-info .post-meta-cate b a {
            color: #fff !important;
            text-decoration: none; }
      .fv-post-content .post-content-title .post-meta-info .post-meta-date,
      .fv-post-content .post-content-title .post-meta-info .post-meta-views {
        font-size: 13px;
        color: #888;
        margin-right: 20px;
        display: flex;
        align-items: center; }
        .fv-post-content .post-content-title .post-meta-info .post-meta-date i,
        .fv-post-content .post-content-title .post-meta-info .post-meta-views i {
          margin-right: 6px;
          color: #bbb; }

.fv-post-featured-image {
  margin-bottom: 20px; }

.post-content p {
  word-wrap: break-word;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px; }
.post-content h1 {
  font-size: 28px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 10px; }
.post-content h2 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 10px; }
.post-content h3 {
  font-size: 22px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 10px; }
.post-content h4 {
  font-size: 18px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 10px; }
.post-content a {
  color: #57b2e9; }
.post-content .f-post-tags {
  text-transform: uppercase;
  color: #e91a08;
  font-weight: bold; }
  .post-content .f-post-tags a {
    border: 1px solid #949da6;
    color: #10171f;
    text-decoration: none;
    padding: 3px 8px;
    font-weight: bold;
    font-size: 11px;
    margin-left: 5px;
    display: inline-block;
    margin-bottom: 5px; }
    .post-content .f-post-tags a:hover {
      color: #fff;
      background-color: #949da6; }

.cate-post-slide .cate-post-item .cate-post-item-inner {
  position: relative; }
  .cate-post-slide .cate-post-item .cate-post-item-inner a {
    text-decoration: none; }
  .cate-post-slide .cate-post-item .cate-post-item-inner .post-avatar {
    overflow: hidden;
    max-height: 130px; }
    .cate-post-slide .cate-post-item .cate-post-item-inner .post-avatar img {
      object-fit: cover;
      width: 100%; }
  .cate-post-slide .cate-post-item .cate-post-item-inner .post-content {
    z-index: 2; }
    .cate-post-slide .cate-post-item .cate-post-item-inner .post-content h3 {
      font-size: 15px;
      line-height: 20px;
      margin-bottom: 5px;
      margin-top: 10px;
      max-height: 60px;
      overflow: hidden; }
      .cate-post-slide .cate-post-item .cate-post-item-inner .post-content h3:hover {
        color: #e91a08; }
    .cate-post-slide .cate-post-item .cate-post-item-inner .post-content p {
      font-size: 12px; }

.slide-style .owl-nav .owl-prev,
.slide-style .owl-nav .owl-next {
  width: 20px;
  height: 20px;
  text-align: center;
  position: absolute;
  top: calc(50% - 15px); }
  .slide-style .owl-nav .owl-prev i,
  .slide-style .owl-nav .owl-next i {
    font-size: 30px;
    color: #94a1aa; }
.slide-style .owl-nav .owl-prev {
  left: -25px; }
.slide-style .owl-nav .owl-next {
  right: -25px; }
.slide-style .owl-nav .disabled {
  opacity: 0;
  cursor: default; }

.f-post-share-bottom span {
  text-transform: uppercase;
  color: #e91a08;
  margin-right: 15px;
  font-weight: bold; }
.f-post-share-bottom .fps-btn {
  padding-left: 15px;
  padding-right: 15px; }
  .f-post-share-bottom .fps-btn i {
    color: #fff; }
.f-post-share-bottom .fps-facebook {
  background-color: #516eab; }
.f-post-share-bottom .fps-twitter {
  background-color: #29c5f6; }
.f-post-share-bottom .fps-google {
  background-color: #eb4026; }

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content span,
.post-content strong,
.post-content a,
.post-content div {
  font-family: Verdana, Roboto, sans-serif; }

.post_related {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee; }
  .post_related h3.pr-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px; }
    .post_related h3.pr-title span {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      color: #1a1a1a;
      letter-spacing: 0.5px;
      padding: 0;
      margin: 0;
      border: none;
      display: flex;
      align-items: center; }
      .post_related h3.pr-title span:before {
        content: '';
        width: 5px;
        height: 25px;
        background: linear-gradient(to bottom, #0a3c75, #57b2e9);
        margin-right: 12px;
        border-radius: 3px; }
    .post_related h3.pr-title:after {
      content: '';
      flex: 1;
      height: 1px;
      background: #ececec; }
  .post_related .pr-item {
    margin-bottom: 20px;
    transition: all 0.3s ease; }
    .post_related .pr-item .pr-item-item-inner {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease; }
      .post_related .pr-item .pr-item-item-inner a {
        text-decoration: none;
        display: block; }
      .post_related .pr-item .pr-item-item-inner .pr-item-avatar {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        aspect-ratio: 16/10; }
        .post_related .pr-item .pr-item-item-inner .pr-item-avatar img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease; }
      .post_related .pr-item .pr-item-item-inner .pr-item-content h3 {
        font-size: 15px;
        line-height: 1.5;
        color: #222;
        margin-top: 12px;
        font-weight: 600;
        max-height: 45px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: color 0.3s ease; }
        .post_related .pr-item .pr-item-item-inner .pr-item-content h3:hover {
          color: #0a3c75; }
      .post_related .pr-item .pr-item-item-inner:hover .pr-item-avatar img {
        transform: scale(1.1); }
      .post_related .pr-item .pr-item-item-inner:hover .pr-item-content h3 {
        color: #0a3c75; }
  .post_related .owl-carousel .owl-nav {
    position: absolute;
    top: -65px;
    right: 0;
    margin: 0; }
    .post_related .owl-carousel .owl-nav .owl-prev,
    .post_related .owl-carousel .owl-nav .owl-next {
      display: inline-block;
      width: 32px;
      height: 32px;
      text-align: center;
      border: 1px solid #e0e0e0;
      border-radius: 50%;
      background: #fff !important;
      margin-left: 8px;
      transition: all 0.3s ease; }
      .post_related .owl-carousel .owl-nav .owl-prev i,
      .post_related .owl-carousel .owl-nav .owl-next i {
        font-size: 12px;
        line-height: 30px;
        color: #666; }
      .post_related .owl-carousel .owl-nav .owl-prev:hover,
      .post_related .owl-carousel .owl-nav .owl-next:hover {
        background-color: #0a3c75 !important;
        border-color: #0a3c75; }
        .post_related .owl-carousel .owl-nav .owl-prev:hover i,
        .post_related .owl-carousel .owl-nav .owl-next:hover i {
          color: #fff; }
    .post_related .owl-carousel .owl-nav .disabled {
      opacity: 0.3;
      cursor: not-allowed; }

/* =========================================
   MODERN TYPOGRAPHY & UI ENHANCEMENTS
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #0a3c75;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em; }

a {
  text-decoration: none !important; }

/* Modern Block Title - Professional Style */
.block-title {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 35px; }
  .block-title span,
  .block-title > a {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: transparent;
    color: #0a3c75;
    padding: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    bottom: auto;
    left: auto;
    border-radius: 0;
    letter-spacing: 0.5px;
    box-shadow: none;
    z-index: 1;
    margin-bottom: -1px;
    border-bottom: 2px solid #0a3c75; }
    .block-title span:after,
    .block-title > a:after {
      display: none; }
  .block-title a.view-all,
  .block-title .pull-right,
  .block-title .float-end {
    position: absolute;
    right: 0;
    bottom: 8px;
    background: transparent !important;
    color: #777 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    border: none !important;
    margin: 0; }
    .block-title a.view-all:hover,
    .block-title .pull-right:hover,
    .block-title .float-end:hover {
      color: #0a3c75 !important; }
    .block-title a.view-all i,
    .block-title .pull-right i,
    .block-title .float-end i {
      margin-left: 3px; }

/* Single Post Title */
h1.single-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #222;
  margin-top: 0; }

/* Widget Title Modifications */
/* Widget Title - Professional Style */
.widget .widget-title {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0;
  margin-bottom: 25px;
  position: relative;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0a3c75; }
  .widget .widget-title:after {
    display: none; }
  .widget .widget-title span {
    display: inline-block;
    padding: 0 0 12px 0;
    margin-bottom: -1px;
    border-bottom: 2px solid #0a3c75;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    color: inherit;
    background: transparent; }

/* Post Titles in Lists */
.post-title a,
.entry-title a,
h3.title-news a {
  color: #333;
  font-weight: 700;
  transition: color 0.2s;
  text-decoration: none; }
  .post-title a:hover,
  .entry-title a:hover,
  h3.title-news a:hover {
    color: #0a3c75; }

/* Enhancing Readability */
.entry-content,
.post-content {
  font-size: 16px;
  color: #444;
  line-height: 1.8; }

/* Override fv-title to match modern style */
/* Override fv-title to match clean underline style */
/* Override fv-title to match professional style */
.fv-title h3 {
  border-bottom: 1px solid #e5e5e5;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px; }
  .fv-title h3 span {
    display: inline-block;
    padding: 0 0 12px 0;
    margin-bottom: -1px;
    border-bottom: 2px solid #0a3c75;
    background-color: transparent;
    color: #0a3c75;
    letter-spacing: 0.5px;
    border-radius: 0; }
    .fv-title h3 span:after {
      display: none; }

/*# sourceMappingURL=temp-style.css.map */
