#visionLoginPopup {
    margin-top: 100px;
}

.form-container {
    max-width: 550px;
    margin: 0 auto;
    background-color: #f7f7f7;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.col-container {
    width: 1080px;
    margin: 0 auto;
}

.form-group-login {
    margin-bottom: 20px;
}

.forgot-password-wrapper {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    gap: 20px;
}

.sidebar-donations-buttons {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
}

.sidebar-donations-buttons a {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #666;
    border-radius: 30px;
    width: 125px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all .5s ease-in-out;
}

.sidebar-donations-buttons .btn-all-donations:hover, .btn-top-donations:hover {
    background: #e4e2e2eb;
}

.btn-top-donations i, svg {
    font-size: 14px;
    margin-right: 6px;
    padding-bottom: 0;
}


/* codes from the details_campaign.blade.php start here */

.fundraiser-box {
    text-align: left;
    border-left: 2px solid #003399;
    /* optional border */
    padding-left: 15px;
    font-size: 14px;
}

.donation-protected-wrapper {
    margin-top: 30px;
    margin-bottom: 20px;
}

.donation-protected {
    padding: 6px 20px;
    background: #dedede;
    border-radius: 5px;
    line-height: 19px;
}

.donation-protected span {
    padding-left: 10px;
}

div.start-end-label {
    margin-bottom: 15px;
}

.label-start {
    font-weight: 600;
}

.label-end {
    font-weight: 600;
    padding-left: 20px;
}

.fundraiser-details {
    border-top: 1px solid #ccc;
    margin-top: 15px;
    display: flex;
}

/* updates section design */
.section-update {
    position: relative;
    margin-top: 50px;
    z-index: 9;
}

.section-update h2 {
    margin-top: 20px;
}

.section-update h2 span:first-child {
    font-size: 30px;
    font-weight: 600;
}

.section-update h2 span:last-child {
    font-size: 26px;
    /* background: #cccccc8a; */
    padding: 1px 5px;
    border-radius: 3px;
}

.hrt-image-avatar img {
    border-radius: 624.9375rem;
    display: block;
    height: 40px;
    object-fit: cover;
    width: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.vision-updates-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.vision-updates-date {
    font-size: 14px;
    font-weight: 800;
}

.vision-tag-sm {
    background: lightblue;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 12px;
}

.vision-section-author {
    margin-top: 5px;
}

.update-item-content {
    margin-top: 20px;
}

.update-item-content-spn {
    max-height: 280px;
    overflow: hidden;
    display: block;
    position: relative;
    transition: max-height 0.3s ease;
}

/* Expanded state */
.update-item-content-spn.expanded {
    max-height: 1000px;
    /* or large enough */
    -webkit-mask-image: none;
    mask-image: none;
}

.update-item-content-spn.expanded::after {
    display: none;
}

.vision-updates-readless {
    margin-top: 10px;
}

.update-item-content-spn {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent);
    mask-image: linear-gradient(to bottom, black 90%, transparent);
}

.update-item-content-spn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(245, 245, 245, 0),
            rgba(245, 245, 245, 1));
}

.vision-updates-readmore {
    background: #fff;
    border: 0;
    text-decoration: underline;
}

.words-of-support {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    margin-top: 40px;
}

.words-of-support span {
    font-size: 16px;
    background: #e0dfdf8a;
    padding: 0 8px;
    border-radius: 3px;
    margin-left: 10px;
    padding-bottom: 2px;
    margin-bottom: 3px;
}

.words-of-support-subtitle {
    font-size: 16px;
    color: #434141cf;
    margin-top: 15px;
}

.wos-list-container {
    margin-top: 50px;
}

.wos-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.wos-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.wos-avatar-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #cccccc9c;
    color: #262626;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
}

.wos-content {
    line-height: 1.6rem;
}

.wos-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

span.wos-donation-amnt {
    font-size: 14px;
    letter-spacing: 0;
}

span.wos-donation-amnt time::before {
    content: ' . ';
}

.wos-item-content div {
    font-size: 16px;
}

/* end updates section */

.fundraiser-box .title1 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fundraiser-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    line-height: 2.4;
}

.fundraiser-item.label-fundraiser {
    font-weight: 600;
    margin-left: 20px;
}

