@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');

.loader {
	color: #000;
	font-size: 11px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sp {
	clear: both;
	height: 32px;
	margin: 0 auto 5px;
	width: 32px;
}

/* Spinner Circle Rotation */
.sp-circle {
	border: 4px rgba(0,0,0,0.25) solid;
	border-top: 4px rgba(0,0,0,1) solid;
	border-radius: 50%;
	-webkit-animation: spCircRot .6s infinite linear;
	animation: spCircRot .6s infinite linear;
}
@-webkit-keyframes spCircRot {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(359deg); }
}
@keyframes spCircRot {
	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }
}

body {
    display: flex;
    justify-content: center;
    align-items: top;
    /* font-family: 'Source Sans Pro', sans-serif; */
    /* font-family: "Poppins", sans-serif; */
    font-family: sans-serif;
    color: #000;
    margin: 20px 0;

}

.main-content,  
.progression,
.footer {
    opacity: 0;
}
.container {
    margin: 0 100px;
    text-align: center;
    max-width: 60rem;
}

 .progression {
/* #9CCB38; #BFDBFE80; */
    background-color: lightgray;
    border-radius: 10px;
    margin-bottom: 25px;
}

 .progression p {
    /* background-color: #3B82F6; */
    border-radius: 10px;
    display: block;
    color: #FFF;
}

.main-content {
    margin: 20px;
    opacity: 0;
}
.main-question {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #000;
}

.question-note {
    font-size: 1.1rem;
    line-height: 1.75rem;
    color: #000;
}

.notice {
    /* color :  #89824E; */
    text-align: center;
    margin-bottom: 10px;
}


.content-flex {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
section .header{
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-weight: 400;
}

i {
    align-self: center;
    margin-right: 10px;
    color: grey;
}
section .header p {
    align-self: center;
    margin:0;
    /* color:  #EE7B08; */
    /* color: #89824E; */
}

a,
a:hover {
    text-decoration: none;  /* Remove underline by default */
}
ul {
    margin: 0;
    padding: 8px;
    list-style-type: none;
}

ul li{
    margin-bottom: 12px;
    padding: 10px;
    background-color: #FAFAFA;
    box-shadow: 0 2px 7px rgb(0 0 0 / 8%);
    user-select: none;
    cursor: pointer;

    border-color: rgb(212 212 216 / 1);
    border-radius: 8px;
    border: 0 solid #e4e4e7;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

ul li:hover {
    background-color: #9CCB38;  /* Change background color on hover */
}

ul li h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: #27272A;
}

section {
    display: block;
}


.nav {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 10px 0;
    padding: 10px 0 10px 0;;
}

.nav a {
    display: inline-block;      /* Makes the link behave like a block-level element */
    padding: 10px 20px;         /* Adds padding to create space inside the button */
    background-color: #9CCB38;  /* Button background color */
    color: white;               /* Button text color */
    text-decoration: none;      /* Removes the underline */
    border-radius: 5px;         /* Adds rounded corners */
    font-size: 14px;            /* Increases font size */
    font-weight: 300;          /* Makes the text bold */
    text-align: center;         /* Centers the text inside the button */
    cursor: pointer;            /* Shows a pointer cursor on hover */
}

.nav a {
    background-color: #9CCB38;  /* Changes background color on hover */
}
/* .resource {
    display: flex;
}
.resource .images{
    flex: 0 0 70%;
}
.resource .links {
    flex:1;
}
.resource .images img {
    width: 100%;
    object-fit: cover;
} */

.carousel {
    margin:15px
}
.links {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.links  span {
    font-size: 0.9rem;
    color: #000;
}
.links  span a {
    color: lightgray;
}
.links  span a:hover {
    color: #000;
}

.footer {
    display: flex;
    justify-content: space-between;
}

.footer img {
    width: 8rem;
    object-fit: cover;
    border-radius: 10px;
    height: auto;
}

.stop {
    color: red;
}

.carousel-inner {
    width: 100%;               /* Ensure carousel takes full width */
    /* max-height: 300px;           */
}

.carousel-inner img {
    object-fit: cover;          /* Ensure the image covers the container without stretching */
    width: 100%;                /* Make the image take up the full width of the carousel */
    height: 100%;               /* Ensure it takes the height set by the carousel-inner */
    border-radius: 10px;        /* Optional: Add rounded corners to images */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);  /* Optional: Add semi-transparent background to the control icons */
    border-radius: 50%;                    /* Make control icons circular */
    padding: 20px;                         /* Adjust padding for better visibility */
}
