@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Impact';
    src: url('../fonts/Impact.woff2') format('woff2'),
        url('../fonts/Impact.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Black.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
*{padding: 0;margin: 0;}
body{padding: 0;margin: 0;font-family: 'Poppins';font-weight: normal;background-color: #fff;overflow-x: hidden;}
p{font-size: 16px;font-weight: 400;}
a{transition: 0.5s;text-decoration: none;}
h1, h2, h3, h4, h5, h6{font-family: "Poppins", sans-serif;font-weight: 700;padding: 0;margin: 0;}
ul, li{padding: 0;margin: 0;list-style-type: none;}
.card, .card-body, .card-footer, .card-image{box-shadow: none;padding: 0;border-radius: 0;background-color: transparent;border: none;}
.p-80{padding: 80px 0;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group{
    margin-bottom: 0;
}
.form-group p{
    margin: 0;
}
.form-group input, .form-group textarea {
    border-radius: 5px;
    height: 50px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #474747;
    font-size: 14px;
    font-weight: 300;
    padding: 12px;
    width: 100%;
}
.form-group textarea{
    height: 113px;
    resize: none;
}
.form-group input:focus, .form-group textarea:focus{
    border-color: #dfdfdf;
    background-color: #dfdfdf;
    color: #000000;
}
.container{
    position: relative;
    z-index: 91;
}
.btn {
    padding: 12px 22px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 600;
    border: 1px solid;
    transition: 0.5s;
    outline: none;
    border-radius: 30px;
    text-transform: uppercase;
}
.btn-primary {
    border-color: #652d90;
    background-color: #652d90;
    color: #ffffff;
}
.btn-primary:hover{
    border-color: #f5bb2a;
    background-color: #f5bb2a;
    color: #ffffff;
}
.btn-yellow {
    border: none;
    background: rgb(245,187,41);
    background: -moz-linear-gradient(90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    background: linear-gradient(90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    color: #652d90;
}
.btn-yellow:hover{
    background: rgb(245,187,41);
    background: -moz-linear-gradient(-90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    background: -webkit-linear-gradient(-90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    background: linear-gradient(-90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    color: #ffffff;
}
.btn-white{
    border-color: #ffffff;
    background-color: #ffffff;
    color: #652d90;
}
.btn-white:hover{
    border-color: #f5bb2a;
    background-color: #f5bb2a;
    color: #ffffff;
}
.btn:focus{
    box-shadow: none;
}
@-webkit-keyframes fadeInDown {
    0% {
       opacity: 0;
       -webkit-transform: translateY(-20px);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateY(0);
    }
 }
 
 @keyframes fadeInDown {
    0% {
       opacity: 0;
       transform: translateY(-20px);
    }
    100% {
       opacity: 1;
       transform: translateY(0);
    }
 }
/*-- banner area start --*/
.banner {
    height: 615px;
    position: relative;
}
.banner img{
    width: 100%;
    object-fit: cover;
    position: relative;
}
.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(101,45,144);
    background: -moz-linear-gradient(90deg, rgba(101,45,144,0.896796218487395) 30%, rgba(255,255,255,0) 70%);
    background: -webkit-linear-gradient(90deg, rgba(101,45,144,0.896796218487395) 30%, rgba(255,255,255,0) 70%);
    background: linear-gradient(90deg, rgba(101,45,144,0.896796218487395) 30%, rgba(255,255,255,0) 70%);
    z-index: 1;
}
.banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 685px;
    height: 605px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/banner-shape.png);
    z-index: 0;
    opacity: 0.5;
}
.banner-main-contain .container-fluid{
    padding: 0 38px;
}
.banner .banner-main-contain{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.banner-contain .banner-contain-body .heading {
    font-size: 48px;
    font-family: 'Playfair Display';
    font-weight: bold;
    line-height: 65px;
    color: #ffffff;
    margin-bottom: 10px;
}
.banner-contain .banner-contain-body .btn-box .btn{
    margin-right: 10px;
}
.banner .banner-main-contain .banner-contain{
    width: 100%;
    max-width: 495px;
}
.banner-contain .banner-contain-body .heading strong {
    background-color: #efab34;
    color: #652d90;
    padding: 5px 11px;
    border-radius: 12px;
}
.banner-contain .banner-contain-body .text{
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 25px;
}
/*-- banner area stop --*/
/*-- header area start --*/
.header-body-area .logo {
    width: 100%;
    max-width: 190px;
    padding: 10px 0;
    position: relative;
}
.header-body-area .logo img{
    width: 100%;
    object-fit: cover;
}
.header-body-area .header-right {
    width: 100%;
    max-width: 80%;
}
.header-body-area .header-right .header-right-top {
    border-bottom: 1px solid #e0d5e9;
    padding: 15px 0;
    position: relative;
}
.header-body-area .header-right .header-right-top::before{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    max-width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #652d90;
}
.header-body-area .header-right .header-right-top::after{
    content: '';
    position: absolute;
    bottom: -1px;
    right: -6000px;
    width: 6000px;
    height: 1px;
    background-color: #e0d5e9;
}
.header-address-box .address-icon {
    width: 30px;
    height: 30px;
    background-color: #652d90;
    border-radius: 100%;
}
.header-address-box .address-icon img{
    width: auto;
    height: auto;
    object-fit: contain;
}
.header-address-box .address-body {
    padding-left: 5px;
}
.header-address-box .address-body a{
    color: #151515;
    font-size: 13px;
    font-weight: 500;
}
.header-address-box .address-body a:hover{
    color: #652d90;
}
.header-body-area .header-right .header-right-top .header-address .header-address-box {
    margin-right: 15px;
}
.header-right-top .header-social ul li{
    margin-right: 2px;
    display: inline-block;
}
.header-right-top .header-social ul li:last-child{
    margin-right: 0;
}
.header-right-top .header-social ul li a {
    width: 100%;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #652d90;
}
.header-right-top .header-social ul li a img{
    width: auto;
    height: auto;
    object-fit: contain;
}
.header-right-top .header-social ul li a:hover{
    background-color: #f5bb2a;
}
.header-right-top .header-social ul li a:hover img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7489%) hue-rotate(162deg) brightness(106%) contrast(101%);
}
.header-body-area .header-right .header-right-bottom {
    padding: 17px 0;
    padding-left: 8%;
}
.header-right-bottom .menu{
    margin-right: 40px;
}
.header-right-bottom .menu ul li {
    display: inline-block;
    margin-right: 65px;
}
.header-right-bottom .menu ul li:last-child{
    margin-right: 0;
}
.header-right-bottom .menu ul li a {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    text-transform: capitalize;
}
.header-right-bottom .menu ul li a:hover, .header-right-bottom .menu ul li.active a{
    color: #652d90;
}
.header-area.fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}
@-webkit-keyframes fadeInDown {
    0% {
       opacity: 0;
       -webkit-transform: translateY(-20px);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateY(0);
    }
 }
 
 @keyframes fadeInDown {
    0% {
       opacity: 0;
       transform: translateY(-20px);
    }
    100% {
       opacity: 1;
       transform: translateY(0);
    }
 }
.header-area.fix .header-body-area .logo {
    padding: 7px 0;
    max-width: 150px;
}
.header-area.fix .header-body-area .logo img{
	width:100%;
	height: auto;
	object-fit:contain;
}
.header-area.fix .header-body-area .header-right .header-right-top {
    display: none !important;
}
.header-area.fix .header-body-area .header-right .header-right-bottom {
    padding: 28px 0;
    padding-left: 8%;
}
.header-area.fix .header-body-area .header-right{
    display: flex;
    align-items: center;
    justify-content: end;
}
.header-area {
    background-color: #ffffff;
}
.header-area.fix .site-navigation li {
    margin-right: 40px;
}
/*-- header area stop --*/
/*-- webcontain start --*/
.webcontain .heading {
    color: #652d90;
    font-size: 38px;
    font-weight: 900;
    font-family: 'Playfair Display';
    line-height: 48px;
    margin-bottom: 15px;
}
.webcontain .heading strong{
    color: #f6bc2a;
}
.webcontain .text{
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
}
.webcontain.about-contain .btn{
    margin-top: 15px;
}
.about-contain{
    padding-left: 30px;
}
/*-- webcontain stop --*/
/*-- about area start --*/
.about-img{
    position: relative;
    padding-top: 26px;
}
.about-img img{
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}
.about-img .people-counter {
    position: absolute;
    top: 0;
    right: 35px;
    width: 100%;
    max-width: 136px;
    min-height: 147px;
    background-color: #652d90;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 15px;
}
.about-img .people-counter::after {
    content: '';
    position: absolute;
    top: 0;
    right: -19px;
    width: 100%;
    max-width: 19px;
    height: 26px;
    background-color: #440c6f;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.about-img .people-counter .counter{
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-img .people-counter .counter strong{
    font-weight: 900;
}
.about-img .about-img-heading{
    padding: 18px 15px;
    background: rgb(245,187,41);
    background: -moz-linear-gradient(90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
    background: linear-gradient(90deg, rgba(245,187,41,1) 0%, rgba(239,170,52,1) 100%);
}
.about-img .about-img-heading .heading {
    padding: 8px;
    position: relative;
    color: #652d90;
    font-size: 26px;
    font-family: 'Playfair Display';
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    max-width: 96%;
    margin: 0 auto;
}
.about-img .about-img-heading .heading::after, .about-img .about-img-heading .heading .shape::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 2px;
    height: 100%;
    background-color: #652d90;
}
.about-img .about-img-heading .heading::before, .about-img .about-img-heading .heading .shape::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 50px;
    height: 2px;
    background-color: #652d90;
}
.about-img .about-img-heading .heading .shape{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 50px;
    height: 100%;
}
.about-img .about-img-heading .heading .shape::before{
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}
.about-img .about-img-heading .heading .shape::after{
    left: auto;
    right: 0;
}
.about-area .container{
    position: relative;
}
.about-area .container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -9.5%;
    width: 100%;
    max-width: 200px;
    height: 244px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/about-shape1.png);
    opacity: 0.5;
}
/*-- about area stop --*/
/*-- service area start --*/
.service-area{
    background: rgb(253,245,214);
    background: -moz-linear-gradient(0deg, rgba(253,245,214,1) 0%, rgba(255,255,255,1) 60%);
    background: -webkit-linear-gradient(0deg, rgba(253,245,214,1) 0%, rgba(255,255,255,1) 60%);
    background: linear-gradient(0deg, rgba(253,245,214,1) 0%, rgba(255,255,255,1) 60%);
}
.card.service-card .card-img-box{
    position: relative;
    width: 100%;
    max-width: 185px;
    margin: 0 auto 0;
}
.card.service-card .card-img{
    width: 100%;
    height: 185px;
    overflow: hidden;
    border: 3px solid #652d90;
    border-radius: 100px;
    position: relative;
    z-index: 0;
}
.card.service-card .card-img img{
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}
.card.service-card .card-img::after{
    position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
    width: 100%;
	max-width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.card.service-card:hover .card-img::after{
    -webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.card.service-card .card-body {
    padding: 25px 25px 0;
}
.card.service-card .card-body .text {
    color: #272727;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}
.card.service-card .card-body .heading{
    color: #652d90;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 8px;
}
.card.service-card .card-body .link{
    color: #f6bc2a;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-transform: capitalize;
    display: inline-flex;
}
.card.service-card .card-body .link:hover{
    color: #652d90;
}
.card.service-card .card-img-box .icon {
    position: absolute;
    top: -20px;
    right: 0;
    width: 100%;
    max-width: 79px;
    height: 79px;
    border-radius: 100%;
    background-color: #f5ba2a;
    padding: 20px;
    box-shadow: inset 0 0 10px rgb(72 35 17 / 80);
}
.card.service-card .card-img-box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
	filter: brightness(0) saturate(100%) invert(26%) sepia(40%) saturate(2185%) hue-rotate(248deg) brightness(83%) contrast(100%);
}
.service-card-box{
    border-right: 1px solid #d4d3cf;
    margin-bottom: 40px;
}
.service-card-box:nth-of-type(4n){
    border-right: 0;
}
.service-area .webcontain{
    margin-bottom: 65px;
}
/*-- service area stop --*/
/*-- whychooseus area start --*/
.card.whychooseus .card-img{
    overflow: hidden;
    height: 397px;
    border-radius: 0;
}
.card.whychooseus .card-img img{
    width: 100%;
    object-fit: cover;
}
.card.whychooseus .text{
    line-height: 27px;
    margin-bottom: 25px;
}
.card.whychooseus .card-body{
    padding-top: 25px;
}
.whychooseus-list-area{
    position: relative;
    background-color: #652d90;
    padding: 90px 0px 90px 35px;
}
.whychooseus-list-area::before{
    content: '';
    position: absolute;
    top: 0;
    right: -1600px;
    width: 1600px;
    height: 100%;
    background-color: #652d90;
}
.whychooseus-list-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 2000px;
    height: 100%;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(../images/whychooseus-shape.png);
    opacity: 0.2;
    filter: brightness(0) saturate(100%) invert(86%) sepia(77%) saturate(5346%) hue-rotate(330deg) brightness(98%) contrast(97%);
}
.whychooseus-media {
    position: relative;
    z-index: 1;
    margin-bottom: 55px;
}
.whychooseus-media:last-child{
    margin-bottom: 0;
}
.whychooseus-media .media-icon{
    width: 100%;
    max-width: 106px;
    height: 96px;
    border-bottom-left-radius: 15px;
    background: rgb(246,188,42);
    background: -moz-linear-gradient(90deg, rgba(246,188,42,1) 0%, rgba(239,170,53,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(246,188,42,1) 0%, rgba(239,170,53,1) 100%);
    background: linear-gradient(90deg, rgba(246,188,42,1) 0%, rgba(239,170,53,1) 100%);
    position: relative;
    top: -27px;
    z-index: 1;
    padding: 15px;
}
.whychooseus-media .media-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.whychooseus-media .media-icon::after{
    content: '';
    position: absolute;
    top: 0;
    right: -22px;
    width: 100%;
    max-width: 22px;
    height: 27px;
    background-color: #3e0a66;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.whychooseus-media .media-body {
    position: relative;
    padding: 25px 20px 40px;
    background-color: #ffffff;
}
.whychooseus-media .media-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75px;
    width: 100%;
    max-width: 75px;
    height: 100%;
    background-color: #ffffff;
}
.whychooseus-media .media-body .heading{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #652d90;
    margin: 0 0 5px;
}
.whychooseus-media .media-body .text{
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
/*-- whychooseus area stop --*/
/*-- getintouch area start --*/
.getintouch-area{
    background-color: #f6f6f6;
}
.getintouch-area .container{
    position: relative;
}
.getintouch-area .container::before, .getintouch-area .container::after {
    content: '';
    position: absolute;
    top: -65px;
    left: -105px;
    width: 100%;
    max-width: 206px;
    height: 260px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/getintouch-shape.png);
}
.getintouch-area .container::after {
    top: auto;
    left: auto;
    bottom: 100px;
    right: -127px;
}
.getintouch-body-area {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}
.getintouch-img{
    height: 531px;
    overflow: hidden;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
.getintouch-img img{
    width: 100%;
    object-fit: cover;
}
.getintouch-form{
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 25px;
    background-color: #f8efff;
}
.getintouch-form .heading{
    color: #652d90;
    font-size: 38px;
    font-family: 'Playfair Display';
    font-weight: 900;
    line-height: 48px;
    margin: 0 0 15px;
}
.getintouch-form .heading strong{
    color: #f6bc2a;
}
.getintouch-form p{
    margin: 0;
}
/*-- getintouch area stop --*/
/*-- footer area start --*/
.footer-area{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/footer-bg.jpg);
    padding-top: 50px;
    margin-top: -100px;
}
.footer .heading{
    color: #efaa35;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 15px;
}
.footer .footer-contact-media {
    margin-bottom: 12px;
}
.footer .footer-contact-media:last-child{
    margin-bottom: 0;
}
.footer .footer-contact-media .media-icon {
    width: 100%;
    max-width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #eeaa35;
    font-size: 14px;
    padding: 8px;
}
.footer .footer-contact-media .media-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .footer-contact-media .media-body{
    padding-left: 8px;
}
.footer .footer-contact-media .media-body, .footer .footer-contact-media .media-body a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    transition: 0.5s;
}
.footer .footer-contact-media .media-body a:hover {
    color: #eeaa35;
}
.footer ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer ul li {
    padding: 0;
    margin: 0 0 12px;
}
.footer ul li:last-child{
    margin: 0;
}
.footer ul li a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}
.footer ul li a:hover{
    color: #eeaa35;
}
.footer-body-area {
    padding: 50px 0;
}
.page-id-12 .footer-body-area{
	padding-top:100px;
}
.copyright{
    border-top: 1px solid #ffffff;
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
}
.copyright a{
    color: #ffffff;
}
.copyright a:hover{
    color: #eeaa35;  
}
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0.2em;
    background: #eeaa35;
    z-index: 999;
    width: 100%;
    max-width: 57px;
    height: 57px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.back-to-top:hover{
    background-color: #652d90;
}
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    /*background: url("../images/banner.jpg") #eee no-repeat center !important;*/
    background-size: cover !important;
    max-width: 100% !important;
    padding: 100px 0 !important;
    margin: 0 0 50px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page .entry-header:before, .blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
    color: #fff;
	position: relative;
    font-size: 32px;
	font-weight: 600;
    text-transform: none;
    z-index: 99;
	margin-bottom: 3px;
}
.breadcrumb-container {
    width: 100%;
	color: #f5bb2a;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #f5bb2a;
}
.page {
	margin-top: 0 !important;
	background-color: #ffffff;
}
/*-- footer area stop --*/
/*-- testimonial area start --*/
.testimonial-area{
    background: rgb(253,245,214);
    background: -moz-linear-gradient(0deg, rgba(253,245,214,1) 0%, rgba(252,252,252,1) 60%);
    background: -webkit-linear-gradient(0deg, rgba(253,245,214,1) 0%, rgba(252,252,252,1) 60%);
    background: linear-gradient(0deg, rgba(253,245,214,1) 0%, rgba(252,252,252,1) 60%);
}
.testimonial-area #sp-testimonial-free-wrapper-38 #sp-testimonial-free-38{
    margin: 0;
}
.testimonial-area .sp-testimonial-item{
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free {
    border: 1px solid #652d90 !important;
    padding: 45px 20px 100px;
    position: relative;
}
.testimonial-area .sp-testimonial-client-testimonial {
    padding-bottom: 15px;
    margin-bottom: 15px !important;
    border-bottom: 1px solid #d3d3d3;
}
.testimonial-area .sp-testimonial-content p{
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #242424 !important;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-client-image {
    margin: 0;
    width: 100%;
    max-width: 72px;
    height: 72px;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-client-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-title {
    margin: 0;
    position: absolute;
    bottom: 46px;
    width: 100%;
    left: 0;
    padding: 0 78px 0px 105px;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-title h3 {
    color: #242424 !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-client-designation {
    text-align: left;
    padding-left: 85px;
    position: relative;
    top: 42px;
}
.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-client-rating{
    position: absolute;
    top: 20px;
    left: 20px;
}
.testimonial-area .webcontain {
    margin-bottom: 30px;
}
.career-form {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    background-color: #652d90;
    padding: 40px;
    border-radius: 10px;
}
.career-form .heading {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}
.career-form .form-group label{
	font-size:16px;
	display:block;
	margin-bottom:10px;
	color:#ffffff;
}
.career-form .form-group p br{
	display:none;
}
.ref_form_box {
	background: url("../images/testimonial_bg.jpg") no-repeat center;
	background-size: cover;
	padding: 35px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 10px;
}
.ref_form_box p {
	margin-bottom: 0 !important;
}
.ref_form_box_heading {
	color: #652d90;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
	font-family: 'Playfair Display';
}
.ref_form_box_heading strong {
	color: #f6bc2a;
}
.ref_form_box_label {
	color: #666;
	margin-top: 15px;
}
.ref_form_box_input input {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box_input select {
	background: url("https://jrtechnologiesweb.in/demo/shinenow-disability-services/wp-content/uploads/2025/01/dropdown.png") #fff no-repeat center right 10px;
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	border-radius: 2px;
	color: #555;
	padding: 10px 30px 10px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.ref_form_box_input textarea {
	resize: none;
	height: 144px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box .contact_btn input {
    font-weight: 600;
    background: #652d90 !important;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 30px;
    padding: 13px 30px 12px;
    color: #ffffff;
}
span.wpcf7-list-item {
	margin: 0 !important;
	display: block;
}
.wpcf7-list-item label {
	display: block;
	position: relative;
	margin-top: 8px;
	color: #555;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.half_check .wpcf7-list-item {
	width: 45%;
}
.wpcf7-list-item label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.wpcf7-list-item-label {
	position: relative;
	padding-left: 22px;
}
.wpcf7-list-item-label::before {
	position: absolute;
	top: 1px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label::before {
	background-color: #ccc;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label::before {
	background-color: #652d90;
	border-color: #652d90;
}
.wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	display: none;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label::after {
	display: block;
}
.wpcf7-list-item label .wpcf7-list-item-label::after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
    content: "";
}
.inner_page_heading {
    color: #652d90;
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    font-family: 'Playfair Display';
    position: relative;
    margin-bottom: 20px;
}
.inner_page_heading strong {
	color: #f6bc2a;
}
.inner-contact-form .form-group input, .inner-contact-form .form-group textarea {
    border-radius: 5px;
    height: 50px;
    border: 1px solid #f6eaff;
    background-color: #f6eaff;
    color: #474747;
    font-size: 14px;
    font-weight: 300;
    padding: 12px;
    width: 100%;
}
.inner-contact-form .form-group textarea{
	height:113px;
}
.contact_page_info {
	position: relative;
	padding-left: 47px;
	color: #666;
	margin-bottom: 25px;
}
.contact_page_info a {
	color:#666;
}
.contact_page_info strong {
	color:#222;
	font-weight: 600;
	font-size:18px;
}
.contact_page_info img {
	position:absolute;
	top:7px;
	left:0;
	width:35px;
}
.inner-contain-body{
	margin-bottom:60px;
}
.inner-img-box img{
	width:100%;
	object-fit:cover;
}
.inner-contain-body .webcontain .heading.small-heading {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
}
.webcontain .text ul li {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
	position: relative;
    padding-left: 24px;
}
.webcontain .text ul li:before {
    background: url("https://jrtechnologiesweb.in/demo/shinenow-disability-services/wp-content/uploads/2025/01/check.png") no-repeat;
    background-size: 100%;
    width: 17px;
    height: 17px;
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
}
.thankyou_text{
	margin-bottom:20px;
}
.error_container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  text-align: center;
}
.error_container img {
  margin-bottom: 20px;
}
.error404 .footer-body-area {
    padding-top: 0;
}
.getintouch-form .form-group{
	margin-bottom:12px;
}
.servicearea .webcontain {
    margin-bottom: 65px;
}
.inner-contact-map{
	height:350px;
	padding-top:40px;
}
.inner-contact-map iframe{
	width:100%;
	height:100%;
}
/*-- testimonial area start --*/
@media (min-width:1517.78px){
    .about-area .container::after {
        right: -7%;
    }
}
@media (min-width:1707.50px){
    .about-area .container::after {
        right: -14%;
    }
}
.mobile-contact {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	justify-content: start;
	z-index: 999;
}
.mobile-contact .link {
	background-color: #541882;
	width: 100%;
	max-width: 50%;
	text-align: center;
	color: #ffff;
	padding: 14px 20px;
	font-size: 15px;
}
.mobile-contact .link:last-child{
	background-color:#eeaa35;
}
.mobile-contact .call-us {
	width: 100%;
	max-width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 100%;
	padding: 12px;
	box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.12);
}
.mobile-contact .call-us img{
	width:100%;
	height:100%;
	object-fit:contain;
}
/*-- responsive start --*/
@media (max-width:991.98px){
	.header-body-area .header-right .header-right-top {
		display: none !important;
	}
	.primary-navigation {
		display: none;
	}
	.header-body-area .logo {
		max-width: 150px;
		padding: 0;
	}
	.header-body-area .logo img {
		object-fit: contain;
	}
	.header-body-area .header-right {
		display: flex;
		align-items: center;
		justify-content: end;
	}
	.header-body-area .header-right .header-right-bottom {
		margin-right: 60px;
		position: relative;
		top: -6px;
	}
	.header-body-area .header-right .header-right-bottom .btnbox .btn{
		border-radius:5px;
		padding:10px 20px;
	}
	.header-area.fix .header-body-area .header-right .header-right-bottom{
		top:2px;
	}
	.banner {
		height: 355px;
	}
	.banner-contain .banner-contain-body .heading {
		font-size: 32px;
		line-height: 48px;
		margin-bottom: 12px;
	}
	.banner-contain .banner-contain-body .text {
		font-size: 15px;
		line-height: 25px;
		margin: 0 0 20px;
	}
	.banner::after {
		height: 100%;
		background-size: 100%;
	}
	.p-80 {
		padding: 40px 0;
	}
	.about-contain {
		padding-left: 0;
	}
	.webcontain .heading {
		font-size: 34px;
		line-height: 44px;
		margin-bottom: 12px;
	}
	.about-img .people-counter {
		max-width: 124px;
		min-height: 124px;
		font-size: 14px;
		line-height: 22px;
	}
	.about-img .people-counter .counter {
		font-size: 26px;
		margin-bottom: 5px;
	}
	.about-img .about-img-heading .heading {
		font-size: 20px;
	}
	.webcontain .text {
		font-size: 15px;
		line-height: 25px;
	}
	.card.service-card .card-img {
		height: 156px;
		border-width: 2px;
	}
	.card.service-card .card-img-box .icon {
		top: -10px;
		right: 0;
		max-width: 55px;
		height: 55px;
		padding: 13px;
	}
	.card.service-card .card-body {
		padding: 15px 0 0;
	}
	.card.service-card .card-body .heading {
		font-size: 16px;
		line-height: 25px;
		margin: 0 0 5px;
	}
	.card.service-card .card-body .text {
		font-size: 14px;
		line-height: 23px;
		margin-bottom: 5px;
	}
	.card.service-card .card-body .link {
		font-size: 14px;
	}
	.card.whychooseus .card-img {
		height: auto;
	}
	.whychooseus-media .media-icon {
		max-width: 100px;
		height: 85px;
	}
	.whychooseus-media .media-icon {
		padding: 15px;
	}
	.testimonial-area .sp-testimonial-item .sp-testimonial-free {
		padding: 50px 15px 100px;
	}
	.testimonial-area .sp-testimonial-content p {
		font-size: 14px !important;
		line-height: 24px !important;
	}
	.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-title {
		padding: 0 50px 0px 105px;
	}
	.getintouch-body-area, .getintouch-form {
		padding: 20px;
	}
	.getintouch-form .heading {
		font-size: 30px;
		line-height: 40px;
	}
	.getintouch-img {
		height: 512px;
	}
	.footer {
		margin-bottom: 22px;
	}
	.footer ul li {
		margin: 0 0 8px;
	}
	.page-id-12 .footer-body-area {
		padding-bottom: 20px;
	}
	.copyright {
		font-size: 14px;
		padding-bottom: 72px;
	}
	.mobile-contact{
		display:flex;
	}
	.back-to-top {
		bottom: 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 60px 0 !important;
		margin-bottom: 40px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 30px;
	}
	.webcontain .text ul li {
		font-size: 15px;
		line-height: 25px;
	}
	.inner-contain-body .webcontain .heading.small-heading {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 10px;
	}
	.career-form .heading {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.career-form {
		padding: 30px;
		max-width:100%;
	}
	.career-form p{
		margin-bottom:0;
	}
	.error_container {
		min-height: auto;
		padding-bottom: 145px !important;
	}
}
@media (max-width:767.98px){
	.header-body-area .logo {
		max-width: 140px;
	}
	.header-body-area .header-right .header-right-bottom {
		margin-right: 28px;
		top: -6px;
	}
	.banner {
		height: 292px;
	}
	.banner::after {
		width: 100%;
	}
	.banner-contain .banner-contain-body .heading {
		margin-bottom: 20px;
	}
	.about-img {
		margin-bottom: 30px;
	}
	.service-area .webcontain {
		margin-bottom: 40px;
	}
	.service-card-box:nth-of-type(2n){
		border-right:0;
	}
	.card.service-card .card-img {
		height: 187px;
	}
	.card.service-card .card-body .heading {
		font-size: 20px;
		line-height: 28px;
		margin: 0 0 10px;
	}
	.card.service-card .card-body .text {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 8px;
	}
	.card.service-card .card-body .link {
		font-size: 16px;
	}
	.testimonial-area .sp-testimonial-item .sp-testimonial-free .sp-testimonial-title h3 {
		font-size: 18px;
	}
	.getintouch-form{
		border-radius:25px;
	}
	.getintouch-img {
		height: auto;
		border-radius: 25px;
		margin-bottom:25px;
	}
	.header-body-area .header-right .header-right-bottom .btnbox{
		display:none !important;
	}
	.inner-img-box{
		margin-bottom:25px;
	}
	.inner-contain-body {
		margin-bottom: 30px;
	}
	.footer-body-area{
		padding-top:0;
	}
	.footer-area{
		margin-top:0;
	}
	.home .footer-area{
		margin-top:-100px;
	}
	.inner-contain-body:last-child{
		margin-bottom:0;
	}
	.service-card-box{
		border-right:0;
	}
	.service-card-box:last-child{
		margin-bottom:0;
	}
	.error_container {
		min-height: auto;
		padding-bottom: 50px !important;
	}
}
@media (max-width:639.98px){
	.banner-contain .banner-contain-body .heading {
		margin-bottom: 5px;
	}
	.whychooseus-list-area {
		padding-left: 15px;
	}
	.service-area .webcontain {
		margin-bottom: 25px;
	}
	.servicearea .webcontain {
		margin-bottom: 40px;
	}
	.ref_form_box {
		padding: 20px;
	}
	.contact_page_info {
		margin-bottom: 15px;
	}
	.contact_page_info strong {
		font-size: 16px;
	}
	.contact_page_info a {
		font-size: 15px;
	}
}
@media (max-width:479.98px){
	.banner {
		height: 260px;
	}
	.banner-contain .banner-contain-body .heading {
		font-size: 25px;
		line-height: 40px;
		margin-bottom: 12px;
	}
	.banner-contain .banner-contain-body .text {
		font-size: 14px;
		line-height: 24px;
		margin: 0 0 15px;
	}
	.btn {
		padding: 12px 22px;
		font-size: 14px;
	}
	.about-img .about-img-heading .heading {
		font-size: 18px;
	}
	.webcontain .heading {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 8px;
	}
	.banner-contain .banner-contain-body .btn-box .btn {
		margin-right: 5px;
	}
	.service-card-box {
		margin-bottom: 25px;
	}
	.card.service-card .card-body .text {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 8px;
	}
	.ref_form_box {
		padding: 20px;
	}
	.career-form {
		padding: 25px;
	}
	.page .entry-header, .blog_page_header {
		padding: 35px 0 !important;
	}
	.breadcrumb-container {
		font-size: 12px;
	}
	.page .entry-title, .blog_page_title {
		font-size: 25px;
	}
	.inner-contact-map {
		height: 300px;
		padding-top: 20px;
	}
	.inner_page_heading {
		font-size: 25px;
	}
}
@media (max-width:375px){}