.fundraiser-item.label-email {
    font-weight: 600;
    margin-left: 20px;
}

.fundraiser-value {
    padding-left: 5px;
}


/* 👇 fixed width for labels */
.fundraiser-item .label {
    font-weight: 500;
    width: 120px;
    /* adjust this width as needed */
    flex-shrink: 0;
    /* prevent label from shrinking */
}

.fundraiser-item .label-fundraiser {
    font-weight: 500;
}

.fundraiser-item .label-email {
    padding-left: 30px;
    font-weight: 500;
    width: 75px;
}

.fundraiser-item .value {
    font-weight: 600;
    flex: 1;
    word-break: break-all;
    /* breaks long words/emails */
    overflow-wrap: break-word;
    /* ensures wrapping inside container */
}

.custom-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 50px 0;
    justify-content: center;
}

.custom-buttons .button {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 30px;
    font-weight: 600;
    width: 300px;
}

.cards_1 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    /* height: 100%; */
    font-size: 16px;
}

.btn-donations {
    margin-bottom: 15px;
    text-align: center;
}

.btn-donations a:link {
    display: block;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #4d4d4d;
    border-radius: 30px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

/* .btn-donations a:hover {
	background-color: #4d4d4d;
	color: #fff;
} */

.btn-donations a:first-child {
    margin-right: 20px;
    color: #fff;
}

#fundraiser-donate:hover {
    background-color: #fff !important;
    color: #444;
}

.fundraiser-donation-item {
    margin-top: 40px;
}

.fundraiser-box ul {
    margin-top: 40px;
    padding-left: 0;
}

.fundraiser-box .wos-name {
    font-weight: 400;
}

.fundraiser-box .wos-item {
    margin-bottom: 0;
    gap: 25px;
}

.fundraiser-box li {
    margin-bottom: 15px;
}

.fundraiser-box .wos-donation-amnt {
    font-weight: 600;
}

.fundraiser-box .wos-donation-amnt time {
    font-weight: 400;
}

/* .fundraiser-box .wos-item {
	list-style: none;
} */

span.recent-donations svg {
    background: #cccccc9c;
    border-radius: 50%;
    padding: 10px;
}

.recent-donations {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    /* spacing */
}

.recent-donations svg {
    width: 20px;
    height: 20px;
}
/* codes from the details_campaign.blade.php ends here */

.dynamic-btn{
	border: none;
}

.sf-type {
	float: left;
	width: 75%;
}
.head-2-inn {
	position: relative;
	text-align: center;
}
.search-top {
	background: #002147;
	padding: 12px 0px;
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.32);
	/* z-index: 99; */
	/* position: absolute; */
	width: 100%;
	border-top: 1px solid #dedede;
}
.search-form {
	width: 60%;
	margin: 0 auto;
}
.head-2-inn h1 {
	margin-top: 0px;
	color: #fff;
	padding-bottom: 18px;
	line-height: 42px;
}

