.h-logo {
  max-width: 10rem;
}
.menu {
  top: 0;
  left: -100%;
  background-color: #fb6d43;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-width: min(350px, 80%);
  z-index: 100;
}
.menu ul li {
  display: block;
}
.menu.active {
  left: 0;
}
.menu ul li a {
  color: white;
  padding: 0.625rem 0.9375rem;
  border-top: 1px solid #fff;
  display: block;
  text-transform: capitalize;
}
.over-lay.active {
  right: 0;
}
.list-stat .item .number {
  /* background-image: url(../images/decor_number.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.list-text .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.list-text .item:nth-child(odd) {
  background-image: url(../images/decor_text_one.png);
  color: #ffe479;
}
.list-text .item:nth-child(even) {
  background-image: url(../images/decor_text_two.png);
  color: #fb6d43;
}
.tab-solution li {
  display: block;
  white-space: nowrap;
  color: #6f6e6e;
  background-color: #cdcdcd;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 1.875rem;
  cursor: pointer;
}

.tab-solution li.active {
  color: #ffe479;
  background-color: #fb6d43;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.section-about {
  background-image: url(../images/background-section-about.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 5rem;
}
.section-partner {
  /* background-image: url(../images/background-partner.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* padding-bottom: 5rem; */
}
.item-partner-home {
  background-image: url(../images/background-partner.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 2rem 1.5rem;
}
.item-partner-home:hover img {
  transform: scale(1.1);
}
.animate-y {
  animation: moveUpDown 2s linear infinite;
  z-index: -1;
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.tab-product .tab-link.active {
  background-color: #fb6d43;
  color: #ffe479;
}

.module-tabs .tab-content {
  display: none;
}

.module-tabs .tab-content.active {
  display: block;
}

.form-footer form {
  display: flex;
  flex-wrap: wrap;
}

.form-footer .input-footer,
.form-footer .select-footer,
.form-footer .textarea-footer,
.form-footer .radio-footer,
.form-footer .submit-footer {
  width: 100%;
  margin-bottom: 1rem;
}

.form-footer input,
.form-footer textarea {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: #76a13f;
  border-radius: 2rem;
  color: #fff;
}

.form-footer input::placeholder,
.form-footer textarea::placeholder {
  color: #fff;
}

.form-footer select {
  position: relative;
}

.form-footer select option {
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #000;
}

/* .form-footer p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #636363;
  margin-bottom: 0.5rem;
} */

.form-footer input[type="radio"] {
  display: none;
}

.form-footer .radio-footer label {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background-color: #cdcdcd;
  border-radius: 2rem;
  color: #6f6e6e;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}

.form-footer .radio-footer label:hover {
  background-color: #76a13f;
  color: #fff;
}

.form-footer .radio-footer input[type="radio"]:checked + label {
  background-color: #76a13f;
  color: #fff;
}

.form-footer input[type="submit"] {
  width: fit-content;
  margin: 0 auto;
  border-radius: 3.25rem;
  background-color: #fb6d43;
  color: #ffe479;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem 2rem;
  transition: all 0.3s;
  border: 1px solid #fb6d43;
}

.form-footer input[type="submit"]:hover {
  background-color: #fff;
  color: #fb6d43;
}

.circle {
  position: absolute;
  /* display: inline-block; */
  border-radius: 50%;
  animation: scale_circle 2s linear infinite;
}

.round_ring {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  animation: scale_circle 2s linear infinite;
}

.line-circle {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  animation: spin_around 2s linear infinite;
}

.line-circle::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fb6d43;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-in-line {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  animation: spin_around 2s linear infinite;
}

.circle-in-line::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fb6d43;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%);
}

.circle-out-line {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  animation: spin_around 2s linear infinite;
}

.circle-out-line::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fb6d43;
  position: absolute;
  top: 15%;
  left: -25%;
  transform: translate(-50%);
}

