html, body {
  margin: 0px auto;
  padding: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.text-content {
  color: #4f4f4f;
}

p {
  font-size: 1em;
  line-height: 1.6em;
  color: #4f4f4f;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* header Styles */
#menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2984b7;
  color: white;
  padding: 0;
  height: 80px;
  position: relative;
  z-index: 10;
}

.header-logo {
  width: auto;
  height: 60px;
}

.logoHolder-header {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  background-color: #2984b7;
}

.navHolder-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #e9ebed;
  padding: 0 20px;
  height: 100%;
  flex-grow: 1;
}

.navHolder-header a {
  color: #2984b7;
  text-decoration: none;
  padding: 10px 15px;
  border-bottom: 3px solid transparent;
  margin-right: 10px;
}

.navHolder-header a:last-child {
  margin-right: 0;
}

.navHolder-header a:hover, .navHolder-header .active {
  color: rgb(245, 129, 33);
  border-bottom-color: rgb(245, 129, 33);
  font-weight: 600;
}

.menuToggle-header {
  display: none;
}

@media (max-width: 768px) {
  .menuToggle-header {
    display: block;
    margin-left: auto;
    background: #2984b7;
    border: none;
    padding-right: 30px;
    z-index: 20;
  }
  .navHolder-header {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #e9ebed;
    z-index: 20;
    padding: 10px 0;
    text-align: center;
    box-sizing: border-box;
  }
  .navHolder-header.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 280px;
  }
  .navHolder-header a {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    margin: 5px 0;
  }
}
/* Footer Styles */
footer {
  background-color: #2984b7;
  color: white;
  padding: 20px 0;
  text-align: center;
}

#footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logoHolder-footer {
  margin-bottom: 20px;
}

.navHolder-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.navHolder-footer a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-bottom: 3px solid transparent;
  margin: 5px;
}

.navHolder-footer a:hover, .navHolder-footer .active {
  color: #fff;
  border-bottom-color: #fff;
  font-weight: 600;
}

.footer-copyright {
  margin-top: 10px;
}

.footer-logo {
  width: auto;
  height: 60px;
}

@media (max-width: 768px) {
  .navHolder-footer {
    flex-direction: row;
    justify-content: center;
  }
  .navHolder-footer a {
    margin: 5px;
  }
  .footer-copyright {
    font-size: 0.9em;
  }
}
/* Home Intro Section */
#home-intro {
  text-align: center;
}

.intro-image {
  width: 100%;
  height: auto;
  margin-top: -8px;
}

.intro-text {
  margin: 45px auto;
}

.homeP {
  margin: 20px auto;
  font-size: 1.5em;
  width: 60%;
}

.highlight {
  color: rgb(48, 132, 184);
  font-weight: 700;
}

.divider-container {
  display: flex;
  flex-direction: row;
  margin-top: 45px;
}

.imageDivider {
  flex: 1;
}

.divider-image {
  width: 100%;
  height: auto;
}

.textBlock {
  flex: 1;
  background-color: #78bfe1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.textBlock p {
  color: #FFF;
  font-size: 1.5em;
  text-align: center;
  display: block;
  width: 65%;
  margin: auto;
}

@media (max-width: 768px) {
  .divider-container {
    flex-direction: column;
  }
  .homeP {
    font-size: 1em;
    width: 80%;
  }
  .textBlock p {
    font-size: 1em;
    width: 80%;
  }
}
.hero-image-container {
  width: 100%;
  overflow: hidden;
}

