/* Fonts */
@font-face {
  font-family: "GR";
  src: url("../fonts/main/SVN-Gilroy.woff2") format("woff2"), url("../fonts/main/SVN-Gilroy.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GM";
  src: url("../fonts/main/SVN-GilroyMedium.woff2") format("woff2"), url("../fonts/main/SVN-GilroyMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GB";
  src: url("../fonts/main/SVN-GilroyBold.woff2") format("woff2"), url("../fonts/main/SVN-GilroyBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GSB";
  src: url("../fonts/main/SVN-GilroySemiBold.woff2") format("woff2"), url("../fonts/main/SVN-GilroySemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "1FT";
  src: url("../fonts/main/1FTVVIPBakari.woff2") format("woff2"), url("../fonts/main/1FTVVIPBakari.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #8aba2c;
  --color-hover: #1e7401;
  --color-text: #4d4d4d;
  --color-content: #5c5c5c;
  --color-background: #fff;
  --font-main: 'GR';
}

body {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-main);
  background: var(--color-background);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
}

.wrap-content {
  max-width: 1300px;
  width: calc(100% - 20px);
  margin: 0px auto;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
img.lazy {
  display: inline-block;
  opacity: 0;
}
img:not(.initial) {
  transition: opacity 1s;
}
img:not([src]) {
  visibility: hidden;
}
img:is(.loaded, .error) {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

ol,
ul {
  list-style: unset;
}

.content-text a {
  color: #0d6efd;
  text-decoration: underline;
}

.social-plugin {
  display: flex;
  gap: 2px;
  margin: 12px 0;
}

.scale-img {
  display: block;
  overflow: hidden;
}
.scale-img img {
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
.scale-img:hover img {
  transform: scale(1.1, 1.1);
  transition: all 0.3s ease;
}

/* Transition All */
.transition, .btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* Menu */
.fixed-menu {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.fixed-menu .menu {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.4);
}

.menu {
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 22px 0;
}
.menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.menu ul li {
  position: relative;
  z-index: 99;
  text-align: center;
}
.menu ul li a.svg-bg {
  width: 150px;
  height: 45px;
  text-align: center;
  line-height: 42px;
}
.menu ul li a.svg-bg.active {
  background: url(../images/main/line.webp) no-repeat center center/100% 100%;
}
.menu ul li a {
  position: relative;
  display: block;
  color: #333;
  font-size: 16px;
  font-family: "GSB";
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
}
.menu ul li a.active {
  color: #fff;
}
.menu ul li a .menu-category-list-btn {
  position: absolute;
  right: -12px;
  top: calc(50% - 7px);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease-out;
}
.menu ul li:hover > a {
  background: url(../images/main/line.webp) no-repeat center center/100% 100%;
  color: #fff;
}
.menu ul li:hover > a .menu-category-list-btn {
  transform: rotate(90deg);
}
.menu ul li:hover > ul {
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.menu ul li ul {
  position: absolute;
  min-width: 220px;
  background-color: #fafafa;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
}
.menu ul li ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.menu ul li ul li:hover > a {
  background: var(--color-main);
  color: #fff;
}
.menu ul li ul li:hover > a .menu-category-list-btn {
  transform: rotate(180deg);
}
.menu ul li ul li a {
  text-align: left;
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  padding: 10px 10px;
}
.menu ul li ul li a::before {
  display: none;
}
.menu ul li ul li a .menu-category-list-btn {
  right: 10px;
}
.menu ul li ul li ul {
  top: 0;
  left: 100%;
  margin-top: 0px;
}

/* Slider */
.slideshow-slide {
  aspect-ratio: 412/186;
}

/* Search */
.search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 512px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #cecdcd;
  background: #fff;
  overflow: hidden;
}
.search .icon {
  position: absolute;
  left: 10px;
  top: 7px;
  font-size: 20px;
  color: #535353;
  margin-bottom: 0;
}
.search input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding-left: 40px;
  background: transparent;
  color: #8f8f8f;
  font-size: 12px;
}
.search input::-moz-placeholder {
  color: #8f8f8f;
}
.search input::placeholder {
  color: #8f8f8f;
}
.search button {
  background: #39ab4a;
  width: 90px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.search button:hover {
  background: var(--color-hover);
}

/* Mmenu */
.menu-res,
.menu-res-add {
  display: none;
}

.menu-res {
  cursor: pointer;
  position: relative;
  width: 100%;
  /* height: 50px; */
  z-index: 999;
  background: var(--color-main);
}
.menu-res .wrap-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-res .icon-menu {
  font-size: 23px;
  color: #fff;
  border: 1px solid;
  border-radius: 5px;
  padding: 0px 8px;
}

.menu-res-add {
  position: fixed;
  left: -100%;
  top: 0;
  background: #ffffff;
  z-index: 99999;
  color: #333;
  height: 100vh;
  overflow-y: scroll;
  line-height: 1.5;
  padding: 40px 0 20px;
  width: 85%;
  min-width: 140px;
  max-width: 440px;
  transition: 0.5s;
  border-right: 1px solid #e6e6e6;
}
.menu-res-add::-webkit-scrollbar {
  width: 2px;
}
.menu-res-add::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
  border-radius: 10px;
}
.menu-res-add::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px var(--color-main);
}
.menu-res-add ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-res-add ul li a {
  color: #191919;
  display: block;
  border: 1px solid rgba(132, 132, 132, 0.2);
  padding: 10px 40px 10px 20px;
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  border-radius: 5px;
  transition: 0.5s;
}
.menu-res-add ul li a.active2 {
  color: #fff;
  box-shadow: 0 0 0 25px var(--color-main) inset;
}
.menu-res-add ul li a.active2 i {
  transform: rotate(0deg);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: var(--color-main);
}
.menu-res-add ul li a i {
  position: absolute;
  right: 12px;
  transform: rotate(90deg);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: var(--color-main);
  color: #fff;
  border-radius: 50%;
  top: 12px;
}
.menu-res-add ul li ul {
  display: none;
  padding-left: 15px;
  margin-bottom: 10px;
}
.menu-res-add ul li ul li a {
  padding-left: 20px;
  color: #6f6f6f;
}

.menu-active {
  left: 0;
  transition: 0.5s;
}
.menu-active .load-menu ul li:nth-child(2n) {
  left: 0%;
  transition-delay: 0.3s;
}
.menu-active .load-menu ul li:nth-child(2n+1) {
  left: 0%;
  transition-delay: 0.1s;
}

.load-menu {
  padding: 0 10px;
}
.load-menu ul li {
  position: relative;
  left: -100%;
  transition: 0.5s;
}

.thongtin-mb {
  margin-top: 20px;
}
.thongtin-mb ul {
  padding: 0 10px;
}
.thongtin-mb ul li {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.thongtin-mb ul li:not(:last-child) {
  margin-bottom: 5px;
}
.thongtin-mb ul li i {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  font-size: 16px;
  color: var(--color-main);
}

.close-menu {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 1px solid;
  width: 25px;
  font-size: 15px;
  text-align: center;
  line-height: 25px;
  color: var(--color-main);
}

.logo-mb {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

/* Search */
.search-res {
  position: relative;
}
.search-res .icon-search {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: #8aba2c;
  font-size: 16px;
  line-height: 1;
  margin: 0px;
  display: grid;
  place-items: center;
  background: rgba(138, 186, 44, 0.2);
  border-radius: 50%;
}
.search-res .icon-search.active {
  color: #fff;
  background: var(--color-main);
  border-radius: 50%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
}
.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  text-indent: 10px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* Main */
.title-main {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-main h2 {
  color: var(--color-hover);
  font-family: "1FT";
  font-size: 36px;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
.title-main p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "GR";
}

.title-detail {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-detail h1 {
  color: #39ab4a;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-related {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-related h2 {
  color: #39ab4a;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Embla */
.embla__button {
  cursor: pointer;
  outline: none;
  border: 0px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 17px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.embla__button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.embla__button:hover {
  background: var(--color-hover);
}
.embla__button.embla__button--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.embla__button.embla__button--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li.active a, .breadCrumbs ol li:hover a {
  color: var(--color-main);
}

/* Embla */
.embla__dots {
  position: absolute;
  top: 240px;
  right: calc(50% - 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.embla__dots .embla__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}
.embla__dots .embla__dot.embla__dot--selected {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #fff;
}
.embla__dots .embla__dot.embla__dot--selected::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  border-radius: 50%;
  background: #fff;
}

/* Criteria */
.criteria-item.embla__slide {
  margin-top: 60px;
}

.criteria-item.embla__slide.current + .criteria-item.embla__slide {
  margin: 0;
}

.section-criteria .wrap-content {
  max-width: 1385px;
}

.anime-svg {
  position: absolute;
  top: 40px;
  z-index: -1;
  margin: auto;
}

@keyframes stroke {
  0% {
    stroke-dasharray: 10, 10;
    stroke-dashoffset: 600;
  }
  100% {
    stroke-dasharray: 10, 10;
    stroke-dashoffset: 0;
  }
}
.animate-stroke {
  animation: stroke 10s linear infinite;
}

.criteria-item {
  transition: all 0.3s ease;
  text-align: center;
}
.criteria-item .criteria-photo {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="109" height="103" viewBox="0 0 109 103" fill="none"><path d="M6.84833 35.8238C35.1229 57.7379 19.7208 91.1142 47.8419 100.86C85.8911 114.046 115.268 63.0945 107.847 35.8238C90.4197 -28.2176 -29.5903 7.582 6.84833 35.8238Z" fill="black"></path></svg>');
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="109" height="103" viewBox="0 0 109 103" fill="none"><path d="M6.84833 35.8238C35.1229 57.7379 19.7208 91.1142 47.8419 100.86C85.8911 114.046 115.268 63.0945 107.847 35.8238C90.4197 -28.2176 -29.5903 7.582 6.84833 35.8238Z" fill="black"></path></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.criteria-item .criteria-photo::after {
    position: absolute;
    content: '';
    aspect-ratio: calc(109/103);
    width: 100%;
    height: 100%;
    background: #FFB83A;
    top: 0;
    left: 0;
    transition: .4s;
    transform-origin: left bottom;
    border-radius: 0 50% 50% 0;
    transform: scale(0);
}

.criteria-item .criteria-photo:hover::after {
   transform: scale(1.2);
}

.criteria-item .criteria-photo img {
  transition: all 0.6s linear;
  position: absolute;
  top: calc((100% - 52px) / 2);
  left: calc((100% - 52px) / 2);
  z-index: 2;
}
.criteria-item .criteria-photo:hover img {
  transform: rotateY(360deg);
}
.criteria-item .criteria-name {
  color: #1e7401;
  text-align: center;
  font-family: "GB";
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}
.criteria-item .criteria-desc {
  color: var(--text, #333);
  text-align: center;
  font-family: "GM";
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  margin-bottom: 0;
}

.bg-v2 {
  background: url(../images/main/bg_l_4.webp) no-repeat left top/auto, url(../images/main/bg_r_4.webp) no-repeat right calc(100% - 150px)/auto;
}

/* Product */
.section-product-hot {
  background: url(../images/main/bg_l_1.webp) no-repeat left bottom/auto, url(../images/main/bg_r_1.webp) no-repeat right bottom/auto;
}

.product-ajax-slide {
  padding: 1px;
  margin: -1px;
}

.product-item {
  text-align: center;
  font-family: "GSB";
}
.product-item .photo {
  margin-bottom: 1rem;
}
.product-item .photo .scale-img {
  border-radius: 10px;
  background: #fff;
}
.product-item .name {
  color: #333;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.product-item .name:hover {
  color: var(--color-hover);
}
.product-item .price {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}
.product-item .price .new {
  color: #ee2e24;
}

/* Product List */
.product-list-container:nth-child(odd) {
  background: url(../images/main/bg_l_1.webp) no-repeat left bottom/auto, url(../images/main/bg_r_1.webp) no-repeat right bottom/auto;
}

.product-list-container:nth-child(even) {
  background: url(../images/main/bg_l_2.webp) no-repeat left top/auto, url(../images/main/bg_r_2.webp) no-repeat right bottom/auto;
  background-color: #faf3eb;
}
.product-list-container:nth-child(even) .flex-product-list {
  flex-direction: row-reverse;
}

.see-list {
  text-align: center;
}
.see-list a {
  width: 158px;
  height: 45px;
  border-radius: 23px;
  background: #8aba2c;
  display: inline-block;
  line-height: 45px;
  color: #fff;
  text-align: center;
  font-family: "GSB";
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
}
.see-list :hover {
  background: var(--color-hover);
}

.title-product-list h2 {
  color: var(--chnh, #8aba2c);
  text-align: center;
  font-family: "GSB";
  font-size: 36px;
  font-style: normal;
  line-height: normal;
}
.title-product-list p {
  color: #333;
  text-align: center;
  font-family: "GR";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.product-list-title {
  position: relative;
  display: grid;
  grid-template-columns: 305px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.product-list-title::before {
  content: "";
  position: absolute;
  background: #009f93;
  height: 1px;
  right: 0;
  bottom: 0;
  left: 15px;
}
.product-list-title h2 {
  padding: 10px 10px 10px 30px;
  margin-bottom: 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.product-list-title .choose-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.product-list-title .choose-list .choose-item {
  cursor: pointer;
  color: #282828;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s ease;
}
.product-list-title .choose-list .choose-item.active, .product-list-title .choose-list .choose-item:hover {
  color: var(--color-main);
}
.product-list-title .product-list-viewmore {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f00;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.product-list-title .product-list-viewmore:hover {
  color: #009f93;
}

.section-about {
  background: url(../images/main/bg_3.webp) no-repeat center bottom/cover;
}
.section-about .about-cols:nth-child(1) {
  background: #fff;
  border-radius: 20px;
  padding: 45px 50px;
}
.section-about .about-cols:nth-child(1) .about-desc {
  color: var(--text, #333);
  text-align: center;
  font-family: "GR";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.section-about article.about-photo-item img {
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.5019607843);
}

/* News */
.section-news-index {
  position: relative;
  background: url(../images/main/bg_l_6.webp) no-repeat left top/auto , url(../images/main/bg_r_6.webp) no-repeat right bottom/auto ,  url(../images/main/may.webp) no-repeat center bottom/contain;
  background-color: #FAF3EB;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.news-item .photo {
  position: relative;
  flex-shrink: 0;
}
.news-item .photo .scale-img {
  border-radius: 5px;
}
.news-item .photo .date {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  background: #009f93;
  width: 45px;
  height: 62px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.news-item .photo .date span:nth-child(2) {
  position: relative;
  font-size: 17px;
  font-weight: 400;
}
.news-item .photo .date span:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 1px;
  background: #fff;
  top: -5px;
  left: calc(50% - 13px);
}
.news-item .info {
  flex: 1 1 0%;
}
.news-item .name {
  color: #282828;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-item .name:hover {
  color: var(--color-main);
}
.news-item .date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #818181;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}
.news-item .desc {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}

/* Video */
/* Partner */
.section-partner {
  background: #ecfffe;
}

.partner-slide {
  padding: 10px;
  margin: -10px;
}

.partner-item {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* News Detail */
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}

.othernews b {
  display: block;
  margin-bottom: 10px;
}

.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #151515;
  transition: all 0.3s ease;
}
.list-news-other li a:hover {
  color: var(--color-main);
}

.box-news-detail {
  display: block;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  padding: 10px 10px;
  margin-bottom: 20px;
}
.box-news-detail .info-news-detail {
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
  margin: 0;
}
.box-news-detail .info-news-detail i {
  color: var(--color-main);
}
.box-news-detail .contact-news-detail {
  display: block;
  background: var(--color-main);
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 11px;
  transition: all 0.3s ease;
}
.box-news-detail .contact-news-detail:hover {
  background: var(--color-hover);
}
.box-news-detail .title-related h2 {
  font-size: 24px;
}

.news-item-detail {
  position: relative;
  text-align: center;
}
.news-item-detail .news-photo {
  margin-bottom: 0.75rem;
}
.news-item-detail .news-photo .scale-img {
  border-radius: 10px;
}
.news-item-detail .news-info .news-name {
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-item-detail .news-info .news-name:hover {
  color: var(--color-main);
}
.news-item-detail .news-info .news-desc {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Sort */
.sort-select {
  display: flex;
  margin: 20px 0px;
  position: relative;
}
.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}
.sort-select .sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}
.sort-select .sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}
.sort-select .sort-select-main p:has(.check) {
  order: 1;
}
.sort-select .sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort-select .sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}
.sort-select .sort a.check i:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}
.sort-select .sort-show:before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

/* Category list */
.left-product {
  position: sticky;
  top: 60px;
}

.category-title {
  background: var(--color-main);
  padding: 10px 15px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

.category-product-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  padding: 10px;
}
.category-product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-product-list ul li {
  position: relative;
  padding: 10px 0;
}
.category-product-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.category-product-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.category-product-list ul li a .btn-toggle {
  border: 0;
  outline: 0;
  box-shadow: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  right: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #333;
}
.category-product-list ul li a .btn-toggle:hover {
  color: var(--color-main);
}
.category-product-list ul li a:hover, .category-product-list ul li a.active {
  color: var(--color-main);
}
.category-product-list ul li ul {
  display: none;
  padding: 0 20px !important;
}
.category-product-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* Product Detail */
.grid-properties {
  display: flex;
  gap: 10px;
  margin: 10px 0px;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span:hover, .grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span:hover:after, .grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

.filter {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: none;
}

.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
}
.attr-pro-detail li .attr-label-pro-detail {
  font-weight: 700;
  margin-bottom: 0;
}
.attr-pro-detail li .attr-content-pro-detail {
  font-weight: 400;
}
.attr-pro-detail li .price-new-pro-detail {
  font-size: 20px;
  color: #e30613;
  font-weight: 700;
}
.attr-pro-detail li .price-old-pro-detail {
  font-size: 17px;
  color: #666666;
  font-weight: 400;
  text-decoration: line-through;
}

/* Detail */
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
  padding-left: 20px;
}

.attr-pro-detail .cart-pro-detail a {
  cursor: pointer;
  width: auto;
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
}
.attr-pro-detail .cart-pro-detail a:hover {
  background-color: var(--color-btn) !important;
  box-shadow: 0 2px 10px var(--color-btn);
}
.attr-pro-detail .cart-pro-detail a.addnow {
  background: var(--color-main);
  margin-right: 0 !important;
}
.attr-pro-detail .cart-pro-detail a.buynow {
  background: var(--color-hover);
}
.attr-pro-detail .cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

.tabs-pro-detail .nav-tabs {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabs-pro-detail .nav-tabs .nav-link.active {
  border-top-color: #9d9d9d;
  color: #000;
}
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #9d9d9d;
}

/* pagination ajax */
.pagination {
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination-ajax {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pagination-ajax .page-item .page-link {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #ababab;
  border-radius: 50% !important;
  color: #333;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.pagination-ajax .page-item .page-link:hover {
  color: #333;
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination-ajax .page-item.active .page-link {
  color: #333;
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination-ajax .page-item.disabled .page-link {
  pointer-events: none;
}
.pagination-ajax .page-item:first-child .page-link, .pagination-ajax .page-item:last-child .page-link {
  font-size: 0 !important;
}
.pagination-ajax .page-item:first-child .page-link::before, .pagination-ajax .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.pagination-ajax .page-item:first-child .page-link::before {
  content: "\f053";
}
.pagination-ajax .page-item:last-child .page-link::before {
  content: "\f054";
}

/* Footer */
.footer-article {
  font-size: 14px;
  font-weight: 400;
}

.footer-article .footer-inner {
}
.footer-article .footer-maps-iframe {
  position: relative;
  height: 240px;
}
.footer-article .footer-maps-iframe iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-powered {
  text-align: center;
  padding: 1rem 0;
}
.footer-powered .footer-ul {
  color: #fff;
}
.footer-powered .footer-ul h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.footer-powered .footer-ul h3:hover {
  color: yellow;
}

/* Contact */
.contact-form .contact-input {
  color: #333;
}

.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/* Card fixed */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 400px;
  z-index: 10;
  display: none;
}

/* Btn Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

/* scrollToTop */
.scrollToTop {
  cursor: pointer;
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0, transparent 80%);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}
.hvr-float-shadow:active {
  transform: translateY(-5px);
}
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:focus {
  transform: translateY(-5px);
}
.hvr-float-shadow:focus:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:hover {
  transform: translateY(-5px);
}
.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}

.duongcheosang3 {
  position: relative;
  overflow: hidden;
}
.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 1;
}
.duongcheosang3::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}
.duongcheosang3:hover::before, .duongcheosang3:hover::after {
  transform: rotateY(180deg);
  transition-duration: 1.3s;
  opacity: 0;
  height: 100%;
  width: 100%;
}

/* Toc */
.toc-dropdown-button:before {
  content: "\f03a";
  font-family: "Font Awesome 6 Pro";
  background: #fff;
  color: var(--color-main);
  font-size: 22px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.meta-toc {
  padding: 0.5rem 1rem;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}

.box-readmore {
  display: none;
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  cursor: pointer;
  color: #333333;
  font-weight: 500;
  transition: all 0.3s ease;
}
.box-readmore ul li a:hover {
  color: var(--color-main) !important;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

/*dich google*/
.skiptranslate.goog-te-gadget {
  height: 30px;
  width: 30px;
  overflow: hidden;
}

.goog-te-banner-frame,
iframe#\:1\.container {
  display: none !important;
}

.skiptranslate {
  margin-bottom: -40px;
}

.ui-trans {
  background: var(--background-static);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.box-lang {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-translate {
  width: 100%;
  height: 30px;
}

#google_language_translator {
  clear: both;
  width: auto !important;
  text-align: right;
  display: none;
}

.box_changelang {
  position: relative;
  height: 35px;
  color: #fff;
  padding: 0px 10px;
  border: 1px solid #fff;
  border-radius: 7px;
  margin-left: 10px;
  min-width: 155px;
}

.box_changelang .lang_current {
  align-items: center;
  height: 35px;
  display: flex;
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  justify-content: center;
}

.box_changelang .lang_txt {
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.box_changelang .box_solang {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  width: 155px;
  background: var(--background-static);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  display: none;
  z-index: 999;
}

.box_changelang .box_solang a {
  color: #fff;
  font-size: 15px;
  display: inline-block;
  padding: 5px 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: 0.4s;
  border-bottom: 1px solid var(--color-sub);
  border-radius: 0;
  text-transform: capitalize;
}

.box_changelang .box_solang a:hover {
  padding-left: 10px;
}

.box_so {
  margin-left: 8px;
}

.box_lang a {
  display: block;
  cursor: pointer;
}

.box_lang {
  display: flex;
  gap: 4px;
}

.wrap-newsletter {
  background: url(../images/main/bg_5.webp) no-repeat center center/cover;
}

.human {
  position: absolute;
  bottom: 0;
  right: 0;
}

.newsletter-input svg {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.newsletter-input {
  position: relative;
}

.newsletter-button button {
  border-radius: 5px;
  background: var(--ph, #FFB83A);
  color: var(--trng, #FFF);
  font-family: "GB";
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  height: 100%;
}

.album-item a span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0;
  font-size: 16px;
  font-family: "GM";
}

.album-item a:hover span {
  opacity: 1;
}

.news-index-date svg {
  display: inline-block;
  transform: rotate(90deg);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%, 50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}
.news-index-name a {
  color: #333;
  font-family: 'GB';
  font-size: 17px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
}

.news-index-desc {
  color: #333;
  font-family: 'GR';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; 
}

.news-index-date {
  display: inline-block;
  margin-bottom: 0;
  position: absolute;
  transform: rotate(-90deg);
  right: -50px;
  top: 110px;
}

.news-index-info {
  background: white;
  padding: 25px;
  padding-top: 230px;
  position: relative;
  margin-top: -220px;
  z-index: 1;
}
.news-index-date span {
  color: var(--text, #333);
  font-family: 'GM';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.news-index-photo a img {
  border-radius: 15px;
}

.news-index-photo {
  position: relative;
  z-index: 2;
}
.news-index-cols .embla__slide:nth-child(even) .news-index-item {
  display: flex;
  flex-wrap: wrap;
}
.news-index-cols .embla__slide:nth-child(even) .news-index-photo {
  order: 2;
}
.news-index-cols .embla__slide:nth-child(even) .news-index-info {
  order: 1;
  margin-top: 0;
  padding: 25px;
  padding-bottom: 230px;
  margin-bottom: -220px;
}
.news-index-cols .embla__slide:nth-child(even) .news-index-date{
  bottom: 100px;
  top: unset;
}
.section-footer{
  background: url(../images/main/bgf.webp) no-repeat center bottom/cover ;
}
.footer-copyright span {
  color: #1E7401;
}
h2.footer-title {
  color: var(--ch, #1E7401);
  font-family: 'GB';
  font-size: 18px;
  font-style: normal;
  line-height: 26px; 
  text-transform: uppercase;
}

ul.footer-ul h3 a {
  color: var(--text, #333);
  font-family: 'GR';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
}

ul.footer-ul {
  padding: 0;
}

li.footer-li {margin-left: 20px;}
.footer-inner {
  border-radius: 15px;
  border: 1px solid var(--chnh, #8ABA2C);
  background: var(--trng, #FFF);
  margin-bottom: 10px;
  padding: 10px;
}

.footer-inner span {
  writing-mode: sideways-lr;
  color: var(--chnh, #8ABA2C);
  font-family: 'GB';
  font-size: 14px;
  font-style: normal;
  line-height: 26px;
  text-transform: uppercase;
}
.slideshow-item {
  position: relative;
}

.slideshow-item::after {
  content: '';
  position: absolute;
  background: url(../images/main/may.webp) no-repeat bottom;
  width: 100%;
  height: 278px;
  background-size: 100%;
  bottom: -2px;
  left: 0;
}
.footer-map a {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #89bb2d;
  padding: 5px;
  width: calc(50% - 10px);
  border-radius: 10px;
  background: white;
}

.footer-map {
  display: flex;
  justify-content: space-between;
}