body {
	padding:94px 0px 0px;
	margin: 0px;
	font-size: 16px;
	font-family: "Work Sans", sans-serif !important;
    overflow-x: hidden;
    backgrond:unset !important;
}

* {
	margin: 0px;
	padding: 0px;
	transition: 0.3s;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

ol,
ul {
	margin: 0px;
/* 	list-style: none; */
}

.mt-20 {
	margin-top: 20px;

}

.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mt-62{
  margin-top: 62px;
}
.mt-40{
 margin-top: 40px;
}
/***Font Size/Color***/
.text-62 {
	font-size: 62px;
	line-height: 70px;
}

.text-56 {
	font-size: 56px;
}
.text-46{
 font-size: 46px;
}

.text-40 {
	font-size: 40px;
}
.text-34{
 font-size: 34px;
}
.text-32 {
	font-size: 32px;
}
.text-28 {
 font-size: 28px;
}
.text-26 {
	font-size: 26px;
}

.text-24 {
	font-size: 24px;
	line-height: 32px;
}

.text-22 {
	font-size: 22px;
}

.text-20 {
	font-size: 20px;
	line-height: 30px;
}

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

.text-15 {
	font-size: 15px;
}
.text-14{
	font-size: 14px;
}

.text-primary {
	color: #282828 !important;
}

.text-secondary {
	color: #656565 !important;
}
.leading-36{
	line-height: 36px;
}
.leading-28{
	line-height: 28px;
}

/***Font Family***/
.font-bree {
	font-family: "bree", sans-serif;
}

.font-soleil {
	font-family: "soleil", sans-serif;
}

/***Font Weight***/
.font-weight-600 {
	font-weight: 600;
}

.font-weight-300 {
	font-weight: 300;
}
.font-weight-500 {
	font-weight: 500;
}
.font-weight-bold{
 font-weight: bold;
}
/***Buttons***/
.primary-btn {
	padding: 18px 24px;

	color: #fff !important;
	background-color: #41B6E6;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: none;
	font-family: "bree", sans-serif;
	font-weight: 700;
	font-style: normal;
	display: inline-flex;
	position: relative;
	overflow: hidden;
	transition: 0.3s; 
	border: 1px solid #41b6e5;
}

.primary-btn span {
	z-index: 2;
}

.primary-btn:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #5ba8dc;
	top: 0;
	left: -100%;
	transition: 0.3s;
}

.primary-btn:hover:after {
	left: 0%;
}
.primary-btn:hover{
    border-color:#5ba8dc;
}
.btn-bg-red{
	background-color: #FF0000;
	border: 1px solid #FF0000;
}
.btn-bg-red::after{
	background-color: rgba(240, 0, 0, 1);
}
.btn-bg-red:hover{
	border-color: rgba(240, 0, 0, 1);}

.bg-red{
	background-color: #FF0000;
}
.back-btn span svg {
    transform: rotate(90deg);
}
.purple-bg{
 background-color:#9933FF;
}
.btn-purple{
	border: 1px solid #9933FF;
	color: #9933FF !important;
	background-color: #fff;
}
.btn-bg-purple{
    background-color:#9933FF;
    border-color: #9933FF;
}
.btn-bg-purple::after{
    background-color: #8a36f5;
}
.btn-bg-purple:hover{
   border-color: #8a36f5;  
}

.btn-purple::after{
	background-color: #9933FF;
}
.bth-bg-yellow{
    background-color: #FFFF00 !important;
    border-color: #FFFF00 !important;
    color: #282828 !important;
}
.bth-bg-yellow:after{
    background-color: #F4F400 !important;
}
.bth-bg-yellow:hover{
    border-color: #F4F400 !important;
}
.btn-bg-pink{
     background-color:#FF33CC;
    border-color: #FF33CC !important;
}
.btn-bg-pink::after{
     background-color:#f029be;
} 
.btn-purple:hover{
	color: #fff !important;
}

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

.mt-130 {
	margin-top: 110px;
}

.radius-20 {
	border-radius: 20px;
}
.radius-16{
	border-radius: 16px;
}
.italic{
	font-style: italic;
}
.z-index-2{
	z-index: 2;
}
.cursor-pointer{
	cursor: pointer;
}
/**Header css start here**/

.mega-menu {
      display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    background: #fff;
    top: 94px;
    border-top: 1px solid #EFEFEF;
} 

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mega-menu-header{
    margin-bottom: 50px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mega-menu-title {
    font-family: "bree", sans-serif;
    font-size: 30px;
    margin: 0 !important;
    color: #282828;
}
.mega-col ul li{
        display: block;
    margin: 12px 0;
}

.mega-col ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #656565;
    position: relative;
    padding-left: 15px;
}

.mega-col ul li a::after {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #41B6E6;
    content: "";
    top: 8px;
    border-radius: 100%;
    left: 0px;
}
.mega-col ul {
    padding: 0;
}
.mega-col ul li a:hover {
    color: #41B6E6;
}

.header-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    background: #fff;
    top: 0;
	height: 94px;
	    box-shadow: 0px 3px 20px #0000000B;

}
.header-middile-wrap{
	height: 94px;
}
.header-right-wrap {
	gap: 24px;
}

header ul li{
	position: relative;
	height: 100%;
	display: flex;
}

header ul li a {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
	color: #282828;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

header ul li a:hover {
	color: #535353;
}

header ul li a span img {
	width: 9px;
}

header ul li a span {
    display: flex
;
    height: auto;
}

.sub-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    width: 287px;
    background: #fff;
    box-shadow: 0px 3px 6px #0000000D;
    padding: 6px 28px 13px;
    left: -40px;
    top: 100%;
	border: 0px;
    border-top: 1px solid #EFEFEF;
	display: none;
}

.sub-menu li a{
 font-size: 16px;
 font-weight: 300;
 color: #656565;
 position: relative;
 padding-left: 15px;
}
.sub-menu li a:hover{
	color: #41B6E6;
}
.sub-menu li a::after{
	    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #41B6E6;
    content: "";
    top: 8px;
    border-radius: 100%;
    left: 0px;
}
.sub-menu li {
    display: block;
    margin: 15px 0;
}
.open-dropdown-menu{
	display: block !important;
}
.menu-item-has-children::after, .mega-menu-programs::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url(../images/down-arrow-menu.svg);
    top: 41px;
    right: -22px;
    background-size: 10px;
    background-repeat: no-repeat;
}

.bubble-design::after {
	content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-image: url(../images/red-bubble-top-left.svg);
    top: 41px;
    left: -78px;
    background-size: 130px;
    background-repeat: no-repeat;
}
.purple-bubble::after{
background-image: url(../images/purple-bubble-left.svg);
}

.bubble-bottom-left::after{
	bottom: 40px;
	top: auto;
}


.bubble-right::after {
	left: auto;
	right: -78px;
	 background-image: url(../images/red-bubble-top-right.svg);
}
.purple-bubble-right::after{
 background-image: url(../images/purple-bubble-right.svg);
}
.bubble-right-bottom::after{
	top: auto;
	bottom: 50px;
}

.search-wrap span {
	width: 22px;
	display: inline-block;
	cursor: pointer;
}

.donate-link {
	gap: 10px;
}
.site-logo img {
    width: 148px;
}


.search-container {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 999;
    width: 300px;
}
div#search-container form {
    display: flex
;
    align-items: center;
    justify-content: space-between;
}
.search-container.active {
  display: block;
} 
.search-form input.search-field {
    border: 0;
    padding: 8px 22px;
    width: 100%;
    background: #f6f6f6;
    border-radius: 8px;
    height: 58px;
    font-size: 16px;
    font-weight: 300;
}
div#search-container form label {
    width: 100%;
}
.search-form button.search-submit {
  border: none;
  background: none;
  color: #333;
  cursor: pointer; 
}

