/* Base Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
}

.largeText {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .largeText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  .largeText {
    font-size: 1.75rem !important; /* Slightly larger for small devices (e.g., small tablets) */
  }
}
@media (min-width: 768px) {
  .largeText {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .largeText {
    font-size: 3rem !important;
  }
}
@media (min-width: 2400px) {
  .largeText {
    font-size: 4rem !important;
  }
}

.mediumText {
  font-size: 2rem !important;
}
@media only screen and (max-width: 767px) {
  .mediumText {
    font-size: 1rem !important;
  }
}
@media (min-width: 500px) {
  .mediumText {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .mediumText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mediumText {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 2400px) {
  .mediumText {
    font-size: 2.5rem !important;
  }
}

/* Default Typography */
@media only screen and (max-width: 767px) {
  h1 h1,
  h2 h1,
  h3 h1,
  h4 h1,
  h5 h1,
  h6 h1 {
    font-size: 1.75rem !important;
  }
  h1 h2,
  h2 h2,
  h3 h2,
  h4 h2,
  h5 h2,
  h6 h2 {
    font-size: 1.65rem !important;
  }
  h1 h3,
  h2 h3,
  h3 h3,
  h4 h3,
  h5 h3,
  h6 h3 {
    font-size: 1.5rem !important;
  }
  h1 h4,
  h2 h4,
  h3 h4,
  h4 h4,
  h5 h4,
  h6 h4 {
    font-size: 1.35rem !important;
  }
  h1 h5,
  h2 h5,
  h3 h5,
  h4 h5,
  h5 h5,
  h6 h5 {
    font-size: 1.25rem !important;
  }
  h1 h6,
  h2 h6,
  h3 h6,
  h4 h6,
  h5 h6,
  h6 h6 {
    font-size: 1.15rem !important;
  }
}

p {
  font-weight: 500;
  margin: 0.5em 0;
}

/* Responsive Typography */
/* Mobile (default styles for smaller screens) */
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.75rem;
  }
  h4 {
    font-size: 0.85rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.65rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Relative to the base font size (16px) */
    line-height: 1.5;
  }
}
/* Typography for a, p, and li */
a,
p,
li,
span,
input,
button {
  font-size: 1rem; /* Relative to the base font size (16px) */
  line-height: 1.5;
}

/* Laptop */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Consistent with body size */
  }
}
/* Desktop Screens */
@media (min-width: 1200px) {
  body {
    font-size: 16px; /* Larger base font size for desktops */
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  a,
  p,
  li,
  i,
  span,
  input,
  button {
    font-size: 1.1rem; /* Slightly increase relative font size */
    font-size: clamp(1rem, 0.8rem + 0.1vw, 2rem);
  }
}
/* 4K Screens */
@media (min-width: 2400px) {
  body {
    font-size: 24px; /* Significant base font size increase for 4K */
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  div {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.4vw, 2rem) !important;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.6vw, 2rem) !important;
  }
}
/* Base Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
}

.largeText {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .largeText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  .largeText {
    font-size: 1.75rem !important; /* Slightly larger for small devices (e.g., small tablets) */
  }
}
@media (min-width: 768px) {
  .largeText {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .largeText {
    font-size: 3rem !important;
  }
}
@media (min-width: 2400px) {
  .largeText {
    font-size: 4rem !important;
  }
}

.mediumText {
  font-size: 2rem !important;
}
@media only screen and (max-width: 767px) {
  .mediumText {
    font-size: 1rem !important;
  }
}
@media (min-width: 500px) {
  .mediumText {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .mediumText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mediumText {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 2400px) {
  .mediumText {
    font-size: 2.5rem !important;
  }
}

/* Default Typography */
@media only screen and (max-width: 767px) {
  h1 h1,
  h2 h1,
  h3 h1,
  h4 h1,
  h5 h1,
  h6 h1 {
    font-size: 1.75rem !important;
  }
  h1 h2,
  h2 h2,
  h3 h2,
  h4 h2,
  h5 h2,
  h6 h2 {
    font-size: 1.65rem !important;
  }
  h1 h3,
  h2 h3,
  h3 h3,
  h4 h3,
  h5 h3,
  h6 h3 {
    font-size: 1.5rem !important;
  }
  h1 h4,
  h2 h4,
  h3 h4,
  h4 h4,
  h5 h4,
  h6 h4 {
    font-size: 1.35rem !important;
  }
  h1 h5,
  h2 h5,
  h3 h5,
  h4 h5,
  h5 h5,
  h6 h5 {
    font-size: 1.25rem !important;
  }
  h1 h6,
  h2 h6,
  h3 h6,
  h4 h6,
  h5 h6,
  h6 h6 {
    font-size: 1.15rem !important;
  }
}

p {
  font-weight: 500;
  margin: 0.5em 0;
}

/* Responsive Typography */
/* Mobile (default styles for smaller screens) */
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.75rem;
  }
  h4 {
    font-size: 0.85rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.65rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Relative to the base font size (16px) */
    line-height: 1.5;
  }
}
/* Typography for a, p, and li */
a,
p,
li,
span,
input,
button {
  font-size: 1rem; /* Relative to the base font size (16px) */
  line-height: 1.5;
}

/* Laptop */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Consistent with body size */
  }
}
/* Desktop Screens */
@media (min-width: 1200px) {
  body {
    font-size: 16px; /* Larger base font size for desktops */
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  a,
  p,
  li,
  i,
  span,
  input,
  button {
    font-size: 1.1rem; /* Slightly increase relative font size */
    font-size: clamp(1rem, 0.8rem + 0.1vw, 2rem);
  }
}
/* 4K Screens */
@media (min-width: 2400px) {
  body {
    font-size: 24px; /* Significant base font size increase for 4K */
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  div {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.4vw, 2rem) !important;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.6vw, 2rem) !important;
  }
}
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

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

