@charset "utf-8";
/* CSS Document */


/* Custom bullet style */
.custom-bullet-listB {
list-style-type: none; /* Remove default bullets */
padding: 0; /* Remove default padding */
}
.custom-bullet-listB li {
color: #012d43; /* Set default text color */
position: relative; /* Positioning for the bullet */
padding-left: 20px; /* Space for the custom bullet */
margin-bottom: 5px; /* Adjust the value to increase/decrease space */
}
.custom-bullet-listB li:nth-child(odd)::before {
content: ''; /* Required for the pseudo-element */
position: absolute; /* Position it absolutely */
left: 0; /* Align bullets to the left */
top:30%; /* Center bullets vertically */
transform: translateY(-50%); /* Offset for proper alignment */
height: 8px; /* Height of the bullet */
width: 8px; /* Width of the bullet */
background-color: #ae914a; /* Bullet color for odd items */
border-radius: 50%; /* Make it a circle */
}
.custom-bullet-listB li:nth-child(even)::before {
content: ''; /* Required for the pseudo-element */
position: absolute; /* Position it absolutely */
left: 0; /* Align bullets to the left */
top: 30%; /* Center bullets vertically */
transform: translateY(-50%); /* Offset for proper alignment */
height: 8px; /* Height of the bullet */
width: 8px; /* Width of the bullet */
background-color: #012d43; /* Bullet color for even items */
border-radius: 50%; /* Make it a circle */
}
.custom-bullet-listB a {
text-decoration: none; /* Remove default underline */
border-bottom: 2px solid #ae914b; /* Add a custom underline */
padding-bottom: 2px; /* Optional: Adds space between text and underline */
}

.custom-bullet-listB a:hover {
border-bottom: 2px solid #012d43; /* Optional: Different underline on hover */
}

/* Custom bullet style */
.custom-bullet-list-E {
list-style-type: none; /* Remove default bullets */
padding: 0; /* Remove default padding */
}
.custom-bullet-list-E li {
color: #012d43; /* Set default text color */
position: relative; /* Positioning for the bullet */
padding-left: 20px; /* Space for the custom bullet */
margin-bottom: 5px; /* Adjust the value to increase/decrease space */
}
.custom-bullet-list-E li:nth-child(odd)::before {
content: ''; /* Required for the pseudo-element */
position: absolute; /* Position it absolutely */
left: 0; /* Align bullets to the left */
top:30%; /* Center bullets vertically */
transform: translateY(-50%); /* Offset for proper alignment */
height: 8px; /* Height of the bullet */
width: 8px; /* Width of the bullet */
background-color: #71bf44; /* Bullet color for odd items */
border-radius: 50%; /* Make it a circle */
}
.custom-bullet-list-E li:nth-child(even)::before {
content: ''; /* Required for the pseudo-element */
position: absolute; /* Position it absolutely */
left: 0; /* Align bullets to the left */
top: 30%; /* Center bullets vertically */
transform: translateY(-50%); /* Offset for proper alignment */
height: 8px; /* Height of the bullet */
width: 8px; /* Width of the bullet */
background-color: #012d43; /* Bullet color for even items */
border-radius: 50%; /* Make it a circle */
}
.custom-bullet-list-E a {
text-decoration: none; /* Remove default underline */
border-bottom: 2px solid #71bf44; /* Add a custom underline */
padding-bottom: 2px; /* Optional: Adds space between text and underline */
}

.custom-bullet-list-E a:hover {
border-bottom: 2px solid #012d43; /* Optional: Different underline on hover */
}

/* Link styles */
    .styled-link-B {
      color: #012d43;
      text-decoration: underline;
      text-decoration-color: #ae914b;
    }
    .styled-link-B:hover {
      /* Optional hover style for links */
      color: #ae914b;
      text-decoration: underline;
      text-decoration-color: #012d43;
    }
    
     .styled-link-E {
      color: #012d43;
      text-decoration: underline;
      text-decoration-color: #71bf44;
    }
    .styled-link-E:hover {
      /* Optional hover style for links */
      color: #71bf44;
      text-decoration: underline;
      text-decoration-color: #012d43;
    }
