<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("fonts.css");

body {
  background: #f7f5f5;
  background-image: url("/public/landing_pages/images/whole-bkg.svg");
  font-family: "Helen_Pro_Light";
  /* background-size: cover; */
}

.wp-logo {
  max-width: 219px;
  min-width: 219px;
  position: relative;
  padding-left: 3.75rem;
  margin-left: -15px;
}

.wp-heading {
  margin: 4rem auto 3rem auto;
}

.wp-title span {
  font-family: "Helen_ProL_ight";
  color: #05377b;
  font-size: 2.875rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.wp-desc {
  font-family: "Helen_ProL_ight";

  color: #05377b;
  font-size: 1.5rem;
  margin: auto;
  text-align: center;
}

.wp-main {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

/* .wp-main {
  display: grid;
  grid-gap: 3%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
} */

.wp-country-list {
  list-style-type: none; /* Removes the bullet */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
  border-: 1px solid rgba(0, 0, 0, 0.7);
}

.wp-country-list.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  /* gap: 10px; Optional: Adds space between grid items */
  gap: 5px;
}

.wp-country-list.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 2 equal-width columns */
  /* Optional: Adds space between grid items */
  gap: 5px;
}

.wp-country-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  border-top: solid 1px;
  padding-top: 10px;
}

.wp-cont-item p {
  font-family: "Helen_ProL_ight";
  font-size: 1.55rem;

  margin-bottom: 5px;
}

li a {
  color: #000;
  font-size: 1rem;
  font-weight: lighter;
  line-height: 18px;
  font-family: "Helen_ProL_ight";
}

a {
  text-decoration: none;
}

.wp-country-list li a:hover {
  color: #05377b; /* Change the text color on hover */
  cursor: pointer; /* Change the cursor to a pointer to indicate it's clickable */
  /* font-family: "Helen_Pro"; */
  font-weight: bolder;
}

/* @media  only screen and (max-width: 900px){
	.wp-main {
		flex-direction: column;
	}
} */

@media only screen and (min-width: 450px) and (max-width: 900px) {
  .wp-main {
    flex-direction: column;
    margin: 40px;
  }

  .wp-title span {
    font-size: 3rem;
  }
  .wp-desc,
  .wp-cont-item p {
    font-size: 1.8rem;
  }
  li a {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 449px) {
  .welcome-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .wp-logo {
    left: 20px;
    top: 10px;
    padding: 0;
  }

  .wp-logo img {
    max-width: 180px;
  }

  .wp-main {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .wp-title {
    text-align: left;
    line-height: 49px;
    margin-bottom: 1rem;
  }

  .wp-title span {
    text-align: left;
  }

  .wp-cont-item p {
    margin-top: 1rem;
  }

  .wp-heading {
    max-width: 266px;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    margin: 4rem 0;
  }
  .wp-desc {
    text-align: left;
  }
}
</pre></body></html>