/*
Theme Name: BS5
Theme URI: https://example.com/bs5
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme built with Bootstrap 5
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bs5
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header.entry-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2A415A;
  color: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fff;
}

body *:not(a):not(footer *):not(header *):not(main *) {
  color: #393C3B;
}

img,
figure {
  max-width: 100%;
}

div {
  line-height: 2rem;
}

hr {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

p {
  line-height: 2rem;
  margin-bottom: 1rem;
}

img {
  height: auto;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}
table th,
table td {
  padding: 0.5rem;
  border: 1px solid #D9D9D9;
}
table th {
  background-color: #D9D9D9;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ED6826;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.max800 {
  max-width: 800px;
  margin: 0 auto;
}

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

.gap100 {
  gap: 100px;
}

.py50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-color-primary {
  color: #393C3B;
}

.text-color-secondary {
  color: #ED6826;
}

.site-header {
  position: relative;
  z-index: 1000;
}
.site-header .navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-header #menu-top-menu {
  display: flex;
  gap: 40px;
}
.site-header #menu-top-menu li a {
  color: #393C3B;
}
.site-header #menu-top-menu li a:hover {
  color: #ED6826;
}

@media screen and (max-width: 768px) {
  .site-header #menu-top-menu {
    padding: 40px 0;
    gap: 20px;
  }
}
.site-footer {
  padding: 100px 20px;
  border-top: 1px solid #D9D9D9;
  color: #D9D9D9;
  background-color: #2A415A;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list i {
  font-size: 1.5rem;
}

.widget-area {
  padding: 1rem;
  background-color: #D9D9D9;
  border-radius: 0.25rem;
}
.widget-area .widget {
  margin-bottom: 2rem;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget .widget-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D9D9D9;
}

.posts-list-case {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.posts-list-case article .card-body {
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 20px;
}
.posts-list-case article .card-body .img-box {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.posts-list-case article .card-body .img-box img {
  object-fit: cover;
}
.posts-list-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.posts-list-blog .img-box {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
}
.posts-list-blog .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination-container {
  padding: 100px 0;
}
.pagination-container .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.pagination-container .nav-links .current {
  color: #ED6826;
}
.pagination-container .nav-links .btn {
  padding: 10px 20px;
}
.pagination-container .nav-links a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .posts-list-case {
    grid-template-columns: 1fr;
  }
  .posts-list-case article .card-body {
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding: 20px;
  }
  .posts-list-case article .card-body .img-box {
    margin: 0 auto;
  }
  .posts-list-case article .card-body .img-box img {
    object-fit: cover;
  }
  .posts-list-blog {
    grid-template-columns: 1fr;
  }
}
.entry-thumbnail-case {
  position: sticky;
  top: 100px;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
}
.navbar .navbar-brand:hover {
  color: #007bff;
}
.navbar .nav-link {
  color: #343a40;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #007bff;
}
.navbar .nav-link.active {
  color: #007bff;
  font-weight: 600;
}

.site-footer .nav-link {
  color: #343a40;
  padding: 0.25rem;
  font-size: 0.9rem;
}
.site-footer .nav-link:hover {
  color: #007bff;
}

:not(.btn-check) + .btn:active {
  background-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  border-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  color: #fff;
}

.btn {
  transition: all 0.3s ease;
  padding: 10px 20px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.active {
  background-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  border-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  color: #fff;
}

.btn-primary {
  background-color: #2A415A;
  border-color: #2A415A;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(206.8425531915, 80.0680851064, 17.1574468085);
  border-color: rgb(206.8425531915, 80.0680851064, 17.1574468085);
  color: #fff;
}
.btn-primary:focus, .btn-primary:first-child:active {
  background-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  border-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  color: #fff;
}

.btn-outline-primary {
  border-color: #2A415A;
  color: #2A415A;
}
.btn-outline-primary:hover {
  background-color: rgb(206.8425531915, 80.0680851064, 17.1574468085);
  border-color: rgb(206.8425531915, 80.0680851064, 17.1574468085);
  color: #fff;
}
.btn-outline-primary:focus, .btn-outline-primary:first-child:active {
  background-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  border-color: rgb(25.7727272727, 39.8863636364, 55.2272727273);
  color: #fff;
}

.card {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
}

.pagination .page-link {
  color: #007bff;
}
.pagination .page-link:hover {
  color: rgb(0, 110.7, 229.5);
}
.pagination .active .page-link {
  background-color: #007bff;
  border-color: #007bff;
}

.entry-tags {
  margin: 1rem 0;
  font-size: 0.875rem;
}
.entry-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: filter 0.15s;
  margin: 0.25rem;
  text-decoration: none;
  color: #fff;
  background-color: #ED6826;
  border: 1px solid #ED6826;
}
.entry-tags a:hover {
  filter: brightness(0.85);
  color: #fff;
  text-decoration: none;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: filter 0.15s;
  margin: 0.25rem;
  text-decoration: none;
}
.tag-primary {
  color: #fff;
  background-color: #2A415A;
  border: 1px solid #2A415A;
}
.tag-primary:hover {
  filter: brightness(0.85);
}
.tag-secondary {
  color: #fff;
  background-color: #ED6826;
  border: 1px solid #ED6826;
}
.tag-secondary:hover {
  filter: brightness(0.85);
}
.tag-success {
  color: #fff;
  background-color: #28a745;
  border: 1px solid #28a745;
}
.tag-success:hover {
  filter: brightness(0.85);
}
.tag-danger {
  color: #fff;
  background-color: #dc3545;
  border: 1px solid #dc3545;
}
.tag-danger:hover {
  filter: brightness(0.85);
}
.tag-warning {
  color: #000;
  background-color: #ffc107;
  border: 1px solid #ffc107;
}
.tag-warning:hover {
  filter: brightness(0.85);
}
.tag-info {
  color: #fff;
  background-color: #17a2b8;
  border: 1px solid #17a2b8;
}
.tag-info:hover {
  filter: brightness(0.85);
}
.tag-light {
  color: #000;
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
}
.tag-light:hover {
  filter: brightness(0.85);
}
.tag-dark {
  color: #fff;
  background-color: #343a40;
  border: 1px solid #343a40;
}
.tag-dark:hover {
  filter: brightness(0.85);
}
.tag-pill {
  border-radius: 50rem;
}
.tag-lg {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.tag-sm {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}

.post-navigation {
  margin: 2rem 0;
  padding: 1.5rem 0 0 0;
  border-top: 1px solid #eee;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1 1 45%;
  text-align: center;
}
.post-navigation a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ED6826;
  color: #fff;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: filter 0.15s, background 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: none;
}
.post-navigation a:hover, .post-navigation a:focus {
  filter: brightness(0.85);
  text-decoration: none;
  background: #2A415A;
  color: #fff;
}
@media (max-width: 600px) {
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    flex-basis: 100%;
  }
}

.home .entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.home .entry-meta {
  color: #6c757d;
  font-size: 0.9rem;
}
.home-banner {
  width: 100%;
  height: 600px;
  background-image: url("assets/images/home/banner.jpg");
  background-color: #FEFCF9;
  background-repeat: no-repeat;
}
.home-banner-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.home-banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-banner h4 {
  color: #ED6826;
}

.row-block, .row-block-full {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #393C3B;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.row-block-full {
  padding: 100px 0;
  max-width: 100%;
}

.list-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.list-feature li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
.list-service li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  text-align: center;
}
.list-company {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.list-company li {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-company li h5 {
  margin-bottom: 0;
}
.list-company li .company-user {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.9rem;
}
.list-company li .company-user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .home .entry-title {
    font-size: 1.5rem;
  }
  .home-banner {
    height: auto;
    padding: 60px 0;
  }
  .home-banner-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .row-block, .row-block-full {
    padding: 60px 20px;
    gap: 60px;
  }
  .list-feature {
    grid-template-columns: repeat(2, 1fr);
  }
  .list-company {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .list-feature {
    grid-template-columns: 1fr 1fr;
  }
  .home-banner-right {
    max-width: 100%;
  }
}
.single .entry-header {
  margin-bottom: 2rem;
}
.single .entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.page .entry-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.page .entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

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