@charset "UTF-8";
/**
 * Loading first in the style.scss & classic-editor.scss
 */
/**
 * Header styling and layout
 */
.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    transition: all .3s;
    background-color: #fff;
	z-index: 999;
}
.site-header .site-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.site-header .site-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.site-header .header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-header .header-inner .custom-logo-link {
  display: block;
}
.site-header .header-inner .site-branding .site-title,
.site-header .header-inner .site-branding .site-description {
  margin: 0;
}
.site-header .header-inner .site-branding .site-logo img {
  display: block;
}
.site-header .header-inner .site-branding.show-title .site-logo {
  display: none !important;
}
.site-header .header-inner .site-branding.show-logo .site-title {
  display: none !important;
}
.site-header.header-inverted .header-inner {
  flex-direction: row-reverse;
}
.site-header.header-inverted .header-inner .site-branding {
  text-align: end;
}
.site-header.header-stacked .header-inner {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/**
 * Footer styling and layout
 */
.site-footer {
    background-color: #f6f6f6;
    position: relative;
    display: block;
    padding-bottom: 4rem;
    padding-top: 4rem;
}
.footer-inner .site-navigation ul.menu {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.footer-inner .site-navigation ul.menu li {
    font-size: 14px;
    position: relative;
}
.footer-inner .site-navigation ul.menu li:before {
    background-color: #4b5563;
    content:"";
    display: block;
    height: .75rem;
    left: -.625rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
}
.site-footer .site-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.site-footer .site-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.site-footer .footer-inner .custom-logo-link {
  display: block;
}
.site-footer .footer-inner .site-branding .site-title,
.site-footer .footer-inner .site-branding .site-description {
  margin: 0;
}
.site-footer .footer-inner .site-branding .site-logo img {
  display: block;
}
.site-footer .footer-inner .site-branding.show-title .site-logo {
  display: none !important;
}
.site-footer .footer-inner .site-branding.show-logo .site-title {
  display: none !important;
}
.site-footer .footer-inner .copyright {
    align-items: center;
    display: flex;
    font-size: 14px;
    line-height: 1.25rem;
	margin-top: 1.5rem;
	opacity: .3;
}
.site-footer .footer-inner .copyright p {
    margin: 0;
    text-align: center;
    width: 100%;
    color: #000 !important;
}
.site-footer .footer-inner .copyright {
    opacity: 1;
    font-weight: bold;
}
.site-footer.footer-inverted .footer-inner {
  flex-direction: row-reverse;
}
.site-footer.footer-inverted .footer-inner .site-branding {
  text-align: end;
}
.site-footer.footer-stacked .footer-inner {
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.site-footer.footer-stacked .footer-inner .site-branding .site-title {
  text-align: center;
}
.site-footer.footer-stacked .footer-inner .site-navigation .menu {
  padding: 0;
}
.footer-about ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: .5rem;
    line-height: 1.25rem;
    list-style: none;
    padding: 0;
}
.footer-about ul li {
    margin-bottom: 10px;
}
.top-footer {
    display: flex;
    gap: 20px;
}
.top-footer h2 {
    margin-top: 0;
    font-size: 24px;
}
.top-footer p {
    font-size: 16px;
    font-weight: 500;
}
.top-footer p svg {
    position: relative;
    top: 4px;
}
.top-footer .phone {
    font-size: 20px;
}
@media (max-width: 576px) {
  .site-footer:not(.footer-stacked) .footer-inner .site-branding,
  .site-footer:not(.footer-stacked) .footer-inner .site-navigation,
  .site-footer:not(.footer-stacked) .footer-inner .copyright {
    display: block;
    width: 100%;
    max-width: none;
  }
  .site-footer .footer-inner .site-navigation ul.menu li {
    display: inline-block;
  }
  .top-footer {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
.site-footer .footer-inner .site-branding .site-logo img {
    display: inline-block;
}
}
/**
 * Navigation Menus
 */
.site-header.header-stacked .site-navigation-toggle-holder {
  justify-content: center;
  max-width: 100%;
}
.site-header.menu-layout-dropdown .site-navigation {
  display: none;
}

.site-navigation-toggle-holder {
  display: flex;
  align-items: center;
  padding: 8px 15px;
}
.site-navigation-toggle-holder .site-navigation-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    border: 0 solid;
    border-radius: 0px;
    color: #000;
}
.site-navigation-toggle-holder .site-navigation-toggle-icon {
  display: block;
  width: 24px;
}
.site-navigation-toggle-holder .site-navigation-toggle-icon:before, .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
  content: "";
  background-color: currentColor;
  display: block;
  height: 2px;
  transition: all 200ms ease-in-out;
  border-radius: 0;
}
.site-navigation-toggle-holder .site-navigation-toggle-icon:before {
  box-shadow: 0 6px 0 currentColor;
  margin-block-end: 10px;
}
.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:before {
  box-shadow: none;
  transform: translateY(6px) rotate(45deg);
}
.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-navigation {
  display: flex;
  align-items: center;
}
.site-navigation ul.menu, .site-navigation ul.menu ul {
  list-style-type: none;
  padding: 0;
}
.header-main .site-navigation ul.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.header-main .site-navigation ul.menu li {
  position: relative;
  display: flex;
}
.header-main .site-navigation ul.menu li a {
    display: block;
    padding: 30px 0;
    font-size: 18px;
    color: #000;
    position: relative;
	transition: all .3s;
}
.header-main .site-navigation ul.menu>li>a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}
.header-main .site-navigation ul.menu>li>a {
    text-transform: uppercase;
}
.header-main .site-navigation ul.menu li.current-menu-item a {
    color: #c72528;
}
.site-navigation ul.menu li.menu-item-has-children:after {
  display: flex;
  content: "▾";
  font-size: 1.5em;
  justify-content: center;
  align-items: center;
  color: #666666;
  text-decoration: none;
}
.site-navigation ul.menu li.menu-item-has-children:focus-within > ul {
  display: block;
}
.site-navigation ul.menu li ul {
  background: #fff;
  display: none;
  min-width: 150px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 100%;
}
.site-navigation ul.menu li ul li {
  border-block-end: #eeeeee 1px solid;
}
.site-navigation ul.menu li ul li:last-child {
  border-block-end: none;
}
.site-navigation ul.menu li ul li.menu-item-has-children a {
  flex-grow: 1;
}
.site-navigation ul.menu li ul li.menu-item-has-children:after {
  transform: translateY(-50%) rotate(-90deg);
}
.site-navigation ul.menu li ul ul {
  left: 100%;
  top: 0;
}
.site-navigation ul.menu li:hover > ul {
  display: block;
}

