@charset "UTF-8";
/* CSS */
html {
  scroll-behavior: smooth;
  /* Kích hoạt cuộn mượt tự nhiên của trình duyệt */
}

body {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 400;
  word-break: break-word;
}

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

.uppercase {
  text-transform: uppercase;
}

a {
  color: #28a745;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #124E78;
}

.comment-notes {
  display: none;
}

.h-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.s-title {
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 50px;
}
.s-title:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 3px;
  background-color: #28a745;
  bottom: -20px;
  left: 50%;
  margin-left: -100px;
}
.s-title::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #28a745;
  bottom: -26px;
  left: 50%;
  margin-left: -8px;
  border-radius: 16px;
}
.s-title.no-line:before {
  display: none;
}
.s-title.no-line::after {
  display: none;
}

.btn-readmore {
  background-color: #28a745;
  color: #ffffff;
  border-radius: 40px;
  padding: 10px 20px;
}
.btn-readmore i {
  transition: all 0.3s ease;
}
.btn-readmore:hover {
  background-color: #124E78;
  color: #ffffff;
}
.btn-readmore:hover i {
  margin-left: 10px;
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}
@keyframes moveBg {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes play {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 3px rgba(102, 173, 68, 0.4);
  }
  25% {
    box-shadow: 0 0 0 6px rgba(102, 173, 68, 0.4), 0 0 0 12px rgba(102, 173, 68, 0.2);
  }
  25% {
    box-shadow: 0 0 0 9px rgba(102, 173, 68, 0.4), 0 0 0 18px rgba(102, 173, 68, 0.2);
  }
}
@keyframes play-video {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
  }
  25% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.4), 0 0 0 12px rgba(255, 255, 255, 0.2);
  }
  25% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.4), 0 0 0 18px rgba(255, 255, 255, 0.2);
  }
}
/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes sliderShape {
  100% {
    border-radius: 39% 61% 70% 30%/46% 48% 52% 54%;
  }
  75% {
    border-radius: 38% 62% 61% 39%/58% 37% 63% 42%;
  }
  50% {
    border-radius: 27% 73% 37% 63%/58% 31% 69% 42%;
  }
  25% {
    border-radius: 39% 61% 70% 30%/46% 48% 52% 54%;
  }
}
@keyframes round-shape {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes round-shape-two {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes line-shape {
  0% {
    width: 0%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
@keyframes borderanimate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
@keyframes light {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    color: white;
  }
}
@keyframes light-2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    color: white;
  }
}
@keyframes scale {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    color: white;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}
@keyframes tp-line-dash {
  100% {
    stroke-dashoffset: 0;
  }
}
/* 01. ========= shape animation ========== */
@keyframes bannerAnimationTwo {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(20px, -5px);
  }
  40% {
    transform: translate(50px, 20px);
  }
  60% {
    transform: translate(20px, 50px);
  }
  80% {
    transform: translate(-20px, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes sliderTitle3 {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@keyframes scale-lught {
  0% {
    transform: translateY(-50%) scale(1);
  }
  100% {
    transform: translateY(-50%) scale(0.4);
  }
}
@-webkit-keyframes scale-lught {
  0% {
    transform: translateY(-50%) scale(1);
  }
  100% {
    transform: translateY(-50%) scale(0.4);
  }
}
@keyframes ripple2 {
  70% {
    opacity: 0;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes updown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes updown-two {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes leftright {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes updown-three {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes transform {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0.8;
  }
}
@keyframes img-border {
  0% {
    -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  }
  100% {
    -webkit-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
    -moz-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
    border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
  }
}
@keyframes title-anim {
  0% {
    opacity: 1;
    stroke-dasharray: 0 500;
  }
  12% {
    stroke-dasharray: 500 500;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    stroke-dasharray: 500 500;
  }
}
@keyframes hero-shape-anim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes hero-shape-anim-2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-9px);
  }
}
@keyframes hero-shape-anim-3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-40px);
  }
}
@keyframes tpswing {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
@keyframes tpstar {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes tpstar {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(119, 90, 252, 0.04), 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04);
    box-shadow: 0 0 0 0 rgba(119, 90, 252, 0.04), 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  100% {
    -webkit-box-shadow: 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04), 0 0 0 270px rgba(119, 90, 252, 0.01);
    box-shadow: 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04), 0 0 0 270px rgba(119, 90, 252, 0.01);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
}
@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(119, 90, 252, 0.04), 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04);
    box-shadow: 0 0 0 0 rgba(119, 90, 252, 0.04), 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  100% {
    -webkit-box-shadow: 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04), 0 0 0 270px rgba(119, 90, 252, 0.01);
    box-shadow: 0 0 0 100px rgba(119, 90, 252, 0.04), 0 0 0 200px rgba(119, 90, 252, 0.04), 0 0 0 270px rgba(119, 90, 252, 0.01);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
}
@keyframes tp-hotspot-2 {
  0% {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes upslide {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.top-nav {
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 13px;
  z-index: 3;
  background-color: #000000;
  color: #000000;
}
.top-nav .lang-icon {
  width: 18px;
  margin-right: 3px;
}
.top-nav .nav-link {
  color: #ffffff;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: all 0.3s;
}
.top-nav .nav-link:hover {
  opacity: 1;
}
.top-nav .nav-link i {
  margin-right: 5px;
}
.top-nav .ml-auto {
  justify-content: flex-end;
}
.top-nav .container {
  padding-left: 15px;
  padding-right: 15px;
}

.primary-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.5s;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.08);
  z-index: 3;
  background-color: #ffffff;
}
.primary-nav .navbar-brand {
  font-size: 0;
  background: url(../images/logo-dark.svg);
  width: 200px;
  height: 30px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 100;
}
.primary-nav .main-nav {
  border-radius: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.primary-nav .nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  opacity: 1;
  transition: all 0.3s;
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.primary-nav .nav-link:hover {
  opacity: 1;
}
.primary-nav .active .nav-link {
  color: #66ad44 !important;
}
.primary-nav .btn-search-icon {
  margin-right: 15px;
  color: #28a745;
}
.primary-nav .btn-menu {
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 30px;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border-radius: 8px;
  margin-right: 15px;
  display: block;
}

.primary-nav .dropdown-menu {
  border: none;
  padding-top: 15px;
  background-color: transparent;
  min-width: 250px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
  padding-bottom: 0;
}
.primary-nav .dropdown-menu:before {
  content: "";
  border-top: 6px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 5px solid transparent;
  top: 3px;
  left: 15px;
  position: absolute;
}
.primary-nav .dropdown-item {
  font-size: 14px;
  position: relative;
  color: #000000;
  background-color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  display: block;
}
.primary-nav .dropdown-item:last-child {
  padding-bottom: 20px;
}
.primary-nav .dropdown-item::before {
  content: "\f101";
  font: normal normal normal 10px/1 FontAwesome;
  position: absolute;
  top: 15px;
  left: 0px;
  opacity: 0;
  transition: all 0.3s;
}
.primary-nav .dropdown-item:hover {
  color: #000000;
  background-color: #fff;
}
.primary-nav .dropdown-item:hover:before {
  opacity: 1;
  left: 10px;
}
.primary-nav .dropdown-item.active,
.primary-nav .dropdown-item:active,
.primary-nav .dropdown-item:focus,
.primary-nav .dropdown-item:hover {
  background: #fff;
  color: #0073b6;
  opacity: 1;
}

.primary-nav.fixed {
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding-top: 10px;
  padding-bottom: 10px;
}
.primary-nav.fixed .navbar-nav .nav-link {
  color: #000000;
}
.primary-nav.fixed .navbar-nav .nav-link:hover {
  color: #66ad44;
}
.primary-nav.fixed .navbar-nav .active .nav-link {
  color: #fff !important;
}
.primary-nav.fixed .navbar-nav .nav-link:hover {
  color: #000000 !important;
}
.primary-nav.fixed .navbar-nav .btn-contact {
  color: #ffffff;
}
.primary-nav.fixed .navbar-brand {
  background-image: url(../images/logo-dark.svg);
}
.primary-nav.fixed .btn-contact {
  background-color: #ffffff;
  color: #000000;
}
.primary-nav.fixed .main-nav {
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 575px) {
  .primary-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 3;
  }
  .primary-nav .navbar-brand {
    height: 45px;
    transition: all 0.3s;
    width: 130px;
    margin-right: 10px;
  }
  .primary-nav .navbar-toggler {
    transition: all 0.3s;
    padding-right: 0;
  }
  .primary-nav .navbar-toggler span {
    position: relative;
    background-color: #fff;
    height: 2px;
    border-radius: 4px;
    width: 25px;
  }
  .primary-nav .navbar-toggler span:before {
    content: "";
    background-color: #fff;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: -9px;
  }
  .primary-nav .navbar-toggler span:after {
    content: "";
    background-color: #fff;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 9px;
  }
  .primary-nav .search-form {
    display: none;
  }
}
@media (max-width: 575px) {
  .primary-nav.fixed {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .primary-nav.fixed .navbar-collapse {
    margin-left: -15px;
    margin-right: -15px;
    background-color: #fff;
    margin-bottom: -5px;
  }
  .primary-nav.fixed .navbar-toggler {
    padding-right: 0;
  }
  .primary-nav.fixed .navbar-toggler span {
    position: relative;
    background-color: #fff;
    height: 2px;
    border-radius: 4px;
    width: 25px;
  }
  .primary-nav.fixed .navbar-toggler span:before {
    content: "";
    background-color: #fff;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: -9px;
  }
  .primary-nav.fixed .navbar-toggler span:after {
    content: "";
    background-color: #fff;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 9px;
  }
  .primary-nav.fixed .navbar-nav .nav-link {
    color: #000000 !important;
  }
  .primary-nav.fixed .navbar-nav .nav-link:hover, .primary-nav.fixed .navbar-nav .nav-link:focus {
    color: #000000 !important;
  }
  .primary-nav.fixed .dropdown-menu.show::before {
    display: none;
  }
}

.primary-nav .search-form {
  position: relative;
  margin-left: 15px;
}
.primary-nav .search-form.show {
  right: 150px;
  opacity: 1;
  width: 200px;
}
.primary-nav .form-control {
  border-radius: 40px;
  border: 1px solid #e1e8ee;
  font-size: 14px;
  width: 200px;
}
.primary-nav .form-control:focus {
  box-shadow: none;
}
.primary-nav .btn-search {
  position: absolute;
  top: -2px;
  right: 5px;
}
.primary-nav .btn-search:focus {
  outline: none;
  box-shadow: none;
}
.primary-nav.fixed .form-control {
  border-color: transparent;
}
.primary-nav.fixed .btn-search-icon {
  color: #ffffff;
}
@media (max-width: 575px) {
  .primary-nav .btn-search-icon {
    display: none;
  }
  .primary-nav .btn-menu {
    display: none;
  }
  .primary-nav .btn-contact {
    display: none;
  }
  .primary-nav .nav-item:last-child {
    border: none;
  }
  .primary-nav .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 18px;
  }
  .primary-nav.fixed .nav-item {
    border-bottom-color: #2b2e9b;
  }
}

.search-form-mobile {
  display: none;
}
@media (max-width: 575px) {
  .search-form-mobile {
    display: block;
    width: 160px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .search-form-mobile .form-control {
    width: 160px;
    max-width: 100%;
    position: relative;
    border: none;
  }
  .search-form-mobile .btn-search {
    margin-top: 0;
    top: -1px;
    right: 0;
  }
}

.primary-nav .navbar-nav .btn-contact {
  background-color: #0073b6;
  background-size: 200% auto;
  color: #ffffff;
  padding: 10px 20px !important;
  border-radius: 40px;
  margin-left: 20px;
  transition: all 0.3s;
}
.primary-nav .navbar-nav .btn-contact i {
  margin-left: 5px;
}
.primary-nav .navbar-nav .btn-contact:hover {
  color: #ffffff !important;
  background-color: #28a745;
}

.primary-nav.fixed .main-nav {
  box-shadow: none;
}

.primary-nav.fixed.bg-dark-menu {
  background-color: #28a745;
  box-shadow: none;
}
.primary-nav.fixed.bg-dark-menu .main-nav {
  box-shadow: none;
}

body:not(.home) .top-nav {
  background-color: #000000;
}
body:not(.home) .top-nav .nav-link {
  color: #ffffff;
}
body:not(.home) .primary-nav {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #28a745;
}
body:not(.home) .primary-nav .main-nav {
  box-shadow: none;
}
body:not(.home) .primary-nav .nav-link {
  color: #000000;
}
body:not(.home) .primary-nav .btn-contact {
  color: #ffffff;
}
body:not(.home) .primary-nav.fixed .navbar-brand {
  background-image: url(../images/logo-dark.svg);
}
body:not(.home) .primary-nav.fixed .btn-contact {
  background-color: #000000;
  color: #ffffff;
}
body:not(.home) .primary-nav.fixed .btn-contact:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 575px) {
  body:not(.home) {
    padding-top: 50px;
  }
  body:not(.home) .primary-nav {
    background-color: #28a745;
  }
  body:not(.home) .primary-nav .navbar-collapse {
    margin-left: -15px;
    margin-right: -15px;
  }
  body:not(.home) .primary-nav .navbar-brand {
    background-image: url(../images/logo-dark.svg);
  }
  body:not(.home) .primary-nav .main-nav {
    box-shadow: none;
    background-color: #ffffff;
    padding: 0;
    border-radius: 0px;
  }
  body:not(.home) .primary-nav .nav-link {
    color: #000000;
  }
  body:not(.home) .primary-nav .btn-contact {
    color: #ffffff;
  }
  body:not(.home) .primary-nav.fixed {
    background-color: #28a745;
  }
  body:not(.home) .primary-nav.fixed .navbar-brand {
    background-image: url(../images/logo-dark.svg);
  }
  body:not(.home) .primary-nav.fixed .btn-contact {
    background-color: #ffffff;
    color: #000000;
  }
  body:not(.home) .primary-nav.fixed .btn-contact:hover {
    background-color: #000000;
    color: #ffffff;
  }
}

.page-footer {
  background: #000000;
  color: #ffffff;
  padding-top: 50px;
  position: relative;
}

.page-footer a {
  color: #fff;
}
.page-footer a:hover {
  color: #ffffff;
}
.page-footer .logo-footer {
  display: block;
  max-width: 200px;
  margin-bottom: 10px;
}
.page-footer .company-name {
  font-weight: 700;
  text-transform: uppercase;
}

.company-info p i {
  margin-right: 6px;
  color: #ffffff;
}
.company-info .hotline a {
  font-weight: 700;
}
.company-info .hotline a:hover {
  color: #ffaa29;
}
.company-info .hotline span {
  display: inline-block;
  margin: 0 10px;
}

.widget-footer .widget-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 12px;
}
.widget-footer .footer-menu {
  padding-left: 15px;
  list-style: square;
}
.widget-footer .footer-menu li {
  margin-bottom: 10px;
  font-size: 14px;
}
.widget-footer .footer-menu a:hover {
  color: #ffffff;
}

