
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}




:root {
  --theme-color: #2A2D93;
  --title-color: #1A1A1A;
  --body-color: #878D97;
  --smoke-color: #EFF1F5;
  --secondary-color: #EEF2FB;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E0E0E0;
  --title-font: "Exo", sans-serif;
  --body-font: "Fira Sans", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1220px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 80px;
  --ripple-ani-duration: 5s;
  --title-font: "Exo", sans-serif;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
p{
	font-family: 'Roboto', sans-serif;
}

a{
	text-decoration: none;
	transition: all 0.3s ease;
}
 p{color:#000;}

.top-header-content{
	display: flex;
	background-color: #2a2d93;
	align-items: center;
	position: relative;
	border-radius: 0 0 0 10px;
}

.top-header-content:after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	background-color: #2a2d93;
	height: 100%;
	width: 100%;
}
.contact-info{
	color: #ffff;	background-color: #2A2D93;	padding: 21px 37px 21px 37px;
	border-radius: 0px 0px 0px 10px;
	margin-right: 45px;
	font-size: 14px;
	font-weight: 600;
  text-align: center;
}

.contact-info i{
	font-size: 12px;
	color: #FFCF00;
	margin-right: 4px;
}

.contact-info span{
	color: #FFCF00;
	text-transform: uppercase;
	margin-right: 4px;
}

.tp-links li a{
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: Montserrat;
}

.tp-links li{
	display: inline-block;
	margin-right: 40px;
	position: relative;
}

.tp-links li:last-child {
	margin-right: 0;
}

.tp-links li:before
{
	content: "";
	position: absolute;
	width: 1px;
	height: 16px;
	background-color: #C4C4C4;
	right: -24px;
}
.tp-links li:last-child:before {
	display: none;
}

.social-links{
	margin-left: auto;
}

.social-links li{
	display: inline-block;
	color: #ffff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	margin-right: 15px;
}
.social-links li:last-child {
	margin-right: 0;
}


.social-links li a{
	color: #ffff;
	display: inline-block;
	text-align: center;
	font-size: 14px; padding: 2px;
}
.logo {
    margin-left: 0px;
}
.social-links a:hover{
	color: #F58B03;
}

nav .links li{
	display: inline-block;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	margin-right: 25px;
}
nav ul li {
	position: relative;
}
nav > ul > li:before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 0;
    right: -15px;
    font-weight: 900;
    color: #000;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
}
nav > ul > li.has-items:before {
	opacity: 1;
	visibility: visible;
}
nav {
    margin-left: auto;
    margin-right: auto;
}
nav ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 250px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0,0,0,0.10);
	padding: 20px 30px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-top: 20px;
}
nav ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin:0;
}
nav ul ul li a {
	font-size: 14px;
}

nav ul ul li a:before{
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #4447AC;
    transition: all 300ms ease;
}

nav ul ul li a:hover:before{
	width: 100%;
}

nav ul ul li:last-child a:before{
	display: none;
}

nav ul ul li {
	margin-bottom: 15px;
	width: 100%;
	border-bottom: 1px solid #ebf1f5;
	padding-bottom: 15px;
}
nav ul ul li:last-child {
	margin-bottom: 0;
	border: 0;
	padding-bottom: 0;
}

nav .links li:last-child{
	margin-right: 23px;
}

nav .links li a{
	color: black;
}

nav .links li a:hover{
	color: #4447AC;
}

.bottom-header-content {
   display: flex;
   align-items: center;
}

nav {
	margin-left: auto;
}

.logo > a img:first-child {
    margin-right: 7px;
    position: relative;
    top: 2px;
}


.donate-btn {
   background-color: #4447AC;
   color: #ffff;
   display: flex;
   align-items: center;
   font-weight: 700;
	font-size: 15px;
	margin-left: 10px;
	border-radius: 5px;
	height: 56px;
	padding: 0 30px;
	overflow: hidden;
	position: relative;
}
.btn-anm {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-anm:before,
.slick-prev:after,
.slick-next:after {
	position: absolute;
    top: 133px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: #2a2d93;
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
    border-radius: 50%;
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    z-index: -1;
}

.slick-prev:after,
.slick-next:after {
	background: #4447AC;
}
.btn-anm:hover:before,
.slick-next:hover:after,
.slick-prev:hover:after {
    top: 0;
    left: -70px;
    right: -70px;
}


a:hover {
	color: inherit;
}

.cart-btn:hover {
	color: #2a2d93;
}
.donate-btn:hover {
	color: #fff;
	background-color:#4447ACc2;
}
.donate-btn img{
	margin-right: 10px;
}

.donate {
   display: flex;
   align-items: center;
   margin-left: 15px;
}

.cart-btn {
   background-color: #F58B03;
   width: 56px;
   height: 56px;
 	border-radius: 5px;
 	color: #2a2d93;
 	position: relative;
 	line-height: 56px;
 	text-align: center;
 	font-size: 20px;
}

.cart-btn span {
	position: absolute;
	right: -2px;
	display: inline-block;
	top: -2px;
	width: 20px;
	height: 20px;
	background: #2a2d93;
	line-height: 20px;
	border-radius: 100%;
	font-size: 12px;
	font-weight: 800;
	color: #ffff;
	}

.bottom-header{
	padding: 10px 0 10px;
}

.slider-imge img{
	width: 100%;
}

.slider-contant span{
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 7px;
   display: inline-block;
   position: relative;
   padding-bottom: 9px;
   z-index: 1;
}
.slider-contant span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 20px;
    background: url(../images/shape1.png);
    background-repeat: no-repeat;
    transform: translateX(-50%);
    z-index: -1;
}

.slider-contant h2{
	font-weight: 700;
	font-size: 55px;
	line-height: 128.7%;
	margin-bottom: 18px;
}

.slider-contant p{
	font-weight: 400;
	font-size: 22px;
	margin-bottom: 56px;
}

.banner-slide {
    position: relative;
}

.slider-contant {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 750px;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #ffff;
    margin-top: -32px;
    z-index: 99;
}

.banner-btn {
    display: inline-block;
    height: 69px;
    background-color: #2a2d93;
    line-height: 69px;
    padding: 0 50px;
    border-radius: 5px;
    color: #ffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 6px;
}

.banner-btn img{
	display: inline-block;
	position: relative;
   	top: 0px;
  	margin-right: 10px;
}

.slick-prev,
.slick-next{
    width: 70px;
    height: 70px;
    background: #2a2d93;
    z-index: 99;
    border-radius: 5px;
    color: black;
}

.slick-prev:before,
.slick-next:before{
	color: white;
}

.slick-prev{
	left: 20px;
}

.slick-next{
	right: 20px;
}

.slick-prev:hover, .slick-prev:focus, 
.slick-next:hover, .slick-next:focus {
     color: black; 
    outline: none;
     background: #2a2d93; 
}

.sec-tittle{
	text-align: center;
	margin-bottom: 37px;
}

.sec-tittle span{
	font-weight: 500;
	font-size: 18px;
	color: #4447AC;
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 3px;
	display: block;
	z-index: 1;
	letter-spacing: -0.97px;
}
.sec-tittle span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 20px;
    background-image: url(../images/shape1.png);
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateX(-50%);
}
.sec-tittle h2{
	font-weight: 700;
	font-size: 40px;
	line-height: 55px;
	text-transform: capitalize;
}

.service{
	text-align: center;
	border: 2px solid #E7E7E7;
	border-radius: 30px;
	padding: 55px 29px 68px;
	position: relative;
}

.service-info span{
	display: block;
	font-weight: 700;
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 2px;
}

.service-info h3{
	font-weight: 800;
	font-size: 26px;
	line-height: 36px;
	color: #2a2d93;
    text-transform: uppercase;
}

.next-link {
	position: absolute;
	bottom: -26px;
	background-color: #F58B03;
	width: 52px;
	height: 52px;
	line-height: 52px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	display: inline-block;
	transition: all 0.3s ease; 
}
.next-link img {
	transform: rotate(-180deg);
}

.heading-bottom {
    text-align: center;
    padding-top: 66px;
}

.heading-bottom p a{
	text-decoration: underline;
	color: #4447AC;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
}

.about-content > span{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4447AC;
	margin-bottom: 11px;
	display: inline-block;
}

.about-content{
	position: relative;
	padding-bottom: 38px;
}

.about-content h3{
	font-weight: 700;
	font-size: 36px;
	line-height: 50px;
	color: #FFFFFF;
	max-width: 421px;
	margin-bottom: 6px;
	display: inline-block;
}

.about-content > h2{
	font-weight: 700;
	font-size: 70px;
	line-height: 90px;
	color: #F58B03;
	margin-bottom: -9px;
}
.about-content h2 span {
	font-size: 40px;
	text-transform: capitalize;
}
.h3{
	margin-bottom: 16px;
}

/* .about-content:before{
	content: "";
	width: 93px;
	height: 6px;
	background: #4447AC;
	border-radius: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
} */

.counter-content{
	text-align: center;
	border: 2px solid #fff;
	border-radius: 10px;
	padding: 41px 0;
	width: 176px;
	height: 176px;
	margin-bottom: 40px;
	margin-right: 40px;
	position: relative;
}

.counter-content:nth-child(2),
.counter-content:last-child{
	margin-right: 0;
}

.kids {
    height: 100%;
}

.kids img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter-content:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	width: 15px;
	height: 15px;
	border-radius: 5px;
	background-color: #F58B03;
}

.counter-content span{
	display: block;
	color: #ffffff;
}

.counter-content h2,
.counter-content h2 + span{
	font-weight: 700;
	font-size: 40px;
	color: #ffffff;
	margin-bottom: 13px;
	display: inline-block;
}

.counter-content p{
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}

.counter-sec{
	display: flex;
	flex-wrap: wrap;
	max-width: 436px;
	margin-left: auto;
	margin-right: -36px;
}

.counter-sec .col-lg-4:nth-child(2),
.counter-sec .col-lg-4:last-child{
	margin-right: 0;
}

.blocks{
	margin-top: 80px;
}

.about-section{
	background-image:url(../images/bg1.jpg);
	position: relative;
    z-index: 1;
    background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

.about-section:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #2a2d93;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.95;
    z-index: -1;
}



.block {
	padding: 100px 0;
}

.service-icon {
	margin-bottom: 17px;
}

.heading-bottom p {
	font-family: 'Montserrat';
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #2a2d93;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.play-info a{
	display: inline-block;
	width: 144px;
	height: 144px;
	background: #F58B03;
	border-radius: 10px;
    font-size: 48px;
    text-align: center;
    position: relative;
}
.play-info a i{
	color: #2a2d93;
	font-size: 74px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.pl-img{
	background-image: url(../images/img3.png);
	height: 100%;
	background-size: cover;
}

.container-fluid{
	padding: 0;
}

.container-fluid .row{
	margin: 0;
}

.container-fluid .col-lg-6{
	padding: 0;
}

.play-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.play-now{
	margin-left: 30px;
}

.play-now h2 span{
	display: block;
	font-weight: 800;
	font-size: 18px;
	text-transform: capitalize;
	color: #fff;
	margin-bottom: -7px;
}

.play-now h2{
	font-weight: 800;
	font-size: 36px;
	line-height: 45px;
	text-transform: uppercase;
	color: #fff;
}

.working-sec{
	background: #F4F4F4;
}

.working-info{
	padding: 138px 113px 113px;
}
.working-info .sec-tittle.ta-left {
	margin-bottom: 20px;
}

.working-info p{
	font-weight: 400;
	font-size: 16px;
	color: #000;
	line-height: 24px;
	margin-bottom: 20px;
	max-width: 610px;
}

.working-info .next-link{
	position: relative;
	transform: unset;
	text-align: center;
	line-height: 50px;
	top: 0;
	left: 0;
}

.working-info ul{
	display: flex;
    flex-wrap: wrap;
    margin-right: 29px;
}

.working-info ul li{
	width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
    padding: 8px 60px 14px 0;
    font-weight: 700;
	font-size: 20px;
	color:#2a2d93;
}

.working-info ul li:nth-child(3),
.working-info ul li:nth-child(4)
{
	border-bottom: none;
	padding-bottom: 8px;
	padding-top: 14px;
}

.working-info ul li:nth-child(2),
.working-info ul li:nth-child(4){
	border-right: none;
	padding-right: 0;
	padding-left: 55px;
}

.sec-tittle.ta-left{
	text-align: left;
	position: relative;
	z-index: 1;
}

.sec-tittle.ta-left span:before{
	left: 0;
	transform: unset;
}

.img-info img{
	width: 100%;
	border-radius: 10px 10px 0 0;
	transition: all 0.5s ease;
}

.content-info{
	background: #CE1535;
	padding: 0 32px 20px 32px;
}

.content-info span{
	font-weight: 600;
	font-size: 12px;
	color: #2a2d93;
	width: 129px;
	height: 32px;
	background: #F58B03;
	border-radius: 5px;
	line-height: 32px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: -16px;
    text-transform: uppercase;
    z-index: 99;
}

.content-info h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	position: relative;
    top: -2px;
}

.donation-counter{
	background: #e61f40;
	border-radius: 0px 0px 10px 10px;
}

.donation-counter ul{
	display: flex;
	border-top: 2px solid #b72941;
}

.side-bar {
    margin-top: 3px;
}

.donation-counter ul li{
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	color: #fff;
	border-right: 2px solid #b72941;
	padding: 17px 33px 20px 33px;
	width: 50%;
}

.donation-counter ul li:last-child{
	border-right: none;
	padding-right: 0px;
}

.donation-counter ul li span{
	display: block;
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: #F58B03;
}
.bottom-heading-info {
	text-align: center;
}
.bottom-heading-info a{
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	background: #F58B03;
	border-radius: 10px;
	height: 63px;
	line-height: 63px;
	text-align: center;
	color: #2a2d93;
	margin-top: 60px;
	display: inline-block;
	padding: 0 50px;
	border:2px solid transparent;
}
.bottom-heading-info a:hover {
	color: #2a2d93;
	background-color: #fff;
	border-color: #2a2d93;
}
.event-info{
	display: flex;
	position: relative;
	margin-right: 27px;
}

.event-content{
	padding: 49px 30px 26px 30px;
	background: #FFFFFF;
	border-radius: 0 30px 30px 0;
}

.event-content span{
	font-weight: 600;
	font-size: 14px;
	color: #4447AC;
	margin-bottom: 21px;
	display: inline-block;
}

.event-content span i{
	padding-right: 7px;
}
.event-content span:last-child{
	margin-bottom: 0;
}

.event-content h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	color: #2a2d93;
	margin-bottom: 11px;
}

.event-img {
	position: relative;
	flex: 0 0 270px;
	overflow: hidden;
}
.event-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}
.event-info:hover .event-img img {
	transform: scale(1.05) rotate(1deg);
}

.event-content p{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	margin-bottom: 45px;
}

.light-bg{
	background: rgba(244, 244, 244, 0.95);
}

.callender-sec{
	height: 104px;
	width: 94px;
	background: #4447AC;
	border-radius: 10px;
	text-align: center;
	padding: 17px 0 0 0;
	position: absolute;
    bottom: 20px;
    left: 20px;	
}

.callender-sec h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	color: #fff;
}

.callender-sec span{
	background: #2a2d93;
	border-radius: 0px 0px 10px 10px;
	font-weight: 700;
	font-size: 16px;
	width: 94px;
    height: 34px;
    line-height: 34px;
	color: #fff;
	position: absolute;
    left: 0px;
    bottom: 4px;
    display: inline-block;
}


.event-info .next-link {
    right: -27px;
    left: auto;
    bottom: 35px;
    transform: unset;
    text-align: center;
}


.event-style-info:last-child{
	margin-bottom: 0;
}

.event-style-info h3{
	font-weight: 600;
	font-size: 20px;
	color: #2a2d93;
	line-height: 26px;
}

.event-style-info ul{
	margin-top: 18px;
}

.event-style-info ul li{
	font-weight: 600;
    font-size: 14px;
    color: #4447AC;
    display: inline-block;
    padding-right: 29px;
}

.event-style-info ul li:last-child{
	padding-right: 0;
}

.event-style-info ul li i{
	padding-right: 7px;
}
.event-style-contant {
	position: relative;
	background: #fff;
    border-radius: 30px;
    padding: 47px 70px 48px;
    margin-bottom: 30px;
}
.event-style-contant:last-child {
	margin-bottom: 0;
}
.event-style-contant .next-link {
    right: -25px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.event-style-two {
    position: relative;
    padding-left: 50px;
}

.event-style-contant .callender-sec{
	left: -43px;
	top: 50%;
	transform: translateY(-50%);
}

.sliders > .slider-img img{
	width: 100%;
	transition: all 0.5s ease;
}


.location{
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	color: #2a2d93;
	background: #F58B03;
	height: 32px;
	border-radius: 5px;
	line-height: 32px;
	padding: 0 18px;
    text-align: center;
    position: relative;
    top: -18px;
    z-index: 99;
    display: inline-block;
}

.slider-info h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #2a2d93;
	margin-bottom: 12px;
}

.slider-info .timee{
	color: #4447AC;
	font-weight: 600;
}

.slider-info span i{
	padding-right: 7px;
}

.slider-info {
    border: 2px solid #E7E7E7;
    border-radius: 0px 0px 10px 10px;
    padding: 0 41px 36px 41px;
    border-top: 0;
}

.sliders{
	margin-right: 30px;
}

.sliders:last-child{
	margin-right: 0;
}

.slider-sec{
	margin-left: 15px;

}

a {
	color: inherit;
}
.event-style-info {
	padding-left: 11px;
	max-width: 505px;
}

.slider-img {
	margin-bottom: -4px;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}



.stories-slider .col-lg-4 {
	padding: 0 15px;
}
.stories-slider {
	margin: 0 -15px -20px;
}
.stories-slider .slick-prev,
.stories-slider .slick-next {
	width: 60px;
	height: 60px;
	background-color: #2a2d93;
}
.stories-slider .slick-prev {
	left: -105px;
}
.stories-slider .slick-next {
	right: -105px;
}


.container {
	max-width: 1200px;
	padding: 0 15px;
}

.block-heading{
	text-align: center;
}

.light-bg .heading-bottom{
	padding-top: 67px;
}

.booking-area.v-2.section button{
	background: #F58B03;
	color: #2a2d93;
	margin-top: 20px;
}
.booking-area.v-2.section button:hover {
	color: #fff;
}
button {
	transition: all 0.3s ease;
}
.help .help-us{
	font-weight: 500;
	font-size: 18px;
	color: #F58B03;
	margin-bottom: 15px;
	display: inline-block;
}

.sec-tittle.v-2 h2{
	font-weight: 700;
	font-size: 40px;
	color: #ffffff;
}

.support-us{
	background: #D13F79;
	border-radius: 10px;
	min-height: 200px;
	text-align: center;
	padding: 45px 0;
}

.help-us{
	before: unset;
}

.dounation-img {
	margin-bottom: 29px;
}

.support-us-content h3 {
	font-weight: 700;
	font-size: 20px;
	color: #ffffff;
}

.v-2 span:before{
	display: none;
}

.v-2 span{
	color: #F58B03;
}

