@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.modal-dialog {
  background-color: #ffffff;
  padding: 5%;
  width: 25%;
  margin-top: 10%;
  border-radius: 15px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 601px) {
  .modal-dialog {
    width: 90%;
    margin-top: 25%;
  }
}
.modal-dialog .btn-close {
  opacity: 1;
  border-radius: 50%;
  border: 1px solid #0b612d;
  cursor: pointer;
  margin-top: 5%;
}

.header-section {
  height: 100vh;
}
@media screen and (max-width: 601px) {
  .header-section {
    height: 50vh;
  }
}
.header-section .navigation-container {
  height: 15%;
  background-color: #ffffff;
  position: relative;
}
.header-section .navigation-container .logo-container {
  width: 85%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.header-section .navigation-container .logo-container .header-logo {
  position: absolute;
  height: 70%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 601px) {
  .header-section .navigation-container .logo-container .header-logo {
    height: 25%;
  }
}
.header-section .navigation-container .logo-container .navigation-icon {
  position: absolute;
  height: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  transition: 0.3s;
}
.header-section .navigation-container .logo-container .navigation-cross {
  position: absolute;
  height: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  transition: 0.3s;
}
.header-section .navigation-container .navigation-menu {
  height: 60px;
  background: #0b612d;
  position: absolute;
  right: 0;
  width: 70%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: -30px;
  z-index: 1000;
  padding: 0 1%;
}
.header-section .navigation-container .navigation-menu a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  padding: 1%;
  transition: 0.3s;
}
.header-section .navigation-container .navigation-menu a:hover {
  color: #CC9B2B;
}
.header-section .navigation-container .navigation-menu a img {
  height: 110px;
}
.header-section .navigation-container .navigation-menu .page-active {
  color: #CC9B2B;
}
@media screen and (min-width: 1441px) {
  .header-section .navigation-container .navigation-menu a {
    font-size: 1.2rem;
  }
}
.header-section .navigation-container .navigation-menu .dropdown-container {
  position: relative;
}
.header-section .navigation-container .navigation-menu .dropdown-container .container-btn {
  cursor: pointer;
}
.header-section .navigation-container .navigation-menu .dropdown-container .container-btn a:hover {
  color: #ffffff;
}
.header-section .navigation-container .navigation-menu .dropdown-container .down-arrow {
  position: absolute;
  right: -35%;
  top: 7.5%;
  transition: 0.3s;
}
.header-section .navigation-container .navigation-menu .dropdown-container .down-arrow img {
  width: 15px;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul {
  margin: 0;
  position: absolute;
  top: 200%;
  left: -50%;
  background-color: #0b612d;
  list-style: none;
  padding-left: 0;
  padding: 0 20%;
  border-radius: 5px;
  display: none;
  -webkit-animation: menuAnimate 0.3s;
          animation: menuAnimate 0.3s;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul li {
  width: 120px;
  padding: 10px;
  border-bottom: 1px solid #95c11f;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul li:last-child {
  border-bottom: 0;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul li a {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (min-width: 1441px) {
  .header-section .navigation-container .navigation-menu a {
    font-size: 1.2rem;
  }
}
.header-section .header-content {
  height: 85%;
  position: relative;
}
.header-section .header-content .blog-header-image {
  height: 100%;
  width: 100%;
  border-top-left-radius: 300px;
  box-shadow: inset 1000px 1000px 500px rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .header-section .header-content .blog-header-image {
    border-top-left-radius: 350px;
  }
}
.header-section .header-content .blog-header-image .blog-header-image-content {
  position: absolute;
  bottom: 10%;
  left: 10%;
}
.header-section .header-content .blog-header-image .blog-header-image-content h5 {
  font-weight: 900;
  color: #ffffff;
  font-size: 4vmin;
  margin-bottom: 0;
}
.header-section .header-content .blog-header-image .blog-header-image-content h2 {
  font-weight: 900;
  color: #ffffff;
  font-size: 6vmin;
  margin-bottom: 0;
}

@-webkit-keyframes menuAnimate {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes menuAnimate {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.info-container {
  background: #0b612d;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  padding: 1%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 300px;
  width: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-container .info-icon {
  padding: 20px 0;
  border-bottom: 1px solid #95c11f;
  margin-top: 15px;
  cursor: pointer;
}
.info-container .info-icon:last-child {
  border: 0;
}
.info-container .info-icon img {
  height: 25px;
}

.info-box-container .search-input {
  height: 300px;
  position: fixed;
  bottom: 0;
  right: 65px;
  z-index: 5000;
  transform: translateX(425px);
  transition: 0.3s;
}
.info-box-container .search-input input {
  width: 400px;
  border: 2px solid #0b612d;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2.5% 5%;
  outline: none;
  font-size: 18px;
  border-radius: 5px;
  color: #0b612d;
  margin-top: 50px;
  margin-right: -10px;
}
.info-box-container .search-input img {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.info-box-container .phone-hover {
  height: 50px;
  position: fixed;
  bottom: 14vh;
  right: 65px;
  border-radius: 5px;
  z-index: 5000;
  border: 2px solid #0b612d;
  background-color: rgba(255, 255, 255, 0.8);
  width: auto;
  padding: 0 20px;
  transform: translateX(400px);
  transition: 0.3s;
}
.info-box-container .phone-hover p {
  font-size: 18px;
  color: #0b612d;
  margin: 0;
  font-weight: 600;
  padding: 0 1%;
}
.info-box-container .contact-input-box {
  height: auto;
  position: fixed;
  bottom: 0;
  right: 65px;
  z-index: 5000;
  border: 2px solid #0b612d;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1% 3%;
  width: 500px;
  transform: translateX(565px);
  transition: 0.3s;
}
.info-box-container .contact-input-box h2 {
  color: #0b612d;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 1rem;
}
.info-box-container .contact-input-box .input-collection input,
.info-box-container .contact-input-box .input-collection textarea {
  display: block;
  padding: 6px;
  width: 100%;
  outline: none;
  background-color: inherit;
}
.info-box-container .contact-input-box .input-collection input {
  border: 0;
  border-bottom: 2px solid #0b612d;
}
.info-box-container .contact-input-box .input-collection textarea {
  border: 2px solid #0b612d;
  height: 100px;
  background-color: #ffffff;
}
.info-box-container .contact-input-box .input-collection label {
  color: #0b612d;
  font-weight: 600;
  margin-top: 1rem;
  text-transform: capitalize;
}
.info-box-container .contact-input-box .input-collection button {
  outline: none;
  border: 0;
  background-color: #0b612d;
  color: #ffffff;
  padding: 8px 30px;
  font-size: 18px;
  margin-top: 1rem;
  text-transform: capitalize;
  border-radius: 10px;
  border: 2px solid #0b612d;
}
.info-box-container .contact-input-box .cross-contact {
  position: absolute;
  top: 3%;
  left: 3%;
  cursor: pointer;
}
.info-box-container .contact-input-box .cross-contact img {
  height: 25px;
  width: 25px;
}

.main-blog-content {
  padding: 5% 10% 5% 10%;
}
.main-blog-content p {
  font-size: max(1.3vw, 16px);
  color: #4A4A4A;
  margin-top: 2.5%;
}
.main-blog-content .headline {
  font-weight: 700;
}
.main-blog-content ul li {
  margin-top: 1%;
  color: #4A4A4A;
  font-size: max(1.1vw, 15px);
}
.main-blog-content .main-blog-content-grid {
  padding: 2.5% 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}
.main-blog-content .sb-investment {
  width: 80%;
}
.main-blog-content .sb-investment strong {
  display: flex;
  justify-content: space-between;
}
.main-blog-content h4 {
  margin-bottom: 1.5rem;
}
.main-blog-content table {
  border: 1px solid black;
  width: 100%;
}
.main-blog-content .emergency-response-table th,
.main-blog-content .emergency-response-table td {
  font-size: max(1.1vw, 15px);
  padding: 0.5%;
  border: 1px solid black;
}
.main-blog-content .well-being-table th,
.main-blog-content .well-being-table td {
  text-align: center;
  padding: 1.5%;
  border: none;
  border-right: 1px solid black;
}
.main-blog-content .well-being-table th {
  font-size: max(1.1vw, 15px);
}
.main-blog-content .well-being-table td {
  font-size: max(1.8vw, 16px);
}

.proud-report-section .proud-bottom {
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 601px) {
  .proud-report-section .proud-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.proud-report-section .proud-bottom .proud-reports {
  padding: 5% 10%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.proud-report-section .proud-bottom .proud-reports .proud-reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2%;
}
.proud-report-section .proud-bottom .proud-reports .proud-reports-grid h3 {
  color: #ffffff;
  font-size: 7vmin;
  font-weight: 700;
}
.proud-report-section .proud-bottom .proud-reports .proud-reports-grid p {
  font-size: max(1.1vw, 14px);
  font-weight: 700;
  color: #ffffff;
}

.main-blog-content-footer {
  padding: 5% 10%;
}
.main-blog-content-footer a {
  text-decoration: none;
  padding: 8px 30px;
  border: 2px solid #95c11f;
  font-size: max(1.1vw, 16px);
  color: #0b612d;
  font-weight: bold;
  text-transform: capitalize;
  border-radius: 10px;
  transition: 0.3s;
}
.main-blog-content-footer a:hover {
  color: #95c11f;
  background-color: #0b612d;
  border: 2px solid #0b612d;
}

.stories-section .stories-header {
  padding: 0 10%;
}
.stories-section .stories-header img {
  width: 100%;
}
.stories-section .stories-body {
  padding: 5% 7% 5% 7%;
}
.stories-section .stories-body img {
  width: 100%;
}
.stories-section .stories-body .stories-body-content {
  padding: 5% 3% 0 3%;
}
@media screen and (min-width: 1441px) {
  .stories-section .stories-body .stories-body-content {
    padding-top: 10%;
  }
}
.stories-section .stories-body .stories-body-content h4 {
  font-size: 9vmin;
  font-weight: 900;
  color: #0b612d;
  text-transform: capitalize;
  margin-bottom: 0;
}
.stories-section .stories-body .stories-body-content h2 {
  font-size: 13vmin;
  font-weight: 900;
  color: #0b612d;
  text-transform: capitalize;
}
.stories-section .stories-body .stories-body-content .stories-details {
  margin-top: 2rem;
}
.stories-section .stories-body .stories-body-content .stories-details p {
  font-size: 18px;
  color: #4A4A4A;
}
@media screen and (min-width: 1441px) {
  .stories-section .stories-body .stories-body-content .stories-details p {
    font-size: 20px;
  }
}
.stories-section .stories-body .stories-body-content .stories-btn {
  margin-top: 2rem;
}
.stories-section .stories-body .stories-body-content .stories-btn button {
  outline: none;
  background: inherit;
  border: 2px solid #95c11f;
  padding: 1% 5%;
  font-size: 18px;
  color: #0b612d;
  background: inherit;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}
.stories-section .stories-body .stories-body-content .stories-btn button:hover {
  background-color: #0b612d;
  color: #95c11f;
  border: 2px solid #0b612d;
}

.footer-section {
  height: 350px;
  margin-top: 5%;
}
.footer-section .footer-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.footer-section .footer-grid .footer-logo {
  height: 100%;
  padding: 5%;
}
.footer-section .footer-grid .footer-logo img {
  height: 7.5vmin;
}
.footer-section .footer-grid .footer-content {
  background-image: url("/assets/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-section .footer-grid .footer-content .footer-content-container {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 5%;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data {
  display: grid;
  grid-template-columns: 1fr 5fr;
  color: #ffffff;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data .address-title {
  text-align: right;
  padding-right: 10%;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data .address-title h6 {
  font-weight: 600;
  margin-top: 2px;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data .address-data p {
  margin-left: 2%;
  font-size: 14px;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social .social-collection a {
  text-decoration: none;
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #95c11f;
  color: #0b612d;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  font-size: 16px;
  transition: 0.3s;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social .social-collection a:last-child {
  margin-right: 0;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social .social-collection a:hover {
  color: #ffffff;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social p {
  color: #ffffff;
  font-size: 12px;
  margin-top: 7.5%;
}

@media screen and (max-width: 601px) {
  .header-section .navigation-container .logo-container .header-logo {
    height: 30%;
  }
  .header-section .navigation-container .logo-container .navigation-icon {
    display: block;
    transition: 0.3s;
  }
  .header-section .navigation-container .navigation-menu {
    height: auto;
    left: -100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 0;
    z-index: 1000;
    border-radius: 0;
    padding: 5% 0;
    transition: 0.3s;
  }
  .header-section .navigation-container .navigation-menu a {
    margin-top: 2rem;
    padding: 2% 0;
  }
  .header-section .navigation-container .navigation-menu .dropdown-container {
    margin-top: 7.5%;
  }
  .header-section .navigation-container .navigation-menu .dropdown-container ul {
    background-color: #ffffff;
  }
  .header-section .navigation-container .navigation-menu .dropdown-container ul li a {
    color: #0b612d;
  }
  .header-section .header-content .blog-header-image {
    width: 100%;
    border-top-left-radius: 100px;
  }
  .info-container {
    height: 180px;
    width: 36px;
  }
  .info-container .info-icon {
    padding: 15px 5px;
    border-bottom: 1px solid #ffffff;
    margin-top: 0;
    background-color: #0b612d;
  }
  .info-container .info-icon img {
    width: 18px;
  }
  .info-box-container .search-input {
    height: 300px;
    position: fixed;
    bottom: 0;
    right: 65px;
    z-index: 5000;
    transform: translateX(425px);
    transition: 0.3s;
  }
  .info-box-container .search-input input {
    width: 250px;
    font-size: 16px;
    margin-top: 130px;
    margin-right: -30px;
  }
  .info-box-container .search-input img {
    height: 25px;
    width: 25px;
    cursor: pointer;
  }
  .info-box-container .phone-hover {
    height: auto;
    padding: 1% 0;
    position: fixed;
    bottom: 7vh;
    right: 36px;
    border-radius: 5px;
    z-index: 5000;
    width: 250px;
  }
  .info-box-container .phone-hover p {
    font-size: 16px;
    margin: 0;
    padding: 1%;
    color: #0b612d;
  }
  .info-box-container .contact-input-box {
    height: auto;
    width: 300px;
    right: 36px;
  }
  .info-box-container .contact-input-box h2 {
    color: #0b612d;
    text-transform: uppercase;
    font-weight: 900;
    margin-top: 1rem;
  }
  .info-box-container .contact-input-box .input-collection label {
    color: #0b612d;
    font-weight: 600;
    margin-top: 1rem;
    text-transform: capitalize;
  }
  .info-box-container .contact-input-box .input-collection button {
    padding: 6px 30px;
    font-size: 16px;
    margin-top: 0.5rem;
  }
  .footer-section {
    height: auto;
  }
  .footer-section .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-section .footer-grid .footer-logo {
    padding: 10%;
  }
  .footer-section .footer-grid .footer-logo img {
    height: 15vmin;
  }
  .footer-section .footer-grid .footer-content {
    height: 500px;
    width: 100%;
    background-color: #0b612d;
    padding: 10%;
    border-top-left-radius: 100px;
  }
  .footer-section .footer-grid .footer-content .footer-content-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 5% 10%;
  }
  .footer-section .footer-grid .footer-content .footer-content-container .footer-content-social {
    padding: 0 10%;
    margin-top: 10%;
  }
}/*# sourceMappingURL=service-special.css.map */