.page-footer .social-link {
  padding-left: 0;
  list-style: none;
  display: flex;
}
.page-footer .social-link li {
  margin: 0 5px;
}
.page-footer .social-link a {
  display: block;
  background: #ffffff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #28a745;
  border-radius: 10px;
}
.page-footer .social-link a:hover {
  background: #000000;
  color: #ffffff;
}

.copyright {
  border-top: 1px solid #383838;
  padding-top: 10px;
  margin-bottom: 0;
}

.btn-to-top {
  background-color: #fff;
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.btn-to-top svg {
  max-width: 20px;
}

.page-footer .cert img {
  display: block;
  margin-bottom: 10px;
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 15px;
  line-height: 26px;
  border-radius: 50%;
  cursor: pointer;
  will-change: transform;
  background-color: #28a745;
}

.live-support {
  opacity: 0;
  visibility: hidden;
  width: 250px;
  border-radius: 5px;
  overflow: hidden;
  position: fixed;
  right: 40px;
  bottom: 30px;
  background: #ffffff;
  border-radius: 4px;
  z-index: 5;
  -webkit-box-shadow: -8px 8.9px 27px 0 rgba(36, 36, 36, 0.26);
  -moz-box-shadow: -8px 8.9px 27px 0 rgba(36, 36, 36, 0.26);
  box-shadow: -8px 8.9px 27px 0 rgba(36, 36, 36, 0.26);
  transition: all 0.3s;
}
.live-support.show {
  visibility: visible;
  opacity: 1;
  right: 60px;
  margin-left: 0;
}
.live-support img {
  max-width: 30px;
}
.live-support .title {
  background: #f1f1f1;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #28a745;
  margin-bottom: 5px;
  font-size: 13px;
}
.live-support .sub-content {
  text-align: center;
  padding: 5px 15px;
  font-size: 12px;
  color: #14263B;
}
.live-support .support-footer {
  text-align: center;
  font-size: 12px;
  color: #14263B;
  padding: 15px 35px;
}
.live-support .list-method {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.live-support .item {
  padding: 8px 10px;
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 10px;
  background: #0073b6;
}
.live-support .item .text {
  width: 65px;
  display: inline-block;
}
.live-support .item .icon {
  margin-right: 5px;
}
.live-support .item .icon img {
  max-width: 20px;
}
.live-support .item:first-child {
  background: #28a745;
}
.live-support .item:nth-child(2) {
  background: #1683fb;
}
.live-support .item:nth-child(2) .icon img {
  max-width: 18px;
}
.live-support .item:nth-child(3) {
  background: #0073b6;
  margin-bottom: 0;
}
.live-support .item:nth-child(3) .icon img {
  max-width: 18px;
}

.btn-livechat {
  border: none;
  width: 40px;
  height: 40px;
  background: url(../images/chat-icon.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  font-size: 0;
  position: fixed;
  z-index: 3;
  right: 15px;
  bottom: 60px;
  -webkit-box-shadow: -8px 8.9px 27px 0 rgba(36, 36, 36, 0.26);
  -moz-box-shadow: -8px 8.9px 27px 0 rgba(36, 36, 36, 0.26);
  box-shadow: -8px 8.9px 27px 0 rgba(36, 36, 36, 0.26);
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.3s;
}
.btn-livechat.show {
  background-image: url(../images/close-chat.svg);
}

.call-button {
  position: fixed;
  z-index: 3;
  right: 15px;
  bottom: 90px;
}

.call-button i {
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  background-color: #f33a3a;
  color: #fff;
  line-height: 40px;
  margin: 0 auto;
  border-radius: 35px;
  animation: play 2s ease infinite;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 0.3s;
}

@keyframes play {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 3px rgba(243, 58, 58, 0.4);
  }
  25% {
    box-shadow: 0 0 0 6px rgba(243, 58, 58, 0.4), 0 0 0 12px rgba(243, 58, 58, 0.2);
  }
  25% {
    box-shadow: 0 0 0 9px rgba(243, 58, 58, 0.4), 0 0 0 18px rgba(243, 58, 58, 0.2);
  }
}
main.page-content {
  min-height: 70vh;
  padding-bottom: 30px;
  padding-top: 15px;
}

.sidebar {
  border-left: 1px solid #e1e8ee;
}
.sidebar .sticky {
  position: sticky;
  z-index: 2;
  top: 90px;
}
.sidebar .widget {
  padding: 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.sidebar .widget-title,
.sidebar .widget-title a {
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}
.sidebar .widget-title {
  margin-bottom: 10px;
}
.sidebar .widget-title span {
  position: relative;
}
.sidebar .widget-title span:before {
  content: "";
  width: 100%;
  border-top: 2px solid #124E78;
  position: absolute;
  top: -6px;
  left: 0;
}

.widget-menu .list-cat-side {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.widget-menu li {
  padding: 8px 0;
  border-bottom: 1px dashed #e1e8ee;
  font-weight: 700;
}
.widget-menu li:last-child {
  border: none;
  padding-bottom: 0;
}
.widget-menu a {
  color: #000000;
  display: flex;
}
.widget-menu a:hover {
  color: #28a745;
}
.widget-menu .number {
  margin-left: auto;
  color: #124E78;
  font-weight: 400;
}

.widget-recent-post .post {
  padding: 15px 0;
  border-bottom: 1px dashed #e1e8ee;
}
.widget-recent-post .post:first-child {
  padding-top: 0;
}
.widget-recent-post .post:last-child {
  padding-bottom: 0;
  border: none;
}
.widget-recent-post .post:after {
  content: "";
  display: table;
  clear: both;
}
.widget-recent-post .post-thumbnail {
  width: 100px;
  height: 65px;
  float: left;
  margin-right: 10px;
}
.widget-recent-post .post-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}
.widget-recent-post .post-title a:hover {
  color: #28a745;
}

.sidebar .widget-request {
  background-color: #f5f8ff;
  margin-top: 30px;
  position: sticky;
  top: 15px;
  z-index: 1;
}
.sidebar .widget-request .h2 {
  color: #28a745;
  font-size: 1.5rem;
  font-weight: 700;
}
.sidebar .widget-request .content {
  font-size: 16px;
  font-weight: 300;
}
.sidebar .widget-request .btn-request {
  background-color: #124E78;
  color: #ffffff;
  font-weight: 900;
}

.widget-form label {
  font-weight: 700;
}
.widget-form .form-control {
  font-size: 13px;
}
.widget-form .btn-submit {
  width: 100%;
  background-color: #28a745;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.widget-form .btn-submit i {
  margin-left: 5px;
}

.search-form-sidebar {
  position: relative;
}
.search-form-sidebar .form-control {
  border-radius: 40px;
  border: 1px solid #e1e8ee;
  font-size: 14px;
  width: 100%;
  position: relative;
}
.search-form-sidebar .form-control:focus {
  box-shadow: none;
}
.search-form-sidebar .btn-search {
  position: absolute;
  top: 0px;
  right: 3px;
}
.search-form-sidebar .btn-search:focus {
  outline: none;
  box-shadow: none;
}

.post-tag .active a {
  background-color: #28a745;
  color: #ffffff;
}

.widget-sticky {
  position: sticky;
  top: 100px;
}

.breadcrumb {
  background: none;
  padding-left: 0;
  padding-top: 0;
  justify-content: flex-start;
  color: #14263B;
  margin-bottom: 10px;
  border-bottom: 1px dashed #e1e8ee;
  border-radius: 0;
  font-size: 13px;
}
.breadcrumb a {
  color: #28a745;
}
.breadcrumb a:hover {
  color: #28a745;
}
.breadcrumb .active {
  color: #28a745;
}

.breadcrumb > span > span > a {
  color: #28a745;
}

body.single .breadcrumb_last {
  display: none;
}

.slick-dots {
  bottom: 5px;
}
.slick-dots li button {
  background-color: #28a745;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  padding: 0;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: #124E78;
}

.slick-next,
.slick-prev {
  padding: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50px;
}
.slick-next:hover, .slick-next:focus,
.slick-prev:hover,
.slick-prev:focus {
  background-color: #124E78;
}
.slick-next:before,
.slick-prev:before {
  display: block;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  opacity: 1;
}

.slick-prev {
  left: 15px;
}
.slick-prev:before {
  content: "\f104";
  font: normal normal normal 20px FontAwesome;
}
@media (max-width: 575px) {
  .slick-prev {
    left: 15px;
  }
}

.slick-next {
  right: 15px;
}
.slick-next:before {
  content: "\f105";
  font: normal normal normal 20px FontAwesome;
}
@media (max-width: 575px) {
  .slick-next {
    right: 15px;
  }
}

.pagination-nav {
  margin-bottom: 15px;
}
.pagination-nav .pagination {
  margin: 0;
}
.pagination-nav .pagination a,
.pagination-nav .pagination span {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #e8e8e8;
  background-color: #fff;
  border: 1px solid #dee2e6;
  margin: 5px;
  font-weight: bold;
  border-radius: 100px;
  transition: all 0.3s;
}
.pagination-nav .pagination span {
  color: #000000;
}
.pagination-nav .pagination a {
  color: #28a745;
}
.pagination-nav .pagination a:hover {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.comment-section-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #28a745;
  text-transform: uppercase;
}
.comment-section-title span {
  color: #ffc107;
}

#comments {
  word-break: break-word;
}
#comments ul,
#comments ol {
  list-style: none;
}
#comments .avatar {
  height: 50px;
  width: 50px;
  left: 0px;
  border-radius: 4px;
  position: absolute;
}
#comments .comment-body {
  position: relative;
  padding-top: 1.5em;
  border-bottom: 1px solid;
  border-color: #eeeeee;
  background-color: transparent;
  margin-bottom: 0;
  padding-left: 70px;
}
#comments .comment-meta {
  margin-bottom: 1.5em;
  margin-left: 65px;
}
#comments .says {
  display: none;
}

#comments {
  color: #484848;
  clear: both;
  font-size: 14px;
  line-height: 1.8;
}
#comments .fn {
  color: #28a745;
}
#comments .reply {
  position: absolute;
  right: 10px;
  top: 0px;
  z-index: 2;
}
#comments .commentmetadata {
  display: none;
}

.comments-title {
  font-size: 28px;
  font-size: 1.55556rem;
  margin-bottom: 1.5em;
}

.comment-list {
  margin: 0 0 3em;
  padding: 0;
  position: relative;
  word-break: break-word;
}

.comment-list .children {
  margin: 0;
  padding: 0;
  margin-left: 4em !important;
}

@media (max-width: 991px) {
  .comment-list .children {
    margin-left: 1em !important;
  }
}
.comment-list li:before {
  display: none;
}

.comment-list .depth-1 > article {
  margin-left: 0;
}

.comment-body + .comment-respond {
  margin-top: 1.5em;
  padding: 30px;
  margin-left: 4em;
  background: #f0f0f0;
  position: relative;
  max-width: 100%;
  margin-bottom: 1.5em;
}

.comment-body + .comment-respond:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f112";
  position: absolute;
  transform: rotate(180deg);
  top: 0;
  right: calc(100% + 15px);
  font-size: 24px;
}

.comment_container .says,
.comment-body .says {
  display: none;
}

.comment_container,
article.comment-body {
  margin-bottom: 2em;
}

.comment-content > ul,
.comment-content > ol {
  padding-left: 1.35em;
}

.comment-author {
  margin-bottom: 0;
  z-index: 2;
}

.comment-meta {
  margin-bottom: 1.5em;
  margin-left: 65px;
}

.comment-metadata {
  font-size: 12px;
  font-size: 0.75rem;
}

.comment-metadata a.comment-edit-link {
  margin-left: 1em;
}

.reply {
  margin-bottom: 1.5em;
}

.comment-reply-link {
  font-weight: 600;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.comment-reply-link .icon {
  left: -2em;
  height: 1em;
  width: 1em;
  position: absolute;
  top: 0;
}

#cancel-comment-reply-link {
  text-transform: capitalize;
  font-size: 13px;
  font-size: 0.75rem;
  display: block;
  margin-top: 10px;
  color: #f44336;
}

#cancel-comment-reply-link:before {
  margin-right: 3px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f057";
  display: inline-block;
}

.comments-pagination {
  margin: 2em 0 3em;
}

.comment-form label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.comment-form .required {
  color: red;
}

.comment-form a {
  text-decoration: underline;
}

.comment-respond .comment-reply-title,
.comment-respond .comment-reply-title {
  position: relative;
  font-size: 28px;
  font-size: 1.55556rem;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
}

.comment-form .submit {
  background-color: #28a745;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 25px;
  cursor: pointer;
  border-radius: 4px;
}

.comment-form .form-submit {
  width: 100%;
  margin-top: 15px;
}

.comment-form {
  margin-bottom: 30px;
}
.comment-form .form-control {
  border-radius: 0;
  font-size: 14px;
}

.comment-form > p {
  margin-bottom: 0;
}

.comment-form .comment-form-comment textarea {
  max-height: 160px;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
}

.comment-navigation {
  display: flex;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  width: 50%;
}

.comment-form .comment-form-author {
  padding-right: 10px;
}

.comment-form .comment-form-aemail {
  padding-left: 10px;
}

.comment-form .comment-notes {
  margin-bottom: 15px;
  display: none;
}

.comment-form-cookies-consent {
  display: none;
}

.comment-form-author,
.comment-form-email {
  display: none;
}

.comment-form-author.show,
.comment-form-email.show {
  display: block;
}

@media (max-width: 575px) {
  .comment-form .comment-form-email {
    width: 100%;
    margin-top: 10px;
  }
  .comment-form .submit {
    width: 100%;
  }
  .comment-form-author.show,
  .comment-form-email.show {
    padding-right: 15px;
  }
}
.response-none {
  font-weight: bold;
  font-size: 16px;
}

.comment-list iframe {
  max-width: 100%;
}

