@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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&display=swap');

:root {
  --primary:#00ccff;
  --secondary:#89c63b;
  --white:#fff;
  --black:#000;
  --gradient: linear-gradient(90deg, var(--primary)12%, var(--secondary) 100%);
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary)12%, var(--secondary) 100%); 
  border-radius: 10px;
}

body {
    margin: 0;
    padding: 0 !important;
    font-family: "Nunito Sans", serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px #ddd;
    color: #333;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 10px;
    padding: 13px 20px;
    width: 100%;
    outline: 0;
    border-radius: 4px;
    font-family: "Poppins", serif;
    background: var(--white);
}
input[type="submit"] {
    background: var(--primary);
    text-transform: capitalize;
    border: none;
    padding: 13px 25px;
    font-size: 15px;
    border: 0;
    letter-spacing: 0.5px;
    cursor: pointer;
    outline: none;
    font-weight: 400;
    border-radius: 4px;
     font-family: "Poppins", serif;
    color: var(--white);
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 15px 0;
    color: var(--black);
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
	font-family: "Nunito Sans", serif;
}
h1 {
  font-size:32px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Poppins", serif;
    color: #687083;
    font-size: 15.3px;
    line-height: 28px;
    font-weight: 400;
}
ul, li, a{
  list-style-type: none;
  font-family: "Nunito Sans", serif;
  color: #444;
  line-height: 25px;
  font-size: 15px;
font-weight: 400;	
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading, .leftheading {
    margin-bottom: 30px !important;
    font-size: 45px;
    position: relative;
    font-weight: 700;
    width: fit-content;
}
.heading {
    text-align: center;
    display: block;
    margin: auto;
    padding-left: 42px;
}
.subheading {
    margin: 0 auto 20px;
    font-weight: 400;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    border-bottom: 1px solid var(--primary);
    display: inline-block;
    padding-bottom: 10px;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}

/* TOP BAR CSS */

.topbar {
    padding: 15px 0;
}
.top-contact li, .top-contact li a {
    color: var(--white);
    font-weight: 300;
    letter-spacing: .5px;
    font-size: 15px;
}
.top-contact {
    column-gap: 20px;
}
.top-contact i {
    color: var(--white);
    font-size: 16px;
    padding-right: 5px;
}
.topbar-rgt a.topphn {
    background: var(--primary);
    color: var(
    --white);
    padding: 5px 15px 8px;
    border-bottom: solid 2px var(--white);
    border-radius: 0 0 30px;
}
.topbar-rgt a.topphn i {
    border: solid 1px #ddd;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 6px;
}
.smoicons{
	column-gap:8px;
}
.smoicons li a {
    border-radius: 3px;
    background: #ffffff05;
    height: 33px;
    width: 33px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 15px;
    border: solid 1px #00ccff;
}
.top-contact p {
    padding: 0 15px;
}
.top-contact p {
    padding-left: 0;
    border-right: 1px solid #ffffff26;
    color: #fff;
}
.top-contact p:last-child{
 border:none;
}
.topbar a {
    color: #fff;
}
.top-contact p a, .top-contact p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}
.topbar-rgt {
    column-gap: 45px;
}
.topbar a.arrow-btn {
    display: inline-block;
    color: var(--white);
    transition-delay: 0.1s;
}
.topbar a.arrow-btn i {
    padding-left: 5px;
}