.mega-thumb {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.mega-thumb a{
    width: 100%;
    height: 100%;
    display: block;
}
.mega-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.mega-col {
    position: relative;
}
.mega-icon.mb-2 {
    position: absolute;
    top: -20px;
    left: -10px;
}
/**Header css end here**/

.home-banner {
	height: 78vh;
}

.home-banner .slick-dotted.slick-slider,
.slick-list,
.slick-track {
	margin-bottom: 0;
	height: 100%;
}

.home-slide-image {
	height: 100%;
	object-fit: cover;

}

.slide-data-inner {
	max-width: 620px;
}

.slide-data {
	background-color: rgba(0, 0, 0, 0.4);
}

.slide-data-inner p {
	font-style: italic;
	line-height: 39px;
}

.banner-design-pattren {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 400px;
}

.slick-dots {
	bottom: 44px;
}


 .slick-dots li button {
	width: 15px;
	height: 15px;
	border-radius: 100%;
	border: 1px solid #fff;
	transition: 0.3s;
}

.slick-dots li {
	width: auto;
	height: auto;
}

.slick-dots li.slick-active button {
	width: 35px;
	border-radius: 20px;
	background-color: #ff0000;
	border-color: #ff0000;
}

 .slick-dots li button::before {
	display: none;
}

 .slick-next {
	right: 40px;
	left: auto;
	background-image: url(../images/arrow-right-with-bg.svg) !important;
	
}

.slick-prev {
	left: 40px;
	right: auto;
	background-image: url(../images/arrow-left-with-bg.svg) !important;
}
.slick-arrow::before{
	display: none;
}
 .slick-arrow{
	width: 62px;
	height: 62px; 
	background-size: 62px;
	background-repeat: no-repeat;
	z-index: 2;
}

.philosophy_info-data h4{
font-family: "bree", sans-serif;
color: #282828 !important;
font-weight: 600;
font-size: 20px;
}
.philosophy_info-data{
	margin: 34px 0px 48px; 
}
.philosophy_info-data ul{
padding: 0px 0px 0px 15px;
display: flex;
flex-direction: column;
gap: 10px;
}

.philosophy_info-data ul li {
    list-style: disc;
}
.philosophy_info-data p {
    line-height: 28px;
}

.small-container {
	max-width: 1260px;
	margin: 0 auto;
	width: 100%;
}


.services-hold {
	gap: 40px;
}

.our-services {
	background-color:#f5f5f5;
	background-image: url(../images/services-bg.svg);
	background-size: cover;
}

.services-hold {
	margin-top: 62px;
	 grid-template-columns: repeat(4, 1fr);
}
.grid-col-3{
	grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
	    grid-template-columns: repeat(4, 1fr);
}
.grid-col-5{
     grid-template-columns: repeat(5, 1fr);
}

.services-list {
	width: 100%;
    text-align: center;
    background-color: #63b4e1;
    
    height: 293px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-size: 100%;
    background-repeat: no-repeat;
	background-position: bottom;
}
.services-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 10px;
	    
}

.our-services .services-list:first-child{
background-image: url(../images/secondary-school-services-bg.svg);
    background-position: top;
}

.our-services .services-list:nth-child(2){
	background-color:#9933FF;
background-image: url(../images/rto-services-bg.svg);
}


.our-services .services-list:nth-child(3){
	background-color:#FF33CC;
background-image: url(../images/youth-services-bg.svg);
}

.our-services .services-list:nth-child(4){
	background-color:#31E4C5;
background-image: url(../images/oosh-services-bg.svg);
}


.sec-with-left-img {
	gap: 75px;
}

.img-wrap {
	width: 674px;
}

.data-info-wrap {
	width: 639px;
}

.help-icon img {
	width: 62px;
	height: 62px;
	min-width: 46px;
	min-height: 46px;
	
}

.help-data-wrap {
	margin-top: 60px;
}

.help-items {
	gap: 28px;
	border-bottom: 1px solid rgba(239, 239, 239, 1);
	padding: 40px 0;
}

.help-items:first-child {
	padding-top: 0px;
}

.help-items:last-child {
	padding-bottom: 0px;
	border-bottom: 0px;
}

.help-data p {
	margin: 9px 0px 24px;
	line-height: 28px;
}

.snapshot-data {
	padding: 54px 80px 60px 0;
}

.snapshot-data::after {
	content: "";
	position: absolute;
	top: 0px;
	left: -96px;
	background-color:#fdf5fd;
	width: 130%;
	height: 100%;
	border-radius: 68px;
}

.snapshot-data::before {
	    content: "";
    position: absolute;
    bottom: -78px;
    left: 30px;
    background-image: url(../images/snapshot-after-border.png);
    width: 90px;
    height: 78px;
    background-size: 100%;
	
}

.snapshot-wrap .img-wrap {
	z-index: 2;
}

.snapshot-data p {
	font-style: italic;
	margin: 34px 0px;
	line-height: 36px; 
}

.quote-icon {
	width: 50px;
	margin-bottom: 40px;
}

.counter-icon {
	width: 60px;
	position: relative;
}
.counter-icon::after{
	width: 27px;
    height: 27px;
    background-color: rgba(65, 182, 230, 0.1);
    position: absolute;
    border-radius: 100%;
    content: "";
    left: -6px;
    top: -5px;
}

.count-data-hold {
	margin: 10px 0;
}

.counter-repeat {
	border-right: 1px solid #f2f2f2;

}

.counter-repeat:last-child {
	border: 0px;
}

.count-area-content {
	max-width: 247px;
	margin: 0 auto;
}

.count-title {
	line-height: 28px;
}

.get-involved-sec {
    background-color: #fcf9ff;
}
.get-involved-data{
	gap: 40px;
}
.get-involved-data .card-img{
	height: 328px;
}
.get-involved-data .card-img img{
	height: 100%;
	object-fit: cover;
}
.card-img img{
   object-fit: cover; 
}
.get-involved-inner-data:after {
       position: absolute;
    content: "";
    width: 51px;
    height: 51px;
    background: #31E4C5;
    bottom: -71px;
    right: -200px;
    border-radius: 100%;
}
.get-involved-sec .small-container::before{
 position: absolute;
    content: "";
    width: 42px;
    height: 42px;
    background: #31E4C5;
    top: 0px;
    left:-70px;
    border-radius: 100%;
}

.get-involved-sec .small-container::after{
     position: absolute;
    content: "";
    width: 37px;
    height: 37px;
    background: #9933FF;
    bottom: 0px;
    right: -100px;
    border-radius: 100%;
}


.card-wrap {
    box-shadow: 0px 20px 60px #0000000A;
}
.card-data{
	padding: 40px;
}
.card-img {
   
    overflow: hidden;
}
.card-wrap:hover .card-img img{
 transform: scale(1.1);
}
.box-shadow-none{
	box-shadow: none;
}

.link-with-arrow:hover{
	color: rgba(40, 40, 40, 0.8) !important;
}
.link-arrow {
    width: 9px;
    position: relative;
    top: 1px;
}
.link-with-arrow:hover .link-arrow{
 transform: rotate(-45deg);
}
.card-wrap:hover  .link-arrow{
     transform: rotate(-45deg);
}

.card-wrap:hover .card-img-overlay{
display:block !important;
}

.card-img-overlay{
	background-color: rgba(0, 0, 0, 0.2);
}
.sec-overlay{
	background-color: rgba(0, 0, 0, 0.3);
}
.wide-banner{
 max-width: 100%;
 margin: auto;
}

.upcoming-events-sec{
	background-size: cover;
	background-position: center center;
	min-height: 800px;
	padding: 107px 0;
}
.upcoming-events-sec .sec-overlay::after{
	content: "";
	position: absolute;
	width: 623px;
	background-image: url(../images/upcoming-event-pattern.svg);
	background-size: 623px;
	top: 0px;
	left: 0px;
	height: 667px;
}

.upcoming-event-left {
    max-width: 430px;
}

.upcoming-event-left p {
    font-style: italic;
    margin-top: 30px;
}
.blog-cards-wrap .card-img{
	height: 375px;
}
.blog-cards-wrap .card-img img{
	object-fit: cover;
}
.gap-40{
 gap: 40px;
}
.post-date{
	color: #96999B;
}
.blog-cards-wrap .card-wrap:nth-child(5n+1) .category-wrap {
  color: #9933FF;
}

.blog-cards-wrap .card-wrap:nth-child(5n+2) .category-wrap {
  color: #FF33CC;
}

.blog-cards-wrap .card-wrap:nth-child(5n+3) .category-wrap {
  color: #FF0000;
}

.blog-cards-wrap .card-wrap:nth-child(5n+4) .category-wrap {
  color: #31E4C5;
}

.blog-cards-wrap .card-wrap:nth-child(5n+5) .category-wrap {
  color: #41B6E6;
}


.img-card-hold {
    grid-template-columns: repeat(3, 1fr);
}
.tab-listing-wrap {
    border: 0px;
    gap: 56px;
}
.nav-tabs .nav-link {
    border: 0;
    font-size: 16px;
    line-height: 28px;
    color: #96999B;
    padding: 0px 0 14px;
	position: relative;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #282828;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    font-weight: 600;
    font-family: "bree", sans-serif;
    border: 0;
}