footer .site-navigation ul.menu li ul {
  top: auto;
  bottom: 100%;
}
footer .site-navigation ul.menu li ul ul {
  bottom: 0;
}
footer .site-navigation ul.menu a {
    padding: 0;
    color: #4b5563;
}
.footer-inner .site-navigation ul.menu li.current-menu-item a {
    color: #000;
    font-weight: 600;
}
.footer-inner .site-navigation ul.menu li a:hover {
    color: #000;
}
.site-navigation-dropdown {
  margin-block-start: 10px;
  transition: max-height 0.3s, transform 0.3s;
  transform-origin: top;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
}
.site-navigation-toggle-holder:not(.elementor-active) + .site-navigation-dropdown {
  transform: scaleY(0);
  max-height: 0;
}
.site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown {
  transform: scaleY(1);
  max-height: 100vh;
}
.site-navigation-dropdown ul {
  padding: 0;
}
.site-navigation-dropdown ul.menu {
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  background: white;
}
.site-navigation-dropdown ul.menu li {
  display: block;
  width: 100%;
  position: relative;
}
.site-navigation-dropdown ul.menu li a {
  display: block;
  padding: 20px;
  background: #ffffff;
  color: #55595c;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1019607843);
}
.site-navigation-dropdown ul.menu li.current-menu-item a {
  color: white;
  background: #55595c;
}
.site-navigation-dropdown ul.menu > li li {
    padding-left: 15px;
}
.site-navigation-dropdown ul.menu li.elementor-active > ul > li {
  transform: scaleY(1);
  max-height: 100vh;
}

