@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  font-size: 62.5%;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

body {
  padding-top: 11rem;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.center-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.normal-text {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 400;
  line-height: 1.7;
}

.normal-sub-text {
  font-size: 1.6rem;
  color: #212529;
  font-weight: 400;
  line-height: 1.7;
}

a.glink img {
  opacity: 1 !important;
}

a.current-page {
  color: #d4a96a !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
header .over-nav {
  background: #003963;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 500;
}
header .over-nav .container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  line-height: 4rem;
  color: #fff;
}
header .over-nav .container a {
  color: inherit;
}
header .over-nav .container a:hover {
  opacity: 0.8;
}
header .over-nav .container .contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}
header .over-nav .container .contact .seperate {
  width: 0.1rem;
  height: 2rem;
  background: #ccc;
}
header .over-nav .container .contact .contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .over-nav .header-address-marquee {
  display: none;
}
header .over-nav .header-address-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}
header .over-nav .header-address-marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
  -webkit-animation: marquee 10s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
}

nav {
  width: 100%;
  height: 100%;
  height: 7rem;
  background: #fff;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}
nav .navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
nav .navbar .nav-links {
  line-height: 7rem;
  height: 100%;
  display: flex;
  align-items: center;
}
nav .navbar .nav-links .sidebar-logo {
  display: none;
}
nav .navbar .bx-menu {
  display: none;
}
nav .navbar .links {
  display: flex;
  padding: 0;
  margin: 0;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 1.4rem;
  color: var(--Gray-800, #070f40);
  font-weight: 600;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
  font-size: 1.6rem;
}
nav .navbar .links li .arrow {
  /*background: red;
          */
  height: 100%;
  width: 2.2rem;
  line-height: 7rem;
  text-align: center;
  display: inline-block;
  color: var(--Gray-800, #040f3e);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 7rem;
  left: 0;
  line-height: 4rem;
  background: #fff;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0.4rem 0.4rem;
  display: none;
  z-index: 2;
  -webkit-border-radius: 0 0 0.4rem 0.4rem;
  -moz-border-radius: 0 0 0.4rem 0.4rem;
  -ms-border-radius: 0 0 0.4rem 0.4rem;
  -o-border-radius: 0 0 0.4rem 0.4rem;
}
nav .navbar .links li .sub-menu a {
  color: inherit;
  font-size: 1.5rem;
}
nav .navbar .links li .sub-menu li {
  padding: 0 2.2rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  color: var(--Gray-800, #040f3e);
}
nav .navbar .links li .sub-menu li:hover {
  color: #d4a96a;
}
nav .navbar .links li .sub-menu .more-arrow {
  line-height: 4rem;
}
nav .navbar .links li:hover {
  color: #d4a96a;
}
nav .navbar .links li:hover .htmlcss-arrow,
nav .navbar .links li:hover .js-arrow {
  transform: rotate(180deg);
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
nav .navbar .logo a {
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .search-part {
  position: relative;
}
nav .navbar .search-part i.search-icon {
  font-size: 2rem;
  color: var(--Gray-800, #040f3e);
  cursor: pointer;
}
nav .navbar .search-part i.search-icon:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
nav .navbar .search-part .input-box {
  width: 30rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  margin-top: 1.4rem;
  display: none;
  background: #f5f5f5;
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
}
nav .navbar .search-part .input-box input {
  padding: 0.6rem 1rem;
  width: 100%;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
}
nav .navbar .search-part .input-box input::placeholder {
  color: inherit;
}

@media (max-width: 1200px) {
  .logo.header-logo-left {
    display: none;
  }
  header .over-nav .container .contact {
    display: none;
  }
  header .over-nav .header-address {
    display: none !important;
  }
  header .over-nav .header-address-marquee {
    display: block;
  }
  nav .navbar .bx-menu {
    display: block;
    font-size: 2.5rem;
    color: var(--Gray-800, #040f3e);
  }
  nav .navbar .links {
    display: block;
    margin-top: 2rem;
  }
  nav .navbar .links li .arrow {
    line-height: 4rem;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 50vw;
    width: 100%;
    background: #fff;
    line-height: 4rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  nav .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav .navbar .nav-links .sidebar-logo .logo-name {
    font-size: 2.5rem;
    color: #fff;
  }
  nav .navbar .nav-links .sidebar-logo i {
    font-size: 2.5rem;
    color: var(--Gray-800, #040f3e);
  }
  nav .navbar .links li nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
}
.hide-on-desktop {
  display: none;
}

.hide-on-mobile {
  display: block;
}

.section-gap {
  padding: 7rem 0;
}

.cmc-title {
  font-size: 4.6rem;
  line-height: 1.2;
  color: #003963;
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cmc-title span {
  font-size: 1.8rem;
  color: #646464;
  line-height: 1.4;
}

.cmc-breadcrumb {
  background: #fff !important;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 2rem 0;
}
.cmc-breadcrumb nav {
  height: auto;
  background: none;
  box-shadow: none;
}
.cmc-breadcrumb nav a {
  color: #000000;
}
.cmc-breadcrumb nav a:hover {
  color: #d4a96a;
}
.cmc-breadcrumb nav span.last {
  color: #000;
  font-weight: 600;
}
.cmc-breadcrumb p {
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
}

#sec1 .swiper {
  width: 100%;
  height: 100%;
}
#sec1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sec1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec1 .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}
#sec1 .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

#sec2 .sec2-box {
  display: flex;
  flex-direction: column;
}
#sec2 .sec2-box .title {
  font-size: 2rem;
  color: #000000;
  padding: 1rem 0 2rem 0;
}
#sec2 .sec2-box .img-box {
  position: relative;
  overflow: hidden;
}
#sec2 .sec2-box .img-box .overlay-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #003963;
  opacity: 0;
}
#sec2 .sec2-box .img-box .text-on-overlay {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  z-index: 2;
  width: 90%;
}
#sec2 .sec2-box .img-box img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
#sec2 .sec2-box:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
#sec2 .sec2-box:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
#sec2 .sec2-box:hover .overlay-box {
  opacity: 0.7;
  z-index: 1;
  transition: all 0.5s ease;
}
#sec2 .sec2-box:hover .text-on-overlay {
  opacity: 1;
}

#sec3 {
  background: #f5f5f5;
}
#sec3 .sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
#sec3 .sec3-box img {
  width: 90px;
}
#sec3 .sec3-box .count-to {
  font-size: 4rem;
  color: #003963;
  font-weight: 600;
}

