/* #region common */
:root {
  --padding-pc-horizontal: 64px;
  --padding-tablet-horizontal: 32px;
  --padding-mobile-horizontal: 16px;
  --main-text-color: #24ba6c;
  --seccond-text-color: #28a745;
  --desc-text-color: #6c757d;
}

.pv-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.w-fit {
  width: fit-content !important;
}

.text-justify {
  text-align: justify !important;
}

.mess-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--main-text-color);
  color: #fff;
  cursor: pointer;
  z-index: 9999;
  animation: breathe 7s linear infinite;
}

.mess-btn div {
  display: flex;
  width: 70px;
  height: 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mess-btn i {
  font-size: 30px;
}

@keyframes breathe {
  0% {
    box-shadow: 0 0 0 5px rgba(188, 237, 243, 0.3),
      0 0 0 10px rgba(188, 237, 243, 0.3), 0 0 0 15px rgba(188, 237, 243, 0.3);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(188, 237, 243, 0.3),
      0 0 0 15px rgba(188, 237, 243, 0.3), 0 0 0 20px rgba(188, 237, 243, 0.3);
  }
  100% {
    box-shadow: 0 0 0 5px rgba(188, 237, 243, 0.3),
      0 0 0 10px rgba(188, 237, 243, 0.3), 0 0 0 15px rgba(188, 237, 243, 0.3);
  }
}

body {
  font-family: "Helvetica Neue", "Roboto", sans-serif;
}

p {
  margin: 0;
}

.heading-icon {
  width: 100px;
  margin-bottom: 10px;
}

.main-btn {
  background-color: #26543c;
  color: #fff;
}

.title-section {
  color: var(--main-text-color);
  margin: 0;
  position: relative;
}

.desc-text {
  color: var(--desc-text-color);
}

.title-section::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--main-text-color);
  position: absolute;
  left: 0;
  bottom: -10px;
}
/* #endregion */
/* #region header */
.h-padding {
  padding: 10px var(--padding-mobile-horizontal);
}

.hv-padding {
  padding: var(--padding-mobile-horizontal);
}

@media (min-width: 768px) {
  .h-padding {
    padding: 10px var(--padding-tablet-horizontal);
  }
  .hv-padding {
    padding: var(--padding-tablet-horizontal);
  }
}

@media (min-width: 992px) {
  .h-padding {
    padding: 10px var(--padding-pc-horizontal);
  }
  .hv-padding {
    padding: var(--padding-pc-horizontal);
  }
}

.main-logo {
  width: 160px;
}

#container-search button.open-search:active {
  display: none;
}

.search-box {
  width: 200px;
  padding: 0 10px;
  border: 1px solid var(--main-text-color);
  border-radius: 28px;
}

.search-box.mobile {
  width: 200px;
  padding: 0 10px;
  border: 1px solid var(--main-text-color);
  border-radius: 28px;
  background-color: #ece6f0;
}

.search-box input,
.search-box input:focus {
  border: none;
  outline: none;
  box-shadow: none;
  width: 80%;
  background-color: transparent;
  color: #49454f;
}

#container-search button,
#container-search button:focus {
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--main-text-color);
  width: 20%;
  background-color: transparent;
  text-align: right;
}

.search-box button,
.search-box button:focus {
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--main-text-color);
  width: 20%;
  background-color: transparent;
  text-align: right;
}

.search-box.mobile button,
.search-box.mobile button:focus {
  border: none;
  outline: none;
  box-shadow: none;
  color: #49454f;
  width: 20%;
  background-color: transparent;
  text-align: right;
}

.login-btn {
  color: var(--main-text-color);
  font-size: 20px;
  padding: 0 10px;
}

.nav-link.active {
  color: var(--main-text-color) !important;
}

.navbar-collapse.mobile {
  background-color: #f0fcf6;
  padding: 10px;
}

.navbar-collapse.mobile ul {
  background-color: transparent;
}

.navbar-collapse.mobile ul li {
  border-bottom: 1px solid #d9d9d9;
}
/* #endregion */

/* #region custom dropdown */
.m-dropdown-menu {
  border: none;
}

.dropdown-menu li {
  position: relative;
}
.dropdown-menu .dropdown-item {
  font-weight: bold;
  font-size: 16px;
}
.dropdown-menu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.product-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.product-menu ul {
  list-style: none;
}

.product-menu ul li {
  border-bottom: none !important;
  padding: 5px;
}

.dropdown-menu > li:hover > .submenu {
  display: block;
}

.nav-item .nav-link {
  font-weight: bold;
  font-size: 16px;
}

/* #endregion */

/* #region footer */

.main-footer {
  background-color: #f0fcf6;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #26543c;
}