.support-us.v-3{
	background: #00C7F3;
}

.support-us.v-4{
	background: #F58B03;
}

.support-us.v-5{
	background: #4447AC;
}

.support-sec{
    background-image: url(../images/bg1.jpg);
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

.support-sec:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #2a2d93;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.9;
    z-index: -1;
}

.dounation-img img{
	width: 100%;
    max-width: 60px;
}

.team-work-sec{
	padding-right: 66px;
	margin-top: 18px;
}

.team-work-sec span{
	font-weight: 500;
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 12px;
	display: inline-block;
}

.team-work-sec h2{
	font-weight: 700;
	font-size: 23px;
	line-height: 39px;
	color: #ffffff;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.team-work-sec a{
	background: #2a2d93;
	border-radius: 10px;
	height: 63px;
	display: inline-block;
	font-weight: 700;
	font-size: 15px;
	line-height: 60px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0 45px;
	border:2px solid transparent;
}
.team-work-sec a:hover {
	border-color: #F58B03;
}

.block.v-6{
    background-image: url(../images/odes.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.block.v-6:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.9;
    z-index: -1;
}

.sec-tittle.V{
	text-align: left;
}

.sec-tittle.V span:before{
	left: 0;
	transform: unset;
}

.team-work-content .next-link {
    transform: unset;
    position: relative;
    text-align: center;
    padding-left: 0;
    line-height: 52px;
    top: 0;
    left: 0;
}

.team-work-content a{
	font-weight: 600;
	font-size: 20px;
	text-decoration-line: underline;
	color: #2a2d93;
	position: relative;
    top: -5px;
    padding-left: 14px;
}

.team-work-content p{
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #000;
	padding-right: 55px;
	margin-bottom: 62px;
	margin-top: -31px;
}

.team-work-content {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 75px 40px 75px 225px;
    position: relative;
}

.team-work-content:before {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 130px;
    height: 123px;
    background-image: url(../images/img-shape.png);
    background-repeat: no-repeat;
}

.team-work-img{
	max-width: 370px;
	min-height: 437px;
	position: absolute;
    top: -30px;
    left: -200px;
}

.team-work-info {
    padding-left: 92px;
}

.blog-img img {
    width: 100%;
    transition: all 0.5s ease;
}
.blog-item:hover .blog-img img {
	transform: scale(1.05) rotate(1deg);
}
.blog-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}


.calendar-date {
	position: absolute;
	top: 55px;
	left: 60px;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	z-index: 99;
}

.calendar-date i {
	margin-right: 2px;
}

.blog-info h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	padding-right: 80px;
}
.blog-info-content {
    position: absolute;
    bottom: 57px;
    padding: 0 60px;
    width: 100%;
    z-index: 99;
}

.blog-info-content > span {
	color: #FFFFFF;
	font-size: 15px;
	margin-bottom: 16px;
	display: block;
}
.blog-info-content > span i {
	margin-right: 1px;
}
.support-content span{
	font-weight: 600;
	font-size: 14px;
	color: #4447AC;
	margin-bottom: 64px;
	display: inline-block;
}
.support-content span i {
	margin-right: 3px;
}
.support-content h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #2a2d93;
}

.support-content{
	padding: 37px 35px 35px 35px;
	border-radius: 10px;
	background: #ffff;
	border: 2px solid #e7e7e7;
}

.support-content.v2-2{
	background-image: url(../images/img13.png);
	border:0;
	background-size: cover;
	position: relative;
	z-index: 99;
}

.support-content.v3-3{
	border:0;
	position: relative;
    bottom: 302px;
    background: unset;
    z-index: 1;
}


.support-content.v2-2 h3,
.support-content.v3-3 h3,
.support-content.v4-4 h3 {
	color: #ffffff;
}

.support-content.v2-2 span,
.support-content.v3-3 span,
.support-content.v4-4 span {
	color: #ffffff;
}

.support-content.v4-4{
	background: #4447AC;
}

.support-content.v4-4{
	margin-top: 24px;
	border: unset;
	padding-bottom: 38px;
}

.heading-bottom.bottom{
	padding-top: 64px;
}

.blocks .container-fluid{
	max-width: 1397px;
}

.footer-row .col-lg-3{
	max-width: 20%;
}

.partner-logo{
	text-align: center;
}

.booking.booking-area.v-2.v-3{
	margin-top: 0;
}


.partners-sec {
    margin-bottom: -99px;
    position: relative;
    z-index: 99;
}

.partners {
	display: flex;
	flex-wrap: wrap;
}
.partner-logo {
	max-width: 20%;
	flex: 0 0 20%;
}
.partners-sec .container {
	max-width: 1390px;
}

.partners{
	background: #F58B03;
	border-radius: 10px;
	padding: 39px 0 35px 0;
}

.progress {
    display: flex;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    height: 9px;
}

.progress-bar-sec{
	    background: #e61f40;
    border-radius: 0px 0px 10px 10px;
}

.progress-bar{
	background-color: #F58B03;
	color: #000;
	font-weight: 600;
}

.tittle{
    margin-bottom: 23px;
    display: inline-block;
}

.widget-about p{
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #ffffff;
	margin-bottom: 66px;
	padding-right: 23px;
}

.widget-title {
	font-weight: 700;
	font-size: 24px;
	color: #ffffff;
	padding-left: 33px;
	margin-bottom: 20px;
	position: relative;
}

.widget-title:before {
    content: "";
    position: absolute;
    width: 10px;
	height: 30px;
    background: #F58B03;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.widget-title span{
	font-weight: 400;
	padding-left: 7px;
}

.sec-two-heading .connect{
	margin-bottom: 25px;
}

.footer-sec{
	background: #555555;
}

.widget-about ul li{
	display: inline-block;
	padding-left: 2px;
}

.widget-about ul a{
	display: inline-block;
	width: 41.7px;
	height: 41.4px;
	background: #186CB0;
	line-height: 43.4px;
	text-align: center;
	border-radius: 50px;
}

.widget-about ul li a{
	color: #ffffff;
}

.widget-about ul .cl-2{
	background: #00B3D3;
}

.widget-about ul .cl-1{
	background: #084683;
}

.widget-about ul .cl-3{
	background: #e12e03;
}

.link-sec{
	display: flex;
	margin-top: -22px;
}

.link-sec ul li a{
	font-weight: 400;
	font-size: 16px;
	line-height: 41px;
	color: #ffffff;
	text-transform: capitalize;
}
.link-sec ul li a:hover {
	padding-left: 5px;
}

.link-sec ul li i{
	padding-right: 9px;
}

.link-sec .wd-links{
	width: 50%;
	padding-right: 0;
}

.widget-links{
	margin-top: 8px;
	position: relative;
}

.widget-newsletter p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 15px;
	margin-top: -5px;
	color: #ffffff;
	max-width: 300px;
}

.location.v2 {
  top: -12px;
}

.slider-info.v2 h3{
	margin-top: 9px;
}

.widget-about {
    position: relative;
}

.widget-newsletter.v-2{
	position: relative;
	max-width: 370px;
	margin-left: 7px;
}

.widget.widget-newsletter.v2 {
  	margin-left: 100px;
  	margin-top: 8px;
}

.Lives.Of.Others .sec-two-heading.v-2{
	margin-top: 6px;
}

.subs-form button {
    position: absolute;
    right: 0;
    border: navajowhite;
    top: 0;
    height: 59px;
    width: 63px;
    background: #4447AC;
	border-radius: 0px 10px 10px 0px;
	color: #ffffff;
	font-weight: 400;
	font-size: 20px;
}

.subs-form input{
	width: 100%;
	height: 59px;
	background: #FFFFFF;
	border-radius: 10px;
	border: none;
	padding: 0 60px 0 30px;
}

.subs-form{
	position: relative;
	/*max-width: 370px;*/
	margin-bottom: 20px;
}

.widget-newsletter .last-line{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	position: relative;
	max-width: 250px;
	padding-left: 50px;
}

.widget-newsletter .last-line span{
	position: absolute;
	padding-left: 51px;
    max-width: 267px;
}

.widget-newsletter .last-line i{
	top: 0;
	left: 0;
	position: absolute;
	font-size: 45px;
	color: #4447AC;
}

.widget-newsletter .contant-nmbr{
	font-weight: 500;
	font-size: 18px;
	color: #ffffff;
	padding-top: 23px;
	text-transform: uppercase;
}

.widget-newsletter .contant-nmbr span{
	font-weight: 700;
	font-size: 18px;
	color: #F58B03;
}



.ft-logo {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.ft-logo-text {
	padding-left: 7px;
}
.ft-logo-text > h3 {
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 7px;
	text-transform: uppercase;
}
.ft-logo-text > span {
	display: block;
	color: #F58B03;
	font-size: 14px;
	font-weight: 500;
}


.bottom-strip {
	padding: 39px 0 37px;
}
.btm-content {
	display: flex;
	flex-wrap: wrap;
}
.btm-content p {
	color: #2a2d93;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Montserrat';
}

.btm-content .tp-links li a {
	color: #2a2d93;
}

.btm-content .tp-links {
	margin-left: auto;
}

.team-sec {
	margin-top: 30px;
}

.progress-bar {
    background-color: #2a2d93;
    border-radius: 0;
    height: 16px;
    padding: 4px;
    overflow: unset;
}
.progress {
    width: 0;
    border-radius: 6px;
    height: 8px;
    text-align: right;
    position: relative;
    background: #F58B03 !important;
    overflow: unset !important;
}
.progress span {
	color: #2a2d93;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    position: absolute;
    top: -31px;
    right: 0;
    background: #F58B03;
    border-radius: 3px;
    line-height: 20px;
    height: 20px;
    padding: 0 10px;
}
.progress span:before {
    content: '';
    position: absolute;
    border-top: 8px solid #F58B03;
    border-right: 8px solid transparent;
    bottom: -4px;
    right: 7px;
    transform: rotate(-135deg);
}

.progress-col {
	background-color: #4447AC;
	padding: 42px 32px 25px;
}




.banner-donation-content {
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-top: -56px;
	background: #fff;
    padding: 10px 30px;
}
.banner-donation-content .nav-tabs {
	width: 252px;
	border:0;
}
.banner-donation-content .nav-tabs .nav-link {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    height: 62px;
    padding: 0;
    line-height: 62px;
    border:0;
}
.banner-donation-content .nav-tabs li {
    width: 100%;
}

.banner-donation-content .nav-tabs li button {
    width: 100%;
    outline: none;
}
.banner-donation-content .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: unset;
    border: 0;
    color: #fff !important;
}

.banner-donation-content .nav-tabs .nav-link.gift {
    background: #4447AC;
    border-radius: 10px;
}
.banner-donation-content .nav-tabs .nav-link:focus, 
.banner-donation-content .nav-tabs .nav-link:hover {
	border:0;
	isolation:unset;
}
.tab-data {
	display: flex;
	flex-wrap: wrap;
	padding-left: 35px;
	align-items: center;
	border-radius: 0 0 12px 0;
	justify-content: flex-end;
	height: 100%;
}

.tab-para {
	max-width: 100%;
}

.tab-para p {
	color: #FFFFFF !important;
	font-size: 16px !important;
	line-height: 26px !important;
}

.donate-amount {
	padding-left: 40px;
	padding-right: 30px;
}

.donate-amount li {
	display: inline-block;
	color: #FFFFFF;
	font-size: 22px;
	font-weight: 700;
	background-color: #4447AC;
	border-radius: 10px;
	width: 100px;
	height: 85px;
	line-height: 85px;
	text-align: center;
}

.donate-div {
    width: 235px;
    height: 153px;
    background-color: #F58B03;
    border-radius: 0px 10px 10px 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.donate-div > img {
	margin-bottom: 13px;
}

.donate-div > span {
	display: block;
	color: #2a2d93;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.banner-donation .container {
    max-width: 1260px;
    margin: 0 auto;
}

.banner-donation-content .tab-content {
    width: calc(100% - 252px);
    border-radius: 0 12px 12px 0;
    margin-left: auto;
	background: #2a2d93;
}

.banner-donation-content .nav-tabs li:first-child {
    height: 81px;
    background: #2a2d93;
    border-radius: 10px 0px 0px 10px;
    padding-top: 9px;
}

.banner-donation-content .nav-tabs li:last-child {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.banner-donation-content .tab-content .tab-pane {
	height: 100%;
	margin-top: 0;
}

.footer-bottom{
	background-image: url(../images/footer1.jpg);
	padding: 195px 0 97px;
	background-size: cover;
	background-position: center;
}

.banner-slide:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.5;
    z-index: 9;
}

.tab-para p{
	margin-top: 0 !important;
}

div#home {
    margin-top: 0;
}

.blog-img:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.2;
    border-radius: 10px;
    z-index: 9;
}

.support-content.v2-2:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.5;
    border-radius: 10px;
    z-index: -1;
}

.support-img:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.5;
    border-radius: 10px;
    z-index: 9;
}

.support-content.v3-3{
	position: relative;
}

.footer-bottom:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.80;
    z-index: -1;
}

.footer-bottom{
	position: relative;
	z-index: 1;
}

/*home-page two*/

.top-header.v-22{
	background: #F58B03;
}

.links-two li{
	display: inline-block;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	padding-right: 30px;
}

.links-two li i,
.links-two li span{
	color: #4447AC;
	padding-right: 4px;
}

.top-sec{
	display: flex;
	align-items: center;
	position: relative;
}

.top-sec:before{
	content:" ";
	left: 100%;
	width: 100%;
	height: 100%;
	background: #4447AC;
	position: absolute;
}

.social-links.links{
	background: #4447AC;
	position: relative;
	padding: 10px 0;
	margin-left: 67px;
	padding-left: 61px;
}

.support-info.v-2 {
    position: relative;
    margin-top: 24px;
}

.support-content.v3-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.social-links.links:before {
    content: '';
    position: absolute;
    border-top: 29px solid #4447AC;
    border-right: 29px solid transparent;
    bottom: 4px;
    transform: rotate(-45deg);
    left: -12px;
}

.volenter-sec {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.volenter-sec a {
    font-weight: 600;
	font-size: 14px;
	display: inline-block;
	color: #2a2d93;
}

.volenter-sec a i{
	padding-right: 3px;
}

.main-banner.v-23 .slider-contant{
	left: 33%;
	text-align: left;
	margin-top: 69px;
}

.main-banner.v-23 .slider-contant .banner-btn.v-2{
	background: #F58B03;
	color: #000;
}

.main-banner.v-23 .slider-contant h2 {
    max-width: 525px;
    margin-bottom: 30px;
}

.donate.v-2 .donate-btn{
	background: #2a2d93;
	text-align: center;
	height: 86px;
}

.bottom-header-content.v-2{
	background: #ffffff;
	padding: 10px 10px 10px 50px;
	position: relative;
    top: 0px;
    z-index: 99;
    border-radius: 0px 0px 10px 10px;
}

.header-bottom.v-2 .container-fluid {
    padding: 0;
    max-width: 1170px;
}

.helping-hand-sec {
    padding: 50px 0;
}

.helping-hand {
    display: flex;
    align-items: center;
}

.helping-hand-info img {
    width: 100%;
}

.helping-hand-info{
	margin-right: 20px;
}

.helping-hand-content h3{
	font-weight: 700;
	font-size: 20px;
	color: #2a2d93;
	margin-bottom: 10px;
}

.helping-hand-content p{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	max-width: 210px;
}



.health-info .country{
	width: 129px;
	height: 32px;
	background: #F58B03;
	border-radius: 5px;
	display: inline-block;
	line-height: 32px;
	text-align: center;
	margin-bottom: 15px;
}

.health-info > h3{
	font-weight: 700;
	font-size: 26px;
	line-height: 36px;
	color: #2a2d93;
	max-width: 360px;
	margin-bottom: 11px;
}

.health-info > p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	padding-bottom: 13px;
	padding-right: 60px;
}

.health-info .progress-col {
    background-color: unset;
    padding: 42px 0;
}

.health-info {
	max-width: 520px;
	position: relative;
	z-index: 99;
}
.help-info {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.help-info img{
	width: 100%;
	transition: all 0.5s ease;
}

.health-info .helping-hand-content h3{
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
}

.health-info .helping-hand-content span{
	font-weight: 400;
	font-size: 14px;
	color: #4447AC;
	padding-bottom: 0;
}

.charity-sec ul li{
	display: inline-block;
	text-align: left;
	font-weight: 700;
	font-size: 22px;
	color: #2a2d93;
	border-left: 1px solid #D3D3D3;
    padding: 31px 20px 27px 20px;
    text-transform: uppercase;
}

.charity-sec ul li:last-child{
	padding-right: 0;
}

.charity-sec ul li span{
	display: block;
	font-weight: 500;
	font-size: 14px;
	color: #4447AC;
	margin-top: 10px;
}

.charity-sec{
	display: flex;
	align-items: center;
	border-top: 1px solid;
	border-bottom: 1px solid #D3D3D3;
	border-top: 1px solid #D3D3D3;
}

.pics-sec img{
	width: 100%;
}



.hand-pic:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #2a2d93;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.9;
    max-width: 744px;
}

.slider-contant span.help-us:before {
    display: none;
}

.header-v2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    z-index: 99;
}

.heading.v-2{
	text-align: center;
	margin-bottom: 118px;
	position: relative;
}

.heading.v-2 > span{
	font-weight: 500;
	font-size: 18px;
	color: #4447AC;
	margin-bottom: 12px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: -1.25px;
}

.heading.v-2 h2 > span{
	font-weight: 400;
	font-size: 40px;
	color: #2a2d93;
}

.heading.v-2 h2{
	font-weight: 800;
	font-size: 40px;
	color: #2a2d93;
	max-width: 555px;
	margin: auto;
	line-height: 52px;
	margin-bottom: 10px;
}

.heading.v-2 p{
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
	color: #000;
	max-width: 700px;
	margin: auto;
	margin-top: -2px;
	padding-right: 20px;
}

.charity-food{
	display: flex;
	align-items: center;
	padding: 19px 29px 19px 0;
}

.charity-food > .helping-hand-info img{
	max-width: 46px;
}

.helping{
	position: relative;
	top: -32px;
}

.helping > .helping-hand-content{
	display: flex;
    flex-direction: column;
    position: absolute;
    left: 60px;
    bottom: 35px;
    z-index: 99;
}

.helping-hand-content > img{
	max-width: 70px;
	margin-bottom: 20px;
}

.helping-hand-content > span{
	font-weight: 700;
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 10px;
}

.helping > .helping-hand-content > h3{
	font-weight: 800;
	font-size: 26px;
	color: #ffffff;
	text-transform: uppercase;
}

.help-info {
	position: relative;
}
.help-info:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.5;
    border-radius: 10px;
    z-index: 9;
}

.helping > .next-link{
	bottom: -25px;
	text-align: center;	
	left: auto;
	right: 16px;
	z-index: 999;
}

.counter.v-2{
	position: relative;
	padding-bottom: 30px;
}

.counter.v-2 h3{
	font-weight: 800;
	font-size: 55px;
	color: #2a2d93;
	margin-bottom: 16px;
	display: inline-block;
}