.hero-image-banner {
  width: 100%;
  height: auto;
  margin-top: -8px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-primary {
  color: rgb(245, 129, 33);
}

.img-fluid {
  width: 100%;
  height: auto;
}

.rounded {
  border-radius: 0.25rem;
}

.service-card {
  background-color: #fff;
  border: 1px solid #e9ebed;
  border-radius: 0.25rem;
}

.service-icon {
  width: 50px;
  height: 50px;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.section-header {
  color: rgb(245, 129, 33);
  margin: 56px auto;
}

@media (max-width: 768px) {
  .lead {
    text-align: center;
  }
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  .service-card img {
    margin: 10px auto;
  }
  .service-card .data {
    padding: 0;
  }
  .card-info {
    margin-bottom: 50px;
  }
}
.quick-tips .bg-light {
  background-color: #e9ebed !important;
}

.quick-tips .bg-warning {
  background-color: rgb(245, 129, 33) !important;
}

.quick-tips .bg-info {
  background-color: #78bfe1 !important;
}

.quick-tips h3, .quick-tips h4 {
  margin-bottom: 1rem;
}

.quick-tips p {
  margin-bottom: 0;
  color: #fff;
}

.title-section-tips {
  color: #78bfe1;
}

@media (max-width: 768px) {
  .quick-tips .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .quick-tips .rounded-start, .quick-tips .rounded-end {
    border-radius: 0 !important;
  }
}
.card-img-top {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.card-title {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.card-text {
  font-size: 1rem;
  color: #333;
}

h2.text-warning {
  color: #f58121 !important;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .card-img-top {
    height: 150px;
  }
  .card-title {
    font-size: 1.15rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
}
.bg-warning {
  background-color: #f58121 !important;
}

.text-white {
  color: #ffffff !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-4 {
  padding: 1.5rem !important;
}

.rounded {
  border-radius: 10px !important;
}

.empathy-text {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

@media (max-width: 768px) {
  .row.align-items-stretch {
    flex-direction: column;
    text-align: center;
  }
  .col-md-6 {
    margin-bottom: 20px;
  }
  .empathy-text {
    font-size: 1.2rem;
  }
}
.section-title {
  color: #F58121;
  font-weight: bold;
}

.section-title .highlight {
  color: #0077CC;
}

.description {
  font-size: 1.2em;
  margin-top: 20px;
}

.card-title img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.card {
  border: 1px solid #0077CC;
  border-radius: 10px;
}

.card-body {
  padding: 15px;
}

.card-title {
  font-size: 1.3em;
  color: #333;
  font-weight: bold;
}

.card-text {
  font-size: 1em;
  color: #666;
}

.section-title {
  color: #0077CC;
  font-weight: bold;
}

.info-card {
  background-color: #78bfe1;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.description-consultation {
  color: #FFF;
  text-align: center;
  display: block;
  width: 80%;
  margin: auto;
  font-size: 1.6vw;
}

.highlight {
  color: #0077CC;
  font-weight: bold;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.align-items-stretch {
  display: flex;
  align-items: stretch;
}

.section-subtitle {
  font-size: 1.25em;
  margin-bottom: 1.5em;
  color: #4f4f4f;
}

.bg-primary {
  background-color: #78bfe1 !important;
}

.text-orange {
  color: rgb(245, 129, 33) !important;
  font-size: 1.6em;
}

.section-text {
  text-align: center;
  width: 60%;
  margin: 0px auto;
  margin-top: 40px;
  margin-bottom: 80px;
  color: #FFF;
  font-size: 1.5em;
}

@media (max-width: 768px) {
  .description-consultation {
    font-size: 3.6vw;
  }
}
.about-container {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.about-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.about-text {
  padding-left: 15px;
  padding-right: 15px;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

.text-orange {
  color: rgb(245, 129, 33) !important;
}

.about-paragraph {
  font-size: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 1.25rem;
  }
  .about-paragraph {
    font-size: 0.875rem;
  }
  .about-img {
    display: none;
  }
}
.about-values-section {
  background: url("../images/Home_INJAN_2024_T_EXP-14.png") no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  color: #fff;
}

.about-values-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.about-values-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-values-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.title-values {
  color: rgb(41, 132, 183);
}

@media (max-width: 768px) {
  .about-values-subtitle {
    font-size: 1.5rem;
  }
  .about-values-text {
    font-size: 0.875rem;
  }
}
.about-team-commitment-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.about-section-title {
  color: rgb(245, 129, 33);
  font-size: 1.3em;
  font-weight: 700;
}

.about-section-title + .about-section-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.about-section-title.mt-4 {
  margin-top: 2rem;
}

.img-fluid {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.about-join-us-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.about-join-us-box {
  background-color: #f58221;
  padding: 40px;
  text-align: center;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.about-join-us-text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-image {
  margin-top: -8px;
}

.hero-img {
  width: 100%;
  height: auto;
}

.contact-section {
  padding: 5rem 0;
}

.contact-form-box {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2984b7;
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-form-box .form-group label {
  margin-bottom: 5px;
}

.contact-form-box .form-group input,
.contact-form-box .form-group textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
}

.contact-form-box .btn {
  background-color: #2984b7;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form-box .btn:hover {
  background-color: #2984b7;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .contact-section .row {
    flex-direction: column;
  }
  .contact-section .col-lg-6 {
    margin-bottom: 20px;
  }
  .contact-form-box {
    margin-top: -200px;
  }
  .contact-section-center {
    margin-top: 185px !important;
  }
}
.contact-section-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  width: 100%;
  max-width: 1200px;
}

.contact-row {
  display: flex;
  justify-content: center;
}

.contact-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}

.contact-form-box {
  width: 100%;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  width: 100%;
  margin-bottom: 10px;
}

.btn {
  width: 100%;
}

.custom-banner1 {
  background-color: #78bfe1;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.5em;
}

.custom-banner2 {
  background-color: #f47f23;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.5em;
}/*# sourceMappingURL=main.css.map */