/* Header */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}
header .row {align-items: center;}
header img {
    width: 90px;
}
header .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    z-index: 1;
    position: relative;
}
.logo {
    z-index: 1;
    position: absolute;
    top: -20px;
    height: 110px;
    width: 110px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.menubar {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 50px;
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}

/* Menubar */

.mainmenu .btn-primary {margin-left: 10px;}

.menubar p{
	margin:0;
}
.menubar form .wpcf7-form-control{
	border:unset;
	padding:0;
}    
.hdrcnt a {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    background: var(--primary);
    padding: 8px 20px;
    color: var(
    --white);
    border-radius: 6px;
}
.carousel-content .btn {
    background: unset;
    border: 1px solid var(--primary);
}
.hdrcnt i {
padding-left:8px;
}
.hdrcnt {
    column-gap: 13px;
}

/* Main Slider */

.mainslider .carousel-item {
	position:relative;
	z-index:0;
	overflow:hidden;
}
ainslider figure{
	margin:0;
	position: relative;
}
.mainslider figure img {
    width: 100%;
    object-fit: cover;
    height: 650px;
    filter:brightness(0.7);
}
.mainslider .carousel-caption {
    top: 65%;
    left: 100px;
    width: 65%;
    transform: translateY(-50%);
    text-align: left;
    position: absolute;
    bottom: inherit;
    z-index: 2;
}
.mainslider .carousel-content {
    width: 70%;
}
.carousel-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    background: linear-gradient(90deg, #000000eb, #000000ad, #00000000);
    width: 60%;
}
.mainslider .carousel-caption h2, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h2 {
    font-size: 50px;
    line-height: 70px;
    font-weight: 700;
    letter-spacing: .5px;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    text-transform: capitalize;
    margin-bottom: 0;
}
.mainslider .carousel-caption h2 span{
    display: block;
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-content p {
    margin: 15px 0 15px;
    line-height: 28px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    color: #fff;
    font-size: 15px;
    letter-spacing: .5px;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.carousel-content ul {
    column-gap: 15px;
}

/* About Us */

.about {
    padding: 60px 0;
}
.about-content .leftheading {
    margin-bottom: 15px !important;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.aboutimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutus .about img {
    width: 100%;
    height: 100%;
}
.aboutlist li {
    column-gap: 15px;
    margin-bottom: 20px;
} 
.aboutlist li figure {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00ccff21;
    border-radius: 50px;
    position: absolute;
    left: 0;
}
.aboutlist-info {
    padding-left: 87px;
}
.aboutlist li img {
    width: 45px !important;
    height: 45px !important;
}
.aboutlist-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.aboutlist .btn-primary{
	margin:0;
}
.aboutlist {
    margin-top: 40px;
    position: relative;
}
.features {
    background: #f5f7fa;
    padding: 55px 0 60px;
}
.features-item {
    border-radius: 10px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 0 40px 5px #0000000d;
    height: 100%;
}
.features-item figure {
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed1b2412;
    border-radius: 50px;
    transition: .5s;
}
.features-item:hover figure img {
    transform: rotate(360deg);
}
.features img {
    width: 60px;
	transition: all .5s ease-in-out;
}
.features-item h3 {
    font-size: 24px;
    margin: 10px 0;
	font-weight:600;
}
.features h4 {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.about-content h2 {
    font-size: 40px;
}
.about-content h2:first-letter {
    color: var(--primary);
}
.msnvsn {
    background: #00ccff17;
    padding: 50px 0;
}
.msnvsn-item {
    border: solid 1px #ddd;
    padding: 15px;
    height: 100%;
    border-radius: 6px;
    text-align: center;
    transition: all ease-in-out .5s;
}
.msnvsn-item:hover {
	border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 3px 3px 13px #eee;
}
.msnvsn-item img {
    width: 100%;
    height: 270px;
    border-radius: 6px 6px 0 0;
    object-position: bottom;
}
.msnvsn-item h3 {
    margin: 0 0 18px;
    background: var(--primary);
    padding: 5px 5px 10px;
    color: var(--white);
    border-radius: 0 0 6px 6px;
}
.msnvsn-item:hover h3{
	background:var(--secondary);
}
.msnvsn-item:hover h3 {
    background: var(--secondary);
}


/* Countdown */

.counter {
    background: linear-gradient(45deg, #00000005, #00000005), url(../images/servicebg.jpg) no-repeat bottom center / cover;
    padding: 100px 0 60px;
    background-attachment: fixed;
}
.counter-item {
    border: dotted 2px var(--primary);
    position: relative;
    display: block;
    background: white;
    border-radius: 10px;
    padding: 60px 30px 25px;
    transition: all ease-in-out .5s;
}
.counter-item:hover {
    box-shadow: 3px 3px 13px #ddd;
    transform: translateY(-5px);
    border-color: var(--secondary);
}
.counter-item figure {
    top: -44px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    outline: dotted 2px var(--primary);
    outline-offset: 5px;
    transition: all ease-in-out .5s;
}
.counter-item:hover figure {
    background: var(--secondary);
    outline-color: var(--secondary);
}
.counter-item img {
    width: 45px;
}
.counter-item h3 {
    font-size: 35px;
    font-weight: 500;
    position: relative;
    padding-left: 27px;
    margin-bottom: 5px;
}
.counter-item h3:before {
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    content: "\f067";
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    top: 10px;
}
.counter-item  p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}


/* Services */

.services {
    padding: 50px 0 60px;
    background: #f6f7fb;
}
.services-item {
    background: var(--white);
    padding: 30px 20px;
    box-shadow: 0 0 40px 5px #0000000d;
    border-radius: 20px 0 20px 0;
    border-bottom: 3px solid #00ccff;
    transition: .5s;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    height: 100%;
}
.services-item:hover figure {
    transform: rotate(360deg);
}
.services-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary);
}
.servicescptn h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 12px 0 10px;
}
.services-item figure {
    background: var(--primary);
    height: 80px;
    width: 80px;
    border-radius: 20px 0 20px 0;
    margin: 0 auto;
    outline: 4px solid #fff;
    box-shadow: 0 0 14px #adadad;
   clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.read-btn {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    background: var(--secondary);
    padding: 4px 25px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
}
.read-btn:hover{
 background:var(--secondary);
 color:var(--white);
}
.services .row {
    row-gap: 25px;
}
.services-item img {
    width: 60px;
}
.services .btn {
    display: block;
    width: fit-content;
    margin: 35px auto 0;
}

/* service details page css  */
.servicesdtls {
    background: #00ccff1c;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    line-height: 29px;
    outline: 1px dotted var(--primary);
    outline-offset: 7px;
}
.services-details strong {
    display: block;
    text-align: center;
    color: #000000b0;
    letter-spacing: .5px;
    font-size: 16px;
    width: 75%;
    margin: 0 auto 40px;
}
.dtlscnts li {
    background: #89c63b24;
    width: 24%;
    text-align: center;
    padding: 15px;
    font-size: 17px;
    border-radius: 30px 30px 0 30px;
    border: 1px dotted #89c63b;
    color: #000000db;
    font-weight: 500;
}
.dtlscnts {
    padding-top: 70px;
}
.commongoals {
    padding: 45px 0;
    background: #f7f7f7;
    margin-top: 60px;
}
.commongoals ul li {
    width: 48%;
    text-align: center;
    background: linear-gradient(112deg, #00ccff, #89c63b);
    padding: 15px;
    border-radius: 10px;
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
}
.commongoals ul {
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap:10px;
}
.musics ul li {
    background: #00ccff1f;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    color: #000;
    font-size: 16px;
    border-left: 3px solid var(--primary);
    cursor: pointer;
    font-weight:500;
    transition:.3s ease-in-out;
}
.musics ul li:hover{
background:var(--primary);
color:var(--white);
transition:.3s ease-in-out;
}
.activites {
    background: #89c63b0f;
    padding: 45px 0;
    margin-top: 60px;
}
.activites .row{
 row-gap:15px;
}
.aboutactivites {
    background: var(--white);
    height: 100%;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #00ccff24;
}
.aboutactivites figure {
    height: 90px;
    width: 90px;
    background: #00ccff24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    outline: 1px dashed var(--primary);
    outline-offset: 6px;
}
.aboutactivites figure img {
    width: 60px;
}
.aboutactivites h3 {
    margin: 0 0 10px 0;
}
.tips {
    padding: 50px 0;
}
.tips ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
}
.tips ul li {
    text-align: center;
    background: var(--white);
    padding: 16px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    width: 48%;
    border-radius: 10px;
    margin-right: 15px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);
    color: #000;
    font-size: 16px;
}
.services-details .heading {
    font-size: 35px;
}
.resources {
    background: #00ccff0d;
    padding: 50px 0 30px;
}
.secondary-container.services-details {
    padding-bottom: 0;
}
.resources li {
    background: var(--white);
    margin-bottom: 17px;
    padding: 20px;
    font-size: 17px;
    border-bottom: 2px solid var(--primary);
    border-radius: 10px;
    text-align: center;
}
.resources li span{
 font-weight:700;
}
.resources h3 {
    width: 60%;
    text-align: center;
    margin: 30px auto 0;
    font-size: 18px;
}
.remedialtherapies ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    margin-bottom:40px;
}

.remedialtherapies ul li {
    width: 49%;
    height: 75px;
    background: #00ccff0d;
    display: flex;
    align-items: center;
    padding-left: 32px;
    border-radius: 8px;
    border-left: 2px solid var(--primary);
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}
.remedialtherapies ul li:after {
    position: absolute;
    content: '';
    height: 12px;
    width: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    left: 10px;
    top: 32px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.srvcsdtls {
    background: var(--white);
    padding: 25px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);
    height: 100%;
    border-radius: 10px;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}
.srvcsdtls li {
    background: #00ccff21;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    color: #000000cf;
}
.srvcsdtls h3 {
    font-weight: 700;
}
.faq ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
.faq ul li {
    width: 49%;
    text-align: center;
    background: var(--primary);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 15px 0 15px 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-left: 2px solid #00000075;
    border-right: 2px solid #00000075;
}
.contactnow {
    background: #89c63b14;
    padding: 45px 0 30px;
}
.contactnow strong {
    margin: 0 auto;
    font-size: 18px;
    line-height: 30px;
}
.contactnow a {
    display: block;
    width: fit-content;
    margin: 0 auto;
}








/* team section  */
.team{
  padding:50px 0 10px;
}
.about-team {
    background: #00ccff26;
    padding: 13px;
    border-radius: 30px 0 30px 0;
}
.about-team img {
     border-radius: 30px 0 30px 0;
}
.team-info {
    margin-top: 15px;
}
.team-info h3 {
    margin: 0 0 7px 0;
    font-weight: 500;
    font-size: 23px;
}
.team-info p {
    color: #000000eb;
}


/* gallery section  */
.ourgallery {
    padding: 50px 0 60px;
    background: #f5f5f58c;
    margin-top: 50px;
}
.gallerylightboxlist {
    height: 260px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.gallerylightbox .row {
    row-gap: 18px;
}
.gallerylightbox  .col-sm-3 {
    padding: 7px;
}

/* Why Choose Us */

.whychooseus {
    padding: 60px 0;
    background: linear-gradient(#00ccff1f, #000000ad), url(../images/whychoosebg.webp) center / cover;
}
.whychooseus-item{
    display: flex;
    text-align: left !important;
    column-gap: 30px;
    justify-content: center;
}
.whychooseus .col-lg-4 {
    border-right: 1px dashed var(--white);
}
.whychooseus .row {
    row-gap: 25px;
    justify-content: center;
}
.whychooseus .row .col-lg-4:nth-child(3) {
    border: unset;
}
.whychooseus-item figure {
    background: #ffffff26;
    height: 95px;
    width: 95px;
    border-radius: 50px;
}
.whychooseus-item img {
    width: 60px;
}
.whychooseus-item h3 {
    margin: 20px 0 0;
    font-size: 40px;
    color: var(--white);
    line-height: 28px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.whychooseus-item h3 span {
    display: block;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .5px;
    margin-top: 15px;
    font-family: "Barlow Condensed", sans-serif;
}
.whychooseus-item p{
    height: 100px;
    overflow-y: scroll;
    padding-right: 10px;	
}
.whychooseus-item p::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
 border-radius: 10px;
 background-color: var(--white);
}
 .whychooseus-item p::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 .whychooseus-item p::-webkit-scrollbar-thumb {
 border-radius: 10px;
 -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
 background: var(--primary);
}

/* videos section  */
.videos {
    padding-top: 60px;
}
.videos .aboutvideo video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
.videos .row {
    row-gap: 20px;
}

/* HOME BLOG SECTION CSS */

.homeblog {
    padding: 50px 0 60px;
}
.homeblog .row, .blogpost .row {
    row-gap: 25px;
}
.homebloglist {
    border-radius: 10px;
    transition: .5s;
    box-shadow: 0 0 40px 5px #0000000d;
    padding: 8px;
}
.homebloglist:hover {
    transform: translateY(-2px);
    background: var(--white);
}
.homebloglist:hover img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}
.homeblogbox h3 {
    line-height: 25px;
    font-weight: 600;
    margin: 0 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.homeblogbox span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-bottom: 12px;
    display: block;
}
.homebloglist figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.homebloglist img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}
.homeblogbox {
    padding: 20px;
    position: relative;
}
.homebloglist p {
    margin: 10px 0 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.homebloglist ul {
    column-gap: 20px;
    border-bottom: solid 1px #dddddd8c;
    padding: 0 0 12px;
    margin-bottom: 15px;
}
.homebloglist ul li, .homebloglist ul li a {
    font-size: 15px;
}
.homebloglist ul li i {
    margin-right: 5px;
    color: var(--primary);
}
.homebloglist .btn-primary {
    padding: 9px 15px !important;
    font-weight: 300;
}
.homeblogbox .readmore {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--primary);
    margin: 15px 0 0;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}
.blogpost .homeblog {
    background: none;
    padding: 0;
}

.homebloglist figure:before, .whychoose-thumb:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
    transition: all .3s ease;
	z-index:-3;
}
.homebloglist:hover figure:before, .whychoose-thumb:hover:before {
    animation: shine 1s;
	z-index: 1;

}