.comment-section-title {
  margin-top: 15px;
}

#comments .fn {
  color: #28a745;
}

.comment-body p a,
.comment-body a {
  font-weight: bold;
}

.social-share-button {
  padding: 0px 0;
  margin-top: 0 !important;
}

.social-share-button span {
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
}

a.social {
  position: relative;
  display: inline-block;
  margin: 0.333rem 0.25rem;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 32px;
  width: 32px;
  height: 32px;
  font-size: 0;
  transition: color 0.333s;
}

a.social::before {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border-radius: 100px;
  content: "";
}

a.social::after {
  font-family: "fontawesome", sans-serif;
  font-size: 0.95rem;
}

a.social.social-twitter,
a.social[href^="https://twitter"] {
  background-color: #00aced;
}

a.social.social-twitter::after,
a.social[href^="https://twitter"]::after {
  content: "\f099";
}

a.social.social-twitter::before,
a.social[href^="https://twitter"]::before {
  box-shadow: 0 0 0 6px #00aced;
}

a.social.social-facebook,
a.social[href^="https://www.facebook"] {
  background-color: #3b5998;
}

a.social.social-facebook::after,
a.social[href^="https://www.facebook"]::after {
  content: "\f09a";
}

a.social.social-facebook::before,
a.social[href^="https://www.facebook"]::before {
  box-shadow: 0 0 0 6px #3b5998;
}

a.social.social-google,
a.social[href^="https://plus.google"] {
  background-color: #dd4b39;
}

a.social.social-google::after,
a.social[href^="https://plus.google"]::after {
  content: "\f0d5";
}

a.social.social-google::before,
a.social[href^="https://plus.google"]::before {
  box-shadow: 0 0 0 6px #dd4b39;
}

a.social.social-linkedin,
a.social[href^="https://www.linkedin"] {
  background-color: #007bb6;
}

a.social.social-linkedin::after,
a.social[href^="https://www.linkedin"]::after {
  content: "\f0e1";
}

a.social.social-linkedin::before,
a.social[href^="https://www.linkedin"]::before {
  box-shadow: 0 0 0 6px #007bb6;
}

a.social.social-pintrest,
a.social[href^="https://pinterest"] {
  background-color: #cb2027;
}

a.social.social-pintrest::after,
a.social[href^="https://pinterest"]::after {
  content: "\f231";
}

a.social.social-pintrest::before,
a.social[href^="https://pinterest"]::before {
  box-shadow: 0 0 0 6px #cb2027;
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.post-thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 50% 50%;
  -o-object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.post-meta .post-cat {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}
.post-excerpt {
  color: rgba(20, 38, 59, 0.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}
.post-title {
  font-size: 15px;
  font-weight: 700;
}
.post-title a {
  color: #000000;
}
.post-title a:hover {
  color: #28a745;
}
.post-action {
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
}
.post-action .user-online {
  font-weight: bold;
  color: #f6f6f6;
  font-size: 13px;
}
.post .post-date {
  color: #14263B;
  display: block;
  margin-bottom: 5px;
}
.post .post-date span {
  font-weight: 700;
}
.post .post-date i {
  margin-right: 5px;
  color: #000;
}

.feed-post:after {
  content: "";
  display: table;
  clear: both;
}
.feed-post .post-thumbnail {
  width: 180px;
  height: 115px;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
}

.video-post .post-thumbnail {
  position: relative;
}

.video-post .post-thumbnail:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../images/icon-play.svg) no-repeat;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  background-size: 60px auto;
  z-index: 1;
}

.post .rating {
  color: #ffaa29;
  font-size: 12px;
}
.post .rating .number {
  color: #14263B;
  font-weight: 700;
}
.post .verifired {
  background-color: rgba(18, 78, 120, 0.1);
  padding: 4px 10px;
  color: #124E78;
  display: inline-flex;
  border-radius: 30px;
  font-weight: 700;
  align-items: center;
  text-transform: uppercase;
  font-size: 10px;
}
.post .verifired .check {
  width: 15px;
  height: 15px;
  background: url(../images/icon-check.svg) no-repeat;
  display: block;
  background-size: 15px;
  background-position: center;
  margin-right: 5px;
}
.post .post-meta-bottom {
  display: flex;
  align-items: center;
}

.post-row:after {
  content: "";
  display: table;
  clear: both;
}
.post-row .post-thumbnail {
  width: 140px;
  height: 85px;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
}

.big-post .post-thumbnail {
  margin-bottom: 10px;
}
.big-post .post-title {
  font-size: 20px;
}

.medium-post .post-thumbnail {
  margin-bottom: 10px;
}

.video-post .post-thumbnail {
  position: relative;
}

.video-post .post-thumbnail:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../images/icon-play.svg) no-repeat;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  background-size: 40px auto;
  z-index: 1;
}

.f-modal-icon {
  border-radius: 50%;
  border: 4px solid gray;
  box-sizing: content-box;
  height: 80px;
  margin: 20px auto;
  padding: 0;
  position: relative;
  width: 80px;
}
.f-modal-icon.f-modal-success, .f-modal-icon.f-modal-error {
  border-color: #a5dc86;
}
.f-modal-icon.f-modal-success:after, .f-modal-icon.f-modal-success:before, .f-modal-icon.f-modal-error:after, .f-modal-icon.f-modal-error:before {
  background: #fff;
  content: "";
  height: 120px;
  position: absolute;
  transform: rotate(45deg);
  width: 60px;
}
.f-modal-icon.f-modal-success:before, .f-modal-icon.f-modal-error:before {
  border-radius: 120px 0 0 120px;
  left: -33px;
  top: -7px;
  transform-origin: 60px 60px;
  transform: rotate(-45deg);
}
.f-modal-icon.f-modal-success:after, .f-modal-icon.f-modal-error:after {
  border-radius: 0 120px 120px 0;
  left: 30px;
  top: -11px;
  transform-origin: 0 60px;
  transform: rotate(-45deg);
}
.f-modal-icon.f-modal-success .f-modal-placeholder, .f-modal-icon.f-modal-error .f-modal-placeholder {
  border-radius: 50%;
  border: 4px solid rgba(165, 220, 134, 0.2);
  box-sizing: content-box;
  height: 80px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 80px;
  z-index: 2;
}
.f-modal-icon.f-modal-success .f-modal-fix, .f-modal-icon.f-modal-error .f-modal-fix {
  background-color: #fff;
  height: 90px;
  left: 28px;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 5px;
  z-index: 1;
}
.f-modal-icon.f-modal-success .f-modal-line, .f-modal-icon.f-modal-error .f-modal-line {
  background-color: #a5dc86;
  border-radius: 2px;
  display: block;
  height: 5px;
  position: absolute;
  z-index: 2;
}
.f-modal-icon.f-modal-success .f-modal-line.f-modal-tip, .f-modal-icon.f-modal-error .f-modal-line.f-modal-tip {
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
  width: 25px;
}
.f-modal-icon.f-modal-success .f-modal-line.f-modal-long, .f-modal-icon.f-modal-error .f-modal-line.f-modal-long {
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
  width: 47px;
}
.f-modal-icon.f-modal-error {
  border-color: #f27474;
}
.f-modal-icon.f-modal-error .f-modal-x-mark {
  display: block;
  position: relative;
  z-index: 2;
}
.f-modal-icon.f-modal-error .f-modal-placeholder {
  border: 4px solid rgba(200, 0, 0, 0.2);
}
.f-modal-icon.f-modal-error .f-modal-line {
  background-color: #f27474;
  top: 37px;
  width: 47px;
}
.f-modal-icon.f-modal-error .f-modal-line.f-modal-left {
  left: 17px;
  transform: rotate(45deg);
}
.f-modal-icon.f-modal-error .f-modal-line.f-modal-right {
  right: 16px;
  transform: rotate(-45deg);
}
.f-modal-icon.f-modal-warning {
  border-color: #f8bb86;
}
.f-modal-icon.f-modal-warning:before {
  animation: pulseWarning 2s linear infinite;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
}
.f-modal-icon.f-modal-warning:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.f-modal-icon.f-modal-warning .f-modal-body {
  background-color: #f8bb86;
  border-radius: 2px;
  height: 47px;
  left: 50%;
  margin-left: -2px;
  position: absolute;
  top: 10px;
  width: 5px;
  z-index: 2;
}
.f-modal-icon.f-modal-warning .f-modal-dot {
  background-color: #f8bb86;
  border-radius: 50%;
  bottom: 10px;
  height: 7px;
  left: 50%;
  margin-left: -3px;
  position: absolute;
  width: 7px;
  z-index: 2;
}
.f-modal-icon + .f-modal-icon {
  margin-top: 50px;
}

.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}

.f-modal-icon.f-modal-success.animate:after {
  animation: rotatePlaceholder 4.25s ease-in;
}

.f-modal-icon.f-modal-error.animate:after {
  animation: rotatePlaceholder 4.25s ease-in;
}

.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}

.animateXLeft {
  animation: animateXLeft 0.75s;
}

.animateXRight {
  animation: animateXRight 0.75s;
}

.scaleWarning {
  animation: scaleWarning 0.75s infinite alternate;
}

.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}

@keyframes animateSuccessTip {
  0%, 54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0%, 65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0%, 5% {
    transform: rotate(-45deg);
  }
  100%, 12% {
    transform: rotate(-405deg);
  }
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateXLeft {
  0%, 65% {
    left: 82px;
    top: 95px;
    width: 0;
  }
  84% {
    left: 14px;
    top: 33px;
    width: 47px;
  }
  100% {
    left: 17px;
    top: 37px;
    width: 47px;
  }
}
@keyframes animateXRight {
  0%, 65% {
    right: 82px;
    top: 95px;
    width: 0;
  }
  84% {
    right: 14px;
    top: 33px;
    width: 47px;
  }
  100% {
    right: 16px;
    top: 37px;
    width: 47px;
  }
}
@keyframes scaleWarning {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulseWarning {
  0% {
    background-color: #fff;
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    background-color: #fff;
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    background-color: #f8bb86;
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulseWarningIns {
  0% {
    background-color: #f8d486;
  }
  100% {
    background-color: #f8bb86;
  }
}
.modal-alert-success .modal-content {
  border-radius: 10px;
  border: none;
}
.modal-alert-success .img-logo {
  display: block;
  width: 250px;
  margin: 0px auto 15px auto;
}
.modal-alert-success .alert-heading {
  font-weight: 700;
  color: #4caf50;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-alert-success .alert-message {
  font-size: 14px;
  margin-bottom: 5px;
}
.modal-alert-success .btn-ok {
  width: 120px;
  background: #4caf50;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  margin: 0 auto;
}

.content-nav {
  margin-bottom: -30px;
  border-top: 1px solid #e1e8ee;
  border-bottom: 1px solid #e1e8ee;
  display: block;
}
.content-nav .container {
  justify-content: center;
}
.content-nav .nav-content {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}
.content-nav .nav-content li {
  font-weight: 700;
}
.content-nav .nav-content a {
  color: #000000;
  padding: 10px 10px;
  display: block;
}
.content-nav .nav-content a:hover {
  color: #28a745;
}
.content-nav .nav-content .active a {
  color: #28a745;
}

.list-child-cat-menu {
  margin-top: 30px;
  display: block;
}
.list-child-cat-menu .container {
  justify-content: center;
}
.list-child-cat-menu .child-cat-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}
.list-child-cat-menu .child-cat-menu li {
  margin: 0 8px;
  font-weight: 700;
}
.list-child-cat-menu .child-cat-menu a {
  color: #ffffff;
  padding: 8px 10px;
  display: block;
  background-color: #28a745;
  border-radius: 10px;
}
.list-child-cat-menu .child-cat-menu a:hover {
  color: #ffffff;
  background-color: #000000;
}
.list-child-cat-menu .child-cat-menu .active a {
  color: #ffffff;
  background-color: #000000;
}

.content-nav.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 3;
  top: 70px;
  background-color: #fff;
}

.modal-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  font-size: 15px;
}

.modal-content {
  position: relative;
}
.modal-content .close {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 35px;
  padding: 0;
  position: absolute;
  top: 0px;
  right: -40px;
  margin: 0;
  background: url(../images/icon-set/line/icon-close-white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
  font-size: 0;
  border-radius: 4px;
}
.modal-content .close:hover {
  background-color: #124E78;
  color: #ffffff;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
}

.modal-tech-spec .modal-header {
  justify-content: center;
}
.modal-tech-spec .modal-title {
  text-align: center;
  font-size: 1.2rem;
  color: #000000;
}
.modal-tech-spec .modal-body {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal-tech-spec .modal-body::-webkit-scrollbar {
  width: 5px;
}
.modal-tech-spec .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-tech-spec .modal-body::-webkit-scrollbar-thumb {
  background: #888;
}
.modal-tech-spec .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.modal-tech-spec .group-spec {
  margin-bottom: 30px;
}
.modal-tech-spec .group-spec .group-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #28a745;
  text-align: center;
  margin-bottom: 10px;
  background: #28a745;
  color: #ffffff;
  padding: 10px;
  font-size: 13px;
}
.modal-tech-spec .group-spec .spec-item {
  border: 1px solid #e1e8ee;
  padding: 0px 10px;
  border-bottom: none;
  display: flex;
  flex: auto;
}
.modal-tech-spec .group-spec .spec-item:last-child {
  border-bottom: 1px solid #e1e8ee;
}
.modal-tech-spec .group-spec .spec-label {
  width: 60%;
  display: block;
  border-right: 1px solid #e1e8ee;
  padding: 10px 0;
  font-size: 13px;
}
.modal-tech-spec .group-spec .spec-value {
  width: 40%;
  padding-left: 10px;
  padding: 10px 0 10px 10px;
}

.droplet {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.droplet.show {
  display: block;
}

.home-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #28a745 0%, #0066cc 100%);
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(-15deg);
  z-index: 1;
}
.home-cta .container {
  position: relative;
  z-index: 2;
}
.home-cta .cta-content {
  max-width: 900px;
  margin: 0 auto;
}
.home-cta .cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .home-cta .cta-title {
    font-size: 2.2rem;
  }
}
.home-cta .cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .home-cta .cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}
.home-cta .cta-buttons {
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.home-cta .cta-buttons .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  min-width: 200px;
}
.home-cta .cta-buttons .btn.btn-primary {
  background: #fff;
  color: #28a745;
  border-color: #fff;
}
.home-cta .cta-buttons .btn.btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.home-cta .cta-buttons .btn.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.home-cta .cta-buttons .btn.btn-outline-light:hover {
  background: #fff;
  color: #28a745;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .home-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .home-cta .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
.home-cta .cta-contact {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.home-cta .cta-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}
.home-cta .cta-contact .contact-item i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(10px);
}
.home-cta .cta-contact .contact-item .contact-info .contact-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2px;
}
.home-cta .cta-contact .contact-item .contact-info .contact-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .home-cta .cta-contact {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .home-cta .cta-contact {
    flex-direction: column;
    gap: 20px;
  }
}
.home-cta .cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.home-cta .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}
.home-cta .cta-features .feature-item i {
  font-size: 18px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .home-cta .cta-features {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .home-cta .cta-features {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .home-cta {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .home-cta {
    padding: 60px 0;
  }
}

.scroll-animation .mouse {
  height: 45px;
  width: 30px;
  border-radius: 30px;
  border: 2px solid #ffffff;
  margin-bottom: 3px;
}

.scroll-animation {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  margin-top: -100px;
  z-index: 2;
}
@media (max-width: 575px) {
  .scroll-animation {
    margin-top: -70px;
  }
}

.scroll-animation .mouse .wheel {
  animation: mouse-wheel 1.5s ease infinite;
  height: 15px;
  width: 6px;
  background: #fff;
  margin: 3px auto;
  border-radius: 3px;
}

.scroll-animation .arrows span {
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  display: block;
  margin: 0 auto;
  animation: mouse-scroll 2s infinite;
}

.scroll-animation .arrows .first {
  animation-delay: 0.1s;
}

.scroll-animation .arrows .second {
  animation-delay: 0.2s;
}

.scroll-animation .arrows .third {
  animation-delay: 0.3s;
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}
.slick-dots {
  bottom: 5px;
}
.slick-dots li button {
  background-color: #28a745;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  padding: 0;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: #124E78;
}

.slick-next,
.slick-prev {
  padding: 0;
  z-index: 1;
  border-radius: 50px;
}
.slick-next:before,
.slick-prev:before {
  display: block;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  opacity: 1;
}

.slick-prev {
  left: -15px;
}
.slick-prev:before {
  content: "\f104";
  font: normal normal normal 24px FontAwesome;
}
@media (max-width: 575px) {
  .slick-prev {
    left: 15px;
  }
}

.slick-next {
  right: -15px;
}
.slick-next:before {
  content: "\f105";
  font: normal normal normal 24px FontAwesome;
}
@media (max-width: 575px) {
  .slick-next {
    right: 15px;
  }
}

.home-slider::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(50% 50% at 50% 50%, #0057a6 12.5%, rgba(61, 174, 239, 0) 76.04%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.home-slider {
  height: 100vh;
}
.home-slider .list-slider {
  margin-bottom: 0;
  margin-top: -170px;
}
.home-slider .slick-prev {
  left: 50px;
  background: none;
}
.home-slider .slick-prev:before {
  font-size: 34px;
}
.home-slider .slick-next {
  right: 50px;
  background: none;
}
.home-slider .slick-next:before {
  font-size: 34px;
}
.home-slider .hero-image {
  position: relative;
}
.home-slider .hero-image:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #040128;
  content: "";
  opacity: 0.5;
  z-index: 2;
  backdrop-filter: blur(20px);
}

.hero-image {
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  max-width: 100%;
  padding-top: 135px;
}
.hero-image .title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  max-width: 80%;
}
.hero-image .title span {
  color: #ffffff;
  background-color: #28a745;
  padding: 0px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 10px;
}
.hero-image .sub {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.4rem;
  max-width: 70%;
}
.hero-image .container {
  position: relative;
  z-index: 2;
}
.hero-image .zoom-image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: zoom-in-zoom-out 25s ease;
  animation-direction: normal;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: right top;
}
@media (max-width: 1366px) {
  .hero-image {
    background-position: center right -200px;
  }
}
.hero-image .btn-viewmore {
  background-color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  padding: 12px 30px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}
