@import url("https://fonts.googleapis.com/css2?family=Lato&family=Plus+Jakarta+Sans:wght@400;700&family=Poppins:wght@400;700&family=Urbanist:wght@400;500;600&family=Work+Sans:wght@300;400;600;700&display=swap");
.mb-01 {
  margin-bottom: 0.25rem;
}
.mb-02 {
  margin-bottom: 0.5rem;
}
.mb-03 {
  margin-bottom: 0.75rem;
}
.mb-04 {
  margin-bottom: 1rem;
}
.mb-05 {
  margin-bottom: 1.25rem;
}
.mb-06 {
  margin-bottom: 1.5rem;
}
.mb-07 {
  margin-bottom: 2rem;
}
.mb-08 {
  margin-bottom: 2.5rem;
}
.mb-09 {
  margin-bottom: 3rem;
}
.mb-10 {
  margin-bottom: 3.375rem;
}
.mb-11 {
  margin-bottom: 4rem;
}
.mb-12 {
  margin-bottom: 4.5rem;
}
.mb-13 {
  margin-bottom: 5rem;
}
.mb-14 {
  margin-bottom: 6rem;
}
@media (min-width: 992px) {
  .mb-lg-01 {
    margin-bottom: 0.25rem;
  }
  .mb-lg-02 {
    margin-bottom: 0.5rem;
  }
  .mb-lg-03 {
    margin-bottom: 0.75rem;
  }
  .mb-lg-04 {
    margin-bottom: 1rem;
  }
  .mb-lg-05 {
    margin-bottom: 1.25rem;
  }
  .mb-lg-06 {
    margin-bottom: 1.5rem;
  }
  .mb-lg-07 {
    margin-bottom: 2rem;
  }
  .mb-lg-08 {
    margin-bottom: 2.5rem;
  }
  .mb-lg-09 {
    margin-bottom: 3rem;
  }
  .mb-lg-10 {
    margin-bottom: 3.375rem;
  }
  .mb-lg-11 {
    margin-bottom: 4rem;
  }
  .mb-lg-12 {
    margin-bottom: 4.5rem;
  }
  .mb-lg-13 {
    margin-bottom: 5rem;
  }
  .mb-lg-14 {
    margin-bottom: 6rem;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "work sans", sans-serif;
  font-size: 16px;
}

.ts-container {
  max-width: 1250px;
  margin: auto;
  overflow: hidden;
  padding-inline: 16px;
}

.ts-fs-16 {
  font-size: 16px !important;
}
.ts-fs-20 {
  font-size: 20px;
}

.main-title {
  font-size: 50px;
  font-weight: 700 !important;
  letter-spacing: 0em;
  text-align: center;
  color: #1520A6;
}
@media (max-width: 767px) {
  .main-title {
    font-size: 35.2px;
  }
}
@media (max-width: 575px) {
  .main-title {
    font-size: 32px;
  }
}

.ts-wrapper {
  margin-block: 60px 20px;
}

.text-upppercase {
  text-transform: uppercase;
}

.fw-medium {
  font-weight: 500;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  text-align: left;
}
@media (max-width: 991px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .reverse-card {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 575px) {
  .reverse-card {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .reverse-card {
    display: flex;
    flex-direction: column-reverse;
  }
}

.triangle {
  max-width: 34px;
  height: 26.49px;
}

.left-section h1 {
  font-size: 30px;
  letter-spacing: 0em;
  font-weight: 600;
  color: #1520A6;
}
@media (max-width: 767px) {
  .left-section h1 {
    font-size: 22.4px;
  }
}
@media (max-width: 575px) {
  .left-section h1 {
    font-size: 19.2px;
  }
}

.left-section p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0em;
  color: #030303;
}

.right-section img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.centered-hr {
  width: 50%;
  margin-top: 10px;
  color: #000000;
}

.explanation {
  font-size: 18.8px;
  font-weight: 300;
  letter-spacing: 0em;
  text-align: left;
}

.m-0 {
  margin: 0 !important;
}

.footer {
  background-color: #333333;
  padding-block: 40px;
  color: #FFFFFF;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #333333;
  padding-block: 40px;
  gap: 16px;
  color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 767px) and (min-width: 576px) {
  .footer-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 24px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .footer-main .item:nth-child(1) {
    grid-column: 1/span 2;
  }
  .footer-main .item:nth-child(2), .footer-main .item:nth-child(3) {
    grid-column: auto;
  }
  .footer-main .item:nth-child(4) {
    grid-column: 1/span 2;
  }
}
@media (max-width: 575px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.ts-footer-logo {
  max-width: 86.52px;
  height: 101px;
}
@media (max-width: 575px) {
  .ts-footer-logo {
    max-width: 60.52px;
    height: 90px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: left;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  font-weight: 400;
  text-align: left;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact p {
  letter-spacing: 0em;
  text-align: left;
}

.quick-links li {
  margin-bottom: 10px;
}

button {
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
}

/* Filled button styles */
.ts-btn-primary {
  background-color: #1520A6;
  color: #FFFFFF;
  padding: 8px 16px;
}

.ts-btn-primary:hover {
  background-color: #000000;
}

.mb-24 {
  margin-bottom: 24px;
}

.Copyright-text {
  text-align: center;
  color: #FFFFFF !important;
  background-color: #333333;
  padding-block: 20px;
}

.ts-deco {
  padding: 19.2px;
  position: relative;
  isolation: isolate;
}
@media (max-width: 767px) {
  .ts-deco {
    padding: 9.6px;
  }
}
.ts-deco::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  background-color: #1520a6;
  z-index: -1;
}
.ts-deco--sm {
  padding: 0;
  padding-top: 24px;
}
.ts-deco--sm::after {
  width: auto;
  height: 28.8px;
  aspect-ratio: 1;
}
.ts-deco__top-left::after {
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.ts-deco__bottom-left::after {
  bottom: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.ts-deco__top-right::after {
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 100%, 0 0, 100% 0);
          clip-path: polygon(100% 100%, 0 0, 100% 0);
}
.ts-deco__bottom-right::after {
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 100%, 0% 100%, 100% 0);
          clip-path: polygon(100% 100%, 0% 100%, 100% 0);
}

.ts-text-primary {
  color: #154ce8;
}

.ts-footer-link {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

/* Add a black background color to the top navigation */
/* Style the links inside the navigation bar */
.ts-navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 80px;
  width: 100%;
}
.ts-navbar-wrapper {
  background: linear-gradient(180deg, #1520a6 0.37%, #154ce8 100%);
}
.ts-navbar .logo {
  color: white;
  font-size: 35px;
  line-height: 80px;
  font-weight: bold;
  display: inline-block;
}
.ts-navbar ul {
  float: right;
  margin-right: 20px;
  margin-bottom: 0;
}
.ts-navbar ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
.ts-navbar ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.ts-navbar a.active,
.ts-navbar a:hover {
  background: #154ce8;
  transition: 0.5s;
  color: white;
  text-decoration: none;
}
.ts-navbar .checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  cursor: pointer;
  display: none;
}
.ts-navbar #check {
  display: none;
}

@media (max-width: 952px) {
  label.logo {
    font-size: 30px;
  }
  nav ul li a {
    font-size: 16px;
  }
}
@media (max-width: 858px) {
  .ts-navbar .checkbtn {
    display: block;
  }
  .ts-navbar ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #1520a6 0.37%, #154ce8 100%);
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  .ts-navbar ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  .ts-navbar ul li a {
    font-size: 20px;
  }
  .ts-navbar #check:checked ~ ul {
    left: 0;
  }
}/*# sourceMappingURL=index.css.map */