#sec4 .sec4-box .normal-text.title {
  font-size: 2rem;
  color: #003963;
  font-weight: 600;
  margin-bottom: 2rem;
}
#sec4 .sec4-box .normal-text.title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.4rem;
  background: #d4a96a;
  margin-top: 1rem;
}
#sec4 .sec4-box .list-product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#sec4 .sec4-box .list-product li.normal-text a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#sec4 .sec4-box .list-product li.normal-text a i {
  color: #d4a96a;
}
#sec4 .sec4-box .list-product li.normal-text a:hover {
  color: #d4a96a;
}

#sec5 {
  background: url(../img/sec5-banner.webp) no-repeat center center/cover;
  position: relative;
}
#sec5::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #003963;
  opacity: 0.8;
  filter: alpha(opacity=80);
  z-index: 1;
}
#sec5 .container {
  position: relative;
  z-index: 2;
}
#sec5 .container .cmc-title {
  color: #fff;
}
#sec5 .container .cmc-title span {
  color: #fff;
}
#sec5 .container a {
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  background: #d4a96a;
  border: none;
  color: #fff;
  display: inline-block;
}
#sec5 .container a:hover {
  transition: all 0.3s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

#sec7 .photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cột đều nhau */
  gap: 15px; /* Khoảng cách giữa các ảnh */
  /* Responsive */
}
#sec7 .photo-gallery a {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#sec7 .photo-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#sec7 .photo-gallery a img:hover {
  transform: scale(1.1);
}
@media (max-width: 1200px) {
  #sec7 .photo-gallery {
    grid-template-columns: repeat(3, 1fr); /* 3 cột trên màn hình vừa */
  }
}
@media (max-width: 768px) {
  #sec7 .photo-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 cột trên màn hình nhỏ */
  }
}

#sec9 {
  background: #f5f5f5;
}
#sec9 .normal-text.title {
  font-size: 2.4rem;
  color: #003963;
  font-weight: 600;
  margin-bottom: 2rem;
}
#sec9 .normal-text.title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.4rem;
  background: #d4a96a;
  margin-top: 1rem;
}
#sec9 .sec9-left a {
  display: block;
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  background: #d4a96a;
  border: none;
  color: #fff;
  display: inline-block;
  margin-top: 2rem;
}
#sec9 .sec9-left a:hover {
  transition: all 0.3s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