.nav-tabs  .nav-link.active::after{
	position: absolute;
	content: "";
	width: 80%;
	height: 4px;
	border-radius: 10px;
	bottom: 0px;
	background-color: #FF0000;
	left: 0px; 
    right: 0px;
    margin: 0 auto;
}
.design-patrren {
    position: absolute;
    width: 124px;
    right: -135px;
    z-index: 0;
    top: -70px;
}
.donate-sec{
	margin-bottom: 120px;
}
.donate-sec-inner {
    background-color: #63b4e1;
	/* background-image: url(../images/donate-sec-bg.svg); */
	background-size: cover;
    padding: 0 80px;
	min-height: 420px;
}

.donate-ptrn-desing-1 {
    width: 124px;
    top: 37px;
    left: 43%;
}
.donate-ptrn-desing-2 {
    bottom: 48px;
    left: 44%;
    z-index: 1;
    width: 88px;
}
.donate-sec-img {
    width: 650px;
    margin-top: -32px;
}
.donate-sec-text {
    width: 487px;
    padding-bottom: 80px;
}


.round-circle {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    top: 100px;
    right: -2px;
}
.round-circle-1 {
    width: 22px;
    height: 22px;
    top: 191px;
    right: 31px;
}

/***About css****/
.inner-pages-banner{
 height:60vh;
 min-height: 640px;
 background-size: cover;
     background-position: center center;
}

.about-team-grid .category-wrap{
 color: #41B6E6;
}
.about-team-grid .card-data {
    padding: 20px;
}
.about-team-grid .card-img{
 height: 425px;
}
.about-team-grid .card-img img{
	object-fit: cover;
}


/* Timeline slider */
.timeline-slider {
  display: flex;
  overflow: hidden;
  padding-left: 15px; /* keep inside container on left */
  margin-right: calc(-50vw + 50%); /* break out full-width on right */
}

.timeline-slider .slick-arrow.slick-disabled {
    display: none !important;
}

/* Progress bar wrapper */
.timeline-progress {
  position: relative;
  height: 4px;
  background: rgba(239, 239, 239, 1);
  margin: 0 auto !important;

  max-width: 1400px ; 
  
}

/* Actual bar */
.timeline-progress .progress-bar {
  height: 4px;
  background: red;
  width: 0%;
  transition: width 0.4s ease;
}


.timeline-slider {
  margin-top: 50px;
  margin-bottom: 50px;
}
.timeline-item {
  padding: 20px;
}
.timeline-item .year {
     text-align: center;
    font-weight: 600;
    margin-bottom: 80px;
    font-size: 18px;
    font-family: "bree", sans-serif;
    position: relative;
}
.timeline-item .year:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: rgba(65, 182, 230, 1);
    border-radius: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -40px;
}
.timeline-item .content-card h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 26px;
    font-weight: 600;
    color: rgba(40, 40, 40, 1);
    font-family: "bree", sans-serif;
}

.timeline-item  .content-card p {
    color: rgba(101, 101, 101, 1);
    line-height: 28px;
    font-weight: 300;
    margin: 0;
}

.timeline-item .content-card {
      background: rgb(255 0 0 / 7%);
    padding: 50px;
    border-radius: 8px;
}

.timeline-item {
    opacity: 0.6;
}
.timeline-item.slick-active{
	opacity: 1;
}

.timeline-progress {
  position: relative;
  height: 4px;
  background: #eee;
  margin-left: 0;   /* left side aligned with container */
  margin-right: -100px; /* right side extends outside container */
  overflow: hidden;
}
.timeline-progress .progress-bar {
  height: 4px;
  background: red;
  width: 0%;
  transition: width 0.4s ease;
}

.timeline-slider .slick-track:before {
    display: table;
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 80px;
    width: 100%;
    background: rgba(239, 239, 239, 1);
	    left: 5.4%;
}


section.page-divider {
        margin: 110px auto 0px;
   
    background-position: top;
    background-size: cover;

   
    height: 665px;
   
}

.page-divider h3{
	    margin: 0px !important;
    max-width: 788px;
    line-height: 48px;
}
.page-divider-pattren {
    top: -70px;
}

.story-slider{
	margin: 0px !important;
	z-index: 2;
}
.story-slider .slick-dots li button{
 border-color: #ff0000;
}


.story-slider .slick-dots {
    bottom: -21px;
    text-align: right;
}


.partner-slider .slick-arrow {
    width: 40px !important;
    height: 40px !important;
    background-size: 40px !important;
    background-repeat: no-repeat;
    z-index: 2;
}
.partner-slider .slick-prev{
	left: -50px;
}

.partner-slider .slick-next{
	right: -50px;
}
.logo-slide-item img.logo-image {
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}
.ways-tabs-sec .container{
	border-bottom: 1px solid #EFEFEF;
    padding-bottom:60px;
}
.information-tabs .container{
 padding-bottom: 0px;
 border: 0px;
}
.card-icon {
    width: 87px;
}
.card-with-icon .card-data .card-icon {
    margin-bottom: 36px;
}


.card-bg-sec {
	background-color:#f5f5f5;
	background-image: url(../images/services-bg.svg);
	background-size: cover;
}
.cards-wrapper{
	gap: 50px;
}
.cards-wrapper .card-data{
	padding: 65px 50px;
}
.card-with-icon{
	position: relative;
	transition: 0.3s;
	top: 0px;
}

.card-with-icon:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 8px;
    background: #ff0000;
    bottom: 0;
    left: -100%;
	transition: 0.3s;
}
.card-with-icon:hover::after{
	left: 0%;
}
.card-with-icon:hover{
	top: -15px;
}

.services-sub-post-sec{
    background-color: #f6fbfe;
    background-image: url(../images/backgrounds-4.svg);
    background-size: cover;
}

.services-sub-post-wrap .card-img {
    height: 295px;
}
.snapshot-ways-sec{
	background-color: #f8f5fe;
	 background-image: url(../images/services-bg.svg);
	  background-size: cover;
}

.sec-work-ways .bubble-right-bottom::after{
	bottom: 110px;
}
.sec-work-ways .help-items{
	border: 0px;
	padding: 20px 0px;
}

.sec-work-ways .help-items .help-icon img{
    min-width: 62px;
}
.full-testimonials-sec {
    background-color: #f2f9fd;
	background-image: url(../images/backgrounds-4.svg);
    background-size: cover;
}
.full-testimonials-sec .slick-dots {
    bottom: -10px;
}
.full-testimonials-sec .slick-dots li button{
    border: 1px solid #9933FF;
}
.full-testimonials-sec .slick-dots li.slick-active button{
 border: 1px solid #9933FF;
 background-color:#9933FF ;
}

.full-testimonials-sec .slick-dots li button{
    border: 1px solid #9933FF;
}
 
.inner-page-reviews-slide .slick-dots li.slick-active button{
 border: 1px solid #ff0000;
 background-color:#ff0000 ;
}
.inner-page-reviews-slide .slick-dots li button{
     border: 1px solid #ff0000; 
}

.full-testimonials-sec .quote-icon{
	margin-bottom: 50px;
}
.testimo-reviews-slide{
 padding: 40px;
}
.testimo-slide-name {
    margin-top: 50px;
}
.testimo-slide-inr {
    padding: 40px 80px;
    box-shadow: 0px 20px 60px #0000000A;
}

.sec-sch-program-grid .card-data {
    padding: 30px;
}

.icon-left-data-right .icon-left {
    width: 70px;
    min-width: 70px;
}

.information-tabs .tab-pane h3{
        font-family: "bree", sans-serif;
        font-weight: 600;
        font-size: 30px;
            color: #282828 !important; 
            margin-bottom: 30px;
}
.custom-table table{
 width: 100%;
}

.custom-table table th {
    background: #41B6E6;
    padding: 16px 20px;
    color: #fff;
    font-family: "bree", sans-serif;
    font-weight: bold;
    font-size: 18px;
}

.custom-table tr td:nth-child(2) {
    width: 290px;
}
.custom-table td b {
    font-weight: 600;
}
.custom-table td {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 300;
    vertical-align: top;
}
.custom-table tr td:first-child {
    width: 130px;
}

.custom-table {
    border-radius: 20px 20px 0 0px;
    overflow: hidden;
}

.custom-table tbody tr:nth-child(even) {background-color:rgb(65 182 230 / 10%);}
.purple-theme .nav-tabs .nav-link.active::after{
        background-color: rgba(153, 51, 255, 1);
}
.pad-30{
 padding: 30px;
}

.list-ui ul {
    padding: 20px 0px 0 ;
    gap: 0px; 
}