@keyframes spin_around {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scale_circle {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.pagination-all {
  display: inline-flex;
  justify-content: center;
  width: auto !important;
}
.pagination-all .swiper-pagination-bullet {
  background-color: #8b8b8b;
  width: 0.75rem;
  height: 0.75rem;
}
.pagination-all .swiper-pagination-bullet-active {
  background-color: #fb6d43;
}
.pagination-banner_home .swiper-pagination-bullet-active {
  background-color: #76a13f;
}
.list-stat .item .number:hover .circle_number {
  animation: moveUpDown 2s linear infinite;
  z-index: -1;
}
.form-footer select,
.selected-option {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: #76a13f;
  border-radius: 2rem;
  color: #fff !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/down_arrow.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5rem) center;
  background-size: 1rem;
}

.form-footer select::-ms-expand {
  display: none; /* Ẩn icon mặc định trên IE */
}
.section-about .tab-solution,
.box_partner_mobile,
.section_solution .tab-solution {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sticky {
  position: sticky;
  position: -webkit-sticky;
}
.z-100 {
  z-index: 100;
}
.custom-select-container {
  position: relative;
  cursor: pointer;
}
.options-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 15px;
  background-color: white;
  display: none;
  z-index: 1000;
}
.option {
  padding: 1rem;
  cursor: pointer;
  border-radius: 15px;
}
.option:hover {
  background-color: var(--web-color-orange);
}
.slide-banner_home .swiper-wrapper {
  transition-timing-function: linear;
}
.slide-banner_home
  .swiper-wrapper
  .swiper-slide
  .banner_box_text
  p:nth-child(1) {
  opacity: 0;
  transform: translateY(-6rem);
  transition: all 0.5s 0.5s;
}
.slide-banner_home
  .swiper-wrapper
  .swiper-slide
  .banner_box_text
  p:nth-child(2) {
  opacity: 0;
  transform: translateX(6rem);
  transition: all 0.5s 0.5s;
}
.slide-banner_home
  .swiper-wrapper
  .swiper-slide
  .banner_box_text
  p:nth-child(3) {
  opacity: 0;
  transform: translateY(6rem);
  transition: all 0.5s 0.5s;
}
.slide-banner_home
  .swiper-wrapper
  .swiper-slide.swiper-slide-active
  .banner_box_text
  p {
  transform: translate(0);
  opacity: 1;
}
.section_solution .tab-content .box_img > div:nth-child(1) {
  opacity: 0;
  transform: translateY(-6rem);
  transition: all 0.5s 0.5s;
}
.section_solution .tab-content .box_img > div:nth-child(2) {
  opacity: 0;
  transform: translateX(6rem);
  transition: all 0.5s 0.5s;
}
.section_solution .tab-content .box_img > div:nth-child(3) {
  opacity: 0;
  transform: translateY(6rem);
  transition: all 0.5s 0.5s;
}
.section_solution .tab-content.active .box_img > div {
  transform: translate(0);
  opacity: 1;
}
.c-img {
  position: relative;
  display: block;
}
.c-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%!important;
  -o-object-fit: cover;
  object-fit: cover;
}
.img_about_solution {
  overflow: unset;
}
.img_about_solution img {
  top: -16px;
  left: 22px;
  border-radius: 154px 0px 0px 0px;
}
.section {
  padding: 2rem 0;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.btn_banner {
  animation: pulse 1s infinite;
}
.item_procedure::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../images/big_right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 20px auto; /* Adjust as needed for spacing */
  position: absolute;
  top: 50%;
  right: -18%;
}

.item_procedure:nth-child(3n)::after {
  content: none;
}
.filled {
  background-color: var(--web-color-orange) !important;
}
.section-marketing .item {
  margin-bottom: 5rem;
}
.box_solutionPage::before {
  content: '';
  background: linear-gradient(0deg, #eb722f 0%, rgba(235, 114, 47, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 75%;
  z-index: 1;
}
.tab_solution_cate ul > li, .tab_proj_page ul > li {
  border-radius: 30px;
  background: #cdcdcd;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.tab_solution_cate ul > li.active, .tab_proj_page ul > li.active{
  background: var(--web-color-orange);
  
}
.tab_solution_cate ul > li.active > a, .tab_proj_page ul > li.active > a{
  color: var(--web-color-yellow);
}
.section_solution .module-tab-content  .box_img img{
  object-fit: cover;
}
.tab-content.active,
.tab-content-sm.active {
  display: block;
}
.tab-link-sm.active a{
  color: #76A13F;
}
 .tab-link-sm:first-child a, .tab_proj_page .tab-link:first-child a{
  padding-left: 0;
}
.tab-link-sm, .tab_proj_page .tab-link{
  padding-bottom: 0.5rem;
  border-bottom: 3px solid transparent;
  text-wrap: nowrap;
}
.tab-link-sm.active{
  border-bottom: 3px solid #76A13F;
}
.breadcrumb ul{
  display: flex;
  align-items: center;
}
.breadcrumb ul li:first-child{
  display: flex;
  align-items: center;
}
.breadcrumb ul li:first-child::after{
  content: '\f105';
  font-family: "fontAwesome";
  padding: 0 1rem;
}
.breadcrumb ul li a{
  display: inline-block;
}
.tab-map .tab-link.active{
  background-color: var(--web-color-orange);
  color: var(--web-color-yellow);
  border-radius: 20px 20px 0 0;
}
.tab-tree .tab-link.active svg path{
  fill: var(--web-color-orange);
}
/* .tab-tree{
  max-height: 88vh;
} */
/* .img_banner img{
  max-height: 88vh;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
} */
.font_v2{
  font-family: "Constructio-Grotesk";
}
.tab-tree ul {
  position: relative;
}

.tab-tree .tab-link svg path {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.tab-tree .tab-link:hover svg path {
  fill: var(--web-color-orange);
}

.tab-tree ul li:nth-child(1) {
  position: absolute;
  width: 8.3%;
  /* top: 47%; */
  top: 47%;
  left: 21%;
  z-index: 1;
}

.tab-tree ul li:nth-child(2) {
  position: absolute;
  width: 6.7%;
  /* top: 20.7%; */
  top: 12.7%;
  left: 24.1%;
  z-index: 1;
}

.tab-tree ul li:nth-child(3) {
  position: absolute;
  width: 5.9%;
  /* top: 18%; */
  top: 9%;
  left: 31.3%;
  z-index: 1;
}

.tab-tree ul li:nth-child(4) {
  position: absolute;
  width: 9.4%;
  /* top: 19.1%; */
  top: 10.1%;
  left: 38.6%;
  z-index: 1;
}

.tab-tree ul li:nth-child(5) {
  position: absolute;
  width: 10.2%;
  /* top: 42%; */
  top: 40%;
  left: 38%;
  z-index: 1;
}

.tab-content-tree {
  position: absolute;
  width: 26.5%;
  height: 43%;
  right: 13.4%;
  /* bottom: 9.7%; */
  bottom: 6.7%;
  padding-top: 9.5%;
  z-index: 1;
}

.overflow-y-auto {
  overflow-y: auto;
}

.pr-2 {
  padding-right: 0.5rem;
}
.solution_circle{
  /* border-top: 10px solid var(--web-color-orange);
  border-bottom: 10px solid #ebebeb; */
}
.tab_timeline .tab-link{
  text-wrap: nowrap;
  background-color: #6F6E6E;
  border-radius: 30px;
}
.tab_timeline .tab-link.active{
  background-color: var(--web-color-green);
}
.icon_solution_circle img{
  object-fit: contain!important;
}
.solution_circle {
  position: relative;
  /* width: 100%;
  height: 100%; */
  border-radius: 50%;
  overflow: hidden;
}

.solution_circle::before,
.solution_circle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: border-box;
}

.solution_circle::before {
  border: 15px solid var(--web-color-orange);
  border-bottom-color: transparent;
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
}

.solution_circle::after {
    border: 15px solid #F0F0F0;
    border-top-color: transparent;
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}
#modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tab-content-tree .tab-content .s-content{
  opacity: 0;
  transform-origin: center;
  scale: 0.75;
}
.tab-content-tree .tab-content.active .s-content{
  opacity: 1;
  scale: 1;
  animation: animate-in-and-out 1s ;
}
.tab-title-tree {
  position: absolute;
  width: 100%;
  height: 13%;
  right: 0;
  bottom: 61.7%;
  z-index: 1;
}
.tab-title-tree > svg{
  margin: auto auto;
  height: 100%;
}
#parent {
  position: relative;
}