@media (max-width: 576px) {
  .site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation {
    display: none !important;
  }
}
@media (min-width: 1024px) {
    .site-footer .footer-inner .copyright {
        margin-top: 3.5rem;
    }
}
.site-header.menu-dropdown-none:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
  display: none !important;
}
.site-header .header-inner .searchbar.open {
    display: flex;
}
.site-header .header-inner .searchbar {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background-color: #fff;
    text-align: center;
    min-height: 150px;
    border-bottom: 1px solid rgb(229, 229, 229, 1);
    border-top: 1px solid rgb(229, 229, 229, 1);
    justify-content: center;
    align-items: center;
	z-index: 99;
}
.site-header .header-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.header-social ul {
    display: flex;
    gap: 1.25rem;
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    list-style: none;
    padding: 0;
}
header#site-header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
}
.admin-bar header#site-header.sticky {
    top: 32px;
}
header#site-header.sticky .header-main .site-navigation ul.menu li a {
    padding: 16px 0;
}
.header-inner .searchbar input.search-field {
    border-color: #4b5563;
    border-radius: 0;
    height: 40px;
	outline: none;
}
.header-inner .searchbar form.search-form {
    display: flex;
}
.header-inner .searchbar button.search-submit {
    border-radius: 0;
    font-weight: 600;
    background-color: #000;
    border-color: #000;
    color: #fff;
    height: 40px;
    outline: none;
}
.header-inner .searchbar button.search-submit:hover {
    opacity: .8;
}
.page-header h1.entry-title {
    padding: 0;
    position: relative;
    margin-bottom: 2rem;
}
.header-social ul .search-bar {
    display: flex;
}
.site-navigation-toggle-holder .site-navigation-toggle {
    background: none;
}
.title-new {
    text-align: center;
}
.title-new span {
    position: relative;
    padding-bottom: 10px;
}
.single-post main#content {
    max-width: 1070px;
}
.title-new span:before {
    content: '';
    height: 1px;
    width: 360px;
    bottom: 0;
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    background-color: rgba(218, 221, 221, 0.5);
}
.title-new span:after {
    content: '';
    height: 3px;
    width: 84px;
    bottom: -1px;
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    background-color: #c72528;
}
.list-post,
.list-nhadat {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.list-post .item-post,
.list-nhadat .item-nhadat {
    width: 33.33333%;
    padding: 0 10px;
    margin-bottom: 20px;
}
.list-post .item-post .wrap,
.list-nhadat .item-nhadat .wrap {
    box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
    border-radius: 6px;
    height: 100%;
    background-color: #fff;
	position: relative;
}
.list-post .item-post .thumbnail,
.list-nhadat .item-nhadat .thumbnail {
    padding: 0;
    background: #fff;
    position: relative;
    border-radius: 5px 5px 0 0;
	overflow: hidden;
}
.single-nhadat .page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.list-post .item-post .thumbnail a,
.list-nhadat .item-nhadat .thumbnail a{
    background: #fff;
    position: relative;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 57%;
	display: block;
}
.list-post .item-post .thumbnail img,
.list-nhadat .item-nhadat .thumbnail img {
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}
.list-post .item-post .title a,
.list-nhadat .item-nhadat .title a {
    color: #2D3954;
	text-decoration: none;
}
.list-post .item-post .content-post,
.list-nhadat .item-nhadat .content-nhadat {
    padding: 15px 20px 20px 20px;
    background: #fff;
    border-radius: 0 0 5px 5px;
}
.list-nhadat .item-nhadat .title {
    color: #2D3954;
    font-weight: bold;
    font-size: 17px;
    margin-top: 10px;
}
.list-nhadat .item-nhadat .wrap:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform-origin: right;
    transition: transform .5s ease-in-out;
    transform: scaleX(0);
	background: #c72528;
}
.list-nhadat .item-nhadat .wrap:hover:after {
    transform-origin: left;
    transform: scaleX(1);
}
.list-post .item-post .thumbnail a::before, .list-post .item-post .thumbnail a::before,
.list-nhadat .item-nhadat .thumbnail a::before, .list-nhadat .item-nhadat .thumbnail a::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.list-post .item-post .thumbnail a:hover::before, .list-post .item-post .thumbnail a:hover::before,
.list-nhadat .item-nhadat .thumbnail a:hover::before, .list-nhadat .item-nhadat .thumbnail a:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.list-nhadat .item-nhadat .thumbnail a:after {
    content: "";
    background-color: rgba(0, 0, 0, .15);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.list-nhadat .item-nhadat .wrap:hover .thumbnail a:after {
    background-color: rgba(0, 0, 0, .49);
}
.nhadat-list-main .list-nhadat .item-nhadat .title {
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.list-nhadat .item-nhadat .content-nhadat .btn {
    background-color: var(--e-global-color-primary);
    color: #fff;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
}
.list-nhadat .item-nhadat .content-nhadat p {
    font-size: 16px;
}
@-webkit-keyframes shine{
	100%{left:125%}
}
@keyframes shine{
	100%{left:125%}
}
.list-post .item-post .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 8px;
}
.list-post .item-post .date {
    margin-bottom: 2px;
    opacity: .8;
    font-size: 14px;
}
.list-post .item-post p {
    font-size: 14px;
    margin-bottom: 0;
}
.list-post .item-post .title a:hover {
    color: #c72528;
}
.gallery-grid .elementor-gallery__container.e-gallery-grid {
	display: flex;
}
.gallery-grid .e-gallery-item.elementor-gallery-item {
    width: calc(60% - 10px);
}
.gallery-grid .e-gallery-item.elementor-gallery-item .e-gallery-image{
	padding-bottom: 300px;
}
.gallery-grid .e-gallery-item.elementor-gallery-item:nth-child(4n+3),
.gallery-grid .e-gallery-item.elementor-gallery-item:nth-child(4n+2) {
	width: calc(40% - 10px);
}
ol, ul {
    padding-left: 18px;
}
.menu-duan .menu-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}
.menu-duan {
    z-index: 999;
    background-color: rgb(0, 70, 132);
}
.menu-duan .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 15px 20px;
}
.menu-duan .item-menu {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}
.menu-duan .menu-left, .menu-duan .menu-right {
    display: inline-flex;
    gap: 32px;
}
@media (max-width: 1199px) {
	.menu-duan .item-menu {
		font-size: 14px;
	}
}
@media (max-width: 991px) {
	.header-social ul li:not(.item-search) {
		display: none;
	}
	.header-right {
		display: flex;
		align-items: center;
	}
	.site-header {
		padding: 0;
	}
	.site-navigation-dropdown ul.menu li a {
		font-weight: 600;
		font-size: 16px;
		color: #000;
	}
}
@media (max-width: 820px) {
	.list-post .item-post, .list-nhadat .item-nhadat {
		width: 50%;
	}
}
@media (max-width: 520px) {
	.list-post .item-post, .list-nhadat .item-nhadat {
		width: 100%;
	}
}
@media (max-width: 480px) {
	.title-new span:before {
		width: 100%;
	}
	.gallery-grid .e-gallery-item.elementor-gallery-item {
		width: 100%;
	}
	.gallery-grid .e-gallery-item.elementor-gallery-item:nth-child(4n+3),
	.gallery-grid .e-gallery-item.elementor-gallery-item:nth-child(4n+2) {
		width: 100%;
	}
}