.list-ui ul li {
    color: #656565;
    margin: 0 0 10px 0;
    font-weight: 300;
    position: relative;
    padding-left: 26px;
    list-style: none;
}
.list-ui ul li::after {
    content: "";
    position: absolute;
    width: 13px;
    background-size: 13px;
    top: 9px;
    left: 0;
    background-image: url(../images/check-list.svg);
    height: 10px;
    background-repeat: no-repeat;
}

.helpfull-resources-sec {
    background: rgb(65 182 230 / 8%);
    padding-bottom: 280px;
}
.page-bottom-sec {
    margin-top: -150px;
}
.download-chip {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.04);
}
.download-chip-left {
    display: flex
;
    align-items: center;
    gap: 20px;
}
.download-chip-left h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: "bree", sans-serif;
}
.format-icon {
    min-width: 26px;
}
.page-bottom-sec .donate-sec-inner{
       padding: 40px 35px 40px 67px;
    background-image: url(../images/step-sec-bg.svg);
    background-size: 620px;
    background-repeat: no-repeat;
        background-position: 13px -12px;
}
.page-bottom-sec .donate-sec-text{
 padding-bottom: 0px;
     width: 567px;
}
.page-bottom-sec .donate-sec-img{
    width: 510px;
}

.page-bottom-sec .round-circle {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    top: -160px;
    left: 43%;
}

.page-bottom-sec .round-circle-1 {
    width: 28px;
    height: 28px;
    top: 41px;
    right: 0;
    left: auto;
}
.object-fit-cover{
    object-fit: cover;
}
.what-make-different-sec{
        background-color: #fbf9ff;
    background-image: url(../images/backgrounds-6.svg);
    background-size: cover;
}
.what-make-different-sec .card-img{
 height: 415px;
}
.makes-different-wrap .card-data p {
    margin: 0;
}


.sec-boxes-left-data{
    width: 650px;
}
.sec-boxes-right-data {
    width: 540px;
}
.program-wrapper {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 30px;
      max-width:100%;
      margin: auto;
    }

    /* Left column = stacked boxes */
    .program-left {
      display: flex;
      flex-direction: column;
      gap: 30px;
      flex: 1;
    }

    /* Right column = centered box */
    .program-right {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
    }

    .program-card {
      background: #F5FBFE;
      padding: 30px;
      text-align: left;
      transition: all 0.3s ease;
    }

   

    .program-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 25px;
    }


  .program-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #282828;
    font-family: "bree", sans-serif;
}

.program-card p {
    color: #656565;
    margin: 0;
    line-height: 26px;
    font-weight: 300;
}
.parent-data-box {
    max-width: 607px;
    padding-bottom: 50px;
}
.services-other-info-data h2 {
    margin-bottom: 40px;
}
.services-other-info-wrap .our-philosophy-wrap:nth-child(odd) {
    flex-direction: row-reverse;
}
.services-other-info-wrap {
    display: flex
;
    flex-direction: column;
    gap: 50px;
}
.services-other-info-data p{
    font-weight: 300;
    color: #656565;
    line-height: 28px;
}
.services-other-info-data.list-ui ul {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    font-weight: 600;
}
.services-other-info-data.list-ui ul li{
    font-weight: 600;
    color: #282828;
}
  .pb-280{
    padding-bottom: 280px;
  }  
.what-you-will-learn-sec .small-container::before{
    position: absolute;
    content: "";
    width: 75px;
    height: 75px;
    background: #9933FF;
    top: -30px;
    left: -130px;
    border-radius: 100%;
}
.what-you-will-learn-sec .sec-boxes-left-data::after{
 position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    background: #9933FF;
    bottom: -50px;
    right: -10px;
    border-radius: 100%;
}

.pink-bg {
    background: #FF33CC; 
}


.youth-spt-left {
    width: 328px;
}
.youth-spt-mid {
    width: 620px; 
}
.access-inner-wrap {
    background: #282828;
    padding: 100px 50px;
    margin-top: -180px;
}
.access-left-sec {
    width: 555px;
}
.icon-box {
    background: rgba(255, 255, 255, 10%);
    padding: 35px;
    border-radius: 12px;
}

.access-inner-wrap::after{
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-image: url(../images/pattren-yellow-right.svg);
    top: 41px;
    right: -78px;
    background-size: 130px;
    background-repeat: no-repeat;
}


.access-inner-wrap::before{
   content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(../images/logo-pat-yellow.svg);
    bottom: 0px;
    left: -70px;
    background-size: 130px;
    background-repeat: no-repeat;
    transform: rotate(15deg);
}
.faq-section .container{
    max-width: 917px;
}
.accordion-item {
    border: 1px solid rgba(255, 51, 204, 1) !important;
    padding: 20px;
    border-radius: 12px !important;
    margin: 20px 0;
}
button.accordion-button {
    font-size: 18px;
    font-family: "bree", sans-serif;
    color: #282828;
    margin: 0;
    padding: 3px;
    box-shadow: none;
    outline: none;
}
.accordion-button::after {
    background-image: url(../images/icon-plus-pink.svg) !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon-minu-pink.svg) !important;
    transform: rotate(0deg);
}
.accordion-button::after{
    width: 44px;
    height: 44px;
    background-size: 44px;
}
button.accordion-button:focus{
    outline: none;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: #282828;
    background-color: unset;
    box-shadow: unset;
}
.accordion-body {
    padding: 20px 0;
}
.accordion-body p {
    margin: 0;
}
.pink-theme .full-testimonials-sec{
 background-color:#fef8fd;
     background-image: url(../images/backgrounds-7.svg);
}

.pink-theme .inner-page-reviews-slide .slick-dots li.slick-active button {
    border: 1px solid #FF33CC;
    background-color: #FF33CC;
}
.pink-theme  .full-testimonials-sec .slick-dots li button {
    border: 1px solid #FF33CC;
}
.what-youth-service-offer .small-container::after{
      content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-image: url(../images/pattren-yellow-right.svg);
    top: -49px;
    left: -138px;
    background-size: 130px;
    background-repeat: no-repeat;
}
.yellow-bubble-design::after{
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background-image: url(../images/pattren-yellow-right.svg);
    top: -40px;
    left: -50px;
    background-size: 110px;
    background-repeat: no-repeat;
}
.accordion-body .accordion-item {
    padding: 0 !important;
    border: 0px !important;
    margin: 0px;
}

.icon-div {
    width: 70px;
    margin-bottom: 33px;
}