@keyframes shine{
	100% {
    left: 125%;
}
}
.homeblog .blogcategory {
    padding: 8px 20px 6px;
    background: #ffffffc9;
    border-radius: 30px;
    transition: all .4s;
    color: var(--primary);
    content: "";
    width: fit-content;
    height: fit-content;
    top: -20px;
    left: 10px;
    opacity: 0;
    font-weight: 600;
}
.homebloglist:hover .blogcategory{
	top:10px;
	opacity:1;
}
.blogpage .row {
    row-gap: 25px;
}
/* contact us page  */
.contactus_details {
    background: #00ccff26;
    padding: 20px 0 16px;
    text-align: center;
    clip-path: polygon(8% 0, 95% 0, 100% 9%, 100% 92%, 95% 100%, 7% 100%, 0 91%, 0 9%);
    margin-bottom: 55px;
}
.contactus_details .fas {
    height: 50px;
    width: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    color: var(--white);
    font-size: 19px;
}
.contactus_info h3 {
    margin: 0 0 7px 0;
}
.contactus_info a {
    color: #000000db;
    font-size: 16px;
}
.google-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}
form.wpcf7-form.init {
    background: #89c63b12;
    padding: 15px;
    border-radius: 8px;
}
.secondary-container.contactus p {
    margin: 0 0 6px 0;
}