.hero-image .btn-viewmore:hover {
  color: #ffffff;
  background-color: #28a745;
}

.home-slider {
  /* Style cho progress bar */
}
.home-slider .progress-bar {
  width: 100%;
  margin: 10px auto;
  height: 3px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: -12px;
  left: 0;
  z-index: 3;
}
.home-slider .progress {
  width: 0%;
  height: 100%;
  background: #28a745;
  /* Màu xanh, bạn có thể thay đổi */
  transition: width 0s linear;
  /* Reset transition ban đầu */
}
.home-slider .list-thumb-wrap {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40%;
}
.home-slider .list-thumb {
  margin-bottom: 0;
}
.home-slider .list-thumb .slick-list {
  padding: 0 !important;
}
.home-slider .list-thumb .item-thumb {
  padding: 15px;
}
.home-slider .list-thumb .item-thumb .thumbnail-wrap {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: 10px;
  height: 100px;
}
.home-slider .list-thumb .item-thumb img {
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 50% 50%;
  -o-object-position: 50% 50%;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.home-slider .list-thumb .slick-current img {
  opacity: 1;
}

.home-slider .list-thumb-wrap {
  transition: all 0.3s;
}

.home-slider.fixed .list-thumb-wrap {
  bottom: 200px;
}

.featured-content {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}
.featured-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: contain;
  opacity: 0.05;
  z-index: 1;
}
.featured-content .container {
  position: relative;
  z-index: 2;
}
.featured-content .section-label {
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}
.featured-content .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #124E78;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .featured-content .section-title {
    font-size: 32px;
  }
}
.featured-content .section-description {
  font-size: 16px;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.featured-content .services-grid {
  margin-bottom: 50px;
}
.featured-content .service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}
.featured-content .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #28a745;
}
.featured-content .service-card:hover .service-icon img {
  transform: scale(1.1);
}
.featured-content .service-card:hover .service-link {
  color: #28a745;
}
.featured-content .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
}
.featured-content .service-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.featured-content .service-title {
  font-size: 20px;
  font-weight: 600;
  color: #124E78;
  margin-bottom: 15px;
  line-height: 1.3;
}
.featured-content .service-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}
.featured-content .service-link {
  color: #124E78;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-content .service-link i {
  margin-left: 5px;
  font-size: 12px;
}
.featured-content .service-link:hover {
  color: #28a745;
  text-decoration: none;
}
.featured-content .cta-text {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 25px;
}
.featured-content .btn-cta {
  background: #28a745;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #28a745;
}
.featured-content .btn-cta:hover {
  background: transparent;
  color: #28a745;
  text-decoration: none;
}
@media (max-width: 768px) {
  .featured-content {
    padding: 60px 0;
  }
  .featured-content .service-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
  .featured-content .section-description {
    margin-bottom: 40px;
  }
  .featured-content .services-grid {
    margin-bottom: 30px;
  }
}

.home-certificate {
  padding: 80px 0;
  background-color: #fff;
}
.home-certificate .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #124E78;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}
.home-certificate .section-description {
  font-size: 16px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.home-certificate .list-certificate {
  margin-bottom: 60px;
}
.home-certificate .list-certificate .slick-current .certificate-image {
  transition: all 0.3s;
  border: 1px solid #28a745;
}
.home-certificate .list-certificate .certificate-item {
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
  margin: 0 15px 0px 15px;
}
.home-certificate .list-certificate .certificate-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #28a745;
}
.home-certificate .list-certificate .certificate-item:hover .certificate-image img {
  transform: scale(1.05);
}
.home-certificate .list-certificate .certificate-image {
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  overflow: hidden;
  transition: all 0.3s ease;
}
.home-certificate .list-certificate .certificate-image img {
  object-fit: contain;
  transition: transform 0.3s ease;
}
.home-certificate .list-cert-thumb .cert-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.home-certificate .list-cert-thumb .cert-item img {
  border: 10px solid #124E78;
}
.home-certificate .list-cert-thumb .certificate-info {
  padding: 15px;
  background-color: #124E78;
}
.home-certificate .list-cert-thumb .certificate-info .certificate-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.home-certificate .list-cert-thumb .certificate-info .certificate-desc {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}
.home-certificate .slick-dots {
  bottom: -50px;
}
.home-certificate .slick-dots li button {
  background-color: #28a745;
  border-radius: 10px;
  width: 12px;
  height: 12px;
  padding: 0;
}
.home-certificate .slick-dots li button:before {
  display: none;
}
.home-certificate .slick-dots li.slick-active button {
  background-color: #124E78;
}
.home-certificate .slick-prev,
.home-certificate .slick-next {
  width: 40px;
  height: 40px;
  background: #28a745;
  border-radius: 50%;
  z-index: 1;
  bottom: -80px;
  top: auto;
}
.home-certificate .slick-prev:before,
.home-certificate .slick-next:before {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  opacity: 1;
}
.home-certificate .slick-prev:hover,
.home-certificate .slick-next:hover {
  background: #124E78;
}
.home-certificate .slick-prev {
  right: 70px;
  left: auto;
}
.home-certificate .slick-prev:before {
  content: "\f104";
  font-family: FontAwesome;
}
.home-certificate .slick-next {
  right: 20px;
}
.home-certificate .slick-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
@media (max-width: 768px) {
  .home-certificate {
    padding: 60px 0;
  }
  .home-certificate .section-title {
    font-size: 2rem;
  }
  .home-certificate .certificate-item {
    margin-bottom: 20px;
    padding: 25px 15px;
  }
  .home-certificate .certificate-image {
    width: 100px;
    height: 100px;
  }
  .home-certificate .certificate-image img {
    width: 60px;
    height: 60px;
  }
  .home-certificate .slick-prev,
  .home-certificate .slick-next {
    display: none !important;
  }
}

.home-news {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.home-news .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #124E78;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.home-news .featured-news {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.home-news .featured-news .news-image {
  position: relative;
  overflow: hidden;
  height: 310px;
}
.home-news .featured-news .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home-news .featured-news .news-image:hover img {
  transform: scale(1.05);
}
.home-news .featured-news .news-content {
  padding: 25px;
}
.home-news .featured-news .news-content .news-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.home-news .featured-news .news-content .news-title a {
  color: #000000;
}
.home-news .featured-news .news-content .news-excerpt {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}
.home-news .news-list .news-item {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.home-news .news-list .news-item:hover {
  transform: translateX(5px);
}
.home-news .news-list .news-item:last-child {
  margin-bottom: 0;
}
.home-news .news-list .news-item .news-thumb {
  width: 120px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 5px;
  margin: 15px;
}
.home-news .news-list .news-item .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home-news .news-list .news-item .news-title a {
  color: #000000;
}
.home-news .news-list .news-item .news-info {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-news .news-list .news-item .news-info .news-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news .news-list .news-item .news-info .news-meta {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}
@media (max-width: 768px) {
  .home-news {
    padding: 50px 0;
  }
  .home-news .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .home-news .featured-news {
    margin-bottom: 30px;
  }
  .home-news .featured-news .news-image {
    height: 200px;
  }
  .home-news .news-list .news-item .news-thumb {
    width: 100px;
    height: 75px;
  }
  .home-news .news-list .news-item .news-info {
    padding: 12px 15px;
  }
  .home-news .news-list .news-item .news-info .news-title {
    font-size: 0.9rem;
  }
  .home-news .news-list .news-item .news-info .news-meta {
    font-size: 0.8rem;
  }
}

/* About us */
.home-about {
  padding: 80px 0;
  background-color: #fff;
}
.home-about .about-image {
  position: relative;
  margin-bottom: 30px;
}
.home-about .about-image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.home-about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #28a745;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.home-about .about-image .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}
.home-about .about-image .experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}
.home-about .about-content {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .home-about .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
}
.home-about .about-content .section-label {
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}
.home-about .about-content .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #124E78;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .home-about .about-content .section-title {
    font-size: 2rem;
  }
}
.home-about .about-content .section-description {
  font-size: 16px;
  color: #28a745;
  margin-bottom: 25px;
  line-height: 1.6;
}
.home-about .about-content .about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.home-about .about-content .about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}
.home-about .about-content .about-features li i {
  color: #28a745;
  margin-right: 12px;
  font-size: 16px;
}
.home-about .about-content .about-features li:last-child {
  margin-bottom: 0;
}
.home-about .about-content .about-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.home-about .about-content .about-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .home-about .about-content .about-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.home-about .about-content .about-contact .btn {
  background: #28a745;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #28a745;
  transition: all 0.3s ease;
}
.home-about .about-content .about-contact .btn:hover {
  background: transparent;
  color: #28a745;
  text-decoration: none;
}
.home-about .about-content .about-contact .contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-about .about-content .about-contact .contact-info i {
  width: 50px;
  height: 50px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.home-about .about-content .about-contact .contact-info .phone-number {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #124E78;
  margin-bottom: 2px;
}
.home-about .about-content .about-contact .contact-info .phone-label {
  display: block;
  font-size: 13px;
  color: #666;
}
@media (max-width: 768px) {
  .home-about {
    padding: 60px 0;
  }
  .home-about .about-image .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }
  .home-about .about-image .experience-badge .number {
    font-size: 2rem;
  }
  .home-about .about-image .experience-badge .text {
    font-size: 0.8rem;
  }
}

.about-hero {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 60px;
  position: relative;
}
.about-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 30px;
}
.about-hero .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}
.about-hero .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.about-hero .breadcrumb .breadcrumb-item a:hover {
  color: white;
}
.about-hero .breadcrumb .breadcrumb-item.active {
  color: white;
}
.about-hero .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
}
.about-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 2.5rem;
  }
}
.about-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.about-intro {
  padding: 100px 0;
}
.about-intro .intro-content {
  padding-right: 30px;
}
@media (max-width: 991px) {
  .about-intro .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.about-intro .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .about-intro .section-title {
    font-size: 2rem;
  }
}
.about-intro .intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}
.about-intro .intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about-intro .intro-stats {
    flex-direction: column;
    gap: 20px;
  }
}
.about-intro .intro-stats .stat-item {
  text-align: center;
}
.about-intro .intro-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  display: block;
  margin-bottom: 5px;
}
.about-intro .intro-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-intro .intro-image img {
  border-radius: 15px;
}