.counter.v-2 h3 + small{
	font-weight: 800;
	font-size: 36px;
	color: #2a2d93;
	display: inline-block;
}

.counter.v-2 > span{
	font-weight: 500;
	font-size: 16px;
	color: #4447AC;
	display: block;
}

.counter.v-2:before{
	content: "";
	width: 50px;
	height: 3px;
	background: #4447AC;
	border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bc-black{
	position: relative;
}
.bc-black:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 508px;
	background-image: url(../images/bg1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.bc-black:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #f7f6f6;
    mix-blend-mode: normal;
    opacity: 0.85;
    z-index: 0;
}

.help-sec{
	margin-bottom: 100px;
}

.donation-chariyty h2{
	font-weight: 800;
	font-size: 40px;
	line-height: 48px;
	color: #2a2d93;
	max-width: 265px;
	margin-bottom: 17px;
	text-transform: uppercase;
}

.donation-chariyty ul {
	margin-bottom: 9px;
}

.donation-chariyty p{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #2a2d93;
	max-width: 299px;
	margin-bottom: 33px;
}

.donation-chariyty ul li{
	display: inline-block;	
}

.donation-chariyty ul li a{
	width: 80px;
	height: 59px;
	background: #4447AC;
	border-radius: 5px;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	color: #ffffff;
	line-height: 59px;
}

.donation-info{
	max-width: 470px;
    margin-left: 60px;
    background: #F58B03;
    border-radius: 10px;
    position: relative;
    z-index: 99;
    margin-top: -35px;
}

.donation-chariyty {
    padding: 72px 68px 62px 68px;
}

.donation-chariyty > .subs-form{
	margin-bottom: 0;
}

.donation-chariyty > .subs-form input{
	width: 100%;
	padding-left: 94px;
	background: unset;
	border: 2px solid;
	outline: none;
}

.donation-chariyty > .subs-form button{
	left: 0;
	border-radius: 10px 0px 0px 10px ;
	background: #2a2d93;
}

.donation-info a{
	max-width: 470px;
    background: #2a2d93;
    display: block;
    text-align: center;
    margin-right: auto;
    height: 88px;
    line-height: 88px;
    color: #ffffff;
    font-weight: 700;
	font-size: 18px;
	border-radius: 0px 0px 10px 10px;
	text-transform: uppercase;
}

.img-bf img{
	max-width: 663px;
}

.img-bf{
	position: relative;
	top: 145px;
}

.sec-block:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 663px;
    height: 531px;
    background: #4447AC;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.95;
}

.donation-chariyty-sec .heading.v-2{
	text-align: left;
	margin-bottom: 42px;
}

.donation-chariyty-sec .heading.v-2 h2{
	margin-left: 0;
	margin-bottom: 20px;
	margin-right: 0;
}

.donation-chariyty-sec .heading.v-2 span{
	margin-bottom: 6px;
}

.home-sec img{
	max-width: 80px;
}

.home-sec{
    text-align: center;
}

.home-sec > span{
	font-weight: 600;
	font-size: 18px;
	color: #2a2d93;
	display: block;
	margin-top: 17px;
}

.home-shelter {
    display: flex;
    margin-bottom: 63px;
}

.video-sec .section-btn{
	font-size: 65px;
	margin-right: 10px;
	background: unset;
	color: #4447AC;
}

.vide-content h3{
	font-weight: 700;
	font-size: 20px;
	color: #2a2d93;
	margin-bottom: 10px;
}

.vide-content span{
	font-weight: 700;
	font-size: 14px;
	color: #4447AC;
	text-transform: uppercase;
}

.donation-chariyty-sec {
    top: -19px;
    position: relative;

}

.contact-us {
    display: flex;
    align-items: center;
}

.contact-sec{
	display: flex;
	align-items: center;
}

.end span{
	font-weight: 700;
	font-size: 12px;
	color: #2a2d93;
	display: inline-block;
	background: lightgrey;
	padding: 17px 14px;
	border-radius: 50px;
	margin-right: 41px;
	margin-left: 34px;
}

.contact-us .btn{
	padding: 0 40px;
	height: 58px;
	background: #F58B03;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	color: #2a2d93;
	line-height: 58px;
	text-align: center;
	text-transform: uppercase;
}

.home-sec.secend{
	padding: 0 36px;
	border-right: 1px solid #D3D3D3;
	border-left: 1px solid #D3D3D3;
}

.home-sec.first{
	padding-right: 37px;
}

.home-sec.thired{
	padding-left: 27px;
}

.block.bl-g{
	background-image: url(../images/odes.jpg);
	background-size: cover;
	position: relative;
	z-index: 1;
}

.sec-block {
    background: url(../images/pattern1.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    position: relative;
    padding-top: 46px;
}

.bl-g:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #2a2d93;
    mix-blend-mode: normal;
    opacity: 0.9;
    z-index: -1;}

.health-sec{
	background: url(../images/hand4.png);
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}

.health-sec.v-2:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 744px;
    height: 638px;
    background: #2a2d93;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    opacity: 0.95;
}



.links-two li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    background: #2a2d93;
    right: 11px;
    top: -1px;
}
.links-two li:last-child:before {
	display: none;
}

.icotop-heading{
	text-align: center;
}

.option-set.filters-nav{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 42px;
}

.option-set.filters-nav li{
	display: inline-block;
}

.option-isotop .heading.v-2{
	margin-bottom: 0;
}

.option-set.filters-nav a{
	font-weight: 600;
	font-size: 14px;
	padding: 0 24px;
	height: 45px;
	line-height: 45px;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
	display: block;
	text-transform: uppercase;
}

.option-set.filters-nav a:hover,
.option-set.filters-nav a.selected{
	background: #4447AC;
	border-radius: 5px;
	color: #ffffff;
}


.education-sec {
    position: relative;
    margin-bottom: 24px;
}

.education-info > span{
	font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #2a2d93;
    background: #F58B03;
    height: 32px;
    border-radius: 5px;
    line-height: 32px;
    padding: 0 13px;
    text-align: center;
    top: 13px;
    left: 13px;
    display: inline-block;
    position: absolute;
}

.education-sec  .progress-col{
	background: unset;
	padding: 0;
	position: relative;
	top: -4px;
}



.education-content .one,
.education-content .two{
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 16px;
}

.education-content .one{
	line-height: 28px;
}

.education-content .two{
	color: #4447AC;
}

.education-content{
	padding: 34px 23px 17px 23px;
	border: 2px solid #E7E7E7;
	margin-top: -15px;
}

.education-sec.v-2 {
    margin-bottom: 30px;
}

.education-content .two > span{
	font-weight: 600;
	font-size: 14px;
	color: #2a2d93;
}

.education-sec .charity-food{
	border-right: none;
	border: 2px solid #E7E7E7;
	border-radius: 0px 0px 10px 10px;
	margin-top: -2px;
	padding: 17px 20px 9px 20px;
}

.education-sec .charity-food .helping-hand-content h3{
	margin-bottom: 0;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}

.education-sec .charity-food .helping-hand-content p{
	font-weight: 400;
	font-size: 12px;
	color: #4447AC;
}

.education-sec .charity-food .helping-hand-info{
	margin-right: 25px;
	margin-top: -7px;
}

.education-sec.v2{
	margin-bottom: 28px;
}

.masonary.row {
    margin-bottom: -28px;
}

.hover-content .help-line li{
	font-size: 16px;
	color: #ffffff;
}

.hover-content .help-line li i {
	margin-right: 7px;
}

.hover-content .help-line li .social-links i {
	margin-right: 0;
}


.hover-content .help-line .number{
	margin-bottom: 13px;
	margin-left: 10px;
}

.hover-content .help-line .number-two{
	margin-left: 10px;
	margin-bottom: 25px;
}

.organization-info{
	position: relative;
}

.hover-content{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 30px 25px 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 99;
}

.organization-info:hover .hover-content {
	opacity: 1;
	visibility: visible;
	bottom: 80px;
}

.organization-content h3{
	font-weight: 700;
	font-size: 20px;
	color: #2a2d93;
	margin-bottom: 8px;
}

.organization-content span{
	font-weight: 500;
	font-size: 16px;
	color: #4447AC;
}

.organization-content{
	position: relative;
	padding-left: 40px;
	padding-top: 26px;
}

.organization-content:before{
	content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 5px;
    background-color: #F58B03;
}

.camaigns{
	margin-top: 44px;
}

.block.sec{
	background-image: url(../images/handwash.jpg);
	position: relative;
	padding-bottom: 150px;
    background-size: cover;
    background-repeat: no-repeat;
}

.block.sec:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #2a2d93;
    mix-blend-mode: normal;
    opacity: 0.5;
}

.wish-sec{
	text-align: center;
	z-index: 1;
	max-width: 755px;
    margin: auto;
}

.wish-sec span{
	color: #ffffff;
	font-weight: 600;
    font-size: 22px;
    margin-bottom: 13px;
    display: inline-block;
    position: relative;
    padding-bottom: 9px;
}

.wish-sec span:before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 20px;
    background: url(../images/shape1.png);
    background-repeat: no-repeat;
    transform: translateX(-50%);
    z-index: -1;
}

.wish-sec h2{
	font-weight: 700;
    font-size: 55px;
    line-height: 128.7%;
    margin-bottom: 17px;
    color: #ffffff;
}

.wish-sec p{
	font-weight: 400;
    font-size: 22px;
    margin-bottom: 55px;
    color: #ffffff;
}

.wish-sec .contact-sec{
	justify-content: center;
	align-items: center;
}

.wish-sec .contact-sec .video-sec a{
	color: #F58B03;
	font-size: 75px;
}

.wish-sec .contact-sec .vide-content span:before {
	background: unset;
}

.wish-sec .contact-sec .vide-content h3{
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 12px;
}

.wish-sec .contact-sec .vide-content{
	text-align: left;
	margin: 16px 0 0 10px;
}

.wish-sec .contact-sec .vide-content span{
	font-weight: 800;
	font-size: 30px;
	color: #ffffff;
}
	
.bottom-btn{
	text-align: center;
	margin-top: 60px;
}

.bottom-btn .banner-btn.v-2{
	background: #F58B03;
	color: #2a2d93;
	text-align: center;
	margin-right: 0;
	border-radius: 10px;
}

.health-info > span{
	color: #2a2d93;
}

.old-women > img {
	width: 100%;
	transition: all 0.5s ease;
}

.old-women:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a2d93;
    opacity: 0;
    transition: all 0.5s ease;
    visibility: hidden;
    border-radius: 10px;
    z-index: 9;
}

.old-women {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.organization-info:hover .old-women:before {
	opacity: 0.8;
	visibility: visible;
}
.organization-info:hover .old-women > img,
.education-sec:hover .img-info > img {
	transform: scale(1.05) rotate(1deg);
}

img {
	vertical-align: middle;
}

.help-line .social-links {
	margin-top: 11px;
}

.news-updates{
	background: #F58B03;
	border-radius: 10px 0px 0px 0px;
	display: flex;
	padding: 45px 70px 43px 70px;
	cursor: pointer	;
}
.news-updates.current {
	background: #4447AC;
}

.news-updates .news-content h3{
	font-weight: 700;
	font-size: 30px;
	color: #2a2d93;
	margin-bottom: 10px;
}

.news-updates .news-content > span{
	font-weight: 500;
	font-size: 18px;
	color: #2a2d93;
}
.news-updates.current .news-content h3,
.news-updates.current .news-content span {
	color: #fff;
}
.news-img{
	padding-right: 18px;
}

.inspiration .col-lg-6{
	z-index: 1;
}

.news-updates.v-2{
	border-radius: 0px 10px 0px 0px;
}


.inspiration{
	margin-top: -65px;
}

.news-updates{
	position: relative;
}

.news-updates:before{
	content: '';
    position: absolute;
    border-top: 30px solid #4447AC;
    border-right: 30px solid transparent;
    bottom: -14px;
    transform: rotate(-135deg);
    left: 37%;
    opacity: 0;
    visibility: hidden;
}
.news-updates.current:before {
	opacity: 1;
	visibility: visible;
}

.local-solicitors-info img{
	width: 100%;
	transition: all 0.5s ease;
}

.local-solicitors-content > .v-2{
	font-weight: 600;
	font-size: 12px;
	color: #ffffff;
	background: #4447AC;
	height: 42px;
	padding: 0 20px;
	line-height: 42px;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	top: -23px;
	left: 0px;
	text-transform: uppercase;
	z-index: 99;
}

.local-solicitors-content > .v-2 i{
	padding-right: 7px;
}

.local-solicitors-content h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #2a2d93;
	margin-bottom: 20px;
}

.local-solicitors-content p{
	font-weight: 400;
	font-size: 16px;
	line-height: 25px;
	color: #000;
	margin-bottom: 18px;
}

.widget.widget-instagram .col-lg-4{
	padding: 0;
	padding-left: 10px;
}

.local-solicitors-content.v-2 p{
	padding-right: 55px;
}

.local-solicitors-content span{
	font-weight: 600;
	font-size: 15px;
	color: #4447AC;
}

.local-solicitors-content span i{
	padding-right: 7px;
}

.local-solicitors-content{
	border: 2px solid #E7E7E7;
	border-radius: 0px 0px 10px 10px;	
	padding: 0px 26px 30px 26px;
	position: relative;
	border-top: 0;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ;
	
}

.local-solicitors > .next-link.link{
	bottom: 1px;
	text-align: center;
	left: auto;
	right: -26px;
	border-radius: 10px 0 10px 0;
}

.local-solicitors{
	position: relative;
}

.block.solicitors{
	background-color: #f4f4f4;
	padding-top: 0;
}

.local-solicitors-sec{
	padding: 67px 111px 100px 111px;
	background-color: #ffffff;
	border-radius: 0 0 10px 10px;
}
.local-solicitors-sec.current {
	display: none;
}

.solicitors .container,
.inspiration .container {
	max-width: 1280px;
}

.local-solicitors-sec .heading-bottom.bottom{
	padding-top: 52px;
}

.partners-sec.v-2 .partners{
	background: unset;
}

.partners-sec.v-2 .container{
	max-width: 1200px;
}

.subscribetion-sec{
	display: flex;
}

.subscribetion-content {
	margin-top: 3px;
}

.subscribetion-content h3{
	font-weight: 700;
	font-size: 30px;
	color: #2a2d93;
	margin-bottom: 10px;
	display: inline-block;
}

.subscribetion-content h3 span{
	font-weight: 400;
	font-size: 30px;
	color: #2a2d93;
}

.subscribetion-content p{
	font-weight: 400;
	font-size: 16px;
	color: #000;
}

.Subscribetion-info{
	padding-right: 15px;
}

.sbs-sec .subs-form.v-2 button{
	padding: 0 37px;
	background: #F58B03;
	border-radius: 0 10px 10px 0;
	color: #2a2d93;
	font-weight: 700;
	font-size: 16px;
	height: 77px;
	width: auto;

}

.sbs-sec .subs-form.v-2 input{
	height: 77px;
	border-radius: 10px;
	border: none;
}

.subs-form.v-2 {
	margin-bottom: 0;
}

.block.sec.v-2{

	background-image: url(../images/pattrn3.png);
	background-size: cover;
    z-index: 1;
    position: relative;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.block.sec.v-2:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #ebebeb;
    mix-blend-mode: normal;
    opacity: 0.95;
    z-index: -1;
}

.solicitors .col-lg-6{
	z-index: 99;
}

.partners-sec.v-2{
	margin-bottom: 0;
}

.solicitors .sec.first{
	padding-right: 0;
}

.solicitors .sec.secend{
	padding-left: 0;
}

.row.sbs-sec {
    display: flex;
    align-items: center;
}

.footer-info{
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}

.social-icon{
	display: flex;
	align-items: center;
}

.livesofothers .sec-two-heading h3:before{
	width: unset;
	height: unset;
}

.block.footrer-sec{
	background-image: url(../images/handshak.png);
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
}

.block.footrer-sec:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.9;
    z-index: -1;
}

.footer-info p{
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
	margin-top: -7px;
}

.sec-two-heading.v-2 span{
	padding-left: 0;
	font-weight: 400;
	font-size: 24px;
}

.sec-two-heading.v-2 h3{
	font-weight: 700;
	font-size: 24px;
	color: #F58B03;
}

.livesofothers{
	padding-top: 60px;
}

.lives-info{
	background: #F58B03;
	border-radius: 10px;
	margin-left: 3px;
	margin-top: 2px;
}

.lives-content h3{
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #2a2d93;
	margin-bottom: 5px;
}

.lives-content{
	padding: 38px 39px 27px 39px;
}

.widget.lives-info .lives-content{
	padding: 41px 53px 28px 53px;
}


.widget.lives-info .lives-content h3{
	padding-right: 35px;
}

.lives-content p{
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	padding-right: 10px;
}

.lives-info a{
	height: 52px;
	background: #4447AC;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
	line-height: 52px;
	text-align: center;
	width: 100%;
    border-radius: 0 0 10px 10px;
    top: 3px;
}

.widget.widget-newsletter.v-2 .contant-nbr {
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	padding: 23px 0;
	border-top: 1px solid #000;
}

.widget.widget-newsletter.v-2 .contant-nbr span{
	color: #e61d3f;
}

.sec-two-heading.v-2 .widget-title{
	padding-left: 0;
	margin-bottom: 33px;
}

.widget.widget-about.v-2{
	padding-left: 40px;
	padding-top: 2px;
}

.widget.widget-newsletter.v-2 .last-line{
	padding-left: 52 px;
	margin-bottom: 20px;
}

.widget.widget-newsletter.v-2 .last-line i{
	left: 6px;	
}

.link-sec.v-2{
	margin-top: -2px;
}

/*home-page2 end*/

.page-title{
	font-weight: 700;
	font-size: 46px;
	color: #ffffff;
	text-align: center;
	line-height: 59px;
}

.banner-sec {
	background-image: url(../images/study.png);
	position: relative;
	z-index: 1;
	padding: 120px 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-sec:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #01242D;
    mix-blend-mode: normal;
    opacity: 0.5;
    z-index: -1;
}

.banner-button{
	margin-top: -34px;
	text-align: center;	
}

.breadcrumb {
    background: #F58B03;
    padding: 15px 26px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: #2a2d93;
    border-radius: 10px;
    border: 10px solid #ffffff;
    position: absolute;
    bottom: -53px;
    left: 50%;
    transform: translateX(-50%);
}

.health-sec.m-b{
	margin-bottom: 23px;
	background-image: unset;
}

.pagination{
	display: flex;
	justify-content: center;
	padding-top: 45px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link{
	border: none;
	color: #2a2d93;
}

.page-item:first-child .page-link i:hover,
.page-item:last-child .page-link i:hover{
	color: #4447AC;
}

.page-item .page-link:hover{
	background: unset;
	border: unset;
}

.page-item.active .page-link.v-2{
	background: #fce122;
}

.pagination .page-link.v-2.b-c {
    margin: 0 10px;
}

.nav{
	/*padding-top: 69px;*/
	justify-content: center;
}

.nav .pagination .page-item .page-link{
	color: #2a2d93;
	border: unset;
	padding: 15px 20px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
}

.nav .pagination .page-item .page-link.v-2:hover{
	border: unset;
	background: #fce122;
}

/*inner-two end*/

.block.b-img{
	background-image: url(../images/pattern12.png);
	position: relative;
	z-index: 1;
	margin-bottom: -95px;
    padding-bottom: 220px;
}

.block.b-img:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #eff0f2;
    mix-blend-mode: normal;
    opacity: 0.9;
    z-index: -1;
}