/***Footer css***/
.site-footer {
    padding: 80px 0 0;
    background: #282828;
}
.footer-logo {
    width: 164px;
}
.social-media a {
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #FF0000;
    border-radius: 100%;
}
.social-media{
	gap: 10px;
}
.footer-info {
    max-width: 814px;
	line-height: 30px;
	
}
.footer-top {
  
    padding-bottom: 80px;
}
.footer-items-repeat {
    width: 221px;
} 
.middle-footer {
	  border-top: 1px solid rgba(255, 255, 255, 0.2);
	  border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.middle-footer, .footer-bottom{
 padding: 80px 0;
}
.footer-list-data ul{
	list-style: none;
	padding: 0px;
}
.footer-list-data li{
	margin-bottom: 10px;
	position: relative;
	
}

.footer-list-data ul li a {
    font-size: 15px;
    color: #fff;
    
	position: relative;
	display: block;
	padding-left: 15px;
}

.footer-list-data li a:after{
 position: absolute;
 width: 5px;
 height: 5px;
 background-color: rgba(255, 255, 255, 0.2);
 content: "";
 top:9px;
 border-radius: 100%;
 left: 0px;
} 
.footer-items-repeat h3 {
    margin-bottom: 26px;
}
.info-repeat p{
	line-height: 28px;
}
.footer-list-data .info-repeat:last-child {
    margin-bottom: 0px !important;
}
.footer-items-repeat.footer-office-address {
    width: 334px;
}
.footer-location-tab-wrap  h3{
	opacity: 0.4;
}
.footer-location-tab-wrap  h3.active{
	opacity: 1;
}
.footer-location-tab-wrap  h3.active:after{
	width: 55px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
	position: absolute;
	content: "";
	bottom: -9px;
	left: 0;
	right: 0px;
	margin: 0 auto;
}

*:focus{outline: none}

.input-control {
    height: 73px;
    border-radius: 8px;
    background: #EFEFEF;
    padding: 20px;
    width: 534px;
    border: 0;
	font-size: 14px;
	color: #656565;
}
.submit-btn {
    width: 73px;
    height: 73px;
    border-radius: 8px;
    background: #41B6E6;
    color: #fff;
    padding: 3px;
    position: absolute;
    right: 0;
    border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0px;
}
.submit-btn img {
    width: 20px;
}
.newsletter-info {
    width: 460px;
	line-height: 29px;
}
.copyright-wrap{
	padding:20px 15px;
	text-align: center;
	background-color: #222222;
	font-size: 14px;
}
.submit-btn br {
    display: none;
}
.wpcf7-response-output {
    color: #fff;
    font-size: 14px;
    margin: 0px !important;
    background: #ffb900;
    font-weight: 500;
    border-radius: 50px;
}
.newsletter-input-wrap span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
    bottom: -21px;
    left: 20px;
}
.how-wehelp-sec {
    background-color: #FF33CC;
    padding: 40px 0;
    color: #fff;
        background-image: url(../images/elements-20.svg);
        background-size: cover;
}
.how-we-help-pattren-design {
    right: 10px;
    top: -70px;
}
.how-wehelp-sec .icon-left-data-right {
    margin-bottom: 15px;
}
.col-2-grid {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
} 
.how-we-help-left {
    width: 60%;
}
.how-we-help-right {
    width: 470px;
}
.issue-sec-pattren-design {
    top: 110px;
    left: -80px;
    transform: rotate(11deg);
    width: 111px;
}
.pink-check-list ul li:after{
    background-image: url(../images/check-list-pink.svg);
}
.talk-sec{
     background-image: url(../images/elements-20.svg) !important;
    background-size: cover !important;
    background-position: unset !important;
}
.bottom-sec-pattren-design {
    bottom: 0;
    left: -83px;
    width: 111px;
}
.talk-sec.yellow-bubble-design::after {
    width: 80px;
    height: 80px;
    top: 20px;
    left: -40px;
    background-size: 80px;
}
.evening-list-sec::after {
    right: 0;
    left: auto;
    width: 90px;
    background-size: 90px;
}
ul.page-numbers {
    display: flex;
    gap: 13px;
    justify-content: center;
}
ul.page-numbers li .page-numbers {
    width: 54px;
    display: flex
;
    height: 54px;
    border-radius: 8px;
    border: 1px solid #41B6E6;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #282828;
}
.page-numbers.current {
    background: #ff0000;
    border-color: #ff0000 !important;
    color: #fff !important;
}
.event-listing-wrap .bubble-design::after{
    width: 100px;
    height: 100px;
    top: -130px;
    left: -58px;
    background-size: 100px;
}
.event-bottom-patter-design {
   top: auto;
    right: -110px;
    transform: rotate(-66deg);
    bottom: -60px;
}


.event-dates-wrap {
    background: #41B6E6;
    padding: 40px;
    margin-bottom: -40px;
    border-radius: 16px;
    box-shadow: 0px 3px 50px #0000000A;
    gap: 40px;
    min-width: 700px; 
    justify-content: center;
}


.event-info-repeat:after {
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.2);
    position: absolute;
    top: 0;
    left: 107%;
}

.event-info-repeat {
    position: relative;
}

.event-info-repeat:last-child::after{
    display: none;
} 
.program-source-sec{
        background-color: rgb(65 182 230 / 16%);
    background-image: url(../images/services-bg.svg);
    background-size: cover;
}
.icon-top-data-bottom .icon-left img {
    width: 80px;
    height: 80px;
}
.event-program-sec .help-data-wrap{
    margin-top: 40px;
}
ul#sessionTabs {
    border: 0;
    background: #eaf6fc;
    border-radius: 12px;
        display: flex
;
    flex-wrap: nowrap;
}
ul#sessionTabs li {
    width: 100%;
}
ul#sessionTabs li button {
    width: 100%;
    border-radius: 12px;
    background: unset;
    border: 0px !important;
}
ul#sessionTabs .nav-link.active::after{
    display: none;
}
ul#sessionTabs li button.active {
    background: rgba(65, 182, 230, 1);
    color: #fff;
}
ul#sessionTabs li button strong {
    font-size: 18px;
    font-weight: 600;
    color: rgba(40, 40, 40, 1);
    font-family: "bree", sans-serif;
}
ul#sessionTabs li button span {
    color: rgba(65, 182, 230, 1);
}
ul#sessionTabs li button.active strong, ul#sessionTabs li button.active span{
    color: #fff;
}
.session-block{
    border-radius: 12px;
    overflow: hidden;
}

.session-block:nth-child(odd) .list-group-item {
    background-color: #fff;
}
.session-block:nth-child(even) .list-group-item {
    background-color: #eaf6fc;
}
.session-schedule .list-group-item{
    border-radius:0px !important;
        border: 0;
        padding: 30px;
}
.session-description-wrap {
    padding: 30px;
    border: 0;
    background: #f9f9f9;
    border-radius: 0px;
}
.session-schedule .list-group button {
    width: 44px;
    height: 44px;
    font-size: 20px;
    background: #ff0000 !important;
    border-color: #ff0000 !important;
    outline: none !important;
    box-shadow: none !important;
}
.event-sec-list-info-sec {
    background: rgba(65, 182, 230, 1);
      background-image: url(../images/backgrounds-12.svg);
      background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.event-sec-info-inner ul li{
    font-weight: 600;
    color: #fff;
}
.event-sec-info-inner ul li:after{
    background-image: url(../images/check-list-white.svg);
}
.common-faqs .accordion-item{
    border-color: rgba(65, 182, 230, 1) !important;
}
.common-faqs .accordion-button::after {
    background-image: url(../images/icon-plus.svg) !important;
}

.common-faqs .accordion-button::after {
    background-image: url(../images/icon-plus.svg) !important;
}
.common-faqs .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon-minus.svg) !important;
    transform: rotate(0deg);
}
.boxwithbgimg-andtext{
    height: 586px;
}
._margin-150{
    margin-top: -150px;
}
.bottom-patter-ui {
    right: -50px;
    bottom: -50px;
}
.about-bottom-design-patter {
    left: 0;
    top: -170px;
    transform: rotate(-55deg);
}
.position-absolute.bottom-patter-ui.about-ab-2 {
    width: 60px;
    bottom: -70px;
    right: -60px;
}
.left-mid {
    top: 50%;
    left: -78px;
}
.rto-service-hold {
    display: flex
;
    flex-direction: column;
    gap: 50px;
}
.rto-service-hold .card-data {
    width: 694px;
}
.rto-service-hold .card-img {
    width: 600px;
    height: 500px;
}
.why-choose-rto {
    background-color: #f8f8f8;
    background-image: url(../images/rto-sec-bg.svg);
    background-size: cover;
        background-position: right;
}
.rto-reviews{ 
        background-color: #fbf7ff;
    background-image: url(../images/bg-9.svg); 
}

.rto-revies-info {
    width: 360px;
    padding-left: 40px;
    position: relative;
}
.rto-revies-info:after {
   content: "";
   width: 5px;
   height: 100%;
   top: 0px;
   left: 0px;
   background-color:#9933FF;
   border-radius: 8px;
   position: absolute;
}
.patter-desing-top-left {
    left: -111px;
    top: -79px;
    transform: rotate(25deg);
}

.rto-service-hold .patter-desing-top-left {
    z-index: 2;
    transform: rotate(72deg);
}
.rto-why-choos-patter-ui {
    top: -30px;
    right: 10%;
}
.path-data-wrap {
    margin: 30px 0;
}
.rto-course-offered h5 {
    font-size: 16px;
    margin: 0;
}
.course-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 0;
}
.course-check-icon {
    min-width: 18px;
}

.patway-info {
    width: 600px;
}

.rt-path-way-items .icon-top-data-bottom {
    position: relative;
    padding: 30px 0 50px 0;
}

.rt-path-way-items .icon-top-data-bottom:after{
   content: "";
    height: 1px;
    background-color: #e3e2e2;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
}    
.rt-path-way-items .icon-top-data-bottom:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #9933FF;
    border-radius: 100%;
    bottom: -5px;
    z-index: 2;
    left: 0;
}

.rt-path-way-items .icon-top-data-bottom:last-child::after{
    display: none;
}
.path-way-asset {
    position: absolute;
    top: -120px;
}
.rto-inner-reviews-asset {
    left: -90px;
}
.rto-services-inner-info .our-philosophy-wrap:nth-child(odd) {
    flex-direction:unset;
}

.rto-services-inner-info .our-philosophy-wrap:nth-child(even) {
    flex-direction: row-reverse;
}
.table-purple-theme table th {
    background: #9a33ff;
}
.table-purple-theme tbody tr:nth-child(even) {
    background-color: rgba(153, 51, 255, 05%);
}