.about-values {
  background: #f8f9fa;
  padding: 100px 0;
}
.about-values .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-values .section-title {
    font-size: 2rem;
  }
}
.about-values .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}
.about-values .value-item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.about-values .value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-values .value-item .value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.about-values .value-item .value-icon i {
  font-size: 2rem;
  color: white;
}
.about-values .value-item .value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 15px;
}
.about-values .value-item .value-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-timeline {
  padding: 100px 0;
}
.about-timeline .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-timeline .section-title {
    font-size: 2rem;
  }
}
.about-timeline .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}
.about-timeline .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 10px;
}
.about-timeline .timeline-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-team {
  background: #f8f9fa;
  padding: 100px 0;
}
.about-team .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-team .section-title {
    font-size: 2rem;
  }
}
.about-team .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}
.about-team .team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.about-team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-team .team-member .member-photo {
  margin-bottom: 25px;
}
.about-team .team-member .member-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f8f9fa;
}
.about-team .team-member .member-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 5px;
}
.about-team .team-member .member-position {
  color: #2a5298;
  font-weight: 500;
  margin-bottom: 15px;
}
.about-team .team-member .member-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-certificates {
  padding: 100px 0;
}
.about-certificates .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-certificates .section-title {
    font-size: 2rem;
  }
}
.about-certificates .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}
.about-certificates .certificate-item {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.about-certificates .certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.about-certificates .certificate-item .cert-image {
  margin-bottom: 20px;
}
.about-certificates .certificate-item .cert-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.about-certificates .certificate-item .cert-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 8px;
}
.about-certificates .certificate-item .cert-desc {
  color: #666;
  margin-bottom: 0;
}

.about-facilities {
  background: #f8f9fa;
  padding: 100px 0;
}
.about-facilities .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-facilities .section-title {
    font-size: 2rem;
  }
}
.about-facilities .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}
.about-facilities .facility-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.about-facilities .facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.about-facilities .facility-item .facility-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.about-facilities .facility-item .facility-content {
  padding: 30px;
}
.about-facilities .facility-item .facility-content .facility-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 15px;
}
.about-facilities .facility-item .facility-content .facility-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 40px;
  }
  .about-intro,
  .about-values,
  .about-timeline,
  .about-team,
  .about-certificates,
  .about-facilities {
    padding: 60px 0;
  }
  .about-intro .intro-stats {
    justify-content: center;
    text-align: center;
  }
  .about-values .value-item,
  .about-team .team-member,
  .about-certificates .certificate-item,
  .about-facilities .facility-item {
    margin-bottom: 20px;
  }
}
.page-title {
  font-weight: 700;
  font-size: 26px;
  position: relative;
  color: #000000;
}

.faqs-collapse .btn-link {
  color: #000000;
  font-weight: 700;
}
.faqs-collapse .btn-link:hover, .faqs-collapse .btn-link:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.page-header-content {
  text-align: center;
  position: relative;
}
.page-header-content .sub-content {
  max-width: 70%;
  margin: 15px auto;
}

body.error404 {
  background-color: #fff;
}

@media (max-width: 575px) {
  .error-404 {
    padding-top: 50px;
  }
}
.error-404 img {
  display: block;
  margin: 0 auto;
  max-width: 415px;
}
@media (max-width: 575px) {
  .error-404 img {
    max-width: 100%;
  }
}
.error-404 .page-title {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  margin: 0;
  text-transform: none;
  color: #000000;
  margin-bottom: 15px;
}
.error-404 .page-title:after {
  display: none;
}
.error-404 .go-to-home {
  display: block;
  width: 150px;
  background-color: #28a745;
  color: #ffffff;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 15px;
  margin: 0 auto;
}
.error-404 .go-to-home:hover {
  background-color: #28a745;
  color: #ffffff;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #3b5998, #28a745);
  z-index: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.timeline.timeline-animated::before {
  opacity: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #3b5998;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px #3b5998;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}
.timeline-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item.animate-in::before {
  transform: scale(1);
}
.timeline-item:hover .timeline-content {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.timeline-item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(59, 89, 152, 0.3);
}
.timeline-item.timeline-highlight::before {
  display: none;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  font-size: 16px;
  font-weight: bold;
  color: #3b5998;
  text-align: right;
  line-height: 1.2;
}

.timeline-year-circle {
  position: absolute;
  left: 45px;
  top: -10px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b5998, #4267B2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
}
.timeline-year-circle span {
  color: white;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  transition: transform 0.3s ease;
}
.timeline-year-circle span:first-child {
  margin-bottom: 2px;
}
.timeline-item.animate-in .timeline-year-circle {
  transform: scale(1);
}
.timeline-year-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(59, 89, 152, 0.4);
  background: linear-gradient(135deg, #4267B2, #3b5998);
}
.timeline-year-circle:hover span {
  transform: scale(1.05);
}
.timeline-year-circle.pulse-animation {
  animation: pulse-circle 0.6s ease-in-out;
}

.timeline-content {
  margin-left: 120px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  flex: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 89, 152, 0.1);
}
.timeline-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #f8f9fa;
  transition: all 0.3s ease;
}
.timeline-content:hover {
  border-color: rgba(59, 89, 152, 0.2);
}
.timeline-content:hover::before {
  border-right-color: #ffffff;
}