.head-2:before {
	content: '';
	position: absolute;
	background: #4776E6;
	background: -webkit-linear-gradient(to right, #8E54E9, #4776E6);
	background: linear-gradient(to right, #8E54E9, #4776e6d6);
	top: 0px;
	bottom: 0px;
	left: 0px;
	width: 100%;
}
.dropdown-list {
	position: absolute;
	background-color: #fff;
	border: 1px solid #ddd;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	padding: 0;
	margin: 0;
	list-style-type: none;
	max-width: 500px;
}

.dropdown-list li {
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.dropdown-list li a {
	text-decoration: none;
	color: #333;
	display: block;
	width: 100%;
}

.dropdown-list li:hover {
	background-color: #f0f0f0;
}
 .your-page ul.page-publishes>li { 
	margin-bottom: 0;
	text-align: center;
   width: 19% !important;  
}  
.your-page ul.page-publishes>li:nth-child(1) {
	width: 100%;
	display: inline !important;
} 

.share-btn ul li:nth-child(1) a {
	background: #3b5998;
}
.share-btn ul li a {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-size: 10px;
	padding: 8px 12px;
	border-radius: 3px;
}
.share-btn ul li:nth-child(2) a {
	background: #00aced;
}
.blog-share-btn ul li {
	margin-bottom: 0px;
	padding-bottom: 15px;
	border-bottom: 0px;
	padding-top: 0px;
	line-height: 26px;
}
.pg-blog img {
	width: 100%;
	/* margin-bottom: 20px; */
}
.pg-blog ul {
	list-style-type: none;
}
.share-btn ul li {
	display: inline-block;
	margin-right: 4px;
	line-height: 40px;
}
.share-btn ul {
	padding: 0px;
	margin-bottom: 0px;
}
.share-btn ul li:nth-child(3) a {
	background: #d34836;
}
.about-sp{
	padding: 0;
}

.color_overlay{
	display: flex;
	align-items: center;
	justify-content: center;
} 

.dynamic-btn {
    border: none;
}

.sf-type {
    float: left;
    width: 75%;
}

.head-2-inn {
    position: relative;
    text-align: center;
}

.search-top {
    background: #002147;
    padding: 12px 0px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.32);
    /* z-index: 99; */
    /* position: absolute; */
    width: 100%;
    border-top: 1px solid #dedede;
}

.search-form {
    width: 60%;
    margin: 0 auto;
}

.head-2-inn h1 {
    margin-top: 0px;
    color: #fff;
    padding-bottom: 18px;
    line-height: 42px;
}

.head-2:before {
    content: '';
    position: absolute;
    background: #4776E6;
    background: -webkit-linear-gradient(to right, #8E54E9, #4776E6);
    background: linear-gradient(to right, #8E54E9, #4776e6d6);
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

.dropdown-list {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style-type: none;
    max-width: 500px;
}

.dropdown-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.dropdown-list li a {
    text-decoration: none;
    color: #333;
    display: block;
    width: 100%;
}

.dropdown-list li:hover {
    background-color: #f0f0f0;
}

.your-page ul.page-publishes>li {
    margin-bottom: 0;
    text-align: center;
    width: 19% !important;
}

.your-page ul.page-publishes>li:nth-child(1) {
    width: 100%;
    display: inline !important;
}

.share-btn ul li:nth-child(1) a {
    background: #3b5998;
}

.share-btn ul li a {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    padding: 8px 12px;
    border-radius: 3px;
}

.share-btn ul li:nth-child(2) a {
    background: #00aced;
}

.blog-share-btn ul li {
    margin-bottom: 0px;
    padding-bottom: 15px;
    border-bottom: 0px;
    padding-top: 0px;
    line-height: 26px;
}

.pg-blog img {
    width: 40px;
    /* margin-bottom: 20px; */
}

.pg-blog ul {
    list-style-type: none;
}

.share-btn ul li {
    display: inline-block;
    margin-right: 4px;
    line-height: 40px;
}

.share-btn ul {
    padding: 0px;
    margin-bottom: 0px;
}

.share-btn ul li:nth-child(3) a {
    background: #d34836;
}

.about-sp {
    padding: 0;
}

.color_overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

#donationsModal {
    z-index: 9999999;
}

#donationsModal .modal-content {
    border-radius: 25px;
}

.donation-items ul {
    padding-left: 20px;
}

.donation-items li {
    list-style: none;
}

.donation-items {
    max-height: 400px;
    min-height: 400px;
    overflow-y: auto;
}

.donations-popup-container {
    padding: 0;
}

.donations-popup-container h2 {
    letter-spacing: -1px;
    color: #333;
}

.donations-popup-container .sub-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 20px 40px;
}
.donations-popup-container a{
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

.donations-popup-container a.active {
    background: #333;
    color: #fff;
}
.donations-popup-container a.active:hover {
    background: #575757;
    color: #fff;
}

.donations-popup-container a:hover {
    background-color: #dbdada;
    color: #333;
}

.donation-bottom-button {
    margin: 20px 0 15px;
    padding: 0 15px;
    cursor: pointer;
}

.donation-bottom-button a {
    display: inline-block;
    width: 100%;
    color: #fff;
    border: 1px solid #ccc;
    padding: 7px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

#donationsModal .modal-dialog {
    max-width: 550px !important;
}

.modal-dialog-centered {
    position: relative;
}

.donations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 20px -10px 20px;
}

#btnPopupClose {
    padding: 5px 11px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    z-index: 999;
} 

#btnPopupClose:hover {
    background: #e0dddd;
}