/* donate now page  */
.donate img {
    height: 400px;
    object-fit: contain;
    border: 1px solid #00ccff36;
    border-radius: 10px;
}
.donate .details h2 {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    background: var(--primary);
    display: inline-block;
    width: 70%;
    padding: 12px;
    color: var(--white);
    border-radius: 6px;
}
.details {
    padding-left: 50px;
}
.details ul li {
    position: relative;
    padding-left: 20px;
    font-size;16px;
    margin-bottom: 10px;
    font-size:16px;
}
.details ul li:after {
    position: absolute;
    content: '';
    height: 8px;
    width: 8px;
    background: linear-gradient(187deg, var(--primary), var(--secondary));
    left: 0;
    top: 8px;
}
.details ul {
    margin-top: 25px;
}
.details li span {
    font-weight: 600;
    font-size:15px;
}
/* Footer */

footer {
    background: #030207;
    padding-top: 50px;
}
.footerlogo img {
    width: 125px;
    border: 4px solid #fff;
    border-radius: 100px;
    margin-bottom: 10px;
}
footer .border-start {
    border-left: 1px solid #dee2e640!important;
}
a.footer-logo{
	width:100%;
	background: var(--white);
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}
footer a.footer-logo img {
    width: 200px;
    padding: 2px 19px;
    margin-bottom: 0px;
}
footer .col-sm-4 {
    padding: 50px 30px;
}
footer .col-sm-4:nth-child(2) {border-right: solid 1px #6a6a6a2e;border-left: solid 1px #6a6a6a2e;}
footer h3 {
    color: var(--white);
    position: relative;
    width: fit-content;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: .5px;
}
ul#menu-services {
    display: flex;
    flex-wrap: wrap;
    column-gap: 13px;
}
footer h3:after, footer h3:before {
    background: var(--primary);
    position: absolute;
    content: "";
    height: 2px;
    width: 15px;
    bottom: 0;
    left: 0;
}
ul#menu-services li {
    width: 48%;
    line-height: 35px;
}
footer h3:before {
    width: 35px;
    left: 20px;
}
footer a, footer ul li {
    color: #efefef;
    transition: 0.5s ease-in-out;
}
footer a:hover {
    color: var(--secondary);
}
footer i{
    font-size: 13px;
    margin-right: 6px;
}
footer p {
    margin-bottom: 0;
    color: #efefef;
    font-weight: 300;
    font-size: 15px;
}
footer .ftr-link img {
    width: 160px;
    margin: 0 auto;
    display: block;
}
footer .supporter {
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
}
.ftricons {
    margin-top: 15px;
    column-gap: 5px;
}
.ftricons li i {
    color: #fff;
    font-size: 14px;
    background: #ffffff00;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 2px solid #00ccff21;
}
.ftr-link li {
    padding-left: 25px;
    position: relative;
    line-height: 40px;
}
footer ul.hours li{
 line-height: 26px;	
}
.ftr-link li:before {
    position: absolute;
    content: "\f0a4";
    font-family: 'Font Awesome 5 Free';
    left: 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}