#sec9 .sec9-right .news-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
#sec9 .sec9-right .news-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#sec9 .sec9-right .news-list li a .datetime {
  width: 300px;
  padding: 2rem;
  background: #fff;
  color: #212529;
  font-size: 1.6rem;
}
#sec9 .sec9-right .news-list li a .normal-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 600;
}
#sec9 .sec9-right .news-list li a .normal-sub-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#sec9 .sec9-right .news-list li a:hover .normal-text {
  color: #d4a96a;
}
#sec9 .sec9-right .news-list li a:hover .datetime {
  background: #d4a96a;
  color: #fff;
}

#sec10 {
  background: url(http://easybooks.vn/wp-content/uploads/2025/02/sec10-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#sec10 .sec10-box {
  padding: 2rem 3rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  text-align: center;
  border: 1px solid transparent;
}
#sec10 .sec10-box i {
  font-size: 1.8rem;
  color: #fff;
}
#sec10 .sec10-box:hover {
  border: 1px solid #ccc;
}
#sec10 .sec10-box .normal-sub-text.phone {
  color: #fff;
  font-weight: 700;
}
#sec10 .sec10-box .normal-sub-text {
  color: #fff;
}

#footer {
  background: url(http://easybooks.vn/wp-content/uploads/2025/02/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#footer .logoes-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
#footer .footer-col-left {
  display: inline-flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: flex-start;
}
#footer .footer-col-left .footer-slogan {
  color: #d4a96a;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.4rem; /* 150% */
}
#footer .footer-col-left .footer-info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
#footer .footer-col-left .footer-info li {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  color: var(--Gray-700, #363f65);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
}
#footer .footer-col-left .footer-info li i {
  font-size: 1.8rem;
}
#footer .footer-col-heading {
  color: var(--Gray-800, #040f3e);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
#footer .list-title-footer {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
#footer .list-title-footer li {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
#footer .list-title-footer li a {
  color: var(--Gray-700, #363f65);
}
#footer .list-title-footer li:hover,
#footer .list-title-footer li a:hover {
  color: #d4a96a;
}
#footer .footer-credit {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
#footer hr.footer-hr {
  margin: 3rem 0;
}
#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
#footer .footer-bottom .list-sns {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#footer .footer-bottom .list-sns li {
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease;
}
#footer .footer-bottom .list-sns li:hover {
  transform: scale(1.1);
  border: 1px solid #ef5627;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#footer .footer-bottom .list-sns li a img {
  padding: 1rem;
  border-radius: 34px;
  background: var(--Gray-300, #e6e7ec);
}
#footer .footer-bottom .normal-text {
  font-weight: 600;
}

.news-single-box {
  padding: 1rem;
  border: 1px solid transparent;
}
.news-single-box .post-date {
  margin: 1rem 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-single-box .single-image {
  overflow: hidden;
  display: block;
}
.news-single-box .single-image .single-avt {
  height: 20rem;
  width: 100%;
  object-fit: cover;
}
.news-single-box .post-title {
  color: #000000;
  font-size: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-single-box .post-title a {
  color: inherit;
}
.news-single-box .post-summery {
  font-size: 1.4rem;
  color: #212529;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-single-box:hover {
  cursor: pointer;
  border: 1px solid #d4a96a;
}
.news-single-box:hover .single-image img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.news-single-box:hover .post-title {
  color: #d4a96a;
}

.list-cate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.list-cate li {
  font-size: 1.8rem;
  font-weight: 600;
}
.list-cate li a.category-a {
  color: inherit;
  padding: 1rem;
  background: #d4a96a;
  color: #fff;
  display: block;
}
.list-cate li a.category-a:hover {
  background: #003963;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.list-cate li .list-sub-cate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  color: #000000;
  font-size: 1.6rem;
}
.list-cate li .list-sub-cate a {
  color: inherit;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.list-cate li .list-sub-cate a:hover {
  color: #d4a96a;
}

#main_single .single-content {
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: justify;
}
#main_single .single-content h1,
#main_single .single-content h2,
#main_single .single-content h3,
#main_single .single-content h4,
#main_single .single-content h5,
#main_single .single-content h6 {
  color: #003963;
  font-weight: 600;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
#main_single .single-content h1 {
  font-size: 2.6rem;
}
#main_single .single-content h2 {
  font-size: 2.2rem;
}
#main_single .single-content h3 {
  font-size: 2rem;
}
#main_single .single-content h4 {
  font-size: 1.8rem;
}
#main_single .single-content h5 {
  font-size: 1.6rem;
}
#main_single .single-content p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #212529;
  margin-bottom: 1.4rem;
}
#main_single .single-content em {
  font-size: 1.6rem;
}
#main_single .single-content div {
  margin: 1rem 0;
}
#main_single .single-content a {
  color: #d4a96a;
  text-decoration: underline;
}
#main_single .single-content a:hover {
  color: #003963;
  text-decoration: none;
}
#main_single .single-content img {
  max-width: 100%;
  height: auto;
  margin: 1.6rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#main_single .single-content ul,