.timeline-text h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  position: relative;
}
.timeline-text h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b5998, #28a745);
  transition: width 0.4s ease;
}
.timeline-text p {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.timeline-text p:last-child {
  margin-bottom: 0;
}
.timeline-content:hover .timeline-text h4 {
  color: #2d4373;
}
.timeline-content:hover .timeline-text h4::after {
  width: 100%;
}
.timeline-content:hover .timeline-text p {
  color: #555;
}

.timeline-image {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.timeline-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 89, 152, 0.1), rgba(40, 167, 69, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.timeline-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}
.timeline-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.timeline-image:hover::before {
  opacity: 1;
}
.timeline-image:hover img {
  transform: scale(1.03);
}

@keyframes pulse-circle {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(59, 89, 152, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.timeline-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(59, 89, 152, 0.1);
  z-index: 1000;
}
.timeline-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #3b5998, #28a745);
  width: 0%;
  transition: width 0.1s ease;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  .timeline-item::before {
    left: 22px;
  }
  .timeline-item:hover .timeline-content {
    transform: translateX(2px);
  }
  .timeline-item:hover::before {
    transform: scale(1.1);
  }
  .timeline-year {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .timeline-year-circle {
    left: 5px;
    width: 50px;
    height: 50px;
  }
  .timeline-year-circle span {
    font-size: 10px;
  }
  .timeline-year-circle:hover {
    transform: scale(1.05);
  }
  .timeline-content {
    margin-left: 70px;
    padding: 15px;
  }
  .timeline-content::before {
    left: -8px;
    border-right-width: 8px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  .timeline-text h4 {
    font-size: 16px;
  }
  .timeline-text p {
    font-size: 13px;
  }
  .timeline-image img {
    max-width: 150px;
  }
  .timeline-image:hover {
    transform: translateY(-1px);
  }
  .timeline-image:hover img {
    transform: scale(1.02);
  }
}
.product-detail-wrapper {
  padding: 40px 0;
}
.product-detail-wrapper .product-gallery {
  margin-bottom: 40px;
  position: relative;
}
.product-detail-wrapper .product-gallery .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.product-detail-wrapper .product-gallery .main-image-container .product-main-image {
  position: relative;
  cursor: zoom-in;
}
.product-detail-wrapper .product-gallery .main-image-container .product-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-detail-wrapper .product-gallery .main-image-container .product-main-image img:hover {
  transform: scale(1.05);
}
.product-detail-wrapper .product-gallery .main-image-container .product-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.product-detail-wrapper .product-gallery .main-image-container .product-badges .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}
.product-detail-wrapper .product-gallery .main-image-container .product-badges .badge.badge-sale {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
}
.product-detail-wrapper .product-gallery .main-image-container .product-badges .badge.badge-new {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
  color: white;
}
.product-detail-wrapper .product-gallery .main-image-container .product-badges .badge.badge-hot {
  background: linear-gradient(135deg, #ffa726, #ff7043);
  color: white;
}
.product-detail-wrapper .product-gallery .main-image-container .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detail-wrapper .product-gallery .main-image-container .zoom-icon:hover {
  background: white;
  transform: scale(1.1);
}
.product-detail-wrapper .product-gallery .main-image-container .zoom-icon i {
  color: #333;
  font-size: 16px;
}
.product-detail-wrapper .product-gallery .thumbnail-slider {
  margin-top: 20px;
  position: relative;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-container {
  overflow: hidden;
  border-radius: 8px;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-container .thumbnail-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 12px;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-container .thumbnail-track .thumbnail-item {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-container .thumbnail-track .thumbnail-item:hover {
  border-color: #ddd;
  transform: translateY(-2px);
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-container .thumbnail-track .thumbnail-item.active {
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-container .thumbnail-track .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav.prev {
  left: -16px;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav.next {
  right: -16px;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav i {
  color: #333;
  font-size: 12px;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav.disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}
.product-detail-wrapper .product-info {
  padding-left: 30px;
}
.product-detail-wrapper .product-info .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
}
.product-detail-wrapper .product-info .breadcrumb .breadcrumb-item {
  color: #666;
}
.product-detail-wrapper .product-info .breadcrumb .breadcrumb-item.active {
  color: #333;
  font-weight: 500;
}
.product-detail-wrapper .product-info .breadcrumb .breadcrumb-item a {
  color: #007bff;
  text-decoration: none;
}
.product-detail-wrapper .product-info .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.product-detail-wrapper .product-info .product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
  line-height: 1.3;
}
.product-detail-wrapper .product-info .product-rating-availability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 15px;
}
.product-detail-wrapper .product-info .product-rating-availability .rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-detail-wrapper .product-info .product-rating-availability .rating-section .stars {
  color: #ffc107;
  margin-right: 8px;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}
.product-detail-wrapper .product-info .product-rating-availability .rating-section .stars i:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.product-detail-wrapper .product-info .product-rating-availability .rating-section .rating-text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin-right: 15px;
  background: linear-gradient(135deg, #ffc107, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-detail-wrapper .product-info .product-rating-availability .rating-section .review-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  background: rgba(108, 117, 125, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.product-detail-wrapper .product-info .product-rating-availability .rating-section .review-link:hover {
  background: rgba(108, 117, 125, 0.2);
  color: #495057;
  text-decoration: none;
}
.product-detail-wrapper .product-info .product-rating-availability .availability {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border-radius: 20px;
  border: 1px solid #b8dacc;
  gap: 8px;
}
.product-detail-wrapper .product-info .product-rating-availability .availability .status-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}
.product-detail-wrapper .product-info .product-rating-availability .availability .status-icon.in-stock {
  background: #155724;
}
.product-detail-wrapper .product-info .product-rating-availability .availability .status-icon.out-stock {
  background: #dc3545;
}
.product-detail-wrapper .product-info .product-rating-availability .availability .status-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail-wrapper .product-info .product-rating-availability .availability .status-text.in-stock {
  color: #155724;
}
.product-detail-wrapper .product-info .product-rating-availability .availability .status-text.out-stock {
  color: #dc3545;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.product-detail-wrapper .product-info .price-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #007bff;
}
.product-detail-wrapper .product-info .price-section .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product-detail-wrapper .product-info .price-section .price-row:last-child {
  margin-bottom: 0;
}
.product-detail-wrapper .product-info .price-section .current-price {
  font-size: 32px;
  font-weight: 800;
  color: #007bff;
  margin-right: 15px;
}
.product-detail-wrapper .product-info .price-section .old-price {
  font-size: 20px;
  color: #6c757d;
  text-decoration: line-through;
  margin-right: 10px;
}
.product-detail-wrapper .product-info .price-section .discount-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.product-detail-wrapper .product-info .price-section .price-note {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}
.product-detail-wrapper .product-info .product-highlights {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product-detail-wrapper .product-info .product-highlights .highlights-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  display: flex;
  align-items: center;
}
.product-detail-wrapper .product-info .product-highlights .highlights-title:before {
  content: "\f005";
  font-family: FontAwesome;
  color: #ffc107;
  margin-right: 10px;
  font-size: 16px;
}
.product-detail-wrapper .product-info .product-highlights .highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #495057;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 8px;
  border-left: 4px solid #28a745;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  text-shadow: 0 1px 2px rgba(40, 167, 69, 0.3);
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  transition: width 0.3s ease;
  z-index: 1;
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
  background: rgba(40, 167, 69, 0.08);
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li:hover:after {
  width: 100%;
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li:hover:before {
  transform: scale(1.2);
  color: #20c997;
}
.product-detail-wrapper .product-info .product-highlights .highlights-list li:last-child {
  margin-bottom: 0;
}
.product-detail-wrapper .product-info .product-short-desc {
  margin-bottom: 25px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.product-detail-wrapper .product-info .product-variants {
  margin-bottom: 25px;
}
.product-detail-wrapper .product-info .product-variants .variant-group {
  margin-bottom: 20px;
}
.product-detail-wrapper .product-info .product-variants .variant-group .variant-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.product-detail-wrapper .product-info .product-variants .variant-group .variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-detail-wrapper .product-info .product-variants .variant-group .variant-options .variant-option {
  padding: 8px 16px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}
.product-detail-wrapper .product-info .product-variants .variant-group .variant-options .variant-option:hover {
  border-color: #007bff;
  background: #000000;
}
.product-detail-wrapper .product-info .product-variants .variant-group .variant-options .variant-option.selected {
  border-color: #007bff;
  background: #007bff;
  color: white;
}
.product-detail-wrapper .product-info .product-actions {
  margin-bottom: 25px;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector .btn-quantity {
  background: #f8f9fa;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector .btn-quantity:hover {
  background: #e9ecef;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector .btn-quantity:active {
  background: #dee2e6;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector .quantity-input {
  width: 60px;
  text-align: center;
  border: none;
  padding: 12px 8px;
  font-weight: 600;
  background: white;
  /* Hide spinner arrows */
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector .quantity-input::-webkit-outer-spin-button, .product-detail-wrapper .product-info .product-actions .quantity-cart-row .quantity-selector .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .btn-add-to-cart {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .btn-add-to-cart i {
  margin-right: 8px;
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .btn-add-to-cart:active {
  transform: translateY(0);
}
.product-detail-wrapper .product-info .product-actions .quantity-cart-row .btn-add-to-cart.loading {
  opacity: 0.8;
  cursor: not-allowed;
}
.product-detail-wrapper .product-info .product-actions .action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-detail-wrapper .product-info .product-actions .action-buttons .btn-buy-now {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.product-detail-wrapper .product-info .product-actions .action-buttons .btn-buy-now i {
  margin-right: 8px;
}
.product-detail-wrapper .product-info .product-actions .action-buttons .btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  color: white;
  text-decoration: none;
}
.product-detail-wrapper .product-info .product-actions .additional-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.product-detail-wrapper .product-info .product-actions .additional-actions .action-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detail-wrapper .product-info .product-actions .additional-actions .action-btn i {
  margin-right: 6px;
  font-size: 16px;
}
.product-detail-wrapper .product-info .product-actions .additional-actions .action-btn span {
  font-weight: 500;
}
.product-detail-wrapper .product-info .product-actions .additional-actions .action-btn:hover {
  border-color: #007bff;
  color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}
.product-detail-wrapper .product-info .product-actions .additional-actions .action-btn.active {
  border-color: #007bff;
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
}
.product-detail-wrapper .product-info .product-meta {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.product-detail-wrapper .product-info .product-meta .meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}
.product-detail-wrapper .product-info .product-meta .meta-item:last-child {
  border-bottom: none;
}
.product-detail-wrapper .product-info .product-meta .meta-item .meta-label {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}
.product-detail-wrapper .product-info .product-meta .meta-item .meta-value {
  color: #6c757d;
  font-size: 14px;
}
.product-detail-wrapper .product-info .product-meta .meta-item .meta-value a {
  color: #007bff;
  text-decoration: none;
}
.product-detail-wrapper .product-info .product-meta .meta-item .meta-value a:hover {
  text-decoration: underline;
}
.product-detail-wrapper .product-tabs {
  margin: 40px 0;
}
.product-detail-wrapper .product-tabs .nav-tabs {
  border-bottom: 1px solid #ddd;
}
.product-detail-wrapper .product-tabs .nav-tabs .nav-item {
  margin-bottom: -1px;
}
.product-detail-wrapper .product-tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: #666;
  font-weight: 500;
  padding: 10px 20px;
}
.product-detail-wrapper .product-tabs .nav-tabs .nav-link.active {
  color: #333;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}
.product-detail-wrapper .product-tabs .nav-tabs .nav-link:hover:not(.active) {
  border-color: #eee #eee #ddd;
  background-color: #f9f9f9;
}
.product-detail-wrapper .product-tabs .tab-content {
  padding: 20px 0;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
  display: inline-block;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane p {
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 15px;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane ul li strong {
  color: #007bff;
  font-weight: 600;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table th, .product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table th {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table td {
  font-size: 14px;
  color: #495057;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table td:first-child {
  font-weight: 600;
  color: #333;
  background: #f8f9fa;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table tr:last-child th, .product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table tr:last-child td {
  border-bottom: none;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .spec-table tr:hover {
  background: #f8f9fa;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .highlight-box {
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  border-left: 4px solid #007bff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .highlight-box h4 {
  color: #007bff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .highlight-box h4 i {
  margin-right: 8px;
  font-size: 18px;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .highlight-box p {
  margin: 0;
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid .feature-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid .feature-item .feature-icon i {
  color: white;
  font-size: 20px;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid .feature-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.product-detail-wrapper .product-tabs .tab-content .tab-pane .feature-grid .feature-item p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}
.product-detail-wrapper .product-technology {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 40px;
  margin: 40px 0;
  border-radius: 16px;
  border: 1px solid #dee2e6;
}
.product-detail-wrapper .product-technology .tech-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}
.product-detail-wrapper .product-technology .tech-section h3 i {
  margin-right: 12px;
  color: #007bff;
  font-size: 24px;
}
.product-detail-wrapper .product-technology .tech-section .ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail-wrapper .product-technology .tech-section .ingredient-list li {
  background: white;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.product-detail-wrapper .product-technology .tech-section .ingredient-list li strong {
  color: #007bff;
  font-weight: 600;
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature .tech-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature .tech-icon i {
  color: white;
  font-size: 20px;
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature .tech-content {
  flex: 1;
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature .tech-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.product-detail-wrapper .product-technology .tech-section .tech-features .tech-feature .tech-content p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.product-detail-wrapper .related-products {
  margin: 50px 0;
}
.product-detail-wrapper .related-products .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.product-detail-wrapper .related-products .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}
.product-detail-wrapper .related-products .section-header h2:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 2px;
}
.product-detail-wrapper .related-products .section-header p {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}
.product-detail-wrapper .related-products .product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.product-detail-wrapper .related-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.product-detail-wrapper .related-products .product-card .product-image {
  position: relative;
  overflow: hidden;
}
.product-detail-wrapper .related-products .product-card .product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-detail-wrapper .related-products .product-card .product-image:hover img {
  transform: scale(1.1);
}
.product-detail-wrapper .related-products .product-card .product-image .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.product-detail-wrapper .related-products .product-card .product-image .product-overlay .overlay-buttons {
  display: flex;
  gap: 12px;
}
.product-detail-wrapper .related-products .product-card .product-image .product-overlay .overlay-buttons .btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detail-wrapper .related-products .product-card .product-image .product-overlay .overlay-buttons .btn:hover {
  background: #007bff;
  color: white;
  transform: scale(1.1);
}
.product-detail-wrapper .related-products .product-card .product-image:hover .product-overlay {
  opacity: 1;
}
.product-detail-wrapper .related-products .product-card .product-image .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}
.product-detail-wrapper .related-products .product-card .product-image .product-badge.badge-new {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
}
.product-detail-wrapper .related-products .product-card .product-info {
  padding: 20px;
}
.product-detail-wrapper .related-products .product-card .product-info .product-category {
  font-size: 12px;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-detail-wrapper .related-products .product-card .product-info .product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
  line-height: 1.4;
}
.product-detail-wrapper .related-products .product-card .product-info .product-title:hover {
  color: #007bff;
}
.product-detail-wrapper .related-products .product-card .product-info .product-excerpt {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-detail-wrapper .related-products .product-card .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.product-detail-wrapper .related-products .product-card .product-info .product-rating .stars {
  color: #ffc107;
  margin-right: 8px;
  font-size: 14px;
}
.product-detail-wrapper .related-products .product-card .product-info .product-rating .rating-count {
  color: #6c757d;
  font-size: 12px;
}
.product-detail-wrapper .related-products .product-card .product-info .product-price {
  display: flex;
  align-items: center;
}
.product-detail-wrapper .related-products .product-card .product-info .product-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: #007bff;
  margin-right: 8px;
}
.product-detail-wrapper .related-products .product-card .product-info .product-price .old-price {
  font-size: 14px;
  color: #6c757d;
  text-decoration: line-through;
}

.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.zoom-modal.active {
  opacity: 1;
  visibility: visible;
}
.zoom-modal .zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.zoom-modal .zoom-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
}
.zoom-modal .zoom-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.zoom-modal .zoom-container .zoom-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.zoom-modal .zoom-container .zoom-close:hover {
  color: #ff6b6b;
  transform: scale(1.1);
}

.product-detail-wrapper .product-actions .btn {
  position: relative;
  overflow: hidden;
}
.product-detail-wrapper .product-actions .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.product-detail-wrapper .product-actions .btn:hover:before {
  left: 100%;
}
.product-detail-wrapper .product-variants .variant-option {
  position: relative;
}
.product-detail-wrapper .product-variants .variant-option:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  transition: width 0.3s ease;
  z-index: -1;
}
.product-detail-wrapper .product-variants .variant-option:hover:before {
  width: 100%;
}
.product-detail-wrapper .product-variants .variant-option:hover {
  color: white;
}
.product-detail-wrapper .additional-actions .action-btn:hover {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1199.98px) {
  .product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-item {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 991.98px) {
  .product-detail-wrapper .product-info {
    padding-left: 0;
    margin-top: 40px;
  }
  .product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav {
    width: 35px;
    height: 35px;
  }
  .product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav i {
    font-size: 14px;
  }
  .product-detail-wrapper .product-variants .variant-options .variant-option {
    padding: 8px 16px;
    font-size: 13px;
  }
  .product-detail-wrapper .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-detail-wrapper .product-actions .quantity-selector {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .related-products .section-header h2 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .product-detail-wrapper .product-gallery .thumbnail-slider {
    margin-top: 15px;
  }
  .product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-item {
    width: 60px;
    height: 60px;
  }
  .product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-nav {
    display: none;
  }
  .product-detail-wrapper .product-info .breadcrumb {
    font-size: 12px;
  }
  .product-detail-wrapper .product-info .breadcrumb a,
  .product-detail-wrapper .product-info .breadcrumb span {
    padding: 4px 8px;
  }
  .product-detail-wrapper .product-info .product-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .product-detail-wrapper .product-info .price-section .current-price {
    font-size: 24px;
  }
  .product-detail-wrapper .product-info .price-section .old-price {
    font-size: 16px;
  }
  .product-detail-wrapper .product-info .price-section .discount-badge {
    font-size: 12px;
    padding: 4px 8px;
  }
  .product-detail-wrapper .product-actions .quantity-selector .btn-quantity {
    padding: 10px 12px;
  }
  .product-detail-wrapper .product-actions .quantity-selector .quantity-input {
    width: 50px;
  }
  .product-detail-wrapper .product-actions .action-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .product-detail-wrapper .product-actions .action-buttons .btn-buy-now {
    width: 100%;
    justify-content: center;
  }
  .product-detail-wrapper .product-actions .additional-actions {
    justify-content: center;
    margin-top: 20px;
  }
  .product-detail-wrapper .product-tabs .nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
  .product-detail-wrapper .related-products {
    margin: 30px 0;
  }
  .product-detail-wrapper .related-products .section-header {
    margin-bottom: 25px;
  }
  .product-detail-wrapper .related-products .section-header h2 {
    font-size: 24px;
  }
  .product-detail-wrapper .related-products .product-card {
    margin-bottom: 20px;
  }
  .product-detail-wrapper .related-products .product-card .product-image img {
    height: 200px;
  }
  .product-detail-wrapper .related-products .product-card .product-info {
    padding: 15px;
  }
  .product-detail-wrapper .related-products .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .product-detail-wrapper .related-products [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575.98px) {
  .product-detail-wrapper .product-gallery .main-image-container .product-main-image img {
    height: 300px;
  }
  .product-detail-wrapper .product-gallery .thumbnail-slider .thumbnail-item {
    width: 50px;
    height: 50px;
  }
  .product-detail-wrapper .product-info .product-title {
    font-size: 20px;
  }
  .product-detail-wrapper .product-info .product-highlights .highlights-list li {
    font-size: 12px;
  }
  .product-detail-wrapper .product-info .price-section .current-price {
    font-size: 20px;
  }
  .product-detail-wrapper .product-variants .variant-options .variant-option {
    padding: 6px 12px;
    font-size: 12px;
  }
  .product-detail-wrapper .product-tabs .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .product-detail-wrapper .product-tabs .nav-tabs .nav-item {
    flex: 0 0 auto;
  }
  .product-detail-wrapper .product-tabs .nav-tabs .nav-link {
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }
  .product-detail-wrapper .product-meta .meta-row {
    padding: 8px 0;
  }
  .product-detail-wrapper .product-meta .meta-row .meta-label {
    font-size: 12px;
  }
  .product-detail-wrapper .product-meta .meta-row .meta-value {
    font-size: 12px;
  }
  .related-products .section-header h2 {
    font-size: 20px;
  }
  .related-products .section-header p {
    font-size: 14px;
  }
  .related-products .product-card .product-image img {
    height: 180px;
  }
  .related-products .product-card .product-image .product-overlay .overlay-buttons .btn {
    width: 36px;
    height: 36px;
  }
  .related-products .product-card .product-info {
    padding: 12px;
  }
  .related-products .product-card .product-info .product-title {
    font-size: 14px;
  }
  .related-products .product-card .product-info .product-excerpt {
    font-size: 12px;
  }
  .related-products .product-card .product-info .product-price .current-price {
    font-size: 16px;
  }
  .related-products .product-card .product-info .product-price .old-price {
    font-size: 12px;
  }
}
.archive-product {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #f8f9fa;
  margin-top: -15px;
}
.archive-product .breadcrumb-section {
  background: #000000;
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
}
.archive-product .breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/family-bg.jpg") center/cover;
  opacity: 0.3;
  z-index: 1;
}
.archive-product .breadcrumb-section .breadcrumb {
  color: #fff;
  padding-bottom: 10px;
  border-color: #4b535a;
}
.archive-product .breadcrumb-section .breadcrumb a {
  color: #fff;
}
.archive-product .breadcrumb-section .container {
  position: relative;
  z-index: 2;
}
.archive-product .breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 15px;
}
.archive-product .breadcrumb-section .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.archive-product .breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.archive-product .breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}
.archive-product .breadcrumb-section .breadcrumb .breadcrumb-item.active {
  color: #fff;
}
.archive-product .breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.6);
}
.archive-product .breadcrumb-section .page-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.archive-product .product-sidebar {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.archive-product .product-sidebar .filter-widget {
  border-bottom: 1px solid #eee;
}
.archive-product .product-sidebar .filter-widget:last-child {
  border-bottom: none;
}
.archive-product .product-sidebar .filter-widget .widget-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  padding: 20px 20px 0 20px;
}
.archive-product .product-sidebar .filter-widget .search-filter {
  padding: 20px;
}
.archive-product .product-sidebar .filter-widget .search-filter .search-btn {
  background: #007bff;
  border: none;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.archive-product .product-sidebar .filter-widget .search-filter .search-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}
.archive-product .product-sidebar .filter-widget .price-filter {
  padding: 0 20px 20px 20px;
}
.archive-product .product-sidebar .filter-widget .price-filter .price-range {
  margin-bottom: 15px;
}
.archive-product .product-sidebar .filter-widget .price-filter .price-range .form-range {
  width: 100%;
  margin-bottom: 10px;
}
.archive-product .product-sidebar .filter-widget .price-filter .price-range .form-range::-webkit-slider-thumb {
  background: #007bff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.archive-product .product-sidebar .filter-widget .price-filter .price-range .form-range::-moz-range-thumb {
  background: #007bff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.archive-product .product-sidebar .filter-widget .price-filter .price-range .price-values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}
.archive-product .product-sidebar .filter-widget .price-filter .price-range .price-values .min-price,
.archive-product .product-sidebar .filter-widget .price-filter .price-range .price-values .max-price {
  font-weight: 500;
}
.archive-product .product-sidebar .filter-widget .price-filter .filter-btn {
  border: 1px solid #007bff;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.archive-product .product-sidebar .filter-widget .price-filter .filter-btn:hover {
  background: #007bff;
  color: #fff;
}
.archive-product .product-sidebar .filter-widget .category-list {
  list-style: none;
  padding: 0 20px 20px 20px;
  margin: 0;
}
.archive-product .product-sidebar .filter-widget .category-list li {
  border-bottom: 1px solid #f0f0f0;
}
.archive-product .product-sidebar .filter-widget .category-list li:last-child {
  border-bottom: none;
}
.archive-product .product-sidebar .filter-widget .category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.archive-product .product-sidebar .filter-widget .category-list li a:hover {
  color: #007bff;
}
.archive-product .product-sidebar .filter-widget .category-list li a .arrow {
  color: #ccc;
  font-size: 12px;
}
.archive-product .products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.archive-product .products-header .results-count {
  font-size: 14px;
  color: #666;
}
.archive-product .products-header .sort-dropdown select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  background: #fff;
  min-width: 200px;
}
.archive-product .products-header .sort-dropdown select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.archive-product .products-grid .product-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.archive-product .products-grid .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.archive-product .products-grid .product-item .product-thumbnail {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.archive-product .products-grid .product-item .product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive-product .products-grid .product-item .product-thumbnail:hover img {
  transform: scale(1.1);
}
.archive-product .products-grid .product-item .product-info {
  padding: 20px;
}
.archive-product .products-grid .product-item .product-info .product-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.archive-product .products-grid .product-item .product-info .product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-product .products-grid .product-item .product-info .product-title a:hover {
  color: #007bff;
}
.archive-product .products-grid .product-item .product-info .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}
.archive-product .products-grid .product-item .product-info .product-rating .stars {
  color: #ffc107;
  font-size: 14px;
}
.archive-product .pagination-wrapper {
  margin-top: 40px;
  padding: 30px 0;
}
.archive-product .pagination-wrapper .pagination .page-item {
  margin: 0 3px;
}
.archive-product .pagination-wrapper .pagination .page-item .page-link {
  border: 1px solid #dee2e6;
  color: #007bff;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.archive-product .pagination-wrapper .pagination .page-item .page-link:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  transform: translateY(-1px);
}
.archive-product .pagination-wrapper .pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.archive-product .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}
.archive-product .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
  cursor: not-allowed;
}
.archive-product .pagination-wrapper .pagination .page-item.disabled .page-link:hover {
  background-color: #fff;
  border-color: #dee2e6;
  color: #6c757d;
  transform: none;
}
@media (max-width: 991px) {
  .archive-product .breadcrumb-section {
    padding: 40px 0;
  }
  .archive-product .breadcrumb-section .page-title {
    font-size: 2rem;
  }
  .archive-product .product-sidebar {
    margin-bottom: 30px;
  }
  .archive-product .products-header {
    flex-direction: column;
    gap: 15px;
  }
  .archive-product .products-header .sort-dropdown select {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .archive-product .breadcrumb-section {
    padding: 30px 0;
  }
  .archive-product .breadcrumb-section .page-title {
    font-size: 1.75rem;
  }
  .archive-product .products-grid .product-item .product-thumbnail {
    height: 180px;
  }
  .archive-product .products-grid .product-item .product-info {
    padding: 15px;
  }
  .archive-product .products-grid .product-item .product-info .product-title {
    font-size: 15px;
  }
  .archive-product .products-grid .product-item .product-info .product-price {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .archive-product {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .archive-product .breadcrumb-section {
    padding: 25px 0;
  }
  .archive-product .breadcrumb-section .page-title {
    font-size: 1.5rem;
  }
  .archive-product .products-header {
    padding: 15px;
  }
  .archive-product .products-header .results-count {
    font-size: 13px;
  }
  .archive-product .products-grid .product-item .product-thumbnail {
    height: 160px;
  }
  .archive-product .products-grid .product-item .product-info {
    padding: 12px;
  }
  .archive-product .products-grid .product-item .product-info .product-title {
    font-size: 14px;
  }
  .archive-product .products-grid .product-item .product-info .product-price {
    font-size: 15px;
  }
}

.archive-description {
  margin: 15px auto;
  font-size: 15px;
}
@media (max-width: 575px) {
  .archive-description {
    max-width: 100%;
  }
}

.list-post-cat {
  margin-top: 15px;
}
.list-post-cat .post {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e8ee;
}
.list-post-cat .post:last-child {
  border: none;
}
.list-post-cat .post:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 575px) {
  .list-post-cat .post:after {
    content: "";
    display: table;
    clear: both;
  }
}
.list-post-cat .post-title {
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .list-post-cat .post-title {
    font-size: 15px;
  }
}
.list-post-cat .post-title a {
  color: #000000;
}
.list-post-cat .post-title a:hover {
  color: #28a745;
}
.list-post-cat .post-thumbnail {
  float: left;
  width: 290px;
  margin-right: 10px;
  height: 175px;
}
@media (max-width: 575px) {
  .list-post-cat .post-thumbnail {
    width: 150px;
    height: 100px;
    float: left;
    margin-right: 10px;
  }
}
.list-post-cat .post-excerpt {
  font-size: 15px;
}
@media (max-width: 575px) {
  .list-post-cat .post-excerpt {
    display: none;
  }
}

.featured-post-cat {
  padding-bottom: 15px;
}
.featured-post-cat .post-thumbnail {
  margin-bottom: 15px;
  height: 200px;
}
.featured-post-cat .post-title {
  font-size: 18px;
  font-weight: 700;
}
.featured-post-cat .post-title a {
  color: #000000;
}
.featured-post-cat .post-title a:hover {
  color: #28a745;
}
@media (max-width: 575px) {
  .featured-post-cat .post {
    margin-bottom: 15px;
  }
}

.single-page-container {
  background-color: #fff;
  padding-top: 30px;
  border-radius: 10px;
}

body.single {
  color: #000000;
}

.single-page-title {
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .single-page-title {
    font-size: 26px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    line-height: 1.4;
  }
}

.col-thumbnail .single-thumbnail {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  max-height: 280px;
}
.col-thumbnail .single-thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 50% 50%;
  -o-object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.meta-header .meta-item {
  margin-right: 30px;
  display: block;
}
.meta-header .text {
  color: #748194;
}
.meta-header .value {
  display: block;
  font-weight: 700;
}

.single-post-meta .author p {
  margin-bottom: 0;
}
.single-post-meta .author p span {
  margin-right: 5px;
}
.single-post-meta .author p a {
  font-weight: bold;
}

.single-post-meta {
  background-color: #f9f9f9;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 15px;
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 575px) {
  .single-post-meta {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-post-meta .avartar {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  overflow: hidden;
}
.single-post-meta .author-link {
  color: #28a745;
  font-weight: 700;
  display: block;
  margin-left: 10px;
}
.single-post-meta .author-link:hover {
  color: #0073b6;
}
@media (max-width: 575px) {
  .single-post-meta .author-link {
    min-width: 135px;
  }
}
.single-post-meta .col-md-6 {
  display: flex;
  align-items: center;
}
.single-post-meta .update-time,
.single-post-meta .comment-count {
  margin-left: 5px;
  font-size: 13px;
  color: #888888;
}
.single-post-meta .ml-auto {
  margin-top: 5px;
  padding-top: 10px;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  .single-post-meta .ml-auto {
    margin-top: 0;
    justify-content: flex-end;
    border-top: 1px dashed #e1e8ee;
    padding-top: 5px;
  }
}
.single-post-meta .ml-auto .review {
  text-align: left;
  margin-left: auto;
}
@media (max-width: 575px) {
  .single-post-meta .ml-auto .review {
    margin-left: 0px;
    margin-right: auto;
  }
}
.single-post-meta .review-title {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1;
}
.single-post-meta .review-star {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 575px) {
  .single-post-meta .review-star {
    text-align: right;
  }
}
.single-post-meta .review-star li {
  display: inline-block;
  color: #fbb800;
  font-size: 12px;
}

.single-post-meta-bottom {
  padding: 5px 10px;
}
.single-post-meta-bottom .social-share-button {
  width: 30%;
  border: none;
}

@media (max-width: 575px) {
  .single-post-meta .ml-auto .review {
    margin-left: 0;
  }
}
.entry {
  line-height: 1.8;
  font-size: 16.5px;
}
.entry > p:first-child {
  padding-left: 20px;
  border-left: 2px solid #66ad44;
  margin-bottom: 20px;
}
.entry ul,
.entry ol {
  padding-left: 30px;
}
.entry blockquote {
  padding: 15px;
  background: #e8e8e8;
}
.entry blockquote ul {
  list-style: square;
}
.entry blockquote ul li {
  margin-bottom: 8px;
}
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {
  font-weight: 700;
}
.entry h1,
.entry .h1 {
  font-size: 26px;
}
.entry h2,
.entry .h2 {
  font-size: 24px;
}
.entry h3,
.entry .h3 {
  font-size: 20px;
}
.entry h4,
.entry .h4 {
  font-size: 16px;
}
.entry h5,
.entry .h5 {
  font-size: 14px;
}
.entry h6,
.entry .h6 {
  font-size: 13px;
}
.entry iframe {
  max-width: 100%;
}

.entry blockquote {
  position: relative;
  padding: 16px;
  margin: 16px 0;
  background: #f1f8fe url(../images/bg-quote.svg) 100% 100% no-repeat;
  border-radius: 6px;
  padding-top: 42px;
}

.entry blockquote:before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: block;
  width: 18px;
  height: 18px;
  content: url(../images/icon-quote.svg);
}

.entry ul,
.entry ol {
  padding-left: 30px;
}

.entry table td {
  padding: 5px;
}

.entry {
  word-break: break-word;
}

.entry figure {
  max-width: 100% !important;
}
.entry .wp-caption-text {
  font-size: 14px;
}

.related-post {
  padding-top: 5px;
  border-top: 2px solid #28a745;
}
.related-post .related-title {
  text-transform: uppercase;
  font-size: 20px;
  color: #28a745;
  font-weight: 700;
  margin-bottom: 20px;
}
.related-post .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .related-post .row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .related-post .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .related-post .row {
    grid-template-columns: 1fr;
  }
}
.related-post .post {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.related-post .post .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.related-post .post-thumbnail {
  width: 100%;
  height: 150px;
  margin-right: 0;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 8px;
}
.related-post .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-post .post-thumbnail img:hover {
  transform: scale(1.05);
}
.related-post .post-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .related-post .post-title {
    font-size: 15px;
  }
}
.related-post .post-title a {
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-post .post-title a:hover {
  color: #124E78;
}
.related-post .post-excerpt {
  font-size: 14px;
  color: #748194;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}
@media (max-width: 575px) {
  .related-post .post-excerpt {
    -webkit-line-clamp: 2;
  }
}

.tag-s-title {
  font-weight: 700;
  display: inline-block;
}

.post-tag {
  list-style: none;
  padding-left: 0;
}
.post-tag li {
  display: inline-block;
  list-style: none;
  font-size: 14px;
}
.post-tag a {
  color: #748194;
  border: 1px solid #e8e8e8;
  display: block;
  margin: 5px 3px;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 13px;
}
.post-tag a:hover {
  background-color: #28a745;
  color: #ffffff;
  border-color: #28a745;
}

.sticky-after-content {
  background-color: #eff8ff;
  border-radius: 4px;
  padding: 15px;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  margin-bottom: 30px;
}
.sticky-after-content .list-sticky-post {
  padding-left: 15px;
}
.sticky-after-content .list-sticky-post li {
  margin-bottom: 5px;
  font-size: 15px;
}
.sticky-after-content .list-sticky-post a {
  color: #000000;
}
.sticky-after-content .list-sticky-post a:hover {
  color: #124E78;
}

.entry .sticky-heading {
  font-weight: 700;
  color: #124E78;
  font-size: 16px;
  position: relative;
  margin-bottom: 10px;
}
.entry .sticky-heading:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #124E78;
  position: absolute;
  top: 0;
  left: -15px;
}

.entry .entry-title {
  position: relative;
}

.contact-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

body.contact-page main.page-content {
  background-color: #f8f9fa;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-form-wrapper .contact-form-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}
.contact-form-wrapper .contact-form-subtitle {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form .form-group label {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}
.contact-form .form-group .form-control {
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.contact-form .form-group .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}
.contact-form .form-group .form-control::placeholder {
  color: #adb5bd;
  font-size: 14px;
}
.contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-form .input-group .input-group-prepend .country-code {
  border-radius: 8px 0 0 8px;
  border-right: none;
  width: 80px;
  background-color: #f8f9fa;
}
.contact-form .input-group .form-control {
  border-radius: 0 8px 8px 0;
  border-left: none;
}
.contact-form .btn-send-message {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.contact-form .btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}
.contact-form .btn-send-message:active {
  transform: translateY(0);
}

.contact-info-wrapper {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 60px 40px;
  border-radius: 12px;
  color: #ffffff;
  height: fit-content;
}
.contact-info-wrapper .contact-info-header {
  margin-bottom: 40px;
}
.contact-info-wrapper .contact-info-header h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}
.contact-info-item .contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.contact-info-item .contact-info-icon i {
  font-size: 20px;
  color: #ffffff;
}
.contact-info-item .contact-info-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #ffffff;
}
.contact-info-item .contact-info-content p {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-social {
  margin-top: 40px;
}
.contact-social h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}
.contact-social .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-social .social-links .social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-social .social-links .social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #ffffff;
  text-decoration: none;
}
.contact-social .social-links .social-link i {
  font-size: 18px;
}
.contact-social .social-links .social-link.facebook:hover {
  background: #3b5998;
}
.contact-social .social-links .social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.contact-social .social-links .social-link.twitter:hover {
  background: #1da1f2;
}
.contact-social .social-links .social-link.snapchat:hover {
  background: #fffc00;
  color: #000000;
}
.contact-social .social-links .social-link.tiktok:hover {
  background: #000000;
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-section .row {
    gap: 30px;
  }
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px;
  }
  .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
  .contact-info-wrapper {
    margin-top: 30px;
  }
  .contact-info-wrapper .contact-info-header h3 {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .contact-section {
    padding: 30px 0;
  }
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 24px;
  }
  .contact-form-wrapper .contact-form-title {
    font-size: 22px;
  }
  .contact-form-wrapper .contact-form-subtitle {
    font-size: 15px;
  }
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  .contact-form .btn-send-message {
    width: 100%;
    padding: 16px;
  }
  .contact-info-item {
    padding: 16px;
    margin-bottom: 24px;
  }
  .contact-info-item .contact-info-icon {
    width: 44px;
    height: 44px;
  }
  .contact-info-item .contact-info-icon i {
    font-size: 18px;
  }
  .contact-social .social-links {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 20px;
  }
  .contact-form .input-group .input-group-prepend .country-code {
    width: 70px;
    font-size: 13px;
  }
}
.page-title span {
  color: #28a745;
}

.archive-description {
  font-size: 15px;
}

.archive-description .more-tag {
  padding: 5px 15px;
  text-align: center;
  margin: 15px auto;
  font-weight: 700;
  color: #fff;
  background: #fdba26;
  width: 180px;
  display: block;
  border-radius: 4px;
}

.archive-description .more-tag:hover {
  color: #fff;
}

.archive-description .more-tag ~ * {
  display: none;
}

.list-product-cat {
  margin-left: -5px;
  margin-right: -5px;
}

.single-product-gallery .list-gallery img {
  width: 100%;
  background-color: #e1e8ee;
  padding: 10px;
}
.single-product-gallery .list-gallery-thumb {
  margin-top: 10px;
}
.single-product-gallery .list-gallery-thumb .gallery-item {
  padding: 5px;
}
.single-product-gallery .list-gallery-thumb .gallery-item img {
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.5;
  border: 1px solid #ccc;
}
.single-product-gallery .list-gallery-thumb .slick-current img {
  opacity: 1;
  border-color: #28a745;
}

ul.rating {
  display: flex;
  list-style: none;
  padding-left: 0;
}
ul.rating li {
  margin-right: 3px;
  color: #ffc107;
  font-size: 12px;
}

.single-product-info .page-title {
  border-bottom: 1px dashed #f6f6f6;
  padding-bottom: 10px;
}
.single-product-info .product-excerpt {
  font-size: 15px;
}
@media (max-width: 575px) {
  .single-product-info .product-excerpt {
    display: none;
  }
}
@media (max-width: 575px) {
  .single-product-info .product-excerpt p {
    max-width: 100%;
  }
}

.tech-spec {
  margin: 15px 0 15px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  border: 1px solid #e1e8ee;
  padding: 10px;
  border-bottom: none;
  padding-bottom: 15px;
  background-color: #f1f1f1;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .tech-spec {
    display: none;
  }
}
.tech-spec .spec-header {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background-color: #e1e8ee;
  padding: 15px;
  margin: -10px -10px 10px -10px;
}
.tech-spec .spec-item {
  display: flex;
  padding: 5px 5px;
}
.tech-spec .spec-label {
  font-weight: 700;
  margin-right: 10px;
}
.tech-spec a {
  color: #03a9f4;
}

.cta-container .btn {
  width: 100%;
  background-color: #28a745;
  color: #ffffff;
}
@media (max-width: 575px) {
  .cta-container .btn {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.cta-container .btn:hover {
  background-color: #161e2c;
}
.cta-container .btn span {
  display: block;
}
.cta-container .btn .top {
  font-weight: 700;
  text-transform: uppercase;
}
.cta-container .btn .sub {
  font-size: 13px;
}
@media (max-width: 575px) {
  .cta-container .btn .sub {
    font-size: 11px;
  }
}
.cta-container .col-md-6:first-child {
  padding-right: 5px;
}
.cta-container .col-md-6:last-child {
  padding-left: 5px;
}
.cta-container .btn-guest,
.cta-container .btn-support {
  background-color: #000000;
  color: #ffffff;
}
.cta-container .btn-guest {
  background-color: #28a745;
}

.choose-us {
  border-radius: 8px;
  border: 1px solid #3db945;
  margin: 15px 0;
  padding: 15px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .choose-us {
    padding: 15px 0px;
  }
}
.choose-us .label {
  background-color: #3db945;
  display: block;
  width: 160px;
  padding: 5px 15px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  margin-top: -30px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .choose-us .label {
    margin-left: 15px;
    width: 180px;
  }
}
.choose-us .list-check {
  list-style: none;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.choose-us .list-check li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  width: 45%;
  margin-left: 10px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.85);
}
.choose-us .list-check li:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/check.png) no-repeat;
  background-size: 15px;
  background-position: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.list-product-related .col-md-3 {
  padding: 15px;
  border-radius: 4px;
  transition: all 0.3s;
}
.list-product-related .col-md-3:hover {
  box-shadow: -5px 20px 30px rgba(18, 78, 120, 0.08);
}
.list-product-related .product {
  margin-bottom: 5px;
}
.list-product-related .product-thumbnail {
  height: 190px;
}
@media (max-width: 575px) {
  .list-product-related .product-thumbnail {
    height: 130px;
  }
}
.list-product-related .product-excerpt {
  margin-bottom: 5px;
}
.list-product-related .product .readmore {
  opacity: 0;
  transition: all 0.3s;
}
.list-product-related .product:hover .readmore {
  opacity: 1;
}

.product-related .related-title {
  text-transform: uppercase;
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}
.product-related .list-product {
  margin-left: -5px;
  margin-right: -5px;
}

.single-product-entry-content {
  border-top: 2px solid #f6f6f6;
  padding-top: 15px;
}
@media (max-width: 575px) {
  .single-product-entry-content {
    margin-top: 15px;
  }
}

.modal-order .modal-title {
  text-transform: uppercase;
  font-weight: 700;
}
.modal-order label {
  font-weight: 700;
}
.modal-order .form-control {
  font-size: 14px;
}
.modal-order .btn-order {
  background-color: #28a745;
  color: #ffffff;
  font-weight: 700;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.modal-order .btn-order:hover {
  background-color: #000000;
}
.modal-order .btn-cancel {
  text-align: center;
  width: 100%;
  margin-top: 10px;
  color: #f33a3a;
  text-decoration: underline;
  font-size: 14px;
}

.price-option {
  display: flex;
  padding: 15px;
  align-items: center;
  line-height: 1;
}
.price-option .price-text {
  line-height: 1;
  font-size: 1rem;
  margin-right: 15px;
}
.price-option .price {
  font-weight: 700;
  font-size: 1.7rem;
  margin-right: 15px;
}
@media (max-width: 575px) {
  .price-option .price {
    font-size: 18px;
  }
}
.price-option .sale-price {
  color: #f33a3a;
}
.price-option .normal-price {
  color: #bdbdbd;
  text-decoration: line-through;
  font-size: 20px;
}
.price-option .normal-price sup {
  text-decoration: underline;
}

.product-filter {
  background-color: rgba(246, 246, 246, 0.18);
  padding: 15px;
  margin-bottom: 15px;
}
.product-filter label {
  font-weight: 700;
  margin-bottom: 0;
}
.product-filter .form-group {
  margin-bottom: 0;
}
.product-filter .form-control,
.product-filter .custom-select {
  font-size: 14px;
}
.product-filter .btn-filter {
  color: #ffffff;
  background-color: #124E78;
  width: 100%;
  font-weight: 700;
}
@media (max-width: 575px) {
  .product-filter .form-group {
    margin-bottom: 5px;
  }
  .product-filter .col-6:nth-child(2n) {
    padding-right: 5px;
  }
  .product-filter .col-6:nth-child(2n+1) {
    padding-left: 5px;
  }
  .product-filter .col-filter {
    display: none;
  }
  .product-filter .col-filter.show {
    display: flex;
    margin-top: 10px;
  }
  .product-filter .col-filter .col-label {
    display: none;
  }
}

.filter-mobile {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
}
.filter-mobile .label {
  color: #124E78;
  font-weight: 700;
}
.filter-mobile .icon {
  font-weight: 700;
  margin-left: auto;
  padding: 6px 15px;
  border: 1px solid #e1e8ee;
  background-color: #ffffff;
  border-radius: 3px;
}

/*archive-product-cat*/
.main-product-cat {
  margin: 30px 0;
}

.product-cat-item {
  position: relative;
}
.product-cat-item .product-cover {
  display: block;
  margin-bottom: 10px;
}
.product-cat-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}
.product-cat-title a {
  color: #000000;
}
.product-cat-title a:hover {
  color: #28a745;
}
.product-cat-thumbnail {
  display: block;
  margin-bottom: 15px;
}

.product-cat-item {
  margin-bottom: 30px;
}
.product-cat-item .list-child-cat {
  list-style: none;
  padding-left: 0;
}
.product-cat-item .list-child-cat li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px dotted #e1e8ee;
}
.product-cat-item .list-child-cat a {
  color: #000000;
}
.product-cat-item .list-child-cat a:hover {
  color: #28a745;
}
.product-cat-item .viewall {
  color: #28a745;
  font-size: 14px;
}
.product-cat-item .viewall:hover {
  color: #124E78;
}

.contact-page-header.archive-product {
  background-image: url(../images/page-title-s2.jpg);
  background-size: cover;
  background-position: top center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.list-product-wrap {
  margin-top: 30px;
}
.list-product-wrap .product {
  margin-bottom: 15px;
}

.other-attr {
  padding-left: 20px;
  list-style: square;
  margin-bottom: 0;
}
.other-attr li {
  margin: 3px 0;
}

.product-content-tab {
  background-color: #28a745;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  color: #ffffff;
  border-bottom: 2px solid #870904;
  position: relative;
  margin-bottom: 30px;
}
.product-content-tab::before {
  content: "";
  border-top: 10px solid #f7f9fb;
  border-right: 10px solid #f7f9fb;
  border-bottom: 10px solid #870904;
  border-left: 10px solid #870904;
  position: absolute;
  top: 0px;
  right: 0;
}
@media (max-width: 390px) {
  .product-content-tab {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .product-content-tab::before {
    display: none;
  }
}
.product-content-tab li {
  background-color: transparent;
}
.product-content-tab li button {
  background-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  border: none;
  box-sizing: none;
  font-size: 15px;
}
@media (max-width: 390px) {
  .product-content-tab li button {
    font-size: 13px;
  }
}
.product-content-tab li button i {
  margin-right: 5px;
}
.product-content-tab li button:hover {
  border-color: transparent;
}
.product-content-tab li .nav-link {
  border: none;
}
.product-content-tab li .nav-link:hover {
  border-color: transparent;
}
.product-content-tab li .active {
  border: none;
  border-radius: 0;
  background-color: #870904 !important;
  color: #ffffff !important;
  position: relative;
}
.product-content-tab li .active::before {
  content: "";
  border-top: 5px solid #28a745;
  border-right: 5px solid #28a745;
  border-bottom: 5px solid #870904;
  border-left: 5px solid #870904;
  position: absolute;
  top: 0px;
  right: 0;
}

.maps-item {
  border-bottom: 1px solid #e1e8ee;
  padding-top: 15px;
  padding-bottom: 15px;
}
.maps-item .name {
  font-weight: 700;
  margin-bottom: 5px;
}
.maps-item .maps-meta {
  font-size: 13px;
  margin-bottom: 5px;
}
.maps-item .maps-meta span {
  margin-right: 10px;
}
.maps-item .maps-meta span i {
  margin-right: 2px;
}
.maps-item .maps-meta a {
  color: #000000;
}
.maps-item .maps-meta a:hover {
  color: #28a745;
}
.maps-item .btn-direction {
  font-size: 13px;
  color: #ffffff;
  background-color: #28a745;
  padding-top: 3px;
  padding-bottom: 4px;
}
.maps-item .btn-direction i {
  margin-left: 3px;
}
.maps-item .btn-direction-2 {
  background-color: #000000;
  color: #ffffff;
  margin-left: 5px;
}

.list-maps {
  max-height: 515px;
  overflow-y: scroll;
  padding-right: 30px;
}

.if-maps {
  width: 100%;
}

.header-maps {
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e8ee;
  margin-bottom: 15px;
}
.header-maps .form-control {
  font-size: 13px;
}

.cta-container {
  margin-top: 30px;
  margin-bottom: 30px;
}
.cta-container .home-cta {
  background-size: 100% auto;
  border-radius: 30px;
  overflow: hidden;
  padding: 60px 0;
}
.cta-container .btn-contact {
  text-transform: uppercase;
  font-weight: 700;
  width: 200px;
  font-size: 16px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.post-thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 50% 50%;
  -o-object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.post-meta .post-cat {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}
.post-excerpt {
  color: rgba(20, 38, 59, 0.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}
.post-title {
  font-size: 15px;
  font-weight: 700;
}
.post-title a {
  color: #000000;
}
.post-title a:hover {
  color: #28a745;
}
.post-action {
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
}
.post-action .user-online {
  font-weight: bold;
  color: #f6f6f6;
  font-size: 13px;
}
.post .post-date {
  color: #14263B;
  display: block;
  margin-bottom: 5px;
}
.post .post-date span {
  font-weight: 700;
}
.post .post-date i {
  margin-right: 5px;
  color: #000;
}

.feed-post:after {
  content: "";
  display: table;
  clear: both;
}
.feed-post .post-thumbnail {
  width: 180px;
  height: 115px;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
}

.video-post .post-thumbnail {
  position: relative;
}

.video-post .post-thumbnail:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../images/icon-play.svg) no-repeat;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  background-size: 60px auto;
  z-index: 1;
}

.post .rating {
  color: #ffaa29;
  font-size: 12px;
}
.post .rating .number {
  color: #14263B;
  font-weight: 700;
}
.post .verifired {
  background-color: rgba(18, 78, 120, 0.1);
  padding: 4px 10px;
  color: #124E78;
  display: inline-flex;
  border-radius: 30px;
  font-weight: 700;
  align-items: center;
  text-transform: uppercase;
  font-size: 10px;
}
.post .verifired .check {
  width: 15px;
  height: 15px;
  background: url(../images/icon-check.svg) no-repeat;
  display: block;
  background-size: 15px;
  background-position: center;
  margin-right: 5px;
}
.post .post-meta-bottom {
  display: flex;
  align-items: center;
}

.post-row:after {
  content: "";
  display: table;
  clear: both;
}
.post-row .post-thumbnail {
  width: 140px;
  height: 85px;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
}

.big-post .post-thumbnail {
  margin-bottom: 10px;
}
.big-post .post-title {
  font-size: 20px;
}

.medium-post .post-thumbnail {
  margin-bottom: 10px;
}

.video-post .post-thumbnail {
  position: relative;
}

.video-post .post-thumbnail:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../images/icon-play.svg) no-repeat;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  background-size: 40px auto;
  z-index: 1;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
  font-style: italic;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/*# sourceMappingURL=maps/style.css.map */
