
.underline {
    position: relative; /* Required for the pseudo-element to position correctly */
    display: inline-block; /* Allow the width of the underline to be set */
    padding-bottom: 20px; /* Optional: adjust padding to position text above the underline */
    margin-bottom: 5px; /* Space below the underline */
}

/* Left aligned underline */
.left.underline::after {
    content: ''; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely within the container */
    left: 0; /* Align to the left */
    bottom: -4px; /* Position it below the text */
    width: 75px; /* Set width of the underline */
    height: 6px; /* Set height of the underline */
    background-color: #ffc303; /* Set the color */
}

/* Left aligned underline */
.right.underline::after {
    content: ''; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely within the container */
    right: 0; /* Align to the right */
    bottom: -4px; /* Position it below the text */
    width: 75px; /* Set width of the underline */
    height: 6px; /* Set height of the underline */
    background-color: #ffc303; /* Set the color */
}

/* Center aligned underline */
.center.underline::after {
    content: ''; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely within the container */
    left: 50%; /* Center the underline */
    bottom: -4px; /* Position it below the text */
    width: 75px; /* Set width of the underline */
    height: 6px; /* Set height of the underline */
    background-color: #ffc303; /* Set the color */
    transform: translateX(-50%); /* Center the underline */
}


.float-img-right {
    margin-left: 18px; /* Optional spacing on the left of the image */   
    float: right;
    height: auto;
}

.card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}

.card-img-top {
    height: 50%; /* Adjust the height of the image to 50% of the card */
    object-fit: cover; /* This will make sure the image covers the area without stretching */
    margin-bottom: 15px;
}

.card-body{
    padding:25px;
}

h1 {
    font-size: 2.5rem;    
}

h2 {
    font-size: 2rem;  
}

p {
    margin-top:1.5rem;
    font-size: 1.5rem;
}

.med {
    width: 185px;
    height:auto;
}

.cbox {
    background: linear-gradient(318.8deg, #DFDBD7 -11.42%, #F2F1EF 58.01%);
    height: auto;
    width: 100%;
    z-index: 499;
    margin-top: 155px;
    padding-bottom: 200px;
    padding:20px;
}

.ups_btn {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #ffc400;
    border-color: transparent;
    border-radius: 22px;       
    padding: 8px 10px 8px 25px; 
    width: auto;
    color: #121212;
    text-decoration: none;
    transition: all .35s ease-in-out;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 10px;   
}



.blu-banner {
   
    background-image: linear-gradient(90deg, #397ab7 1.8992568125516105%, #326a9f 98.51362510322046%);
    color: white;
  }

.accordion {
    --bs-accordion-border-color: none;
}

.accordion-collapse {
    transition: height 0.4s ease; 
}

.accordion-item {
    margin-bottom:10px;
    box-shadow: 0px 4px 12px -3px rgba(0, 0, 0, .051), 0px 2px 5px 0px rgba(0, 0, 0, .141);
    border-radius: 4px;
}



.accordion-button:not(.collapsed) {
    background-color: white; 
    color: #333; 
    font-weight: bold;
}

.accordion-collapse.show {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: -1px; 
    z-index: 0; 
}

.accordion-button:not(.collapsed):hover,
.accordion-button:not(.collapsed):focus {
    background-color: white; 
    color: #333; 
}

.accordion-button:focus {
    outline: none; 
    box-shadow: none; 
}

.accordion-button::after {
    transition: transform 0.4s ease; 
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);  
}