.ftr-contact {
    display: flex;
    column-gap: 20px;
    border-bottom: 1px solid #ffffff1f;
    padding-bottom: 25px;
}
.ftr-contact li {
    width: 33.333%;
    border: 1px solid #ffffff21;
    padding: 15px;
    background: #0000003d;
    text-align: center;
    border-radius: 6px;
}
.ftr-contact li i {
    color: var(--white);
    font-size: 16px;
    background: #ffffff1f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
}
.ftr-contact li h4 {
    font-size: 18px;
    color: var(--white);
    margin: 18px 0 5px;
    font-weight: 600;
}



.ftrcontact li:before {
	display:none;
}
.ftrcontact li {
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 10px;
	 padding: 0;
	margin-bottom:15px;
}
.ftrcontact li a {
    font-size: 17px;
}
.ftrcontact li a span {
    font-size: 15px;
}
.ftrcontact li i {
    font-size: 15px;
    margin: 0;
    color: var(--primary);
    height: 40px;
    width: 40px;
    background: #ffffff12;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.ftr-newsletter input[type="submit"] {
    width: 100%;
    margin-top: 5px;
}
.copyright {
    padding: 12px 0;
    margin-top: 40px;
    border-top: 1px solid #ffffff12;
}
.copyright ul{
	column-gap:15px;
}
.copyright p {
    color: #efefef;
    letter-spacing: .5px;
}
.copyright p a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
	transition:0.5s ease-in-out;
}
.copyright p a:hover{
	color:var(--primary);
}
.paymentopt {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
}
.paymentopt img {
    width: 320px;
}