.purple-list-ui ul li::after {
    background-image: url(../images/check-list-purple.svg);
}
.blog-listing-data .card-img img{
    width: 100% !important; 
}
.blog-listing-data {
    gap: 70px;
}
.blog-listing-sec {
    padding: 60px 0 130px;
}
.category-filter-btn:after{
 display: none;
}
.category-filter-btn {
    height: 68px;
    border: 1px solid rgba(65, 182, 230, 1);
    border-radius: 8px;
    min-width: 161px;
    justify-content: center;
}
.category-filter-btn:focus{
    outline: none;
    box-shadow: none;
}
.search-form .input-control{
        background: #F4F4F4;
    width: 360px;
        height: 63px;
}

.search-form .primary-btn{
 right: 0px;
}
.blog-nav-wrap {
    position: absolute;
    bottom: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    left: 0px;
}
.blog-nav-inner {
    background: #282828;
    padding: 9px;
    border-radius: 12px;
        display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.blog-nav-inner a {
    font-size: 16px;
    font-weight: bold;
    font-family: 'bree';
    padding: 20px 50px;
    color: #fff;
    border-radius: 12px;
}
.blog-nav-inner a.active, .blog-nav-inner a:hover{
 background-color: #ff0000;
}
.blog-breadcrum-wrap {
    padding: 30px;
    background: #F8F8F8;
}
section.blog-detail-inner-data {
    padding: 70px 0 100px;
}
.blog-data-right {
    width: 378px;
}
.blog-data-left {
    width: calc(100% - 378px);
    padding-right: 100px;
}
.blog-big-img img{
    width: 100%;
}
.blog-big-img {
    margin-bottom: 50px;
}
.blog-detail-hold .category-wrap{
color: #9933FF;
}
.blog-mid-content{
    color: #656565 !important;
    line-height: 28px;
}
.blog-mid-content h3{
        font-family: "bree", sans-serif;
        font-weight: 600;
        font-size: 24px;
        color: #282828 !important;
        margin: 10px 0px;
}
.blog-mid-content img {
    width: auto;
    border-radius: 10px;
    margin: 10px;
}
.blog-mid-content ul li {
    list-style: disc;
    margin: 15px 0;
}
.blog-mid-content ul li::marker{
    color: #FF0000;
}
.blog-mid-content ul {
    padding-left: 15px;
}

.blog-video-wrap{
    margin:50px 0px;
}
.blog-quote-wrap {
    display: flex;
    gap: 40px;
}

.blog-quote-data {
    background: #ff33cc1a;
    padding: 30px;
    border-radius: 34px;
    text-align: left;
}

.blog-quote-wrap .quote-icon{
    min-width: 62px; 
    margin-top: 16px;
    margin-bottom: 0px;
}
.blog-tag-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
        border-top: 1px solid #e7e6e6;
    padding-top: 50px;
}
.tags-list-wrap span {
    border-radius: 6px;
    border: 1px solid #FF0000;
    padding: 10px;
    background: #FF000007;
    font-weight: bold;
    color: #282828;
}
.tags-list-wrap {
    display: flex
;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.tag-left-wrap h3 {
    font-size: 16px;
    line-height: 36px;
    font-weight: bold; 
    color: #282828;
}
.tag-right-wrap h3 {
    text-align: right;
    font-size: 16px;
    line-height: 36px;
    margin: 0 0 22px;
    font-weight: bold;
    color: #282828;
}

.share-social-media {
    display: flex
;
    gap: 20px;
}
.post-nav-wrap {
    display: flex
;
    justify-content: space-between;
    gap: 20px;
}

section.post-navigation-section {
    background: #282828;
    color: #fff;
    padding: 60px 0;
}
.post-nav-wrap .nav-item {
    width: 410px;
}
.post-nav-wrap .nav-item a {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    font-family: "bree", sans-serif;
    display: flex
;
    align-items: center;
    gap: 30px;
}
.post-nav-wrap .nav-item a .nav-icon {
    min-width: 60px;
}

.nav-item.next-post {
    text-align: right;
}
.category-listing ul li {
    list-style: disc;
}
.category-listing ul li::marker {
    color: #FF0000;
}
.category-listing ul li a {
    font-size: 15px;
    background: unset !important;
    padding: 0px 0 0 2px;
    margin: 9px 0;
}
.category-listing ul{
    padding-left: 15px;
}
.treand-artical-thumnail {
    width: 100px;
    min-width: 100px;
    border-radius: 10px;
    overflow: hidden;
}
.fundring-even-impt-sec{
    margin-top:100px !important;
}
.fundraising-events-list-wrap{
    background-color: #f5f5f5;
    background-image: url(../images/services-bg.svg);
    background-size: cover;
}
.event-date-location-hold p {
    margin: 8px 0px;
    color: #656565;
    font-weight: 300;
}
.event-date-location-hold p strong {
    color: #282828;
    font-weight: bold;
}
.bubble-bottm-left:after {
    bottom: -65px;
    top: auto;
    left: 20px;
}
.fundraising-events-design-patter {
    right: 6vw;
    top: auto;
    bottom: -50px;
    transform: rotate(-75deg);
}
.fundring-even-impt-sec{
    position: relative;
}

.fundring-even-impt-sec:before{
   position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: #9933FF;
    bottom: 0px;
    right: -100px;
    border-radius: 100%;
}

.fundring-even-impt-sec:after{
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: #31E4C5;
    bottom: -71px;
    right: -80px;
    border-radius: 100%;
}
.fundr-program-source-sec{
    background-color:#f5f5f5;
	background-image: url(../images/services-bg.svg);
	background-size: cover;
}
.voluneer-differ-way-sec{
   background-color:#f5f5f5;
	background-image: url(../images/services-bg.svg);
	background-size: cover;  
}
.fundr-who-com-sec{
   background-color: rgb(153 51 255 / 3%);
}
.fubdr-single-ul ul li{
    font-weight: 600;
    color: rgba(40, 40, 40, 1);
}
.fubdr-single-ul ul li::after{
   background-image: url(../images/check-list-red.svg); 
}
.fundr-single-bottom-sec:after{
    content: "";
    position: absolute;
    width: 500px;
    background-image: url(../images/upcoming-event-pattern.svg);
    background-size: 500px;
    top: 0px;
    left: 0px;
    height: 567px;
    background-repeat: no-repeat;
}
.funder-single-faq{
    position: relative;
}

.funder-single-faq::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    top: 70px;
    background-color: #FF33CC;
    border-radius: 100%;
    right: 10%;
}

section.sec-padding.why-part-ways {
    background: rgb(153 51 255 / 3%);
    padding-top: 300px;
    margin-top: -150px;
}
section.sec-padding.why-part-ways .sec-with-left-img {
    flex-direction: row-reverse;
}
.two-dotts-ui::after{
       position: absolute;
    content: "";
    width: 23px;
    height: 23px;
    background: #9933FF;
    top: 0px;
    right: -80px;
    border-radius: 100%;
}

.two-dotts-ui::before{
       position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: #31E4C5;
    top: 50px;
    right: -22px;
    border-radius: 100%;
}
.job-description {
  border-left: 3px solid #f44336;
  padding-left: 15px;
}
.hidden {
  display: none;
}
.get-started-box {
    width: 270px;
}
span.coint-box {
    width: 44px;
    height: 44px;
    background: #FF0000;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    font-weight: bold;
    position: absolute;
    bottom: -20px;
    z-index: 2;
}
.how-vol-get-started .rt-path-way-items .icon-top-data-bottom:after{
    height: 1px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    border-bottom: 2px dashed #5e5d5d;
    background-color: unset;
}
span.started-arrow-svg {
    position: absolute;
    top: 49%;
    right: 100px;
}
span.started-arrow-svg svg {
    width: 20px;
    height: 20px;
}
.how-vol-get-started .icon-top-data-bottom:last-child span.started-arrow-svg{
    display: none;
}
.how-vol-get-started .sec-overlay{
        background-color: rgba(0, 0, 0, 0.6);
}
.design-patrren.position-absolute.get-started-pat-ui {
    bottom: -48px;
    right: 1%;
    left: auto;
    top: auto;
}
.job-title.fw-semibold {
    color: #282828;
    font-family: "bree", sans-serif;
}