.donations-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 20px 10px; */
    /* background: lightblue; */
    background: rgba(var(--dynamic-bg-color-rgb), 0.5);
    margin-bottom: 30px;
    margin-left: -20px;
}

.donations-banner .banner-img {
    flex-basis: 80px;
    height: 75px;

}

.donations-banner .banner-text {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 0 8px;
}

.donations-banner .banner-button {
    flex-basis: 80px;
}

.donations-banner a {
    background: var(--dynamic-bg-color);
    padding: 7px 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    margin-right: 10px;
}

span.chk-anonymous {
    display: flex;
    align-items: center;
    gap: 10px;
}
span.chk-anonymous label {
    margin-bottom: 0;
}

#chkAnonymous {
    width: 20px;
    height: 20px;
}
.wos-avatar-default svg {
    margin-right: 12px;
}

.text-overlay h5:hover {
    color: #fa6342;
}

.slder_section .owl-carousel .item {
    height: 635px;
    background-size: cover;
    background-position: center;
    /* border-radius: 10px; */
    /* padding: 20px; */
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/*.slder_section .owl-carousel .item:hover img{
	   transform: scale3d(1.1, 1.1, 1);
	}*/


.slder_section .owl-nav button {
    position: absolute;
    top: 45%;
    background: #000 !important;
    color: #fff !important;
    border-radius: 50%;
    padding: 10px 15px !important;
    transform: translateY(-50%);
}

.slder_section .owl-nav .owl-prev {
    left: -25px;
}

.slder_section .owl-nav .owl-next {
    right: -25px;
}

.slder_section .btn_eductation {
    /*background-color: #ff5c00;*/
    padding: 7px 18px 8px;
    z-index: 2;
    font-size: 19px;
}

.slder_section .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;


}

.slder_section .owl-theme .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
}

.slder_section .owl-theme .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
}

.slder_section .owl-dot.active::before {
    width: 14px;
    height: 14px;
}

.slder_section .owl-controls {
    margin-top: 40px;
}

.slder_section .content_box {
    color: #fff;
    z-index: 999;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 20px
}

.slder_section .owl-dot span {
    display: none !important;
}

.slder_section .item {
    position: relative;
}

.slder_section .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, 0.6);*/
    z-index: 1;
}

.slder_section .progresss-bar {
    background-color: #ff5c00;
    height: 10px;
    position: relative;
}

.slder_section .progresss-bar::before {
    content: "";
    position: absolute;
    top: -4px;
    right: 0px;
    height: 10px;
    width: 10px;
    background-color: var(--thm-base);
    border-radius: 50%;
    z-index: 1;
}

.slder_section .image_box {
    position: relative;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;

}

.image_box {
    overflow: hidden;
    /* border-radius: 10px; optional for smooth edges */
}

.image_box img {
    width: 100%;
    height: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 0.8s ease-in-out;
}

/*.image_box:hover img {
   transform: scale3d(1.1, 1.1, 1);
}*/

.slder_section .text-overlay {
    position: absolute;
    color: #fff;
    bottom: 10px;
    width: 100%;
    left: 0;
    padding: 0 20px;
}

.text-overlay h5 a {
    font-size: 24px;
    text-decoration: none !important;
}

.explore_now .cards_1 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    /* height: 100%; */
}

.explore_now .card:hover {
    transform: translateY(-5px);
}

.explore_now .cards_1 img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    position: relative;
}

.explore_now .category {
    background-color: #ff5a00;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 600;
    margin: 10px auto;
    text-transform: uppercase;
}

.explore_now .card-content {
    padding: 15px;
    text-align: center;
}

.explore_now .card-content h3 {
    font-size: 24px;
    color: #222;
    margin-top: 20px;
    /* margin: 10px 0; */
    /* font-weight: 700; */
}

