@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?q4z581");
  src: url("../fonts/icomoon.eot?q4z581#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?q4z581") format("truetype"),
    url("../fonts/icomoon.woff?q4z581") format("woff"),
    url("../fonts/icomoon.svg?q4z581#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mail:before {
  content: "\e901";
  color: #f3e1b3;
}
.icon-Phone:before {
  content: "\e902";
  color: #f3e1b3;
}
.icon-Polygon:before {
  content: "\e903";
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-top: 4px;
}
.icon-language:before {
  content: "\e904";
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.icon-chat_bubble:before {
  content: "\e900";
  color: #fff;
}

.container {
  max-width: 1440px;
  padding: 0 20px;
  margin: auto;
}
.text-heading {
  color: 3e5B3F;
  font-size: ;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
.flex-space-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-50 {
  gap: 50px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.space-block {
  height: 70px;
  background-color: transparent;
}
.infomation {
  background-color: var(--cream-color);
}
.title {
  color: var(--green-color);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 50px;
  text-align: center;
}
#chatAi {
  position: fixed;
  left: 15px;
  bottom: 50px;
  z-index: 20;
}
.chat-ai-global {
  left: 50px;
  top: 0;
  width: 161px;
  height: 161px;
  border-radius: 50%;
  background-color: #c1cfa1;
  z-index: 8;
  cursor: pointer;
}
.chat-ai-global span {
  font-size: 45px;
  color: #fff;
  font-weight: bold;
}
.chat-ai-global .btn-chat {
  width: 100%;
  height: 100%;
  position: relative;
}
.chat-ai-global .btn-chat .icon-chat_bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  font-size: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-chat-modal {
  visibility: hidden;
  position: absolute;
  z-index: 99999999;
  top: -100%;
  right: -100%;
  transform: translate(65%, -66%);
  width: 440px;
  height: 640px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.open-box-chat {
  visibility: visible;
}
.close-box-chat {
  visibility: hidden;
}
.box-chat-name {
  background-color: var(--green-color);
  border-radius: 20px;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding: 25px;
}
.box-chat-body .create-message {
  height: 45px;
  position: relative;
}
.box-chat-body .create-message input {
  flex: 1;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 10px 20px;
  height: 100%;
}
.box-chat-body .create-message button {
  width: 75px;
  color: #fff;
  font-weight: 600;
  background-color: var(--green-color);
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  height: 100%;
}
.box-chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 40px;
}
.box-chat-body .content {
  flex: 1;
}
.box-chat-body .create-message .suggest {
  position: absolute;
  top: -10px;
  transform: translateY(-100%);
  left: 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  padding: 4px 50px;
  border: 1px solid #d2d2d2;
  background-color: #fff;
  color: var(--text-gray);
  font-weight: 200;
  width: auto;
  height: auto;
}
#closeBoxChat {
  cursor: pointer;
  padding: 0 5px;
}
.box-chat-body .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.box-chat-body .message {
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
  position: relative;
}
.box-chat-body .message.auto {
  justify-content: flex-start;
}
.box-chat-body .message.auto p {
  background-color: #c1cfa1;
  color: #fff;
}
.box-chat-body .message p {
  border-radius: 10px;
  padding: 15px 30px;
  border: 1px solid #e9e9e9;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  display: inline-block;
  color: black;
  font-size: 16px;
  font-weight: 300;
}
.box-chat-body .message p::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.box-chat-body .message.auto p::after {
  left: 20px;
  right: auto;
  border-top-color: #c1cfa1;
}