.block.b-img .service{
	background: #ffffff;
}

.block.icotop{
	padding-top: 72px;
}

.side-bar .sec-two-heading .widget-title{
	color: #000;
	padding-left: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

button.srch-btn {
    background: unset;
    color: #000;
    border-radius: 0;
    width: unset;
   	height: 60px;
    padding-right: 25px;
}

button.srch-btn i{
	color: #afafaf;
}

.subs-form.v-2 > input{
	color: #000;
}

.tags-sec {
	padding: 50px 0;
}

.tags-info ul li{
	display: inline-block;
	margin: 12px 11px 0 0;
}

.tags-info ul{
	margin-top: -12px;
}

.tags-info ul a{
	height: 35px;
	line-height: 35px;
	padding: 0 35px;
	background: #F4F4F4;
	border-radius: 5px;
	display: inline-block;
	font-weight: 500;
	font-size: 13px;
	color: #000;
}

.tags-info ul a:hover{
	background: #e61f40;
	color: #ffffff;
}

.lives-info.v-2 .lives-content h3{
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	padding-right: 36px;
}

.lives-info.v-2 .lives-content p{
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	padding-right: 55px;
}

.widget-instagram-info{
	margin-bottom: 13px;
	border-radius: 10px;
	overflow: hidden;
}

.widget-instagram-info img{
	width: 100%;
	transition: all 0.5s ease;
	border-radius: 10px;
}
.widget-instagram-info:hover > img {
	transform: scale(1.05) rotate(1deg);
}

.side-bar .lives-info{
	margin-top: 71px !important;
	margin-left: 0;
}

.side-bar .widget.lives-info{
	margin-left: 0;
	margin-top: 0;
}

.tags-sec .sec-two-heading.v-2{
	margin-bottom: 30px ;
}


.bertram-sec{
	display: flex;
}

.bertram-info h3{
	font-weight: 600;
	font-size: 22px;
	line-height: 30px;
	color: #2a2d93;
	margin-bottom: 7px;
	padding: 0 56px 0 32px;
}

.bertram-info p{
	font-weight: 400;
	font-size: 16px;
	line-height: 25px;
	color: #000;
	margin-bottom: 28px;
	padding: 0 96px 0 32px;
}

.bertram-info ul li{
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	color: #2a2d93;
	padding: 21px 63px 22px 34px;
	text-transform: uppercase;
}

.bertram-info ul{
	border-top: 1px solid #D3D3D3;
}

.bertram-info ul li span{
	display: block;
	font-weight: 700;
	font-size: 22px;
	color: #4447AC;
	margin-bottom: 7px;
}

.bertram-img img{
	max-width: 370px;
	height: 100%;
    object-fit: cover;
}

.bertram-img {
    height: 100%;
}

.bertram-info ul .li{
	border-right: 1px solid #D3D3D3;
}

.bertram-info ul .list{
	padding-right: 0;
}

.bertram-info{
	border: 1px solid #D3D3D3;
	margin-left: -2px;
	padding: 40px 0 0 0;
	border-radius: 0px 10px 10px 0px;
}

.bertram-content span{
	font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #2a2d93;
    background: #F58B03;
    height: 32px;
    border-radius: 5px;
    line-height: 32px;
    padding: 0 13px;
    text-align: center;
    display: inline-block;
    top: 18px;
    left: 18px;
    position: absolute;
}

.bertram{
	position: relative;
}

.camp{
	display: flex;
	align-items: center;
	position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 18px 25px 16px 18px;
    background: #4447AC;
    border-radius: 0px 10px;
}

.camp span{
	display: block;
}

.irvin-sec{
	margin-left: 13px;
}

.irvin-sec h3{
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: #ffffff;
}

.irvin-sec p{
	font-weight: 400;
	font-size: 12px;
	color: #ffffff;
}

.bertram-sec{
	margin-bottom: 30px;
}

.supporters-img img{
	width: 100%;
	border-radius: 10px;
}

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

.supporters-content .contry{
	font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #2a2d93;
    background: #F58B03;
    height: 32px;
    border-radius: 5px;
    line-height: 32px;
    padding: 0 13px;
    text-align: center;
    display: inline-block;
   	margin-right: 15px;
}

.supporters-content p{
	font-weight: 600;
	font-size: 14px;
	color: #4447AC;
	margin-right: 27px;
	position: relative;
	z-index: 99;
}

.supporters-content p:before{
	content: '';
    position: absolute;
    top: 5px;
    left: auto;
    right: -11px;
    width: 4.43px;
    height: 5px;
    border-radius: 5px;
    background-color: #4447AC;
    z-index: -1;
}

.supporters-content span{
	font-weight: 600;
	font-size: 14px;
	color: #000;
}

.social-links.v-2 li,
.social-links.v-2 li a{
	color: #2a2d93;
}

.social-links.v-2 li a:hover{
	border-color: #4447AC;
}

.supporters{
	display: flex;
	align-items: center;
	padding: 47px 0 26px 0;
}

.banner-slide > img{
	width: 100%;
}

.charity-sec.v-2 .li{
	border-right: 1px solid #D3D3D3;
}

.charity-sec.v-2 li{
	padding: 33px 19px 34px 21px;
}

.charity-sec.v-2 li:nth-child(2){
	padding-right: 16px;
}

.charity-food.v-2{
	padding: 27px 30px 29px 0px;
}

.charity-sec.v-2 .banner-btn.v-2{
	padding:0 33px;
	margin-right: 0;
}

.helping-hand-content.v-2 h3{
	font-size: 18px;
}

.charity-sec.v-2 ul .btn{
	padding: 0;
	position: relative;
	top: -15px;
	left: 25px;
}

.helping-hand-info.v-2{
	margin-right: 15px;
	margin-top: 4px;
}

.helping-hand-content.v-2 h3{
	margin-bottom: 0;
	position: relative;
	top: 2px;
}

.helping-hand-content.v-2 p{
	color: #4447AC;
}

.charity-sec.v-2 ul li span{
	margin-top: 7px;
}

.liks-coment.v-2{
	padding: 20px 0 38px 0;
}

.liks-coment{
	padding: 30px 0 25px 0;
	border-top: 1px solid #d3d3d3;
}

.likes.liks-coment{
	border-bottom: 1px solid #d3d3d3;
	padding: 22px 0 21px 0;
}

.liks-coment li{
	display: inline-block;
	position: relative;
	margin-right: 40px;
	color: #4447AC;
	font-weight: 400;
	font-size: 14px;
}

.liks-coment li:before{
	content: '';
    position: absolute;
    top: 5px;
    left: auto;
    right: -23px;
    width: 4.43px;
    height: 5px;
    border-radius: 5px;
    background-color: #4447AC;
    z-index: -1;
}

.liks-coment li i{
	padding-right: 6px;
}

.liks-coment li:first-child{
	color: #000;
}

.progress-col.v-2{
	background: unset;
	padding: 62px 0 0 0;
}

.supporters-sec{
	padding-bottom: 70px;
}

.democracy-sec h3{
	font-weight: 700;
	font-size: 28px;
	color: #2a2d93;
	margin-bottom: 20px;
}

.democracy-sec p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	margin-bottom: 19px;
}

.democracy-sec {
    margin-bottom: 34px;
}

.Supporters-info h3{
	font-weight: 800;
	font-size: 30px;
	line-height: 36px;
	color: #2a2d93;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.Supporters-info p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	padding-right: 50px;
	margin-bottom: 29px;
}

.Supporters-info > .banner-btn.v-2{
	background: #F58B03;
	color: #2a2d93;
	padding: 0 30px;
	margin-right: 0;
}

.charity-food.v-3{
	border-right: unset;
	border-bottom: 1px solid #d3d3d3;
}

.Supporters-sec {
    background: #f4f4f4;
    padding: 63px 48px 41px 50px;
    border-radius: 10px;
}

.charity-food.v-3:last-child{
	border-bottom: unset;
}

.charity-food.v-3 > .helping-hand-content.v-2 h3{
	margin-bottom: 7px;
}

.charity-food.v-3 > .helping-hand-content.v-2 p{
	color: #000;
}

.charity-food.v-3:first-child{
	padding-top: 0;
}

.charity-food.v-3{
	padding: 15px 0;
}

.mans-sec{
	margin-top: -8px;
}

.charity-food.v-3 .helping-hand-info.v-2 img{
	max-width: 72.57px;
}

.para-sec p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
}

.para-sec{
	padding: 48px 0;
}

.Charity-content h3{
	font-weight: 800;
	font-size: 40px;
	line-height: 48px;
	color: #2a2d93;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.Charity-content p{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #2a2d93;
}

.Charity-content {
    padding-right: 37px;
}

.inputs label{
	padding-right: 40px;
	font-weight: 700;
	font-size: 16px;
}

.dollors-range li{
	display: inline-block;
}

.dollors-range li a{
	width: 75px;
    height: 59px;
    background: #4447AC;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    display: inline-block;
    line-height: 59px;
}

.side-bar .subs-form.v-2 input{
	width: 100%;
    background: unset;
    border: 2px solid #D3D3D3;
    height: 49px;
}

.side-bar .subs-form.v-2 button{
	height: 49px;
} 

.event-style-contant:last-child{
	margin-bottom: 0;
}

.subs-form.v-2 .dollor-btn{
	left: 0;
    border-radius: 10px 0px 0px 10px;
    background: #2a2d93;
}

.Charity-v-2{
	background: #F58B03;
	border-radius: 10px;
}

.submit-btn a{
	width: 100%;
    background: #2a2d93;
    display: block;
    text-align: center;
    margin-right: auto;
    padding: 20px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 0px 0px 10px 10px;
    text-transform: uppercase;
}

.Charity-v-2{
	padding: 72px 60px 37px 60px;
}

.dollors-range{
	margin-top: 23px;
}

.charity-mane{
	padding-top: 20px;
}

.unorder-list ul{
	margin: 79px 0 40px 0;
	border-top: 1px solid #d3d3d3;
	border-bottom: 1px solid #d3d3d3;
}

.unorder-list ul li{
	display: inline-block;
	position: relative;
	font-weight: 500;
	font-size: 14px;
	color: #1F467F;
	padding: 25px 15px 24px 0;
	text-transform: uppercase;
}

.unorder-list ul li i{
	color: #4447AC;
	padding-right: 11px;
}

.unorder-list ul li:before{
	content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    background: #2a2d93;
    right: 4px;
}

.unorder-list ul li:last-child:before,
.liks-coment li:last-child:before{
	width: unset;
	height: unset;
}

.post-author-sec{
	display: flex;
	/*align-items: center;*/
	padding: 32px 28px 34px 28px;
	background: #f4f4f4;
	border-radius: 10px;
}

.Post-author-content h3{
	font-weight: 700;
	font-size: 22px;
	color: #2a2d93;
	margin-bottom: 8px;
}

.Post-author-content h3 span{
	ont-weight: 400;
	font-size: 16px;
	color: #4447AC;
	padding-left: 20px;
}

.Post-author-content p{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	padding-right: 69px;
}

.Post-author-content{
	padding-left:26px;
	text-align: left;
}

.Post-author-content.v-2{
	margin-top: 10px;
}

.coments-sec.v-2{
	margin-left: 20px;
}

.reply-btn{
	padding: 0 22px;
	background: #ffffff;
	line-height: 7;
	border-radius: 10px;
	letter-spacing: 0.583333px;
	text-decoration-line: underline;
	text-transform: uppercase;
	color: #4447AC;
	font-weight: 700;
	font-size: 14px;
	height: fit-content;
	min-width: 93px;
}

.post-author-info{
	padding: 10px 0;
	display: flex;
}

.post-author-sec.v-2{
	padding: 20px 18px 20px 28px;
}

.coments-sec.v-2{
	margin-left: 28px;
	margin-top: 0;
}

.heading-sec.v-2 h3{
	font-weight: 800;
	font-size: 28px;
	line-height: 24px;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	color: #2a2d93;
	margin-bottom: 30px;
}

.coments-info{
	margin-top: 41px;
	margin-bottom: 50px;
}

.input-field-heading h3{
	font-weight: 700;
	font-size: 26px;
	color: #2a2d93;
	margin-bottom: 28px;
}

.sec-two-heading.v2 {
    margin-bottom: 33px;
    text-transform: uppercase;
}

.sec-two-heading.v2 .widget-title.v-2{
	color: #2a2d93;
}

.input-field-info input{
	display: block;
	padding: 20px 0 20px 25px;
	width: 100%;
	margin-bottom: 24px;
	background: #F4F4F4;
	border: unset;
	border-radius: 5px;
}

.input-field-info textarea{
	display: block;
	width: 100%;
	height: 128px;
	padding: 18px 0 0 22px;
	background: #F4F4F4;
	border: unset;
	border-radius: 5px;
}

.input-field-info label{
	margin-bottom: 17px;
	font-weight: 600;
	font-size: 16px;
	color: #2a2d93;
}

.input-field-sec{
	padding: 52px 38px 50px 38px;
	border: 1px solid #d3d3d3;
	border-radius: 10px;
}

.subs-form.input-field{
	padding-left: 40px;
}

.subs-form.v-2 .input{
	padding-left: 80px;
	border-color: #2a2d93;
	background: transparent;
    border: 2px solid;
}

.gathring-sec span{
	font-weight: 600;
	font-size: 14px;
	color: #4447AC;
	margin-top: 28px;
	display: inline-block;
	margin-bottom: 12px;
}

.gathring-sec{
	margin-bottom: 75px;
}

.gathring-sec span i{
	padding-right: 10px;
}

.gathring-sec h3{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #2a2d93;
}

.submet-btn{
	padding-top: 20px;
}

.submet-btn > button{
	background: #F58B03;
	border-radius: 5px;
	height: 58px;
	line-height: 58px;
	text-align: center;
	border: unset;
	padding: 0 29px;
	font-weight: 700;
	font-size: 16px;
	color: #2a2d93;
	text-transform: uppercase;
}

.donation-center .local-solicitors-content.v-2 .v-2{
	background: #F58B03;
	color: #2a2d93;
	height: 32px;
	line-height: 32px;
	margin-top: 0px;
	margin-bottom: 3px;
	top: -22px;
}

.local-solicitors.v-2{
	margin-bottom: 24px;
}

.partnership-heading h2{
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
	color: #2a2d93;
	max-width: 657px;
	margin: auto;
	margin-bottom: 22px;
}

.partnership-heading{
	border-bottom: 1px solid #D3D3D3;
}

.financial-sec .liks-coment.v-2 li:first-child{
	color: #4447AC;
}

.financial-sec .liks-coment.v-2{
	text-align: center;
}

.partnership-sec{
	text-align: center;
}

.partnership-sec .social-links.v-2{
	margin-top: 33px;
	margin-bottom: 26px;
}

.partnership-sec .p{
	font-weight: 700;
	font-size: 24px;
	line-height: 40px;
	color: #000;
}

.partnership-sec p{
	max-width: 727px;
	margin: auto;
	margin-bottom: 18px;
}

.partnership-sec p:last-child{
	margin-bottom: 0;
}

.partnership-sec p:last-child{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
}

.financial-ways{
	text-align: center;
}

.financial-ways p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	max-width: 765px;
	margin: auto;
	margin-bottom: 18px;
}

.financial-ways h2{
	font-weight: 700;
	font-size: 24px;
	text-transform: capitalize;
	color: #2a2d93;
	margin-bottom: 23px;
}

.praojects-sec .financial-ways.v-2 p{
	margin-bottom: 20px;
} 

.financial-ways ul li{
	font-weight: 400;
	font-size: 16px;
	line-height: 40px;
	color: #000;
	position: relative;
	padding-left: 23px;
}

.financial-ways ul{
	margin-bottom: 15px;
}

.blocks-sec li{
	display: inline-block;
	padding-right: 20px;
	position: relative;
	color: #1F467F;
	font-weight: 500;
	font-size: 14px;
}

.blocks-sec li:before{
	content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    background-color: #1F467F;
    right: 7px;
}

.blocks-sec li:last-child:before{
	width: unset;
	height: unset;
}

.blocks-sec{
	border-top: 1px solid #d3d3d3;
	border-bottom: 1px solid #d3d3d3;
	padding: 22px 0;
	margin-bottom: 40px;
}

.post.post-author-sec{
	margin-top: 50px;
}

.post-author-sec.v-2 .Post-author-content.v-2{
	text-align: left;
}

.post-author-sec.v-2 .Post-author-content.v-2 p{
	padding-right: 258px;
}

.post-author-sec.v-2{
	padding: 30px 18px 26px 44px;
}

.post-author-sec.v-2 .Post-author-content{
	padding: 11px 0 0 15px;
}

.blocks-sec li i{
	padding-right: 12px;
	color: #4447AC;
}

.support-img img{
	width: 100%;
	transition: all 0.5s ease;
}

.support-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}


.support-info.v-3{
	position: relative;
}

.support-content.v4-4 h3:last-child{
	padding-right: 25px;
}

.support-content.v4-4 .h3:last-child,
.support-content.v3-3 .h3{
	padding-right: 44px;
	margin-bottom: 0;

}

.block.pt-0{
	margin-top: 24px;
}

.banner-button span{
	padding: 0 8px;
}

.pagination.v-2{
	padding-top: 72px;
}

.bertram-sec:last-child {
    margin-bottom: 18px;
}

.row.donation-center nav {
    margin-top: -7px;
}

.nav.v-2 .pagination {
    padding-top: 55px;
}

.next-link.link.v-2{
	left: auto;
	right: -26px;
}

.local-solicitors-content .p{
	margin-bottom: 34px;
}

.local-solicitors-content.v-2 .span{
	position: absolute;
	right: 30px;
	height: 42px;
    padding: 0 20px;
    line-height: 42px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    color: #ffffff;
    background: #4447AC;
    font-weight: 600;
    font-size: 12px;
    z-index: 99;
    top: -21px;
}

.funders-sec .local-solicitors-content.v-2{
	padding: 54px 40px 39px 40px;
}

.next-link.link.v-3{
	left: auto;
	right: -26px;
	bottom: 0;
}

.local-solicitors.v-2.v-3{
	margin-bottom: 0;
}

.local-solicitors-content.v-2 .paragrafh{
	padding-right: 103px;
}

.reply-btn:hover{
	color: #4447AC;
}

.charity-sec.v-2 .banner-btn.v-2:hover{
	color: #ffffff;
}

.banner-page.v-2 > .banner-content.v-2 > h2{
	padding: 118px 0 129px 0;
	max-width: 770px;
	margin: auto;
	line-height: 59px;
}

.supporters-content.v-2 > p{
	font-weight: 700;
	font-size: 26px;
	line-height: 36px;
	color: #2a2d93;
	margin-right: 0;
	max-width: 450px;
}

.supporters-content.v-2 > p:before{
	background: unset;
}