.explore_now .heart {
    position: absolute;
    top: 20px;
    right: 20px;
    /* background-color: #fff; */
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heart svg {
    width: 18px;
    color: #ff5c00;
    transition: transform 0.3s ease, color 0.3s ease;
}

.heart:hover svg {
    transform: scale(1.2);
    color: #e00000;
}

.explore_now .text-overlay {
    /* position: absolute; */
    color: #030303ff;
    bottom: 10px;
    width: 100%;
}

.explore_now .text-overlay h5 a {
    font-size: 14px !important;
}

.explore_now .owl-carousel .item {
    /* height: 380px; */
    background-size: cover;
    background-position: center;
    /* border-radius: 10px; */
    padding: 3px;
    width: 100%;
    position: relative;
}

.text_img {
    position: relative;
    text-align: center;
    /* overflow: hidden; */
}

.text_img img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.cards_1:hover .text_img img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.text_img .category {
    position: absolute;
    bottom: -12px;
    margin: auto;
    width: 100px;
    left: 0;
    right: 0;
    transition: all 0.4s ease;
}

.bg-lights {
    background-color: #F1F8FF;
    padding: 10px;
    margin: 10px 0;
    color: #333;
}

.explore_now .owl-dot span {
    display: none !important;
}

.explore_now .progress {
    margin: 0 10px;
}

/* .home-students-block .img-resp-square>img {
    position: relative;
} */

.home-students-block .row {
    display: flex;
    /* align-items: center; */
}

.home-students-block .row .aim {
    margin-top: -7px;
}

.home-students-box h3 {
    font-size: 18px !important;
    font-weight: 600;
    color: #303030;
}

.home-students-block span.state-breadcrumb {
    display: inline-block;
    font-weight: bold;
    margin: 0px 0 10px;
}

/* .home-students-block-img {
    padding-bottom: 0;
} */

.home-students-block-img {
    width: 112px;
    height: 112px;
    overflow: hidden;
    /* hides extra parts */
    position: relative;
}

.home-students-block-img img {
    width: 100px;
    height: 100px;
    display: block;
}

.home-students-block-img i {
    width: 100px;
    height: 100px;
    border: 1px solid #818181;
    padding: 5px;
}

.home-students-block-img svg {
    width: 102px;
    height: 110px;
    border: 1px solid #818181;
    padding: 5px;
}

.student-story-container {
    width: 100%;
    margin: 50px auto;
    border-radius: 30px;
    padding: 25px 10px 0px;
    background-color: #fff;
}

.student-story-container .modal-header {
    padding: 0;
    /* border-bottom: none; */
    justify-content: space-between;
}
.modal-header h2 {
    margin-left: 70px;
}
.modal-header button {
    background: #fff;
    border: none;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    transition: all 0.4s ease-in-out;
}

.modal-header button:hover {
    background: #eaeaea;
}

#studentStoryContent {
    max-width: 100%;
    max-height: 450px;
    overflow-y: auto;
    padding: 0 20px 10px 0;
    /* margin-top: -10px; */
    border: 0;
}

#studentStoryContent span {
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
}

#studentStoryContent h2 {
    text-align: center;
    margin-bottom: 20px;
}

#studentStoryContent img.profile-logo {
    float: left;
    width: 125px;
    height: 125px;
    margin-right: 15px;
    /* margin-bottom: 10px; */
}
.modal-body-sponsor {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 25px;
}

/* #profile_form .personal-head input[type="text"], #profile_form .personal-head textarea { 
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 95%;
    margin-bottom: 10px;
}  */

.sponsor-for-title {
    font-size: 18px;
    font-weight: bold;
}

.sponsor-for-type {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 10px;
    font-size: 16px;
}

.sponsor-for-type input[type="radio"] {
    margin-right: 7px;
}

