.breadcrumb {
	margin: 0;
	padding: 90px 0;
	background-image: url(../sources/images/breadcrumb-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
}
.breadcrumb:before {
	content: "";
	background: #0E0E46;
	opacity: 0.8;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.breadcrumb .bread-crumb-head {
	text-align: center;
	position: relative;
}
.breadcrumb .bread-crumb-head .breadcrumb-title h2 {
	color: #FFF;
	font-size: 36px;
	margin-bottom: 10px;
	text-transform: capitalize;
}
@media (max-width: 991.98px) {
	.breadcrumb .bread-crumb-head .breadcrumb-title h2 {
		font-size: 28px;
	}
}
@media (max-width: 767.78px) {
	.breadcrumb .bread-crumb-head .breadcrumb-title h2 {
		font-size: 24px;
	}
}
.breadcrumb-list ul {
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
}
.breadcrumb .bread-crumb-head .breadcrumb-list ul li {
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
}
.breadcrumb .bread-crumb-head .breadcrumb-list ul li span {
	color: #FCAF3D;
	margin: 0 7px 0 7px;
	padding: 0;
}
.breadcrumb .bread-crumb-head .breadcrumb-list ul li a {
	color: #FFF;
}
.breadcrumb .bread-crumb-head .breadcrumb-list ul li a:hover {
	color: #FCAF3D;
}
.breadcrumb .bread-crumb-head .breadcrumb-list ul li+li {
	padding-left: 7px;
}
.breadcrumb .bread-crumb-head .breadcrumb-list ul li+li::before {
	content: "/";
	float: left;
	padding-right: 7px;
	color: #FCAF3D;
	font-size: 14px;
	font-weight: 600;
}
.breadcrumb .breadcrumb-border-img img {
	position: absolute;
	right: 0;
	bottom: 0;
}
@media (max-width: 991.98px) {
	.breadcrumb {
		padding: 60px 0;
	}
}
@media (max-width: 767.78px) {
	.breadcrumb {
		padding: 50px 0;
	}
}
 .help-section {
	padding: 80px 0 0;
  }
  @media (max-width: 991.98px) {
.help-section {
	  padding: 50px 0 0;
	}
  }
  .help-section p {
	line-height: 30px;
  }
 .help-sections{
    background:#fff;
    border:1px solid #eceff4;
    border-radius:14px;
    padding:22px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.help-sections h5{
    margin:0 0 18px;
    font-size:24px;
    font-weight:700;
    color:#1d2340;
}

.help-list{
    list-style:none;
    margin:0;
    padding:0;
}

.help-list li + li{
    margin-top:10px;
}

.help-list a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 16px;
    text-decoration:none;
    color:#5d54ff;
    font-size:17px;
    border-radius:10px;
    transition:.2s;
}

.help-list a::after{
    content:"→";
    opacity:.45;
    transition:.2s;
}

.help-list a:hover{
    background:#f5f6ff;
    color:#4338ff;
    transform:translateX(4px);
}

.help-list a:hover::after{
    opacity:1;
    transform:translateX(4px);
} 
.help-content{
    max-width:900px;
    margin:auto;
}

.help-content h1{
    margin-bottom:35px;
    text-align:center;
}

.help-intro{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#f8fbff;
    border:1px solid #dfeaf7;
    border-radius:14px;
    padding:25px;
    margin-bottom:35px;
}

.help-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.help-intro h3{
    margin:0 0 10px;
}

.help-intro p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.help-reasons{
    display:grid;
    gap:18px;
}

.reason-card{
    display:flex;
    gap:22px;
    padding:22px;
    border:1px solid #ececec;
    border-radius:14px;
    background:#fff;
    transition:.25s;
}

.reason-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-color:#0d6efd;
}

.reason-number{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.reason-content h4{
    margin:0 0 8px;
    font-size:18px;
}

.reason-content p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.reason-content a{
    color:#0d6efd;
    font-weight:600;
}

.help-note{
    display:flex;
    gap:18px;
    margin-top:40px;
    padding:25px;
    border-radius:14px;
    background:#fff7e8;
    border-left:5px solid #f4b400;
}

.help-note i{
    font-size:34px;
    color:#f4b400;
}

.help-note strong{
    display:block;
    margin-bottom:8px;
}

.help-note p{
    margin:0;
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

    .help-intro,
    .reason-card,
    .help-note{
        flex-direction:column;
    }

    .reason-number{
        width:45px;
        height:45px;
    }

}