#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 10px;
    border-radius: 8px;
    z-index: 99999999;
    padding: 0;
    border: 1px solid var(--white);
    background: var(
    --primary);
    width: 44px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    text-decoration: none;
    padding-top: 11px;
    box-shadow: 3px 11px 12px #00000045;
    color: var(--white);
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}

@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
    margin-top: 10px;
}

.secondary-container {
	padding: 60px 0;
}
.breadcrumb {
    background: linear-gradient(var(--primary), #222 50%);
    padding: 160px 0 25px;
    text-align: center;
    border-top: solid 1px #dddddd3b;
}
.breadcrumb h1, .breadcrumb p {
    color: var(--white);
}
.breadcrumb p {
    margin: 0;
}
.breadcrumb a {
    color: var(--white);
    margin-right: 25px;
    position: relative;
}
.breadcrumb a:after {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 12px;
    top: -1px;
    right: -21px;
    color: var(--white);
}

@media(max-width:991px){
.topbar {
    display: none;
}	
.mainmenu {
    padding: 15px !important;
    margin-top: 23px !important;
}	
#rmp_menu_trigger-573 {
    top: 5px !important;
    right: unset !important;
    background: var(--primary) !important;
    position: absolute !important;
}
.hdrcnt a {
    margin-left: 10px;
}	
.mainslider .carousel-caption {
    width: 100%;
}
.ourgallery .col-sm-3 {
    width: 50%;
}
.homebloglist img {
    height: auto;
}
footer .row {
    row-gap: 20px;
}
#rmp-container-573 {
    background-color: var(--primary) !important;
}
div#rmp-menu-title-573 {
    display: none !important;
}
div#rmp-menu-additional-content-573 {
    display: none !important;
}
form.rmp-search-form {
    display: none !important;
}
.about .col-sm-5 {
    width: 100%;
}
.about .col-sm-7 {
    width: 100%;
}
.msnvsn .row {
    row-gap: 15px;
}
.commongoals ul li {
    width: 100%;
}
.commongoals ul {
    padding: 10px;
}
.msnvsn-item img {
    height: auto;
}
.contactus .col-sm-4 {
    width: 100%;
}
.contactus_details {
    margin-bottom: 10px;
}
.secondary-container.contactus .col-sm-5 {
    width: 100%;
}
.secondary-container.contactus .col-sm-7 {
    width: 100%;
}
.secondary-container.contactus .row {
    row-gap: 10px;
}
form.wpcf7-form.init .row {
    row-gap: 0;
}
.donate .row {
    row-gap: 15px;
}
.details {
    padding-left: 0;
}
.details ul {
    margin-top: 10px;
}
	.dtlscnts ul {
    flex-wrap: wrap;
    row-gap:10px;
}
.dtlscnts li {
    width: 100%;
}
.dtlscnts {
    padding-top: 40px;
}
.services-details strong {
    width;100%;
    margin: 0 auto 40px;
}
.services-details strong {
    width: 100%;
    margin: 0 auto 25px;
}
.councellingsrvcs .row {
    row-gap: 20px;
}
.faq ul li {
    width: 100%;
}
.services-details strong {
    width: 100%;
    margin: 0 auto 0px;
}
.services-details strong br {
    display: none;
}
}