.main-footer a {
  text-decoration: none;
  color: #26543c;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer i {
  color: #24ba6c;
}

/* #endregion */

/* #region slider */

#homeBanner .carousel-item img {
  height: 440px;
  object-fit: cover;
}

/* #endregion */

/* #region about us */
.about-us {
  background-color: #efefef;
}

.about-us .about-us-info {
}

.about-us .about-us-img {
  position: relative;
  padding: 0;
}

.about-us .about-us-img .img-frame {
  position: absolute;
  width: 85%;
  height: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.about-us .about-us-img .img-center {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* #endregion */

/* #region feature */

.feature {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.feature h5 {
  color: var(--main-text-color);
}

.feature-item {
  padding: 10px;
  text-align: center;
  background-color: white;
}

.feature-item img {
  width: 50%;
}

.feature .feature-line {
  width: 10%;
  min-width: 80px;
  color: var(--main-text-color);
  border-width: 2px;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* #endregion */

/* #region statisticts */

.statistics {
  background: rgb(36, 186, 108);
  background: linear-gradient(
    90deg,
    rgba(36, 186, 108, 1) 0%,
    rgba(16, 84, 49, 1) 100%
  );
}

.statistics-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.statistics-item .statistics-icon {
  width: 80px;
  height: 80px;
  background-color: var(--seccond-text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.statistics-item .statistics-icon i {
  font-size: 40px;
  color: #fff;
}

.statistics-item h3 {
  color: #fff;
  margin-top: 5px;
}

.statistics-item p {
  color: #fff;
  font-size: 18px;
}

/* #endregion */

/* #region product */

.products {
  background-color: #efefef;
}

.products #productsCarousel {
  padding: 1em;
}
.products .card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  padding: 10px;
}

.products .card .img-wrapper {
  max-width: 100%;
  max-height: 273px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.products .img-wrapper:hover img {
  transform: scale(1.05);
  z-index: 1;
}

.products img {
  max-height: 100%;
  transition: transform 0.3s ease;
}

.products .product-status {
  top: 10px;
  position: absolute;
  z-index: 2;
}

.products .product-status .arrow {
  width: 60px;
  height: 30px;
  background-color: var(--main-text-color);
  text-align: center;
  position: relative;
}

.products .product-status .arrow .label {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.products .product-status .arrow .top-triangle {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-left: 30px solid var(--main-text-color);
  border-bottom: 15px solid transparent;
  top: 0;
  margin-left: 60px;
  position: absolute;
}

.products .product-status .arrow .bottom-triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 30px solid var(--main-text-color);
  border-bottom: 0px solid transparent;
  margin-left: 60px;
  position: absolute;
  bottom: 0;
}

.product-item .read-more {
  width: 100%;
  text-align: right;
  color: var(--main-text-color);
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-header .carousel-control button {
  border: none;
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .products .carousel-inner {
    display: flex;
  }
  .products .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
}

@media (max-width: 768px) {
  .products .carousel-inner {
    display: flex;
  }
  .products .carousel-item {
    margin-right: 0;
    flex: 0 0 100%;
    display: block;
  }
}

/* #endregion */

/* #region posts */
.posts .post {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.posts .post .img-wrapper {
  max-width: 100%;
  max-height: 273px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.post-time {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 2;
}

.posts .img-wrapper:hover img {
  transform: scale(1.05);
  z-index: 1;
}

.posts img {
  max-height: 100%;
  transition: transform 0.3s ease;
}

.posts .post-body {
  margin: 10px 0;
}

.posts .post-title {
  font-size: 14px;
  font-weight: bold;
}

.posts .post-title:hover {
  color: var(--main-text-color);
  cursor: pointer;
}

.posts .post-desc {
  font-size: 14px;
  font-style: italic;
}

/* #endregion */

/* #region contact*/
.contact {
  background: rgb(36, 186, 108);
  background: linear-gradient(
    90deg,
    rgba(36, 186, 108, 1) 0%,
    rgba(16, 84, 49, 1) 100%
  );
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact .contact-form {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
}

.contact .contact-info {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
}
/* #endregion */

/* #region detail*/
.free-consultation {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  /* align-items: center; */
  border: 1px dashed black;
  border-radius: 5px;
  width: 100%;
  padding: 30px 10px 20px;
}

.free-consultation .title {
  position: absolute;
  left: 15px;
  top: 0;
  transform: translateY(-50%);
  text-transform: uppercase;
  background-color: var(--main-text-color);
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}

.free-consultation .content > span {
  color: var(--main-text-color);
  font-weight: bold;
  font-size: 20px;
}

.free-consultation input {
  padding: 10px;
}





/* #endregion */
