@charset "UTF-8";
.hero-banner {
  background: url("/img/backgrounds/banner_home.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: calc(100vh - 128px);
  overflow: hidden;
}
.hero-banner .logo_main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}
.hero-banner .logo_main.fade-out {
  opacity: 0;
}
.hero-banner .list_banner_lawyer {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1280px;
  height: 60vh;
  display: flex;
  align-items: flex-start; /* Căn mép trên */
  justify-content: center;
  pointer-events: none;
  /* Overlay bóng mờ */
  z-index: 210;
}
.hero-banner .list_banner_lawyer {
  position: relative;
}
.hero-banner .list_banner_lawyer .banner-lawyer-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 60%;
  pointer-events: none;
  z-index: 300;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 80%);
  filter: blur(18px);
  border-radius: 0 0 18% 18%;
  /* Tăng blur để làm mờ các góc, tránh lộ khối overlay rõ nét */
}
.hero-banner .banner-lawyer-item {
  position: absolute;
  /* Sẽ điều chỉnh top theo từng nhóm */
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}
.hero-banner .banner-lawyer-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.hero-banner .banner-lawyer-item[data-index="1"] {
  left: 50%;
  top: 0%;
  height: 100%;
  transform: translate(-50%, 0) scale(1);
  z-index: 150;
}
.hero-banner .banner-lawyer-item[data-index="2"] {
  left: 32%;
  top: 15%; /* thấp hơn ảnh 1 */
  height: 85%;
  transform: translate(-50%, 0) scale(1);
  z-index: 120;
}
.hero-banner .banner-lawyer-item[data-index="3"] {
  left: 68%;
  top: 15%; /* thấp hơn ảnh 1 */
  height: 85%;
  transform: translate(-50%, 0) scale(1);
  z-index: 120;
}
.hero-banner .banner-lawyer-item[data-index="4"] {
  left: 18%;
  top: 22%; /* thấp hơn ảnh 2,3 */
  height: 78%;
  transform: translate(-50%, 0) scale(1);
  z-index: 100;
}
.hero-banner .banner-lawyer-item[data-index="5"] {
  left: 82%;
  top: 22%; /* thấp hơn ảnh 2,3 */
  height: 78%;
  transform: translate(-50%, 0) scale(1);
  z-index: 100;
}
.hero-banner .banner-lawyer-item.show {
  opacity: 1;
}
.hero-banner .hero_content {
  position: absolute;
  left: 50%;
  bottom: 15vh;
  transform: translateX(-50%);
  z-index: 300;
  text-align: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-banner .hero_content .hero-title h3 {
  font-family: "Noto", serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-banner .hero_content .hero-title h4 {
  font-family: "Noto", serif;
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}
.hero-banner .hero_content .hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}
.hero-banner .hero_content .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 12px;
  padding: 0.85rem 2.2rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-banner .hero_content .btn:hover {
  flex-direction: row-reverse;
  transition: all 0.3s ease-in-out;
}
.hero-banner .hero_content .btn-red {
  background: #1e5128;
  color: #fff;
  height: 40px;
  animation: btnRedPulse 1.6s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-banner .hero_content .btn-red:hover {
  background: #941b0c;
  transform: scale(1.12);
  animation-play-state: paused;
}
@keyframes btnRedPulse {
  0% {
    background: #1e5128;
    transform: scale(1);
  }
  100% {
    background: #941b0c;
    transform: scale(1.12);
  }
}
.hero-banner .hero_content .btn-green {
  background: #1e5128;
  color: #fff;
}
.hero-banner .hero_content .btn-green:hover {
  background: #18592c;
}
.hero-banner .hero_content.show {
  opacity: 1;
  pointer-events: auto;
}

.block-service-categories .service-categories-container {
  display: flex;
  align-items: stretch;
}
.block-service-categories .service-category-item {
  flex: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
  height: 800px;
}
.block-service-categories .service-category-item:hover {
  flex: 1.15;
}
.block-service-categories .service-category-item:hover .category-background .category-overlay {
  opacity: 0.4;
}
.block-service-categories .service-category-item:hover .category-background img {
  filter: blur(24px) grayscale(1);
}
.block-service-categories .service-category-item:hover .category-content .category-submenu {
  opacity: 1;
  max-height: 500px;
}
.block-service-categories .service-category-item:hover ~ .service-category-item {
  flex: 0.85;
}
.block-service-categories .service-category-item .category-background {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.block-service-categories .service-category-item .category-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-service-categories .service-category-item .category-background .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  z-index: 1;
}
.block-service-categories .service-category-item .category-background:hover img {
  transform: scale(1.05);
}
.block-service-categories .service-category-item .category-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 3;
  overflow: hidden;
}
.block-service-categories .service-category-item .category-content .category-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.block-service-categories .service-category-item .category-content .category-name {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  max-width: 90%;
  flex-shrink: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-service-categories .service-category-item .category-content .category-submenu {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-service-categories .service-category-item .category-content .category-submenu .submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 440px;
}
.block-service-categories .service-category-item .category-content .category-submenu .submenu-list .submenu-item a {
  font-family: "Montserrat", serif;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.block-service-categories .service-category-item .category-content .category-submenu .submenu-list .submenu-item a:hover {
  border-bottom-color: #fff;
  transform: translateY(-3px);
}
.block-service-categories .service-category-item .category-content {
  z-index: 1;
  transition: z-index 0s 0.2s;
}
.block-service-categories .service-categories-container:hover .service-category-item .category-content {
  z-index: 0;
  transition-delay: 0s;
}
.block-service-categories .service-category-item:hover .category-content {
  z-index: 2 !important;
  transition-delay: 0s;
}
.block-service-categories .service-category-item .category-content {
  z-index: 1;
  transition: z-index 0s 0.2s;
}
.block-service-categories .service-categories-container:hover .service-category-item .category-content {
  z-index: 0;
  transition-delay: 0s;
}
.block-service-categories .service-category-item:hover .category-content {
  z-index: 2 !important;
  transition-delay: 0s;
}
@media (max-width: 1024px) {
  .block-service-categories {
    padding: 40px 15px;
  }
  .block-service-categories .service-categories-container {
    height: 300px;
    gap: 10px;
  }
  .block-service-categories .service-category-item .category-content .category-name {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .block-service-categories {
    padding: 30px 10px;
  }
  .block-service-categories .service-categories-container {
    height: 250px;
    flex-wrap: wrap;
    align-items: auto;
  }
  .block-service-categories .service-category-item {
    min-height: 150px;
  }
  .block-service-categories .service-category-item .category-content {
    gap: 12px;
  }
  .block-service-categories .service-category-item .category-content .category-icon {
    width: 40px;
    height: 40px;
  }
  .block-service-categories .service-category-item .category-content .category-name {
    font-size: 14px;
  }
  .block-service-categories .service-category-item .category-submenu .submenu-list {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .block-service-categories .service-categories-container {
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
  }
  .block-service-categories .service-category-item {
    flex: 0 1 calc(50% - 4px) !important;
    min-height: 120px;
  }
  .block-service-categories .service-category-item .category-content .category-name {
    font-size: 12px;
  }
}

.block-case .case-header-wrapper {
  background: #0d0d0d;
  padding-top: 40px;
  border-bottom: solid 1px;
}
.block-case .case-header-wrapper .case-header {
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat", serif;
}
.block-case .case-header-wrapper .case-header .case-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
  text-transform: uppercase;
}
.block-case .case-header-wrapper .case-header .case-categories-tabs {
  display: flex;
  align-items: end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 0;
  background: transparent;
  border-bottom: 0;
  position: relative;
}
.block-case .case-header-wrapper .case-header .case-categories-tabs .case-category-tab {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  background: transparent;
  padding: 0;
  color: #757575;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: none;
  letter-spacing: 0.2px;
  outline: none;
  box-shadow: none;
  margin-bottom: 0;
  line-height: 1.4;
  display: inline-block;
  height: 54px;
}
.block-case .case-header-wrapper .case-header .case-categories-tabs .case-category-tab:hover {
  color: #fff;
}
.block-case .case-header-wrapper .case-header .case-categories-tabs .case-category-tab:hover::after {
  transform: scaleX(1);
}
.block-case .case-header-wrapper .case-header .case-categories-tabs .case-category-tab.active {
  color: #fff;
  font-weight: 800;
}
.block-case .case-header-wrapper .case-header .case-categories-tabs .case-category-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #941b0c;
  border-radius: 6px 6px 0 0;
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-case .case-carousel-wrapper {
  position: relative;
  background: #0d0d0d;
  padding: 60px 0;
}
.block-case .case-carousel-wrapper .img-bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  z-index: 0;
}
.block-case .case-carousel-wrapper .img-bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-case .case-carousel-wrapper .list-case-carousel {
  position: relative;
  z-index: 1;
}
.block-case .case-carousel-wrapper .case-carousel {
  position: relative;
}
.block-case .case-carousel-wrapper .case-carousel .case-item {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-image-wrapper .case-link {
  display: block;
  position: relative;
  width: 100%;
  height: 272px;
  overflow: hidden;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-image-wrapper .case-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-image-wrapper .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-category-name {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bfbfbf;
  margin-bottom: 12px;
  line-height: 1.4;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-title-item {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-case .case-carousel-wrapper .case-carousel .case-item:hover {
  transform: none;
  box-shadow: none;
}
.block-case .case-carousel-wrapper .case-carousel .case-item:hover .case-image-wrapper .case-image {
  transform: scale(1.05);
}
.block-case .case-carousel-wrapper .case-carousel .case-item:hover .case-title-item {
  color: #fff;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 300px;
  overflow: visible;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-case .case-carousel-wrapper .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}
.block-case .case-carousel-wrapper .owl-nav button:hover {
  background: #941b0c;
}
.block-case .case-carousel-wrapper .owl-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.block-case .case-carousel-wrapper .owl-nav .owl-prev {
  left: -24px;
}
.block-case .case-carousel-wrapper .owl-nav .owl-next {
  right: -24px;
}
.block-case .case-carousel-wrapper .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.block-case .case-carousel-wrapper .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.block-case .case-carousel-wrapper .owl-dots .owl-dot.active {
  background: #941b0c;
}
.block-case .case-carousel-wrapper .owl-dots .owl-dot:hover {
  background: #941b0c;
}
.block-case .case-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.block-case .case-loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top-color: #941b0c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .block-case {
    padding: 60px 0;
  }
  .block-case .case-header .case-title {
    font-size: 36px;
  }
  .block-case .case-categories-tabs {
    gap: 12px;
  }
  .block-case .case-categories-tabs .case-category-tab {
    padding: 10px 18px;
    font-size: 13px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content {
    padding: 18px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-title-item {
    font-size: 15px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-description {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .block-case {
    padding: 50px 0;
  }
  .block-case .case-header {
    margin-bottom: 40px;
  }
  .block-case .case-header .case-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .block-case .case-header .case-subtitle {
    font-size: 14px;
  }
  .block-case .case-categories-tabs {
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 12px;
  }
  .block-case .case-categories-tabs .case-category-tab {
    padding: 8px 12px;
    font-size: 11px;
  }
  .block-case .case-categories-tabs .case-category-tab::after {
    bottom: -14px;
  }
  .block-case .case-carousel-wrapper .owl-nav {
    width: calc(100% + 40px);
    left: -20px;
  }
  .block-case .case-carousel-wrapper .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-image-wrapper {
    height: 200px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content {
    padding: 16px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-title-item {
    font-size: 13px;
    min-height: auto;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-description {
    font-size: 11px;
  }
}
@media (max-width: 576px) {
  .block-case {
    padding: 40px 0;
  }
  .block-case .case-header .case-title {
    font-size: 22px;
  }
  .block-case .case-categories-tabs {
    gap: 6px;
    margin-bottom: 25px;
  }
  .block-case .case-categories-tabs .case-category-tab {
    padding: 6px 10px;
    font-size: 10px;
  }
  .block-case .case-carousel-wrapper .owl-nav {
    display: none;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-image-wrapper {
    height: 180px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content {
    padding: 12px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-title-item {
    font-size: 12px;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-description {
    font-size: 11px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .block-case .case-carousel-wrapper .case-carousel .case-item .case-content .case-link {
    font-size: 10px;
  }
}

.block-diary {
  padding: 80px 0;
}
.block-diary .diary-header-wrapper .diary-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 48px;
  gap: 16px;
}
.block-diary .diary-header-wrapper .diary-header .diary-title {
  font-family: "Montserrat", serif;
  font-size: 40px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 0;
}
.block-diary .diary-header-wrapper .diary-header .diary-sub {
  color: #757575;
  font-size: 16px;
  width: 80%;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}
.block-diary .diary-header-wrapper .diary-header .diary-categories-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.block-diary .diary-header-wrapper .diary-header .diary-category-tab {
  font-family: "Montserrat", sans-serif;
  background: #f5f5f5;
  color: #757575;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  outline: none;
  border: none;
}
.block-diary .diary-header-wrapper .diary-header .diary-category-tab:hover {
  background: #941b0c;
  color: #fff;
}
.block-diary .diary-header-wrapper .diary-header .diary-category-tab.active {
  background: #941b0c;
  color: #fff;
}
.block-diary .diary-content-wrapper .list-diary-content {
  position: relative;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item .news-item__image {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  height: 272px;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item .news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item .news-item__title {
  margin-bottom: 12px;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item .news-item__title a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item .news-item__excerpt {
  color: #757575;
  font-size: 15px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item:hover .news-item__title a {
  color: #941b0c;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-item:hover .news-item__image img {
  transform: scale(1.05);
}
.block-diary .diary-content-wrapper .diary-news-grid .news-tab__footer .view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #757575;
  background: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  margin-top: 24px;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-tab__footer .view-all-btn:hover {
  color: #fff;
  background: #941b0c;
  flex-direction: row-reverse;
  transition: all 0.3s ease;
}
.block-diary .diary-content-wrapper .diary-news-grid .news-tab__footer .view-all-btn:hover svg path {
  stroke: #fff;
}
.block-diary .diary-content-wrapper .empty-news {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1/-1;
  width: 100%;
}
.block-diary .diary-content-wrapper .empty-news p {
  color: #999;
  font-size: 16px;
  margin: 0;
}
.block-diary .diary-content-wrapper .diary-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.block-diary .diary-content-wrapper .diary-loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f0f0;
  border-top-color: #941b0c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .block-diary .diary-header-wrapper .diary-header .diary-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .block-diary .diary-header-wrapper .diary-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .block-diary .diary-content-wrapper {
    padding: 40px 0;
  }
  .block-diary .diary-content-wrapper .diary-news-grid .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .block-diary .diary-header-wrapper .diary-header .diary-title {
    font-size: 1.3rem;
  }
  .block-diary .diary-content-wrapper {
    padding: 20px 0;
  }
  .block-diary .diary-content-wrapper .diary-news-grid .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
  }
  .block-diary .diary-content-wrapper .diary-news-grid {
    margin: 0 -10px;
  }
}

.block-diary-hotcat {
  position: relative;
  padding: 80px 0;
}
.block-diary-hotcat .img-bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.block-diary-hotcat .img-bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-diary-hotcat .list-diary-hotcat {
  position: relative;
  z-index: 1;
}
.block-diary-hotcat .hotcat-section {
  margin-bottom: 60px;
}
.block-diary-hotcat .hotcat-section:last-child {
  margin-bottom: 0;
}
.block-diary-hotcat .hotcat-section .hotcat-header {
  margin-bottom: 40px;
}
.block-diary-hotcat .hotcat-section .hotcat-header .hotcat-title {
  font-family: "Montserrat", serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}
.block-diary-hotcat .hotcat-section .hotcat-header .hotcat-description {
  color: #b0b0b0;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
  max-width: 80%;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid {
  margin-bottom: 48px;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 {
  display: flex;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 272px;
  position: relative;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__title {
  margin-bottom: 12px;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__title a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__excerpt {
  color: #b0b0b0;
  font-size: 15px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  transition: color 0.3s ease;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item:hover .news-item__title a {
  color: #941b0c;
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item:hover .news-item__image img {
  transform: scale(1.08);
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item:hover .news-item__image::after {
  background: rgba(0, 0, 0, 0.3);
}
.block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item:hover .news-item__excerpt {
  color: #d0d0d0;
}
.block-diary-hotcat .hotcat-section .news-tab__footer .view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  margin-top: 0;
  font-family: "Lato", sans-serif;
}
.block-diary-hotcat .hotcat-section .news-tab__footer .view-all-btn:hover {
  color: #fff;
  background: #941b0c;
  flex-direction: row-reverse;
  transition: all 0.3s ease;
}
.block-diary-hotcat .hotcat-section .news-tab__footer .view-all-btn:hover svg path {
  stroke: #fff;
}
.block-diary-hotcat .hotcat-section .empty-news {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1/-1;
  width: 100%;
}
.block-diary-hotcat .hotcat-section .empty-news p {
  color: #707070;
  font-size: 16px;
  margin: 0;
}
@media (max-width: 1024px) {
  .block-diary-hotcat {
    padding: 60px 0;
  }
  .block-diary-hotcat .hotcat-section {
    margin-bottom: 50px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header {
    margin-bottom: 32px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header .hotcat-title {
    font-size: 30px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header .hotcat-description {
    font-size: 15px;
    max-width: 100%;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__image {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .block-diary-hotcat {
    padding: 50px 0;
  }
  .block-diary-hotcat .hotcat-section {
    margin-bottom: 40px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header {
    margin-bottom: 24px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header .hotcat-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header .hotcat-description {
    font-size: 14px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid {
    margin-bottom: 24px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 12px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__image {
    height: 180px;
    margin-bottom: 16px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item__title a {
    font-size: 16px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item__excerpt {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .block-diary-hotcat {
    padding: 40px 0;
  }
  .block-diary-hotcat .hotcat-section {
    margin-bottom: 30px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header {
    margin-bottom: 16px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header .hotcat-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-header .hotcat-description {
    font-size: 13px;
    display: none;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid {
    margin: 0 -12px 20px -12px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item .news-item__image {
    height: 160px;
    margin-bottom: 12px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item__title a {
    font-size: 14px;
  }
  .block-diary-hotcat .hotcat-section .hotcat-news-grid .col-md-4 .news-item__excerpt {
    font-size: 12px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
}

.lawyer-slider-wrapper {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: transparent;
  padding: 0;
}
@media (max-width: 1400px) {
  .lawyer-slider-wrapper {
    gap: 24px;
    margin: 40px 0;
  }
}
@media (max-width: 1024px) {
  .lawyer-slider-wrapper {
    gap: 20px;
    flex-direction: column;
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper {
    gap: 16px;
    margin: 25px 0;
  }
}
.lawyer-slider-wrapper .lawyer-main-carousel-container {
  flex: 0 0 auto;
  width: 400px;
  position: relative;
  height: auto;
  max-height: 535px;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-carousel.owl-carousel .owl-stage-outer {
  height: 100%;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-carousel.owl-carousel .owl-stage {
  height: 100%;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-carousel.owl-carousel .owl-item {
  height: 100%;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 533px;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #5a1107 95%, #941b0c 100%);
  animation: lawyerFadeIn 0.5s ease-out;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-item .lawyer-main-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-item .lawyer-main-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.lawyer-slider-wrapper .lawyer-main-carousel-container .lawyer-main-item .lawyer-main-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
}
.lawyer-slider-wrapper .lawyer-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a365d;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(16, 30, 54, 0.15);
  z-index: 10;
}
.lawyer-slider-wrapper .lawyer-carousel-nav:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(16, 30, 54, 0.25);
  transform: translateY(-50%) scale(1.1);
}
.lawyer-slider-wrapper .lawyer-carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.lawyer-slider-wrapper .lawyer-carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  pointer-events: none;
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-carousel-nav {
    width: 40px;
    height: 40px;
  }
  .lawyer-slider-wrapper .lawyer-carousel-nav svg {
    width: 20px;
    height: 20px;
  }
}
.lawyer-slider-wrapper .lawyer-carousel-nav.lawyer-carousel-prev {
  left: -24px;
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-carousel-nav.lawyer-carousel-prev {
    left: -20px;
  }
}
@media (max-width: 480px) {
  .lawyer-slider-wrapper .lawyer-carousel-nav.lawyer-carousel-prev {
    left: -15px;
  }
}
.lawyer-slider-wrapper .lawyer-carousel-nav.lawyer-carousel-next {
  right: -24px;
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-carousel-nav.lawyer-carousel-next {
    right: -20px;
  }
}
@media (max-width: 480px) {
  .lawyer-slider-wrapper .lawyer-carousel-nav.lawyer-carousel-next {
    right: -15px;
  }
}
.lawyer-slider-wrapper .lawyer-info-container {
  flex: 0 0 auto;
  width: calc((100% - 400px - 48px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 24px;
}
@media (max-width: 1400px) {
  .lawyer-slider-wrapper .lawyer-info-container {
    width: 28%;
  }
}
@media (max-width: 1024px) {
  .lawyer-slider-wrapper .lawyer-info-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-info-container {
    width: 100%;
  }
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 0;
  animation: fadeIn 0.5s ease-out;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item.active {
  display: flex;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-sub-name {
  font-size: 16px;
  color: #a3a3a3;
  font-weight: 600;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-name {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-description {
  margin-bottom: 16px;
  max-height: 360px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f5f5f5;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-description::-webkit-scrollbar {
  width: 3px;
  background: #f5f5f5;
  border-radius: 4px;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-description::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-description::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-description p {
  color: #a3a3a3;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-main-description p:last-child {
  margin-bottom: 0;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-view-detail-btn {
  font-family: "Montserrat", sans-serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: capitalize;
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-view-detail-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #941b0c;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 12px 12px 0 0;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-view-detail-btn:hover {
  transform: translateY(-2px);
}
.lawyer-slider-wrapper .lawyer-info-container .lawyer-info-carousel .lawyer-info-item .lawyer-view-detail-btn:hover::after {
  background: #166534;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container {
  flex: 0 0 auto;
  width: calc((100% - 400px - 48px) / 2);
}
@media (max-width: 1400px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container {
    width: 28%;
  }
}
@media (max-width: 1024px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container {
    width: 100%;
  }
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel {
  gap: 16px;
  width: 100%;
}
@media (max-width: 1400px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel {
    gap: 10px;
  }
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel.owl-carousel .owl-stage {
  gap: 12px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel.owl-carousel .owl-item {
  flex: 0 0 calc(25% - 12px);
  height: auto;
}
@media (max-width: 1400px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(25% - 10.5px);
    margin-right: 14px;
  }
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(25% - 9px);
    margin-right: 12px;
  }
}
@media (max-width: 600px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(33.333% - 7px);
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(33.333% - 7px);
    margin-right: 10px;
  }
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item {
    aspect-ratio: 1;
  }
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item.active .lawyer-thumbnail-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #941b0c;
  opacity: 1;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item.active .lawyer-thumbnail-image {
  transform: scale(1.05);
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item.active .lawyer-thumbnail-name {
  color: #fff;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item .lawyer-thumbnail-link {
  width: 100%;
  height: 139px;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #ccb9b9 95%, #fff 100%);
  border-radius: 8px;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item .lawyer-thumbnail-link .lawyer-thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item .lawyer-thumbnail-link .lawyer-thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}
.lawyer-slider-wrapper .lawyer-thumbnails-carousel-container .lawyer-thumbnails-carousel .lawyer-thumbnail-item .lawyer-thumbnail-name {
  font-family: "Montserrat", sans-serif;
  color: #757575;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
}

@keyframes lawyerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.block-thinking {
  position: relative;
  padding: 80px 0;
}
.block-thinking .img-bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.block-thinking .img-bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-thinking .thinking-header-wrapper .thinking-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 48px;
  gap: 16px;
}
.block-thinking .thinking-header-wrapper .thinking-header .thinking-title {
  font-family: "Montserrat", serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 0;
}
.block-thinking .thinking-header-wrapper .thinking-header .thinking-sub {
  color: #757575;
  font-size: 16px;
  width: 80%;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}
.block-thinking .thinking-header-wrapper .thinking-header .thinking-categories-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.block-thinking .thinking-header-wrapper .thinking-header .thinking-category-tab {
  font-family: "Montserrat", sans-serif;
  background: #f5f5f5;
  color: #757575;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  outline: none;
  border: none;
}
.block-thinking .thinking-header-wrapper .thinking-header .thinking-category-tab:hover {
  background: #941b0c;
  color: #fff;
}
.block-thinking .thinking-header-wrapper .thinking-header .thinking-category-tab.active {
  background: #941b0c;
  color: #fff;
}
.block-thinking .thinking-content-wrapper .list-thinking-content {
  position: relative;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
  width: 100%;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-image-wrapper .case-link {
  display: block;
  position: relative;
  width: 100%;
  height: 272px;
  overflow: hidden;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-image-wrapper .case-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-image-wrapper .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 80%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-content .case-category-name {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bfbfbf;
  margin-bottom: 12px;
  line-height: 1.4;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item .case-content .case-title-item {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item:hover {
  transform: none;
  box-shadow: none;
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item:hover .case-image-wrapper .case-image {
  transform: scale(1.05);
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item:hover .case-title-item {
  color: #fff;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 300px;
  overflow: visible;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-thinking .thinking-content-wrapper .thinking-news-grid .case-item:hover .case-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 80%);
}
@media (max-width: 1024px) {
  .block-thinking .thinking-content-wrapper .thinking-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .block-thinking .thinking-content-wrapper .thinking-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .block-thinking .thinking-content-wrapper .thinking-news-grid .col-md-4 .case-item .case-image-wrapper .case-link {
    height: 220px;
  }
}
@media (max-width: 576px) {
  .block-thinking .thinking-content-wrapper .thinking-news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .block-thinking .thinking-content-wrapper .thinking-news-grid .col-md-4 .case-item .case-image-wrapper .case-link {
    height: 200px;
  }
}
.block-thinking .thinking-content-wrapper .news-tab__footer .view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  margin-top: 30px;
  font-family: "Lato", sans-serif;
}
.block-thinking .thinking-content-wrapper .news-tab__footer .view-all-btn:hover {
  color: #fff;
  background: #941b0c;
  flex-direction: row-reverse;
  transition: all 0.3s ease;
}
.block-thinking .thinking-content-wrapper .news-tab__footer .view-all-btn:hover svg path {
  stroke: #fff;
}
.block-thinking .thinking-content-wrapper .empty-news {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1/-1;
  width: 100%;
}
.block-thinking .thinking-content-wrapper .empty-news p {
  color: #999;
  font-size: 16px;
  margin: 0;
}
.block-thinking .thinking-content-wrapper .thinking-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.block-thinking .thinking-content-wrapper .thinking-loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f0f0;
  border-top-color: #941b0c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.block-press {
  padding: 80px 0 150px;
}

.video-carousel .video-carousel-item {
  transition: box-shadow 0.3s;
}
.video-carousel .video-carousel-item .video-thumb-wrapper .video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-carousel .video-carousel-item .video-thumb-wrapper .video-thumb iframe {
  width: 100%;
  height: 234px;
  border-radius: 8px;
}
.video-carousel .video-carousel-item .video-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  min-height: 44px;
  line-height: 1.4;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-carousel .owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  z-index: 3;
}
.video-carousel .owl-nav button {
  background: #fff !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(16, 30, 54, 0.15);
}
.video-carousel .owl-nav button svg {
  display: block;
}
.video-carousel .owl-nav button:hover {
  background: #941b0c !important;
}
.video-carousel .owl-nav button:hover svg {
  stroke: #fff;
}
.video-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -24px;
}
.video-carousel .owl-nav .owl-next {
  position: absolute;
  right: -24px;
}

.press-header-wrapper {
  margin-bottom: 60px;
}
.press-header-wrapper .press-header {
  text-align: center;
}
.press-header-wrapper .press-header .press-title {
  font-size: 36px;
  font-weight: 700;
  color: #101e36;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}
.press-header-wrapper .press-header .press-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Lato", sans-serif;
  line-height: 1.6;
}

.press-carousel-wrapper .press-carousel .press-carousel-item {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  gap: 12px;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), flex-direction 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-image-wrapper {
  width: 100%;
  height: 267px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
  border-radius: 16px;
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-image-wrapper .press-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-content {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-content .press-logo-wrapper {
  width: 100%;
  max-width: 104px;
  height: 88px;
  display: flex;
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-content .press-logo-wrapper .press-logo {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-content .press-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-carousel-wrapper .press-carousel .press-carousel-item .press-content .press-description {
  font-size: 14px;
  color: #666;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
  flex: 1;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-carousel-wrapper .press-carousel .press-carousel-item:hover {
  flex-direction: column-reverse;
  background: #941b0c;
}
.press-carousel-wrapper .owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  z-index: 3;
}
.press-carousel-wrapper .owl-nav button {
  background: #fff !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(16, 30, 54, 0.15);
}
.press-carousel-wrapper .owl-nav button svg {
  display: block;
}
.press-carousel-wrapper .owl-nav button:hover {
  background: #941b0c !important;
}
.press-carousel-wrapper .owl-nav button:hover svg {
  stroke: #fff;
}
.press-carousel-wrapper .owl-nav .owl-prev {
  position: absolute;
  left: -24px;
}
.press-carousel-wrapper .owl-nav .owl-next {
  position: absolute;
  right: -24px;
}
.press-carousel-wrapper .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.press-carousel-wrapper .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}
.press-carousel-wrapper .owl-dots .owl-dot.active {
  background: #941b0c;
  width: 30px;
  border-radius: 5px;
}
.press-carousel-wrapper .owl-dots .owl-dot:hover {
  background: #bbb;
}

.block-contact {
  position: relative;
  padding: 80px 0;
  overflow: visible;
}
.block-contact .img-bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.block-contact .img-bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-contact .contact-wrapper {
  display: flex;
}
.block-contact .contact-wrapper .form_contact {
  width: 100%;
  max-width: 700px;
}
.block-contact .contact-wrapper .form_contact .section_title {
  font-size: 32px;
  font-weight: 700;
  color: #d91a1a;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: titlePulseFlash 2s ease-in-out infinite;
  display: flex;
  margin-bottom: 30px;
  padding: 0;
  justify-content: center;
}
.block-contact .contact-wrapper .form_contact .section_title:after {
  display: none;
}
.block-contact .contact-wrapper .form_contact .form_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_subtitle {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}
.block-contact .contact-wrapper .form_contact .form_container .form_subtitle .required {
  color: #d91a1a;
  font-weight: 600;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .block-contact .contact-wrapper .form_contact .form_container .form_group .form_row {
    grid-template-columns: 1fr;
  }
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .form_row:last-child {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .block-contact .contact-wrapper .form_contact .form_container .form_group .form_row:last-child {
    grid-template-columns: 1fr;
  }
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper.full-width {
  grid-column: 1/-1;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper label {
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper label .required {
  color: #d91a1a;
  font-size: 16px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .input-field {
  position: relative;
  width: 100%;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .input_item {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #949494;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transition: all 0.3s ease;
  height: 56px;
  font-size: 16px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .input_item::-moz-placeholder {
  color: #949494;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .input_item::placeholder {
  color: #949494;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .input_item:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(217, 26, 26, 0.2);
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .input_item.error {
  border: 1px solid #d91a1a;
  background-color: #fff5f5;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper textarea.input_item {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-family: inherit;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper .error-message {
  font-size: 12px;
  color: #ff6b6b;
  display: none;
  font-weight: 500;
  margin-top: 5px;
  animation: slideInError 0.2s ease-in-out;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper.has-error .input_item {
  border: 1px solid #d91a1a !important;
  background-color: #fff5f5;
  box-shadow: 0 0 0 2px rgba(217, 26, 26, 0.1) !important;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper.has-error .error-message {
  display: block;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .input-wrapper.has-error .file-label {
  border: 1px solid #d91a1a !important;
  background-color: #fff5f5;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-input {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-input:focus + .file-label {
  box-shadow: 0 0 0 2px rgba(217, 26, 26, 0.2);
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #949494;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-label .file-text {
  color: #999999;
  flex: 1;
  text-align: left;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-label .file-button {
  padding: 6px 12px;
  background: #fff;
  color: #000;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-label .file-button:hover {
  background: #b01515;
}
.block-contact .contact-wrapper .form_contact .form_container .form_group .file-upload-wrapper .file-label:hover {
  background: #f0f0f0;
}
.block-contact .contact-wrapper .form_contact .form_container .form_actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.block-contact .contact-wrapper .form_contact .form_container .form_actions .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #1e5128;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: btnSubmitPulse 0.8s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-contact .contact-wrapper .form_contact .form_container .form_actions .btn-submit svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.block-contact .contact-wrapper .form_contact .form_container .form_actions .btn-submit:hover {
  background: #941b0c;
  transform: scale(1.12);
  animation-play-state: paused;
  box-shadow: 0 4px 12px rgba(217, 26, 26, 0.4);
}
.block-contact .contact-wrapper .form_contact .form_container .form_actions .btn-submit:active {
  transform: scale(1.12);
}
.block-contact .contact-wrapper .form_contact .form_container .form_actions .btn-submit:disabled {
  background: #cccccc;
  cursor: not-allowed;
  animation: none;
}
.block-contact .contact-wrapper .contact-form-image {
  position: absolute;
  bottom: 0;
  right: calc((100% - 1344px) / 2);
}
.block-contact .contact-wrapper .contact-form-image img {
  height: 100%;
  max-height: 700px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.contact-success-modal.show {
  display: flex;
  opacity: 1;
}
.contact-success-modal .modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.contact-success-modal .modal-content .modal-icon {
  color: #8b5a2b;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.contact-success-modal .modal-content .modal-icon svg {
  width: 64px;
  height: 64px;
}
.contact-success-modal .modal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}
.contact-success-modal .modal-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 28px 0;
}
.contact-success-modal .modal-content .close-modal-btn {
  background-color: #fff;
  color: #941b0c;
  border: 2px solid #941b0c;
  padding: 11px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.contact-success-modal .modal-content .close-modal-btn:hover {
  background-color: #941b0c;
  color: #fff;
}
.contact-success-modal.show .modal-content {
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinLoading {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes titlePulseFlash {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(217, 26, 26, 0.5);
  }
  50% {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(217, 26, 26, 0.8), 0 0 40px rgba(217, 26, 26, 0.4);
    color: #ff4444;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(217, 26, 26, 0.5);
    color: #d91a1a;
  }
}
@keyframes btnSubmitPulse {
  0% {
    background: #1e5128;
    transform: scale(1);
  }
  100% {
    background: #941b0c;
    transform: scale(1.12);
  }
}
