@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Light.otf') format('opentype');
    font-weight: 100;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-LightOblique.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Book.otf') format('opentype');
    font-weight: 300;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-BookOblique.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Roman.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Oblique.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Medium.otf') format('opentype');
    font-weight: 500;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-MediumOblique.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Heavy.otf') format('opentype');
    font-weight: 800;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-HeavyOblique.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Black.otf') format('opentype');
    font-weight: 900;
}
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-BlackOblique.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}
html {
    overflow-x: hidden;
}
body {
	font-family: 'Avenir';
    background: #fff;
	color: #656565;
	font-size: 16px;
	line-height: 1.12;
	font-weight: 400;
	text-rendering: unset;
    overflow-x: hidden;
    margin: 0;
}
.container {
    max-width: 1748px;
    padding: 0 24px;
    margin: 0 auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}
.col {
    padding: 0 16px;
}
p {
    margin: 0 0 16px;
}
p:last-child {
    margin: 0;
}
a {
    color: inherit;
    transition: all ease-in-out 0.3s;
    text-decoration: none;
}
a:focus {
    outline: none;
}
a:hover, a:focus, a:active {
    text-decoration: none;
}
ul {
    margin: 0;
    list-style: disc;
    padding-left: 20px;
}
ul li {
    margin: 0;
}
sup {
    top: -0.35em;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #656565;
    font-weight: 800;
    margin: 0 0 16px;
}
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
    margin: 0;
}
.h1, h1 {
    font-size: 57px;
    line-height: 1;
}
.h2, h2 {
    font-size: 46px;
    line-height: 1.06;
}
.h3, h3 {
    font-size: 27px;
    line-height: 1;
}
.btn {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    font-family: "Avenir";
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    background-color: #f858b2;
    padding: 28px 40px 24px 40px;
    transition: opacity .8s ease-out, transform .8s ease-out, background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out !important;
}
.btn.small {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1px;
    padding: 25.5px 36px 21.5px 36px;
}
.btn:hover {
    background: #656565;
    color: #fff;
}
.btn.white {
    background: #fff;
    color: #f858b2;
}
.btn.white:hover {
    background: #656565;
    color: #fff;
}

/* Header */