.liks-coment.v-2{
	border-bottom: 1px solid #d3d3d3;
}

.liks-coment.v-2 li:first-child{
	color: #4447AC;
}

.democracy-sec.v-2{
	padding: 0px 0 15px 0;
}

.Inara-Wolf-sec{
	display: flex;
	background: #F4F4F4;
	padding: 41px 52px 44px 52px;
	border-radius: 10px;
	margin: -34px 0 -2px 0;
}

.Inara-Wolf-sec .icons i{
	font-size: 50px;
	color: #000;
}

.Inara-Wolf-sec .Inara-Wolf-content p{
	font-style: italic;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #000;
	padding: 4px 51px 20px 23px;
}

.Inara-Wolf-sec .Inara-Wolf-content span{
	font-weight: 600;
	font-size: 16px;
	color: #4447AC;
	padding-left: 23px;
}

.financial-ways.v-2{
	text-align: left;
	margin-top: 69px;
}

.health-service{
	padding-left: 46px;
}

.health-service li i{
	padding-right: 10px;
	position: absolute;
	left: 0;
	top: 20px;
	transform: translateY(-50%);
}

.financial-sec.v-2.v-2 .liks-coment.v-2{
	border-bottom: unset;
	padding-top: 23px;
}

.financial-ways{
	margin: 42px 0 60px 0;
}

.Post-author-content.v-2.v-3{
	padding-right: 0;
}

.post-author-sec.v-2 .Post-author-content.v-2 .auther{
	padding-right: 32px;
}

.shirt-making img{
	width: 100%;
}

.shirt-making-content span{
	font-weight: 600;
    font-size: 14px;
    color: #4447AC;
    margin-top: 27px;
    display: inline-block;
    margin-bottom: 12px;
}

.shirt-making-content span i{
	padding-right: 10px;
}

.shirt-making-content h3{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #2a2d93;
	padding-right: 0;
}

.Related-Post-sec > .sec-two-heading.v-2 > .widget-title.v-2{
	margin-bottom: 33px;
}

.Related-Post-sec{
	margin-top: 72px;
	margin-bottom: 80px;
}

.coments-sec,
.coments-sec.v-2{
	margin-top: 20px;
}

.cart-table.v-2 .cart-header.v-2 tr th{
	text-align: unset;
}

.cart-table.v-2 .v-2 td{
	text-align: left;
}

.cart-table.v-2 .v-2,
.cart-table.v-2 tr{
	border-bottom: 1px solid #D3D3D3;
}


.cart-header.v-2{
	padding: 33px 15px 31px 15px;
}

.cart-table.v-2 .v-2:last-child{
	border-bottom: unset;
}

.event-content.v-2{
	background: #E5E5E5;
	margin-left: -1px;
	padding: 51px 50px 40px 50px;
}

.sec-two-heading.v2 .widget-title.v-2{
	margin-bottom: 0;
}

.event-info.v-2{
	margin-bottom: 30px;
	margin-right: 0;
}

.event-info.v-2.event{
	margin-bottom: 0;
}

.event-content.v-2 span{
	color: #4447AC;
	margin-bottom: 15px;
}

.event-content.v-2 span:last-child{
	margin-bottom: 0;
}


.event-content.v-2 p {
    margin-bottom: 42px;
}

.event-info.v-2 .next-link{
	bottom: 0;
	right: 0;
	border-radius: 5px 5px 10px 5px;
}

.event-content.v-2{
	border-radius:0 10px 10px 0;
}

.pagination.v-2.nav{
	padding-top: 68px;
}

.event-sec .event-style-contant{
	border: 1px solid #D3D3D3;
	border-radius: 30px;
	margin-bottom: 30px;
	margin-right: 30px;
	padding-bottom: 47px;
	max-width: unset;
}

.event-style-contant.v-2.sec{
	margin-bottom: 0;
}

.lives-info.v-2.lives{
	margin-top: 0;
}

.slider-contant.v-2:before{
	content: " ";
	position: absolute;
	width: 280px;
	height: 280px;
	background-image: url(../images/red-hart.png);
	background-repeat: no-repeat;
	top: -35px;
	right: 0;
	left: auto;
	z-index: -1;
}

.pics-sec .banner-btn{
	position: absolute;
	bottom: 0;
	right: 0px;
	border-radius: 10px 0px 10px 0px;
	height: 60px;
	line-height: 60px;
	padding: 0 42px;
	margin-right: 0;
}

.pics-sec .banner-btn:hover{
	color: #ffffff;
}

.pics-sec{
	position: relative;
	left: 4px;
}

.pics-sec .banner-btn img{
	max-width: 20px;
}

section {
	position: relative;
}

.organization-sec .heading.v-2{
	margin-bottom: 0;
}

.widget.widget-newsletter.v-2 .sec-two-heading.v-2 h3{
	padding-left: 0;
}

.contant-nbr span i{
	padding-right: 5px;
}

.links-img{
	padding:40px 0 58px 0;
}

.banner-button a span{
	color: #2a2d93;
}

.events-heading h3{
	font-weight: 700;
	font-size: 24px;
	color: #2a2d93;
	text-transform: uppercase;
}

.events-details li span{
	font-weight: 700;
	font-size: 16px;
	color: #000;
	width: 178px;
}

.events-details li:last-child{
	border-bottom: unset;
}

.events-details li{
	font-weight: 400;
	font-size: 16px;
	color: #2a2d93;
	display: flex;
	border-bottom: 1px solid #D3D3D3;
	padding: 18px 0 16px 0;
}

.events-details.v-2 li:first-child span{
	max-width: 201px;
	line-height: 26px;
	margin-top: 12px;
	padding-bottom: 20px;
}

.Category{
	margin-bottom: 73px;
	margin-top: 22px;
}

ul.events-details{
	margin-top: 14px;
}

.mapouter.v-2{
    width: 100%;
    height: 277px;
    margin-top: -28px;
}

.gmap_canvas.v-2{
    width:100%;
    height:100%;
    border-radius: 10px;
}

.donation-help h3{
	font-weight: 800;
	font-size: 40px;
	line-height: 48px;
	color: #2a2d93;
	padding-right: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.donation-help p{
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #2a2d93;
	padding-right: 35px;
}

.booking-info input,
.booking-aria.v-2 input{
	height: 59px;
	line-height: 59px;
	
	border-radius: 10px;
	width: 100%;
	padding: 0 30px;
	margin-bottom: 10px;
	border: unset;
	font-size: 14px;
	line-height: 26px;
	color: #000;
}
.booking-aria.v-2 input::-webkit-input-placeholder,
.booking-info input::-webkit-input-placeholder,
.inputs-sec .text-area textarea::-webkit-input-placeholder,
.booking-aria textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
.booking-aria.v-2 input::-moz-placeholder,
.booking-info input::-moz-placeholder,
.inputs-sec .text-area textarea::-moz-placeholder,
.booking-aria textarea::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
.booking-aria.v-2 input:-ms-input-placeholder,
.booking-info input:-ms-input-placeholder,
.inputs-sec .text-area textarea:-ms-input-placeholder,
.booking-aria textarea:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
.booking-aria.v-2 input:-moz-placeholder,
.booking-info input:-moz-placeholder,
.inputs-sec .text-area textarea:-moz-placeholder,
.booking-aria textarea:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

.booking-area.v-2 .booking-aria.v-2 .select-aria.v-2 select{
	margin-bottom: 10px;
}

.select-aria select{
	height: 59px;
	border-radius: 10px;
	padding: 0 20px;
	outline: none;
	border: unset;
	margin-right: 15px;
	font-weight: 400;
	font-size: 14px;
	color: #000;
}

.select-aria.v2 select {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
}

.select-aria.v-2 select{
	text-transform: capitalize !important;
}

.booking-area.donate{
	padding: 66px 61px 79px 61px;
	margin-left: 0;
	margin-top: -5px;
}

.subs-form.v-2 input{
	border: 2px solid #d3d3d3;
}

.booking-area{
	padding: 63px 99px 68px 99px;
	background: #f4f4f4;
	border-radius: 10px;
	margin-bottom: 60px;
}

input{
	outline: none;
}

.select-aria select:last-child{
	margin-right: 0;
}

.booking-aria button{
	background: #2a2d93;
	border-radius: 10px;
	height: 61px;
	color: #ffffff;
	width: 100%;
	font-weight: 700;
	font-size: 16px;
	margin-top: 10px;
}

.booking-aria {
    margin-top: 10px;
}
.supporters.v-2{
	padding-top: 0;
	padding-bottom: 18px;
}

.liks-coment.v-2.v3{
	padding: 20px 0 23px 0;
}

textarea{
	outline: none;
}

.organization{
	margin-top: 47px;
}

.nav.v-2 .nav{
	padding: 38px 0 6px 0;
}

.Jasmine-Ward img{
	width: 100%;
	padding-right: 33px;
}

.nav.v-2.v-3 .pagination{
	padding-top: 65px;
}

.supporters-content.v-2.Jasmine h3{
	font-weight: 700;
	font-size: 30px;
	color: #2a2d93;
	margin-bottom: 15px;
}

.supporters-content.v-2.Jasmine span{
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	color: #4447AC;
	display: block;
}

.supporters-content.v-2.Jasmine{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.supporters.v-2.Jasmine{
	display: flex;
	align-items: unset;
	padding-bottom: 43px;
}

.supporters.v-2.Jasmine .social-links.v-2{
	margin-top: -7px;
}

.address-sec p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
}

.address-sec .sec-two-heading.v-2 .widget-title.v-2{
	margin-bottom: 16px;
}

.address-sec .events-details.Category{
	margin-bottom: 20px;
	margin-top: -27px;
}

.Jasmine-Ward-sec .financial-ways.v-2 p{
	max-width: unset;
	margin-top: -11px;
}

.informations-sec .container,
.Jasmine-Ward-sec .container{
	max-width: 1000px;
}

.Jasmine-Ward-sec .financial-ways.v-2{
	margin-top: 60px;
	margin-bottom: 100px;
}

.Jasmine-Ward-sec .financial-ways.v-2 p:last-child{
	margin-bottom: 0;
	margin-top: 13px;
}

.heading.v-2.v-3 p{
	margin-top: 7px;
}

.select-aria.v-2 select{
	width: 100%;
	padding: 0 30px;
	text-transform: uppercase;
}

.booking-aria textarea{
	width: 100%;
	border: unset;
	border-radius: 10px;
	padding:22px 28px;
	height: 112px;
	font-size: 14px;
}

.booking-area.v-2{
	background-image: url(../images/hands-up.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	margin-bottom: 100px;
}

.booking-area.v-2:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    mix-blend-mode: normal;
    opacity: 0.5;
    z-index: -1;
}

button{
	border: unset;
	text-transform: uppercase;
}

.booking-area.v-2 .donation-help p{
	padding-right: 85px;
}

.booking-aria.v-2 button{
	margin-top: 15px;
}

.block.b-c{
	background: #F4F4F4;
	margin-bottom: -95px;
	padding-bottom: 164px;
}

.block.b-c .heading.v-2{
	margin-bottom: 38px;
}

.heading.v-2.v-3 h2{
	max-width: unset;
	margin-bottom: 9px;
}

.heading.v-2.v-3 p{
	max-width: 750px;
}

.touch-info span{
	font-weight: 500;
	font-size: 18px;
	color: #4447AC;
	margin-bottom: 22px;
	display: inline-block;
}

.touch-info h3{
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	text-transform: capitalize;
	color: #2a2d93;
	margin-bottom: 21px;
	padding-right: 35px;
}

.helping-hand-content.v3{
	margin-top: -18px;
}

.touch-info p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
}

.mapouter.v-2.v-3{
	margin-top: 0;
	height: 404px;
}

.gmap_canvas.v-2.v-3{
	width: 100%;
    height: 100%;
    border-radius: 10px;
}

.helping-hand-sec{
	margin-top: 28px;
}

.helping-hand-info.v-2.v-3{
	background: #4447AC;
	width: 86px;
	height: 85px;
	line-height: 80px;
	text-align: center;
	border-radius: 100%;
	margin-right: 20px;
}

.helping-hand-info.v-2.v-3 img{
	width: 41px;
}

.blocks-section .booking-area{
	background-image: unset;
}

.blocks-section .booking-area.v-2{
	background-color: unset;
	padding: 0;
	margin-bottom: 0;
}

.blocks-section .booking-area.v-2 p{
	padding-right: 35px;
}

.blocks-section .booking-area:before{
	background: unset;
}

.blocks-section{
	background-image: url(../images/hands-up.png);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	padding: 90px 0 100px 0;
}

.blocks-section:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    mix-blend-mode: normal;
    opacity: 0.9;
    z-index: -1;
}

.blocks-section .container{
	max-width: 768px;
}

.donation-help.v-2 h3{
	text-transform: capitalize;
	padding-right: 0;
}

.help-sec.v-2{
	margin-bottom: 0;
}

.last-sec{
	padding-top: 132px;
}

.heading.v-2.v-3{
	margin-bottom: 50px;
}

.block.v-2 .heading{
	text-align: center;
}

.block.v-2 .heading h2{
	font-weight: 500;
	font-size: 36px;
	line-height: 38px;
	color: #2a2d93;
	margin: auto;
	max-width: 645px;
	margin-bottom: 12px; text-transform:uppercase;
}

.block.v-2 .heading p{
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	margin: auto;
    max-width: 775px;
 }

.banner-sec.v-2 .banner-content.v-2 h2{
	padding: 145px 0 146px 0;
 }

 .block.v-2 .financial-ways.v-2{
 	margin-top: 0;
 }

 .forest-sec{
 	position: relative;
 }

 .play-btn a img{
 	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
 }

 .forest-sec-info{
 	margin-top: 90px;
 }

 .forest-sec{
 	margin-top: -11px;
 }

 .last-sec.v-2{
 	background-image: url(../images/hands-up.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-bottom: 93px;
 }

 .last-sec.v-2:before{
 	position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    mix-blend-mode: normal;
    opacity: 0.2;
    z-index: -1;
 }

 .slider-contant.v-2 .help-us{
 	color: #ffffff;
 	margin-bottom: 15px;
 }

 .crowding-aera{
 	position: relative;
 }

.crowding-aera span{
 	font-weight: 500;
	font-size: 18px;
	color: #4447AC;
	margin-bottom: 19px;
	display: inline-block;
}

.crowding-aera h3{
	font-weight: 800;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	color: #2a2d93;
	margin-bottom: 12px;
}

.crowding-aera p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	margin-bottom: 25px;
	padding-right: 117px;
}

.crowding-aera span a{
	position: relative;
	text-align: center;
	margin-left: 54px;
	top: 18px;
	left: 0;
}

.crowding-info img{
	width: 100%;
}

.crowding-aera.v-2{
	margin-top: 37px;
	margin-left: 48px;
}

.crowding-aera.v-2 p{
	padding-right: 65px;
}

.crowding-section{
	padding-bottom: 70px;
}

.booking-area.v-2.v-3{
	margin-bottom: 0;
	margin-top: 66px;
}

.booking-area.v-2.v-3 .donation-help p{
	padding-right: 188px;
}

.booking-area.v-2.sec{
	margin-bottom: 0;
}

.donation-help.v-2 p {
    padding-right: 30px !important;
}

.booking-area.v-2.section .donation-help.v-2 p{
	padding-right: 0;
	color: #ffffff;
}

.booking-area.v-2.section .donation-help.v-2 h3{
	color: #ffffff;
	padding-right: 0;
	text-transform: uppercase;
}

.booking-area.v-2.section{
	background-image: url(../images/hand33.png);
	margin-bottom: 0;
	width: 100%;
	padding: 63px 0 94px;
}

.booking-area.v-2.section:before{
	background: #e61f40;
	opacity: 0.8;
}

.booking-area.v-2 .booking-info.v-2 .select-aria select{
	width: 48.5%;
	margin-right: 0;
}

.booking-area.v-2 .booking-info.v-2 .select-aria .select{
	margin-left: 4px;
}

.booking-aria.v-2 button{
	color: #ffffff;
	background: #2a2d93;
}

.bg-clr{
	background: #F4F3F3;
	margin-bottom: -95px;
}

.event-style-contant.v-2{
	max-width: 498px;
	padding-right: 55px;
	border: unset;
	margin: auto;
	margin-bottom: 30px;
	margin-left: 43px;
}

.event-style-contant.v-2.v-3{
	margin-bottom: 0;
}

.heading-bottom.v-2{
	padding-bottom: 100px;
}

.education-sec.v-2 .img-info.v-2 img{
	border-radius: 10px 10px 0 0;
}

.education-content.v-2 .one{
	padding-right: 20px;
}

.bottom-heading-sec span{
	font-weight: 600;
	font-size: 18px;
	text-decoration-line: underline;
	color: #4447AC;
	margin-top: 13px;
	display: inline-block;
}

.bottom-heading-sec span i{
	padding-left: 12px;
	text-decoration: none;
}

.input-types input{
	width: 100%;
	height: 59px;
	border: none;
	border-radius: 10px;
	padding: 0 27px;
	margin-bottom: 10px;
}

.input-types .select-aria select{
	width:100%;
}

.input-types .row{
	padding: 0;
	margin: 0;
	--bs-gutter-x: 0;
}

.input-types .row .col-lg-6{
	padding-right: 10px;
}

.input-types .row .col-lg-6:last-child{
	padding-right: 0;
}

.input-types .row .col-lg-6:nth-child(3),
.input-types .row .col-lg-6:nth-child(6) {
	padding-right: 0;
}

.input-types .select-aria{
	margin-bottom: 10px;
}

.Card-Details-sec h3{
	font-weight: 700;
	font-size: 20px;
	color: #2a2d93;
	text-transform: uppercase;
}

.Card-Details-sec p{
	font-weight: 400;
	font-size: 16px;
	color: #2a2d93;
	padding-left: 12px;
}

.Card-Details-sec{
	display: flex;
	align-items: baseline;
	margin: 39px 0 23px 0;
}

.select-aria.secend{
	padding: 0 10px;
}

.row.last button{
	background: #2a2d93;
    border-radius: 10px;
    height: 61px;
    color: #ffffff;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
}

.input-types{
	margin: 38px 0 49px 0;
}

.last-sec.v-2.v-3{
	margin-bottom: -95px;
	padding-bottom: 200px;
	padding-top: 50px;
}