@media(max-width:767px){
.logo {
    top: -15px;
    height: 100px;
    width: 100px;
}
#rmp_menu_trigger-573 {
     top: 10px !important;
    width: 45px !important;
    height: 45px !important;
}
.hdrcnt a {
    margin-left: 0px;
    font-size: 14px;
    padding: 8px 10px;
}
.mainslider .carousel-caption h2 {
    font-size: 40px;
    line-height: 50px;
}
.about .row {
    row-gap: 20px;
}
.whychooseus .col-lg-4 {
    border-right: unset;
}
.whychooseus .row .col-lg-4:first-child {
    padding-left: 0 !important;
}
.heading, .leftheading {
    font-size: 35px;
}
.ourgallery .col-sm-3 {
    width: 100%;
}
.secondary-container {
    padding: 40px 0;
}
.commongoals {
    padding-bottom: 30px !important;
}
.activites .col-sm-6 {
    width: 100%;
}
.tips ul li {
    width: 100%;
}
.resources h3 {
    width: 100%;
}
.remedialtherapies ul li {
    width: 100%;
}
}
@media (max-width:667px){
.services-details .heading {
    font-size: 25px;
    margin-bottom: 20px !important;
}
.mainslider .carousel-caption {
    left: 70px;
    width: 100%;
}
.about {
    padding: 40px 0;
}
.whychooseus {
    padding: 40px 0;
}
.services {
    padding: 40px 0;
}
.videos {
    padding-top: 40px;
}
.homeblog {
    padding: 40px 0;
}
.ourgallery {
    padding: 45px 0;
    margin-top: 40px;
}
}