.job-title{
        font-family: "bree", sans-serif;
        font-size: 18px;
}
.job-type {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}
.job-type {
    color: #656565;
    font-size: 18px;
    line-height: 32px;
}
.job-type button {
    width: 40px;
    height: 40px;
    background: #FF0000 !important;
}
.job-type button {
    width: 40px;
    height: 40px;
    background: #FF0000 !important;
    font-size: 20px;
    line-height: 20px;
    border: 0px !important;
}
.job-item {
    background: #F5FBFE;
}
.job-item:nth-child(even) {
  background-color: #fff;
}
.job-description {
    background: #fff;
    border: 0px;
    padding: 10px 18px;
}
.lode-more-btn-wrap {
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2f2;
}
.vol-time-skill {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.vol-left {
    width: 357px;
}

.vol-img {
    width: 590px;
}
.skill-list {
    width: 300px;
}
.vol-left {
    width: 277px;
}
.skill-list {
    display: flex
;
    align-items: end;
}
.skill-list ul li {
    margin: 10px 0;
    font-weight: 500;
    color: #282828;
}
.skill-list ul {
    margin: 0;
    padding: 0;
}
.vol-img.position-relative.bubble-design.bubble-bottom-left:after {
    bottom: -80px;
    left: 30px;
}
.tab-img {
    position: absolute;
    width: 200px;
    bottom: -50px;
    left: 40px;
}
.ossh-cards-wrap{
    background-color:#fbf7ff;
    position: relative;
}
.ossh-cards-wrap:after {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background: rgba(255, 51, 204, 1);
    border-radius: 100%;
    bottom: -8px;
    right: 10%;
}
.oosh-service-info-wrap {
    display: flex
;
    flex-direction: column;
    gap: 60px;
}
.oosh-service-info-wrap .sec-with-left-img:nth-child(even) {
    flex-direction: row-reverse;
}
.oosh-service-info-data ul {
    margin: 0 0 40px;
    padding: 0;
}
.oosh-service-info-data ul li {
    font-weight: 600;
    color: #282828;
}
.oosh-service-info-data ul li::after{
    background-image: url(../images/check-list-pink.svg);
} 
.oosh-core-value-sec{
    background-color: #9933FF;
}
.key-feature-sec{
    background-color:#fef8fd;
}
.pink-theme .nav-tabs .nav-link.active::after{
    background-color: #FF33CC;
}
.resource-list ul li::after{
    background-image: url(../images/down-arrow-pink.svg);
        background-size: 9px;
    width: 9px;
    height: 9px;
}
.oosh-resources-sec{
    background-color: #fef8fd;
}
.bottom-sec {
    padding-top: 50px;
}

.box-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    background-size: cover;
    background-position: center;
}
.box-inner {
    background: rgba(153, 51, 255, 0.8);
    padding: 40px;
    height: 100%;
    display: flex;
    align-items: end;
}
.col-md-6.oosh-box-repeat:nth-child(2) .box-inner{
    background: rgba(255, 51, 204, 0.8);
}
.box-wrap a.primary-btn.bth-bg-yellow {
    color: #9933ff !important;
}

.col-md-6.oosh-box-repeat:nth-child(2) .box-inner a.primary-btn.bth-bg-yellow {
    color: #FF33CC !important;
}
.ooosh-bottm-ui-pat {
    right: -130px;
    top: -50px;
    z-index: 0;
}
.oosh-tab-wrap .bubble-design::after{
        background-image: url(../images/pattr-design-purple.svg);
}
.oosh-core-value-sec .icon-top-data-bottom:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    top: 0;
    left: 0;
    background: rgb(255 255 255 / 30%);
    top: 130px;
}
.oosh-core-value-sec .icon-top-data-bottom {
    position: relative;
}
.oosh-core-value-sec .data-right {
    max-width: 300px;
    margin: 0 auto;
}
.oosh-core-value-sec .icon-top-data-bottom:first-child::after{
    display: none;
}
.video-patter-ui {
    bottom: -38px;
    right: -39px;
}
.oosh-service-info-wrap .sec-with-left-img:last-child{
position: relative;
}
.oosh-service-info-wrap .sec-with-left-img:last-child::after{
    background-image: url(../images/pattr-design-purple.svg);
    bottom: -70px;
    top: auto;
    right: -40px;
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-size: 130px;
    background-repeat: no-repeat;
}
.sec1-patter-ui {
    top: -110px;
    left: -110px;
}
.oosh-service-info-wrap .img-wrap img{
    border-radius: 20px;
}
.position-absolute.sec1-single-patter-ui { 
    top: -110px;
    right: -60px;
}
.tab-top-hold {
    display: flex
;
    align-items: center;
    justify-content: end;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.term-cards-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}
.term-card {
    border-radius: 12px;
    background: rgb(255 51 204 / 20%);
    overflow: hidden;
}
.trem-data-heading {
    background: #FF33CC;
    padding: 20px;
    color: #fff;
}
.trem-data-heading h5{
    margin: 0px;
}
.trem-data-heading h5 {
    margin: 0;
    font-size: 24px;
    font-family: "bree", sans-serif;
}
.activity-card {
    padding: 14px;
    background: #ccc;
    margin: 10px;
    background: rgb(255 51 204 / 10%);
    border-radius: 10px;
}
.activity-card h6 {
    font-size: 18px;
    color: #282828;
    font-weight: 600 !important;
}
.activity-card p {
    font-size: 14px;
    font-weight: 300;
    color: #282828;
}
.activity-card p a {
    color: #282828;
}

.term-name-heading {
    position: absolute;
    top: -138px;
    left: 20px;
    max-width: 500px;
    text-align: left !important;
}
#termTabs{
 gap: 20px;
 border: 0px;
}
#termTabs .nav-link.active::after{
    background-color: #31E4C5;
}

.term-cards-wrap .term-card:nth-child(3){
    background-color: rgba(153, 51, 255, 0.1);
}
.term-cards-wrap .term-card:nth-child(3) .trem-data-heading{
   background-color: rgba(153, 51, 255, 1); 
}

.term-cards-wrap .term-card:nth-child(3) .activity-card{
   background-color: rgba(153, 51, 255, 0.1); 
}


.term-cards-wrap .term-card:nth-child(4){
    background-color:rgba(49, 228, 197, 0.1)
}
.term-cards-wrap .term-card:nth-child(4) .trem-data-heading{
   background-color:rgba(49, 228, 197, 1)
}

.term-cards-wrap .term-card:nth-child(4) .activity-card{
   background-color:rgba(49, 228, 197, 0.1)
}



.term-cards-wrap .term-card:nth-child(5){
    background-color:rgba(255, 255, 0, 0.1)
}
.term-cards-wrap .term-card:nth-child(5) .trem-data-heading{
   background-color:rgba(255, 255, 0,1);
   color:#000;
}

.term-cards-wrap .term-card:nth-child(5) .activity-card{
   background-color:rgba(255, 255, 0, 0.1)
}



.term-cards-wrap .term-card:nth-child(6){
    background-color:rgba(65, 182, 230, 0.1)
}
.term-cards-wrap .term-card:nth-child(6) .trem-data-heading{
   background-color:rgba(65, 182, 230, 1)

}

.term-cards-wrap .term-card:nth-child(6) .activity-card{
   background-color:rgba(65, 182, 230, 0.1)
}
.oosh-sub-post{ 
       background: rgb(255 51 204 / 6%);
}


span.step-count {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 44px;
    height: 44px;
    background: rgba(153, 51, 255, 1);
    border-radius: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
}
.voucher-sec {
    border: 2px dashed #9933FF;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    padding: 40px;
    margin: 40px 0 0;
}
.voucher-sec h3 {
    font-family: "bree", sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #282828;
}
.voucher-sec p {
    color: #656565;
    max-width: 60%;
    margin: 0 auto;
    font-weight: 300;
    line-height: 28px;
}
.voucher-sec p a{
    color:#9933FF;
}
.review-data-hold svg {
    margin: 30px auto;
    display: table;
}
.review-data-hold p {
    font-weight: 300;
    text-align: center;
    font-size: 18px;
    color: #656565;
}
.review-data-hold h3 {
    font-size: 18px;
    text-align: center;
    margin-top: 23px;
}
.gal-slide-item img {
        border-radius: 20px;
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}
.gal-slide-item {
    padding:0px 30px;
}
.bottom-sec-info{
    max-width: 55%;
}

.bottom-sec-pat-ui {
    right: -70px;
    bottom: -20px;
}


/****Form Css****/
.custom-modal-wrap .modal-dialog {
    max-width: 738px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}
.custom-modal-wrap .modal-content {
    border: 0;
    border-radius: 20px;
    background-color: #fff;
}

.contact-form {
  position: relative;
}
.custom-modal-wrap .modal-body {
    padding: 20px 50px 50px;
}