.products-img{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.for-likes a{
	position: absolute;
	bottom: 7px;
	right: 10px;
	width: 52px;
	height: 52px;
	background: #4447AC;
	border-radius: 10px;
	line-height: 52px;
	text-align: center;
	color: #ffffff;
	font-size: 20px;
}

.products-data h3{
	font-weight: 600;
	font-size: 20px;
	color: #2a2d93;
	margin-top: 27px;
}

.first-ul li{
	font-weight: 600;
	font-size: 18px;
	color: #4447AC;
	margin-right: -4px;
}

.inner-ul li i{
	font-weight: 400;
	font-size: 16px;
	color: #F58B03;
}

.inner-ul{
	padding-left: 15px;
}

.inner-ul li{
	display: inline-block;
}

.products-data .first-ul{
	display: flex;
	margin-top: 17px;
}

.products-sec.v-2{
	margin-bottom: 47px;
}

.charity-result h3{
	font-weight: 700;
	font-size: 26px;
	color: #2a2d93;
	margin-bottom: 16px;
}

.charity-result h3 span{
	color: #4447AC;
}

.charity-result p{
	font-weight: 400;
	font-size: 16px;
	color: #000;
}

.charity-result{
	margin-bottom: 32px;
}

.input-sec.v-2{
	margin-bottom: 50px;
}


.charity-result-sec{
	display: flex;
	margin-bottom: 39px;
}

.charity-result.v-2{
	margin: 11px 0 0 20px;
}

.cart-section .cart-outer {
    position: relative;
}

.cart-section .table-outer {
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.cart-section .cart-table {
    width: 100%;
    min-width: 900px;
    border: 1px solid #eeeeee;
}

.cart-table .cart-header {
    position: relative;
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    color: #1f1f1f;
}

.cart-table thead tr th.prod-column {
    text-align: left;
    padding-left: 144px;
}

.cart-table thead tr th {
	padding: 15px 0;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}


.table-heading h3{
	font-weight: 700;
	font-size: 22px;
	color: #2a2d93;
	margin-bottom: 27px;
}

.address-sec .sec-two-heading .widget-title,
.financial-ways.v-2 .sec-two-heading .widget-title {
	color: #2a2d93;
}

.table-outer.v-2{
	margin-top: 44px;
}

.inputs-sec .booking-aria.v-2,
.inputs-sec .text-area textarea{
	margin-top: 0;
}

.inputs-sec .booking-area.v-2{
	background-image: unset;
	background-color: unset;
	padding: 0;
	margin-bottom: 0;
}

.inputs-sec .booking-area.v-2:before{
	background:unset;
}

.inputs-sec{
	background: #f4f4f4;
	padding: 66px 50px 66px 50px;
	border-radius: 10px;
}

.nots-sec .data p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	padding: 0 165px 0 29px;
}

.text-area > textarea{
	width: 100%;
    border: unset;
    margin-top: 10px;
    border-radius: 10px;
    padding: 22px 28px;
    height: 197px;
    font-size: 14px;
    line-height: 26px;
    color: #000;
}

.nots-sec{
	margin-top: 30px;
	padding: 70px;
	background: #f4f4f4;
	border-radius: 10px;
}

.notes-info{
	display: flex;
	background: #ffffff;
	padding: 34px 59px 23px 59px;
	border-radius: 10px;
}

.privacy-policy p{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	padding-right: 10px;
}

.privacy-policy p a{
	text-decoration-line: underline;
	color: #4447AC;
}

.privacy-policy{
	margin-top: 34px;
}

.privacy-policy button{
	background: #2a2d93;
    border-radius: 10px;
    height: 61px;
    color: #ffffff;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    margin-top: 30px;
}

.widget_catageries ul li{
	display: flex;
	padding: 12px 0;
	border-bottom: 1px solid #D3D3D3;
	position: relative;
	flex-wrap: wrap;
}

.widget_catageries ul li:last-child{
	border-bottom: unset;
}

.widget_catageries ul li a {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	padding-left: 20px;
}
.widget_catageries ul li a:hover {
	padding-left: 25px;
	color: #4447AC;
}

.widget_catageries ul li span{
	margin-left: auto;
}

.widget_catageries ul li:before{
	content: "\f0da";
	font-family: fontawesome;
	font-weight: 400;
	font-size: 16px;
	color: #000;
	left: 0;
	top: 0;
}

.widget_catageries .widgets li:first-child{
	padding-top: 0;
}
.widget_catageries .widgets li:last-child{
	border-bottom: unset;
	padding-bottom: 0;
}

.qty .quantity {
    margin: auto;
}


.widget_catageries ul ul{
    width: 100%;
    padding-left: 30px;
    border-top: 1px solid #D3D3D3;
}

.widget_catageries ul ul li:last-child{
	border-bottom: unset;
	padding-bottom: 0;
}

.quantity input{
	text-align: center;
	max-width: 39px;
    border: unset;
    font-weight: 700;
	font-size: 18px;
	background: unset;
}

.quantity .plus-btn,
.quantity .minus-btn{
	background: unset;
}

.quantity {
    border: 1px solid #D3D3D3;
    padding: 12px 14px;
    border-radius: 50px;
    max-width: 135px;
}

.column-box {
    display: flex;
    align-items: center;
}

.cart-table tbody tr td{
	padding: 40px 15px;
	font-weight: 600;
	font-size: 18px;
	
}

.cart-table tbody tr .price,
.cart-table tbody tr .sub-total{
	color: #4447AC;
	text-align: center;
}

.cart-header tr .quantit{
	padding: 20px 37px;
	text-align: center;
}

.prod-column .column-box h6{
	padding-left: 29px;
}


.cart-table tbody{
	background: #f4f4f4;
}

.cart-table tbody tr td .remove-btn{
	font-weight: 400;
	font-size: 26px;
	border-radius: 50px;
	border: 2px solid #2a2d93; 
}

tbody tr td a i{
    width: 32px;
    height: 0px;
    text-align: center;
}

.cpupon input{
	height: 61px;
	border: 1px solid #D3D3D3;
	border-radius: 10px;
	padding: 0 34px;
	font-weight: 400;
	font-size: 14px;
	width: 63%;
	margin-right: 5px;
}

.cpupon button{
	height: 61px;
	background: #4447AC;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0 53px;
}

.cart-header{
	background: #2a2d93;
	padding: 27px 0;
	border-radius: 10px 10px 0 0;
}

.cart-header h3{
	font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
}

tbody .tr .price{
	text-align: left;
	padding-left: 47px;
}

tbody .tr .sub-total{
	text-align: right;
	padding-right: 47px;
}

tbody .tr .price.v-2{
	color: #2a2d93;
}

tbody .tr.v-2{
	border-bottom: 1px solid #D3D3D3;
}

tbody .tr.v-2 .price,
tbody .tr.v-2 .sub-total{
	padding-top: 43px;
	padding-bottom: 15px;
}

tbody .tr:last-child .price,
tbody .tr:last-child .sub-total{
	padding-top: 15px;
	padding-bottom: 40px;
}

.cart-table-sec .cart-table tbody{
	background: unset;
}

.cart-table-sec{
	background: #f4f4f4;
}

.cart-table-sec button{
	height: 61px;
    background: #4447AC;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 60px;
    width: 80%;
    margin: 0px 49px 38px 48px;
}

.cart-table.v-2{
	margin-bottom: 44px;
}

table {
	width: 100%;
}

.leo-cap img{
	width: 100%;
}

.first-ul.v-2{
	display: flex;
}

.inner-ul.v-2{
	padding-left: 0;
	padding-right: 16px;
}

.first-ul.v-2 li{
	text-decoration: underline;
	font-weight: 500;
	font-size: 14px;
}

.Animal.Welfare h3{
	font-weight: 700;
	font-size: 26px;
	color: #2a2d93;
	margin-bottom: 19px;
}

.give-like a{
	width: 52px;
    height: 52px;
    background: #4447AC;
    border-radius: 10px;
    line-height: 52px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    display: inline-block;
}

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

.volue h3{
	font-weight: 700;
	font-size: 30px;
	color: #4447AC;
	position: relative;
	margin-top: 30px;
}

.volue h3:before{
	content: "";
    width: 102px;
    height: 3px;
    background: #4447AC;
    border-radius: 3px;
    position: absolute;
    bottom: -9px;
    left: 0;
}

.volue p{
	font-weight: 400;
	font-size: 16px;
	color: #000;
	text-transform: uppercase;
	font-style: italic;
	margin-top: 42px;
}

.volue p span{
	font-weight: 700;
	font-size: 16px;
	color: #4447AC;
	padding-left: 18px;
}

.volue p:nth-child(3){
	line-height: 30px;
	font-style: unset;
	margin-top: 21px;
	text-transform: unset;
	padding-right: 60px;
}

.volue ul{
	padding-left: 45px;
	margin-top: 14px;
}

.volue ul li{
	font-weight: 400;
	font-size: 16px;
	line-height: 40px;
	color: #000;
}

.volue ul li i{
	padding-right: 7px;
}

.quantity-sec .btn{
	background: #F58B03;
	border-radius: 5px;
	height: 50px;
	display: inline-block;
	line-height: 47px;
	outline: none;
	font-weight: 700;
	font-size: 16px;
	color: #2a2d93;
	padding: 0 34px;
	margin-left: 34px;
}

.quantity-sec.v-2{
	display: flex;
	margin-top: 37px;
}

.social-links-sec .shop-info li{
	display: inline-block;
	font-weight: 400;
    font-size: 16px;
    color: #000;
    font-style: italic;
}

.social-links-sec .shop-info li span{
	font-weight: 700;
    font-size: 16px;
    color: #4447AC;
    padding-left: 23px;
}

.social-links-sec .shop-info li:first-child{
	padding-right: 66px;
}

.social-links-sec .shop-info{
	margin-bottom: 40px;
}

.social-links-sec{
	margin-top: 50px;
}

.nav-tabs .nav{
	justify-content: left;
	padding-top: 0;
}

.tab-content p,
.tab-pane.fade{
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	margin-top: 32px;
}

.nav-tabs.v-2{
    border-bottom: unset;
    margin-bottom: 25px;
    margin-top: -19px;
}

.nav-tabs .nav-link.active{
	color: unset;
}

.nav-pills .nav-link.active{
	color: unset;
}

.nav-tabs.v-2 .nav.nav-pills.mb-3{
	font-weight: 700;
	font-size: 24px;
	color: #2a2d93;
	border-bottom: 1px solid;
	padding-bottom: 27px;
}

.nav-tabs.v-2 .nav.nav-pills.mb-3 .nav-item{
	padding-right: 129px;
}

.nav-link.active,
.nav-link{
	padding: 0;
	text-transform: unset;
}





.nav-pills li button {
    position: relative;
}

.nav-pills li button:after {
    content: '';
    position: absolute;
    bottom: -29px;
    left: 0;
    width: 100%;
    height: 3px;
    background: red;
    opacity: 0;
    visibility: hidden;
}

.nav-pills li button:before {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 74%;
    border-top: 10px solid red;
    border-right: 10px solid transparent;
    transform: rotate(45deg) translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.nav-pills li button.active:before {
    opacity: 1;
    visibility: visible;
}

.nav-pills li button.active:after {
    opacity: 1;
    visibility: visible;
}

.nav-pills .nav-link.active {
	color: #4447AC !important;
}

.nav-pills .nav-link {
	color: #2a2d93;
	font-weight: 700;
}

.nav-tabs.v-2 .nav-link span{
	width: 30px;
	height: 30px;
	background: #F58B03;
	font-weight: 700;
	font-size: 14px;
	color: #2a2d93;
	display: inline-block;
	line-height: 30px;
	border-radius: 50px;
	position: absolute;
    left: auto;
    right: -37px;
    bottom: -5px;
}

.section li{
	display: flex;
	font-weight: 400;
	font-size: 16px;
	color: #000;
	padding: 17px 0 17px 12px;
	border-bottom: 1px solid #d3d3d3;
}

.section li:last-child{
	border-bottom: unset;
}

.section li span{
	width: 288px;
	color: #000;
	font-style: italic;
}

.products-heading span{
	font-weight: 500;
	font-size: 18px;
	color: #4447AC;
	margin-bottom: 18px;
	display: block;
}

.products-heading h3{
	font-weight: 700;
	font-size: 40px;
	color: #2a2d93;
	background: #ffffff;
	display: inline-block;
	padding-right: 24px;
}

.products-heading{
	position: relative;
}

.products-heading:before,
.sec-tittle.ta-left:before{
	content: "";
    width: 100%;
    height: 3px;
    background: #d3d3d3;
    border-radius: 2px;
    position: absolute;
    bottom: 12px;
    left: 0;
    z-index: -1;
}

.products-heading{
	margin-bottom: 54px;
	margin-top: -34px;
}

.Animal.Welfare-sec {
    margin-left: 42px;
    margin-top: 18px;
}

.breadcrumb li {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}
.breadcrumb li:first-child {
	padding-left: 0;
}
.breadcrumb li:last-child {
	padding-right: 0;
}

.breadcrumb li:before {
    content: '/';
    position: absolute;
    top: 0;
    left: 100%;
}

.breadcrumb li:last-child:before {
    display: none;
}

.widget-instagram .row {
	margin-bottom: -24px;
	margin-top: 30px;
	padding: 0 15px 0 2px;
}

.side-bar .widget {
	margin-bottom: 59px;
}

.side-bar .widget:last-child {
	margin-bottom: 0;
}


.banner-page-content {
    max-width: 695px;
    margin: 0 auto;
}

.donation-center .local-solicitors-content.v-2{
	padding-top: 6px;
}

.widget_catageries ul li:first-child{
	padding-top: 10px;
}

.tags-info {
    margin-top: 30px;
}

.widget.widget_catageries ul {
    margin-top: -14px;
}

.widget.widget_catageries ul ul{
	margin-top: 12px;
}

.submit-btn a{
	height: 88px;
	line-height: 50px;
}

.heading-sec.v-2 {
    margin-top: 57px;
}

.cart-table .cart-header th {
    background: #2a2d93;
}

.cart-table .cart-header th:first-child {
    border-radius: 10px 0 0 0;
}

.cart-table .cart-header th:last-child {
    border-radius: 0 10px 0 0;
}



.cart-table.v-2 .cart-header.v-2 tr th {
    padding: 32px 50px 31px 50px;
}
.cart-table.v-2 tbody {
	background: #fff;
}




.cart-table.v-2 .v-2 td {
	padding: 16px 50px 19px;
}

.cart-table.v-2 .v-2 .v2{
	padding-top: 46px;
}

.cart-table.v-2 .v-2 .price.v-2{
	padding-bottom: 38px;
	border-bottom: unset;
}

.tbody.v2{
	background: #f4f4f4 !important;
}

.tbody.v2 tr{
	border-bottom: unset;
}

.tr.v-2 td:first-child,
.tr .price.v-2{
	text-align: left;
}

.tr.v-2 td:last-child,
.tr .sub-total:last-child{
	text-align: right;
}

.tbody.v2 tr td:nth-child(3),
.cart-header tr th:nth-child(3){
	padding-right: 52px;
}

.tbody.v2 tr td:nth-child(4){
	padding-right: 31px;
}

.cart-header tr th:nth-child(4){
	text-align: left;
	padding-left: 19px;
	width: 181px;
}

.block.p-0.charity{
	margin-top: -31px;
}

.logo.v2{
	margin-left: 0;
}

.header-bottom.v-2 .links.v2 li{
	margin-right: 23px;
}

.header-bottom.v-2 .links.v2 li:last-child{
	margin-right: 0;
}

.links.v2 {
    margin-right: 25px;
}

.donate.v-2 .cart-btn span{
	color: #ffffff;
}

.Post-author-content.v-2.v3 p{
	max-width: 559px;
}

.helping-hand-sec.v2{
	margin-top: 0;
	background:#F4F4F4;
}

.helping-hand-content {
    margin-top: 9px;
}

.helping-hand-content .helping-hand-info{
	margin-right: 10px;
}

.health-sec.v2{
	background-image: unset;
}


/* 

.about-section:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 620px;
    height: 613px;
    background-image: url(../images/2img.png);
    transform: translateX(-50%);
    z-index: -1;
    margin-left: 25px;
} */

.sec-tittle.ta-left h2 {
	background: rgba(244, 244, 244, 0.95);
	display: inline-block;
	padding-right: 30px;
	color: #2a2d93;
}
.sec-tittle.ta-left:before {
	bottom: 22px;
}
.slider-contant.v-2 p {
	margin-bottom: 74px;
}
.bc-black.v2:after {
	opacity: 0.3;
}

.masonary .helping-hand-content {
	margin-top: 5px;
}

.lives-content.v2 h3{
	margin-bottom: 9px;
}

.support-us-content.v2 h3{
	color: #2a2d93;
}

.supporters.v2{
	padding: 29px 0 22px 0;
}

.liks-coment.v2{
	padding-bottom: 29px;
}

.liks-coment li{
	font-weight: 600;
}

.financial-sec.v-2.fund{
	margin-bottom: 46px;
}

.financial-ways.v2{
	margin-top: 0;
	margin-bottom: 55px;
}

.local-solicitors-content h3{
	margin-bottom: 11px;
}

.event.event-content.v-2 p{
	margin-bottom: 39px;
}

.help.donation-help.v-2 h3{
	padding-right: 100px;
}

.events-details.v-2 .king-street {
    line-height: 26px;
    padding-bottom: 19px;
}

.events-details.v-2 .king-street span{
	width: 363px;
}

.crowd.financial-ways.v-2{
	margin-bottom: 0;
}

.crowd.financial-ways.v-2 h2{
	margin-bottom: 18px;
}

.crowd.financial-ways.v-2 p{
	margin-bottom: 16px;
}

.privacy-policy p {
    padding-right: 100px;
    padding-bottom: 2px;
}

.child.education-content.v-2{
	border-radius: 0 0 10px 10px;
}

.donation.supporters.v-2{
	padding-bottom: 25px;
}

.charity.financial-ways.v-2{
	margin: 83px 0 55px 0;
}

.local-solicitors-content.v2{
	padding: 0 37px 30px 37px;
}

.local-solicitors-content.v2 p{
	padding-right: 50px;
}

.links-img img{
	width: 100%;
}

.gathring-sec img{
	width: 100%;
}

.post.Post-author-content.v-2{
	margin-top: 0;
}

.event-info.v-2 .event-img img{
	border-radius: 10px 0 0 10px;
}

.products-img img{
	width: 100%;
	transition: all 0.5s ease;
}

.two-girl-sec img{
	width: 100%;
}

.finance li i{
	padding-right: 10px;
}

.financial-ways.v2 .finance li{
	padding-left: 0px;
}

.forest-sec > img{
	width: 100%
}

.hover-content .social-links li:first-child{
	margin-left: 11px;
}








/* RESPONSIVE MOBILE MENU */

.menu-btn {
	width: 24px;
	cursor: pointer;
	margin-left: 20px;
	display: none;
}
.menu-btn > span {
	float: left;
	width: 100%;
	height: 2px;
	background-color: #000;
	margin-bottom: 6px;
	-webkit-transition:transform .3s;
	-moz-transition:transform .3s;
	-ms-transition:transform .3s;
	-o-transition:transform .3s;
	transition:transform .3s;
}
header.sticky .menu-btn > span {
	background-color: #000;
}
.menu-btn > span:last-child {
	margin-bottom: 0;
}

.menu-btn.active span.bar1 {
	-webkit-transform: translateY(10px) rotate(-45deg);
	-moz-transform: translateY(10px) rotate(-45deg);
	-ms-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.menu-btn.active span.bar2 {
	opacity: 0;
	visibility: hidden;
}
.menu-btn.active span.bar3 {
	-webkit-transform: translateY(-6px) rotate(-135deg);
	-moz-transform: translateY(-6px) rotate(-135deg);
	-ms-transform: translateY(-6px) rotate(-135deg);
	transform: translateY(-6px) rotate(-135deg);
}


.responsive-mobile-menu {
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	z-index: 9999;
	height: 100%;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	background-color: #4447AC;
}
.responsive-mobile-menu.active {
	opacity: 1;
	visibility: visible;
	left: 0;
}
.responsive-mobile-menu ul {
	float: left;
	width: 100%;
}
.responsive-mobile-menu ul li {
	float: left;
	width: 100%;
}
.responsive-mobile-menu ul li a:before {
	content: '\f067';
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: 'Font Awesome 5 Free';
	color: #fff;
	font-weight: 900;
	font-size: 13px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.responsive-mobile-menu ul li.menu-item-has-children > a:before {
	opacity: 1;
	visibility: visible;
}
.responsive-mobile-menu ul li.menu-item-has-children.active > a:before {
	content: '\f068';
}
.responsive-mobile-menu ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid rgba(255,255,255,0.10);
	float: left;
	width: 100%;
	position: relative;
	padding: 15px 10px;
}
.responsive-mobile-menu ul ul {
	display: none;
	padding: 20px 0 20px 20px;
}
.responsive-mobile-menu ul ul li {
	margin-bottom: 10px;
}
.responsive-mobile-menu ul ul li a {
	border-bottom: 0;
	padding: 0;
	margin-bottom: 15px;
	font-size: 12px;
}
.responsive-mobile-menu ul ul li:last-child a {
	margin-bottom: 0;
}



.last-sec.bg-change {
	background:#F4F4F4;
}

.sec-two-heading {
	margin-bottom: 30px;
}

div#html5-watermark {
	display: none !important;
}
div#html5-image {
	padding:0 !important;
}



select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 18px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  margin-right: 2rem;
  padding: 1rem;
  padding-right: 2rem;
}