.site-header {
    padding: 25px 0;
    position: absolute;
    width: 100%;
    left: 0;
    background-color: rgb(255 255 255 / 90%);
    z-index: 99;
    transition: all 0.3s ease;
}
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 90%);
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    animation: slideDown .7s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.site-header .head-mid .col.left {
    width: 28%;
}
.site-header .head-mid .col.right {
    width: 72%;
}
.site-header .head-mid .logo-wrap {
    line-height: 0;
}
.site-header .head-mid .logo-wrap a {
    display: inline-block;
}
.site-header .head-mid .logo-wrap a img {
    max-width: 305px;
    height: auto;
}
.site-header.sticky .head-mid .logo-wrap a img {
    max-width: 205px;
}
.site-header .head-mid .right-in {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-header .head-mid .row {
    align-items: center;
}
.site-header .head-mid .nav-wrap ul.menu {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -13px;
}
.site-header .head-mid .nav-wrap ul.menu li {
    margin: 0 13px;
    position: relative;
    padding: 10px 0;
}
.site-header .head-mid .nav-wrap ul.menu li ul.sub-menu {
    position: absolute;
    width: 300px;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f858b2;
    box-shadow: 0px 0px 20px -2px rgb(0 0 0 / 25%);
    transform: translateY(-7px);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
}
.site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover ul.sub-menu {
    display: block;
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover > a {
    color: #f858b2;
}
.site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover a::after {
    background-image: url(../images/angle-down-pink.svg);
    transform: rotate(-180deg);
}
.site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li {
    margin: 0;
    padding: 0;
}
.site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 15px 10px;
    display: inline-block;
    width: 100%;
}
.site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li a:hover {
    background: #656565;
}
.site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li a::before {
    display: none;
}
.site-header .head-mid .nav-wrap ul.menu li a {
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #656565;
    font-weight: 800;
    position: relative;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: flex-start;
}
.site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children > a:after {
    content: '';
    background-image: url(../images/angle-down.svg);
    width: 14px;
    height: 8px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-left: 6px;
    transition: all ease-in-out .4s;
}
.site-header .head-mid .nav-wrap ul.menu li a:hover::after, .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children.current-menu-item > a::after {
    background-image: url(../images/angle-down-pink.svg);
}
.site-header .head-mid .nav-wrap ul.menu li a:hover, .site-header .head-mid .nav-wrap ul.menu li.current-menu-item a {
    color: #f858b2;
}
.site-header .head-mid .nav-wrap ul.menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}
.site-header .head-mid .nav-wrap ul.menu li a:hover::before,
.site-header .head-mid .nav-wrap ul.menu li.current-menu-item a::before {
    width: 100%;
}
.site-header .head-mid .right-in .btn-wrap {
    margin-left: 38px;
}
.site-header .head-mid .right-in .btn {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1px;
    padding: 25.5px 36px 21.5px 36px;
}
.site-footer {
    background: #f858b2;
    color: #fff;
    padding: 42px 0;
}
.site-footer .row {
    align-items: flex-end;
}
.site-footer .row .col.mid {
    width: 26%;
}
.site-footer .row .col.side {
    width: 37%;
    padding-bottom: 32px;
}
.footer-contact p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.11;
    color: #ffffff;
    margin: 0;
}
.footer-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo a {
    display: inline-block;
}
.footer-logo img {
    max-width: 174px;
    height: auto;
}
.footer-tagline {
    font-size: 22px;
    line-height: 1.09;
    color: #ffffff;
    margin: 30px 0 0;
}
.footer-nav a:hover {
    text-decoration: underline;
}
.footer-contact .address {
    margin: 0 0 20px;
}
.footer-contact p a {
    color: inherit;
    display: inline-block;
}
.footer-contact p a:hover {
    text-decoration: underline;
    opacity: .8;
}
.footer-links {
    text-align: right;
}
.footer-links ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.footer-links ul.menu li a {
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 300;
    display: inline-block;
}
.footer-links ul.menu li a:hover {
    text-decoration: underline;
    opacity: .8;
}
.footer-links .legal {
    margin: 30px 0 0;
}
.site-main {
    padding: 168px 0 0;
}
/* .home .site-main {
    padding: 0;
} */
.home-hero {
    position: relative;
    height: 918px;
}
.home-hero .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: unset;
    margin: unset;
}
.home-hero .home-hero-right {
    max-width: 40.5%;
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 140px 0;
}
.home-hero .hero-content-in h1 {
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.home-hero .hero-content-in h5.tagline {
    font-size: 32px;
    line-height: 1.06;
    color: #ffffff;
    font-family: "Avenir";
    font-weight: 400;
    margin: 0 0 40px;
}
.home-hero .hero-content-in .text p {
    font-size: 24px;
    line-height: 1.33;
    color: #ffffff;
}
.home-hero .hero-content-in .text {
    margin: 0 0 38px;
}
.home-hero .hero-content-in {
    max-width: 595px;
}
.feature-bar {
    background-color: #e8e9ec;
    padding: 40px 0;
}
.feature-bar .container {
    max-width: 1528px;
}
.feature-bar .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -20px;
}
.feature-bar .feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    width: auto;
    padding: 0 20px;
}
.feature-bar .feature .feature-icon {
    line-height: 0;
    padding-right: 16px;
}
/* .feature-bar .feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #a8abae;
} */
.feature-bar .feature-grid .seprator {
    height: 76px;
    width: 1px;
    background: #a8abae;
}
.feature-bar .feature-grid .seprator:last-child {
    display: none;
}
.feature-bar .feature .text {
    position: relative;
    top: 2px;
}
.feature-bar .feature .feature-icon img {
    height: auto;
    width: auto;
}
.feature-bar .feature p {
    font-size: 22px;
    line-height: 1.27;
    color: #656565;
    font-weight: 500;
    margin: 0;
}
.award-section {
    padding: 125px 0;
    position: relative;
}
.award-section::before {
    content: '';
    background-image: url(../images/a-pattern-bottom.png);
    width: 522px;
    height: 266px;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: absolute;
    bottom: 0;
    right: 0;
}
.award-section .container {
    max-width: 1656px;
    position: relative;
    z-index: 2;
}
.award-section .col.right {
    width: 44.4%;
}
.award-section .col.left {
    width: 55.6%;
}
.award-section .award-content h2 {
    margin: 0 0 32px;
    color: #f858b2;
    font-weight: 400;
}
.award-section .award-content h2 span {
    font-weight: 800;
}
.award-section .award-content .text {
    margin: 0 0 40px;
}
.award-section .award-content .text p {
    font-size: 27px;
    line-height: 1.29;
    color: #656565;
    font-weight: 400;
}
.award-section .award-content {
    max-width: 790px;
}
.award-slider-wrap .award-slide {
    line-height: 0;
    border-radius: 24px;
    background-color: #e5e6e7;
    display: inline-block;
    padding: 23.5px;
    position: relative;
    width: 316px !important;
    margin: auto;
    transition: background-color ease-in-out .3s;
}
.award-slider-wrap .slick-track {
    display: flex !important;
}
.award-slider-wrap .slick-track .slick-slide {
    height: inherit !important;
    line-height: 0;
    display: flex;
    align-items: center;
    /* width: 360px; */
}
.award-slider-wrap .slick-track .slick-slide.slick-center {
    z-index: 20;
}
.award-slider-wrap .slick-track .slick-slide.slick-center .award-slide {
    width: 306px !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.award-slider-wrap .slick-track .slick-slide {
    height: inherit !important;
    line-height: 0;
    display: flex;
    align-items: center;
    opacity: 0;
}
.award-slider-wrap .slick-track .slick-slide.slick-active {
    opacity: 1;
}
.award-slider-wrap .slick-track .slick-slide.slick-center + .slick-active > div {
    position: relative;
}
.award-slider-wrap .slick-track .slick-slide.slick-center + .slick-active > div .award-slide {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.award-slider-wrap .slick-slide.slick-current.slick-active .award-slide {
    border-radius: 37px;
    background-color: #f858b2;
    width: 100%;
}
.award-slider-wrap .slick-slide.slick-current.slick-active {
    position: relative;
    /* width: 360px;
    margin: 0 -70px; */
}
.award-slider-wrap .award-slide img {
    width: 100%;
    height: auto;
}
.award-slider-wrap .slick-slide > div {
    width: 100%;
}
.award-slider-wrap {
    max-width: 696px;
    overflow: hidden;
    margin-left: auto;
}
.award-slider-wrap .award-slider {
    margin: 0;
}
.award-slider-wrap .award-slider ul.slick-dots {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
}
.award-slider-wrap .award-slider ul.slick-dots li {
    margin: 0 2px;
    width: auto;
    height: auto;
    line-height: 0;
}
.award-slider-wrap .award-slider ul.slick-dots li button {
    opacity: 0.2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f858b2;
    transition: all ease .3s;
}
.award-slider-wrap .award-slider ul.slick-dots li button::before {
    display: none;
}
.award-slider-wrap .award-slider ul.slick-dots li.slick-active button, .award-slider-wrap .award-slider ul.slick-dots li button:hover {
    opacity: 1;
}
.services {
    background-color: #fff;
    background-image: url(../images/curve.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 125px 0;
    position: relative;
}
.services .container {
    position: relative;
    z-index: 2;
    max-width: 1593px;
}
.services::before {
    content: '';
    background-image: url(../images/service-bg-bottom.png);
    width: 597px;
    height: 413px;
    background-repeat: no-repeat;
    background-position: bottom left;
    position: absolute;
    bottom: 0;
    left: 0;
}
.services::after {
    content: '';
    background-image: url(../images/service-bg-top.png);
    width: 702px;
    height: 532px;
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    top: 0;
    right: 0;
}
.services .services-head {
    max-width: 1044px;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 90px;
}
.services .services-head h2 {
    color: #fff;
    margin: 0 0 20px;
}
.services .services-head .text p {
    font-size: 27px;
    line-height: 1.29;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 25px;
}
.services .services-items {
    display: flex;
    flex-wrap: wrap;
    margin: -37px;
    justify-content: center;
}
.services .services-items .service-item {
    width: 33.33%;
    text-align: center;
    padding: 37px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}
.services .services-items .service-item .service-photo {
    line-height: 0;
    margin: 0 0 32px;
}
.services .services-items .service-item .service-photo img {
    width: 296px;
    height: 296px;
    border: 4.5px solid #656565;
    border-radius: 50%;
    object-fit: cover;
}
.services .services-items .service-item h3 {
    font-size: 27px;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    color: #656565;
    font-weight: 800;
    margin: 0 auto 20px;
    max-width: 335px;
}
.services .services-items .service-item .text {
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 25px;
    flex: 1;
}
.services .services-items .service-item .text p {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.12;
    color: #656565;
    text-align: center;
    font-weight: 400;
}
.services .services-items .service-item a.learn-more {
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1;
    text-decoration: underline;
    text-transform: uppercase;
    color: #656565;
    font-weight: 800;
}
.services .services-items .service-item a.learn-more:hover {
    color: #f858b2;
}
.difference-wrap {
    padding: 125px 0;
    background-image: url(../images/diffrence-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.difference-wrap .container {
    max-width: 1598px;
}
.difference-head {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 70px;
}
.difference-head h2 {
    color: #f454a9;
    margin: 0 0 20px;
}
.difference-head p {
    font-size: 27px;
    line-height: 1.29;
    color: #ffffff;
    font-weight: 400;
}
.difference-wrap .pillars {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -28px;
}
.difference-wrap .pillars .pillar {
    text-align: center;
    padding: 0 28px;
    position: relative;
    width: 25%;
}
.pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    height: 77%;
    width: 1px;
    background: #fff;
}
.difference-wrap .pillars .pillar .pillar-icon {
    line-height: 0;
    display: inline-block;
}
.difference-wrap .pillars .pillar .pillar-icon img {
    max-height: 107px;
    width: auto;
}
.difference-wrap .pillar h4 {
    margin-top: -5px;
    margin-bottom: 15px;
    font-size: 23px;
    letter-spacing: 1px;
    line-height: 1.03;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
}
.difference-wrap .pillar p {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
    color: #ffffff;
}
.difference-wrap .difference-cta {
    text-align: center;
    margin-top: 76px;
}
.difference-wrap .pillars .pillar .pillar-content {
    max-width: 220px;
    margin: 0 auto;
}
.testimonials-wrap {
    padding: 125px 0;
    text-align: center;
}
.testimonials-wrap .testimonial-title {
    color: #656565;
    margin-bottom: 50px;
}
.testimonials-wrap .testimonial-slider {
    max-width: 1592px;
    margin: 0 auto;
    padding: 119px 75px;
    overflow: hidden;
}
.testimonials-wrap .testimonial-slide {
    padding-bottom: 100%;
    position: relative;
}
.testimonials-wrap .testimonial-slide .testimonial-slide-in {
    position: absolute;
    background-color: rgb(245 85 171 / 20%);
    color: #fff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 65px;
    padding-top: 55px;
    top: 0;
    left: 0;
    transition: all ease-in-out .3s;
}
.testimonials-wrap .testimonial-slide .testimonial-slide-in::after {
    content: '';
    background-image: url(../images/lotus-img.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 30px);
    z-index: 0;
}
.testimonials-wrap .testimonial-slide .testimonial-slide-in * {
    position: relative;
    z-index: 1;
}
.testimonials-wrap .testimonial-slide .testimonial-slide-in * {
    opacity: .6;
    transition: all ease-in-out .3s;
}
.testimonial-slide .testimonial-quote {
    margin: 0 0 12px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.25;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
    display: inline-block;
    position: relative;
}
.testimonial-slide .testimonial-quote::before, .testimonial-slide .testimonial-quote::after {
    content: '“';
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1.28;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
    position: absolute;
    top: -12px;
    left: 5px;
}
.testimonial-slide .testimonial-quote::after {
    content: '“';
    top: -12px;
    left: unset;
    right: 2px;
}
.testimonial-slide .testimonial-body {
    margin: 0 auto 30px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.25;
    color: #ffffff;
    max-width: 93%;
}
.testimonials-wrap .testimonial-slide .author {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
}
.testimonials-wrap .slick-slide.slick-current.slick-active .testimonial-slide {
    transform: scale(1.49);
}
.testimonials-wrap .slick-slide.slick-current.slick-active .testimonial-slide .testimonial-slide-in {
    background-color: #f555ab;
}
.testimonials-wrap .slick-slide.slick-current.slick-active .testimonial-slide .testimonial-slide-in * {
    opacity: 1;
}
.testimonials-wrap .testimonial-slider .slick-list {
    overflow: unset;
}
.testimonials-wrap .slick-slide.slick-current.slick-active {
    position: relative;
    z-index: 2;
}
.testimonials-wrap .testimonial-slider button.slick-arrow {
    display: inline-block;
    background-image: url(../images/arrow-left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 41px;
    z-index: 2;
}
.testimonials-wrap .testimonial-slider button.slick-arrow::before {
    display: none;
}
.testimonials-wrap .testimonial-slider button.slick-prev.slick-arrow {
    left: 0;
}
.testimonials-wrap .testimonial-slider button.slick-next.slick-arrow {
    right: 0;
    background-image: url(../images/arrow-right.svg);
}
.testimonials-wrap .testimonial-slider .slick-list .slick-slide {
    opacity: 0;
}
.testimonials-wrap .testimonial-slider .slick-list .slick-slide.slick-active {
    opacity: 1;
}
.contact-wrap {
    padding: 125px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.contact-wrap::before {
    content: '';
    background-image: url(../images/form-bg-pattern.png);
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: bottom left;
    width: 883px;
    height: 732px;
}
.contact-wrap .contact-card {
    border-radius: 100px;
    background-color: rgb(255 255 255 / 80%);
    padding: 115px 180px;
}
.contact-wrap .contact-card .title-wrap {
    text-align: center;
    padding: 0 0 70px;
}
.contact-wrap .contact-card .title-wrap h2 {
    color: #F454A9;
    margin: 0 0 15px;
}
.contact-wrap .contact-card .title-wrap h2:last-child {
    margin: 0;
}
.contact-wrap .contact-card .title-wrap p {
    font-size: 30px;
    line-height: 1;
    color: #F454A9;
}
.form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]) {
    font-size: 31px;
    letter-spacing: 2px;
    line-height: 1;
    color: rgb(101 101 101 / 0.4);
    font-weight: 900;
    background: transparent;
    border-radius: 0;
    outline: none;
    border: 0;
    border-bottom: 1px solid #656565;
    padding: 8px 0;
    width: 100%;
    font-family: 'Avenir';
}
.form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"])::placeholder {
    color: rgb(101 101 101 / 0.4);
    text-transform: uppercase;
}
.form-wrap form .field-set {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.form-wrap form .field-set .field {
    width: 100%;
    padding: 0 20px;
    margin: 0 0 56px;
}
.form-wrap form .field-set .field.col-50 {
    width: 50%;
}
.form-wrap form .field-set .field.col-30 {
    width: 28%;
}
.form-wrap form .field-set .field.col-70 {
    width: 72%;
}
.form-wrap form .field-set .field label {
    font-size: 31px;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    color: #656565;
    font-weight: 900;
    margin: 0 0 15px;
    display: inline-block;
}
.form-wrap form .field-set .field p {
    margin: 0;
}
.form-wrap form .field-set .field.checkbox .wpcf7-list-item label {
    font-size: 25px;
    line-height: 1.56;
    color: rgb(101, 101, 101);
    font-weight: 500;
    text-transform: unset;
    letter-spacing: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.form-wrap form .field-set .field.checkbox .wpcf7-list-item {
    display: block;
    margin: 0 0 0 50px;
}
.form-wrap form .field-set .field.checkbox .wpcf7-list-item input[type="checkbox"] {
    display: none;
}
.form-wrap form .field-set .field.checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
    content: '';
    width: 23px;
    height: 23px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #656565;
    position: absolute;
    top: 6px;
    left: 0;
    transition: all ease .3s;
}
.form-wrap form .field-set .field.checkbox .wpcf7-list-item label .wpcf7-list-item-label {
    position: relative;
    padding-left: 43px;
    cursor: pointer;
}
.form-wrap form .field-set .field.checkbox .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background: #656565;
}
.form-wrap .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1;
    margin: 10px 0 0;
}
.form-wrap form .field-set.button-set {
    position: absolute;
    bottom: 0;
    right: 0;
}
.form-wrap form .field-set.button-set .field {
    margin: 0;
}
.form-wrap form .field-set .field.checkbox {
    margin: 0;
}
.form-wrap form {
    position: relative;
}
.form-wrap form .field-set.button-set .field p {
    display: flex;
    flex-direction: row-reverse;
}
.form-wrap form .field-set.button-set .field input {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 800;
    font-family: "Avenir";
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    background-color: #f858b2;
    padding: 28px 40px 24px 40px;
    cursor: pointer;
    box-shadow: none;
    border: none;
    transition: all ease-in-out .3s;
}
.form-wrap form .field-set.button-set .field input:hover {
    background: #656565;
    color: #fff;
}
div.form-wrap .wpcf7-response-output {
    background: #ffffffab;
    border: none;
    color: green;
    font-size: 20px;
    padding: 22px 31px 18px;
    text-align: center;
}
div.form-wrap form.invalid .wpcf7-response-output {
    color: #ffb900;
    background: #ffffffe8;
}
div.form-wrap form.failed .wpcf7-response-output {
    color: #dc3232;
}
.contact-card div.form-wrap .wpcf7-response-output {
    max-width: 75%;
}
.form-wrap form.wpcf7-form.sent .wpcf7-response-output {
    background: rgb(0 128 0 / 25%);
    color: green;
    border: none !important;
    padding: 16px 20px 12px !important;
    font-size: 16px;
    margin: 20px 0 0;
    display: block;
}
.form-wrap form.wpcf7-form.sent .field-set.button-set {
    bottom: 66px;
}
.home-hero .hero-img {
    line-height: 0;
    width: 100%;
    height: 100%;
}
.home-hero .hero-img svg {
    width: 100%;
    height: 100%;
}
.home-hero .hero-img.mobile {
    display: none;
}
.site-header .head-mid .mobile-toggle-wrap {
    display: none;
}
.form-wrap .wpcf7-not-valid-tip:not(:nth-child(2)) {
    display: none;
}
.meet-founder {
    padding: 125px 0;
    position: relative;
}
.meet-founder .container {
    max-width: 1666px;
}
.meet-founder::before {
    content: '';
    background-image: url(../images/about-top-left.png);
    width: 684px;
    height: 435px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
}
.meet-founder .col.left {
    width: 38.9%;
}
.meet-founder .col.right {
    width: 61.1%;
}
.meet-founder .video-img-wrap .img-wrap {
    position: relative;
    padding-bottom: 100%;
}
.meet-founder .video-img-wrap .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #F858B2;
}
.meet-founder .video-img-wrap {
    line-height: 0;
    position: relative;
}
.meet-founder .content-wrap {
    max-width: 885px;
    margin-left: auto;
}
.meet-founder .content-wrap h2 {
    font-weight: 500;
    margin: 0 0 25px;
}
.meet-founder .content-wrap h2 span {
    font-weight: 800;
    color: #F858B2;
}
.meet-founder .content-wrap .text p {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.327;
    margin: 0 0 32px;
}
.meet-founder .content-wrap .text p:last-child {
    margin: 0;
}
.meet-founder .row {
    align-items: center;
}
.meet-founder .video-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 99.45%;
    height: 105.5%;
    border-radius: 50%;
    border: 2px solid #F858B2;
    transform: translate(-50%, -50%) rotate(75.35deg);
}
.our-mission {
    position: relative;
    padding: 125px 0;
    background-image: url(../images/our-mission-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.our-mission .container {
    max-width: 1666px;
}
.our-mission::before {
    content: '';
    background-image: url(../images/om-pattern.png);
    width: 764px;
    height: 459px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    position: absolute;
    bottom: 0;
    left: 0;
}
.our-mission .row {
    align-items: center;
}
.our-mission .img-wrap {
    line-height: 0;
}
.our-mission .img-wrap img {
    width: 100%;
    height: auto;
}
.our-mission .col.right {
    width: 45.2%;
}
.our-mission .col.left {
    width: 54.8%;
}
.our-mission .content-wrap h2 {
    color: #FFFFFF;
    font-weight: 500;
    margin: 0 0 25px;
}
.our-mission .content-wrap .text p {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.32;
    color: #fff;
}
.our-mission .content-wrap .text {
    margin: 0 0 44px;
}
.our-mission .container, .meet-founder .container, .our-approach .container, .meet-our-team .container {
    position: relative;
    z-index: 1;
}
.our-approach {
    position: relative;
    padding: 125px 0;
}
.our-approach::before {
    content: '';
    background-image: url(../images/approach-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 789px;
    height: 334px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-position: bottom right;
}
.our-approach .title-wrap {
    text-align: center;
    padding: 0 0 60px;
    max-width: 1180px;
    margin: 0 auto;
}
.our-approach .title-wrap h2 {
    margin: 0 0 15px;
    color: #F454A9;
}
.our-approach .title-wrap p {
    font-weight: 400;
    font-size: 27px;
    line-height: 1.34;
}
.our-approach .approach-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}
.our-approach .approach-items .approach-item {
    width: 25%;
    padding: 0 30px;
    position: relative;
}
.our-approach .approach-items .approach-item .approach-item-in {
    text-align: center;
    max-width: 313px;
    margin: 0 auto;
}
.our-approach .approach-items .approach-item .icon {
    line-height: 0;
    height: 127px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}
.our-approach .approach-items .approach-item .icon img {
    max-height: 100%;
    width: auto;
}
.our-approach .approach-items .approach-item h4 {
    font-weight: 900;
    font-size: 22px;
    line-height: 1.16;
    color: #F858B2;
    max-width: 244px;
    margin: 0 auto;
    padding: 0 0 13px;
}
.our-approach .approach-items .approach-item p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.15;
}
.our-approach .btn-wrap {
    padding: 52px 0 0;
    text-align: center;
}
.our-approach .approach-items .approach-item::after {
    content: '';
    width: 1px;
    height: 74%;
    background: #F858B2;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.our-approach .approach-items .approach-item:last-child::after {
    display: none;
}
.meet-our-team {
    padding: 125px 0;
    position: relative;
    background-image: url(../images/bg-team.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.meet-our-team::before {
    content: '';
    background-image: url(../images/meet-team-pattern.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 1065px;
    height: 561px;
}
.meet-our-team .title-wrap {
    text-align: center;
    padding: 0 0 70px;
}
.meet-our-team .title-wrap h2 {
    color: #F858B2;
}
.meet-our-team .container {
    max-width: 1666px;
}
.meet-our-team .team-list {
    display: flex;
    flex-wrap: wrap;
    margin: -30px -42px;
    justify-content: center;
}
.meet-our-team .team-list .team-item {
    padding: 30px 42px;
    width: 25%;
    text-align: center;
}
.meet-our-team .team-list .team-item .content h4 {
    font-weight: 900;
    font-size: 27px;
    line-height: 1.38;
    margin: 0;
    color: #F858B2;
    text-transform: uppercase;
}
.meet-our-team .team-list .team-item .content p.designation {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    margin: 0;
    color: #F858B2;
}
.meet-our-team .team-list .team-item .content .description p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.16;
    color: #656565;
}
.meet-our-team .team-list .team-item .content .description {
    margin: 12px 0 0;
}
.meet-our-team .btn-wrap {
    text-align: center;
    padding: 58px 0 0;
}
.meet-our-team .team-list .team-item .img-wrap {
    line-height: 0;
    margin: 0 0 15px;
}
.meet-our-team .team-list .team-item .img-wrap img {
    width: 288px;
    height: 288px;
    object-fit: cover;
    border-radius: 50%;
    border: 4.5px solid #F858B2;
}
.cta-block {
    padding: 7.55% 0;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 6294px;
    height: 1491px;
    background: radial-gradient(39.26% 81.29% at 50% 50%, #F858B2 0%, rgba(248, 88, 178, 0.94) 3%, rgba(248, 88, 178, 0.44) 33%, rgba(248, 88, 178, 0.12) 54%, rgba(248, 88, 178, 0) 63%);
    transform: translateX(-50%);
    z-index: -1;
}
.cta-block .cta-content h2 {
    color: #F555AB;
    margin: 0 0 20px;
}
.cta-block .cta-content .text p {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.19;
}
.cta-block .cta-content .text {
    margin: 0 0 35px;
}
.cta-block .cta-content {
    width: 50%;
    margin-left: auto;
}
.cta-block .container {
    max-width: 1638px;
}
.cta-block .cta-content {
    width: 36.75%;
    margin-left: auto;
}
.cta-block .img-wrap {
    width: 60.3vw;
    line-height: 0;
    position: absolute;
    top: 48%;
    left: -6.5vw;
    transform: translateY(-50%);
}
.cta-block .img-wrap .img-wrap-in {
    position: relative;
    padding-bottom: 100%;
}
.cta-block .img-wrap .img-wrap-in img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0% 50% 50% 0;
    border: 9px solid #A8ABAE;
}
/* .page-id-19 .site-main {
    padding: 0;
} */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 13% 0 13%;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.service-hero{
    position: relative;
    overflow: hidden;
    padding: 13% 0 13%;
    background-image: url(../images/service-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.about-hero .about-hero-content h1 {
    color: #F858B2;
    margin: 0 0 12px;
}
.about-hero .about-hero-content .text p,.service-hero-content-in .text p{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.34;
    color: #656565;
}
.about-hero .about-hero-content .text {
    margin: 0 0 32px;
}
.about-hero .container {
    max-width: 1698px;
    position: relative;
    z-index: 1;
}
.about-hero .about-hero-content {
    width: 44.8%;
}
.about-hero .img-wrap {
    width: 63.15vw;
    line-height: 0;
    position: absolute;
    top: 50%;
    right: -11.6vw;
    transform: translateY(-50%);
}
.about-hero .img-wrap .img-wrap-in {
    position: relative;
    padding-bottom: 100%;
}
.about-hero .img-wrap .img-wrap-in img {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 0 50%;
    border: 9px solid #A8ABAE;
}
.about-hero::before {
    content: '';
    background-image: url(../images/about-hero-pattern.png);
    width: 684px;
    height: 441px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}
.service-hero::before {
    content: '';
    background-image: url(../images/pink-pattern.png);
    width: 612px;
    height: 490px;
    position: absolute;
    top: -110px;
    left: -50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}
.services.layout-alternating::after {
    content: '';
    background-image: url(../images/white-pattern.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    top: 322px;
    right: 0;
}
.service-hero .img-wrap .img-wrap-in img {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 0 50%;
    border: 9px solid #F858B2;
}
.meet-founder .video-img-wrap .video-wrap {
    position: relative;
}
.meet-founder .video-img-wrap .video-wrap .video-iframe-sec {
    padding-bottom: 100%;
    position: relative;
    border: 2px solid #F858B2;
    border-radius: 50%;
    overflow: hidden;
}
.meet-founder .video-img-wrap .video-wrap .video-placeholder {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.meet-founder .video-img-wrap .video-wrap .video-placeholder > img.placeholder-image {
    border-radius: 15px;
    height: 100%;
    left: 0;
    line-height: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}
.meet-founder .video-img-wrap .video-wrap .play-button {
    left: 50%;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.meet-founder .video-img-wrap .video-wrap .video-iframe-sec .video-iframe {
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.meet-founder .video-img-wrap .video-wrap .video-iframe-sec iframe {
    border-radius: 15px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.meet-founder .video-img-wrap .video-wrap .play-button .video-button {
    display: inline-block;
}
.meet-founder .video-img-wrap .video-wrap .play-button .video-button svg {
    max-width: 65px;
    height: auto;
}
.meet-founder .video-img-wrap .video-wrap .play-button .video-button:hover {
    opacity: .8;
}
/* body.transparent-header .site-main{
    padding: 0;
}  */
.service-hero .img-wrap {
    width: 63.15vw;
    line-height: 0;
    position: absolute;
    top: 50%;
    right: -11.6vw;
    transform: translateY(-50%);
}
.service-hero .about-hero-content{
    width: 44.8%;
}
.service-hero .img-wrap .img-wrap-in{
    position: relative;
    padding-bottom: 100%;
}
.service-hero-content-in{
    max-width: 44.8%;
}
.home-hero-right [data-aos],.about-hero-content [data-aos],.service-hero [data-aos]{
    opacity: 1 !important;
    transform: none !important;
}
/* Base Alternating Section Styles */
.services.layout-alternating{
    background-color: #fff;
    background-image: url(../images/services-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 125px 0;
    position: relative;
}
.services.layout-alternating .services-items {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}
.services.layout-alternating .service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row;
    width: 100%;
    padding: 0;
}
.services.layout-alternating .service-item .text p{
    text-align: left;
}
.services.layout-alternating .services-items .service-item h3,
.services.layout-alternating .services-items .service-item .text{
    max-width: 100%;
}
.services.layout-alternating .service-photo {
    position: relative;
    margin: 0 0 0px;
}
.services.layout-alternating .service-photo:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 99.45%;
    height: 105.5%;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(75.35deg);
}
.services.layout-alternating .service-item.odd .service-photo:before{
    border: 2px solid #656565;
}
.services.layout-alternating .service-item.even .service-photo:before{
    border: 2px solid #F858B2;
}
.services.layout-alternating .service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
}
.services.layout-alternating .service-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}
.services.layout-alternating .services-items .service-item .service-photo img{
    width: 607px;
    height: 607px;
}
.services.layout-alternating::before{
    background-image: url(../images/pink-service-pattern.png);
    right: 0;
    width: 700px;
    height: 600px;
    left: auto;
    background-size: contain;
}
.services.layout-alternating .service-item.even {
    flex-direction: row-reverse;
}
.home-hero .hero-img svg use[href="#img1"] {
    transform: scale(1.5) translateY(-5%) !important;
    transform-box: fill-box;
    transform-origin: center;
}
.services.layout-alternating .service-item h3{
    color: #F858B2;
}
.home-care-cta {
    width: 100%;
    padding: 125px 0;
}
.home-care-cta__inner {
    max-width: 1594px;
    margin: 0 auto;
    padding: 35px 90px;
    display: flex;
    align-items: center;
    gap: 35px;
    background: #f7f7f7;
    border: 1px solid #656565;
    border-radius: 40px;
    box-sizing: border-box;
}
.home-care-cta__icon {
    flex: 0 0 128px;
    width: 128px;
    height: 128px;
}
.home-care-cta__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
.home-care-cta__content {
    flex: 1;
}
.home-care-cta__title {
    color: #f34ba5;
}
.home-care-cta__text {
    font-size: 25px;
    line-height: 1.29;
    color: #656565;
    font-weight: 400;
}
.home-care-cta__text p {
    margin: 0;
}
.home-care-cta__button-wrap {
    flex: 0 0 auto;
}
.about-hero.blog-hero .img-wrap {
    left: -7.93vw;
    width: 55.5vw;
}
.about-hero.blog-hero .img-wrap .img-wrap-in img {
    border-radius: 0 50% 50% 0;
    object-fit: contain;
    object-position: 50% 35%;
}
.about-hero.blog-hero .about-hero-content {
    width: 47.8%;
    margin-left: auto;
}
.about-hero.blog-hero {
    background-image: url(../images/our-blog-bg.png);
    padding: 14.25% 0;
    background-position: bottom center;
}
.about-hero.blog-hero .about-hero-content h1 {
    color: #fff;
}
.about-hero.blog-hero .about-hero-content .text p {
    color: #fff;
    font-size: 29px;
}
.about-hero.blog-hero .about-hero-content .text {
    margin: 0;
}
.about-hero.blog-hero .about-hero-content .about-hero-content-in {
    max-width: 660px;
}
.about-hero.blog-hero::before {
    right: 0;
    left: unset;
    background-image: url(../images/blog-hero-circle.png);
    height: 393px;
    background-position: bottom right;
}
.blog-list {
    padding: 125px 0;
    position: relative;
}
.blog-list::before {
    content: '';
    background-image: url(../images/blog-list-circle.png);
    width: 683px;
    height: 486px;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: top right;
}
.blog-list .container {
    max-width: 1729px;
    position: relative;
    z-index: 1;
}
.blog-list .blog-items {
    display: flex;
    flex-wrap: wrap;
    margin: -31px -32.5px;
}
.blog-list .blog-items .blog-item {
    width: 33.33%;
    padding: 31px 32.5px;
    line-height: 0;
}
.blog-list .blog-items .blog-item .blog-item-in {
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 1px solid #A8ABAE;
    border-radius: 70px;
    overflow: hidden;
}
.blog-item .img-wrap {
    line-height: 0;
    position: relative;
    padding-bottom: 67%;
    overflow: hidden;
}
.blog-item .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out .3s;
}
.blog-item .img-wrap .date {
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    background: #F858B2;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px 26px;
    min-width: 184px;
    text-align: center;
    text-transform: uppercase;
}
.blog-item .content {
    padding: 48px;
}
.blog-item .content h3 {
    color: #F858B2;
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 10px;
    max-width: 345px;
    text-transform: uppercase;
}
.blog-item .content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.18;
    color: #656565;
    margin: 0 0 17px;
    max-width: 395px;
}
.blog-item .content .read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.4;
    color: #F858B2;
    transition: all ease-in-out .3s;
    text-transform: uppercase;
}
.blog-item .content .read-more svg {
    max-width: 16px;
    height: auto;
    margin-left: 16px;
    position: relative;
    top: -2px;
    transition: all ease-in-out .3s;
}
.blog-item .content .read-more svg path {
    transition: all ease-in-out .3s;
}
.blog-item .blog-item-in:hover .img-wrap img {
    transform: scale(1.1);
}
.blog-item .blog-item-in:hover .content .read-more svg {
    margin-left: 20px;
}
.stay-connect {
    padding: 75px 0;
    background-image: url(../images/newsletter-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.stay-connect .title-wrap h2 {
    color: #fff;
    margin: 0 0 5px;
}
.stay-connect .title-wrap p {
    color: #fff;
}
.stay-connect .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]) {
    color: #fff;
    border-color: #fff;
    font-weight: 900;
}
.stay-connect .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"])::placeholder {
    color: #fff;
}
.stay-connect .title-wrap {
    margin: 0 0 40px;
}
.stay-connect .form-wrap form .field-set.button-set {
    position: static;
    margin-top: 0;
}
.stay-connect .form-wrap form .field-set .field {
    margin: 0 0 50px;
}
.stay-connect .form-wrap form .field-set.button-set .field p {
    display: flex;
    flex-direction: unset;
    justify-content: flex-start;
}
.stay-connect .form-wrap form .field-set.button-set .field input {
    color: #656565;
    background: #fff;
}
.stay-connect .form-wrap form .field-set.button-set .field input:hover {
    background: #f858b2;
    color: #fff;
}
.stay-connect .container {
    max-width: 1558px;
    position: relative;
    z-index: 1;
}
.stay-connect .form-wrap form .field-set.button-set .field {
    margin: 0;
}
.stay-connect .form-wrap {
    max-width: 1192px;
}
.stay-connect::before {
    content: '';
    background-image: url(../images/nb-pattern.png);
    width: 682px;
    height: 402px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
.stay-connect .title-wrap p {
    font-size: 30px;
    line-height: 1.36;
}
.single-blog-info {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.single-blog-info .container {
    position: relative;
    z-index: 1;
}
.single-blog-info .hero-info .img-wrap {
    position: relative;
    padding-bottom: 27.18%;
}
.single-blog-info .hero-info .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 65px;
    border: 1px solid #A8ABAE;
}
.single-blog-info .date-container {
    position: absolute;
    top: 235px;
    left: 0;
    z-index: 2;
}
.single-blog-info .date-label {
    /* position: absolute; */
    top: 235px;
    left: 0;
    font-weight: 900;
    font-size: 31px;
    line-height: 1;
    padding: 9px 50px 3px;
    text-transform: uppercase;
    background: #F858B2;
    color: #fff;
    /* z-index: 2; */
    display: inline-block;
}
.single-blog-info .hero-info .title-info {
    max-width: 1482px;
    margin: 0 auto;
    padding: 75px 0 48px;
}
.single-blog-info .hero-info .title-info h1 {
    color: #F858B2;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.38;
    font-weight: 900;
}
.single-blog-info .hero-info .title-info .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.single-blog-info .hero-info .title-info .meta div {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.39;
    position: relative;
}
.single-blog-info .hero-info .title-info .meta div::after {
    content: '|';
    color: #F858B2;
    margin: 0 8px;
}
.single-blog-info .hero-info .title-info .meta div:last-child::after {
    display: none;
}
.single-blog-info .content-wrap {
    max-width: 1482px;
    margin: 0 auto;
}
.single-blog-info .content-wrap .content-wrap-in > div {
    margin: 0 0 60px;
}
.single-blog-info .content-wrap .content-wrap-in > div:last-child {
    margin: 0;
}
.single-blog-info .content-wrap .text-wrap p, .single-blog-info .content-wrap .text-wrap ul li {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.21;
    margin: 0 0 50px;
}
.single-blog-info .content-wrap .text-wrap p strong, .single-blog-info .content-wrap .text-wrap ul li strong{
    font-weight: 900;
}
.single-blog-info .content-wrap .text-wrap ul li {
    margin: 0 0 15px;
}
.single-blog-info .content-wrap .text-wrap ul li:last-child {
    margin: 0;
}
.single-blog-info .content-wrap .text-wrap p:last-child {
    margin: 0;
}
.single-blog-info .content-wrap .text-wrap h2, .single-blog-info .content-wrap .text-wrap h3, .single-blog-info .content-wrap .text-wrap h4, .single-blog-info .content-wrap .text-wrap h5, .single-blog-info .content-wrap .text-wrap h6 {
    margin: 0 0 28px;
    color: #F858B2;
    text-transform: uppercase;
}
.single-blog-info .content-wrap .text-wrap h2:last-child, .single-blog-info .content-wrap .text-wrap h3:last-child, .single-blog-info .content-wrap .text-wrap h4:last-child, .single-blog-info .content-wrap .text-wrap h5:last-child, .single-blog-info .content-wrap .text-wrap h6:last-child {
    margin: 0;
}
.single-blog-info .content-wrap .text-wrap ul {
    list-style: none;
    margin: 0 0 50px;
    padding: 0;
}
.single-blog-info .content-wrap .text-wrap ul:last-child {
    margin: 0;
}
.single-blog-info .content-wrap .text-wrap ul li {
    margin: 0 0 15px;
    position: relative;
    padding-left: 30px;
}
.single-blog-info .content-wrap .text-wrap ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #F858B2;
    position: absolute;
    top: 9px;
    left: 0;
    border-radius: 50%;
}
.single-blog-info .content-wrap .text-wrap p a, .single-blog-info .content-wrap .text-wrap ul li a {
    color: inherit;
    text-decoration: underline;
}
.single-blog-info .content-wrap .text-wrap p a:hover , .single-blog-info .content-wrap .text-wrap ul li a:hover {
    color: #F858B2;
}
.single-blog-info .content-wrap .quote-block .quote-block-in p {
    font-weight: 400;
    font-size: 53px;
    line-height: 1.13;
    max-width: 945px;
    margin: 0 auto;
    text-align: center;
}
.single-blog-info .content-wrap .quote-block .quote-block-in p strong {
    font-weight: 900;
}
.single-blog-info .content-wrap .quote-block .quote-block-in {
    border-top: 2px solid #F555AB;
    border-bottom: 2px solid #F555AB;
    padding: 50px 75px;
    position: relative;
}
.single-blog-info .content-wrap .quote-block .quote-block-in::before {
    content: '“';
    font-weight: 900;
    font-size: 53px;
    line-height: 1.13;
    color: #F858B2;
    position: absolute;
    top: 47px;
    left: 45px;
}
.single-blog-info .content-wrap .quote-block .quote-block-in::after {
    content: '“';
    font-weight: 900;
    font-size: 53px;
    line-height: 1.13;
    color: #F858B2;
    position: absolute;
    top: 47px;
    right: 45px;
    transform: scaleX(-1);
}
.single-blog-info .content-wrap .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 65px;
    border: 1px solid #A8ABAE;
}
.single-blog-info .content-wrap .img-wrap {
    position: relative;
    padding-bottom: 26.65%;
}
.cta-bottom {
    max-width: 1482px;
    margin: 0 auto;
    padding: 55px 0 72px;
}
.cta-bottom .cta-bottom-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgb(245 85 171 / 10%);
    border: 1px solid #F555AB;
    padding: 51px 90px;
    border-radius: 65px;
}
.cta-bottom .cta-bottom-in .btn-wrap {
    width: 331px;
}
.cta-bottom .cta-bottom-in .btn-wrap .btn {
    width: 100%;
}
.cta-bottom .cta-bottom-in .text-wrap {
    width: calc(100% - 331px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 32px;
}
.cta-bottom .cta-bottom-in .text-wrap .icon-wrap {
    width: 122px;
    line-height: 0;
}
.cta-bottom .cta-bottom-in .text-wrap .icon-wrap img {
    width: 100%;
    height: auto;
}
.cta-bottom .cta-bottom-in .text-wrap .content-wrap {
    width: calc(100% - 122px);
    padding-left: 50px;
}
.cta-bottom .cta-bottom-in .text-wrap .content-wrap h3 {
    font-weight: 800;
    font-size: 38px;
    line-height: 1.35;
    color: #F555AB;
    margin: 0;
}
.cta-bottom .cta-bottom-in .text-wrap .content-wrap p {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.28;
    color: #656565;
}
.cta-bottom .cta-bottom-in .text-wrap .content-wrap p strong {
    font-weight: 800;
}
.single-blog-info .share-post .share-post-in {
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-blog-info .share-post .share-post-in p {
    margin: 0;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.36;
    color: #F555AB;
    text-transform: uppercase;
}
.single-blog-info .share-post .share-post-in ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0 -16px;
}
.single-blog-info .share-post .share-post-in ul li {
    line-height: 0;
    margin: 0 16px;
}
.single-blog-info .share-post .share-post-in p {
    margin: 0;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.36;
    color: #F555AB;
    text-transform: uppercase;
    padding-right: 56px;
    position: relative;
    top: 4px;
}
.single-blog-info .share-post .share-post-in ul li a {
    display: inline-block;
}
.single-blog-info .share-post .share-post-in ul li a:hover {
    opacity: .7;
}
.single-blog-info::after {
    content: '';
    background-image: url(../images/blog-single-circle-bottom.png);
    width: 803px;
    height: 891px;
    position: absolute;
    bottom: -290px;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
.single-blog-info::before {
    content: '';
    background-image: url(../images/blog-single-circle-top.png);
    width: 810px;
    height: 838px;
    position: absolute;
    top: -165px;
    left: 0;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}
.single-blog-info .content-wrap .text-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 65px;
    border: 1px solid #A8ABAE;
}
.contact-wrap.contact-page {
    background-image: url(../images/contact-page-bg.png);
    background-position: top center;
    overflow: hidden;
}
.contact-wrap.contact-page .title-wrap {
    text-align: center;
    padding: 0 0 100px;
}
.contact-wrap.contact-page .title-wrap h1 {
    color: #fff;
    margin: 0 0 8px;
}
.contact-wrap.contact-page .title-wrap p {
    color: #fff;
    font-weight: 400;
    font-size: 27px;
    line-height: 1.37;
}
.contact-wrap.contact-page .contact-card {
    background: rgb(255 255 255 / 85%);
}
.contact-wrap.contact-page .contact-card .title-wrap {
    padding: 0 0 70px;
}
.contact-wrap.contact-page .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]) {
    color: #656565;
}
.contact-wrap.contact-page .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"])::placeholder {
    color: #656565;
}
.contact-wrap.contact-page::before {
    content: '';
    background-image: url(../images/cp-bottom.png);
    width: 602px;
    height: 458px;
}
.contact-wrap.contact-page::after {
    content: '';
    background-image: url(../images/cp-top.png);
    width: 750px;
    height: 726px;
    position: absolute;
    top: -168px;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}
