
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::after,
*::before{
  font-family: "Poppins", sans-serif;
  list-style: none;
}

body, html {
  margin: 0;
  padding: 0;
  color: #2d5177;
  scroll-behavior: smooth;
}

.container {
  padding: 60px 100px;
  box-sizing: border-box;
  text-align: center; /* Center the content within the container */
}

.center {
  text-align: center;
}

.mt-6{
  margin-top: 60px;
}

.mt-4{
 margin-top: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.bold {
  font-weight: 700;
}

.aligned-list {
  text-align: left; /* Align the list items to the left */
  margin-top: 20px; /* Add some space above the list */
}

.list-item {
 display: flex; /* Use flexbox for each list item */
 align-items: flex-start; /* Align items to the top if text wraps */
 margin-bottom: 10px; /* Space between list items */
}

.list-number {
  width: 30px; /* Adjust this width based on the maximum number of digits you expect */
  flex-shrink: 0; /* Prevent the number from shrinking */
  text-align: right; /* Right-align the number for consistent spacing with the text */
  padding-right: 50px; /* This creates the 50px space between the number and the text */
  box-sizing: border-box; /* Include padding in the width calculation */
  }

  .list-text {
  flex-grow: 1; /* Allow the text to take up remaining space */
  }

  .text-left{
    text-align: left;
  }
 
  /*Custom Colors*/
  .custom-blue{
    color:#130a6d
  }

  .black{
    color:#000;
  }

  /*Lists*/
  ol li {
    list-style:decimal;
  }