#main_single .single-content ol {
  margin: 1.6rem 0;
  padding-left: 2rem;
}
#main_single .single-content ul li,
#main_single .single-content ol li {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #212529;
  margin-bottom: 1rem;
  list-style: disc;
}
#main_single .single-content ul ol,
#main_single .single-content ol ol {
  list-style: decimal;
}
#main_single .single-content blockquote {
  margin: 1.6rem 0;
  padding: 2rem;
  background: #f5f5f5;
  border-left: 4px solid #d4a96a;
  font-style: italic;
  font-size: 1.6rem;
  color: #646464;
}
#main_single .single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 1.6rem;
}
#main_single .single-content table thead {
  background: #003963;
  color: #fff;
}
#main_single .single-content table th,
#main_single .single-content table td {
  padding: 1rem;
  border: 1px solid #ccc;
  text-align: left;
}
#main_single .single-content table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

#contact-page .contact-form {
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#contact-page .contact-form input,
#contact-page .contact-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  font-size: 1.6rem;
  color: #000000;
}
#contact-page .contact-form button {
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  background: #d4a96a;
  border: none;
  color: #fff;
  display: inline-block;
  margin-top: 2rem;
  font-weight: 600;
  width: 100%;
}
#contact-page .contact-form button:hover {
  transition: all 0.3s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
#contact-page .contact-right .contact-info {
  margin: 2rem 0;
}
#contact-page .contact-right .contact-info .normal-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contact-page .contact-right .contact-maps iframe {
  width: 100%;
  height: 30rem;
}

.show-products .sec8-box {
  display: flex;
  flex-direction: column;
}
.show-products .sec8-box .title {
  margin-top: 1rem;
  font-weight: 600;
}
.show-products .sec8-box .title i {
  transform: rotate(-45deg);
}
.show-products .sec8-box .img-box {
  position: relative;
  overflow: hidden;
  border: 2px solid #d4a96a;
}
.show-products .sec8-box .img-box .overlay-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #003963;
  opacity: 0;
}
.show-products .sec8-box .img-box .text-on-overlay {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  z-index: 2;
  width: 90%;
}
.show-products .sec8-box .img-box img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
.show-products .sec8-box:hover {
  cursor: pointer;
}
.show-products .sec8-box:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.show-products .sec8-box:hover .overlay-box {
  opacity: 0.7;
  z-index: 1;
  transition: all 0.5s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.show-products .sec8-box:hover .text-on-overlay {
  opacity: 1;
}
.show-products .sec8-box:hover .title {
  color: #d4a96a;
}

#product-detail .product-gallery {
  max-width: 600px;
  margin: auto;
}
#product-detail .product-gallery .main-swiper {
  width: 100%;
  overflow: hidden;
}
#product-detail .product-gallery .main-swiper .swiper-slide {
  border: 1px solid #d4a96a;
}
#product-detail .product-gallery .main-swiper img {
  width: 100%;
  height: auto;
  display: block;
}
#product-detail .product-gallery .main-swiper .swiper-button-next:after,
#product-detail .product-gallery .main-swiper .swiper-button-prev:after {
  display: none;
}
#product-detail .product-gallery .main-swiper .custom-nav {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #d4a96a;
  transition: all 0.3s ease;
  font-size: 1.6rem;
}
#product-detail .product-gallery .main-swiper .custom-nav:hover {
  background: #d4a96a;
  color: white;
}
#product-detail .product-gallery .main-swiper .swiper-button-next,
#product-detail .product-gallery .main-swiper .swiper-button-prev {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
#product-detail .product-gallery .main-swiper .swiper-button-prev {
  left: 0;
}
#product-detail .product-gallery .main-swiper .swiper-button-next {
  right: 0;
}
#product-detail .product-gallery .thumb-swiper {
  margin-top: 1.5rem;
}
#product-detail .product-gallery .thumb-swiper .swiper-slide {
  width: 80px;
  height: 80px;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #ccc;
  padding: 1rem;
}
#product-detail .product-gallery .thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #007bff;
}
#product-detail .product-gallery .thumb-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#product-detail .product-detail-info {
  padding: 1rem;
}
#product-detail .product-detail-info .product-name {
  font-size: 2.4rem;
}
#product-detail .product-detail-info .buynow {
  padding: 1rem;
  background: #d4a96a;
  color: #fff;
  margin-top: 3rem;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
}
#product-detail .product-detail-info .buynow:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  opacity: 0.8;
}
#product-detail .product-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: justify;
}
#product-detail .product-detail-content .info-title {
  font-size: 2.2rem;
  font-weight: 600;
  border-bottom: 1px solid #003963;
  color: #003963;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