.flex {
  display: flex;
  flex-wrap: wrap;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.child {
  flex: 1;
}

.no-flex {
  flex: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.w100 {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .w100 {
    width: 100%;
  }
}

.w95 {
  width: 95%;
}
@media only screen and (max-width: 1199px) {
  .w95 {
    width: 100%;
  }
}

.w90 {
  width: 90%;
}
@media only screen and (max-width: 1199px) {
  .w90 {
    width: 100%;
  }
}

.w85 {
  width: 85%;
}
@media only screen and (max-width: 1199px) {
  .w85 {
    width: 100%;
  }
}

.w80 {
  width: 80%;
}
@media only screen and (max-width: 1199px) {
  .w80 {
    width: 95%;
  }
}

.w75 {
  width: 75%;
}
@media only screen and (max-width: 1199px) {
  .w75 {
    width: 100%;
  }
}

.w70 {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .w70 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w70 {
    width: 100%;
  }
}

.w65 {
  width: 65%;
}

.w60 {
  width: 60%;
}

.w55 {
  width: 55%;
}
@media only screen and (max-width: 991px) {
  .w55 {
    width: 100%;
  }
}

.w50 {
  width: 50%;
}

.w48 {
  width: 48%;
}

.w45 {
  width: 45%;
}

.w40 {
  width: 40%;
}

.w35 {
  width: 35%;
}

.w30 {
  width: 30%;
}
@media only screen and (max-width: 991px) {
  .w30 {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .w30 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w30 {
    width: 100%;
  }
}

.w25 {
  width: 25%;
}
@media only screen and (max-width: 991px) {
  .w25 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .w25 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w25 {
    width: 100%;
  }
}

.w20 {
  width: 20%;
}
@media only screen and (max-width: 991px) {
  .w20 {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .w20 {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .w20 {
    width: 100%;
  }
}

.w15 {
  width: 15%;
}
@media only screen and (max-width: 1199px) {
  .w15 {
    width: 100%;
  }
}

.w10 {
  width: 10%;
}
@media only screen and (max-width: 1199px) {
  .w10 {
    width: 100%;
  }
}

.contact-section {
  padding: 5px 0;
}
@media screen and (max-width: 456px) {
  .contact-section {
    width: 100%;
  }
}
.contact-section .contact-row {
  background: url(./../../images/contactbg.png) no-repeat center center/cover;
  color: #4caf50;
  padding: 50px 16%;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-row {
    width: 100%;
    padding: 40px;
  }
}
.contact-section .contact-row .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f3266;
  margin-bottom: 10px;
}
.contact-section .contact-row .section-subtitle {
  font-size: 0.9rem;
  color: rgba(8, 8, 8, 0.8705882353);
  max-width: 1000px;
  margin: 0 auto 20px;
}
.contact-section .contact-cards {
  position: relative;
  top: -2.5rem;
  background-color: #f8f8f8;
  margin: 0 62px;
  border: 1px solid #eee;
  box-shadow: 0px 2px 30px #ccc;
  padding: 5px 0px 1px 0px;
  border-radius: 10px;
}
@media only screen and (max-width: 1199px) {
  .contact-section .contact-cards {
    width: 88%;
    margin-left: 0 80px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-section .contact-cards {
    width: 95%;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-cards {
    width: 85%;
    margin-left: 30px;
  }
}
.contact-section .contact-cards .card-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .contact-section .contact-cards .card-grid {
    width: 98%;
    margin-left: 5px;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-cards .card-grid {
    width: 100%;
    margin-left: 5px;
    justify-content: center;
  }
}
.contact-section .contact-card:last-child {
  border: none;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-card:last-child {
    padding-left: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-section .contact-card:last-child {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contact-section .contact-card:last-child {
    padding-left: 0px;
  }
}
.contact-section .contact-card {
  background: #f8f8f8;
  padding: 10px;
  flex: 1;
  border-right: 1px solid #aaa;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .contact-section .contact-card {
    max-width: 250px;
    min-width: 200px;
    padding: 2px;
    margin-left: 10px;
    margin-right: auto !important;
  }
}
@media screen and (max-width: 456px) {
  .contact-section .contact-card {
    margin-left: 45px;
  }
}
@media screen and (max-width: 376px) {
  .contact-section .contact-card {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-card {
    border-right: none;
    padding-left: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-section .contact-card {
    border-right: none;
    padding-left: 45px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contact-section .contact-card {
    border-right: none;
    padding-left: 0px;
  }
}
.contact-section .contact-card .contact-icon {
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.contact-section .contact-card .contact-icon img {
  width: 32px;
  height: 32px;
}
.contact-section .contact-card .contact-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #273c75;
  border-bottom: 2px solid #273c75;
  display: inline-block;
  padding-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .contact-section .contact-card .contact-title {
    font-size: 1rem;
  }
}
.contact-section .contact-card .contact-info {
  font-size: 1rem;
  color: #000;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .contact-section .contact-card .contact-info {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-card .contact-info {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 479.98px) {
  .contact-section .contact-card .contact-info {
    font-size: 0.9rem;
  }
}

.contact-page {
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  justify-content: center;
}
.contact-page .location-container {
  width: 45%;
  background: #fff;
  padding: 20px 10px 0px;
  border: 1px solid gray;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .contact-page .location-container {
    width: 95%;
    margin: 5px;
  }
}
.contact-page h2 {
  color: #006da4;
  font-size: 28px;
  margin-bottom: 5px;
  text-align: center;
}
.contact-page .contact-section {
  margin-bottom: 0px;
}
.contact-page .contact-section h3 {
  font-size: 20px;
  color: #333;
}
.contact-page .contact-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: left;
}
.contact-page .contact-section ul {
  padding-left: 0px;
}
.contact-page .contact-section ul li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 16px;
  color: #555;
  text-align: left;
}
.contact-page .contact-section ul li .c-icon {
  color: #ff6600;
  font-size: 16px;
}
.contact-page .contact-section ul li strong {
  color: #222;
}
.contact-page .info-container {
  width: 45%;
  padding: 20px;
  border: 1px solid gray;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact-page .info-container {
    width: 95%;
    height: 300px;
    padding: 0px;
    margin: 5px;
  }
}
@media screen and (max-width: 456px) {
  .contact-page .info-container {
    width: 95%;
  }
}

.contact-table-container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  gap: 10px;
}
@media screen and (max-width: 456px) {
  .contact-table-container {
    display: block;
  }
}

table {
  width: 80%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  margin: 8px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 456px) {
  table {
    width: 95%;
  }
}

.t-head {
  background-color: #ffc107;
}

th {
  background-color: #4caf50;
  padding: 10px;
  font-size: 1.1em;
  color: #fff;
}

td {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}/*# sourceMappingURL=contact.css.map */