@font-face {
  font-family: mulish;
  src: url("../font/Mulish-Regular.ttf");
}
@font-face {
  font-family: nunito;
  src: url("../font/NunitoSans_10pt-Light.ttf");
}
@font-face {
  font-family: raleway;
  src: url("../font/Raleway-Light.ttf");
}
@font-face {
  font-family: zenmaru;
  src: url("../font/ZenMaruGothic-Regular.ttf");
}
@font-face {
  font-family: roboto;
  src: url("../font/Roboto-Regular.ttf");
}
body {
  position: relative;
}

.all-body {
  margin: 0px;
}
.all-body.green {
  background: rgb(252, 253, 245);
}

.no-list-bullet {
  list-style-type: none;
}

.web-max-limit {
  max-width: 1200px;
}

.font-default-police {
  font-family: Verdana;
}

.success-color {
  color: #339133;
}

.footer-text-margin {
  margin: 22px 8px;
}
@media (max-width: 750px) {
  .footer-text-margin {
    font-size: 12px;
  }
}

.realised-by-text {
  font-family: Verdana;
}
@media (max-width: 750px) {
  .realised-by-text {
    font-size: 12px;
  }
}

.legal-notice-box {
  width: 80%;
}
@media (max-width: 750px) {
  .legal-notice-box {
    width: 100%;
    padding: 0px 10px;
  }
}