.contact-wrap.contact-page .container {
    position: relative;
    z-index: 1;
}
.contact-wrap .contact-card .title-wrap .contact-sub {
    color: #F454A9;
}
.about-hero.service-single-hero .img-wrap {
    right: -7.93vw;
    width: 55.5vw;
}
.about-hero.service-single-hero .img-wrap .img-wrap-in img {
    object-fit: contain;
    object-position: 50% 35%;
}
.about-hero.service-single-hero .about-hero-content {
    width: 49.8%;
    padding-left: 85px;
}
.about-hero.service-single-hero {
    background-image: url(../images/service-s-hero.png);
    padding: 8.65% 0;
    background-position: bottom center;
}
.about-hero.service-single-hero .about-hero-content h1 {
    color: #656565;
    max-width: 546px;
}
.about-hero.service-single-hero .about-hero-content .text p {
    color: #656565;
    font-size: 29px;
}
.about-hero.service-single-hero .about-hero-content .text {
    margin: 0;
}
.about-hero.service-single-hero .about-hero-content .about-hero-content-in {
    max-width: 736px;
}
.about-hero.service-single-hero::before {
    right: unset;
    bottom: unset;
    top: 0;
    left: 0;
    background-image: url(../images/ss-hero-top.png);
    width: 612px;
    height: 318px;
    background-position: top left;
}
.service-sub-list {
    padding: 125px 0;
    position: relative;
    background-image: url(../images/sl-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}
.service-sub-list .container {
    position: relative;
    z-index: 1;
    max-width: 1708px;
}
.service-sub-list .title-wrap {
    text-align: center;
    padding: 0 0 60px;
}
.service-sub-list .title-wrap h2 {
    color: #F454A9;
    line-height: 1.36;
}
.ss-list-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -30px 0;
}
.ss-list-items .ss-list-item {
    width: 33.33%;
    position: relative;
    border-right: 1px solid #F858B2;
    margin: 30px 0;
}
.ss-list-items .ss-list-item h3 {
    font-weight: 900;
    font-size: 28px;
    line-height: 1.35;
    color: #F858B2;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 24px;
}
.ss-list-items .ss-list-item .ss-list-in {
    padding: 45px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ss-list-items .ss-list-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ss-list-items .ss-list-item ul li {
    font-weight: 400;
    font-size: 23px;
    line-height: 1.24;
    position: relative;
    color: #656565;
    padding-left: 18px;
}
.ss-list-items .ss-list-item ul li:before {
    content: '';
    width: 9px;
    height: 9px;
    background: #656565;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 50%;
}
.ss-list-items .ss-list-item:nth-child(3n), .ss-list-items .ss-list-item:last-child {
    border-right: 0;
}
.service-cta {
    padding: 78px 0 0;
    max-width: 1077px;
    margin: 0 auto;
    text-align: center;
}
.service-cta h2 {
    color: #F454A9;
    margin: 0 0 33px;
    line-height: 1.15;
}
.service-sub-list::after {
    content: '';
    background-image: url(../images/sl-pattern.png);
    width: 956px;
    height: 813px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
.service-sub-list.service-img-content::after {
    content: '';
    background-image: url(../images/service-detail-new.png);
    width: 1035px;
    height: 473px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
.faqs-wrap {
    padding: 125px 0;
    background: #656565;
    position: relative;
    color: #fff;
}
.faqs-wrap::before {
    content: '';
    background-image: url(../images/faq-pattern.png);
    width: 512px;
    height: 367px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    opacity: .4;
}
.faqs-wrap .title-wrap {
    margin: 0 0 5px;
}
.faqs-wrap .title-wrap h2 {
    color: #fff;
}
.faqs-list .faq-accordion .faq-item {
    border-bottom: 1px solid #FFFFFF;
    padding: 40px 112px;
}
.faqs-list .faq-accordion .faq-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.faqs-list .faq-accordion .faq-item .faq-toggle {
    display: inline-block;
    width: 100%;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.36;
    color: #fff;
    position: relative;
    padding-right: 30px;
    outline: none !important;
}
.faqs-list .faq-accordion .faq-item .faq-inner {
    margin: 15px 0 0;
    display: none;
}
.faqs-list .faq-accordion .faq-item .faq-inner p, .faqs-list .faq-accordion .faq-item .faq-inner ul li {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.36;
    color: #fff;
    margin: 0 0 16px;
}
.faqs-list .faq-accordion .faq-item .faq-inner p:last-child, .faqs-list .faq-accordion .faq-item .faq-inner ul li:last-child {
    margin: 0;
}
.faqs-list .faq-accordion .faq-item .faq-toggle::after {
    content: '+';
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 6px;
    right: 0;
}
.faqs-list .faq-accordion .faq-item .faq-toggle.active::after {
    content: '-';
}
.faqs-list .faq-accordion .faq-item .faq-inner ul {
    margin: 0 0 16px;
}
.faqs-list .faq-accordion .faq-item .faq-inner ul:last-child {
    margin: 0;
}
.faqs-wrap .container {
    position: relative;
    z-index: 1;
}
.service-img-content .img-content-wrap .img-content-in {
    display: flex;
    flex-wrap: wrap;
}
.service-img-content .img-content-wrap .img-content-in .right {
    width: 60.5%;
}
.service-img-content .img-content-wrap .img-content-in .img-wrap-parent {
    position: relative;
    line-height: 0;
    width: 100%;
}
.service-img-content .img-content-wrap .img-content-in .img-wrap-parent .img-wrap {
    position: relative;
    padding-bottom: 100%;
}
.service-img-content .img-content-wrap .img-content-in .img-wrap-parent .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #656565;
}
.service-img-content .img-content-wrap .img-content-in .img-wrap-parent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 99.45%;
    height: 105.5%;
    border-radius: 50%;
    border: 2px solid #656565;
    transform: translate(-50%, -50%) rotate(75.35deg);
}
.service-img-content .img-content-wrap .img-content-in .left {
    width: 39.5%;
    padding: 40px 0;
    padding-right: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap h2 {
    color: #F454A9;
    line-height: 1.36;
    margin: 0 0 14px;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap p {
    font-weight: 400;
    font-size: 29px;
    line-height: 1.24;
    color: #656565;
    margin: 0 0 30px;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap p:last-child {
    margin: 0;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap h3 {
    font-weight: 900;
    font-size: 28px;
    line-height: 1.35;
    color: #F858B2;
    margin: 54px 0 13px;
    text-transform: uppercase;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap h3:first-child {
    margin-top: 0;
}
.service-sub-list.service-img-content .container {
    max-width: 1729px;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap ul li {
    font-weight: 400;
    font-size: 27px;
    line-height: 1.24;
    color: #656565;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap ul {
    margin: 0 0 30px;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap ul:last-child {
    margin: 0;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap {
    height: 100%;
    border-left: 1px solid #F858B2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0;
    padding-left: 88px;
}
.service-img-content .img-content-wrap .img-content-in .content-wrap .how-help {
    margin-top: 24px;
}
.no-content-wrap {
    padding: 125px 0;
    background-image: url(/wp-content/uploads/2026/08/join-our-team-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.no-content-wrap .sub-title {
    margin: 0 0 15px;
    font-weight: 700;
    letter-spacing: 1px;
}
.no-content-wrap h1 {
    color: #f858b2;
}
.no-content-wrap .content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.no-content-wrap .content .text p {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.34;
    color: #656565;
}
.no-content-wrap .content .text {
    margin: 0 0 28px;
}
.social-links {
    margin: 20px 0 0;
}
.social-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    align-items: center;
}
.social-links ul li a {
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links ul li {
    margin-right: 16px;
}
.social-links ul li a svg {
    fill: #f858b2;
    max-width: 18px;
    height: auto;
}
.social-links ul li a:hover {
    opacity: 0.7;
}
.postid-240 .about-hero.service-single-hero .about-hero-content h1, .postid-248 .about-hero.service-single-hero .about-hero-content h1 {
    max-width: 100%;
}
.site-header .head-mid .nav-wrap ul.menu li#menu-item-32 ul.sub-menu li:first-child {
    display: none;
}

/* Responsive */

@media (min-width: 2000px) {
    .single-blog-info .date-container {
        max-width: 1875px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}
@media (max-width: 1900px) {
    .single-blog-info .hero-info {
        padding: 0 20px;
    }
    .single-blog-info .date-label {
        left: -20px;
    }
}
@media (max-width: 1750px) {
    .about-hero.blog-hero .img-wrap {
        width: 56.5vw;
    }
    .about-hero.service-single-hero .img-wrap {
        width: 56.5vw;
    }
}
@media (max-width: 1680px) {
    .h1, h1 {
        font-size: 52px;
    }
    .h2, h2 {
        font-size: 43px;
    }
    .home-hero .hero-content-in h5.tagline {
        font-size: 30px;
    }
    /* .home-hero {
        padding: 294px 0 125px;
    } */
    .award-section .col.right {
        width: 50%;
    }
    .award-section .col.left {
        width: 50%;
    }
    .award-section .award-content .text p {
        font-size: 25px;
    }
    .testimonial-slide .testimonial-quote {
        font-size: 12px;
    }
    .testimonial-slide .testimonial-body {
        font-size: 12px;
    }
    .testimonial-slide .testimonial-quote::before, .testimonial-slide .testimonial-quote::after {
        top: -16px;
    }
    .testimonials-wrap .testimonial-slide .author {
        font-size: 13px;
    }
    .testimonials-wrap .testimonial-slide .testimonial-slide-in {
        padding: 0 50px;
        padding-top: 45px;
    }
    .testimonial-in {
        max-width: 301px;
        margin: 0 auto;
    }
    .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]), .form-wrap form .field-set .field label {
        font-size: 28px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item {
        margin: 0 0 0 35px;
    }
    .home-hero {
        height: 800px;
    }
    .home-hero .home-hero-right {
        padding: 110px 0;
    }
    .about-hero .about-hero-content h1 {
        font-size: 48px;
    }
    .about-hero::before, .meet-founder::before, .our-mission::before, .our-approach::before, .meet-our-team::before {
        background-size: 70%;
    }
    .meet-founder .content-wrap {
        padding-left: 40px;
    }
    .meet-founder .content-wrap .text p, .our-mission .content-wrap .text p {
        font-size: 23px;
    }
    .our-approach .title-wrap p {
        font-size: 25px;
    }
    .cta-block .cta-content .text p {
        font-size: 25px;
    }
    .meet-our-team .team-list .team-item .content p.designation {
        font-size: 23px;
    }
    .meet-our-team .team-list .team-item .content h4 {
        font-size: 23px;
    }
    .about-hero.blog-hero {
        padding: 13.25% 0;
    }
    .blog-list::before {
        background-size: 70%;
    }
    .blog-item .content h3 {
        font-size: 24px;
    }
    .blog-item .content p {
        font-size: 18px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap h3 {
        font-size: 34px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap p {
        font-size: 22px;
    }
    .single-blog-info .content-wrap .text-wrap p, .single-blog-info .content-wrap .text-wrap ul li {
        font-size: 25px;
        margin: 0 0 40px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in p {
        font-size: 46px;
    }
    .single-blog-info::before, .single-blog-info::after {
        background-size: 70%;
    }
    .about-hero.service-single-hero {
        padding: 8.65% 0;
    }
    .about-hero.service-single-hero .about-hero-content .text p {
        font-size: 25px;
    }
    .about-hero.service-single-hero .about-hero-content {
        padding-left: 50px;
    }
    .ss-list-items .ss-list-item .ss-list-in {
        padding: 45px 60px;
    }
    .service-sub-list::after {
        background-size: 75%;
    }
    .faqs-list .faq-accordion .faq-item .faq-inner p, .faqs-list .faq-accordion .faq-item .faq-inner ul li {
        font-size: 23px;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle {
        font-size: 28px;
        padding-right: 50px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap p {
        font-size: 26px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap ul li {
        font-size: 23px;
    }
    .privacy-policy-block:before {
        background-size: 65%;
        background-position: top right;
    }
    .privacy-policy-block:after {
        background-size: 65%;
        background-position: bottom left;
    }
    .single-blog-info .date-container {
        top: 200px;
    }
    .service-sub-list.service-img-content::after {
        background-size: 75%;
    }
}
@media (max-width: 1570px) {
    .single-blog-info .content-wrap {
        max-width: 100%;
        padding: 0 20px;
    }
    .about-hero.blog-hero .about-hero-content .text p {
        font-size: 28px;
    }
}
@media (max-width: 1440px) {
    .h1, h1 {
        font-size: 48px;
    }
    .h2, h2 {
        font-size: 38px;
    }
    .home-hero .hero-content-in h5.tagline {
        font-size: 26px;
    }
    .home-hero .hero-content-in .text p {
        font-size: 22px;
    }
    .btn {
        font-size: 19px;
        padding: 26px 38px 22px 38px;
    }
    .feature-bar .feature p {
        font-size: 18px;
    }
    .feature-bar .feature .feature-icon img {
        max-height: 55px;
        width: auto;
    }
    .award-section .award-content .text p {
        font-size: 20px;
    }
    .btn {
        font-size: 18px;
        padding: 24px 30px 20px 30px;
    }
    .award-section .col.left {
        width: 48%;
    }
    .award-section .col.right {
        width: 52%;
    }
    .award-slider-wrap .slick-track .slick-slide.slick-center .award-slide {
        width: 250px !important;
    }
    .award-slider-wrap .award-slide {
        width: 250px !important;
    }
    .services::after, .award-section::before, .services::before {
        background-size: 70%;
    }
    .services .services-items .service-item h3 {
        font-size: 22px;
        max-width: 300px;
    }
    .services .services-items .service-item .text p {
        font-size: 20px;
    }
    .services .services-items .service-item a.learn-more {
        font-size: 20px;
    }
    .services .services-items .service-item .service-photo img {
        width: 250px;
        height: 250px;
    }
    .difference-wrap .pillar p {
        font-size: 18px;
    }
    .pillar:not(:last-child)::after {
        top: 50%;
        height: 70%;
    } 
    .contact-wrap .contact-card .title-wrap p {
        font-size: 25px;
    }
    .contact-wrap .contact-card {
        padding: 115px 80px;
    }
    .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]), .form-wrap form .field-set .field label {
        font-size: 24px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label {
        font-size: 22px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item {
        margin: 0 0 0 28px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
        top: 4px;
    } 
    .testimonials-wrap .testimonial-slider {
        padding: 8% 50px;
    }
    .home-hero .hero-img.desktop svg use#\<Image\>[href="#img2"] {
        transform: scale(1.34) translateY(-13%) translateX(4%) !important;
    }
    .home-hero .hero-img.desktop svg use[href="#img2"] {
        transform: scale(1.32) translateY(-9%) translateX(8%) !important;
    }
    .contact-wrap::before {
        background-size: 65%;
    }
    .our-approach .approach-items .approach-item p {
        font-size: 18px;
    }
    .meet-our-team .team-list .team-item .img-wrap img {
        width: 225px;
        height: 225px;
    }
    .service-hero::before{
        opacity: 0.4;
    }
    .service-hero {
        padding: 15% 0 11%;
    }
    .service-hero::before{
        left: -130px;
    }
    .about-hero.blog-hero {
        padding: 12% 0;
    }
    .blog-item .content {
        padding: 36px;
    }
    .blog-item .img-wrap .date {
        font-size: 20px;
    }
    .blog-list .blog-items .blog-item {
        padding: 25px;
    }
    .blog-list .blog-items {
        margin: -25px;
    }
    .blog-item .content h3 {
        font-size: 21px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in p {
        font-size: 40px;
        max-width: 700px;
    }
    .cta-bottom .cta-bottom-in {
        padding: 48px;
    }
    .cta-bottom .cta-bottom-in .btn-wrap {
        width: 270px;
    }
    .cta-bottom .cta-bottom-in .text-wrap {
        width: calc(100% - 270px);
    }
    .cta-bottom .cta-bottom-in .text-wrap .icon-wrap {
        width: 92px;
        line-height: 0;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap {
        width: calc(100% - 92px);
        padding-left: 35px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap h3 {
        font-size: 30px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap p {
        font-size: 20px;
    }
    .single-blog-info .date-label {
        font-size: 25px;
        top: 60px;
    }
    .single-blog-info .hero-info .title-info .meta div {
        font-size: 25px;
    }
    .contact-wrap.contact-page::after {
        background-size: 80%;
    }
    .about-hero.service-single-hero {
        padding: 6.65% 0;
    }
    .about-hero.service-single-hero .img-wrap .img-wrap-in img {
        object-position: 50% 22%;
    }
    .about-hero.service-single-hero .about-hero-content {
        width: 44.8%;
        padding-left: 0;
    }
    .ss-list-items .ss-list-item .ss-list-in {
        padding: 40px 42px;
    }
    .faqs-list .faq-accordion .faq-item {
        padding: 40px 70px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap {
        padding-left: 40px;
    }
    .service-img-content .img-content-wrap .img-content-in .left {
        padding-right: 50px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap p {
        font-size: 25px;
    }
    .single-blog-info .date-container {
        top: 180px;
    }
}
@media (max-width: 1350px) {
    .testimonial-slide .testimonial-quote {
        font-size: 12px;
    }
    .testimonial-slide .testimonial-body {
        font-size: 12px;
        margin: 0 0 25px;
        max-width: 95%;
    }
    /* .testimonials-wrap .testimonial-slide .author {
        font-size: 12px;
    } */
    /* .testimonial-in {
        max-width: 250px;
        margin: 0 auto;
    } */
    .about-hero.blog-hero .about-hero-content .text p {
        font-size: 24px;
    }
    .about-hero.service-single-hero .about-hero-content .text p {
        font-size: 25px;
    }
}
@media (max-width: 1280px) {
    .testimonial-slide .testimonial-quote {
        font-size: 9px;
    }
    .testimonial-slide .testimonial-body {
        font-size: 11px;
    }
    .testimonials-wrap .testimonial-slide .author {
        font-size: 12px;
    }
    .testimonial-in {
        max-width: 250px;
        margin: 0 auto;
    }
    .h1, h1 {
        font-size: 42px;
    }
    .about-hero .about-hero-content h1 {
        font-size: 42px;
    }
    .about-hero::before, .meet-founder::before, .our-mission::before, .our-approach::before, .meet-our-team::before {
        background-size: 65%;
    }
    .meet-our-team .team-list .team-item {
        padding: 30px 20px;
    }
    .meet-our-team .team-list {
        margin: -30px -20px;
    }
    .blog-list::before {
        background-size: 65%;
    }
    .single-blog-info::before, .single-blog-info::after {
        background-size: 65%;
    }
    .ss-list-items .ss-list-item h3 {
        font-size: 25px;
    }
}
@media (max-width: 1199px) {
    .feature-bar .feature .feature-icon img {
        max-height: 45px;
    }
    .h2, h2 {
        font-size: 34px;
    }
    .award-section .award-content .text p {
        font-size: 18px;
    }
    .services .services-head .text p {
        font-size: 22px;
    }
    .services .services-items .service-item .text p {
        font-size: 18px;
    }
    .services .services-items .service-item h3 {
        font-size: 20px;
    }
    .difference-wrap .pillar h4 {
        font-size: 20px;
    }
    .difference-wrap .pillars .pillar .pillar-icon img {
        max-height: 95px;
    }
    .difference-wrap .pillar p {
        font-size: 17px;
    }
    .difference-head p {
        font-size: 22px;
    }
    .testimonial-slide .testimonial-body {
        font-size: 8px;
        max-width: 100%;
        margin: 0 0 16px;
    }
    .testimonials-wrap .testimonial-slide .author {
        font-size: 10px;
    }
    .testimonials-wrap .testimonial-slide .testimonial-slide-in {
        padding: 0 40px;
        padding-top: 35px;
    }
    .testimonial-in {
        max-width: 200px;
    }
    .testimonial-slide .testimonial-quote::before, .testimonial-slide .testimonial-quote::after {
        top: -16px;
    }
    .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]), .form-wrap form .field-set .field label {
        font-size: 20px;
    }
    .form-wrap form .field-set.button-set .field input {
        font-size: 18px;
        padding: 24px 30px 20px 30px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label {
        font-size: 20px;
        line-height: 1.7;
    }
    .form-wrap form .field-set .field {
        margin: 0 0 40px;
    }
    .footer-tagline {
        font-size: 18px;
        margin: 20px 0 0;
    }
    .footer-logo img {
        max-width: 140px;
    }
    .site-footer .row .col.side {
        padding-bottom: 24px;
    }
    .contact-wrap .contact-card {
        border-radius: 50px;
    }
    .h1, h1 {
        font-size: 36px;
    }
    .home-hero .hero-content-in h5.tagline {
        font-size: 22px;
    }
    .home-hero .hero-content-in .text p {
        font-size: 19px;
    }
    .home-hero {
        height: 670px;
    }
    .home-hero .home-hero-right {
        padding: 60px 0;
    }
    .site-header .head-mid .mobile-toggle-wrap {
        display: block;
        line-height: 0;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle {
        line-height: 0;
        display: inline-block;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle .bar .line {
        background-color: #656565;
        border-radius: 50px;
        display: block;
        height: 5px;
        margin: 7.5px auto;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        width: 46px;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle.active .bar .line:first-child {
        transform: translateY(12px) rotate(45deg);
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle.active .bar .line:nth-child(2) {
        opacity: 0;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle.active .bar .line:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
    .site-header .head-mid .nav-wrap {
        background: rgb(255 255 255 / 90%);
        /* box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .102); */
        display: none;
        height: auto;
        max-height: calc(100vh - 168px);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 40px 24px;
        position: fixed;
        right: 0;
        top: 115px;
        width: 100%;
    }
    .site-header .head-mid .right-in .btn-wrap {
        display: none;
    }
    .site-header .head-mid .nav-wrap ul.menu {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }
    .site-header .head-mid .nav-wrap ul.menu li {
        border-bottom: 1px solid rgba(33, 36, 41, .2);
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .site-header .head-mid .nav-wrap ul.menu li a {
        display: inline-block;
        padding: 16px 0;
        width: 100%;
    }
    .site-header .head-mid .nav-wrap ul.menu li a::before {
        display: none;
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children > a:after {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin: 0;
    }
    .site-header .head-mid .nav-wrap ul.menu li ul.sub-menu {
        display: none;
        position: static;
        transform: unset;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        transform: unset;
        transition: none;
    }
    .site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li a {
        color: #656565;
        padding: 16px 0;
        width: 100%;
    }
    .site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li:last-child {
        border-bottom: 0;
    }
    .site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li:first-child {
        border-top: 1px solid rgba(33, 36, 41, .2);
    }
    .site-header .head-mid .nav-wrap ul.menu li:first-child {
        border-top: 1px solid rgba(33, 36, 41, .2);
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover a::after {
        transform: translateY(-50%) rotate(-180deg);
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover ul.sub-menu {
        display: none;
        transform: unset;
        opacity: unset;
        visibility: unset;
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover a::after {
        transform: translateY(-50%);
        background-image: url(../images/angle-down.svg);
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children a.active {
        color: #f858b2;
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children a.active::after {
        background-image: url(../images/angle-down-pink.svg);
        transform: translateY(-50%) rotate(-180deg);
    }
    .site-header .head-mid .nav-wrap ul.menu li.menu-item-has-children:hover > a {
        color: #f858b2;
    }
    .site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li a:hover {
        background: transparent;
    }
    .site-header .head-mid .nav-wrap ul.menu li ul.sub-menu li.current-menu-item a {
        color: #f858b2;
    }
    .site-header.sticky .head-mid .nav-wrap {
        top: 108px;
    }
    html.menu-active {
        overflow: hidden;
    }
    .about-hero .about-hero-content h1 {
        font-size: 31px;
    }
    .about-hero .about-hero-content .text p,.service-hero-content-in .text p{
        font-size: 20px;
    }
    .about-hero {
        padding: 13% 0;
    }
    .about-hero .img-wrap {
        width: 78.15vw;
        right: -20.6vw;
    }
    .about-hero .img-wrap .img-wrap-in img {
        object-position: 70% 50%;
    }
    .our-approach .approach-items .approach-item .icon {
        height: 100px;
    }
    .our-approach .approach-items .approach-item h4 {
        font-size: 20px;
    }
    .meet-our-team .team-list .team-item {
        width: 33.33%;
    }
    .cta-block .cta-content .text p {
        font-size: 20px;
    }
    .site-header{
        padding: 15px 0;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle .bar .line{
        width: 36px;
        height: 4px;
    }
    .site-header .head-mid .logo-wrap a img{
        max-width: 220px;
    }
    .about-hero .about-hero-content{
        width: 41.8%;
    }
    .site-main {
        padding: 115px 0 0;
    }
    .about-hero.blog-hero .img-wrap .img-wrap-in img {
        object-position: 50% 23%;
    }
    .about-hero.blog-hero .about-hero-content .text p {
        font-size: 22px;
    }
    .blog-list .blog-items .blog-item {
        width: 50%;
    }
    .stay-connect::before {
        background-size: 75%;
    }
    .single-blog-info .hero-info .img-wrap img, .single-blog-info .content-wrap .img-wrap img, .cta-bottom .cta-bottom-in {
        border-radius: 40px;
    }
    .single-blog-info .content-wrap .text-wrap p, .single-blog-info .content-wrap .text-wrap ul li {
        font-size: 21px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in p {
        font-size: 35px;
    }
    .cta-bottom .cta-bottom-in .btn-wrap {
        width: 100%;
        padding-left: 127px;
    }
    .cta-bottom .cta-bottom-in .text-wrap {
        width: 100%;
    }
    .cta-bottom .cta-bottom-in .btn-wrap .btn {
        width: auto;
    }
    .cta-bottom .cta-bottom-in .text-wrap {
        width: 100%;
        padding: 0;
        margin: 0 0 20px;
    }
    .cta-bottom .cta-bottom-in {
        padding: 35px;
    }
    .single-blog-info .share-post .share-post-in p {
        font-size: 22px;
        padding-right: 40px;
    }
    .single-blog-info .share-post .share-post-in ul li a svg {
        max-width: 38px;
    }
    .contact-wrap.contact-page .title-wrap {
        padding: 0 0 80px;
    }
    .about-hero.service-single-hero .img-wrap .img-wrap-in img {
        object-position: 50% 8%;
    }
    .about-hero.service-single-hero .about-hero-content .text p {
        font-size: 22px;
    }
    .about-hero.service-single-hero::before {
        background-size: 60%;
    }
    .ss-list-items .ss-list-item ul li {
        font-size: 20px;
    }
    .ss-list-items .ss-list-item ul li:before {
        top: 6px;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle {
        font-size: 24px;
    }
    .faqs-list .faq-accordion .faq-item .faq-inner p, .faqs-list .faq-accordion .faq-item .faq-inner ul li {
        font-size: 20px;
    }
    .faqs-list .faq-accordion .faq-item {
        padding: 40px 50px;
    }
    .faqs-wrap::before {
        background-size: 80%;
    }
    .site-header .head-mid .nav-wrap ul.menu li#menu-item-32 ul.sub-menu li:first-child {
        display: block;
    }
}
@media (max-width: 1024px) {
    .feature-bar .feature .feature-icon img {
        max-height: 42px;
    }
    .feature-bar .feature p {
        font-size: 17px;
    }
    .award-slider-wrap .slick-track .slick-slide.slick-center .award-slide {
        width: 210px !important;
    }
    .award-slider-wrap .award-slide {
        width: 210px !important;
    }
    .about-hero .img-wrap .img-wrap-in img{
        top: 55px;
    }
    .about-hero.blog-hero .about-hero-content .text p {
        font-size: 20px;
    }
    .about-hero.service-single-hero .about-hero-content .text p {
        font-size: 20px;
    }
    .ss-list-items .ss-list-item {
        width: 50%;
    }
    .ss-list-items .ss-list-item:nth-child(3n) {
        border-right: 1px solid #F858B2;
    }
    .ss-list-items .ss-list-item:nth-child(2n), .ss-list-items .ss-list-item:last-child {
        border-right: 0;
    }
}
@media (max-width: 991px) {
    .btn {
        padding: 17px 20px 16px 20px;
        font-size: 15px;
    }
    .feature-bar .feature .feature-icon img {
        max-height: unset;
    }
    .feature-bar .feature {
        width: 50%;
        flex-direction: column;
        padding: 35px 16px;
    }
    .feature-bar .feature-grid .seprator {
        display: none;
    }
    .feature-bar .feature .feature-icon {
        padding: 0 0 10px;
    }
    .feature-bar .feature p {
        font-size: 23px;
        line-height: 1.26;
        text-align: center;
    }
    .feature-bar .feature-grid {
        margin: -35px -16px;
    }
    .feature-bar {
        padding: 50px 0;
    }
    .award-section, .services, .difference-wrap, .testimonials-wrap, .contact-wrap {
        padding: 70px 0;
    }
    .award-section .col.left {
        width: 100%;
    }
    .award-section .col.right {
        width: 100%;
    }
    .award-section .award-content {
        text-align: center;
        padding: 0 0 50px;
        margin: 0 auto;
    }
    .award-section .award-content h2 {
        margin: 0 0 25px;
    }
    .award-section .award-content .text {
        margin: 0 0 25px;
    }
    .award-slider-wrap {
        max-width: 478px;
        margin: 0 auto;
    }
    .services .services-head h2 {
        margin: 0 0 16px;
    }
    .services .services-head .text p {
        margin: 0 0 20px;
    }
    .services .services-items .service-item {
        width: 50%;
    }
    .difference-head {
        margin: 0 auto 50px;
    }
    .difference-wrap .pillars .pillar {
        width: 50%;
        padding: 15px;
    }
    .difference-wrap .pillars {
        margin: -15px;
    }
    .difference-wrap .pillars .pillar:nth-child(even)::after {
        display: none;
    }
    .difference-wrap .difference-cta {
        margin-top: 65px;
    }
    .contact-wrap .contact-card {
        padding: 90px 40px;
    }
    .contact-wrap .contact-card .title-wrap {
        padding: 0 0 50px;
    }
    .site-footer .row .col.side {
        width: 100%;
        padding: 0;
    }
    .site-footer .row .col.mid {
        width: 100%;
        order: -1;
        margin: 0 0 18px;
    }
    .footer-logo img {
        max-width: 120px;
    }
    .footer-tagline {
        margin: 10px 0 0;
    }
    .site-footer .row .col.side.links {
        order: -1;
    }
    .footer-links ul.menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-links ul.menu li::after, .footer-contact .contact-details > p::after {
        content: '|';
        font-size: 17px;
        line-height: 1;
        position: relative;
        top: -1px;
        margin: 0 8px;
    }
    .footer-links ul.menu li:last-child::after, .footer-contact .contact-details > p:last-child:after {
        display: none;
    }
    .footer-links .legal {
        margin: 0 0 0;
    }
    .footer-contact .address p br {
        display: none;
    }
    .footer-contact .contact-details {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-contact .address {
        margin: 16px 0 3px;
    }
    .footer-contact .address p {
        text-align: center;
    }
    .site-footer {
        padding: 40px 0;
    }
    .testimonials-wrap .testimonial-slider {
        padding: 0 50px;
        max-width: 600px;
        margin: 0 auto;
    }
    .testimonials-wrap .slick-slide.slick-current.slick-active .testimonial-slide {
        transform: unset;
    }
    .testimonial-in {
        max-width: 367px;
    }
    .testimonial-slide .testimonial-quote {
        font-size: 15px;
        line-height: 1.25;
    }
    .testimonial-slide .testimonial-body {
        font-size: 15px;
        margin: 0 0 32px;
        line-height: 1.25;
    }
    .testimonials-wrap .testimonial-slide .author {
        font-size: 15px;
        line-height: 1.25;
    }
    .home-hero .hero-img.desktop {
        display: none;
    }
    .home-hero .hero-img.mobile {
        display: block;
    }
    .home-hero .hero-img svg use#\<Image\>[href="#img4"] {
        transform: scale(1.6) translateY(-5%) !important;
    }
    .home-hero {
        height: 1100px;
    }
    .home-hero .home-hero-right {
        max-width: 100%;
    }
    .home-hero .hero-content-in {
        max-width: 100%;
    }
    .h1, h1 {
        font-size: 50px;
    }
    .home-hero .hero-content-in h5.tagline {
        font-size: 32px;
        margin: 0 0 40px;
    }
    .home-hero .hero-content-in .text p {
        font-size: 24px;
    }
    .home-hero .hero-content-in .text {
        margin: 0 0 38px;
    }
    .home-hero .container {
        height: 45%;
        bottom: 0;
        top: unset;
    }
    .home-hero .home-hero-right {
        align-items: center;
        padding: 20px 16px;
    }
    .services::after, .award-section::before, .services::before {
        background-size: 55%;
    }
    .contact-wrap::before {
        background-size: 55%;
    }
    .form-wrap form .field-set.button-set .field input {
        padding: 17px 30px 16px 30px;
        font-size: 15px;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle .bar .line {
        width: 32px;
        margin: 5.5px auto;
        height: 4px;
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle.active .bar .line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .site-header .head-mid .mobile-toggle-wrap .mobile-toggle.active .bar .line:first-child {
        transform: translateY(9px) rotate(45deg);
    }
    .about-hero .img-wrap,.service-hero .img-wrap {
        position: relative;
        width: 133%;
        transform: translateX(-50%);
        left: 44%;
        top: 0;
        right: unset;
        margin-top: -34.68%;
    }
    .about-hero .img-wrap .img-wrap-in, .service-hero .img-wrap .img-wrap-in{
        position: relative;
        padding-bottom: 100%;
        border-radius: 50%;
        border: 9px solid #A8ABAE;
        overflow: hidden;
    }
    .service-hero .img-wrap .img-wrap-in{
        border: 9px solid #f858b2;
    }
    .about-hero .img-wrap .img-wrap-in img, .service-hero .img-wrap .img-wrap-in img{
        object-position: center;
        border-radius: 0;
        border: none;
        top: 24%;
    }
    .about-hero,.service-hero{
        padding: 0 0 70px;
        background-position: 65% 100%;
    }
    .about-hero .about-hero-content {
        width: 100%;
        padding: 50px 16px 0;
    }
    .meet-founder, .our-mission, .our-approach, .meet-our-team {
        padding: 70px 0;
    }
    .meet-founder .col.left {
        width: 100%;
    }
    .meet-founder .content-wrap {
        padding: 50px 0 0;
        max-width: 100%;
    }
    .meet-founder .video-img-wrap {
        margin: 0 15px;
        max-width: 425px;
    }
    .our-mission .col.right {
        width: 100%;
    }
    .our-mission .col.left {
        width: 100%;
    }
    .our-mission .row {
        flex-direction: column-reverse;
    }
    .our-mission .content-wrap {
        padding: 50px 0 0;
    }
    .meet-founder .col.right {
        width: 100%;
    }
    .our-approach .approach-items .approach-item {
        width: 50%;
        padding: 16px 24px;
    }
    .our-approach .approach-items {
        margin: -16px -24px;
    }
    .about-hero::before, .meet-founder::before, .our-mission::before, .our-approach::before, .meet-our-team::before {
        background-size: 50%;
    }
    .cta-block .img-wrap {
        position: relative;
        width: 127%;
        transform: translateX(-50%);
        left: 50%;
        top: 0;
        right: unset;
        margin-top: -37.01%;
    }
    .cta-block .img-wrap .img-wrap-in {
        position: relative;
        padding-bottom: 100%;
        border-radius: 50%;
        border: 9px solid #A8ABAE;
        overflow: hidden;
    }
    .cta-block .img-wrap .img-wrap-in img {
        border-radius: 0;
        border: none;
        top: 0;
    }
    .cta-block .cta-content {
        width: 100%;
        padding: 50px 0 0;
    }
    .cta-block::before {
        top: unset;
        bottom: -108%;
    }
    .meet-our-team .team-list .team-item {
        width: 100%;
        padding: 0;
    }
    .meet-our-team .title-wrap {
        padding: 0 0 40px;
    }
    .meet-our-team .team-list .team-item .img-wrap img {
        width: 288px;
        height: 288px;
        margin: 0 auto;
    }
    .meet-our-team .team-list .team-item .content {
        max-width: 331px;
        margin: 0 auto;
    }
    .meet-our-team .team-list button.slick-arrow {
        display: inline-block;
        background-image: url(../images/arrow-left.svg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 12px;
        height: 24px;
        z-index: 2;
        top: 138px;
        transform: none;
    }
    .meet-our-team .team-list button.slick-arrow::before {
        display: none;
    }
    .meet-our-team .team-list button.slick-prev.slick-arrow {
        left: 0;
    }
    .meet-our-team .team-list button.slick-next.slick-arrow {
        right: 0;
        background-image: url(../images/arrow-right.svg);
    }
    .meet-our-team .team-list {
        margin: 0;
    }
    .team-list-parent {
        position: relative;
        max-width: 471px;
        margin: 0 auto;
    }
    .our-approach .approach-items .approach-item:nth-child(even)::after {
        display: none;
    }
    .cta-block {
        padding: 0 0 70px;
    }
    .meet-our-team .team-list .team-item .content p.designation {
        font-size: 26px;
    }
    .meet-our-team .team-list .team-item .content h4 {
        font-size: 27px;
    }
    .service-hero-content-in{
        max-width: 100%;
        margin-top: 25px;
    }
    .service-hero-content-in h1 br{
        display:none;
    }
    .service-hero .img-wrap .img-wrap-in img{
        left: 10%;
    }
    .services.layout-alternating .service-item{
        flex-direction: column;
    }
    .services.layout-alternating .services-items .service-item .service-photo img{
        width: 250px;
        height: 250px;
    }
    .services.layout-alternating .services-items{
        flex-direction: row;
    }
    .services.layout-alternating .service-item.even{
        flex-direction: column;
    }
    .services.layout-alternating .service-content,
    .services.layout-alternating .service-item .text p{
        text-align: center;
    }
    .services.layout-alternating .service-item{
        gap: 10px;
        margin-bottom: 50px;
    }
    .services.layout-alternating .service-content{
        padding: 0 40px;
    }
    .about-hero.blog-hero {
        padding: 0 0 70px;
    }
    .about-hero.blog-hero .img-wrap {
        width: 133%;
        transform: translateX(-50%);
        left: 44%;
    }
    .about-hero.blog-hero .img-wrap .img-wrap-in img {
        object-fit: contain;
        object-position: center;
        border-radius: 0;
        border: none;
        top: 16%;
    }
    .about-hero .img-wrap .img-wrap-in {
        padding-bottom: 87%;
    }
    .about-hero.blog-hero .about-hero-content {
        width: 100%;
    }
    .blog-list::before {
        background-size: 50%;
    }
    .blog-list, .stay-connect {
        padding: 70px 0;
    }
    .single-blog-info::before, .single-blog-info::after {
        background-size: 50%;
    }
    .single-blog-info {
        padding: 70px 0;
    }
    .single-blog-info .hero-info .img-wrap, .single-blog-info .content-wrap .img-wrap {
        padding-bottom: 76.07%;
    }
    .single-blog-info .date-label {
        font-size: 24px;
        top: unset;
        bottom: 40px;
        padding: 14px 39px 7px;
    }
    .single-blog-info .hero-info .title-info h1 {
        margin: 0 0 10px;
    }
    .single-blog-info .content-wrap .text-wrap p, .single-blog-info .content-wrap .text-wrap ul li {
        font-size: 25px;
        margin: 0 0 25px;
    }
    .single-blog-info .content-wrap .content-wrap-in > div {
        margin: 0 0 50px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in p {
        max-width: 417px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap p {
        font-size: 19px;
    }
    .contact-wrap.contact-page .title-wrap {
        padding: 0 0 45px;
    }
    .about-hero.service-single-hero {
        padding: 0 0 70px;
        background-image: url(../images/ss-hero-m-bg.png);
    }
    .about-hero.service-single-hero::before {
        background-image: url(../images/sm-bg.png);
        width: 560px;
        height: 275px;
        background-repeat: no-repeat;
        background-size: cover;
        bottom: 0;
        right: 0;
        top: unset;
        left: unset;
        background-position: bottom right;
    }
    .about-hero.service-single-hero .img-wrap {
        width: 133%;
        transform: translateX(-50%);
        left: 52%;
    }
    .about-hero.service-single-hero .img-wrap .img-wrap-in img {
        object-fit: contain;
        object-position: center;
        border-radius: 0;
        border: none;
        top: 16%;
    }
    .about-hero.service-single-hero .img-wrap .img-wrap-in {
        padding-bottom: 93%;
    }
    .about-hero.service-single-hero .about-hero-content {
        width: 100%;
    }
    .about-hero.service-single-hero .about-hero-content .about-hero-content-in {
        max-width: 100%;
    }
    .about-hero.service-single-hero .about-hero-content h1 {
        max-width: 100%;
    }
    .about-hero.service-single-hero .about-hero-content {
        padding: 70px 16px 0;
    }
    .service-cta {
        padding: 50px 0 0;
    }
    .service-sub-list {
        padding: 70px 0;
        background-image: url(../images/sl-m-bg.png);
        background-repeat: no-repeat;
        background-position: top center;
    }
    .faqs-list .faq-accordion .faq-item {
        padding: 20px 22px;
    }
    .faqs-wrap .title-wrap {
        margin: 0 0 8px;
    }
    .faqs-wrap {
        padding: 70px 0;
    }
    .faqs-wrap::before {
        background-size: 75%;
    }
    .service-img-content .img-content-wrap .img-content-in .right {
        width: 100%;
    }
    .service-img-content .img-content-wrap .img-content-in .left {
        width: 100%;
        padding: 0;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap {
        padding: 40px 0 0;
        border: none;
    }
    .service-img-content .img-content-wrap .img-content-in .img-wrap-parent {
        max-width: 435px;
    }
    .no-content-wrap {
        padding: 70px 0;
    }
    .single-blog-info .hero-info .title-info h1 {
        font-size: 38px;
    }
    .single-blog-info .date-container {
        top: 70px;
        padding-top: calc(76.07% - 155px);
    }
    .social-links ul {
        justify-content: center;
        margin: 0 -8px;
    }
    .social-links ul li {
        margin: 0 8px;
    }
    .service-sub-list.service-img-content::after {
        background-size: 65%;
    }
}
@media (max-width: 767px) {
    .h1, h1 {
        font-size: 40px;
    }
    .h2, h2 {
        font-size: 30px;
        line-height: 1.06;
    }
    .services .services-head h2 {
        font-size: 37px;
        line-height: 1.05;
    }
    .services::after, .award-section::before, .services::before {
        background-size: 54%;
    }
    .award-section .award-content .text p {
        font-size: 17px;
        line-height: 1.35;
    }
    .services .services-head .text p {
        font-size: 22px;
        line-height: 1.27;
    }
    .services .services-items .service-item .service-photo img {
        width: 259px;
        height: 259px;
        border: none;
    }
    .services .services-items .service-item h3 {
        font-size: 23px;
        letter-spacing: 1px;
        margin: 0 auto 16px;
    }
    .services .services-items .service-item .text p {
        font-size: 21px;
        letter-spacing: 1px;
        line-height: 1.09;
    }
    .services .services-items .service-item .text {
        max-width: 414px;
    }
    .services .services-items .service-item {
        padding: 0;
        max-width: 415px;
    }
    .services .services-items {
        max-width: 471px;
        margin: 0 auto;
    }
    .services .services-items .service-item .service-photo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .services .services-items button.slick-arrow {
        display: inline-block;
        background-image: url(../images/arrow-left.svg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 12px;
        height: 24px;
        z-index: 2;
        top: 124px;
        transform: none;
    }
    .services .services-items button.slick-arrow::before {
        display: none;
    }
    .services .services-items button.slick-prev.slick-arrow {
        left: 0;
    }
    .services .services-items button.slick-next.slick-arrow {
        right: 0;
        background-image: url(../images/arrow-right.svg);
    }
    .services .services-items .slick-slide {
        text-align: center;
    }
    .services.layout-alternating .service-item{
        flex-direction: column;
        max-width: 100%;
    }
    .services.layout-alternating .service-content{
        flex: auto;
        max-width: 100%;
        text-align: center;
    }
    .services.layout-alternating .service-content{
        padding: 0;
    }
    .services .services-items .service-item a.learn-more {
        font-size: 22px;
        letter-spacing: 1px;
        line-height: 1;
    }
    .difference-head h2 {
        font-size: 43px;
        line-height: 1.06;
    }
    .difference-head p {
        font-size: 25px;
        line-height: 1.32;
    }
    .difference-wrap .pillar h4 {
        font-size: 17px;
    }
    .difference-wrap .pillars .pillar .pillar-icon img {
        max-height: 82px;
    }
    .difference-wrap .pillar p {
        font-size: 15px;
        letter-spacing: 1px;
        line-height: 1.13;
    }
    .difference-wrap .pillars .pillar .pillar-content {
        max-width: 170px;
    }
    .testimonials-wrap .testimonial-title {
        font-size: 33px;
        line-height: 1.09;
        margin-bottom: 32px;
    }
    .testimonials-wrap .testimonial-slider button.slick-arrow {
        width: 12px;
        height: 24px;
    }
    .testimonials-wrap .testimonial-slider {
        padding: 0 30px;
        max-width: 531px;
        margin: 0 auto;
    }
    .testimonials-wrap .testimonial-slide .testimonial-slide-in {
        padding: 0 65px;
        padding-top: 40px;
    }
    .contact-wrap .contact-card .title-wrap {
        max-width: 346px;
        margin: 0 auto;
    }
    .contact-wrap .contact-card .title-wrap h2 {
        font-size: 36px;
        margin: 0 0 20px;
    }
    .contact-wrap .contact-card .title-wrap p {
        font-size: 24px;
    }
    .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]), .form-wrap form .field-set .field label {
        font-size: 24px;
    }
    .form-wrap form .field-set .field.col-50 {
        width: 100%;
    }
    .form-wrap form .field-set .field.col-30 {
        width: 100%;
    }
    .form-wrap form .field-set .field.col-70 {
        width: 100%;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label {
        font-size: 19px;
        line-height: 1.7;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
        top: 5px;
        width: 18px;
        height: 18px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label .wpcf7-list-item-label {
        padding-left: 35px;
    }
    .form-wrap form .field-set.button-set {
        position: static;
        margin-top: 70px;
    }
    .form-wrap form .field-set.button-set .field p {
        justify-content: center;
    }
    .form-wrap form .field-set.button-set .field p span.wpcf7-spinner {
        display: none;
    }
    .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]) {
        padding: 12px 0;
    }
    .form-wrap form .field-set .field {
        margin: 0 0 36px;
    }
    .services .services-head {
        padding: 0 0 50px;
    }
    .services {
        background-image: url(../images/curve-mobile.png);
        background-size: cover;
    }
    .home-hero .hero-content-in .text p {
        font-size: 20px;
    }
    .contact-wrap::before {
        background-size: 40%;
    }
    .about-hero .about-hero-content h1 {
        font-size: 38px;
    }
    .about-hero .about-hero-content .text {
        margin: 0 0 24px;
    }
    .h2, h2 {
        font-size: 38px;
    }
    .meet-founder .content-wrap .text p, .our-mission .content-wrap .text p {
        font-size: 20px;
    }
    .our-approach::before, .meet-our-team::before {
        background-size: 40%;
    }
    .our-approach .title-wrap p {
        font-size: 20px;
    }
    .our-approach .approach-items .approach-item h4 {
        font-size: 22px;
    }
    .our-approach .approach-items .approach-item p {
        font-size: 20px;
    }
    .cta-block .cta-content .text p {
        font-size: 24px;
    }
    .our-approach .approach-items .approach-item::after {
        display: none;
    }
    .our-approach .approach-items .approach-item {
        width: 100%;
        padding: 0;
    }
    .our-approach .approach-items {
        margin: 0 auto;
        max-width: 471px;
    }
    .our-approach .title-wrap {
        padding: 0 0 55px;
    }
    .our-approach .approach-items .approach-item .icon {
        height: 125px;
    }
    .our-approach .approach-items button.slick-arrow {
        display: inline-block;
        background-image: url(../images/arrow-left.svg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 12px;
        height: 24px;
        z-index: 2;
        top: 169px;
        transform: none;
    }
    .our-approach .approach-items button.slick-arrow::before {
        display: none;
    }
    .our-approach .approach-items button.slick-prev.slick-arrow {
        left: 0;
    }
    .our-approach .approach-items button.slick-next.slick-arrow {
        right: 0;
        background-image: url(../images/arrow-right.svg);
    }
    .meet-our-team .btn-wrap {
        padding: 42px 0 0;
    }
    .cta-block::before {
        top: unset;
        bottom: -130%;
    }
    .our-mission::before {
        content: '';
        background-image: url(../images/ourmission-pattern-bg-m.png);
        width: 502px;
        height: 305px;
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }
    .home-hero .hero-img svg use#\<Image\>[href="#img4"] {
        transform: scale(1.6) translateY(-9%) !important;
    }
    .home-hero .hero-img.mobile svg use[href="#img3"] {
        transform: scale(1.5) translateY(-9%) !important;
        transform-box: fill-box;
        transform-origin: center;
    }
    .about-hero.blog-hero .about-hero-content .about-hero-content-in {
        text-align: center;
        max-width: 100%;
    }
    .blog-list .blog-items .blog-item {
        width: 100%;
        max-width: 448px;
        margin: 0 auto;
    }
    .blog-item .img-wrap .date {
        font-size: 18px;
        min-width: 142px;
    }
    .blog-item .content h3 {
        font-size: 20px;
    }
    .blog-item .content p {
        font-size: 15px;
    }
    .blog-item .content .read-more {
        font-size: 17px;
    }
    .blog-item .content .read-more svg {
        margin-left: 12px;
    }
    .blog-item .content p {
        margin: 0 0 13px;
    }
    .stay-connect::before {
        background-size: 60%;
        right: -15%;
    }
    .stay-connect .title-wrap p {
        font-size: 28px;
    }
    .stay-connect .title-wrap h2 {
        font-size: 43px;
    }
    .single-blog-info .hero-info .title-info .meta {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .single-blog-info .hero-info .title-info h1 {
        font-size: 35px;
    }
    .single-blog-info .hero-info .title-info .meta div::after {
        display: none;
    }
    .single-blog-info .hero-info .title-info .meta div {
        font-size: 24px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in::before {
        top: 35px;
        left: 5px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in::after {
        top: 35px;
        right: 5px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in {
        padding: 50px 15px;
    }
    .cta-bottom .cta-bottom-in .text-wrap {
        align-items: flex-start;
    }
    .single-blog-info::before, .single-blog-info::after {
        background-size: 65%;
    }
    .single-blog-info::after {
        bottom: -130px;
    }
    .single-blog-info .share-post .share-post-in {
        flex-direction: column;
    }
    .single-blog-info .share-post .share-post-in p {
        padding: 0 0 15px;
        font-size: 30px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap {
        padding-left: 23px;
    }
    .cta-bottom .cta-bottom-in .btn-wrap {
        padding-left: 115px;
    }
    .cta-bottom {
        padding-bottom: 40px;
    }
    .single-blog-info .hero-info .title-info {
        padding: 48px 0 28px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap h3 {
        margin: 0 0 10px;
    }
    .contact-wrap.contact-page .title-wrap p {
        font-size: 22px;
    }
    .contact-wrap.contact-page::after {
        background-size: 100%;
        background-image: url(../images/cp-top-mobile.png);
    }
    .contact-wrap::before {
        background-size: 55%;
    }
    .contact-wrap.contact-page::after {
        background-size: cover;
        background-image: url(../images/cp-top-mobile.png);
        width: 384px;
        height: 321px;
        top: 0;
        right: 0;
    }
    .contact-wrap.contact-page .title-wrap p {
        max-width: 322px;
        margin: 0 auto;
    }
    .contact-wrap .contact-card .title-wrap .contact-sub {
        max-width: 100%;
    }
    .contact-wrap.contact-page {
        background-image: url(../images/cp-bg-mobile.png);
    }
    .about-hero.service-single-hero .about-hero-content .about-hero-content-in {
        max-width: 100%;
    }
    .ss-list-items .ss-list-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #F858B2;
        border-right: 0 !important;
    }
    .ss-list-items .ss-list-item .ss-list-in {
        padding: 45px 0;
        text-align: left;
        align-items: flex-start;
    }
    .ss-list-items {
        max-width: 100%;
        margin: 0 auto;
    }
    .service-sub-list .title-wrap {
        padding: 0;
    }
    .ss-list-items .ss-list-item h3 {
        font-size: 28px;
        text-align: left;
        width: 100%;
    }
    .ss-list-items .ss-list-item ul li {
        font-size: 23px;
    }
    .ss-list-items .ss-list-item ul {
        max-width: 100%;
    }
    .service-sub-list .title-wrap h2 {
        text-align: left;
    }
    .ss-list-items .ss-list-item:last-child {
        border-bottom: 0;
    }
    .service-cta {
        padding: 0;
    }
    .service-cta h2 {
        font-size: 29px;
        margin: 0 0 50px;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle::after {
        font-size: 24px;
    }
    .faqs-wrap::before {
        background-size: 60%;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap p {
        font-size: 24px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap h3 {
        font-size: 22px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap .how-help {
        margin-top: 6px;
    }
    .service-sub-list.service-img-content .service-cta {
        padding: 40px 0 0;
    }
    .no-content-wrap .content .text p {
        font-size: 22px;
    }
    .contact-card div.form-wrap .wpcf7-response-output {
        max-width: 100%;
    }
    div.form-wrap .wpcf7-response-output {
        font-size: 18px;
    }
    .testimonial-slide .testimonial-quote {
        font-size: 14px;
    }
    .testimonial-slide .testimonial-body {
        font-size: 14px;
    }
    .testimonials-wrap .testimonial-slide .author {
        font-size: 14px;
    }
}
@media (max-width: 560px) {
    .feature-bar .feature p {
        font-size: 16px;
    }
    .feature-bar .feature {
        padding: 25px 10px;
    }
    .feature-bar .feature-grid {
        margin: -25px -10px;
    }
    .h2, h2 {
        font-size: 26px;
    }
    .award-slider-wrap .slick-track .slick-slide.slick-center .award-slide {
        width: 170px !important;
    }
    .award-slider-wrap .award-slide {
        width: 170px !important;
    }
    .services::after, .award-section::before, .services::before {
        background-size: 40%;
    }
    .services .services-head h2 {
        font-size: 27px;
    }
    .services .services-head .text p {
        font-size: 18px;
        line-height: 1.27;
    }
    .services .services-items .service-item .text p, .difference-head p {
        font-size: 18px;
        line-height: 1.27;
    }
    .services .services-items .service-item h3 {
        font-size: 20px;
    }
    .services .services-items .service-item a.learn-more {
        font-size: 17px;
    }
    .difference-head h2 {
        font-size: 32px;
    }
    .difference-wrap .pillars .pillar .pillar-icon img {
        max-height: 70px;
    }
    .difference-wrap .pillar h4 {
        font-size: 15px;
    }
    .difference-wrap .pillar p {
        font-size: 14px;
    }
    .testimonials-wrap .testimonial-title {
        font-size: 28px;
    }
    .testimonials-wrap .testimonial-slide .testimonial-slide-in {
        padding: 0 32px;
        padding-top: 30px;
    }
    .testimonial-slide .testimonial-body {
        font-size: 10px;
    }
    .testimonials-wrap .testimonial-slider {
        padding: 0 20px;
    }
    .testimonials-wrap .testimonial-slider button.slick-arrow {
        width: 10px;
        height: 22px;
    }
    .testimonial-slide .testimonial-quote {
        font-size: 9px;
    }
    .testimonials-wrap .testimonial-slide .author {
        font-size: 11px;
    }
    .testimonial-slide .testimonial-body {
        margin: 0 0 20px;
    }
    .contact-wrap .contact-card {
        padding: 60px 24px;
    }
    .contact-wrap .contact-card .title-wrap h2 {
        font-size: 28px;
    }
    .contact-wrap .contact-card .title-wrap p {
        font-size: 18px;
    }
    .form-wrap form .field-set .field input:not([type="checkbox"]):not([type="submit"]), .form-wrap form .field-set .field label {
        font-size: 17px;
        letter-spacing: 1px;
    }
    .form-wrap form .field-set .field {
        margin: 0 0 30px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item {
        margin: 0;
    }
    .form-wrap form .field-set.button-set {
        margin-top: 50px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label {
        font-size: 16px;
        line-height: 1.25;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
        top: 0;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item {
        padding: 0 0 7px;
    }
    .form-wrap form .field-set .field.checkbox .wpcf7-list-item:last-child {
        padding: 0;
    }
    .footer-links ul.menu li a, .footer-contact p {
        font-size: 13px;
    }
    .home-hero .hero-img svg use#\<Image\>[href="#img4"] {
        transform: scale(1.5) translateY(-10%) !important;
    }
    .home-hero {
        height: 860px;
    }
    .home-hero .home-hero-right {
        max-width: 100%;
    }
    .home-hero .hero-content-in {
        max-width: 100%;
    }
    .h1, h1 {
        font-size: 32px;
    }
    .home-hero .hero-content-in h5.tagline {
        font-size: 23px;
        margin: 0 0 25px;
    }
    .home-hero .hero-content-in .text p {
        font-size: 17px;
    }
    .home-hero .hero-content-in .text {
        margin: 0 0 30px;
    }
    .home-hero .container {
        height: 47%;
        /* bottom: 0;
        top: unset; */
    }
    .home-hero .home-hero-right {
        padding: 25px 0 90px;
        align-items: start;
    }
    .site-header .head-mid .logo-wrap a img {
        max-width: 205px;
    }
    .site-header .head-mid .nav-wrap {
        top: 109px;
    }
    .services .services-items .service-item a.learn-more {
        font-size: 17px;
    }
    .about-hero .about-hero-content h1 {
        font-size: 32px;
    }
    .about-hero {
        background-image: url(../images/about-hero-bg-mobile.png);
        background-position: 35% 100%;
    }
    .meet-our-team .team-list .team-item .content p.designation {
        font-size: 20px;
    }
    .meet-our-team .team-list .team-item .content h4 {
        font-size: 22px;
    }
    .cta-block .cta-content .text p {
        font-size: 20px;
    }
    .meet-founder .content-wrap h2 {
        max-width: 280px;
    }
    .site-header{
        padding: 15px 0;
    }
    .about-hero .img-wrap, .service-hero .img-wrap{
        width: 137%;
        left: 45%;
    }
    .site-main {
        padding: 109px 0 0;
    }
    .about-hero.blog-hero {
        background-image: url(../images/blog-bg-m.png);
    }
    .stay-connect .title-wrap p {
        font-size: 22px;
    }
    .stay-connect .title-wrap h2 {
        font-size: 30px;
    }
    .stay-connect .title-wrap {
        margin: 0 0 30px;
    }
    .stay-connect .form-wrap form .field-set .field {
        margin: 0 0 40px;
    }
    .stay-connect::before {
        background-size: 56%;
    }
    .single-blog-info .hero-info {
        padding: 0;
    }
    .single-blog-info .hero-info .img-wrap, .single-blog-info .content-wrap .img-wrap {
        padding-bottom: 68.07%;
    }
    .single-blog-info .date-label {
        font-size: 18px;
        top: unset;
        bottom: 40px;
        padding: 12px 25px 9px;
        left: -10px;
    }
    .single-blog-info .hero-info .title-info h1 {
        font-size: 26px;
    }
    .single-blog-info .hero-info .title-info .meta div {
        font-size: 18px;
    }
    .single-blog-info .content-wrap {
        padding: 0;
    }
    .single-blog-info .content-wrap .text-wrap p, .single-blog-info .content-wrap .text-wrap ul li {
        font-size: 18px;
    }
    .single-blog-info .content-wrap .content-wrap-in > div {
        margin: 0 0 45px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in p {
        font-size: 21px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in {
        padding: 50px 35px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in::before {
        top: 28px;
        left: 5px;
        font-size: 35px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in::after {
        top: 28px;
        right: 5px;
        font-size: 35px;
    }
    .single-blog-info .content-wrap .quote-block .quote-block-in {
        padding: 35px 35px;
    }
    .single-blog-info .share-post .share-post-in p {
        font-size: 24px;
    }
    .single-blog-info::before, .single-blog-info::after {
        background-size: 50%;
    }
    .cta-bottom .cta-bottom-in {
        padding: 32px 24px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .icon-wrap {
        width: 50px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap {
        padding: 20px 0 0;
        width: 100%;
    }
    .cta-bottom .cta-bottom-in .btn-wrap {
        padding-left: 0;
    }
    .cta-bottom .cta-bottom-in .text-wrap .icon-wrap {
        width: 70px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap h3 {
        font-size: 25px;
    }
    .cta-bottom .cta-bottom-in .text-wrap .content-wrap p {
        font-size: 17px;
    }
    .contact-wrap.contact-page .title-wrap p {
        font-size: 20px;
    }
    .ss-list-items .ss-list-item h3 {
        font-size: 24px;
    }
    .service-sub-list .title-wrap h2 {
        font-size: 32px;
    }
    .ss-list-items .ss-list-item ul li {
        font-size: 21px;
    }
    .service-cta h2 {
        font-size: 24px;
        margin: 0 0 30px;
    }
    .service-sub-list::after {
        background-size: 43%;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle {
        font-size: 20px;
    }
    .faqs-list .faq-accordion .faq-item .faq-inner p, .faqs-list .faq-accordion .faq-item .faq-inner ul li {
        font-size: 18px;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle {
        font-size: 20px;
        padding-right: 25px;
    }
    .faqs-wrap::before {
        background-size: 60%;
        opacity: .5;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle::after {
        font-size: 20px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap p {
        font-size: 20px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap ul li {
        font-size: 18px;
    }
    .service-img-content .img-content-wrap .img-content-in .content-wrap h3 {
        font-size: 18px;
    }
    .about-hero .img-wrap .img-wrap-in {
        padding-bottom: 85%;
    }
    .about-hero.service-single-hero::before {
        background-size: 65%;
    }
    .service-sub-list.service-img-content::after {
        background-size: 50%;
    }
}
@media (max-width: 420px) {
    .testimonial-in {
        transform: scale(0.85);
    }
    .meet-founder .content-wrap .text p, .our-mission .content-wrap .text p {
        font-size: 18px;
    }
    .about-hero .about-hero-content {
        width: 100%;
        padding: 50px 0 0;
    }
    .home-hero {
        height: 960px;
    }
    .about-hero.service-single-hero .about-hero-content {
        padding: 60px 0 0;
    }
    .faqs-list .faq-accordion .faq-item .faq-toggle {
        font-size: 18px;
    }
    .faqs-list .faq-accordion .faq-item .faq-inner p, .faqs-list .faq-accordion .faq-item .faq-inner ul li {
        font-size: 16px;
    }
    .service-cta h2 br {
        display: none;
    }
}