.dot_item_solution {
  position: absolute;
}
.dot_content_item_solution{
  text-align: center;
  width: 120px;
}
ul.tab-solu li.tab-link:first-child{
  border-top-left-radius: 40px;
}
ul.tab-solu li.tab-link:last-child{
  border-top-right-radius: 40px;
}
ul.tab-solu li.tab-link.active{
  background-color: var(--web-color-orange);
}
ul.tab-solu li.tab-link.active a{
  color: var(--web-color-yellow);
}
ul.tab-solu li.tab-link:hover a{
  color: var(--web-color-yellow);
}
.list-tab-solu{
  border: 5px solid var(--web-color-orange);
  border-radius: 0px 40px 40px 40px;
}
@keyframes animate-in-and-out {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
html{
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .section_banner .icon1,
  .section_banner .icon2,
  .section_banner .icon3,
  .section_banner .icon4 {
    display: none;
  }
  .section-partner .icon5,
  .section-partner .icon6,
  .section-partner .icon7,
  .section-partner .icon8,
  .section-partner .icon9,
  .section-partner .icon10,
  .section-partner .icon11,
  .section-partner .icon12,
  .section-partner .icon13 {
    display: none;
  }
  .section-feedback .icon_mobile,
  .section-marketing .icon_mobile,
  .icon_mobile, .icon6, .icon8 {
    display: none;
  }
  .footer_icon_mobile1 {
    display: none;
  }
  .footer_icon_mobile2 {
    top: -2rem;
    right: 2rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  .footer_icon_mobile3 {
    width: 4.3125rem;
    height: 4.3125rem;
    top: -1rem;
    left: -1rem;
  }
  .footer_icon_mobile4 {
    width: 5.4375rem;
    height: 5.4375rem;
    bottom: -3rem;
    right: -6%;
  }
  .header .h-logo img {
    max-width: 114px;
  }
  .section-feedback .item-feedback .s-content {
    font-size: 0.875rem;
  }
  .section-about {
    background-size: cover;
    padding-top: 1rem;
    background-position: left;
  }
  .img_about_solution img {
    top: -10px;
    left: 9px;
  }
  .item_procedure::after {
    content: none;
  }
  .box_pagination_banner_home {
    bottom: 8%;
    left: 3%;
  }
  .box_partner_mobile {
    justify-content: space-around;
  }
  .section-marketing .item {
    margin-bottom: 2rem;
  }
  .tab-map .tab-content iframe{
    height: 200px;
  }
  .section{
    padding: 1rem 0;
  }
  .tab-content-tree{
    display: none;
  }
  .content_tab_tree_mobile{
    display: block;
  }
}
@media not all and (min-width: 1024px) {
  .tab_solution_cate ul > li{
    padding: 0.75rem;
  }
  .tab_proj_page ul > li{
    min-width: 80%;
  }
}
@media (min-width: 1024px) {
  .menu {
    max-width: unset;
  }
  html{
    font-size: 16px;
  }
  .menu > ul > li {
    display: inline-block;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
  }
  .menu > ul > li:not(:last-child) {
    margin-right: 1rem;
  }
  .menu ul li a {
    border: unset;
    padding: unset;
  }
  .menu {
    margin-right: 1.5rem;
  }
  .box_pagination_banner_home {
    bottom: 20%;
    left: 1.5%;
  }
  .content_partner{
    min-height: 477px;
  }
  .tab-solution li:not(:last-child) {
    margin-right: 1.875rem;
  }
 
}
@media (min-width: 1280px) {
  .menu > ul > li:not(:last-child) {
    margin-right: 2.5rem;
  }
  .menu {
    margin-right: 7.5rem;
  }
  .box_pagination_banner_home {
    bottom: 21%;
    left: 1%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1230px) {
  .box_pagination_banner_home {
    bottom: 21%;
    left: 9%;
  }
}
@media screen and (min-width: 1231px) and (max-width: 1280px) {
  .box_pagination_banner_home {
    bottom: 21%;
    left: 1%;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1395.98px) {
  .box_pagination_banner_home {
    bottom: 21%;
    left: 9%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1535.98px) {
  .section-partner .item-partner-home {
    width: 7.4375rem;
    height: 7.4375rem;
  }
}
@media (width: 1440px){
  .section-marketing{
    margin-top: 0rem;
  }
  .section-feedback .icon15{
    bottom: 20%;
  }
  .avatar{
    width: 11.5rem;
    height: 11.5rem;
  }
  .avatar img{
    top: 34%;
  }
}
@media screen and (min-width: 1396px) and (max-width: 1535.98px) {
  .box_pagination_banner_home {
    bottom: 21%;
    left: 5%;
  }
}

@media (min-width: 1536px) {
  .box_pagination_banner_home {
    bottom: 23%;
    left: 1%;
  }
}
@media (min-width: 1920px) {
  .box_pagination_banner_home {
    bottom: 25%;
    left: 5.5%;
  }
}
.custom-select-container:hover .options-container {
  display: block;
}