#product-detail .product-detail-content h1,
#product-detail .product-detail-content h2,
#product-detail .product-detail-content h3,
#product-detail .product-detail-content h4,
#product-detail .product-detail-content h5,
#product-detail .product-detail-content h6 {
  color: #003963;
  font-weight: 600;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
#product-detail .product-detail-content h1 {
  font-size: 2.6rem;
}
#product-detail .product-detail-content h2 {
  font-size: 2.2rem;
}
#product-detail .product-detail-content h3 {
  font-size: 2rem;
}
#product-detail .product-detail-content h4 {
  font-size: 1.8rem;
}
#product-detail .product-detail-content h5 {
  font-size: 1.6rem;
}
#product-detail .product-detail-content p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #212529;
  margin-bottom: 1.4rem;
}
#product-detail .product-detail-content a {
  color: #d4a96a;
  text-decoration: underline;
}
#product-detail .product-detail-content a:hover {
  color: #003963;
  text-decoration: none;
}
#product-detail .product-detail-content img {
  max-width: 100%;
  height: auto;
  margin: 1.6rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#product-detail .product-detail-content ul,
#product-detail .product-detail-content ol {
  margin: 1.6rem 0;
  padding-left: 2rem;
}
#product-detail .product-detail-content ul li,
#product-detail .product-detail-content ol li {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #212529;
  margin-bottom: 1rem;
  list-style: disc;
}
#product-detail .product-detail-content ul ol,
#product-detail .product-detail-content ol ol {
  list-style: decimal;
}
#product-detail .product-detail-content blockquote {
  margin: 1.6rem 0;
  padding: 2rem;
  background: #f5f5f5;
  border-left: 4px solid #d4a96a;
  font-style: italic;
  font-size: 1.6rem;
  color: #646464;
}
#product-detail .product-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 1.6rem;
}
#product-detail .product-detail-content table thead {
  background: #003963;
  color: #fff;
}
#product-detail .product-detail-content table th,
#product-detail .product-detail-content table td {
  padding: 1rem;
  border: 1px solid #ccc;
  text-align: left;
}
#product-detail .product-detail-content table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

/* Popup Form */
.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}
.popup-form .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #003963;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.popup-form .popup-header h3 {
  margin: 0;
  font-size: 2rem;
}
.popup-form .popup-header .popup-close {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
.popup-form .popup-header .popup-close:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.popup-form .popup-body {
  padding: 1.5rem;
}
.popup-form .popup-body .form-group {
  margin-bottom: 1rem;
}
.popup-form .popup-body .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.6rem;
}
.popup-form .popup-body .form-group input,
.popup-form .popup-body .form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  font-size: 1.4rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.popup-form .popup-body .btn {
  background: #003963;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.6rem;
}
.popup-form .popup-body .btn:hover {
  background: #d4a96a;
}

/* Responsive */
@media (max-width: 576px) {
  .popup-form {
    width: 95%;
  }
}
@media (max-width: 1600px) {
  .section-gap {
    padding: 5rem 0;
  }
  .cmc-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .section-gap {
    padding: 3rem 0;
  }
  .cmc-title {
    font-size: 2.5rem;
  }
  .cmc-title span {
    font-size: 1.6rem;
  }
  #sec3 img {
    width: 100% !important;
  }
  #sec9 .sec9-right .news-list li a .datetime {
    width: 40%;
  }
}
@media (max-width: 500px) {
  .hide-on-desktop {
    display: block;
  }
  .hide-on-mobile {
    display: none;
  }
}

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