.sponsor-plan {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

.sponsor-amount {
    padding: 10px 40px;
}

.modal-body-sponsor .d-md-block {
    padding-right: 30px;
}

.keep-me-anonymous {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.keep-me-anonymous input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
}
.keep-me-anonymous label {
    margin-bottom: 0;
}
 /* #profile_form textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 370px;
    margin-bottom: 15px;
} */

.hom-list-share {
    width: 100% !important;
}

.hom-list-share ul li:first-child a {
    color: #fff !important;
    border: 1px solid #149acc !important;
    background: #1aa5d8 !important;
    /* background: linear-gradient(to bottom, #1aa5d8, #1386b1) !important; */
    text-transform: uppercase !important;
    padding: 7px 15px;
}

.hom-list-share ul li:first-child a:hover {
    color: #fff !important;
    border: 1px solid #149acc !important;
    background: #1aa5d8 !important;
    background: linear-gradient(to bottom, #1aa5d8, #1386b1) !important;
    text-transform: uppercase !important;
}

.hom-list-share ul li:nth-child(2) a {
    display: block;
    background: #fff !important;
    border: 1px solid #c2c2c2 !important;
    margin: 2px;
    font-size: 12px;
    color: #8a8a8a !important;
    text-align: center;
    font-weight: 600;
    padding: 4px 5px !important;
    line-height: 24px;
    border-radius: 0;
}

.hom-list-share ul li:nth-child(2) a:hover {
    background: #fff !important;
    border: 1px solid #c2c2c2 !important;
    color: #8a8a8a !important;
    text-align: center;
    font-weight: 600;
}

.student-info-flex {
    margin-bottom: 20px;
}

.student-info-flex p {
    font-size: 16px;
    margin-bottom: 0;
}

.student-info-flex p span {
    font-weight: 600;
    padding-right: 10px;
}

.sponsor-student-all {
    text-align: center;
    margin-top: 75px;    
}

.sponsor-student-all a {
    width: 191px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    transition: all 0.5s ease-in-out;
}

.sponsor-student-all a:hover {
    background-color: #149acc;
    color: #fff;
}

#myModal .modal-content {
    width: 56.25rem;
    margin: 0 auto;
}

.form-control-new {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}


@media screen and (max-width: 450px) {
    .fullwidth_section .container {
        width: auto;
    }
    .pg-blog {
        padding-left: 10px !important;
        padding-right: 0 !important;
    }
}

@media (max-width:768px) {
    .col-container {
        width: 100%;
    }

    .mob-space {
        margin-top: 0;
    }

    .slder_section .owl-carousel .item {
        height: 280px;
        /* width: 30%;*/
    }

    .navbar-logo {
        max-width: 225px;
    }

    header {
        padding: 10px 10px 10px 5px;
    }

    .mainMenuMobBars svg {
        margin-right: 0;
    }

    .mainMenuMobBars svg.icon-close {
        margin-right: 5px;
    }

    .form_des {
        line-height: 1.8;
    }

    .wos-list {
        padding-left: 10px;
    }

    .wed-hom-footer {
        padding-top: 0;
    }
    
    .slder_section .text-overlay {
        position: relative;
        padding: 0 0 0 0;
        margin-top: 47%;
    }

    .slder_section .content_box {
        height: auto;
    }

    .text-overlay h5 a {
        font-size: 17px;
    }

    .slder_section .btn_eductation {
        padding: 5px 6px 4px;
        font-size: 12px;
    }

    h5 {
        padding-left: 0% !important;
    }

    .slder_section .content_box {
        padding: 4px;
        position: absolute;
        top: 0;
    }

    .start-end-label span {
        font-size: 16px;
    }

    .form_des {
        font-size: 12px;
    }
    .space-both {
        padding: 0 0 10px 10px !important;
    }
    .home-students-block-img {
        width: auto;
        height: auto;
    }
    .home-students-block-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        padding-inline: 0;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .home-secs {
        overflow-x: clip;
    }
    
    .modal-body-sponsor {
        display: flex;
        flex-direction: column;
    }

    #profile_form .f-title {
        margin-bottom: 15px;
    }

    /* .donate-wrapper.donate-wrapper1.tuition_fee,
    .donate-wrapper.donate-wrapper1.hostel-fees
    {
        overflow-x: scroll;
    } */
    .sponsor-plan {
        flex-direction: column;
        gap:20px;
    }
    .sponsor-amount {
        width: 100%;
        text-align: center;
    }
    .f-title.sponser_div.txt_center {
        flex-direction: column;
        gap: 7px;
    }

    .f-title.sponser_div.txt_center .sponsor1 {
        width: 100%;
        text-align: center;        
    }
}

.owl-carousel {
    display: block !important;
}

.side_border {
    border-top: none;
    border-right: none;
    border-bottom: none;
    padding-left: 10px;
}

/* .footer {
    margin-top: -9%;
} */