.flex-box {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.flex-box.left {
  justify-content: left;
  align-items: baseline;
}
.flex-box.right {
  justify-content: right;
}
.flex-box.between {
  justify-content: space-between;
}
.flex-box.wrap {
  flex-wrap: wrap;
}
.flex-box.wrap-small {
  flex-wrap: wrap;
  width: 83%;
}
@media (max-width: 750px) {
  .flex-box.wrap-small {
    width: 100%;
  }
}
.flex-box.column {
  flex-direction: column;
}

.medium-font {
  font-size: 18px;
}

.keyword {
  margin: 4px 0px;
}

.header-text {
  color: rgb(17, 82, 57);
  font-size: 38px;
  font-family: mulish;
  font-weight: bold;
}
.header-text.black {
  color: black;
}
@media (max-width: 750px) {
  .header-text {
    font-size: 20px;
    padding: 0px 10px;
  }
}

.header-sub-text {
  color: rgb(17, 82, 57);
  font-family: Verdana;
  width: 70%;
  text-align: justify;
}
.header-sub-text.black {
  color: black;
}
@media (max-width: 750px) {
  .header-sub-text {
    width: 90%;
  }
}

.advises-title {
  color: white;
  margin-top: 0;
  text-align: center;
}

.navigation-link {
  text-decoration: none;
  color: white;
  font-family: Verdana;
  font-size: 15px;
  padding: 10px;
}
.navigation-link.dark {
  color: #0090c9;
}
.navigation-link.purple {
  color: rgb(183, 85, 183);
  padding: 0px 10px;
}
@media (max-width: 750px) {
  .navigation-link.purple {
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  .navigation-link {
    font-size: 12px;
  }
}

.standard-button {
  font-family: Verdana;
  text-align: center;
  background: #3f8567;
  color: white;
  letter-spacing: 0.025em;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  padding: 15px 30px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
.standard-button:hover {
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
  transform: translate(-2%, -4%);
}
.standard-button.success {
  background: #339133;
}
.standard-button.success:hover {
  background: #41c041;
}
.standard-button.error {
  background: #d00000;
}
.standard-button.refuse {
  background: white;
  border: 2px solid #3f8567;
  color: #3f8567;
}

.contact-button {
  font-size: 19px;
  white-space: nowrap-small;
  padding: 25px 50px;
  display: block;
  width: fit-content;
}
.contact-button.white {
  background: white;
  color: rgb(17, 82, 57);
  margin-top: 30px;
  margin-bottom: 100px;
}
.contact-button.green {
  background: #3f8567;
  padding: 15px 30px;
  color: white;
}
@media (max-width: 750px) {
  .contact-button {
    padding: 20px 35px;
  }
}

.card-box {
  max-width: 1250px;
}

.link-no-underline {
  text-decoration: none;
}

.card {
  height: 130px;
  width: 380px;
  padding: 1rem;
  margin: 20px;
  border-radius: 15px;
  cursor: pointer;
  font-family: Verdana;
  transition: 0.4s;
  background: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  color: rgb(17, 82, 57);
}
.card.large {
  height: 200px;
  width: 330px;
}
@media (max-width: 750px) {
  .card.large {
    width: auto;
    height: fit-content;
    margin: 10px 20px;
  }
}
.card:hover {
  transform: translate(-2%, -4%);
}
.card.border {
  border-radius: 3px;
  box-shadow: 16px 16px 5px rgba(0, 0, 0, 0.2);
}
.card.border:hover {
  transform: translate(-2%, -4%);
  box-shadow: 23px 23px 5px rgba(0, 0, 0, 0.2);
}
.card.border.blue {
  border-left: 10px solid rgb(48, 162, 255);
}
.card.border.grey {
  border-left: 10px solid rgb(109, 109, 109);
}
.card.border.brown {
  border-left: 10px solid rgb(220, 124, 29);
}
.card.border.purple {
  border-left: 10px solid rgb(168, 80, 255);
}
.card.border.green {
  border-left: 10px solid rgb(109, 177, 26);
}
.card.border.yellow {
  border-left: 10px solid rgb(198, 178, 22);
}
.card.flex {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 750px) {
  .card {
    width: auto;
    margin: 10px 0px;
  }
}

.center-text {
  text-align: center;
}

.left-text {
  text-align: left;
}

.right-text {
  text-align: right;
}

.header-textbox {
  max-width: 600px;
}

.header-image {
  margin: 10px 20px 0px 0px;
  width: 45%;
}
@media (max-width: 750px) {
  .header-image {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
}

.big-topic {
  padding-top: 15px;
  color: rgb(17, 82, 57);
  font-family: Verdana;
}
.big-topic.green {
  background: #84c182;
}

@media (max-width: 500px) {
  .pq-wrapper {
    display: none;
  }
}

.border-svg {
  display: block;
}
.border-svg.top {
  transform: translateY(1px);
}
.border-svg.bottom {
  transform: scaleY(-1) translateY(1px);
}

.square-container {
  width: fit-content;
  padding: 10px 20px;
  margin-top: 70px;
  margin-bottom: 40px;
  background: #84c182;
  box-shadow: 6px 6px 0px #c2e6cb;
  color: black;
}
.square-container.gold {
  background: rgba(220, 194, 92, 0.4509803922);
  box-shadow: 6px 6px 0px rgba(220, 194, 92, 0.2392156863);
}
@media (max-width: 750px) {
  .square-container {
    font-size: 20px;
  }
}

.card-link {
  text-decoration: none;
}
@media (max-width: 750px) {
  .card-link {
    width: 90%;
  }
}

.sister-page-links-title {
  color: rgb(17, 82, 57);
}

.sister-page-box {
  margin: 50px 0px;
}
@media (max-width: 750px) {
  .sister-page-box {
    padding: 0px 10px;
  }
}

.margin-at-top {
  margin-top: 50px;
}

h1 {
  text-align: inherit;
}
@media (max-width: 750px) {
  h1 {
    text-align: center;
  }
}

ul,
p {
  font-family: Verdana;
  font-size: 1.2rem;
  line-height: 1.7;
}
@media (max-width: 750px) {
  ul,
  p {
    font-size: 14px;
    padding: 0px 10px;
  }
}

li {
  padding: 6px 0px;
}

p {
  text-align: justify;
}
@media (max-width: 400px) {
  p {
    text-align: left;
  }
}

a {
  text-decoration: none;
}

.animate-on-scroll {
  opacity: 0;
  transition: opacity 2s, transform 1.5s;
}
.animate-on-scroll.right {
  transform: translateX(-100px);
}
.animate-on-scroll.left {
  transform: translateX(100px);
}
.animate-on-scroll.mixed-1 {
  transform: translate(100px, 100px);
  transition: 1s 0.5s;
}
.animate-on-scroll.mixed-2 {
  transform: translate(-100px, 100px);
  transition: 1.4s 0.5s;
}
.animate-on-scroll.mixed-3 {
  transform: translate(100px, -100px);
  transition: 1.7s 0.5s;
}
.animate-on-scroll.mixed-4 {
  transform: translate(-100px, -100px);
  transition: 0.8s 0.5s;
}

.phone-number {
  font-family: Verdana;
  color: black;
  font-size: 21px;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 750px) and (max-width: 1200px) {
  .phone-number {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .phone-number {
    font-size: 13px;
  }
}

.phone-icon {
  width: 24px;
  height: 24px;
  margin-right: 17px;
}
@media (max-width: 750px) {
  .phone-icon {
    width: 15px;
    height: 15px;
    margin-right: 11px;
  }
}

.phone-price-text {
  margin-top: 4px;
  color: #535353;
  font-family: Verdana;
  font-size: 13px;
}
@media (min-width: 750px) and (max-width: 1200px) {
  .phone-price-text {
    font-size: 10px;
  }
}
@media (max-width: 750px) {
  .phone-price-text {
    font-size: 8px;
  }
}

.phone-button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  padding: 11px 40px 8px 23px;
  color: white;
  border-radius: 99px;
  background: #75db90;
  font-family: Verdana;
  font-weight: bold;
  margin-right: 30px;
  transition: 0.4s;
}
.phone-button:hover {
  background: #4fa566;
}
@media (max-width: 750px) {
  .phone-button {
    padding: 8px 20px 5px 15px;
    font-size: 12px;
    margin-right: 10px;
  }
}

/*# sourceMappingURL=global.css.map */