.form-group br {
    display: none;
}
.form-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.required-text {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 13px;
  color: #888;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-group {
  position: relative;
  flex: 1 1 calc(50% - 10px);
}

.form-group.full {
  flex: 1 1 100%;
}

.input-field {
  width: 100%;
  padding: 10px 20px 10px;
  border: none;
  border-radius: 8px;
  background: #f6f6f6;
  font-size: 15px;
  transition: all 0.3s ease;
  min-height: 73px;
}

.input-field:focus {
  outline: none;
  background: #e9f3ff;
}
.form-group textarea{
padding-top: 30px;
height:146px;
resize: none;
}


.form-group label {
    position: absolute;
    left: 20px;
    top: 23px;
    font-size: 14px;
    color: #656565;
    pointer-events: none;
    transition: 0.3s 
ease all;
    line-height: 28px;
    font-weight: 300;
}
.modal-header {
    border: 0;
    text-align: center;
}
.form-group.filled label {
    top: 0px;
}
span.close-modal-btn {
    position: fixed;
    top: 50px;
    right: 13px;
    cursor: pointer;
    z-index: 22;
}
/* Floating label animation */
.input-field:focus + label,
.input-field:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 12px;
  color: #222;
}

.btn-send {
padding: 18px 24px;
    color: #fff !important;
    background-color: #41B6E6;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: none;
    font-family: "bree", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #41b6e5;
    transition: 0.3s;
}

.btn-send:hover {
  background: #5ba8dc;
}
.btn-send-pink{
    background-color: #FF33CC !important;
    border-color: #FF33CC !important; 
}
.btn-send-pink:hover{
    background-color: #f029be !important;
     border-color: #f029be !important; 
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

    width: 100%;
    flex-direction: row-reverse;
}

.g-recaptcha {
  margin-top: 10px;
}

.wpcf7-not-valid-tip{
    font-size: 12px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
    margin-top: 13px !important;
    text-align: center;
}
.form-devide-heading {
    font-size: 16px;
    font-family: "bree", sans-serif;
    margin: 0px 0 10px;
}

.form-group.date-field .wpcf7-form-control-wrap:after{
position: absolute;
    content: "";
    width: 16px;
    height: 18px;
    background-image: url(../images/cal-pink.svg);
    top: 27px;
    left: 20px;
    background-size: 16px;
    background-repeat: no-repeat;
    pointer-events: none;
}

.form-group.time-field .wpcf7-form-control-wrap:after {
position: absolute;
    content: "";
    width: 16px;
    height: 18px;
    background-image: url(../images/time-pink.svg);
    top: 2px;
    left: 20px;
    background-size: 16px;
    background-repeat: no-repeat;
    pointer-events: none;
}


.form-group.date-field .wpcf7-form-control-wrap::before, .form-group.time-field .wpcf7-form-control-wrap::before {
position: absolute;
    content: "";
    width: 16px;
    height: 18px;
    background-image: url(../images/arrow-pink.svg);
    top: 27px;
    right: 20px;
    background-size: 16px;
    background-repeat: no-repeat;
    pointer-events: none;
}

 .form-group.time-field .wpcf7-form-control-wrap::before{
    top: 0px;
 }

.form-group.date-field input, .form-group.time-field input{
    padding-left: 42px !important;
}
.form-group.date-field label, .form-group.time-field label{
    left: 42px !important;
}

/****Light Box ****/
.lightboxpreview {
   transition: all .3s linear;
padding-top:60%;
  cursor:pointer;
  background-size:cover;
}
   
.lightbox-content {
max-height:75svh;
  height:75svh;
}

.lightbox-close { 
  cursor:pointer;
    margin-left: auto;
  position:absolute;
  right:-30px;
  top:-30px;
  color:white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;}

.modalscale {transform:scale(0);
opacity:0;}



.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled{transition:all .4s ease-in-out;}
.lightbox_img_wrap {padding-top:65%;
  position:relative;
  overflow:hidden;
}



.lightbox-container {width:100svw;
height:100svh;
position:fixed;
top:0;
left:0;
  display:flex;
  align-items:center;
  justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:9999;
opacity:0;
pointer-events:none;
}

.lightbox-container.active {
  opacity:1;
  pointer-events:all;
}
.lightbox-image-wrapper {
  display:flex;
  transform:scale(0);
  align-items:center;
  justify-content:center;
  max-width:90vw;
  max-height:90vh;
  position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
  color:white;
  z-index:9999999;
 cursor:pointer; 
  position:absolute;
  font-size:50px;
}

.lightbox-container .left {left:50px;}
.lightbox-container .right {right:50px;}
#close {top:50px;
right:50px;}

.lightbox-image {
  width:100%;
  max-height:95vh;
  object-fit:cover;
  border-radius: 20px;
 }

@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}


.slideleft {
   animation-name: slideleft;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}


.slideright{
   animation-name: slideright;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}

.team-member-img {
    width: 260px;
    height: 252px;
    overflow: hidden;
    border-radius: 16px;
}
.team-member-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.team-member-name-info h6 {
    color: #41B6E6;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px;
}
.team-member-name-info {
    margin: 30px 0;
}
.team-member-name-info {
    margin: 30px 0;
}
.team-member-name-info h3 {
    font-family: "bree", sans-serif;
    margin: 0;
    font-size: 24px;
    line-height: 32px;
}
.member-modal-content p {
    font-weight: 300;
    line-height: 28px;
    color: #656565;
}
.team-modal-wrap .modal-content {
    border-radius: 20px;
    border: 0;
}
#videoModal .modal-body {
    border-radius: 20px;
    overflow: hidden;
}
.custom-menu-heading a {
    font-size: 20px;
}
.blog-data-left h3 {
    color: #000;
    font-size: 23px;
}
.blog-data-left ul li {
    list-style: disc;
}
.blog-data-left ul, .blog-data-left ol {
    margin: 15px 0;
    padding: 0 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-data-left ol li {
    list-style: auto;
}
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.pagination-wrapper .page-numbers {
    width: 54px;
    display: flex;
    height: 54px;
    border-radius: 8px;
    border: 1px solid #41B6E6;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #282828;
}
.pagination-wrapper .nav-links {
    display: flex;
    gap: 4px;
}
.blog-archive .card-img a, .blog-archive .card-img a img{
    display: block;
    height: 100%;
}

.contact-form-wrap {
    background: #fff;
    box-shadow: 0px 3px 50px #0000000A;
    border-radius: 20px;
    padding: 40px;
    max-width: 738px;
    width: 100%;
}
.contact-info-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width:991px)
{
	.mobile-menu-inner {
    position: relative;
    overflow: hidden;
}
	.mega-menu-programs::after{
	content:none;	
	}
    .menu-item-has-children::after{
        top: 15px;
        right: 0px;
    }
	    .position-absolute.bottom-patter-ui.about-ab-2 {
        right: 0px!important;
    }
	.partner-slider .slick-next {
    right: 0px;
}
	.partner-slider .slick-prev {
    left: 0px;
}
	.inner-pages-banner {
    min-height: 400px;
}
}
@media (max-width:767px)
{
	.snapshot-data {
        padding: 20px 20px 40px;
    }
}
.timeline-section {
    overflow: hidden;
}
.menu-item-has-children {
    position: relative;
}

.page-section-wrap {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.page-section-wrap .sec-padding {
    padding: 0;
}
.contacts-grig-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 28px 0;
    gap: 28px;
}

.contact-info-left{
    width: 450px;
}

.contact-info-left p, .contact-info-left p a{
    margin: 0;
    color: #656565;
    text-decoration:none;
}
.contact-info-icon {
    min-width: 47px;
}
.address-wrap {
    margin-top: 30px;
}
.site-program-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 24px 0;
    gap: 11px;
}
.contact-site-proggram-wrap {
    margin-top: 40px;
} 
.talk-modal-heading{ 
    margin-bottom: 5px;
}
iframe#inline-xfqwUALe3liaTdxP1PaS {
    height: 1046px !important;
}
.pum-title.popmake-title {
    font-family: "bree", sans-serif !important;
    margin-bottom: 5px !important;
    text-align: center !important;
}
.pum-container{
    top: 50px !important;
}
.footer-list-data a {
    color: #fff;
}
.policy-page-wrap {
    padding: 30px 0;
}
.policy-page-wrap h2, .policy-page-wrap h4 {
    font-family: "bree", sans-serif;
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 22px; 
}

.container.policy-page-wrap {
    max-width: 1024px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
    margin: 9px auto 50px;
}
.policy-page-wrap h4{
    font-size: 18px !important;
}