.img-info {
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}
.img-info:before,
.slider-img:before,
.local-solicitors-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.50);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
}
.health-sec:hover .img-info:before,
.sliders:hover .slider-img:before,
.local-solicitors:hover .local-solicitors-info:before {
	opacity: 1;
	visibility: visible;
}
.health-sec:hover .img-info img,
.sliders:hover .slider-img > img,
.helping:hover .help-info img,
.products-sec:hover .products-img img,
.local-solicitors:hover .local-solicitors-info img {
	transform: scale(1.05) rotate(1deg);
}



.local-solicitors-info {
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}


.animal-welfare-info > h3 {
    font-size: 26px;
    line-height: 36px;
    color: #2a2d93;
    font-weight: 700;
    margin-bottom: 15px;
}
.give-like.pb {
	position: absolute;
	top: 0;
	right: 0;
}
.animal-welfare-sec {
	position: relative;
}




.shirt-making {
    overflow: hidden;
    border-radius: 10px;
}
.shirt-making img {
    width: 100%;
    transition: all 0.5s ease;
}
.shirt-making:hover > img {
	transform: scale(1.05) rotate(1deg);
}
.section {
	width: 50%;
	margin-top: 16px;
}
.mt-0 {
	margin-top: 0;
	padding-top: 0;
}

.booking-area.v-2.section .row {
	max-width: 650px;
	margin:0 auto;
}

.goole-iframe iframe {
	width: 100%;
	height: 350px;
}

.goole-iframe.v2 iframe {
	height: 277px;
}

.first-ul.v-2 > span {
	color: #4447AC;
	margin-right: -4px;
	text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
}
.first-ul > span {
    font-weight: 600;
	font-size: 18px;
	color: #4447AC;
	margin-right: -4px;
}



header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}






.preloader-area{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    background: #000;
}
.preloader-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    top: 50%;
    margin-top: -20px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.preloader-folding-cube .preloader-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.preloader-folding-cube .preloader-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    -ms-transform: scale(1.1) rotate(90deg);
    transform: scale(1.1) rotateZ(90deg);
}
.preloader-folding-cube .preloader-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    -ms-transform: scale(1.1) rotate(270deg);
    transform: scale(1.1) rotateZ(270deg);
}
.preloader-folding-cube .preloader-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    -ms-transform: scale(1.1) rotate(180deg);
    transform: scale(1.1) rotateZ(180deg);
}
.preloader-folding-cube .preloader-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: preloader-foldCubeAngle 2.4s infinite linear both;
    animation: preloader-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.preloader-folding-cube .preloader-cube::before {
    background: var(--color-accent);
}
.preloader-folding-cube .preloader-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.preloader-folding-cube .preloader-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
.preloader-folding-cube .preloader-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}





@-webkit-keyframes preloader-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes preloader-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}


.preloader-folding-cube .preloader-cube::before {
	background: #4447AC;
}


.scl-content {
	position: relative;
	top: -66px;
}



/* Swiper */
.swiper-container {
  width: 100%;
  height: 100vh;
  background-color: #000;
}

/* Swiper slides */
.swiper-slide {
	position: relative;
}

.slide-1 {
    background-color: #e67204;
}
.slide-2 {
    background-color: #3bab24;
}
.slide-3 {
    background-color: #922b1d;
}

/* Slide captions */
.slide-captions {
	position: absolute;
	top: 50%;
	left: 15%;
	color: #FFF;
	z-index: 999;
	transform: translateY(-50%);
}
.slide-captions .current-title {
  margin: 0;
	font-size: 48px;
}
.slide-captions .current-subtitle {
  margin: 10px 0 0 0;
	font-size: 28px;
}

/* Swiper arrows */
.swiper-pagination-bullet-active {
    background-color: #fff;
}

/* Swiper pagination */
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
}
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}
.partners-sec.section {
	width: 100%;
}


.cart-btn.btn-anm:before {
	background:#4447AC;
}
.cart-btn.btn-anm:hover {
	color: #fff;
}


.bottom-heading-info .btn-anm:before {
	background:#4447AC;
}

.bottom-heading-info .btn-anm:hover {
	color: #fff;
	border-color: #4447AC;
}
.btn-anm.v2:before {
	background: #4447AC;
}
.btn-anm.v2:hover {
	color: #fff;
}

.slick-prev,
.slick-next {
	overflow: hidden;
}
.btn-dv {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}


.donate-btn.btn-anm.v2:before,
.donation-info .btn-anm.v2:before {
	top: 150px;
}
.donate-btn.btn-anm.v2:hover:before,
.donation-info .btn-anm.v2:hover:before {
	top: 0;
}

header.sticky .bottom-header-content.v-2 {
	padding-left: 0;
}



.reply-btn.btn-anm.v2:before,
.submit-btn .btn-anm.v2:before {
	top: 160px;
}
.reply-btn.btn-anm.v2:hover:before,
.submit-btn .btn-anm.v2:hover:before {
	top: 0;
}









@media (min-width: 992px) {
  .slider, .slide {
    height: 80vh;
  }
}

.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.banner-slide img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.main-banner .animated {
  transition: all 0.5s ease;
}


.main-banner [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}



/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  transition: 1s;
}


.slick-prev:before{
    content: '\f104';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28.34px;
    height: 16.2px;
    transform: translate(-50%,-50%);
    font-family: 'FontAwesome';
}

.slick-next:before{
	content: '\f105';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28.34px;
    height: 16.2px;
    transform: translate(-50%,-50%);
    font-family: 'FontAwesome';
}

.progress-col.v-2 .progress-bar{
	border-radius: 10px;
}

.health-sec.m-b .progress-col .progress-bar{
	border-radius: 10px;
}



/* Tanzeem */

.crowd.financial-ways.v-2.heading{ text-align:left !important;}

.block.v-2.agf,
.crowding-section.agf{
    padding-bottom: 0px;
	padding-top: 50px;
}

.health-service strong{ font-weight:bold;}




.accordion-button:not(.collapsed) {
    color: #fff;
    background-color:#2a2d93;
  
}

.crowd.financial-ways.heading.v-2 h2{max-width: initial;}

.crowd .card .list-group.list-group-flush .list-group-item strong {font-weight: bold; color:#2a2d93;}




.core-values .slick-slide img { display: block; text-align: center; margin: auto; }
.core-values .service-info p{line-height:20px; color:#000; font-size:12px;}
.Join .about-content p{padding-bottom:20px; line-height:24px;}





.slider-contant p{color:#fff;}


.working-info {
  padding: 40px 40px 40px;
}


.card {
  background: #d7d5d5;
}



.block.v-3 {
  background: #2a2d93 ;
}



.block.v-3 .event-content.v-2 {
	
  border: 2px solid #ccc;
}



.sec-tittle span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  height: 20px;
  background-image: url(../images/shape1.png);
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateX(-50%);
}


.baba-saheb-signature {
  text-align: center;
  font-size: 18px;
  font-weight: bold; padding:20px 40px 0 40px; line-height:30px;
 
}

.donate .dropdown:hover .dropdown-menu {
      display: block; margin-left:10px; 
      margin-top: 0; /* Remove gap between button and menu */
}

 #fadeText {
    
    opacity: 0;
     transition: opacity 2.5s ease-in-out; /* slower transition */
  }


*------------------- 4.12. Service  -------------------*/
.service-style1 {
  padding: 40px;
  background-color: var(--white-color);
  box-shadow: 0px 16px 47px rgba(78, 111, 178, 0.07);
  border-radius: 5px;
  position: relative;
  transition: all ease 0.4s;
  overflow: hidden;
  margin: 0 0 30px 0;
}
.service-style1 .service-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--smoke-color);
  border-radius: 50%;
  margin: 0 0 28px 0;
}
.service-style1 .service-text {
  margin: 0 0 20px 0;
}
.service-style1 .service-title a {
  color: var(--title-color);
  transition: all ease 0.3s;
  position: relative;
  z-index: 3;
}
.service-style1 .service-number,
.service-style1 .link-btn,
.service-style1 .service-icon,
.service-style1 .service-text {
  position: relative;
  z-index: 3;
  transition: all ease 0.4s;
}
.service-style1 .service-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transform: scale(1.15);
}
.service-style1 .service-number {
  line-height: 1;
  color: rgba(14, 89, 242, 0.1);
  font-size: 60px;
  font-weight: 700;
  font-family: var(--title-font);
  margin-top: 4px;
  opacity: 1;
  visibility: visible;
}
.service-style1 .service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 27px 0;
}
.service-style1 .service-top .service-icon {
  margin: 0;
}
.service-style1:hover {
  box-shadow: 0px 16px 47px rgba(14, 89, 242, 0.2);
  background-color: var(--theme-color);
}
.service-style1:hover .service-number {
  opacity: 0;
  visibility: hidden;
}
.service-style1:hover .service-icon {
  background-color: var(--white-color);
}
.service-style1:hover .link-btn,
.service-style1:hover .service-title a,
.service-style1:hover .service-text {
  color: var(--white-color);
}
.service-style1:hover .vs-btn {
  background-color: var(--white-color);
}
.service-style1:hover .service-bg {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.service-style1.layout2 {
  box-shadow: none;
  border: 1px solid #eaf2fe;
}
.service-style1.layout2:hover {
  box-shadow: 0px 16px 47px rgba(14, 89, 242, 0.2);
}
.service-style1.layout3 {
  box-shadow: none;
  border: 1px solid #ecf0f6;
  padding: 50px;
  border-radius: 0;
}
.service-style1.layout3 .service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.service-style2 {
  display: flex;
  align-items: center;
  margin: 0 0 30px 0;
}
.service-style2 .service-img {
  width: 160px;
  position: relative;
  background-color: var(--smoke-color);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}
.service-style2 .service-img img {
  border-radius: 5px;
}
.service-style2 .service-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--theme-color);
  background-color: var(--white-color);
  text-align: center;
  border-radius: 5px 0;
  position: absolute;
  left: 0;
  top: 0;
}
.service-style2 .service-title {
  margin: 0 0 10px 0;
}
.service-style2 .service-title a {
  color: var(--title-color);
  transition: all ease 0.4s;
}
.service-style2 .service-text {
  margin: 0 0 12px 0;
}
.service-style2 .service-content {
  flex: 1;
  position: relative;
  border-radius: 5px;
  padding: 31px 40px 30px 130px;
  margin: 0 0 0 -105px;
  transition: all ease 0.4s;
  overflow: hidden;
  background-color: var(--white-color);
}
.service-style2 .service-content > * {
  position: relative;
  z-index: 1;
  transition: all ease 0.4s;
}
.service-style2 .service-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  transition: all ease 0.4s;
  transform: scale(1.1);
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.service-style2:hover .service-text,
.service-style2:hover .service-title a,
.service-style2:hover .link-btn {
  color: var(--white-color);
}
.service-style2:hover .service-content {
  border-color: transparent;
}
.service-style2:hover .service-shape {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.service-style3,
.service-tb8 {
  text-align: center;
  margin: 15px 15px 20px 15px;
  position: relative;
}
.service-style3 .service-img img,
.service-tb8 .service-img img {
  width: 100%;
}
.service-style3 .service-icon,
.service-tb8 .service-icon {
  display: block;
  width: var(--icon-size, 120px);
  height: var(--icon-size, 120px);
  line-height: calc(var(--icon-size, 120px) - var(--icon-shape, 10px) * 2);
  text-align: center;
  background-color: var(--smoke-color);
  border: 10px solid var(--white-color);
  margin: 0 auto 15px auto;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.service-style3 .service-title,
.service-tb8 .service-title {
  margin: 0;
}
.service-style3 .service-title a,
.service-tb8 .service-title a {
  color: inherit;
}
.service-style3 .service-text,
.service-tb8 .service-text {
  margin: 0 0 15px 0;
  color: #bed4ff; line-height: 33px;
}
.service-style3 .service-content,
.service-tb8 .service-content {
  padding: 0 30px 37px 30px;
}
.service-style3 .service-front,
.service-tb8 .service-front {
  transform: rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 900;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: var(--white-color);
  box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.17);
  border-radius: 5px;
}
.service-style3 .service-front .service-icon,
.service-tb8 .service-front .service-icon {
  margin-top: calc(var(--icon-size, 120px) / -2);
}
.service-style3 .service-back,
.service-tb8 .service-back {
  z-index: 1000;
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme-color);
  border-radius: 5px;
  overflow: hidden;
}
.service-style3 .service-back .service-content,
.service-tb8 .service-back .service-content {
  padding: 30px 30px 60px 30px; min-height: 440px;
}
.service-style3 .service-back .service-icon,
.service-tb8 .service-back .service-icon {
  background-color: var(--theme-color);
}
.service-style3 .service-back .service-icon img,
.service-tb8 .service-back .service-icon img {
  filter: brightness(0) invert(1);
}
.service-style3 .service-back .service-title,
.service-tb8 .service-back .service-title {
  color: var(--white-color);
  margin: 0 0 10px 0;
}
.service-style3 .service-back .link-btn,
.service-tb8 .service-back .link-btn {
  color: var(--white-color);
}
.service-style3:hover .service-front,
.service-tb8:hover .service-front {
  z-index: 900;
  transform: rotateY(180deg);
  box-shadow: none;
}
.service-style3:hover .service-back,
.service-tb8:hover .service-back {
  z-index: 1000;
  transform: rotateX(0deg) rotateY(0deg);
}

.service-style4 {
  background-color: var(--theme-color);
  padding: 40px 45px 45px 45px;
  margin-bottom: 30px;
}
.service-style4 .service-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #6486ff;
  margin-bottom: 25px;
}
.service-style4 .service-title {
  color: var(--white-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}
.service-style4 .service-title a {
  color: inherit;
}
.service-style4 .service-title a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.service-style4 .service-btn {
  font-size: 24px;
  color: var(--white-color);
}
.service-style4 .service-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}
.service-style4 .service-text {
  color: #beccff;
  margin-bottom: 28px;
}
.service-style4 .service-img {
  overflow: hidden;
}
.service-style4 .service-img img {
  width: 100%;
  transition: all ease 0.4s;
  transform: scale(1);
}
.service-style4:hover .service-img img {
  transform: scale(1.16);
}

.service-style5 {
  margin-bottom: 30px;
}
.service-style5 .service-img {
  margin-bottom: 28px;
  border-bottom: 7px solid var(--theme-color);
  overflow: hidden;
}
.service-style5 .service-img img {
  width: 100%;
  transition: all ease 0.4s;
  transform: scale(1);
}
.service-style5 .service-text {
  margin-bottom: 25px;
}
.service-style5 .service-title {
  margin-bottom: 15px;
}
.service-style5 .icon-btn, .service-style5 .hero-layout4 .slick-arrow, .hero-layout4 .service-style5 .slick-arrow {
  background-color: #dbe2fc;
  border-radius: 50%;
}
.service-style5 .icon-btn:hover, .service-style5 .hero-layout4 .slick-arrow:hover, .hero-layout4 .service-style5 .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.service-style5:hover .service-img img {
  transform: scale(1.1);
}

.service-style6 {
  text-align: center;
  margin: 0 0 30px 0;
  position: relative;
  background-color: var(--white-color);
  box-shadow: 0px 15px 15px 0px rgba(78, 111, 178, 0.07);
  padding: 40px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.service-style6 .service-img img {
  width: 100%;
}
.service-style6 .service-icon-box {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 24px auto;
  position: relative;
}
.service-style6 .service-icon {
  display: block;
  width: var(--icon-size, 80px);
  height: var(--icon-size, 80px);
  line-height: calc(var(--icon-size, 90px) - var(--icon-shape, 10px) * 2);
  text-align: center;
  background-color: var(--smoke-color);
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.service-style6 .service-icon:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -10px);
  top: var(--extra-shape, -10px);
  right: var(--extra-shape, -10px);
  bottom: var(--extra-shape, -10px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--theme-color);
  animation: spin 13s infinite linear;
}
.service-style6 .service-title {
  margin-bottom: 10px;
}
.service-style6 .service-title a {
  color: inherit;
}
.service-style6 .service-text {
  margin: 0 0 20px 0;
  color: rgb(135, 141, 151);
}
.service-style6 .service-content {
  padding: 0 30px 37px 30px;
}
.service-style6 .box-shep {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  transition: all 0.4s ease;
}
.service-style6:hover {
  background-color: #0e59f2;
}
.service-style6:hover .service-title {
  color: var(--white-color);
}
.service-style6:hover .service-text {
  color: rgb(190, 212, 255);
}
.service-style6:hover .service-icon::before {
  border-color: var(--white-color);
}
.service-style6:hover .box-shep {
  z-index: -1;
}

