@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Neue-Montreal";
  src: url("/website/assets/font/NeueMontreal-Regular.otf");
}
:root {
  --primary_color: #006b4f !important;
  --secondary_color: #ee2d43 !important;
  --border_color: #ccc9c9 !important;
  --white_color: #ffffff !important;
  --text_color: #333 !important;
  --red_color: #ce2e28 !important;
  --green_color: #00312d !important;
  --lightGreen_color: #94d227;
  --yellow_color: #daac50;
  --primary_font: "Poppins" !important;
  --secondary_font: "Inter" !important;
  --tarnary_font: "Neue-Montreal" !important;
}

* {
  margin: 0;
}

body {
  width: 100%;
  margin: 0;
  font-family: var(--primary_font);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

input.form-control:focus,
input:focus {
  outline: none;
  box-shadow: none;
}
a{
  text-decoration: none !important;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.open1200 {
  display: none !important;
}
.open1350 {
  display: none !important;
}
.open768 {
  display: none !important;
}
.devider {
  width: 100%;
  border-bottom: 1px solid #cac9c9;
}
.flex-wrap-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  gap: 1rem;
}

::-webkit-scrollbar {
  width: 5px;
  border-radius: 16px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #107366;
}
.round-btn{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--text_color);
  background-color: var(--white_color);
  border: none;
  cursor: pointer;
}
.round-btn:focus{
  outline: none;
}

@media screen and (max-width: 1200px) {
  .open1200 {
    display: block !important;
    display: flex !important;
  }
  .close1200 {
    display: none !important;
  }
}
@media screen and (max-width: 1350px) {
  .open1350 {
    display: block !important;
    display: flex !important;
  }
  .close1350 {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden768 {
    display: none !important;
  }
  .close768{
    display: none !important;
  }
  .open768{
    display: block !important;
  }
}

.error{
  color: var(--red_color);
}

.contact-error{
  margin-top: -12px;
  margin-bottom: 12px;
}