﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Vina+Sans&display=swap');

img{
    max-width: 100%;
}


/**umb_name:Bullet points*/
.bullets {
}

.bullets   {
    display: flex;
    align-items: center; /* Align icon & text */
    font-family: "Vina Sans", serif;
    /* font-weight: bold; */
    font-size: 2.1rem; /* Adjust text size */
    color: #000000; /* Dark blue */
    text-transform: uppercase; /* Make text uppercase */
    /* margin: 15px 0; */ /* Add spacing between items */
    margin: 0 0 3px 0;
}

        /* Style the circular icons */
   .bullets::before {
            content: "";
            background: url('/content/css/img/logo-dark.svg') no-repeat center center;
            background-size: contain;
            width: 40px; /* Icon width */
            height: 40px; /* Icon height */
            margin-right: 15px; /* Space between icon and text */
            flex-shrink: 0; /* Prevent shrinking */
            opacity: 0.5; /* Make icon slightly faded */
            margin: 5px 15px 0 0;
        }
 


  ul {
	list-style: none;
	/* Remove default bullets */padding: 0;
	margin: 0 0 20px 0;
}


blockquote {
    display: inline-block; /* Makes width fit the content */
    text-align: center;
    font-family: "Vina Sans", serif;
    font-size: 54px;
    /*color: #1A2B57;*/ /* Dark blue */
    position: relative;
    padding: 20px 40px; /* Adjust padding for better spacing */
    margin: 20px 20px;
    max-width: 80%; /* Ensures it doesn't stretch too wide */
    text-transform: uppercase;
}

    blockquote::before,
    blockquote::after {
        font-size: 120px; /* Slightly smaller */
        color: #243872;
        position: absolute;
        font-family: "Playfair Display", serif;
    }

    blockquote::before {
        content: "\201C"; /* Left double quote � */
        left: -40px;
        top: -20px;
    }

    blockquote::after {
        content: "\201D"; /* Right double quote � */
        right: -40px;
        bottom: -100px;
    }