@media (max-width:568px){
.mainslider .carousel-caption h2 {
    font-size: 30px;
    line-height: 40px;
}
.subheading {
    font-size: 16px;
}
.carousel-control-prev {
    left: 1px !important;
}
.carousel-control-next {
    right: 1px;
}
.about-content h2 {
    font-size: 30px;
}
.mainslider .carousel-caption {
    left: 50px;
}
.mainslider figure img {
    height: auto;
}
.mainslider .carousel-content {
    width: 90%;
}
.carousel-content p {
    display: none;
}
.whychooseus-item h3 {
    font-size: 35px;
    font-weight: 500;
}
.whychooseus-item img {
    width: 45px;
}
.whychooseus-item figure {
    height: 80px;
    width: 80px;
}
}

@media (max-width:479px){
.whychooseus-item figure {
    height: 70px;
    width: 70px;
}
header img {
    width: 75px;
}
.logo {
    height: 90px;
    width: 90px;
}
.mainslider .carousel-caption h2 {
    font-size: 26px;
    line-height: 35px;
}
.carousel-control-next, .carousel-control-prev {
    width: 35px;
    height: 35px;
}
.about-content .leftheading {
    margin-bottom: 10px !important;
}
.whychooseus-item h3 span {
    font-size: 19px;
    margin-top: 10px;
}
.heading, .leftheading {
    font-size: 30px;
    padding-left: 0;
}
.heading, .leftheading {
    margin-bottom: 20px !important;
}
}

@media(max-width:414px){
.mainmenu {
    margin-top: 10px !important;
}
header img {
    width: 70px;
}
.logo {
    height: 80px;
    width: 80px;
    top: -5px;
}
.mainslider .carousel-caption h2 {
    font-size: 21px;
    line-height: 30px;
}
.btn-primary {
    font-size: 15px;
    padding: 7px 19px !important;
}
.subheading {
    font-size: 13px;
    margin-bottom: 10px;
}
.mainslider .carousel-caption {
    left: 30px;
}
#rmp_menu_trigger-573 {
    top: 17px !important;
    width: 40px !important;
    height: 40px !important;
}
.aboutlist li {
    flex-wrap: wrap;
}
.aboutlist li figure {
    position: inherit;
    margin: 0 auto 15px;
}
.aboutlist-info {
    padding-left: 0;
    text-align: center;
}
ul#menu-services li {
    width: 100%;
    line-height: 30px;
}
.copyright {
    margin-top: 15px;
}
.about .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.contactus_details {
    margin-bottom: 15px !important;
}
}

@media (max-width:375px){
header img {
    width: 65px;
}
.mainmenu {
    padding: 15px 5px !important;
    margin-top: 23px !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    padding: 9px 20px;
}
.donate .details h2 {
    width: 100%;
    font-size: 20px;
}
}







