a {
  color: #333;
  text-decoration: none;
}

.item-disabled {
  opacity: 0.2;
}

.label_error {
  color: red !important;
}

.label_error_email {
  color: red !important;
  font-weight: 500 !important;
}

.disabled {
  pointer-events: none;
}

body {
  font-family: "Lato", sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0 !important;
  text-rendering: optimizeSpeed;
  position: relative;
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
}

.container {
  width: 100%;
  margin: auto;
  padding: 0;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #1c1c1c;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-content .header-left .logo .logo-link,
.header .header-content .header-center,
.header .header-content .header-right .header-tools,
.header .header-content .header-contact .hotline-box {
  display: flex;
}
.header .header-content .header-left {
  padding-left: 16px;
}
.header .header-content .header-left .logo .logo-link {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}
.header .header-content .header-left .logo .logo-link .logo-image {
  height: auto;
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header-content .header-left .logo .logo-link .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .header-content .header-left .logo .logo-link .logo-text span {
  font-family: "LatoItalic", sans-serif;
  display: block;
  font-size: 12px;
  color: #fff;
}
.header .header-content .header-left .logo .logo-link .logo-text .logo-top {
  display: none;
}
.header .header-content .header-left .logo .logo-link .logo-text .logo-tagline {
  font-style: italic;
}
.header .header-content .header-right .header-tools {
  align-items: center;
  gap: 16px;
}
.header .header-content .header-right .header-tools .language-selector .language-flags {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .header-content .header-right .header-tools .language-selector .flag-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: none;
}
.header .header-content .header-right .header-tools .language-selector .flag-link .flag-icon {
  width: 28px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: none;
}
.header .header-content .header-right .header-tools .language-selector .flag-link:hover {
  border-color: #eacd75;
  box-shadow: 0 0 0 2px rgba(234, 205, 117, 0.2);
}
.header .header-content .header-right .header-tools .language-selector .flag-link.active {
  border-color: #eacd75;
  box-shadow: 0 0 0 2px rgba(234, 205, 117, 0.3333333333);
}
.header .header-content .header-contact {
  position: relative;
  background: linear-gradient(135deg, #a32417 0%, #c42d1f 100%);
  border-radius: 0 0 0 24px;
  overflow: hidden;
  border-bottom: solid 6px #691309;
}
.header .header-content .header-contact .phone-icon {
  padding: 24px;
  background: #87190b;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 100% 0;
  z-index: 1;
  display: block;
  height: 100%;
}
.header .header-content .header-contact .hotline-box {
  font-family: "Noto", sans-serif;
  position: relative;
  z-index: 2;
  color: #fff;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
}
.header .header-content .header-contact .hotline-box .hotline-label {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}
.header .header-content .header-contact .hotline-box .hotline-number {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  transition: color 0.3s;
  line-height: normal;
}
.header .header-content .header-contact .hotline-box .hotline-desc {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}
.header.change {
  background: #1c1c1c;
}
.header.change .header-content .header-left .logo .logo-link {
  flex-direction: row;
  will-change: auto;
}
.header.change .header-content .header-left .logo .logo-link img {
  width: 60px;
  height: auto;
  transition: width 0.3s ease;
}
.header.change .header-content .header-left .logo .logo-link .logo-text span {
  font-size: 12px;
  transition: font-size 0.3s ease;
}
.header.change .header-content .header-left .logo .logo-link .logo-text .logo-top {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header.change .header-content .header-contact {
  border: none;
  border-radius: 0;
  transition: border 0.3s ease, border-radius 0.3s ease;
}
@media (max-width: 1024px) {
  .header .header-content {
    gap: 1rem;
  }
  .header .header-content .header-contact .hotline-box {
    padding: 12px 16px;
  }
  .header .header-content .header-contact .hotline-box .hotline-number {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header {
    position: relative;
  }
  .header .header-content {
    display: none;
  }
}

main {
  position: relative;
  background: #fff;
  z-index: 2;
  display: block;
}

.main-menu-navigation {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  height: 128px;
}
.main-menu-navigation .menu-item {
  height: 100%;
}
.main-menu-navigation .menu-item .menu-link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-menu-navigation .menu-item .menu-link .menu-text {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.main-menu-navigation .menu-item .menu-link svg {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-left: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.main-menu-navigation .menu-item .menu-link:hover {
  border-bottom: solid 3px #941b0c;
}
.main-menu-navigation .menu-item .menu-link:hover svg {
  transform: rotate(180deg);
}
.main-menu-navigation .menu-item.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu-navigation .menu-item .mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  width: 100vw;
  background: #0d0d0d;
}
.main-menu-navigation .menu-item .mega-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container {
  padding: 24px 10px;
  display: flex;
  gap: 24px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns.--no-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-title {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
  margin: 16px 0;
  position: relative;
  text-transform: uppercase;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-title::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #941b0c;
  border-radius: 0px 3px 3px 0px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-title a {
  color: #fff;
  transition: color 0.3s ease;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item {
  margin: 0;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item a {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  position: relative;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item a img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item a span {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #757575;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item a:hover span {
  color: #fff;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-featured {
  min-width: 200px;
  border-left: 1px solid #f0f0f0;
  padding-left: 30px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-featured .featured-title {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-featured .featured-item {
  margin-bottom: 15px;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-featured .featured-item .featured-image {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-featured .featured-item .featured-image:hover {
  transform: scale(1.05);
}

.change .main-menu-navigation {
  height: 122px;
}

.breadcrumbs {
  font-family: "Montserrat", sans-serif;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumbs span {
  color: #000;
}
.breadcrumbs span a {
  color: #757575;
  text-decoration: none;
}
.breadcrumbs span a:hover {
  color: #000;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.pagination-wrapper .pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-wrapper .pagination__list .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper .pagination__list .pagination__item .pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: transparent;
  border: none;
  border-radius: 50%;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.pagination-wrapper .pagination__list .pagination__item .pagination__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pagination-wrapper .pagination__list .pagination__item .pagination__link:hover {
  background: #f5f5f5;
  color: #222;
}
.pagination-wrapper .pagination__list .pagination__item.pagination__item--active .pagination__link {
  background: #941b0c;
  color: #fff;
  border-radius: 50%;
}
.pagination-wrapper .pagination__list .pagination__item.pagination__item--active .pagination__link:hover {
  background: #7a1608;
}
.pagination-wrapper .pagination__list .pagination__item.pagination__item--disabled .pagination__link {
  color: #bbb;
  pointer-events: none;
  background: transparent;
  cursor: not-allowed;
}
.pagination-wrapper .pagination__list .pagination__item.pagination__item--disabled .pagination__link:hover {
  background: transparent;
}

.main-footer {
  color: #ffffff;
}
.main-footer .footer-content .footer-menu {
  background: #1c1c1c;
  padding: 24px 0;
}
.main-footer .footer-content .footer-menu .main-menu-navigation {
  height: auto;
  gap: 0;
  justify-content: space-between;
}
.main-footer .footer-content .footer-menu .main-menu-navigation .menu-item {
  padding: 0 15px 0 20px;
  position: relative;
}
.main-footer .footer-content .footer-menu .main-menu-navigation .menu-item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-footer .footer-content .footer-menu .main-menu-navigation .menu-item:first-child {
  padding-left: 0;
}
.main-footer .footer-content .footer-menu .main-menu-navigation .menu-item:first-child::before {
  display: none;
}
.main-footer .footer-content .footer-menu .main-menu-navigation .menu-item .menu-link:hover {
  border: none;
}
.main-footer .footer-content .footer-menu .main-menu-navigation .menu-item .menu-link .menu-text {
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
}
.main-footer .footer-content .footer-top {
  background: url("/img/backgrounds/footer_bgr.jpg") no-repeat center center;
  background-size: cover;
}
.main-footer .footer-content .footer-top .footer-top-container {
  padding: 60px 0;
}
.main-footer .footer-content .footer-top .footer-top-container .logo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .logo-link .logo-image {
  height: auto;
  width: 72px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .logo-link .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .logo-link .logo-text span {
  display: block;
  font-size: 14px;
  color: #fff;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .logo-link .logo-text .logo-top {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .logo-link .logo-text .logo-tagline {
  font-family: "LatoItalic", sans-serif;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .footer_hotline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #991e0e;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 32px;
  padding: 16px 20px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .footer_hotline svg {
  flex-shrink: 0;
  display: block;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .footer_hotline span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .footer_hotline:hover, .main-footer .footer-content .footer-top .footer-top-container .logo .footer_hotline:focus {
  background: #b32a17;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(153, 30, 14, 0.18);
  text-decoration: none;
}
.main-footer .footer-content .footer-top .footer-top-container .logo .dmca {
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-address,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-phone,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-email {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-address svg,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-phone svg,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-email svg {
  width: 16px;
  height: 16px;
  color: #cccccc;
  margin-top: 2px;
  flex-shrink: 0;
}
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-address span,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-address a,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-phone span,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-phone a,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-email span,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-email a {
  font-size: 13px;
  line-height: normal;
  color: #cccccc;
  text-decoration: none;
}
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-address span:hover,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-address a:hover,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-phone span:hover,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-phone a:hover,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-email span:hover,
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-email a:hover {
  color: #ffffff;
  transition: color 0.3s ease;
}
.main-footer .footer-content .footer-top .footer-top-container .office-info .office-details .office-map iframe {
  border: none;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.main-footer .footer-content .footer-bottom {
  padding: 12px 0;
  background: #000000;
}
.main-footer .footer-content .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer .footer-content .footer-bottom .footer-bottom-content .footer-copyright p {
  font-size: 14px;
  color: #757575;
  margin: 0;
}
.main-footer .footer-content .footer-bottom .right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-footer .footer-content .footer-bottom .right .footer-social {
  display: flex;
  gap: 16px;
}
.main-footer .footer-content .footer-bottom .right .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-footer .footer-content .footer-bottom .right .footer-social .social-link:hover {
  transform: translateY(-2px);
  background: #757575;
  border-radius: 100%;
  padding: 10px;
}
.main-footer .footer-content .footer-bottom .right .footer-extra-info {
  padding-left: 16px;
  border-left: solid 1px #757575;
}
.main-footer .footer-content .footer-bottom .right .footer-extra-info .extra-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-footer .footer-content .footer-bottom .right .footer-extra-info span {
  display: block;
  line-height: normal;
  font-size: 12px;
  color: #757575;
}
.main-footer .active-language {
  color: white;
  background-color: #1c1c1c;
}
.main-footer .language {
  padding: 10px;
}

.breadcrumbs-catgory_name::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50%;
  width: 100%;
  max-width: 70px;
  height: 2px;
  margin: auto;
  background-color: #eacd75;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.breadcrumb {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;
  padding: 24px 0;
  color: rgb(117, 117, 117);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.breadcrumb a {
  text-decoration: none;
  color: rgb(117, 117, 117);
  font-size: 12px;
}
.breadcrumb p {
  margin-bottom: 0;
}
.breadcrumb a:last-child {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.block-head-page {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 0;
  min-height: 350px;
  display: flex;
  align-items: stretch;
}
.block-head-page .img-bgr {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.block-head-page .img-bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-head-page .content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.block-head-page .content .left {
  max-width: 50%;
  font-family: "Montserrat", sans-serif;
}
.block-head-page .content .left h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}
.block-head-page .content .left .text {
  font-size: 16px;
  line-height: 1.6;
  color: #efbf04;
  margin-bottom: 40px;
}
.block-head-page .content .left .text p {
  margin-bottom: 0px;
}
.block-head-page .content .left .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}
.block-head-page .content .left .btn:hover {
  transition: all 0.3s ease-in-out;
}
.block-head-page .content .left .btn-red {
  background: #1e5128;
  color: #fff;
  height: 40px;
  animation: btnRedPulse 0.8s 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);
}
.block-head-page .content .left .btn-red:hover {
  background: #941b0c;
  transform: scale(1.05);
  animation-play-state: paused;
}
.block-head-page .content .image_block {
  align-self: end;
  position: relative;
}
.block-head-page .content .image_block .image-main {
  position: absolute;
  bottom: 0;
  margin-bottom: 0 !important;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.btn-footer-contact {
  padding: 15px 35px;
  background: white;
  align-self: start;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  color: black;
  margin-top: 30px;
}
.btn-footer-contact:hover {
  opacity: 0.9;
}

.icon-size {
  width: 20px;
}

.title-contact {
  color: white;
}

.footer-wrap {
  -moz-column-count: 4;
       column-count: 4;
}
.footer-wrap ul {
  padding-left: 0px;
  list-style-type: none;
}
.footer-wrap ul li {
  padding-top: 10px;
}
.footer-wrap ul li a {
  color: white;
}

#modalToggle .modal-dialog .modal-content {
  border: none;
}
#modalToggle .modal-dialog .modal-content .modal-header {
  border-bottom: none;
}
#modalToggle .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.modal_login {
  width: 100%;
}
.modal_login .modal-content {
  padding: 0 48px 48px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal_login .modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal_login .modal-content .close:hover {
  cursor: pointer;
}
.modal_login .modal-content .component1 .modal_name {
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  color: #000000;
}
.modal_login .modal-content .component1 p {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: left;
  color: rgb(117, 117, 117);
}
.modal_login .modal-content .component2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal_login .modal-content .component2 .username,
.modal_login .modal-content .component2 .password {
  padding: 1rem;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
  background-color: rgb(245, 245, 245);
  border-radius: 2px;
}
.modal_login .modal-content .component2 .password {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_login .modal-content .component2 .password input {
  width: 90%;
  background-color: inherit;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
}
.modal_login .modal-content .component2 .password .reveal_hidden:hover {
  cursor: pointer;
}
.modal_login .modal-content .component2 button {
  background-color: #333;
  padding: 1rem;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: rgb(255, 255, 255);
  border: none;
  text-transform: uppercase;
  outline: none;
}
.modal_login .modal-content .component2 .break_line {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgb(245, 245, 245);
}
.modal_login .modal-content .component2 .break_line .or {
  position: absolute;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: center;
  width: 60px;
  height: 20px;
  background-color: #fff;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  color: rgb(117, 117, 117);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal_login .modal-content .component2 .break_line .or p {
  margin-bottom: 0;
}
.modal_login .modal-content .component2 .list_option_login_orther {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal_login .modal-content .component2 .list_option_login_orther .option_login {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgb(245, 245, 245);
  padding: 1rem 0;
}
.modal_login .modal-content .component2 .list_option_login_orther .option_login p {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: center;
  margin-bottom: 0;
}
.modal_login .modal-content .component3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal_login .modal-content .component3 .gr_text1 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal_login .modal-content .component3 .gr_text1 p {
  margin-bottom: 0;
  color: rgb(117, 117, 117);
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
.modal_login .modal-content .component3 .gr_text1 a {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #000000;
  text-decoration: none;
}
.modal_login .modal-content .component3 .gr_text2 a {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-decoration: none;
  color: rgb(36, 118, 255);
}

.header_mobile {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  z-index: 99;
  background: #1c1c1c;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-mobile-logo .mobile-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}
.header-mobile-logo .mobile-logo .logo-link .logo-image {
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-mobile-logo .mobile-logo .logo-link .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-mobile-logo .mobile-logo .logo-link .logo-text span {
  font-family: "LatoItalic", sans-serif;
  display: block;
  font-size: 12px;
  color: #fff;
}
.header-mobile-logo .mobile-logo .logo-link .logo-text .logo-tagline {
  font-style: italic;
}

#searchForm {
  width: 0px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  cursor: pointer;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  position: absolute;
  right: 100%;
  top: 50%;
  z-index: 1;
  transform: translate(0px, -50%);
}
#searchForm input {
  position: absolute;
  right: 0;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  width: 100%;
  height: 36px;
  border-radius: 100px 20px 20px 100px;
  background: rgba(255, 255, 255, 0.21);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  color: rgb(255, 255, 255);
  font-size: 12px;
}
#searchForm input:focus {
  outline: none;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #333;
  animation: prixClipFix 2s linear infinite;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.pagination .page-item.active .page-link {
  background-color: #000;
  border: 1px rgb(0, 0, 0) solid;
  color: #fff;
}
.pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  border-radius: 100px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
            clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.banner_v2 .layout_banner {
  z-index: 1;
}
.banner_v2 .layout_banner .banner_item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, #764d2a 100%);
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

.color-item-outside.disabled {
  opacity: 0.2;
}

#searchForm.show {
  width: 250px;
  border-radius: 100px 20px 20px 100px;
  background: rgb(255, 255, 255);
  margin-right: 10px;
}
#searchForm.show input {
  opacity: 1;
  width: 100%;
  pointer-events: auto;
  padding-left: 20px;
  color: rgb(0, 0, 0);
}

.close-main-menu {
  width: 100%;
  height: 10px;
  background-color: transparent;
}

#expand-content {
  width: 100%;
  position: absolute;
  background: white;
  top: 72px;
  left: 0;
  display: flex;
  justify-content: center;
}
#expand-content .title-menu-1,
#expand-content .title-menu-2 {
  position: relative;
}
#expand-content .title-menu-1:after,
#expand-content .title-menu-2:after {
  content: "";
  width: 0px;
  left: 0px;
  height: 1px;
  background-color: #333;
  bottom: -5px;
  transition: 0.3s;
  position: absolute;
}
#expand-content .title-menu-1:hover:after,
#expand-content .title-menu-2:hover:after {
  width: 100%;
}
#expand-content .wrapper {
  width: 55%;
  -moz-column-gap: 15px;
       column-gap: 15px;
  -moz-column-count: 5;
       column-count: 5;
}
#expand-content .wrapper .image-level-1 {
  display: block;
}
#expand-content .wrapper .image-level-1 img {
  width: 250px;
}
#expand-content ul {
  padding-left: 0px;
}
#expand-content .box-service {
  padding: 5px 0px;
}

.image-category-hot {
  display: flex;
  gap: 15px;
}
.image-category-hot .image-level-1 {
  width: 200px;
  height: 300px;
}
.image-category-hot .image-level-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.floatLeft {
  float: left;
  padding-top: 2px;
}

.floatLeft:after,
.floatLeft:before {
  display: table;
  content: " ";
}

.floatLeft:after {
  clear: both;
}

.avatar {
  margin-top: 7px;
  background: rgba(0, 0, 0, 0.05);
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.line {
  display: inline-block;
  height: 10px;
  margin-top: 7px;
  margin-bottom: 7px;
  width: 400px;
  background-color: #f6f7f9;
  float: left;
  clear: both;
}

.line--trunc {
  width: 240px;
}

.shimmer {
  background-image: linear-gradient(90deg, #f6f7f9 0, #e9ebee 20%, #f6f7f9 40%, #f6f7f9);
  background-size: 99% 100%;
  background-repeat: no-repeat;
  animation: shimmer 1s linear 1ms infinite backwards;
}

@keyframes shimmer {
  0% {
    background-position: 500% 100%;
  }
  100% {
    background-position: 10000% 100%;
  }
}
.right_side_collection_block {
  padding: 0px 30px;
}

.wrap {
  width: 300px;
}

.mobile-menu-header {
  display: none;
}

.mobile-menu-submenu {
  display: none;
}

.btn_buy_now_mobile {
  display: none;
}

.loading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  transition: 0.5s;
  background: rgb(0, 0, 0);
  z-index: 9999;
  pointer-events: none;
}
.loading .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: 2s ease-out 0s infinite normal none running loaderLogoPulse;
  transition: 3s;
}
.loading.hide {
  opacity: 0;
  z-index: 0;
}

@keyframes loaderLogoPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
}
.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);
  }
}
.chat-ai-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: "Lato", sans-serif;
}
.chat-ai-container .chat-ai-status-top {
  position: fixed;
  bottom: 340px;
  right: 16px;
  max-width: 232px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  z-index: 2;
  transition: all 0.3s;
  animation: fadeInButton 0.3s;
  box-sizing: border-box;
}
.chat-ai-container .chat-ai-status-top::after {
  content: "";
  position: absolute;
  left: auto;
  right: 12px;
  bottom: -10px;
  width: 20px;
  height: 12px;
  background: transparent;
  pointer-events: none;
  z-index: 1;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid #fff;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-content .chat-ai-status-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #fff;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-content .chat-ai-status-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-content .chat-ai-status-info .chat-ai-status-title {
  font-weight: bold;
  font-size: 13px;
  color: #222;
  margin-bottom: 0;
  line-height: normal;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-content .chat-ai-status-info .chat-ai-status-desc {
  color: #2e7d32;
  font-size: 11px;
  font-weight: 500;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-welcome {
  font-size: 12px;
  color: #000;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-close {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #fff;
  border-radius: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
  box-shadow: #ebebeb 0px 2px 4px;
}
.chat-ai-container .chat-ai-status-top .chat-ai-status-close:hover {
  opacity: 1;
}
.chat-ai-container .chat-ai-box {
  position: fixed;
  bottom: 32px;
  right: 85px;
  max-width: 370px;
  height: 600px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px dashed #2196f3;
}
.chat-ai-container .chat-ai-box.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.chat-ai-container .chat-ai-box .chat-ai-header {
  padding: 15px;
  border-bottom: 1px dashed #2196f3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-ai-container .chat-ai-box .chat-ai-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message {
  max-width: 80%;
  padding: 12px 15px;
  border-radius: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message.chat-ai-message {
  align-self: flex-start;
  background-color: white;
  border-radius: 18px 18px 18px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message.chat-user-message {
  align-self: flex-end;
  background-color: #f0f7ff;
  border-radius: 18px 18px 0 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message .chat-message-time {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  white-space: nowrap;
}
.chat-ai-container .chat-ai-box .chat-ai-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}
.chat-ai-container .chat-ai-box .chat-ai-footer .chat-ai-input {
  flex: 1;
  border: none;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 10px 15px;
  outline: none;
  font-size: 14px;
}
.chat-ai-container .chat-ai-box .chat-ai-footer .chat-ai-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chat-ai-container .chat-ai-box .chat-ai-footer .chat-ai-send:hover {
  background-color: #555;
  transform: scale(1.05);
}
.chat-ai-container .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-ai-container .avatar img {
  width: 20px;
  height: 20px;
}

.block_button {
  position: fixed;
  bottom: 32px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.block_button .fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #205c2c;
  border: none;
  box-shadow: 0 4px 12px rgba(32, 92, 44, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.block_button .fab-btn img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.block_button .fab-btn:hover {
  background-color: #1a4620;
  box-shadow: 0 8px 20px rgba(32, 92, 44, 0.35);
  transform: translateY(-4px);
}
.block_button .fab-btn:hover img {
  transform: scale(1.05);
}
.block_button .fab-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 92, 44, 0.25);
}
.block_button .fab-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.block_button .fab-btn:active::before {
  width: 80px;
  height: 80px;
}
.block_button .fab-btn.fab-scroll-top {
  visibility: hidden;
  opacity: 0;
  animation: fadeInButton 0.3s ease forwards;
}
.block_button .fab-btn.fab-scroll-top.show {
  visibility: visible;
  opacity: 1;
}
.block_button .fab-btn.fab-scroll-top img {
  width: 40px;
  height: 40px;
}
@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-item {
  overflow: hidden;
  margin-bottom: 40px;
}
.news-item:hover .news-item__image img {
  transform: scale(1.05);
}
.news-item:hover .news-item__title a {
  color: #941b0c;
}
.news-item__image {
  position: relative;
  overflow: hidden;
  height: 272px;
  border-radius: 16px;
}
.news-item__image a {
  display: block;
  height: 100%;
}
.news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-item__title {
  font-family: "Montserrat", sans-serif;
  margin: 20px 0 8px;
  line-height: 1.4;
}
.news-item__title a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.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;
}
.news-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #a0aec0;
}
@media (max-width: 480px) {
  .news-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.news-grid .advise-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 30, 54, 0.08);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 40px;
}
.news-grid .advise-item__image {
  position: relative;
  width: 100%;
  height: 272px;
  overflow: hidden;
}
.news-grid .advise-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-grid .advise-item__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  pointer-events: none;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-grid .advise-item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 20px 16px 20px;
  color: #fff;
  z-index: 2;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  gap: 0;
}
.news-grid .advise-item__content .advise-item__title {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  opacity: 1;
  max-height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.news-grid .advise-item__content .advise-item__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.news-grid .advise-item__content .advise-item__excerpt {
  font-size: 0.97rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.news-grid .advise-item__content .see_more {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}
.news-grid .advise-item:hover, .news-grid .advise-item:focus-within {
  box-shadow: 0 8px 32px rgba(16, 30, 54, 0.18);
}
.news-grid .advise-item:hover .advise-item__image img, .news-grid .advise-item:focus-within .advise-item__image img {
  transform: scale(1.04);
}
.news-grid .advise-item:hover .advise-item__image::after, .news-grid .advise-item:focus-within .advise-item__image::after {
  height: 100%;
}
.news-grid .advise-item:hover .advise-item__content, .news-grid .advise-item:focus-within .advise-item__content {
  height: 100%;
  padding: 32px 20px 24px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  gap: 12px;
}
.news-grid .advise-item:hover .advise-item__content .advise-item__excerpt, .news-grid .advise-item:focus-within .advise-item__content .advise-item__excerpt {
  opacity: 1;
  max-height: 22px;
  visibility: visible;
}
.news-grid .advise-item:hover .advise-item__content .see_more, .news-grid .advise-item:focus-within .advise-item__content .see_more {
  opacity: 1;
  max-height: 20px;
  visibility: visible;
}

@media screen and (max-width: 1600px) {
  .main-menu-navigation {
    gap: 16px;
  }
  .main-menu-navigation .menu-item .menu-link .menu-text {
    font-size: 12px;
  }
  .main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-title {
    font-size: 12px;
  }
  .header .header-content .header-contact .hotline-box {
    padding: 16px 20px;
  }
  .header .header-content .header-contact .hotline-box .hotline-number {
    font-size: 22px;
  }
  .header .header-content .header-left .logo .logo-link {
    flex-direction: column !important;
    padding: 10px 0;
  }
  .header .header-content .header-left .logo .logo-link img {
    width: 80px !important;
  }
  .header .header-content .header-right .header-tools {
    gap: 8px;
  }
  .block-service-categories .service-category-item .category-content .category-name {
    font-size: 16px !important;
  }
  .block-service-categories .service-category-item .category-content .category-submenu .submenu-list .submenu-item a {
    font-size: 12px !important;
  }
  .case-title,
  .diary-title,
  .hotcat-title,
  .thinking-title {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 1400px) {
  .header .header-content .header-contact .hotline-box {
    padding: 10px;
  }
  .header .header-content .header-contact .hotline-box .hotline-label {
    font-size: 12px;
  }
  .header .header-content .header-contact .hotline-box .hotline-number {
    font-size: 20px;
  }
  .hero-banner .hero_content {
    bottom: 10vh;
  }
  .hero-banner .hero_content .hero-title h3 {
    font-size: 28px;
  }
  .hero-banner .hero_content .hero-title h4 {
    font-size: 24px;
  }
  .hero-banner .hero_content .btn {
    font-size: 14px;
  }
  .main-footer .footer-content .footer-menu .main-menu-navigation .menu-item {
    padding: 0 10px;
  }
  .main-footer .footer-content .footer-menu .main-menu-navigation .menu-item .menu-link .menu-text {
    font-size: 12px;
  }
  .main-menu-navigation .menu-item .mega-dropdown .dropdown-container .dropdown-columns .sub-menu-column .sub-menu-list .sub-menu-item a span {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .btn_buy_now_mobile {
    display: none;
  }
  .buy-now {
    background-color: white;
    width: 95%;
    display: flex;
    justify-content: center;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s;
  }
}
@media (max-width: 1024px) {
  .main-footer {
    padding: 0;
  }
  .main-footer .footer-content .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .main-footer .footer-content .footer-top .footer-offices {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .container {
    padding: 0 10px !important;
  }
  .main-footer .footer-content .footer-top {
    padding: 20px 0;
  }
  .main-footer .footer-content .footer-top .footer-top-container .logo {
    align-items: center;
    gap: 10px;
  }
  .main-footer .footer-content .footer-top .footer-top-container .logo .footer_hotline,
  .main-footer .footer-content .footer-top .footer-top-container .logo .dmca-link {
    display: none !important;
  }
  .main-footer .footer-content .footer-top .footer-top-container .office-info {
    margin-top: 10px;
  }
  .main-footer .footer-content .footer-top .footer-top-container .office-info .office-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .main-footer .footer-content .footer-menu {
    padding: 20px 10px 10px;
  }
  .main-menu-navigation {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .main-menu-navigation .menu-item {
    margin-bottom: 10px;
  }
  .main-menu-navigation .menu-item:first-child {
    padding: 0 10px !important;
  }
  .main-menu-navigation .menu-item:first-child::before {
    display: block !important;
  }
  .block-head-page {
    padding-top: 88px;
  }
  .block-head-page .content {
    flex-direction: column;
    gap: 0;
  }
  .block-head-page .content .left {
    max-width: 100%;
  }
  .block-head-page .content .left h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .block-head-page .content .left .text {
    font-size: 13px;
    margin-bottom: 20px;
    text-align: justify;
  }
  .block-head-page .content .left .btn-red {
    margin: auto;
    font-size: 12px;
  }
  .block-head-page .content .left ul {
    padding-left: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 12px;
  }
  .footer-wrap {
    -moz-column-count: 2;
         column-count: 2;
  }
  .main-menu {
    gap: 1rem;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1080px;
  }
}
@media screen and (max-width: 767px) {
  .footer-wrap {
    -moz-column-count: 2;
         column-count: 2;
  }
  .component3 {
    flex-direction: column;
  }
  .header {
    display: none;
  }
  main {
    padding-top: 64px;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    transition: opacity 0.3s ease;
  }
  .header_mobile {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    z-index: 99;
    background: #1c1c1c;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header_mobile.change {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .header_mobile .header_mobile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    gap: 8px;
  }
  .header_mobile .mobile-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .header_mobile .mobile-tools {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }
  .header_mobile .mobile-tools .mobile-tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0;
    padding: 0;
  }
  .header_mobile .mobile-tools .mobile-tool-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  .header_mobile .mobile-tools .mobile-tool-btn:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
  }
  .header_mobile .mobile-tools .mobile-tool-btn svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .header_mobile .mobile-tools .flag-icon {
    width: 18px;
    height: 14px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header_mobile .mobile-language-selector {
    position: relative;
    display: flex;
    align-items: center;
  }
  .header_mobile .mobile-language-selector .mobile-language-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .header_mobile .mobile-language-selector .mobile-language-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  .header_mobile .mobile-language-selector .mobile-language-link:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
  }
  .header_mobile .mobile-language-selector .mobile-language-link .flag-icon {
    width: 18px;
    height: 14px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .mt-3 {
    margin-top: 0;
  }
  .btn-footer-contact {
    margin-bottom: 30px;
  }
  .footer-wrap {
    -moz-column-count: 2;
         column-count: 2;
  }
  .banner-hot-sell {
    display: none;
  }
  .btn_buy_now_mobile {
    margin-top: 12px;
    display: block;
    background: rgba(0, 0, 0, 0.06);
    padding: 12px;
    text-align: center;
    color: #000;
    font-weight: 700;
  }
  .mobile-menu-submenu {
    display: block;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: -1000px;
    z-index: 1001;
    overflow-x: hidden;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
    font-family: "Lato", sans-serif;
  }
  .mobile-menu-submenu .mobile-menu-submenu__header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px 16px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
    border-bottom: 3px solid #eacd75;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 64px;
  }
  .mobile-menu-submenu .main-menu.level-1 {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-submenu .main-menu.level-1 li {
    margin: 0;
    padding: 0;
    position: relative;
    border-bottom: 1px solid rgba(232, 205, 117, 0.1);
  }
  .mobile-menu-submenu .main-menu.level-1 li:last-child {
    border-bottom: none;
  }
  .mobile-menu-submenu .main-menu.level-1 li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 14px 16px;
    color: #1c1c1c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 48px;
  }
  .mobile-menu-submenu .main-menu.level-1 li a:active {
    background: rgba(232, 205, 117, 0.12);
  }
  .mobile-menu-submenu .main-menu.level-2 {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: rgba(232, 205, 117, 0.02);
  }
  .mobile-menu-submenu .main-menu.level-2 li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(232, 205, 117, 0.08);
  }
  .mobile-menu-submenu .main-menu.level-2 li:last-child {
    border-bottom: none;
  }
  .mobile-menu-submenu .main-menu.level-2 li a {
    display: flex;
    align-items: center;
    padding: 11px 20px 11px 32px;
    color: #212121;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    min-height: 44px;
    position: relative;
  }
  .mobile-menu-submenu .main-menu.level-2 li a:active {
    background: rgba(232, 205, 117, 0.1);
  }
  .mobile-menu-submenu .mobile-menu-submenu__back-btn {
    padding: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    flex-shrink: 0;
  }
  .mobile-menu-submenu .mobile-menu-submenu__back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  .mobile-menu-submenu .mobile-menu-submenu__back-btn:active {
    transform: scale(0.95);
  }
  .mobile-menu-submenu .mobile-menu-submenu__back-btn svg {
    width: 20px;
    height: 20px;
    color: white;
    stroke: white;
    stroke-width: 2;
  }
  .mobile-menu-submenu .mobile-menu-submenu__title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    line-height: normal;
    flex: 1;
    text-align: center;
    margin: 0;
  }
  .mobile-menu-submenu .mobile-menu-submenu__content {
    padding: 0;
  }
  .mobile-menu-submenu::-webkit-scrollbar {
    width: 6px;
  }
  .mobile-menu-submenu::-webkit-scrollbar-track {
    background: transparent;
  }
  .mobile-menu-submenu::-webkit-scrollbar-thumb {
    background: #eacd75;
    border-radius: 3px;
  }
  .mobile-menu-submenu::-webkit-scrollbar-thumb:hover {
    background: #d4b860;
  }
  .child-indicator {
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    border: none;
    color: #1c1c1c;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
    padding: 0;
    margin: 0;
  }
  .child-indicator:hover {
    color: #eacd75;
    transform: rotate(180deg);
  }
  .child-indicator svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
  }
  .mobile-menu-header {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -1000px;
    background-color: #ffffff;
    color: #333;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
    font-family: "Lato", sans-serif;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu-header .mobile-menu-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
    border-bottom: 3px solid #eacd75;
    gap: 12px;
    min-height: 64px;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .mobile-menu-header .mobile-menu-header__content {
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu-header .mobile-menu-header__content .menu-wrapper {
    display: none;
  }
  .mobile-menu-header .mobile-menu-header__content::-webkit-scrollbar {
    width: 6px;
  }
  .mobile-menu-header .mobile-menu-header__content::-webkit-scrollbar-track {
    background: transparent;
  }
  .mobile-menu-header .mobile-menu-header__content::-webkit-scrollbar-thumb {
    background: #eacd75;
    border-radius: 3px;
  }
  .mobile-menu-header .mobile-menu-header__content::-webkit-scrollbar-thumb:hover {
    background: #d4b860;
  }
  .mobile-menu-header .main-menu.level-0 {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-header .main-menu.level-0 li {
    margin: 0;
    border-bottom: 1px solid rgba(232, 205, 117, 0.1);
    position: relative;
  }
  .mobile-menu-header .main-menu.level-0 li:last-child {
    border-bottom: none;
  }
  .mobile-menu-header .main-menu.level-0 li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    color: #1c1c1c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 48px;
  }
  .mobile-menu-header .main-menu.level-0 li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #eacd75;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-menu-header .main-menu.level-0 li a:hover {
    background: linear-gradient(90deg, rgba(232, 205, 117, 0.08) 0%, transparent 100%);
    padding-left: 24px;
  }
  .mobile-menu-header .main-menu.level-0 li a:hover::before {
    transform: scaleY(1);
  }
  .mobile-menu-header .main-menu.level-0 li a:active {
    background: rgba(232, 205, 117, 0.12);
  }
  .mobile-menu-header .main-menu.level-0 li .child-indicator {
    position: relative;
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    border: none;
    color: #1c1c1c;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
    padding: 0;
    margin: 0;
    transform: none;
  }
  .mobile-menu-header .main-menu.level-0 li .child-indicator:hover {
    color: #eacd75;
    transform: scale(1.1) rotate(180deg);
  }
  .mobile-menu-header .main-menu.level-0 li .child-indicator:active {
    transform: scale(0.95) rotate(180deg);
  }
  .mobile-menu-header .main-menu.level-0 li .child-indicator svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }
  .mobile-menu-header .main-menu.level-2 {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: rgba(232, 205, 117, 0.02);
  }
  .mobile-menu-header .main-menu.level-2 li {
    margin: 0;
    border-bottom: 1px solid rgba(204, 176, 84, 0.08);
    padding: 0;
  }
  .mobile-menu-header .main-menu.level-2 li:last-child {
    border-bottom: none;
  }
  .mobile-menu-header .main-menu.level-2 li a {
    display: flex;
    align-items: center;
    padding: 11px 20px 11px 32px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    min-height: 44px;
    position: relative;
  }
  .mobile-menu-header .main-menu.level-2 li a::before {
    content: "";
    position: absolute;
    left: 16px;
    width: 4px;
    height: 4px;
    background: #eacd75;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
  }
  .mobile-menu-header .main-menu.level-2 li a:hover {
    background: rgba(232, 205, 117, 0.06);
    color: #1c1c1c;
    padding-left: 36px;
  }
  .mobile-menu-header .main-menu.level-2 li a:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  .mobile-menu-header .main-menu.level-2 li a:active {
    background: rgba(232, 205, 117, 0.1);
  }
  .mobile-menu-header__close-btn {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .mobile-menu-header__close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.05);
  }
  .mobile-menu-header__close-btn:active {
    transform: rotate(90deg) scale(0.95);
  }
  .mobile-menu-header__close-btn svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke: white;
    stroke-width: 2;
  }
  .breadcrumbs {
    display: none !important;
  }
  .breadcrumbs a {
    font-size: 10px;
  }
  .breadcrumbs span {
    font-size: 10px;
  }
  .control_wide_modal {
    margin: 48px auto;
  }
  .control_wide_modal .modal-content {
    padding: 14px;
  }
  .control_wide_modal .modal-content .product-slide-wrap {
    flex-direction: column;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right {
    gap: 8px;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .logo_hotsale {
    width: 30% !important;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .title_select_sizes {
    flex-direction: row;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .color_select {
    flex-direction: row;
    display: flex;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .list_sizes_select {
    flex-direction: row;
  }
  .main-footer .footer-content .footer-top {
    gap: 30px;
  }
  .main-footer .footer-content .footer-top .footer-logo-section {
    text-align: center;
  }
  .main-footer .footer-content .footer-top .footer-logo-section .footer-company-name {
    font-size: 20px;
  }
  .main-footer .footer-content .footer-top .footer-offices {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .main-footer .footer-content .footer-top .footer-offices .office-info .office-title {
    font-size: 16px;
  }
  .main-footer .footer-content .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .main-footer .footer-content .footer-bottom .footer-bottom-content .footer-extra-info {
    flex-direction: column;
    gap: 8px;
  }
  .block_button {
    right: 10px;
  }
  .chat-ai-container .chat-ai-box {
    top: 80px;
    left: 10px;
    right: 70px;
    max-width: 370px;
    height: 300px;
  }
}