.service-list-box {
  background-color: var(--smoke-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 40px;
}
.service-list-box .title {
  margin: 0 0 27px 0;
}
.service-list-box .list-style3 li:last-child {
  margin-bottom: 2.5px;
}

.service-tab-menu {
  display: flex;
  margin: 0 0 60px 0;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.service-tab-menu .btn-img {
  display: block;
  width: 120px;
  height: 120px;
  line-height: 100px;
  background-color: var(--smoke-color);
  border: 10px solid var(--white-color);
  border-radius: 50%;
  margin: -60px auto 30px auto;
  transition: all ease 0.4s;
}
.service-tab-menu .btn-img img {
  filter: none;
  transition: all ease 0.3s;
}
.service-tab-menu .btn-title {
  display: block;
  margin: 0 0 6px 0;
  color: var(--title-color);
  transition: all ease 0.4s;
}
.service-tab-menu .btn-text {
  color: var(--body-color);
  transition: all ease 0.4s;
  display: block;
}
.service-tab-menu .nav-link {
  border: none;
  flex: 1;
  max-width: 300px;
  display: inline-block;
  text-align: center;
  margin: 60px 0 0 0;
  padding: 0 0 38px 0;
  background-color: var(--white-color);
  box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.17);
  border-radius: 5px;
  min-width: 210px;
  transition: all ease 0.4s;
}
.service-tab-menu .nav-link.active, .service-tab-menu .nav-link:hover {
  background-color: var(--theme-color);
  box-shadow: 0px 6px 15px rgba(14, 90, 242, 0.18);
}
.service-tab-menu .nav-link.active .btn-title, .service-tab-menu .nav-link:hover .btn-title {
  color: var(--white-color);
}
.service-tab-menu .nav-link.active .btn-text, .service-tab-menu .nav-link:hover .btn-text {
  color: #bed4ff;
}
.service-tab-menu .nav-link.active .btn-img, .service-tab-menu .nav-link:hover .btn-img {
  border-color: #f6f7fa;
  background-color: var(--theme-color);
}
.service-tab-menu .nav-link.active .btn-img img, .service-tab-menu .nav-link:hover .btn-img img {
  filter: brightness(0) invert(1);
}

.service-shape1 {
  position: absolute;
  left: 120px;
  right: 120px;
  top: 0;
  height: 100%;
  max-height: 454px;
  background-color: #f6f7fa;
  z-index: -1;
}

.service-shape2 {
  position: absolute;
  text-align: center;
  width: 100%;
}

.service-sidebar .widget_nav_menu a::before,
.service-sidebar .widget_meta a::before,
.service-sidebar .widget_pages a::before,
.service-sidebar .widget_archive a::before,
.service-sidebar .widget_categories a::before {
  content: "\f061";
  color: var(--body-color);
}
.service-sidebar .widget_nav_menu a:hover:before,
.service-sidebar .widget_meta a:hover:before,
.service-sidebar .widget_pages a:hover:before,
.service-sidebar .widget_archive a:hover:before,
.service-sidebar .widget_categories a:hover:before {
  color: var(--theme-color);
}




.service-icon img {
  display: inline !important;
}

.service-title.h6 {
  font-size: 20px;
  font-weight: bold;
}



.about-us p {
  color: #000;
  font-family: 'Karla', sans-serif;
  line-height: 30px;
}


.service-box {background: #2a2d93 url(../images/pattarn.png) center center;}
 h2 {font-size: 2rem;}

.ltn__first-letter {  font-size: 70px;  font-weight: 700;  float: left;  background-color: #2a2d93;  color:#fff;  margin-right: 30px;  line-height: 1;  text-transform: uppercase;  width: 100px;  height: 100px;  display: -webkit-box;  display: -ms-flexbox;  display: flex;  -webkit-box-align: center;  -ms-flex-align: center;  align-items: center;  -webkit-box-pack: center;  -ms-flex-pack: center;  justify-content: center;}

.bestservices {padding: 0px 0 0px; text-transform: uppercase; }
.service-box .media-body {color: #fff; font-size: 22px;}
.bestservices h2 {font-weight: 500;  padding: 10px 10px 0px 0px; line-height: 40px; text-align:left;} .mission h2 {color: #fff;} .bestservices.mission h2 span {color: #FFCF00;}




.pb-100{ padding-bottom:100px;}.pb-90{ padding-bottom:90px;}.pb-80{ padding-bottom:80px;}.pb-70{ padding-bottom:70px;}.pb-60{ padding-bottom:60px;}.pb-50{ padding-bottom:50px;}.pb-40{ padding-bottom:40px;}.pb-30{ padding-bottom:30px;}.pb-20{ padding-bottom:20px;}.pb-10{ padding-bottom:10px;}
.pt-100{ padding-top:100px;}.pt-90{ padding-top:90px;}.pt-80{ padding-top:80px;}.pt-70{ padding-top:70px;}.pt-60{ padding-top:60px;}.pt-50{ padding-top:50px;}.pt-40{ padding-top:40px;}.pt-30{ padding-top:30px;}.pt-20{ padding-top:20px;}.pt-10{ padding-top:10px;}
.mt-100{ margin-top:100px;}.mt-90{ margin-top:90px;}.mt-80{ margin-top:80px;}.mt-70{ margin-top:70px;}.mt-60{ margin-top:60px;}.mt-50{ margin-top:50px;}.mt-40{ margin-top:40px;}.mt-30{ margin-top:30px;}.mt-20{ margin-top:20px;}.mt-10{ margin-top:10px;}
.mb-100{ margin-bottom:100px;}.mb-90{ margin-bottom:90px;}.mb-80{ margin-bottom:80px;}.mb-70{ margin-bottom:70px;}.mb-60{ margin-bottom:60px;}.mb-50{ margin-bottom:50px;}.mb-40{ margin-bottom:40px;}.mb-30{ margin-bottom:30px;}.mb-20{ margin-bottom:20px;}.mb-10{ margin-bottom:10px;}


.about-us  .list-group-item{border:none;}

.service-box .media p {font-size: 16px; color: #fff; margin-bottom: 20px; font-weight: 300; line-height: 24px; text-align: justify;}


.about-us p {
  color: #000;
  font-family: 'Karla', sans-serif;
  line-height: 30px;
}


/*Accordion*/
.accordion .ui-accordion-header {
  margin: 10px 0 0 0;
  background-color: #0062cc;
  color: #fff;
  border: 1px solid #403837;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  padding: 11px 10px 10px 5px;
  letter-spacing: 1px;
  position: relative;
  text-align: left; }
  .accordion .ui-accordion-header .ui-icon {
    display: none; }
  .accordion .ui-accordion-header i {
    margin-left: 10px;
    margin-right: 10px; }
  .accordion .ui-accordion-header:first-child {
    margin-top: 0; }
  .accordion .ui-accordion-header:after {
    font-family: 'Pe-icon-7-stroke';
    content: "\e688";
    color: #b3b3b3;
    font-size: 1.6875rem;
    height: 8px;
    width: 8px;
    display: block;
    position: absolute;
    right: 26px;
    top: 2px; }

.accordion .ui-state-active {
  background-color: #11163f;  color: #fff;  -webkit-border-radius: 2px 2px 0 0;  border-radius: 2px 2px 0 0;  border: none; }
  .accordion .ui-state-active:after {content: "\e682"; color: #fff;}
.accordion .ui-accordion-content {background-color: #f8f8f8;  border: 1px solid #dfdfdf;  border-top: none;  padding: 15px 20px 15px 20px;}
.accordion .ui-accordion-content p {color: #5c5c5c; margin-top: 0; font-size: 14px; line-height: 23px;}
.single-wcus-icon,.single-wcus-text {float: left;}
.single-wcus {float: left;	width: 100%;}
.single-wcus:hover .single-wcus-icon {background-color: #333;}
.single-wcus:hover .single-wcus-icon:before {border-bottom-color: #333;}
.single-wcus:hover .single-wcus-icon:after {border-top-color: #333;}
.single-wcus-icon {	margin: 17px 30px 0 0;	position: relative;	width: 70px; height: 38px;	background-color: #11163f;	-webkit-transition: all 1.5s ease .1s;
	-moz-transition: all 1.5s ease .1s;	-ms-transition: all 1.5s ease .1s;	-o-transition: all 1.5s ease .1s;	transition: all 1.5s ease .1s;}
.about-bg .accordion-body {line-height: 24px;}
.chapters p{ line-height:24px;}
.chapters h2{padding:20px 0;}
.agf-galley .event-content.v-2{width: 100%;}
.embed-responsive-item {width: 100%; height: 100%; min-height:250px;}
.block .accordion-body {line-height:24px;}
.accordion-body strong{font-weight:bold;}
.block  .accordion-button {font-weight: 600;}
.banner-faq{background-image: url(../images/faq.jpg);}
.block.seeds-peace .event-style-info{max-width:inherit;}
.block.seeds-peace .democracy-sec h3{line-height:40px; text-transform:uppercase;}
.block.seeds-peace .event-sec .event-style-contant {  background: #f9f9f9;}
.block.seeds-peace .list-group-item{background: #f9f9f9;}
.block.seeds-peace .list-group-item {background: #f9f9f9; padding: 20px;}
.Every-Month {background:#f58b03; font-weight:bold; text-align: center; margin-top: 30px; padding: 20px 0 4px 0;}
.Every-Month p{font-weight:bold;} .past-event .local-solicitors-content.v2 p{padding-right: 0px;} .past-event .local-solicitors-content.v2 {
  padding: 0 15px 0px 15px;} .image-column .inner-column {  position: relative;  padding: 30px;  border-radius: 8px;  background-color: #ffffff;  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);} .image-column .inner-column .image {position: relative;} .image {display: block;  width: 100%;  height: auto;} .inner-column .image img {  position: relative;  display: inline-block;  border-radius: 5px;  width: 100%;}

.block.v-4 {background: #F4F4F4;} .content-column .inner-column {position: relative;}
.content-column .inner-column h2 {position: relative; color: #111111; font-weight: 700; margin: 0;}
.content-column .inner-column p {position: relative; color:#626262;  font-weight:400; line-height:1.9em; font-size: 16px; margin-top: 20px;
  margin-bottom: 35px;}
.image-column .team-content h3 {position: relative;  font-weight: 700;  color: #111111; margin-top: 30px; margin-bottom: 10px;}
.image-column .team-content .text {position: relative;  color: #626262;  font-size: 16px;  line-height: 1.7em;  margin-bottom: 8px;}
.event-info:hover .event-img img {transform: scale(1.05) rotate(1deg);}
.news-resources .local-solicitors-content.v-2 .paragrafh{padding-right: 0;} .news-resources .funders-sec .local-solicitors-content.v-2 { padding: 54px 15px 39px 15px;} .about-us.useful-links .list-group-item{border:1px solid #ccc;} .useful-links .list-group-item{padding:15px 0 15px 15px; line-height:30px;}
.useful-links .list-group-item .fa-solid.fa-arrows-to-dot{ margin-right:10px;}
.useful-links h4{ font-weight:600;}


.mt-10 { margin-top: 10px !important;} .mt-15{ margin-top: 15px !important;} .mt-20{ margin-top: 20px !important;} .mt-25{ margin-top: 25px !important;} .mt-30{ margin-top: 30px !important;} .mt-35{ margin-top: 35px !important;} .mt-40{ margin-top: 40px !important;} .mt-45{ margin-top: 45px !important;} .mt-50{ margin-top: 50px !important;} .mt-60{ margin-top: 60px !important;} .mt-65{ margin-top: 65px !important;} .mt-70{ margin-top: 70px !important;} .mt-80{ margin-top: 80px !important;} .mt-90{ margin-top: 90px !important;} .mt-100{ margin-top: 100px !important;}
.mt-160{ margin-top: 160px !important;} .mt_10{ margin-top: -10px!important;} .mt_15{ margin-top: -15px!important;} .mt_25{ margin-top: -25px!important;} .mt_30{ margin-top: -30px!important;} .mt_35{ margin-top: -35px!important;}
.mt_40{ margin-top: -40px!important;} .mt_50{ margin-top: -50px !important;} .mt_60{ margin-top: -60px !important;} .mt_70{ margin-top: -70px !important;} .mt_80{ margin-top: -80px !important;} .mt_90{ margin-top: -90px !important;} .mt_100{ margin-top: -100px !important;}
.mt_120{ margin-top: -120px !important;} .mt_140{ margin-top: -140px !important;} .mt_150{ margin-top: -150px !important;} .mt_160{ margin-top: -160px !important;} .mt_170{ margin-top: -170px !important;} .mt_180{ margin-top: -180px !important;} .mt_190{ margin-top: -190px !important;}
.mt_200{ margin-top: -200px !important;} .mt_220{ margin-top: -220px !important;} .mt_240{ margin-top: -240px !important;}
.mb-10{ margin-bottom: 10px !important;} .mb-15{ margin-bottom: 15px !important;} .mb-25{ margin-bottom: 25px !important;} .mb-20{ margin-bottom: 20px !important;} .mb-30{ margin-bottom: 30px !important;} .mb-35{ margin-bottom: 35px !important;} .mb-40{ margin-bottom: 40px !important;}
.mb-45{ margin-bottom: 45px !important;} .mb-50 { margin-bottom: 50px !important;} .mb-60 { margin-bottom: 60px !important;}
.mb-65 { margin-bottom: 65px !important;} .mb-70 { margin-bottom: 70px !important;} .mb-80 { margin-bottom: 80px !important;}
.mb-90 { margin-bottom: 90px !important;} .mb-100 { margin-bottom: 100px !important;} .mb_10{ margin-bottom: -10px !important;}
.mb_15{ margin-bottom: -15px !important;} .mb_20{ margin-bottom: -20px !important;} .mb_25{ margin-bottom: -25px !important;} .mb_30{ margin-bottom: -30px !important;} .mb_50{ margin-bottom: -50px !important;} .mb_60{ margin-bottom: -60px !important;} .mb_70{ margin-bottom: -70px !important;}
.mb_80{ margin-bottom: -80px !important;} .mb_90{ margin-bottom: -90px !important;} .mb_100{ margin-bottom: -100px !important;} .mb_120{ margin-bottom: -120px !important;} .mb_140{ margin-bottom: -140px !important;} .ml-0{ margin-left: 0px !important} .ml-10{ margin-left: 10px !important} .ml-15 { margin-left: 15px!important;}.ml-30{ margin-left: 30px !important;}.ml-40{ margin-left: 40px !important;}
.ml-50{ margin-left: 50px !important;}.ml-80{ margin-left: 80px !important; } .ml-100{ margin-left: 100px !important;} .ml-145{ margin-left: 145px !important;} .ml-160{ margin-left: 160px !important;} .ml_10 { margin-left: -10px!important;} .ml_15 { margin-left: -15px!important;} .ml_20 { margin-left: -20px!important;} .ml_25 { margin-left: -25px!important;} .ml_30{ margin-left: -30px !important;} .ml_35{ margin-left: -35px !important;} .ml_40{ margin-left: -40px !important;} .ml_50{ margin-left: -50px !important;} .ml_60{ margin-left: -60px !important;} .ml_70{ margin-left: -70px !important;} .ml_80{ margin-left: -80px !important;} .ml_90{ margin-left: -90px !important;} .ml_100{ margin-left: -100px !important;} .ml_110{ margin-left: -110px !important;} .ml_130{ margin-left: -130px !important;} .ml_150{ margin-left: -150px !important;} .mr-0{ margin-right: 0px !important;} .mr-10{ margin-right: 10px !important;} .mr-15 { margin-right: 15px!important;} .mr-20{ margin-right: 20px !important;} .mr-25{ margin-right: 25px !important;} .mr-30{ margin-right: 30px !important;} .mr-40{ margin-right: 40px!important;} .mr-50{ margin-right: 50px!important;}.mr-60{ margin-right: 60px!important;} .mr_10 { margin-right: -10px!important;} .mr_15 { margin-right: -15px!important;} .mr_20{ margin-right: -20px !important;} .mr_25{ margin-right: -25px !important;} .mr_30{ margin-right: -30px !important;} .mr_40{ margin-right: -40px!important;} .mr_50{ margin-right: -50px!important;} .mr_60{ margin-right: -60px !important; } .mr_70{ margin-right: -70px !important; } .mr_80{ margin-right: -80px !important;} .mr_90{ margin-right: -90px !important;} .mr_100{ margin-right: -100px !important;} .mr_130{ margin-right: -130px !important;} .mr_150{ margin-right: -150px !important;} .mr_160{ margin-right: -160px !important;} .mr_180{ margin-right: -180px !important;} .mr_200{ margin-right: -200px !important;} .mr_240{ margin-right: -240px !important;}




.container-fluid.resources .col-lg-6{padding:0px 15px;}
.container-fluid.resources  .card {background: #f1f1f1;}

.resources .local-solicitors-content{
	border: 2px solid #E7E7E7; border-radius: 10px 10px 10px 10px; padding: 15px 26px 10px 26px;
	position: relative;	                                           
}



.resources .text-bg-primary,
.resources .card-link.btn.btn-primary{ background:#4447AC !important;}

.news-articles .supporters-content.v-2 > p {
 
  max-width: inherit;
}
.rightpanel .widget {padding:var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);	background-color:#EFF1F5;	position:relative;
	margin-bottom:20px;	border:6px}
.rightpanel  .widget select, .widget input {height:58px; border:none; padding-left:20px; font-weight:400}
.rightpanel  .widget_title {position:relative;font-size:24px;font-weight:700;line-height:1em;margin:-0.07em 0 35px 0;font-family:var(--title-font)
}
.rightpanel  .widget .search-form {	position:relative;	display:flex}
.rightpanel  .widget .search-form input {flex:1}
.rightpanel  .widget .search-form button {
	border:none;	color:var(--white-color);	height:55px;	width:55px;	line-height:55px;	font-size:17px}
.rightpanel  .widget .search-form button:hover {color:var(--white-color)}



.widget  .h5, h5 {font-size: 24px;}
.widget h5{text-transform:none;	font-weight:700; line-height:1.5; margin:0 0 15px 0; 	font-family:var(--title-font);}
.join-agf.blocks-section .container{max-width:1120px;}

.join-agf .booking-aria.v-2 select {height: 59px; line-height: 42px;  width: 100%; padding-left: 30px; }
.booking-aria input[type="checkbox"] {width: 30px;  height: 30px; line-height: 10px;  border-radius: 0px;  accent-color: #007bff;  cursor: pointer;  padding: 10px;  margin: -8px 10px 0 0;
 
}
.last-line2 {font-size: 14px !important; font-weight: 300 !important; padding: 30px 0 0 11px;}
.widget-newsletter .last-line2 i {font-size: 25px; color: #4447AC; padding:0px 10px 0 0; margin-top:10px;}

/* Add inverted commas to every quote */
.baba-saheb-signature::before {  content: "“";  font-size:30px; font-family: 'Roboto', sans-serif;}

.baba-saheb-signature::after {content: "”"; font-size:30px; font-family: 'Roboto', sans-serif;}
.baba-saheb-signature {font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; text-transform:uppercase;}


.hover-content h2{color:#fff; font-weight:600; font-size:20px; }
.hover-content h5{color:#f58b03; font-weight:600; font-size:16px; }
.hover-content p{color:#fff; font-weight:400; font-size:14px; line-height:24px; }

.donate-btn-agf {background-color: #F58B03; color: #ffff; align-items: center; font-weight: 700; font-size: 15px; border-radius: 5px;
  height: 50px;  padding: 12px 20px; width: 150px; text-align:center; display:block; margin-top:10px;}
.agf-h h2{font-size:18px; font-weight:600; color: #f58b03;}
.agf-h h3{font-size:16px; font-weight:700;}
.agf-h h4{font-size:14px; font-weight:700;}
.about-us strong{font-weight:bold;}



.registration-btn {
  background-color: #4447AC;
  color: #ffff;
  font-weight: 700;
  font-size: 15px;
  margin-left: 10px;
  border-radius: 5px;
  padding: 15px 30px;
  margin:30px auto 0;
  display:block; width:auto;
 
}

