:root { --sp-teal:          #00978D;
--sp-teal-dark:     #1a6b5a;
--sp-teal-light:    #d0ede8;
--sp-gold:          #C9A84C;
--sp-white:         #ffffff;
--sp-off-white:     #f7f7f7;
--sp-dark:          #1a1a1a;
--sp-mid:           #555555;
--sp-border:        #e0e0e0; --font-body:        'Nunito Sans', sans-serif;
--font-display:     'Tenor Sans', sans-serif;
--font-size-base:   16px;
--line-height-base: 1.65; --sp-section-y:     80px;
--sp-section-y-mob: 48px;
--sp-container:     1200px; --sp-transition:    all 0.2s ease-in-out;
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family:    var(--font-body);
font-size:      var(--font-size-base);
line-height:    var(--line-height-base);
color:          var(--sp-dark);
background:     var(--sp-white);
-webkit-font-smoothing:  antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
} img,
video {
max-width: 100%;
height: auto;
display: block;
} a {
color: var(--sp-teal);
text-decoration: none;
transition: var(--sp-transition);
}
a:hover {
color: var(--sp-teal-dark);
} ul,
ol {
list-style: none;
} h1, h2, h3, h4, h5, h6 {
font-family:    var(--font-display);
line-height:    1.2;
color:          var(--sp-dark);
}  @media (max-width: 768px) {
.hide-on-mobile  { display: none !important; }
.show-on-mobile  { display: block !important; }
}
@media (min-width: 769px) {
.show-on-mobile  { display: none !important; }
.hide-on-mobile  { display: block !important; }
} .sp-teal          { color: var(--sp-teal); }
.sp-teal-bg       { background-color: var(--sp-teal); }
.sp-gold          { color: var(--sp-gold); }
.sp-off-white-bg  { background-color: var(--sp-off-white); } .sp-section {
padding-top:    var(--sp-section-y);
padding-bottom: var(--sp-section-y);
}
@media (max-width: 768px) {
.sp-section {
padding-top:    var(--sp-section-y-mob);
padding-bottom: var(--sp-section-y-mob);
}
}  .sp-ticker {
background-color: var(--sp-teal);
color:            var(--sp-white);
font-size:        0.85rem;
padding:          8px 0;
overflow:         hidden;
white-space:      nowrap;
} .site-header {
position: relative;
z-index:  1000;
} .sp-hero {
position:   relative;
width:      100%;
min-height: 100vh;
display:    flex;
align-items: center;
background-size:     cover;
background-position: center;
background-repeat:   no-repeat;
overflow: hidden;
}
.sp-hero__video {
position:   absolute;
inset:      0;
width:      100%;
height:     100%;
object-fit: cover;
z-index:    0;
pointer-events: none;
}
.sp-hero__content {
position: relative;
z-index:  1;
} .sp-btn {
display:         inline-block;
padding:         12px 32px;
border-radius:   4px;
font-family:     var(--font-body);
font-weight:     600;
font-size:       0.95rem;
cursor:          pointer;
transition:      var(--sp-transition);
text-align:      center;
border:          2px solid transparent;
}
.sp-btn--primary {
background-color: var(--sp-teal);
color:            var(--sp-white);
border-color:     var(--sp-teal);
}
.sp-btn--primary:hover {
background-color: var(--sp-teal-dark);
border-color:     var(--sp-teal-dark);
color:            var(--sp-white);
}
.sp-btn--outline {
background-color: transparent;
color:            var(--sp-teal);
border-color:     var(--sp-teal);
}
.sp-btn--outline:hover {
background-color: var(--sp-teal);
color:            var(--sp-white);
} .sp-card {
background:    var(--sp-white);
border-radius: 8px;
padding:       28px 24px;
border:        1px solid var(--sp-border);
height:        100%;
transition:    var(--sp-transition);
}
.sp-card:hover {
box-shadow: 0 8px 24px rgba(0, 151, 141, 0.12);
transform:  translateY(-2px);
} .sp-section-heading {
display:        flex;
align-items:    center;
gap:            16px;
margin-bottom:  32px;
}
.sp-section-heading__text {
font-family:    var(--font-display);
font-size:      clamp(1.8rem, 4vw, 2.8rem);
line-height:    1.15;
}
.sp-section-heading__text span {
color: var(--sp-teal);
} .sp-sticky-bar {
position:         fixed;
bottom:           0;
left:             0;
right:            0;
z-index:          9999;
display:          flex;
background-color: var(--sp-teal);
}
.sp-sticky-bar__btn {
flex:           1;
display:        flex;
align-items:    center;
justify-content: center;
gap:            8px;
padding:        14px 12px;
color:          var(--sp-white);
font-weight:    700;
font-size:      0.9rem;
border-right:   1px solid rgba(255,255,255,0.3);
}
.sp-sticky-bar__btn:last-child {
border-right: none;
}
.sp-sticky-bar__btn:hover {
background-color: var(--sp-teal-dark);
color:            var(--sp-white);
} .sr-only {
position:   absolute;
width:      1px;
height:     1px;
padding:    0;
margin:     -1px;
overflow:   hidden;
clip:       rect(0, 0, 0, 0);
white-space: nowrap;
border:     0;
} .alignleft  { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.aligncenter,
.alignfull  { display: block; margin-left: auto; margin-right: auto; clear: both; }
figure.wp-block-image img { height: auto; } @media print {
.sp-ticker,
.site-header,
.site-footer,
.sp-sticky-bar,
.sp-hero__video { display: none !important; }
body { font-size: 12pt; color: #000; }
a { text-decoration: underline; color: #000; }
}
.ticker{
background:#00978D !important;
color:#fff !important;
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
padding:10px 0;
display:flex;
align-items:center;
}
.ticker marquee{
width:100%;
}
@media (max-width: 760px) {
.ticker{
position:fixed;
top:0;
left:0;
width:100%;
}
}.team-heading{
text-align: center;
font-family: 'Tenor Sans',sans-serif;
font-size: 64px;
color:#545454;
font-weight: normal;
}
.our-team-section{
padding-top:50px;
padding-bottom: 50px;
}
.expert-section{
padding-bottom:30px;
}
.expert-section{
display:flex;
flex-direction:row;
align-items:end;
}
.expert-title h2{ 
font-family: 'tenor sans',sans-serif;
font-size:64px;
margin:0;
color:#545454;
}
.expert-title p,.expert-points,.our-team-para{
font-family:'nunito sans',sans-serif;
font-size:20px;
margin:0;
padding-left: 2%;
}
.our-team-arrow{
width:100%;
display:flex;
justify-content:end;
}
.our-team-arrow img{
width:70%;
}
.expert-subheading{
padding-bottom:5px; }
.expert-img-background{
position: absolute;
right: 0;
width: 100%;
height: 50%;
top:57%;
}
.team-section{
position: relative;
}
.slider-expert-img-bg{
top:40%;
}
.last-team-section{
margin-bottom:80px;
}
.assessment-question{
font-size:20px;
}
:root {
--navy: #1f335f;
--accent: #00968c;
--bg: #f4f6fb;
--muted: #6b7280;
}
.self-assessment-container {
max-width: 900px !important;
margin: 0 auto;
} .card {
background: #fff;
border-radius: 12px;
box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
overflow: hidden;
}
.card-header {
background: var(--accent);
color: #fff;
padding: 18px;
text-align: center;
font-weight: 800;
font-size: 31px;
}
.card-body {
padding: 18px;
} .progress-wrap {
margin-bottom: 14px;
display: flex;
flex-direction: column;
align-items: center;
}
.progress-bar {
height: 12px;
background: #e5e7eb;
border-radius: 8px;
overflow: hidden;
position: relative;
width: 70%;
}
.progress-fill {
height: 100%;
width: 0%;
background: var(--accent);
transition: width 300ms ease;
}
.progress-info {
margin-top: 0px;
font-weight: 700;
color: #153447;
text-align: center;
font-size: 19px;
} .quiz-page {
display: none;
}
.quiz-page.active {
display: block;
} .intro-choices {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 12px;
}
.radio-item {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
border-radius: 8px;
cursor: pointer;
font-size: 18px;
}
.first-radio-item{
padding: 10px 12px 10px 0px !important;
}
.radio-item input {
accent-color: var(--accent);
width: 20px;
height: 20px;
margin: 0;
} .question {
margin-bottom: 18px;
}
.question h3 {
margin: 0 0 8px;
font-size: 17px;
color: #153447;
font-weight: 700;
}
.options {
display: flex;
gap: 10px;
flex-wrap: wrap;
align-items: center;
} .option {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 8px;
font-size: 17px;
cursor: pointer;
user-select: none;
}
.option input[type="radio"],
.option input[type="checkbox"] {
accent-color: var(--accent);
width: 20px;
height: 20px;
margin:0;
} @media (max-width:480px) {
.options {
gap: 8px;
}
.option {
flex: 0 0 0%;
box-sizing: border-box;
}
.radio-item {
flex: 0 0 40%;
}
}  .nav-row {
display: flex;
justify-content: space-evenly;
gap: 12px;
margin-top: 12px;
}
.btn-assessment {
padding: 10px 16px;
border-radius: 8px;
border: none;
font-weight: 700;
cursor: pointer;
}
.btn-primary {
background: var(--accent);
color: #fff;
}
.btn-secondary {
background: #fff;
color: var(--accent);
border: 1.5px solid var(--accent);
}
.btn[disabled] {
opacity: .5;
cursor: not-allowed;
background: var(--accent);
color: #fff;
} #resultSection {
display: none;
margin-top: 18px;
}
.result-top {
background: var(--accent);
color: #fff;
padding: 16px;
border-radius: 8px 8px 0 0;
text-align: center;
font-weight: 800;
font-size: 31px;
}
.result-body {
background: #fff;
padding: 18px;
border-radius: 0 0 8px 8px;
box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}
.result-note {
background: #00968ced;
color: #fff;
padding: 12px;
border-radius: 6px;
margin-bottom: 12px;
font-size: 20px;
}
.result-stat {
font-size: 30px;
font-weight: 800;
margin-bottom: 80px;
color: #153447;
}
.result-ctas {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
margin-top: 12px;
}
.cta-primary {
background: #00968ced;
color: #fff;
border: none;
padding: 10px 14px;
border-radius: 8px;
min-width: 180px;
font-weight: 700;
}
.cta-secondary {
background: #fff;
color: #00968ced;
border: 1.5px solid #00968ced;
padding: 10px 14px;
border-radius: 8px;
min-width: 180px;
font-weight: 700;
}
details {
margin-top: 12px;
font-size: 18px;
color: var(--muted);
padding-top: 30px;
}
.btn-assessment:hover,.btn-assessment:active{
background-color: #007f7b !important;
border-color: #007f7b !important;
}
#assessmentForm{
padding-bottom:20px;
padding-top: 20px;
}
.next-step{
text-align: center;
}
.text-support-cta,.insurance-cta{
width: 49%;
} .call-home-img{
width:20px !important;
height:20px !important;
vertical-align: middle;
display: inline-block;
position: relative;
top: -1px;
}
.ask-for-help a {
background-color: white;
color: black;
padding: 10px 60px 10px 60px;
border-radius: 53px;
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
border: 2px solid #00978D;
display: inline-flex;
align-items: center;
gap: 8px;
}
.custom-nav-cta {
color: #ffffff;
padding: 10px 30px 10px 30px;
border-radius: 53px;
background-color: #00978D;
font-weight: 600;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
border: 2px solid #ffffff;
}
.custom-nav-cta:hover {
background-color: #00978D;
color: white;
border: 2px solid #ffffff;
}
.navbar-toggler:focus {
box-shadow: none;
}
.custom-room-section {
display: flex !important;
flex-wrap: wrap !important;
justify-content: center !important;
gap: 40px !important;
margin: 60px auto !important;
max-width: 1100px !important;
}
.continued-table {
background-color: #00978D !important;
color: #ffffff !important;
border-radius: 10px !important;
overflow: hidden !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
.custom-room-table table {
width: 100% !important;
margin-bottom: 0 !important;
table-layout: fixed;
}
.custom-room-table th,
.custom-room-table td {
padding: 14px 16px !important;
text-align: center !important;
background-color: #00978D !important;
border-radius: 0;
font-size: 20px;
;
color: white !important;
vertical-align: middle !important;
}
.custom-room-table th {
background-color: #00978D !important;
font-weight: 600 !important;
font-size: 21px !important;
color: #ffffff !important;
vertical-align: middle !important;
}
.custom-table-heading {
text-align: center !important;
font-size: 32px;
font-weight: normal !important;
margin-bottom: 16px !important;
color: #333 !important;
font-family: 'tenor sans', sans-serif !important;
}
.continued-table {
min-width: 100% !important;
border-spacing: 0;
padding: 0 35px;
}
.care-table-body {
color: black !important;
}
.custom-room-table td:first-child,
.custom-room-table th:first-child { line-height: 1;
text-align: left !important;
}
#package {
text-align: left !important;
}
.continued-table thead {
border-bottom: 1px solid #ffffff !important;
}
.custom-room-table td,
.custom-room-table th {
font-weight: 400 !important;
font-family: 'Nunito Sans', sans-serif !important;
}
.cotinuing-care-heading {
font-size: 48px;
color: #545454;
}
.continued-care-container {
padding-top: 25px;
}
.currency-select {
font-size: 21px;
border: 2px solid #00978D;
}
.currency-input {
font-size: 21px;
;
}
.converter-box {
background: #fff;
border-radius: 12px;
padding: 30px 0;
}
.swap-btn {
font-size: 1.4rem;
border: none;
background: none;
cursor: pointer;
color: #00978d;
}
.custom-comparison-table th:not(:first-child),
.custom-comparison-table td:not(.feature-col) .currency-row {
align-items: center;
}
.currency-heading {
font-size: 53px;
color: #545454;
}
.currency-container {
padding-top: 35px;
}
.lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
}
.lightbox.active {
display: flex;
}
.lightbox-header {
position: absolute;
top: 0;
width: 100%;
padding: 12px 20px;
display: flex;
justify-content: space-evenly;
align-items: center;
color: #fff;
font-size: 16px;
background: rgba(0, 0, 0, 0.4);
left: 0;
}
.lightbox-close {
font-size: 28px;
cursor: pointer;
color: white;
padding: 0 8px;
background-color: transparent;
border: none;
}
.lightbox-content {
position: relative;
max-width: 80%;
max-height: 80%;
}
.lightbox-content img {
width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
} .lightbox-prev, .lightbox-next {
position: relative;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.7);
border: none;
font-size: 32px;
cursor: pointer;
padding: 2px 16px;
border-radius: 50%;
transition: 0.2s; }
.lightbox-prev:hover,
.lightbox-next:hover {
background: rgba(255, 255, 255, 0.7);
color: #fff;
}
.lightbox-prev {
right: 2%;
transform: translate(0px, 10px);
}
.lightbox-next {
right: -1%;
transform: translate(10px, 10px);
}
.lightbox-caption {
max-width: 80%;
margin-top: 15px;
color: #fff;
background: rgba(0, 0, 0, 0.6);
padding: 10px 14px;
border-radius: 4px;
font-size: 15px;
text-align: center;
display: none;
}
.lightbox-img {
height: 60vh;
}
.center-line {
position: fixed;
top: 50%;
left: 0;
width: 100vw;
height: 2px;
background-color: black;
transform: translateY(-50%);
z-index: 1000;
}
.vertical-line {
position: fixed;
top: 0;
left: 50%;
width: 2px;
height: 100vh;
background-color: black;
transform: translateX(-50%);
z-index: 1000;
}
.news-inner-heading {
font-size: 32px;
font-family: 'tenor sans', sans-serif;
}
.news-inner-para {
font-size: 17px;
text-align: left;
}
.column {
float: left;
width: 50%;
padding: 12px;
} .row::after {
content: "";
clear: both;
display: table;
}
.news-second-row {
padding-top: 10px;
align-items: center;
}
.news-second-image {
padding-right: 0;
}
.news-second-image img {
height: fit-content;
}
.inner-news-row {
align-items: flex-start !important;
}
.arrow-img-inner {
padding: 0px 0px 0 71%;
}
.accomodation-row {
align-items: center;
}
#index-cta {
position: relative;
z-index: 999;
padding-bottom: 65px;
}
#index-sub-text {
padding-bottom: 0px;
}
.row-flex {
display: flex;
flex-direction: row;
}
.tawk-mobile {
display: none !important;
}
.tawk-min-container {
display: none !important;
}
#continued-last-section {
padding-bottom: 40px;
}
.custom-carousel-wrapper {
position: relative;
max-width: 900px; margin: auto;
width: 75%;
padding-bottom: 90px;
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300978D'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300978D'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}
.custom-carousel-prev,
.custom-carousel-next {
position: absolute;
top: 44%;
transform: translateY(-50%);
background: none;
border: none;
z-index: 5; }
.custom-carousel .carousel-item {
height: 500px; }
.custom-carousel .carousel-item img {
width: 100%;
height: 100%;
object-fit: contain; }
.custom-carousel-prev {
left: -100px; background: white;
width: 47px;
height: 45px;
border-radius: 100%;
}
.custom-carousel-next {
right: -110px;
background: white;
width: 47px;
height: 45px;
border-radius: 100%;
}
.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
filter: invert(1); width: 2rem;
height: 2rem;
}
#main-form {
transform: translate(0px, -518px);
}
.who-we-are-faq {
margin-bottom: -25px;
}
.modal-call {
font-family: 'tenor sans', sans-serif;
font-size: 37px;
}
.ytp-cued-thumbnail-overlay-image {
background-size: 100% !important;
}
#admission-custom {
margin-bottom: 40px;
}
.pagination {
margin: 20px 0;
text-align: center;
justify-content: center;
width: 100%;
}
.pagination a,
.pagination strong {
margin: 0 5px;
padding: 8px 12px;
border: 1px solid #ddd;
text-decoration: none;
cursor: pointer;
}
.pagination a:hover {
background: #00978D;
color: #fff;
}
.pagination a {
color: #00978D;
border-radius: 5px;
}
.pagination strong {
background: #00978D;
color: #fff;
border: 1px solid #00978D;
border-radius: 5px;
}
.news-row-2 {
justify-content: end;
padding-bottom: 20px;
padding-top: 100px !important;
}
.news-row {
padding-top: 100px !important;
padding-bottom: 20px;
}
.experience-container {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/Group 275.png);
background-size: 100% 100%;
margin-top: 100px;
margin-bottom: 100px;
}
.experience-font {
font-family: 'Tenor Sans', sans-serif;
font-size: 65px;
}
.input-error {
border: 2px solid #00978d !important;
background-color: #ffe6e6;
}
.error-message {
color: #00978d;
font-size: 0.4em; display: block;
margin-top: -9px;
margin-bottom: 8px;
}
.background-image {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/home/desk-banner.png);
height: max-content;
min-height: 100vh;
z-index: 1;
position: relative;
background-size: cover;
background-repeat: no-repeat;
overflow: hidden;
} .youtube-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
z-index: 0;
}
.youtube-bg iframe {
position: absolute;
top: 50%;
left: 50%; width: 177.78vh;
min-width: 100%;
height: 56.25vw;
min-height: 100%;
transform: translate(-50%, -50%);
pointer-events: none;
border: 0;
} .hero-content-overlay {
position: relative;
z-index: 2;
}
.background-image-service {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/banner.jpg);
height: 832px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.background-image-heroin {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/heroin/web/heroin web.jpg);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.background-image-cocaine {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/cocaine/web/cocaine web.jpg);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-digital {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/digital/DIGITAL ADDICTION web banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-opioid {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/opioid-addiction/opioid_addiction_treatment_web_banner_1x.webp);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-marijuana {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/marijuana/web/marijuana web.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-what-we-treat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/what-we-treat/what-we-treat-deskptop.png);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-benzodiazepine {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Benzodiazepine Addiction/web/web banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-ketamine {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Ketamine/Ketamine web.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-preg {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Pregabalin/Pregabalin web.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-mdma {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/mdma/web/mdma web.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-our-facilities {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/BANNER.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-meth {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/meth/web/Methamphetamine web banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-meph {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/meph/web/Mephedrone web banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-gambling {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/gambling/web/gamble web.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-compulsive {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/compulsive/web/sexual web.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-who-we-are {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/who we are-web.png);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-terms {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/terms/banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-staff {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/staff/Group 91 (16).png');
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-price {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/price/Group 91 (17).png');
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-refund {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/refund/Group 91 (17).png');
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-schedule {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/schedule/Group 91 (18).png');
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 732px;
}
.background-image-drug {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/Group 91.png);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-pune {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/banner-pune.png);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-pune-1 {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/banner-pune-alcohol.png);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-martin {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, -9, 0.3) 128.43%), url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/martin/Martin Peters Web Banner.jpg);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-obi {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, -9, 0.3) 128.43%), url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/obi/Obi Unaka Web Banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-nishikant {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, -9, 0.3) 128.43%), url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/nishikant/nishikant_1x - Copy.webp);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-mrinal {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, -9, 0.3) 128.43%), url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/devolika/devolika_kuhad_1x.webp);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-nilima {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, -9, 0.3) 128.43%), url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/nilima/nilima_1x.webp);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-devolika {
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, -9, 0.3) 128.43%), url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/mrinal/mrinal_sanas_1x.webp);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-amal {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/amal/amal_web_1x.webp);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-ishita {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Ishita/Ishita Sanjay Akula Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-mridula {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Mridula/Mridula Mishra Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-krisha {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Krisha/Krisha Sanghvi Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-aaliya {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Aaliya/Aaliya Syeda Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-mansi {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Mansi/Mansi Kailas Veer Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-ashish {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Dr. Ashish/Dr. Ashish Deshpande Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-saumya {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Saumya/Saumya Sunny Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-alisha {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Alisha/Alisha Reuben More Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-glory {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Glory/Glory Deepak Petres Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-imon {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Imon/Md Imon Reja Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-pavitra {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Pavitra/Pavitra Puri Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-shubham {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Santosh/Shubham Santosh Ghare Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-suman {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Suman/Suman Kumar Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-nusarat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Nusarat/Nusarat Inamdar Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-nuzhat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Nuzhat/Nuzhat Khan Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-pawan {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Pawan/Dr Pawan Gadgile Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.background-image-dnyaneshwar {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Dnyaneshwar/Dr Dnyaneshwar Patharwat Web Banner.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
.hide-on-desktop {
display: none !important;
}
.img-logo {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
justify-content: space-evenly;
align-items: center;
position: fixed;
top: 5%;
left: 0;
width: 100%;
z-index: 10000;
background-color: transparent;
transition: background-color 0.6s ease-in-out, box-shadow 0.6s ease-in-out, backdrop-filter 0.6s ease-in-out;
backdrop-filter: blur(0px);
box-sizing: border-box;
} .img-logo.scrolled {
background-color: rgba(0, 151, 141, 1);  backdrop-filter: blur(1px); } .img-logo .nav-link {
color: #fff !important;
transition: color 0.4s ease-in-out;
}
.img-logo.scrolled .nav-link {
color: #ffffff !important;
}
.img-logo.scrolled .custom-nav-cta {
background-color: white;
color: rgba(0, 151, 141, 1);
transition: color 0.4s ease-in-out;
}
.navbar-collapse {
display: flex;
justify-content: center;
}
.navbar-nav {
justify-content: center;
display: flex;
}
body {
font-family: 'Nunito Sans', sans-serif;
}
a {
text-decoration: none;
}
.navbar-brand {
width: fit-content;
justify-content: center;
display: flex;
}
#navbarNav {
border-top: 1px solid rgba(255, 255, 255, 0.329); position: relative;
justify-content: center !important;
}
.nav-link {
color: white; position: relative;
padding: 1rem 1rem;
text-align: center;
}
@media only screen and (min-width: 960px) {
.nav-link {
font-size: 12px;
}
.custom-nav-cta {
color: #ffffff;
padding: 10px 20px 10px 20px;
border-radius: 53px;
background-color: #00978D;
font-weight: 600;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
border: 2px solid #ffffff;
}
}
@media only screen and (min-width: 1440px) {
.nav-link {
font-size: 16px;
}
.custom-nav-cta {
color: #ffffff;
padding: 10px 25px 10px 25px;
border-radius: 53px;
background-color: #00978D;
font-weight: 600;
font-size: 17px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
border: 2px solid #ffffff;
}
}
@media only screen and (min-width: 2000px) {
.nav-link {
font-size: 20px;
}
.custom-nav-cta {
color: #ffffff;
padding: 10px 30px 10px 30px;
border-radius: 53px;
background-color: #00978D;
font-weight: 600;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
border: 2px solid #ffffff;
}
}
.nav-link {
padding-top: 24px;
padding-right: 25px !important;
} .navbar-nav .nav-link.active::before {
content: '';
position: absolute;
top: -2px; left: 50%;
transform: translateX(-60%);
width: 80%; height: 4px;
background-color: #00978D;
z-index: 2;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
color: white !important;
font-weight: bold;
}
.nav-link:hover {
color: white !important;
font-weight: bold;
}
h2 {
font-family: 'Tenor Sans', sans-serif;
}
h1 {
font-family: 'Tenor Sans', sans-serif;
}
.banner-title {
font-size: 67px;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
position: relative;
padding-top: 570px;
}
.banner-sub-text {
font-size: 43px;
}
#our-approach-sub-text {
font-size: 48px;
}
.banner-underline::after {
content: '';
position: absolute;
bottom: -15px; left: 50%;
transform: translateX(-50%);
width: 143px; height: 2px;
background-color: white;
}
.sub-text {
font-size: 24px;
color: white;
padding-top: 28px;
padding-bottom: 120px;
text-align: center;
position: relative;
}
.left-heading {
font-size: 36px;
color: #545454;
line-height: 0.8;
z-index: 900;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
}
.second-text {
font-size: 75px;
font-family: 'Tenor Sans', sans-serif;
color: #545454;
line-height: 1;
z-index: 900;
position: relative;
}
.who-we-are-second-text {
font-size: 75px;
font-family: 'Tenor Sans', sans-serif;
color: #545454;
line-height: 1;
z-index: 900;
position: relative;
}
.our-story {
transform: translate(0px, -60px);
}
.text-background {}
.cust-section {
position: relative;
padding-top: 70px;
padding-bottom: 70px;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/what we are/Vector 26.png);
background-size: cover;
background-repeat: no-repeat;
background-size: 7%;
background-position: bottom left;
background-position: left 33%;
}
.left-content {
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: 0%;
padding-top: 10px;
z-index: 900;
position: relative;
text-align: left;
}
.img-background {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 100;
}
.img-background-who-we-are {
position: absolute;
top: 60%;
left: 38%;
transform: translate(-50%, -50%);
z-index: 100;
}
.img-line {
position: absolute;
top: 85%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 100;
}
.right-column {
z-index: 100;
display: flex;
justify-content: center;
align-items: center;
}
.left-column {}
.second-section {
padding-top: 62px;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/proven care/Group 126.webp);
padding-bottom: 55px;
background-size: cover;
position: relative;
}
.who-we-are-second-section {
padding-top: 62px;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/2.png);
padding-bottom: 62px;
background-size: 100% 100%;
margin-top: 100px;
}
.section-heading {
text-align: center;
font-weight: 400;
font-size: 40px;
line-height: 100%;
letter-spacing: 0%;
color: white
}
.who-we-are-section-heading {
font-weight: 400;
font-size: 48px;
line-height: 104%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
color: white;
}
.second-section-text {
font-size: 53px;
font-family: 'tenor' sans-serif;
}
.proven-care {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.care-arrow {
width: 380px;
padding-top: 20px;
}
.icons {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 70px;
padding-bottom: 115px;
}
.who-we-are-icons {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
padding-top: 70px;
padding-bottom: 10px;
}
.icons>img {
width: 35%;
}
.icons>h2 {
font-weight: 400;
font-size: 59.72px;
line-height: 100%;
letter-spacing: 0%;
color: white;
padding-top: 33px;
}
.icons>p {
font-family: 'Nunito Sans', sans-serif;
font-weight: 700;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
color: white;
}
.who-we-are-icons>img {
width: 35%;
}
.who-we-are-icons>h2 {
font-weight: 700;
font-size: 32px;
line-height: 100%;
letter-spacing: 0%;
color: white;
padding-top: 7px;
text-align: center;
}
.who-we-are-icons>p {
font-weight: 400;
font-size: 20px;
line-height: 21px;
letter-spacing: 0%;
text-align: center;
color: white;
padding-top: 7px;
}
.cta {
width: 100%;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/proven care/Vector 13.png);
background-position: center;
background-repeat: no-repeat;
display: flex;
justify-content: center;
}
.book-cta {
display: flex;
justify-content: center;
padding: 10px 32px;
border-radius: 52px;
background-color: white;
width: fit-content;
}
.book-cta>a {
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: black;
}
.flower {
position: absolute;
top: 1880px;
}
.right-flower {
position: absolute;
right: 0px;
top: 1400px;
}
.what-we-treat>h2 {
text-align: center;
}
.alcohol-treatment>h2 {
text-align: center;
text-transform: uppercase;
}
.alcohol-img-arrow {
width: 100%;
justify-content: center;
display: flex;
}
.alcohol-subtext {
font-weight: 300;
font-size: 24px;
line-height: 30px;
letter-spacing: 0%;
padding-top: 100px;
text-align:center;
}
.alcohol-subtext>span {
font-weight: bold;
}
.alcohol-addiction {
justify-content: space-evenly;
padding-top: 20px;
}
.accordion-item {
border: none;
}
.accordion-button:not(.collapsed) {
background-color: white;
border-bottom: 1px solid #D6D6D6;
}
.accordion-button {
background-color: white;
border-bottom: 1px solid #D6D6D6;
padding-left: 0px
}
.accordion-body {
padding-left: 0px;
}
.accordion-button:focus {
box-shadow: none;
}
.who-we-are-button {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/Horizontal Divider.png); background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1rem;
padding-right: 3rem; font-weight: 400;
font-size: 20.41px;
line-height: 25.52px;
letter-spacing: 0%;
vertical-align: middle;
}
.accordion-button {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/Vector (6).png'); background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1rem;
padding-right: 3rem; font-size: 20px;
}
.accordion-button::after {
display: none; }
.accordion-button:not(.collapsed) {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/Vector (5).png') !important; }
.who-we-are-button:not(.collapsed) {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/Horizontal Divider.png) !important; }
.career-button:not(.collapsed) {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/career/minus.png) !important; background-color: transparent;
}
.career-accordion {
padding: 20px 40px 50px 40px;
}
.who-we-are-accordion-item {
border: none;
}
#career-form-title {
padding: 40px 120px 0 120px;
}
.internship>h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 70px;
line-height: 118%;
letter-spacing: 0%;
text-align: center;
color: #545454;
}
.internship>p {
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 136%;
letter-spacing: 0%;
color: #545454;
text-align: justify;
}
.internship-section {
padding-bottom: 415px;
padding-top: 90px;
}
.internship>a {
border: 2px solid #00978D;
border-radius: 53px;
padding: 10px 32px 10px 32px;
font-family: "Nunito Sans", sans-serif;
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #000000;
align-items: center;
justify-content: center;
display: flex;
margin: 0 auto;
width: fit-content;
box-shadow: -1px 2px 13px rgba(0, 0, 0, 0.13),
1px 9px 12px rgba(0, 0, 0, 0.13),
0px 2px 4px rgba(0, 0, 0, 0.13);
}
.description>li {
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 136%;
letter-spacing: 0%;
color: #545454;
}
.who-we-are-accordion-button:not(.collapsed) {
background-color: white;
border-bottom: 1px solid #D6D6D6;
}
.who-we-are-accordion-button {
background-color: white;
border-bottom: 1px solid #D6D6D6;
}
.who-we-are-accordion-button:focus {
box-shadow: none;
}
.who-we-are-button {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/plus.png) !important; background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1rem;
padding-right: 3rem; }
.career-button {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/career/plus.png) !important; background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1rem;
background-color: transparent;
padding-right: 3rem; }
.who-we-are-accordion-button::after {
display: none; }
.who-we-are-accordion-button:not(.collapsed) {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/Horizontal Divider.png) !important; }
.faq-body {
font-weight: 400;
font-size: 17.01px;
line-height: 27.76px;
letter-spacing: 0%;
vertical-align: middle;
text-align: justify;
}
.cta-service {
background-color: rgba(0, 151, 141, 0.19);
margin-top: 80px;
}
.cta-heading {
font-weight: 700;
font-size: 32px;
line-height: 25px;
letter-spacing: 0%;
}
.cta-subheading {
font-weight: 300;
font-size: 24px;
line-height: 30px;
letter-spacing: 0%;
margin: 0;
}
.cta-subheading>span {
font-weight: bold;
}
.cta-service-text {
padding: 30px 18px;
}
.service-testimonial {
margin-bottom: 138px;
}
.what-we-treat {
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
}
.section-third {
padding-top: 170px;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHAT WE TREAT/WEB/gradient.PNG);
background-size: cover;
padding-bottom: 115px;
position: relative;
}
.flower-1 {
position: absolute;
top: 2%;
}
.flower-treat-1 {
position: absolute;
top: 12px;
}
.flower-1-right {
position: absolute;
right: 0px;
top: 13%;
}
.flower-treat-right {
position: absolute;
right: 0px;
top: 450px;
}
.services {
border-bottom: 1px solid #D6D6D6;
}
.first-row {
padding-top: 70px;
}
.service-item {
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
padding-top: 30px;
padding-bottom: 5px;
}
.service-link {
color: #000000;
}
#whatwetreat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHAT WE TREAT/WEB/gradient.PNG);
margin-bottom: 80px;
position: relative;
}
#whatwetreat-home {
position: relative;
}
#whoweare {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHAT WE TREAT/WEB/gradient.PNG);
}
#whowearesection {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/bg.png);
margin-bottom: 0px;
}
#whatwetreat-subtext {
padding-bottom: 35px;
font-size: 36px;
}
#treat-title {
font-size: 67px;
}
#treat-assessment {
margin-top: 70px;
margin-bottom: 70px;
}
.service-item:hover {
font-weight: bold;
border-bottom: 2px solid #00978D;
}
.fourth-section {
margin-top: 74px;
padding-bottom: 85px;
}
.testimonials {
display: flex;
justify-content: center;
align-items: center;
}
.test-container {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/testimonials/TESTIMONIAL BG.png);
background-size: cover;
padding-top: 130px;
}
.test-arrows,
.service-arrows {
height: 12px;
}
.service-arrows {
width: 100%;
height: 12px;
object-fit: contain;
}
.testimonial-header {
font-weight: 400;
font-size: 75px;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;
color: #545454;
}
.why-choose-us-arrows {
flex: 0 0 auto;
width: 11.666667%;
}
.video-carousel {
width: 100%;
max-width: 800px;
margin: auto;
overflow: hidden;
position: relative; }
.carousel-viewport {
width: 100%;
overflow: hidden;
padding-bottom: 20px;
}
.video-track {
display: flex;
width: 100%; transition: transform 0.5s ease;
padding-left: 19px;
}
.video-card {
width: 100%;
flex-shrink: 0;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.video-card.active {
opacity: 1;
pointer-events: auto;
}
.video-card iframe {
width: 100%;
height: 400px;
border: 3px solid white;
box-shadow:
-7px 4px 11px 2px #0000003D,
524px 15px 19px -17px #00000036,
21px 33px 26px -26px #0000001F,
19px 59px 31px -20px #0000000A,
-70px 92px 34px -37px #00000000
}
.nav {
background: #fff;
border: none;
font-size: 2rem;
padding: 10px 20px;
cursor: pointer;
z-index: 2;
justify-content: start;
}
.carousel-indicators {
display: flex !important;
justify-content: center;
margin-top: 20px;
gap: 10px;
position: relative;
}
.carousel-indicators button {
width: 12px;
height: 12px;
background-color: #ffffff;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
.carousel-indicators button.active {
background-color: #00978D;
width: 40px;
}
.fifth-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CLIENT SAY ABOUT US/background.png);
background-repeat: no-repeat;
background-position: center;
}
.arrow-img {
display: flex;
justify-content: end;
}
.multi-carousel {
display: flex;
align-items: center;
justify-content: center;
max-width: 1000px;
margin: auto;
position: relative;
}
.multi-viewport {
overflow: hidden;
width: 100%;
}
.multi-track {
display: flex;
transition: transform 0.5s ease;
}
.multi-card {
flex: 0 0 calc(33.3333% - 20px); margin-right: 30px;
box-sizing: border-box;
margin-top: 84px;
background: #ffffff;
text-align: center;
border-radius: 8px;
}
.multi-card:last-child {
margin-right: 0; }
.multi-prev,
.multi-next {
background: none;
border: none;
font-size: 2rem;
padding: 10px;
cursor: pointer;
z-index: 1;
}
.google {
display: flex;
align-items: end;
justify-content: end;
padding: 10px;
}
.star {
display: flex;
justify-content: start;
padding: 0 25px;
}
.review-content {
font-weight: 300;
font-size: 15.6px;
line-height: 20.06px;
letter-spacing: 0%;
vertical-align: middle;
text-align: left;
padding: 20px 20px 0px 25px;
color: #000000;
}
.read-more {
color: #00978D;
font-weight: 500;
text-decoration: none;
white-space: nowrap;
}
.read-more:hover {
text-decoration: underline;
}
.bottom-text {
display: flex;
justify-content: flex-start;
flex-direction: row;
padding-top: 20px;
align-items: center;
}
.bottom-text>p {
font-weight: bold;
font-size: 17.83px;
line-height: 31.21px;
letter-spacing: 0%;
vertical-align: middle;
color: #000000;
padding-left: 15px;
text-align: left;
}
.cards {
background-color: #F4F4F4;
box-shadow: 0px 5.57px 11.15px 0px #00000026;
backdrop-filter: blur(0px);
border-radius: 12px;
height: 295px;
overflow: hidden;
}
.experts-img-2 {
width: 100%;
}
.sixth-section {
padding-top: 125px;
}
.experts-img-1 {
padding-top: 80px;
width: 100%;
}
.experts-heading {
padding-top: 10px;
VERTICAL-ALIGN: middle;
justify-content: center;
display: flex;
flex-direction: column;
align-items: center;
}
#nav-tab,
#nav-tab-static {
justify-content: center;
}
.team-card-info {
text-align: center;
padding: 10px 4px 6px;
}
.team-card-info h3 {
font-size: 14px;
font-weight: 600;
margin: 0 0 3px;
color: #212529;
font-family: 'Nunito Sans', sans-serif;
}
.team-card-info p {
font-size: 12px;
color: #666;
margin: 0;
font-family: 'Nunito Sans', sans-serif;
}
.experts-width {
display: flex;
justify-content: center;
}
.experts-arrow {
width: 70%;
}
.expert-link {
font-weight: 300;
font-size: 21px;
line-height: 100%;
letter-spacing: 0%;
color: #000000;
border: none;
width: fit-content;
background-color: white;
text-align: left;
padding-top: 15px;
margin-right: 27px;
}
.expert-link.active {
font-weight: 700;
padding-bottom: 5px;
border-bottom: 3px solid #00978D;
}
.slider-carousel-wrapper,
.slider-carousel-2-wrapper,
.slider-carousel-3-wrapper,
.slider-carousel-4-wrapper,
.slider-carousel-5-wrapper {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
box-sizing: border-box;
justify-content: center;
display: flex;
flex-direction: column;
align-items: center;
}
.carousel-card-hover {
position: relative;
overflow: hidden;
border-radius: 12px;
cursor: pointer;
transition: transform 0.3s ease;
}
.carousel-person-image {
width: 100%;
height: auto;
display: block;
transition: filter 0.3s ease;
}
.carousel-card-hover:hover .carousel-person-image {
opacity: 1;
}
.hover-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
background: #00000096;
color: #fff;
opacity: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
transition: opacity 0.3s ease;
pointer-events: none;
border: 3px solid #00978D;
border-radius: 12px;
}
.carousel-card-hover:hover .hover-overlay {
opacity: 1;
pointer-events: auto;
}
.tab-content {
padding-top: 10px;
}
.hover-overlay h4, .hover-overlay h3 {
margin: 0;
font-size: 14px;
color: white;
text-transform: uppercase;
font-weight: bold;
}
.hover-overlay p {
margin: 4px 0 0;
font-size: 10px;
color: white;
border-bottom: 1px solid white;
width: fit-content;
}
.slider-carousel-viewport,
.slider-carousel-2-viewport,
.slider-carousel-3-viewport,
.slider-carousel-4-viewport,
.slider-carousel-5-viewport {
overflow: hidden;
width: 100%;
}
.slider-carousel-track,
.slider-carousel-4-track,
.slider-carousel-5-track {
display: flex;
transition: transform 0.3s ease;
justify-content: center
}
.slider-carousel-2-track,
.slider-carousel-3-track {
display: flex;
transition: transform 0.3s ease;
}
.slider-carousel-card,
.slider-carousel-2-card,
.slider-carousel-3-card,
.slider-carousel-4-card,
.slider-carousel-5-card {
flex: 0 0 200px;
margin-right: 20px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.slider-carousel-card img {
width: 100%;
height: auto;
display: block;
}
.slider-carousel-2-card img,
.slider-carousel-3-card img,
.slider-carousel-4-card img,
.slider-carousel-5-card img {
width: 100%;
height: auto;
display: block;
}
.slider-range-wrapper,
.slider-range-2-wrapper,
.slider-range-3-wrapper,
.slider-range-4-wrapper,
.slider-range-5-wrapper {
position: relative;
width: 50%;
height: 40px;
margin-top: 30px;
}
.slider-range-wrapper::before,
.slider-range-2-wrapper::before,
.slider-range-3-wrapper::before,
.slider-range-4-wrapper::before,
.slider-range-5-wrapper::before {
content: "";
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 8px; background: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/TEAM OF EXPERTS/Vector30.png) no-repeat center center;
background-size: contain;
transform: translateY(-50%);
pointer-events: none;
z-index: 1;
}
.slider-carousel-range,
.slider-carousel-2-range,
.slider-carousel-3-range,
.slider-carousel-4-range,
.slider-carousel-5-range {
position: relative;
width: 100%;
background: transparent;
appearance: none;
z-index: 2;
height: 40px;
cursor: pointer;
border: none;
} .slider-carousel-range::-webkit-slider-thumb {
appearance: none;
height: 20px;
width: 20px;
background: white;
border: 2px solid black;
border-radius: 50%;
position: relative;
z-index: 3;
} .slider-carousel-2-range::-webkit-slider-thumb,
.slider-carousel-3-range::-webkit-slider-thumb,
.slider-carousel-4-range::-webkit-slider-thumb,
.slider-carousel-5-range::-webkit-slider-thumb {
appearance: none;
height: 20px;
width: 20px;
background: white;
border: 2px solid black;
border-radius: 50%;
position: relative;
z-index: 3;
}
.slider-carousel-range::-moz-range-thumb {
height: 20px;
width: 20px;
background: white;
border: 2px solid black;
border-radius: 50%;
z-index: 3;
}
.slider-carousel-2-range::-moz-range-thumb,
.slider-carousel-3-range::-moz-range-thumb,
.slider-carousel-4-range::-moz-range-thumb,
.slider-carousel-5-range::-moz-range-thumb {
height: 20px;
width: 20px;
background: white;
border: 2px solid black;
border-radius: 50%;
z-index: 3;
}
.form-image {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/7 10.png);
height: 860px;
position: absolute;
width: 100%;
background-repeat: no-repeat;
background-size: 100%;
}
.section-8 {
position: relative;
padding-top: 300px;
display: flex;
justify-content: center;
z-index: 900;
}
.contact-form-section {
position: relative;
padding-top: 0px;
display: flex;
justify-content: center;
z-index: 900;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.form-section {
background-color: white;
width: fit-content;
box-shadow: -10px 8px 33px 0px #0000002b;
border-radius: 33px;
overflow: hidden;
margin: 0 auto;
}
.contact-form-arrow {
width: 100%;
justify-content: center;
display: flex;
}
.form-section h2 {
font-weight: 400;
font-size: 48.55px;
line-height: 68.75px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
padding: 40px 120px 0 120px;
}
.form-section p {
font-weight: 400;
font-size: 20px;
line-height: 31px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
padding: 20px 120px 0 120px;
}
form {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
align-items: center;
padding-bottom: 60px;
}
.home-form {
padding-bottom: 100px !important;
}
input {
width: 50%;
height: 50px;
border: 1px solid #94805C4D;
border-radius: 4px;
padding: 13px 0px 13px 21px;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: black;
margin-bottom: 16px;
}
#file-name,
#file-name-cover {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 15px;
line-height: 0px;
letter-spacing: 0%;
color: #9F9F9F;
vertical-align: middle;
font-weight: 400; line-height: 10.46px;
letter-spacing: 0%;
vertical-align: middle;
display: inline-block;
max-width: 253px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}
.video-background {
display: flex;
justify-content: center;
position: relative;
}
.career-video {
margin-top: -133px;
box-shadow: 0px 3px 8px 0px #0000004F,
0px 14px 14px 0px #00000045,
0px 14px 14px 0px #00000045,
0px 31px 19px 0px #00000029,
0px 56px 22px 0px #0000000D,
0px 87px 24px 0px #00000003;
}
.video-background-career {
background-repeat: no-repeat;
background-size: contain;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/career/background-old.png);
padding-bottom: 80px;
padding-top: 0px;
background-position: 100% 30%;
}
.career-play {
position: absolute;
top: 135px;
}
.resume-btn {
width: 77%;
height: 50px;
border: 1px solid #94805C4D;
border-radius: 4px;
padding: 13px 0px 13px 21px;
font-weight: 400;
font-size: 20px;
background-color: white;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: black;
margin-bottom: 16px;
display: flex;
}
select {
width: 50%;
height: 50px;
border: 1px solid #94805C4D;
border-radius: 4px;
padding: 10px 0px 13px 21px;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: black;
margin-bottom: 16px;
}
input::placeholder,
select::placeholder {
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: black;
}
.form-submit {
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
background-color: #00978D;
color: white;
padding: 10px 32px;
border-radius: 53px;
box-shadow: 0px 2px 4px 0px #0000001A;
box-shadow: 0px 8px 8px 0px #00000017;
box-shadow: 0px 17px 10px 0px #0000000D;
box-shadow: 0px 31px 12px 0px #00000003;
box-shadow: 0px 48px 13px 0px #00000000;
border: 2px solid white;
}
.modal-choice-btn {
font-weight: 600;
font-size: 30px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #00978D;
padding: 10px 32px;
border-radius: 53px;
box-shadow: 0px 2px 4px 0px #0000001A;
box-shadow: 0px 8px 8px 0px #00000017;
box-shadow: 0px 17px 10px 0px #0000000D;
box-shadow: 0px 31px 12px 0px #00000003;
box-shadow: 0px 48px 13px 0px #00000000;
border: 2px solid #00978D;
}
.modal-choice-btn:hover {
background-color: #00978D;
color: white;
}
.form-submit-1 {
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
background-color: #ffffff;
color: #000000;
padding: 10px 32px;
border-radius: 53px;
box-shadow: 0px 2px 4px 0px #0000001A;
box-shadow: 0px 8px 8px 0px #00000017;
box-shadow: 0px 17px 10px 0px #0000000D;
box-shadow: 0px 31px 12px 0px #00000003;
box-shadow: 0px 48px 13px 0px #00000000;
border: 2px solid #00978D;
}
footer {
background-color: rgba(0, 151, 141, 0.18);
padding-top: 80px;
z-index: 100;
position: relative;
}
.first-column>p {
font-weight: 400;
font-size: 12.58px;
line-height: 19.5px;
letter-spacing: 0%;
vertical-align: middle;
padding-top: 30px;
padding-bottom: 30px;
}
.footer-logo {
width: 100%;
}
.footer-icons {
width: 31px;
object-fit: contain;
padding: 0px 13px 0px 0px;
}
.footer-row>.col-md-3 {
border-right: 3px solid white;
}
.second-column,
.third-column {
padding: 20px 25px;
}
.footer-list {
list-style-type: none;
padding-left: 0px;
}
.footer-links {
line-height: 37px;
font-weight: 400;
font-size: 13.5px;
line-height: 27px;
letter-spacing: 0%;
vertical-align: middle;
text-transform: capitalize;
color: #212529;
}
.footer-hyperlink {
color: #212529;
cursor: pointer;
}
.second-column>p,
.third-column>p {
font-weight: 700;
font-size: 20px;
line-height: 27px;
letter-spacing: 0%;
vertical-align: middle;
text-transform: capitalize;
color: #212529;
}
.illustration {
display: flex;
justify-content: start;
align-items: end;
padding-right: 40px;
opacity: .4;
}
.fixed-icon-stack {
position: fixed;
right: 20px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 12px;
z-index: 100000;
}
.icon-link {
width: 70px;
height: 70px;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease;
background-color: #00978D;
border-radius: 50px;
justify-content: center;
}
.icon-link>img {
width: 35px;
}
.icon-link:hover img {
transform: scale(1.1);
}
.show-on-mobile {
display: none;
}
.custom-menu {
display: none;
position: absolute;
top: 110%;
right: 0;
left: auto;
background-color: #00978D;
border-radius: 18px;
min-width: 220px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
z-index: 999;
}
.custom-hamburger {
position: relative; display: flex;
flex-direction: column;
gap: 6px;
background: none;
border: 2px solid #ffffff;
border-radius: 8px;
cursor: pointer;
padding: 10px 14px;
z-index: 1000;
}
.thank-you-nav-link {
color: rgb(0, 0, 0);
font-size: 20px;
position: relative;
padding: 1rem 1rem;
text-align: center;
}
.thank-you-nav-link:hover {
color: rgb(0, 0, 0) !important;
font-weight: bold;
}
.thank-you-hamburger span {
width: 30px;
height: 3px;
background-color: #000000 !important;
transition: all 0.3s ease;
}
.custom-hamburger span {
width: 30px;
height: 3px;
background-color: #ffffff;
transition: all 0.3s ease;
}
.custom-menu ul {
list-style: none;
margin: 0;
padding: 10px 0;
}
.custom-menu ul li {
padding: 10px 36px;
}
.custom-menu ul li a {
border-bottom: 0.89px solid white;
font-weight: 500;
font-size: 17.76px;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;
color: white;
padding-bottom: 7px;
display: block;
}
.custom-menu ul li a:hover {
font-weight: bold;
}
.custom-menu.show {
display: block;
}
.ask-for-help {
padding-top: 20px;
width: 100%;
justify-content: center;
display: flex;
align-items: center;
padding-bottom: 50px;
}
.ask-for-help a {
background-color: white;
color: black;
padding: 10px 60px 10px 60px;
border-radius: 53px;
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
border: 2px solid #00978D;
display: inline-flex;
align-items: center;
gap: 8px;
}
.ask-for-help img {
width: 143px;
height: 2px;
}
.first-section-service {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/background (1).png');
height: 500px;
background-repeat: no-repeat;
background-position: center;
}
.hexagon-section {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/Ellipse 14.png);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
padding: 2rem;
flex-wrap: wrap;
}
.second-section-service {
background-color: #EEF8F7;
padding-bottom: 40px;
}
.circle-center {
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.circle-center img {
max-width: 500px;
width: 100%;
height: auto;
}
.symptoms {
font-weight: 400;
font-size: 48px;
line-height: 91%;
color: white;
position: absolute;
text-align: center;
}
.hex-side {
display: flex;
flex-direction: column;
gap: 2rem;
}
.hex-wrapper {
display: flex;
align-items: center;
}
.hex-side.left .hex-wrapper {
flex-direction: row-reverse;
text-align: right;
}
.hex-side.right .hex-wrapper {
flex-direction: row;
text-align: left;
}
.hex-label {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
} .hex {
width: 120px;
aspect-ratio: 1;
background: #593e0d;
clip-path: shape(from 93.3% 69.55%, curve to 88.58% 77.72% with 93.3% 75%, line to 54.72% 97.28%, curve to 45.28% 97.28% with 50% 100%, line to 11.42% 77.72%, curve to 6.7% 69.55% with 6.7% 75%, line to 6.7% 30.45%, curve to 11.42% 22.28% with 6.7% 25%, line to 45.28% 2.72%, curve to 54.72% 2.72% with 50% 0%, line to 88.58% 22.28%, curve to 93.3% 30.45% with 93.3% 25%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.assessment {
font-family: 'Tenor Sans', sans-serif;
font-weight: 400;
font-size: 64px;
line-height: 104%;
letter-spacing: 0%;
color: #545454;
}
.assessment-subtext {
font-weight: 400;
font-size: 20px;
line-height: 25px;
letter-spacing: 0%;
}
.assessment-section {
background-color: #EEF8F7;
}
.assessment-line {
background-repeat: no-repeat;
object-fit: contain;
}
.assessment-btn {
font-family: 'Nunito Sans', sans-serif;
font-size: 24px;
color: #ffffff;
padding: 5px 32px;
background-color: #00978D;
border-radius: 53px;
border: 2px solid #ffffff;
box-shadow: 1px 9px 4px 0px #0000001A, 4px -3px 4px 0px #0000001A, 0px 2px 4px 0px #0000001A;
}
.assesment-row {
display: flex;
flex-direction: row;
align-items: end;
}
.assessment-subtitle {
font-family: 'Nunito sans', sans-serif;
font-size: 20px;
color: #000000;
margin: 0;
}
.assessment-container {
padding-top: 70px;
}
.assessment-left-side {
display: flex;
justify-content: center;
flex-direction: column;
}
.left-service-column {
padding-top: 170px;
}
.test-column {
padding-top: 85px;
}
textarea.form-control {
resize: none;
background-color: #FBFBFB;
}
.one-liner {
font-weight: 400;
font-size: 20px;
line-height: normal;
letter-spacing: normal;
min-height: 110px;
}
.meth-one-liner {
font-weight: 400;
font-size: 20px;
line-height: normal;
letter-spacing: normal;
min-height: 40px;
}
.cocaine-one-liner {
font-weight: 400;
font-size: 20px;
line-height: normal;
letter-spacing: normal;
min-height: 90px;
}
.heroine-one-liner {
font-weight: 400;
font-size: 20px;
line-height: normal;
letter-spacing: normal;
min-height: 90px;
}
.alcohol-one-liner {
min-height: 30px;
}
#alcohol-second-column {
min-height: 110px;
}
.test-button {
display: flex;
width: fit-content;
padding-top: 17px;
}
.test-button a {
border: 2px solid #00978D;
box-shadow: 0px 2px 4px 0px #0000001A;
background-color: white;
border-radius: 53px;
color: black;
font-weight: 600;
padding: 10px 32px;
}
.test-button a:hover {
background-color: #00978D;
color: white;
}
.service-third-section {
padding-top: 108px;
}
.background-treatment {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/Group 153.png);
background-repeat: no-repeat;
background-position: center left;
padding-top: 100px;
}
.service-approach-bg {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/approach/bg.png);
}
.treatment-textbox {
box-shadow: -13px 14px 11px 0px #0000001A;
width: 647.1494140625px;
background-color: white;
height: fit-content;
border-radius: 16px;
padding: 15px 15px 20px 40px;
}
.treatment-textbox-2 {
box-shadow: -13px 14px 11px 0px #0000001A;
width: 647.1494140625px;
background-color: white;
height: fit-content;
border-radius: 16px;
padding: 15px 15px 20px 40px;
}
.treatment-heading {
color: #00978D;
}
.second-treatment {
justify-content: end;
}
.treatment-image {
width: 100%;
}
.main {
position: relative; border-radius: 50%;
width: 500px;
height: 500px;
justify-content: center;
display: flex;
align-items: center;
background: #00978D;
}
.circle {
position: absolute;
left: calc(50% - 25px);
top: calc(50% - 25px);
height: 204px;
width: 182px;
background-color: rgb(0, 0, 0);
clip-path: shape(from 93.3% 69.55%, curve to 88.58% 77.72% with 93.3% 75%, line to 54.72% 97.28%, curve to 45.28% 97.28% with 50% 100%, line to 11.42% 77.72%, curve to 6.7% 69.55% with 6.7% 75%, line to 6.7% 30.45%, curve to 11.42% 22.28% with 6.7% 25%, line to 45.28% 2.72%, curve to 54.72% 2.72% with 50% 0%, line to 88.58% 22.28%, curve to 93.3% 30.45% with 93.3% 25%);
filter: drop-shadow(0 0 2px green); }
.circle:nth-child(1) {
transform: rotate(240deg) translateX(122px);
left: calc(50% - -267px);
top: calc(50% - 40px);
}
.circle:nth-child(2) {
transform: rotate(240deg) translateX(250px);
top: calc(50% - -226px);
left: calc(50% - -232px); }
.circle:nth-child(3) {
transform: rotate(240deg) translateX(250px);
left: calc(50% - 187px);
top: calc(50% - -233px);
}
.circle:nth-child(4) {
transform: rotate(240deg) translateX(250px);
left: calc(50% - 159px);
top: calc(50% - 63px);
}
.circle:nth-child(5) {
transform: rotate(240deg) translateX(250px);
left: calc(50% - -242px); top: calc(50% - 72px);
}
.circle:nth-child(6) {
transform: rotate(240deg) translateX(250px);
left: calc(50% - 267px);
top: calc(50% - -86px);
}
.hexagon {
align-items: center;
justify-content: center;
display: flex;
padding-top: 160px;
}
.hexagon-container {
position: relative;
width: 800px;
height: 600px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}
.background-image-hexagon {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/background (1).png');
background-position: bottom;
background-repeat: no-repeat;
}
.hexagon-cta {
width: 100%;
display: flex;
justify-content: center;
}
.recognize {
display: flex;
flex-direction: row;
width: 791px;
align-items: center;
justify-content: space-around;
background-color: white;
padding: 20px 0px;
}
.recognize-line {
width: 153px;
object-fit: contain;
}
.recognize>h2 {
font-weight: 600;
font-style: italic;
font-size: 24px;
line-height: 74px;
letter-spacing: 0%;
text-align: center;
}
.signs {
color: #00978D;
font-weight: 600;
font-style: italic;
font-size: 24px;
line-height: 74px;
letter-spacing: 0%;
text-align: center;
}
.get-help-btn {
background-color: white;
border-radius: 53px;
border: 2px solid #00978D;
box-shadow: 0px 2px 4px 0px #0000001A;
box-shadow: 0px 8px 8px 0px #00000017;
box-shadow: 0px 17px 10px 0px #0000000D;
box-shadow: 0px 31px 12px 0px #00000003;
box-shadow: 0px 48px 13px 0px #00000000;
display: flex;
align-items: center;
}
.get-help-btn>a {
padding: 12px 32px;
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: black;
}
.main-circle {
width: 500px;
height: 500px;
border-radius: 50%;
background: #00978D;
position: relative;
z-index: 1;
}
.hex-svg {
position: absolute;
width: 182px;
height: 204px;
z-index: 2;
} .hex-left-1 {
transform: translate(-275px, -4px) rotate(240deg);
}
.hex-left-2 {
transform: translate(-187px, 145px) rotate(240deg);
}
.hex-left-3 {
transform: translate(-180px, -161px) rotate(240deg);
} .hex-right-1 {
transform: translate(284px, 26px) rotate(60deg);
}
.hex-right-2 {
transform: translate(187px, 175px) rotate(60deg);
}
.hex-right-3 {
transform: translate(195px, -132px) rotate(60deg);
}
.hex-wrapper-2 {
position: absolute;
display: flex;
align-items: center;
transform: translate(-91px, 0px);
z-index: 999;
}
.hex-label {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: 215px;
color: black;
width: 200px;
top: -14px;
}
.meth-label {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: 215px;
color: black;
width: 200px;
top: 2px;
}
.hex-label-3 {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: 140px;
color: black;
width: 200px;
top: 142px;
}
#alcohol-hex-label-3 {
right: 195px;
}
.hex-wrapper-3 {
position: absolute;
display: flex;
align-items: center;
transform: translate(-91px, 0px);
z-index: 999;
}
.hex-wrapper-1 {
position: absolute;
display: flex;
align-items: center;
transform: translate(-91px, 0px);
z-index: 999;
}
.hex-wrapper-3 {
position: absolute;
display: flex;
align-items: center;
transform: translate(-91px, 0px);
z-index: 999;
}
.hex-label-right-3 {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: -607px;
color: black;
width: 200px;
top: 140px;
}
.hex-label-1 {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: 115px;
color: black;
width: 200px;
top: -173px;
}
#marijuana-label-1 {
right: 133px;
}
#benzo-label-1 {
right: 155px;
}
#keta-label-1 {
right: 190px;
}
.hex-label-right-2 {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: -697px;
color: black;
top: -15px;
width: 200px;
line-height: 117%;
}
.meth-label-right-2 {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: -697px;
color: black;
top: 4px;
width: 200px;
line-height: 117%;
}
.hex-label-right-1 {
font-size: 1rem;
color: white;
margin: 0 0.75rem;
position: absolute;
right: -620px;
color: black;
width: 200px;
top: -174px;
}
.main-circle>h2 {
position: absolute;
top: 221px;
left: 115px;
font-weight: 400;
font-size: 48px;
line-height: 91%;
letter-spacing: 0%;
color: white;
}
.hex-svg>path {
box-shadow:
0px 1.65px 4.13px 0px #0000001A,
0px 7.44px 7.44px 0px #00000017,
0px 16.52px 9.91px 0px #0000000D,
0px 28.92px 11.57px 0px #00000003,
0px 45.44px 12.39px 0px #00000000;
}
.center-top-padding {
justify-content: center;
padding-top: 30px;
}
.accordion-section {
padding-top: 100px;
}
#marijuana-label-right {
right: 257px;
}
#marijuana-label-3 {
right: 170px;
}
#keta-label-right {
right: 280px;
}
#preg-hex-label-right-2 {
top: -230px;
}
.background-image-approach {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/web/web banner.png);
min-height: 450px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-contact {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 91.png);
min-height: 450px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-pain {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/painkiller/Painkiller Addiction web banner.jpg);
height: 832px;
z-index: 9999;
position: relative;
background-position: center;
background-repeat: no-repeat;
background-color: white;
}
.background-image-career {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/career/CAREER-WEB.jpg);
height: 832px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-care {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/care/care-desk.png); min-height: 450px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-certification {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/certifications/banner.png);
min-height: 450px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-admission {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/admissions/banner.png);
min-height: 450px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-news {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/news/Group 91.png);
min-height: 450px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-faqs {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/faqs/FAQ-WEB.jpg);
height: 832px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.approach-text {
font-size: 67px;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
position: relative;
padding-top: 450px;
}
.contact-text {
font-size: 67px;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
position: relative;
padding-top: 370px;
}
.terms-text {
font-size: 67px;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
position: relative;
padding-top: 370px;
}
.gallery-heading,
.gallery-heading-new {
font-size: 75px;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
position: relative;
padding-top: 370px;
}
.gallery-subtext {
font-size: 36px;
font-family: 'Tenor Sans', sans-serif;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
position: relative;
}
#staff-insights-title {
padding-top: 420px;
}
#refund-policy-text {
padding-top: 472px;
}
.approach-line {
width: 380px;
padding-bottom: 100px;
}
.contact-line {
width: 380px;
padding-bottom: 100px;
}
.gallery-line {
width: 380px;
padding-bottom: 15px;
padding-top: 5px;
}
.img-div {
width: 100%;
align-items: center;
display: flex;
justify-content: center;
}
.approach-line {
width: 380px;
}
.left-background-image {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/web/bg.png);
height: 4450px;
position: absolute;
width: 100%;
background-repeat: no-repeat;
margin-top: -122px;
background-size: 53% 100%;
}
.first-section {
position: relative;
padding-top: 100px;
}
#approach-first-section {
padding-top: 100px;
}
.approach-second-section {
position: relative;
padding-top: 100px;
}
.approach-img-section {
display: flex;
justify-content: end;
padding-right: 50px;
}
.approach-second-image {
display: flex;
justify-content: center;
padding-left: 80px;
}
.approach-section-heading {
font-weight: bold;
font-size: 34px;
line-height: 100%;
letter-spacing: 0%;
color: black;
text-align: left;
font-family: 'Nunito sans', sans-serif;
}
.approach-second-textbox {
padding-left: 21%;
}
.section-subtext {
color: black;
font-size: 22px;
text-align: left;
}
.text-section {
padding-left: 80px;
}
.section-arrow {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/web/Vector 27.png);
background-repeat: no-repeat;
background-position: 59% 100%;
padding-bottom: 40px;
}
.section-arrow-left {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/web/Vector 28.png);
background-repeat: no-repeat;
background-position: 59% 100%;
padding-bottom: 40px;
}
#approach-last-section { min-height: 634px;
}
.facilities-title {
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
font-size: 36px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
color: #545454;
padding-top: 120px;
}
.facilities-subtext {
font-family: 'Tenor Sans', sans-serif;
font-weight: 400;
font-size: 75px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
color: #545454;
}
.our-facilities-first-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/continuous-one-line-drawing-heart-inside-house-love-family-symbol-minimalist-contour 1 (1).png');
background-repeat: no-repeat;
background-size: 24%;
background-position: left bottom;
}
.our-facilities-first-section>img {
width: 295px;
padding-top: 40px;
}
.facilities-para {
font-family: 'Nunito Sans', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 50px 180px 0px 180px;
}
.facilities-section {
margin: 0;
padding-top: 110px;
}
.who-we-are-section {
margin: 0;
padding-top: 110px;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/arrow.png);
background-repeat: no-repeat;
background-position: center left;
}
.who-we-are-faq {
padding-bottom: 80px;
}
.facilities-section-img {
padding: 0;
z-index: 9998;
display: flex;
justify-content: end;
}
.who-we-are-section-img {
padding: 0 40px 0 0;
z-index: 9998;
display: flex;
justify-content: start;
}
.facilities-second-section-img {
padding: 0;
z-index: 9998;
display: flex;
justify-content: start;
}
.facilities-section-img>img,
.facilities-second-section-img>img,
.who-we-are-section-img>img {
width: 90%;
}
.facilities-section-content {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/1.png);
background-repeat: no-repeat;
background-position: 100% 85%;
background-size: 100% 86%;
transform: translate(140px, 0px);
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 40px;
}
.who-we-are-section-content {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/1.png);
background-repeat: no-repeat;
background-position: 100% 100%;
background-size: contain;
transform: translate(70px, 0px);
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 40px;
}
.facilities-second-content {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/2.png);
background-repeat: no-repeat;
background-position: 100% 95%;
background-size: contain;
transform: translate(-150px, 0px);
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 120px;
}
.facilities-first-heading {
padding-top: 50px;
color: #545454;
font-weight: 400;
font-size: 32px;
line-height: 100%;
letter-spacing: 0%;
font-family: 'Tenor Sans', sans-serif;
}
.facilities-second-heading {
padding-top: 170px;
color: #545454;
font-weight: 400;
font-size: 32px;
line-height: 100%;
letter-spacing: 0%;
font-family: 'Tenor Sans', sans-serif;
}
.facilities-first-para {
font-weight: 400;
font-size: 20px;
line-height: 130%;
letter-spacing: 0%;
color: #000000;
padding-top: 20px;
padding-right: 100px;
text-align: justify;
}
.who-we-are-first-para {
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: 0%;
color: #000000;
padding-top: 50px;
padding-right: 100px;
text-align: justify;
}
.facilities-second-para {
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: 0%;
color: #000000;
padding-top: 20px;
padding-right: 40px;
text-align: justify;
}
.facilities-second-section {
padding-top: 110px;
}
.facilities-line {
display: flex;
justify-content: end;
}
.who-we-are-line {
display: flex;
justify-content: end;
transform: translate(0px, 10px);
}
.facilities-second-line {
display: flex;
transform: translate(-110px, 0px);
justify-content: start;
}
.privacy-container {
justify-content: center;
display: flex;
padding: 80px 0px;
flex-direction: column;
}
.privacy-heading-section {
display: flex;
flex-direction: row;
justify-content: center;
}
.privacy-heading-section>img {
width: 56px;
object-fit: contain;
}
.facilities-privacy-heading {
font-family: 'Tenor Sans', sans-serif;
font-weight: 400;
font-size: 75px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
}
.facilities-privacy {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/BG.png);
background-size: 100% 100%;
margin-top: 100px;
}
.privacy-container>p {
padding: 50px 144px 0 144px;
text-align: center;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.experience-section {
padding-left: 0;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/EXP.png);
background-repeat: no-repeat;
background-position: right top;
}
.experience>h1 {
font-family: 'Tenor Sans', sans-serif;
font-weight: 400;
font-size: 75px;
line-height: 91%;
letter-spacing: 0%;
padding-top: 135px;
padding-left: 100px;
}
.experience-list {
font-weight: 500;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
color: #545454;
margin: 0;
}
.contact-list {
font-weight: 500;
font-size: 24px;
line-height: 91%;
letter-spacing: 0%;
color: #545454;
display: flex;
flex-direction: column;
margin: 0;
padding-left: 20px;
}
.contact-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 196.png);
background-size: cover;
height: 400px;
}
.admission-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 196.png);
background-size: 100% 100%;
}
.career-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/career/background.png);
background-size: 100% 100%;
}
.call-text {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 70px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
color: #545454;
}
.career-text {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 38.83px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
color: #545454;
}
.contact-heading {
display: flex;
flex-direction: row;
align-items: center;
padding-top: 80px;
justify-content: center;
}
.admission-heading {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 64px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
}
.contact-heading>img {
object-fit: contain;
width: 55px;
}
.contact-form {
display: flex;
flex-direction: row;
justify-content: space-evenly;
padding-top: 80px;
}
.contact-input {
background-color: transparent;
border: none;
border-bottom: 1px solid #B6B6B6;
border-radius: 0;
}
.contact-input::placeholder {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 24.18px !important;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
color: #9A9A9A;
}
.experience-list-column {
display: flex;
flex-direction: column;
justify-content: center;
transform: translate(96%, 0px);
}
.contact-list-column {
display: flex;
flex-direction: column;
justify-content: center;
transform: translate(130%, 0px);
}
.experience-row {
padding-left: 100px;
align-items: center;
padding-top: 140px;
padding-bottom: 73px;
}
.contact-row {
align-items: start;
padding-top: 140px;
}
.news-row-2 {
justify-content: end;
padding-bottom: 100px;
}
.faq-row-2 {
justify-content: end;
padding-bottom: 100px;
align-items: center;
}
.experience-img>img {
width: 100%;
}
.number-circle {
background-color: rgb(255, 255, 255);
border-radius: 55%;
padding: 18px 22px;
box-shadow: -1px 8px 4px 0px #00000026;
font-family: 'Nunito Sans' sans-serif;
font-weight: 900;
font-size: 20px;
line-height: 91%;
letter-spacing: 0%;
color: #00978D;
}
.contact-number-circle {
background-color: rgb(255, 255, 255);
border-radius: 55%;
padding: 25px 30px;
box-shadow: -2px 7px 4px 0px #00000026;
font-family: 'Nunito Sans' sans-serif;
font-weight: 900;
font-size: 24px;
line-height: 91%;
letter-spacing: 0%;
color: #00978D;
}
.experience-list {
display: flex;
flex-direction: row;
align-items: center;
padding-left: 20px;
}
.experience-list-1 {
display: flex;
flex-direction: row;
align-items: center;
padding-top: 40px;
}
.contact-list-1 {
display: flex;
flex-direction: row;
align-items: center;
padding-top: 30px;
}
.experience-img {
position: absolute;
}
.contact-us-background {
position: absolute;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 162.png);
height: 370px;
display: flex;
align-items: center;
background-repeat: no-repeat;
color: #545454;
background-size: 100% 100%;
}
.news-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 162.png);
height: 370px;
display: flex;
align-items: start;
background-repeat: no-repeat;
color: #545454;
background-size: 100%;
flex: 0 0 auto;
width: 55.333333%;
flex-direction: column;
justify-content: center;
padding: 0 40px 0 30px;
}
.overseas-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 162.png);
height: 300px;
display: flex;
align-items: start;
background-repeat: no-repeat;
color: #545454;
background-size: 100% 100%;
flex: 0 0 auto;
width: 55.333333%;
flex-direction: column;
justify-content: center;
padding: 0 45px;
}
.overseas-background h1 {
font-size: 48px;
font-family: 'Tenor Sans', sans-serif;
color: #545454;
}
.overseas-background h2 {
font-size: 48px;
font-family: 'Tenor Sans', sans-serif;
color: #545454;
}
.overseas-background p {
font-size: 20px;
font-family: 'Nunito Sans', sans-serif;
color: #000000;
text-align: justify;
}
.martin-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/martin/background.png) !important;
height: 400px;
background-size: 100% 100%;
width: 67.333333%;
padding-left: 8%;
}
.martin-img-row {
width: 30% !important;
}
.martin-para-section {
display: flex;
align-items: start;
padding-left: 0;
flex-direction: column;
justify-content: end;
}
.expert-list {
padding-left: 10px;
font-size: 20px;
}
.martin-para {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
}
.global {
font-size: 64px;
font-family: 'Tenor Sans', sans-serif;
}
.news-background-1 {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/news/background-2.png);
height: 370px;
display: flex;
align-items: start;
background-repeat: no-repeat;
color: #545454;
background-size: contain;
flex: 0 0 auto;
width: 55.333333%;
flex-direction: column;
justify-content: center;
padding: 0 40px 0 50px;
}
.faq-background-1 {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/news/background-2.png);
height: 370px;
display: flex;
align-items: start;
background-repeat: no-repeat;
color: #545454;
background-size: contain;
flex: 0 0 auto;
width: 50%;
flex-direction: column;
justify-content: center;
padding: 0 40px;
}
.news-background>p {
padding: 0 40px 0 0;
font-size: 20px;
font-weight: 500;
margin-bottom: 10px;
text-align: left;
}
.news-date {
font-size: 15px !important;
}
.news-background-1>p {
padding: 0 40px 0 0;
font-size: 17px;
font-weight: 500;
margin-bottom: 10px;
text-align: justify;
}
.news-background>h1,
.news-background-1>h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 32px;
line-height: 118%;
letter-spacing: 0%;
}
.news-arrow {
width: 100%;
justify-content: center;
display: flex;
padding-left: 60%;
}
.faqs-arrow {
width: 100%;
justify-content: start;
display: flex;
}
.learn-more {
display: flex;
justify-content: end;
width: 90%;
}
.learn-more>a {
font-family: "Nunito Sans", sans-serif;
font-weight: 800;
font-size: 15px;
line-height: 91%;
letter-spacing: 0%;
color: #545454;
border-bottom: 1px solid #545454;
}
.news-img {
flex: 0 0 auto;
width: 43%;
margin-left: -4%;
margin-top: 3%;
}
.drug-img {
flex: 0 0 auto;
width: 48%;
margin-left: -4%;
margin-top: 3%;
position: relative;
z-index: 9001 !important;
padding: 0;
}
.news-img-1 {
flex: 0 0 auto;
width: 43%;
margin-right: -2.5%;
margin-top: 3.5%;
z-index: 999;
}
.faq-img-1>p {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 24.51px;
line-height: 100%;
letter-spacing: 0%;
transform: translate(15%);
}
.faq-img-1 {
flex: 0 0 auto;
width: 50%;
padding-left: 5%;
z-index: 999;
}
.banner-arrow-div {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.therapies-we-use-arrow {
display: flex;
align-items: end;
justify-content: end;
}
.therapies-we-use>.left-heading {
font-weight: 400;
font-size: 75px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.therapies-we-use>.who-we-are-second-text {
font-weight: 300;
font-size: 36px;
line-height: 136%;
letter-spacing: 0%;
text-align: center;
}
.therapies-we-use-row {
justify-content: center;
}
.therapies-we-use {
padding: 0 80px;
}
.therapies-image-end {
justify-content: end;
display: flex;
}
.therapies-img {
width: 100%;
}
.image-wrapper {
position: relative;
display: inline-block;
overflow: hidden;
}
.image-wrapper img {
display: block;
width: 100%;
height: auto;
}
.image-wrapper::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 151, 141, 0.88);
opacity: 1;
transition: opacity 0.3s ease;
z-index: 1;
border-radius: 12px;
}
.overlay-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: 'Nunito Sans', sans-serif;
font-weight: 700;
font-size: 20px;
line-height: 30px;
letter-spacing: 0%;
text-align: center;
opacity: 1;
z-index: 2;
transition: opacity 0.3s ease;
text-align: center;
pointer-events: none; }
.image-wrapper:hover::after,
.image-wrapper:hover .overlay-text {
opacity: 1;
}
.last-therapy-row {
justify-content: center;
}
.thearpy-img-row {
padding-top: 30px;
}
.therapy-cta {
padding-top: 66px;
justify-content: center;
display: flex;
align-items: center;
}
.therapy-cta>a {
border: 2px solid #00978D;
padding: 10px 32px;
border-radius: 53px;
margin: 0 10px;
font-family: 'Nunito Sans' sans-serif;
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #000000;
}
.contact-us-background>h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 75px;
line-height: 118%;
letter-spacing: 0%;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/web/arrow-right.png);
background-repeat: no-repeat;
background-position: right center;
display: flex;
align-items: center;
justify-content: center;
padding-left: 100px;
background-position: 85% 70%;
}
.contact-submit {
transform: translate(0px, 21px);
}
.contact-form-arrow>img {
padding-bottom: 50px;
}
.faq-accordion:not(.collapsed) {
border-bottom: transparent;
box-shadow: none;
box-shadow: -1px -5px 12px 0px #00000021;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 20px !important;
border-top-right-radius: 20px !important;
border-top-left-radius: 20px !important;
border-top-right-radius: 20px !important;
position: relative;
z-index: 999;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/faqs/minus.png) !important;
color: #545454;
padding-bottom: 13px;
}
.faq-line {
width: 60%;
padding-bottom: 25px;
}
.faq-accordion,
.faq-accordion.collapsed {
border: none;
border-radius: 20px !important;
box-shadow: 0px 7px 15px 0px #00000021,
0px 28px 28px 0px #0000001F,
0px 62px 37px 0px #00000012,
0px 111px 44px 0px #00000005,
0px 173px 48px 0px #00000000;
z-index: 999;
position: relative;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/faqs/plus.png) !important;
}
.faq-accordion-body {
padding-right: 30px;
padding-left: 43px;
padding-bottom: 43px;
box-shadow: 0px -5px 15px 0px #00000021,
-3px -6px 28px 0px #0000001F,
5px 6px 28px 0px #0000001F,
0px 111px 44px 0px rgba(0, 0, 0, 0.02),
2px 20px 48px 0px rgba(0, 0, 0, 0);
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
display: flex;
flex-direction: column;
padding-top: 0;
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 17px;
line-height: 124%;
letter-spacing: 0%;
text-align: justify;
}
.faq-accordion {
font-family: "Nunito Sans", sans-serif;
font-weight: 700;
font-size: 24px;
line-height: 124%;
letter-spacing: 0%;
padding-left: 43px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
color: #545454;
padding-top: 20px;
padding-bottom: 20px;
}
.faq-accordion-body {}
.faq-item {
margin-top: 20px;
}
.faq-text-section {
display: flex;
justify-content: center;
padding-top: 100px;
flex-direction: column;
align-items: center;
padding-bottom: 60px;
}
.faq-para {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 24.51px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.career-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 162.png);
background-size: 100% 100%;
padding: 60px 132px 80px 100px;
height: fit-content;
}
.career-background>h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 75px;
line-height: 118%;
letter-spacing: 0%;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/news/arrow.png);
background-position: 100% 57%;
background-repeat: no-repeat;
color: #545454;
width: 390px;
}
.career-first-row {
align-items: center;
padding-top: 90px;
padding-bottom: 50px;
}
.admission-second-row {
align-items: start;
padding-top: 30px;
padding-bottom: 50px;
width: 100%;
}
.admission-custom-row {
padding-top: 0;
}
.career-para>p {
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 122%;
letter-spacing: 0%;
color: #545454;
padding-right: 70px;
text-align: justify;
}
.admission-para {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.admission-points li {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
padding-bottom: 25px;
}
.admission-points {
padding-left: 0px;
list-style: disc;
}
.admission-points>p {
font-size: 20px;
text-align: justify;
}
.admissions-heading {
font-weight: 400;
font-size: 48px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
}
.admission-first-section p {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 140%;
letter-spacing: 0%;
text-align: center;
}
.admission-first-heading {
padding-top: 60px;
}
.admission-first-section {
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
padding: 30px 0px 90px 0px;
}
.admission-second-heading {
font-family: "Nunito Sans", sans-serif;
font-weight: 300;
font-size: 36px;
line-height: 60%;
letter-spacing: 0%;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
color: #545454;
}
.admission-second-heading img {
width: 422px;
padding-top: 20px;
}
.admission-second-heading span {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 64px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
}
.admission-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/admissions/background.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.admission-background img {
padding-left: 40px;
object-fit: cover;
}
.admission-cta {
background-color: #00978D;
padding-top: 30px;
}
.admission-cta {
margin-bottom: 22px;
}
.admission-text {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 32px;
line-height: 147%;
letter-spacing: 0%;
text-align: center;
color: white;
}
.admission-text h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 32px;
line-height: 147%;
letter-spacing: 0%;
text-align: center;
color: white;
}
.admission-text a {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 32px;
line-height: 147%;
letter-spacing: 0%;
text-align: center;
color: white;
border-bottom: 1px solid white;
}
.admission-second-section {
font-family: "Nunito Sans", sans-serif;
font-weight: 300;
font-size: 36px;
line-height: 164%;
letter-spacing: 0%;
text-align: left;
display: flex;
flex-direction: column;
align-items: start;
color: #545454;
}
.admission-second-section span {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 64px;
line-height: 91%;
letter-spacing: 0%;
text-align: left;
}
.admission-second-section>img {
width: 422px;
padding-top: 20px;
}
.telephone-section {
padding: 90px 0px 0px 0px;
}
.making-section {
padding: 0px 100px 0 100px;
}
.better-title {
color: #545454;
font-size: 40px;
font-family: 'Tenor Sans', sans-serif;
text-align: center;
font-weight: 400;
}
.schedule-title {
color: #545454;
font-size: 36px;
font-family: 'Nunito Sans', sans-serif;
text-align: center;
font-weight: 300;
}
#activities-title-schedule {
font-family: 'Tenor Sans', sans-serif;
}
.second-better {
color: #545454;
font-size: 54px;
font-family: "Tenor Sans", sans-serif;
}
.approach-second-better {
color: #545454;
font-size: 64px;
font-family: "Tenor Sans", sans-serif;
}
.better-treatment {
padding: 50px 0 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.better-para {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
text-align: justify;
}
.better-para-div {
padding-top: 64px;
}
.activities {
padding: 100px 0;
}
.activities-background {
background-color: rgba(171, 239, 234, 0.35);
padding: 35px 0;
}
.activities-first-list {
display: flex;
justify-content: end;
}
.activities-list li {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
color: #000000;
}
.typical {
display: flex;
flex-direction: row;
justify-content: center;
font-size: 40px;
font-family: 'Tenor Sans', sans-serif;
}
.typical img {
width: 100px;
object-fit: contain;
padding: 0 10px;
}
.typical-para p {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
color: #000000;
text-align: justify;
}
.typical-para {
padding-top: 45px;
padding-bottom: 100px;
}
.warrant {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.warrant-title {
font-family: 'Tenor Sans', sans-serif;
font-size: 64px;
color: #545454;
text-align: center;
line-height: 1;
padding-top: 110px;
}
.warrant-para,
.warrant-para>u>a,
.definition-para,
.warrant-list li {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
color: #000000;
list-style-type: disc;
text-align: center !important;
}
.care-list>li {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
color: #000000;
list-style-type: disc;
}
.care-list {
padding-left: 53px;
}
.definition-para {
color: #000000;
}
.warrant-title span {
font-family: 'Tenor Sans', sans-serif;
font-size: 32px;
}
.third-warrant {
background-color: rgba(171, 239, 234, 0.35);
}
.definition-title {
font-size: 28px;
font-weight: bold;
}
.premium-title {
font-size: 32px;
color: #000000;
font-weight: normal;
text-transform: uppercase;
;
}
.definition {
padding: 50px 0px 20px 0px;
}
.pricing {
padding: 50px 0px;
}
.terms {
padding-top: 50px;
}
.experts-insights {
display: flex;
justify-content: center;
}
.designation {
justify-content: center;
display: flex;
flex-direction: column;
padding-top: 16%;
width: 27%;
}
.designation img {
width: 200px;
margin-left: -25px;
}
.expert-name {
display: flex;
flex-direction: column;
justify-content: center;
}
.designation h1 {
font-family: 'Tenor Sans', sans-serif;
font-size: 24px;
text-align: center;
color: #545454;
}
.expert-name h1 {
font-family: 'Tenor Sans', sans-serif;
font-size: 64px;
color: #545454;
}
.expert-name img {
padding-left: 70px;
}
.expert-para p {
font-size: 20px;
color: #000000;
padding-top: 25px;
}
.staff-insight-section {
padding: 45px 0px;
}
.expert-name {
padding-left: 30px;
}
.pricing-weeks {
font-size: 28px;
font-weight: bold;
color: #000000;
}
.price-subtext {
font-size: 20px;
font-weight: normal;
color: #000000;
}
.pricing-row {
padding-top: 30px;
}
.standard-package {
margin-top: 35px;
}
.heading-price h3,
.heading-price {
font-family: 'Tenor Sans', sans-serif;
font-size: 36px;
color: #545454;
}
.pricing-para {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
text-align: justify;
}
.pricing-addiction-title {
font-size: 40px;
font-family: 'Tenor Sans', sans-serif;
}
.program-list li {
font-size: 20px;
font-family: 'Nunito Sans', sans-serif;
}
.pricing-first-heading {
padding-top: 45px;
}
.enquire-price {
padding-top: 40px;
}
.pricing-not-included { padding-bottom: 130px;
}
.warrant-title-1 {
font-family: 'Tenor Sans', sans-serif;
font-size: 64px;
color: #545454;
text-align: center;
line-height: 1;
}
.warrant-para-1 {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
color: #000000;
list-style-type: disc;
text-align: justify;
padding-bottom: 30px;
}
.not-included-list {
padding-top: 50px;
}
.refund-para {
padding-top: 110px;
}
.refund-box {
background-color: rgba(171, 239, 234, 0.35);
border-radius: 20px;
}
.refund-box-para {
padding: 45px 35px 35px 45px;
}
.refund-last-section {
padding-bottom: 100px;
}
.martin-box {
background-color: #DFFFFD;
border-radius: 20px;
padding: 35px;
box-shadow: -7px 4px 11px 2px #0000003D,
-15px 20px 19px -17px #00000036,
-18px 20px 26px -26px #0000001F,
-8px 20px 31px -20px #0000000A,
-20px 7px 34px -37px #00000000;
}
.martin-icon {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.icon-heading {
font-size: 25px;
color: #000000;
font-weight: bold;
text-align: center;
padding-top: 30px;
}
.martin-first-section {
padding-top: 70px;
}
.martin-arrow {
width: 100%;
justify-content: center;
display: flex;
padding-left: 0;
padding-right: 31%;
padding-bottom: 40px;
}
.martin-img {
width: 400px;
height: 400px;
}
.global-background {
background-color: #00978D;
height: 140px;
display: flex;
align-items: center;
justify-content: center;  position: relative;
}
.martin-row { background-repeat: no-repeat;
background-position: 35% 101%;
position: relative;
z-index: 999;
padding-left: 0;
}
.global-margin {
margin-top: 10%;
transform: translate(0px, 77px);
}
.global-heading span {
color: #ffffff;
}
.globe-image {
margin-top: 16%;
display: flex;
align-items: end;
}
.global-row {
display: flex;
justify-content: center;
align-items: center;
}
.global-row-2 {
display: flex;
justify-content: center;
align-items: center;
}
.global-row-3 {
display: flex;
justify-content: center;
align-items: center;
}
.martin-consult {
padding: 10px 32px;
background-color: white;
font-family: 'Nunito Sans', sans-serif;
font-size: 24px;
color: #000000;
border: 2px solid #00978D;
border-radius: 53px;
height: max-content;
justify-content: center;
display: flex;
align-items: center; box-shadow: -5px 5px 11px 2px #0000003D,
1px 11px 19px -17px #00000036,
4px 15px 26px -26px #0000001F,
-4px 6px 31px -20px #0000000A,
-20px 7px 34px -37px #00000000;
font-weight: 600;
position: absolute;
top: 76%;
}
.martin-consult-1 {
padding: 10px 32px;
background-color: white;
font-family: 'Nunito Sans', sans-serif;
font-size: 24px;
color: #000000;
border: 2px solid #00978D;
border-radius: 53px;
height: max-content;
justify-content: center;
display: flex;
align-items: center;
box-shadow: -5px 5px 11px 2px #0000003D,
1px 11px 19px -17px #00000036,
4px 15px 26px -26px #0000001F,
-4px 6px 31px -20px #0000000A,
-20px 7px 34px -37px #00000000;
font-weight: 600;
}
.global-heading {
font-size: 64px;
font-family: 'Tenor Sans', sans-serif;
color: #000000;
}
.martin-heading-2 {
font-size: 64px;
font-family: 'Tenor Sans', sans-serif;
color: #545454;
}
.martin-heading-2 span {
color: #00978D;
}
.heading-section {
display: flex;
justify-content: center;
}
.martin-third-section {
padding: 110px 30px 0;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
.martin-left-section {
justify-content: start;
}
.martin-right-section {
justify-content: end;
}
.martin-blue-line {
padding-top: 80px;
}
.ready {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding-top: 110px;
padding-bottom: 150px;
}
.martin-title {
font-size: 75px;
color: white;
display: flex;
justify-content: start;
flex-direction: column;
text-align: start;
position: relative;
padding-top: 149px;
padding-left: 25px;
}
.martin-img-div {
width: 100%;
align-items: start;
display: flex;
justify-content: start;
}
.martin-line {
width: 191px;
}
.martin-subtitle {
font-size: 24px;
font-family: 'Nunito Sans', sans-serif;
color: white;
padding-left: 25px;
padding-top: 20px;
font-weight: 300;
}
.martin-banner-div {
padding-left: 119px;
}
.highlight {
background-color: #e0f9f5 !important;
}
.today {
background-color: #b9f2eb !important;
}
.light-color {
background-color: #F6FFFE !important;
}
.mobile-table-wrapper,
.desktop-table-wrapper {
width: 100%;
overflow-x: auto;
margin-top: 20px;
scrollbar-width: none;
-ms-overflow-style: none;
}
.mobile-table-wrapper::-webkit-scrollbar,
.desktop-table-wrapper::-webkit-scrollbar {
display: none;
}
.mobile-only {
display: none;
}
.desktop-only {
display: block;
}
.first-treatment-section {
padding-top: 50px;
}
.house {
padding-bottom: 45px;
}
.background-image-thankyou {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/thank-you/Rectangle 177.png); z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 100vh;
}
.thankyou-inner {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/thank-you/Group 272.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
margin: 160px 60px 60px 60px;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.thank-you-heading {
font-family: 'tenor sans', sans-serif;
font-size: 64px;
color: #545454;
padding-bottom: 10px;
}
.thank-you-para {
font-family: 'Nunito sans', sans-serif;
font-size: 24px;
color: #000000;
text-align: center;
padding-top: 26px;
}
#who-we-are-banner-title {
padding-top: 350px;
}
.faq-ul>li {
padding-bottom: 15px;
}
.about-title {
font-family: 'Tenor Sans', sans-serif;
font-size: 64px;
color: #545454;
padding-top: 35px;
text-align: center;
padding-bottom: 10px;
}
.about-para {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
text-align: center;
margin: 0;
color: #000000;
}
.about-list {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
text-align:center;
margin: 0;
color: #000000;
}
.about-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px 0;
}
.clinical-section,
.about-goals {
display: flex;
flex-direction: column;
justify-content: center;
padding: 60px 0;
}
.about-arrow {
padding-top: 35px;
}
.about-clinical {
background: rgba(159, 214, 210, 0.35);
}
.about-card {
border: 1px solid rgba(0, 151, 141, 0.35);
border-radius: 29px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
}
.about-goal-title {
position: absolute;
top: -23px;
right: 37%;
margin: 0;
background: #00978D;
color: white;
border-radius: 21px;
padding: 6px 20px;
font-size: 21px;
font-family: 'Tenor Sans';
line-height: normal;
}
.about-goal-heading {
font-family: 'nunito sans', sans-serif;
font-size: 24px;
font-weight: bold;
padding-top: 35px;
text-align: center;
}
.about-goal-para {
font-family: 'nunito sans', sans-serif;
font-size: 20px;
text-align: center;
padding: 10px 10px;
height: 150px;
}
.about-goal-row {
gap: 10px;
margin: 60px 0;
}
.home-first-left {
display: flex;
flex-direction: column;
align-items: end;
justify-content: end;
}
.home-first-section {
padding-top: 73px;
}
.first-section-bg {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/background.webp);
background-repeat: no-repeat;
background-position: right top;
background-size: 20% 60%;
}
.our-approach-right-section {
padding: 2% 0% 0 8.5%;
}
.carf-our-approach {
position: absolute;
width: 9%;
top: 13%;
right: 45%;
}
.cenpas-our-approach {
position: absolute;
width: 9%;
right: 45.3%;
top: 65%;
}
.home-our-approach-row {
align-items: center;
}
.home-our-approach {
position: relative;
}
.home-our-approach-para {
font-size: 20px;
position: relative;
text-align: left;
}
.our-approach-left-section {
padding-right: 7%;
}
.our-approach-right-bg {
position: absolute;
right: 0;
height: 100%;
width: 50%;
}
.home-our-approach-container {
position: relative;
}
.right-first-heading {
padding-top: 30px;
}
.home-our-approach-section {
padding-top: 90px;
}
.home-our-apporach-bg {
background-size: 36% 45%;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHAT WE TREAT/Vector 15.png);
background-repeat: no-repeat;
display: flex;
background-position: center;
align-items: center;
justify-content: center;
margin-top: 75px;
}
.home-our-approach-link {
font-size: 24px;
background: #00978D;
padding: 10px 32px;
color: white;
border-radius: 53px;
}
.expert-class-heading {
text-align: left;
}
.expert-custom-heading {
width: 100%;
}
.meet-our-team {
font-size: 36px;
color: #3B3A3A;
font-family: 'nunito sans', sans-serif;
padding-top: 40px;
font-weight: regular;
}
.meet-our-team-para {
font-size: 20px;
text-align: left;
font-family: 'nunito sans', sans-serif;
padding-top: 20px;
}
.meet-our-team-arrow {
display: flex;
padding-left: 32%;
}
.accomodation-heading {
font-size: 36px;
}
.accomodation-para {
font-size: 20px;
padding-top: 40px;
text-align: left;
}
.supported-transition-bg {
background-color: rgba(0, 151, 141, 0.17);
padding: 70px 0px;
}
.supported-para {
font-size: 20px;
text-align: left;
}
.supported-row {
align-items: center;
}
.custom-comparison-table {
border-collapse: collapse !important;
table-layout: fixed; width: 100%;
z-index: 999;
position: relative;
padding-right: 4%;
}
.custom-comparison-table td,
.custom-comparison-table th {
text-align: center;
vertical-align: middle;
border: none !important;
padding: 0.75rem;
word-wrap: break-word;
}
.custom-comparison-table th {
background: none;
font-size: 24px;
color: #000000;
font-family: 'nunito sans', sans-serif;
border: white 1px solid !important;
}
.custom-comparison-table td {
background-color: rgba(0, 151, 141, 0.12);
border-radius: 0
}
.custom-comparison-table .feature-col {
text-align: left;
font-weight: 500;
background-color: rgba(0, 151, 141, 0.12);
border-radius: 0;
border-top: 1px solid rgba(0, 151, 141, 0.12) !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important;
vertical-align: middle;
padding-left: 35px !important;
}
td.check {
color: #00978D;
font-weight: bold;
}
td.some {
color: #00978D;
font-style: normal;
font-weight: bold;
}
td.not-all {
color: #00978D;
font-style: normal;
font-weight: bold;
}
td.cross {
color: #00978D;
font-weight: bold;
}
.custom-comparison-table th:first-child {
text-align: left;
font-weight: 500;
width: 45%; }
.custom-comparison-table th:not(:first-child),
.custom-comparison-table td:not(.feature-col) {
width: 18%; }
.check {
color: #00978D;
font-weight: bold;
}
.some {
color: #00978D;
font-style: italic;
}
.not-all {
color: #00978D;
font-style: italic;
}
.why-choose-left {
padding-left: 30%;
}
.custom-comparison-table-wrapper {
padding-right: 5%;
}
.comparison-section {
margin-bottom: 50px;
padding-top: 30px;
}
.why-choose-subheading {
font-weight: 300;
line-height: 120%;
}
.accomodation-section {
padding-top: 60px;
padding-bottom: 60px;
}
.new-custom-cta {
position: absolute;
top: 95%;
z-index: 999;
border: 2px solid #00978D;
}
.new-second-section {
position: relative;
}
.new-custom-icons {
padding-bottom: 30px;
}
@media (max-width: 768px) {
.our-approach-right-bg {
height: 64%;
width: 86%;
}
.home-our-approach-para {
font-size: 13px;
text-align: left;
}
.comparison-heading {
text-align: center;
margin-bottom: 20px;
}
.our-approach-right-section {
padding: 2% 7% 0 25.5%;
}
.carf-our-approach {
position: absolute;
width: 21%;
top: 41%;
right: 77%;
}
.cenpas-our-approach {
position: absolute;
width: 21%;
right: 76.3%;
top: 79%;
}
.home-our-approach-link {
font-size: 15px;
background: #00978D;
padding: 4px 12px;
color: white;
border-radius: 53px;
}
.home-our-apporach-bg {
background-size: 49% 25%;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHAT WE TREAT/Vector 15.png);
background-repeat: no-repeat;
display: flex;
background-position: center;
align-items: center;
justify-content: center;
margin-top: 26px;
}
.meet-our-team {
font-size: 15px;
padding-top: 26px;
}
.accomodation-section {
padding-top: 0;
}
.meet-our-team-para {
font-size: 13px;
}
.accomodation-heading {
font-size: 15px;
padding: 10px;
}
.accomodation-para {
font-size: 13px;
padding: 10px;
}
.supported-para {
font-size: 13px;
}
.supported-transition-bg {
padding: 35px 4px;
}
.custom-comparison-table {
table-layout: fixed; width: 100%;
} .custom-comparison-table col.feature-col {
width: 50%; } .custom-comparison-table col.option-col {
width: 12.5%; }
.custom-comparison-table th,
.custom-comparison-table td {
font-size: 12px; padding: 6px 4px; text-align: center;
word-wrap: break-word;
} .custom-comparison-table th:first-child,
.custom-comparison-table td.feature-col {
text-align: left;
line-height: 15px;
padding-top: 6px !IMPORTANT;
padding-bottom: 6px !IMPORTANT;
}
.custom-comparison-table th:not(:first-child),
.custom-comparison-table td:not(.feature-col) {
width: 20%;
font-size: 10px;
}
.custom-comparison-table-wrapper {
padding-right: 0;
margin: 6px;
}
.custom-comparison-table .feature-col {
padding-left: 17px !important;
font-size: 10px;
}
.comparison-section {
margin-bottom: 160px;
padding-top: 30px;
}
.mob-table {
padding: 0;
}
.home-our-approach-section {
padding-top: 25px;
}
.mobile-only {
display: block;
}
.desktop-only {
display: none;
}
.mobile-slider-bar {
margin: 10px 0 0 0;
padding: 0 10px;
position: relative;
}
.scroll-slider {
-webkit-appearance: none;
width: 100%;
height: 2px;
background: #555;
outline: none;
}
.scroll-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 14px;
height: 14px;
border-radius: 50%;
background: white;
border: 2px solid #555;
cursor: pointer;
position: relative;
top: -6px;
}
.scroll-slider::-moz-range-thumb {
width: 14px;
height: 14px;
border-radius: 50%;
background: white;
border: 2px solid #555;
cursor: pointer;
}
.global-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our-team/bg-globe.png);
height: 140px;
display: flex;
align-items: center;
justify-content: center;  position: relative;
}
.img-logo {
display: none !important;
}
}
td {
padding: 12px;
text-align: center;
font-size: 16px;
background: #D8FCF9;
border-radius: 12px;
word-wrap: break-word;
}
td:first-child {
background: none;
border-right: 1px solid black;
border-radius: 0;
font-weight: bold;
color: #333;
position: relative;
width: 120px;
}
table {
width: 100%;
border-spacing: 8px 12px;
table-layout: auto;
border-collapse: separate;
}
thead th {
background-color: transparent;
color: white;
padding: 10px;
font-size: 32px;
color: #545454;
text-align: center;
font-family: 'tenor sans', sans-serif;
font-weight: normal;
}
tbody td {
padding: 17px;
text-align: center;
font-size: 20px;
background: #D8FCF9;
word-wrap: break-word;
border-radius: 12px;
font-family: 'Nunito Sans', sans-serif !important;
font-weight: 500;
}
tbody td:first-child {
background-color: #d4f5f0;
font-weight: bold;
color: #333;
width: 120px;
padding: 0 !important;
font-family: 'Nunito Sans', sans-serif !important;
font-weight: 500;
background: none;
border-right: none !important;
border-radius: 0;
position: relative;
vertical-align: text-top;
text-align: left;
}
.dot {
height: 15px;
width: 15px;
background-color: #00a99d;
border-radius: 50%;
display: inline-block;
margin-right: 4px;
position: absolute;
left: 95%;
top: 7%;
z-index: 100;
}
.table-line {
width: 1px;
height: 1380%;
max-height: 1380%;
background-color: #000000;
position: absolute;
left: 100%;
top: 7%;
z-index: 99;
}
.highlight {
background-color: #e0f9f5 !important;
}
.today {
background-color: #b9f2eb !important;
}
.light-color {
background-color: #F6FFFE !important;
}
.mobile-table-wrapper,
.desktop-table-wrapper {
width: 100%;
overflow-x: auto;
margin-top: 20px;
scrollbar-width: none;
-ms-overflow-style: none;
}
.mobile-table-wrapper::-webkit-scrollbar,
.desktop-table-wrapper::-webkit-scrollbar {
display: none;
}
.mobile-only {
display: none;
}
.desktop-only {
display: block;
}
.schedule-table { padding: 0 25px;
}
.hand-absolute-1 {
position: absolute;
}
.hand-absolute-2 {
position: absolute;
right: 0;
}
.side-panel {
background-color: #00978D;
border-radius: 20px;
padding: 20px 10px 20px 30px;
height: fit-content;
}
.side-list a {
font-size: 24px;
color: white;
padding: 10px 0;
font-weight: 300;
}
.side-list a.active {
color: #000000;
font-weight: bold;
}
.side-list {
display: flex;
flex-direction: column;
} .mumbai-title {
font-size: 48px;
color: #545454;
font-family: 'Tenor Sans', sans-serif;
}
.mumbai-title span {
font-size: 64px;
font-family: 'Tenor Sans', sans-serif;
}
.mumbai-second-title {
font-size: 48px;
color: #545454;
font-family: 'tenor sans', sans-serif;
}
.drug-para {
font-size: 20px;
font-family: 'Nunito sans', sans-serif;
padding-top: 10px;
padding-right: 80px;
}
.drug-right-section {
position: relative;
padding-left: 0px;
}
.drug-first-section-padding {
padding-left: 35px;
}
.second-right-treatment {
padding-top: 50px;
}
.mumbai-background {
position: absolute;
top: 45%;
right: 0;
}
.pune-background {
position: absolute;
top: 26%;
right: 0;
}
.pune-background-2 {
position: absolute;
top: 39%;
right: 0;
}
.closeness {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/background.png);
background-position: center;
padding: 50px 0;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.left-padding,
.closeness-title,
.close-para {
padding-left: 30px;
text-align: justify;
}
.first-right-treatment {
padding-top: 20px;
padding-bottom: 20px;
}
.drug-span {
font-size: 48px;
}
.schedule-table-subtext {
font-size: 14px;
}
.footer-img {
display: flex !important;
flex-direction: row !important;
flex-wrap: wrap !important;
align-items: center !important;
gap: 0;
} .footer-img > a {
width: auto !important;
flex: none !important;
}
.footer-accred-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
gap: 8px;
margin-top: 12px;
}
.bg-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: 100%;
height: auto;
z-index: 0;
transform: translate(-50%, -50%);
object-fit: cover;
}
.video-content {
position: relative;
z-index: 2;
padding-top: 20vh;
}
.background-image-dual {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/dual/Dual Diagnosi web banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
#dual-label-1 {
right: 188px;
}
#dual-label-right-2 {
top: -246px;
}
#dual-label-right-1 {
top: -239px;
}
#dual-assessment-container {
padding-bottom: 70px;
}
.background-image-substance {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/substance/Substance Abuse web banner.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 832px;
}
#dual-label-1 {
right: 188px;
}
#dual-label-right-2 {
top: -246px;
}
#substance-label-right-2 {
top: -246px;
}
#dual-label-right-1 {
top: -239px;
}
#dual-assessment-container {
padding-bottom: 70px;
}
.about-title {
font-family: 'Tenor Sans', sans-serif;
font-size: 64px;
color: #545454;
padding-top: 35px;
text-align: center;
padding-bottom: 10px;
}
.about-para {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
text-align: center;
margin: 0;
color: #000000;
}
.about-list {
font-family: 'Nunito Sans', sans-serif;
font-size: 20px;
margin: 0;
color: #000000;
}
.about-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px 0;
}
.clinical-section,
.about-goals {
display: flex;
flex-direction: column;
justify-content: center;
padding: 60px 0;
}
.about-arrow {
padding-top: 35px;
}
.about-clinical {
background: rgba(159, 214, 210, 0.35);
}
.about-card {
border: 1px solid rgba(0, 151, 141, 0.35);
border-radius: 29px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
}
.about-goal-title {
position: absolute;
top: -23px;
right: 37%;
margin: 0;
background: #00978D;
color: white;
border-radius: 21px;
padding: 6px 20px;
font-size: 21px;
font-family: 'Tenor Sans';
line-height: normal;
}
.about-goal-heading {
font-family: 'nunito sans', sans-serif;
font-size: 24px;
font-weight: bold;
padding-top: 35px;
text-align: center;
}
.about-goal-para {
font-family: 'nunito sans', sans-serif;
font-size: 20px;
text-align: center;
padding: 10px 10px;
height: 150px;
}
.about-goal-row {
gap: 10px;
margin: 60px 0;
}
.home-first-left {
display: flex;
flex-direction: column;
align-items: end;
justify-content: end;
}
.home-first-section {
padding-top: 73px;
}
@media (max-width: 768px) {
.mobile-only {
display: block;
padding: 0 15px;
}
.desktop-only {
display: none;
}
.mobile-slider-bar {
margin-top: 0;
padding: 0;
position: relative;
width: 100%;
height: 40px;
}
.mobile-slider-bar::before {
content: "";
position: absolute;
top: 37%;
left: 0;
right: 0;
height: 8px;
background: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/TEAM OF EXPERTS/Vector30.png) no-repeat center center;
background-size: contain;
transform: translateY(-50%);
pointer-events: none;
z-index: 1;
}
.scroll-slider {
position: relative;
width: 100%;
background: transparent;
appearance: none;
z-index: 2;
height: 40px;
cursor: pointer;
border: none;
}
.scroll-slider::-webkit-slider-thumb {
appearance: none;
height: 20px;
width: 20px;
background: white;
border: 2px solid black;
border-radius: 50%;
position: relative;
z-index: 3;
}
.scroll-slider::-moz-range-thumb {
height: 20px;
width: 20px;
background: white;
border: 2px solid black;
border-radius: 50%;
z-index: 3;
}
.dot {
height: 9px;
width: 9px;
background-color: #00a99d;
border-radius: 50%;
display: inline-block;
margin-right: 4px;
position: absolute;
left: 95.75%;
top: -24%;
}
}                           .addict-cta {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/cta.png);
background-repeat: no-repeat;
background-size: 100% 100%;
margin-top: 70px;
}
.drug-cta {
display: flex;
flex-direction: row;
justify-content: center;
padding: 80px 0px
}
.drug-cta-img {
object-fit: contain;
}
.drug-cta h1 {
font-size: 48px;
color: #545454;
text-align: center;
font-family: 'Tenor Sans', sans-serif;
}
.drug-cta h2 {
font-size: 48px;
color: #545454;
text-align: center;
font-family: 'Tenor Sans', sans-serif;
}
.drug-cta h1 span {
font-size: 64px;
}
.drug-cta h2 span {
font-size: 64px;
}
.rehab h1 {
font-size: 36px;
font-weight: bold;
margin: 0;
padding-top: 50px;
}
.rehab h2 {
font-size: 36px;
font-weight: bold;
margin: 0;
padding-top: 50px;
}
.rehab p {
font-size: 20px;
text-align: justify;
}
.support-group-background {
background-color: rgba(171, 239, 234, 0.35);
padding-bottom: 50px;
margin-top: 70px;
}
.support-heading {
padding: 50px 0 0 0;
}
.recovery-heading h2 {
color: #00978D;
}
.recovery-heading img {
padding: 0 25px;
}
.samarpan-recover-section {
padding-bottom: 70px;
}
#who-we-are-subtext {
font-size: 20px;
font-weight: 300;
font-family: 'Nunito Sans', sans-serif;
}
.modal {
overflow: hidden;
z-index: 9999;
}
.modal-left {
background-color: #00978D;
padding: 0;
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
border-radius: 0;
}
.modal-row {
margin-left: 0;
}
.modal-text {
font-size: 48px;
font-family: 'Tenor Sans', sans-serif;
color: #FFFFFF;
}
.modal-right-side {
padding: 10em 3em !important;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/modal/form-bg.png);
background-repeat: no-repeat;
background-size: 54% 54%;
background-position: center bottom;
}
.modal-right-side-1 {
padding: 12em 3em !important;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/modal/right-flower.png);
background-repeat: no-repeat;
background-size: 32%;
background-position: 100% 90%;
}
.modal-form,
.modal-form-1,
.modal-form-2,
.modal-form-3,
.modal-form-4,
.modal-form-5,
.modal-form-6 {
padding-bottom: 0;
}
.modal-form-1,
.modal-form-2,
.modal-form-3,
.modal-form-4,
.modal-form-5,
.modal-form-6 {
align-items: start;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.step-btn {
border-radius: 50%;
width: 40px;
height: 40px;
margin: 0 5px;
}
.modal-pagination {
position: absolute;
top: 72%;
left: 63.2%;
}
.step-btn.active {
background-color: #009688; color: #fff;
border: none;
}
.step-btn:hover {
color: #009688;
background-color: white;
border: 1px solid #009688;
}
.modal-form-container {
width: 100%;
}
.modal-phone {
border: none;
border-bottom: 1px solid #545454;
font-family: 'Nunito Sans', sans-serif;
font-size: 37px;
border-radius: 0;
opacity: .6;
}
.modal-phone::placeholder {
font-size: 37px;
opacity: .6;
}
.modal-left-side {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/modal/flower.png);
background-repeat: no-repeat;
background-position: 165% -18%;
}
.modal-close {
position: absolute;
right: 1.3%;
top: 1.3%;
font-size: 21px;
color: #545454;
opacity: .5;
cursor: pointer;
}
.custom-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
z-index: 1050; opacity: 1;
transition: opacity .15s linear;
}
.modal-heading {
font-family: 'tenor sans', sans-serif;
font-size: 48px;
}
.modal-dialog {
max-width: 1000px;
}
.modal-left-side {
background: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/modal/flower.png) no-repeat, #00978D; background-position: 112% -10%;
background-size: 47%;
}
.first-certifications {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/certifications/Rectangle 299.png);
background-repeat: no-repeat;
background-position: 100% 42%;
padding-top: 70px;
}
.second-certifications {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/certifications/Rectangle 299.png);
background-repeat: no-repeat;
background-position: 100% 42%;
background-size: 100% 72%;
}
.third-certifications {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/certifications/Rectangle 299.png);
background-repeat: no-repeat;
background-position: 100% 42%;
background-size: 100% 100%;
padding: 10px 0;
}
.second-certification-img {
display: flex;
justify-content: center;
align-items: center;
}
.national {
font-family: 'Nunito Sans', sans-serif;
font-size: 29px;
font-weight: bold;
color: #545454;
margin: 0;
}
.certification-row {
align-items: center;
justify-content: center;
}
.certificate-para {
padding-right: 0;
color: #545454;
text-align: justify;
}
.memberships {
text-align: center;
font-family: 'Nunito Sans', sans-serif;
font-size: 40px;
color: #545454;
font-weight: bold;
}
.first-certification-img {
align-items: center;
justify-self: center;
display: flex;
padding-left: 0;
justify-content: left;
}
.certification-para-section {
padding-top: 40px;
padding-bottom: 40px;
}
.certification-subtext {
font-family: 'Tenor Sans', sans-serif;
font-size: 48px;
}
.pleasant-padding {
padding-right: 300px;
margin-bottom: 40px;
}
#ashish-deshpande {
font-size: 58px;
}
#dyaneshwar-patharwat {
font-size: 44px;
}
.substance-abuse {
width: fit-content;
}
#pune-first-section {
padding-top: 5px;
}
#samarpan-special {
padding-top: 30px;
}
.experts-row {
width: 100%;
}
.site-form { }
.admission-contant-heading {
justify-content: start;
align-items: start;
}
.custom-carousel-wrap {
position: relative;
max-width: 1100px;
margin: 0 auto;
}
.custom-carousel-viewport {
overflow: hidden;
width: 100%;
border-radius: 0px;
background: transparent;
padding: 0px 0;
}
.custom-card-caption {
position: absolute;
bottom: 12px;
left: 12px;
color: #fff;
font-size: 14px;
font-weight: 600;
opacity: 0;
transform: translateY(10px);
transition: all 0.4s ease;
pointer-events: none; z-index: 999;
}
.custom-carousel-track {
display: flex !important;
gap: 12px;
list-style: none;
margin: 0;
padding: 0;
transition: transform 0.5s ease;
will-change: transform;
}
.custom-carousel-card {
flex: 0 0 auto;
min-width: 200px;
height: 280px;
background: none;
text-align: center;
position: relative; overflow: hidden;
}
.custom-carousel-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
border-radius: 0;
border: 2px solid transparent;
}
.sample-thumb {
height: 120px;
border-radius: 6px;
margin-bottom: 12px;
}
.c-title {
font-weight: 600;
margin-bottom: 6px;
}
.c-sub {
font-size: 13px;
color: #666;
}
.custom-carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: none;
border: 0;
width: 44px;
height: 44px;
border-radius: 50%;
cursor: pointer;
display: grid;
place-items: center;
z-index: 10;
} .custom-carousel-card:hover,
.custom-carousel-card:hover img {
border: 1px solid #00978D;
border-radius: 0;
} .custom-carousel-card {
position: relative;
overflow: hidden;
}
.custom-carousel-card img {}  .custom-carousel-card::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
opacity: 0;
transition: opacity 0.4s ease;
border-radius: 0;
pointer-events: none;
z-index: 2; }
.custom-carousel-card:hover::after {
opacity: 1;
}
.custom-carousel-card:hover .custom-card-caption {
opacity: 1;
transform: translateY(0);
}
.background-image-gallery {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/gallery/Group 91.png);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center top;
height: 832px;
}
.gallery-title {
font-family: 'Tenor Sans', sans-serif;
font-size: 48px;
color: #545454;
}
.gallery-heading-title {
flex-direction: row;
display: flex;
align-items: end;
padding: 90px 0 100px 0;
}
.gallery-background {
position: absolute;
width: 100%;
top: 35%;
}
.gallery-last-background {
top: 30%;
}
.gallery-section,
.gallery-container {
position: relative;
}
.custom-prev {
left: 10px;
}
.custom-next {
right: 10px;
}
.last-section-gallery {
padding-bottom: 80px;
}
.gallery-para {
text-align: center;
}
@media (min-width:1400px) {
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
max-width: 1260px;
}
}                        @media (max-width: 768px) {
.hexagon-section {
flex-direction: column;
align-items: center;
}
.hex-side {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.hex-wrapper {
flex-direction: column !important;
text-align: center !important;
}
.hex-label {
margin: 0.5rem 0 0;
}
} @media (max-width: 768px) { html {
overflow-x: hidden;
} body {
padding-bottom: 52px;
}
.slider-carousel-card,
.slider-carousel-2-card,
.slider-carousel-3-card,
.slider-carousel-4-card,
.slider-carousel-5-card {
flex: 0 0 100px;
}
.hover-overlay h4 {
font-size: 10px;
}
.hover-overlay p {
font-size: 8px;
}
.hide-on-mobile {
display: none;
}
.show-on-mobile {
display: flex;
}
.test-arrows {
width: 20px;
height: 5px;
object-fit: contain;
}
.service-arrows {
width: 35px;
height: 7px;
}
.testimonial-header {
font-size: 30px;
}
.why-choose-us-arrows {
flex: 0 0 auto;
width: max-content;
}
.img-logo-mob {
width: 36%;
}
.navbar-brand-mob>img {
width: 100%;
}
.navbar-brand {
justify-content: start;
margin: 0;
width:100%;
}
.background-image {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/home/mob-banner.png);
background-size: cover;
background-repeat: no-repeat;
height: 631px;
min-height: auto;
overflow: visible;
}
.banner-title {
font-size: 43px;
padding-bottom: 80px;
}
.banner-sub-text {
font-size: 21px;
}
#our-approach-sub-text {
font-size: 33px;
}
.sub-text {
font-size: 14px;
padding: 28px;
}
.second-text {
font-size: 34px;
line-height: 40px;
}
.left-heading {
font-size: 15px;
font-family: 'Nunito Sans', sans-serif;
font-weight: 400;
}
.second-section {
padding-bottom: 25px;
}
.cust-section-1 {
background-image: none;
padding-top: 30px;
padding-bottom: 30px;
}
.mobile-arrow {
height: 7px;
}
.left-section {
align-items: end;
transform: translate(-10px, 0px);
display: flex;
}
.left-column {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Home mobile/what we are/background.png);
background-repeat: no-repeat;
background-position: top right;
padding-top: 20px;
}
.left-content {
font-weight: 400;
font-size: 13px;
line-height: 1.5;
letter-spacing: 0%;
padding: 20px 50px 0px 50px;
}
.image-mob {
display: flex;
justify-content: end;
}
.second-section-text {
font-size: 30px;
}
.section-heading {
font-size: 21px;
line-height: 30px;
}
.care-arrow {
width: 185px;
padding-top: 0px;
}
.icons {
width: 33%;
padding-top: 30px;
padding-bottom: 30px;
}
.icons>h2 {
font-weight: 400;
font-size: 25.96px;
line-height: 100%;
letter-spacing: 0%;
padding-top: 17px;
}
.icons>p {
font-weight: 700;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
}
.right-flower-mob {
position: absolute;
right: 0px;
top: 1109px;
}
.flower-mob {
position: absolute;
top: 1561px;
}
.book-cta>a {
font-weight: 600;
font-size: 15px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.cta {
width: 80%;
}
.section-third {
padding-top: 40px;
padding-bottom: 80px;
}
.treat-mob {
width: 156px;
padding-bottom: 15px;
}
}
@media (max-width: 768px) {
.form-section h2 {
font-size: 17px;
line-height: 24px;
padding: 25px 0px 0px 0px;
}
.form-section p {
font-size: 10px;
line-height: 11px;
padding: 20px 20px 0px 20px;
}
.form-section {
border-radius: 10px;
}
form {
padding-bottom: 25px;
}
input,
.resume-btn {
width: 80%;
height: 25px;
border: 1px solid #94805C4D;
border-radius: 4px;
padding: 8px 0px 5px 8px;
font-weight: 400;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: black;
margin-bottom: 16px;
}
label {
font-size: 8px;
}
#file-name,
#file-name-cover,
#file-name-mob,
#file-name-cover-mob {
font-weight: 400;
font-size: 8px;
line-height: 10.46px;
letter-spacing: 0%;
vertical-align: middle;
display: inline-block;
max-width: 95px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}
.video-background-career {
background-position: 100% 30%;
}
.career-video {
height: 200px !important;
margin-top: 0;
}
select {
width: 50%;
height: 25px;
border: 1px solid #94805C4D;
border-radius: 4px;
padding: 5px 0px 5px 8px;
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: black;
margin-bottom: 16px;
}
.first-row {
padding-top: 70px;
}
.service-item {
font-weight: 400;
font-size: 13px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
padding-top: 30px;
padding-bottom: 5px;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.service-item {
border-bottom: 1px solid #D6D6D6;
}
.flower-1-right-mob {
position: absolute;
right: 0px;
top: 15%;
}
.flower-1-right-mob-treat {
position: absolute;
right: 0px;
top: 72px;
}
.flower-1-mob-treat {
position: absolute;
top:-37px;
}
.flower-1-mob {
position: absolute;
top: 8%;
}
.test-container {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Home mobile/testimonial.png);
background-size: contain;
padding-top: 80px;
background-repeat: no-repeat;
}
.fourth-section {
margin-top: 15px;
padding-bottom: 20px;
}
.video-card {
flex: 0 0 93%;
}
.carousel-viewport {
padding: 0 0px;
}
.video-carousel {
padding-top: 10px;
}
.video-card {
height: 270px;
}
.video-card iframe {
height: 200px;
}
.carousel-indicators {
top: -63px;
}
.arrow-img {
justify-content: center;
padding-left: 100px;
}
#client-arrow {
width: 82px;
}
.multi-card {
flex: 0 0 calc(100%);
margin-right: 10px;
box-sizing: border-box;
margin-top: 84px;
background: #ffffff;
text-align: center;
border-radius: 8px;
}
.carousel-indicators-1 {
top: 400px;
justify-content: center;
}
.carousel-indicators-1 button.active {
background-color: #00978D;
width: 40px;
}
.carousel-indicators-1 button {
width: 12px;
height: 12px;
background-color: #b9b9b9;
border: none;
cursor: pointer;
transition: background-color 0.3s;
margin-right: 10px;
}
.nav {
justify-content: start;
padding: 10px 0px;
}
.expert-link {
font-weight: 300;
padding-right: 2px;
font-size: 15px;
line-height: 100%;
letter-spacing: 0%;
color: #000000;
border: none;
width: 39%;
background-color: white;
text-align: center;
justify-content: center;
display: flex;
align-items: normal;
margin-right: 10px;
}
.experts-img-2 {
width: 100%;
}
.col-sm-8 {
width: 66%;
}
.col-sm-4 {
width: 33%;
}
.mob-img-experts {
display: flex;
justify-content: center;
align-items: center;
}
.experts-width {
justify-content: center;
}
.tab-content {
padding-top: 0px;
}
.hover-overlay {
padding: 9px;
}
.sixth-section {
padding-top: 69px;
}
.form-image {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/7 10.webp);
background-repeat: no-repeat;
background-size: 100% 30%;
}
.section-8 {
padding-top: 115px;
padding-bottom: 75px;
}
.contact-form-section { background-repeat: no-repeat;
background-size: 100% 72%;
padding-bottom: 0px;
margin-top: 100px;
}
input::placeholder,
select::placeholder {
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: start;
color: black;
transform: translate(0px, -2px);
}
.form-submit {
font-size: 15px;
padding: 4px 12px;
}
.form-submit-1 {
font-size: 15px;
padding: 4px 12px;
}
footer {
padding-top: 75px;
}
.footer-logo {
width: 60%;
}
.footer-row>.col-md-3 {
border: none;
}
.second-column,
.third-column {
padding: 20px 15px 20px 15px;
}
.col-sm-5 {
width: 45%;
}
.col-sm-7 {
width: 55%;
}
.col-sm-10{
width:83.33%;
}
.col-sm-2{
width:16.66%;
}
.footer-links {
font-size: 13px;
line-height: 23px;
}
.second-column>p,
.third-column>p {
font-weight: 700;
font-size: 15px;
line-height: 17px;
letter-spacing: 0%;
vertical-align: middle;
text-transform: capitalize;
margin-bottom: 5px;
}
.footer-mob-links {
line-height: 28px;
}
.col-sm-9 {
width: 75%;
}
.col-sm-3 {
width: 25%;
}
.illustration {
padding-right: 20px;
}
.illustration>img {
width: 100%;
}
.footer-bottom-text {
font-weight: 400;
font-size: 13px;
line-height: 20px;
letter-spacing: 0%;
vertical-align: middle;
}
.fixed-mob-icons {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #00978D;
justify-content: center;
display: flex;
z-index: 10002;
}
.footer-icons-mob {
display: flex;
justify-content: center;
align-items: center;
padding: 10px 0px;
border-right: 1px solid white;
}
#navbarNav {
background-color: #00978D;
border-radius: 18px;
margin: 0px 16px;
}
.nav-link {
padding-top: 10px;
font-size: 17px;
padding-right: 30px !important;
padding-bottom: 9px;
}
.nav-item {
border-bottom: 1px solid #FFFFFF;
justify-content: center;
}
.image-mob {
position: relative;
}
.line-image {
position: absolute;
width: 76%;
top: 85%;
z-index: 10;
}
.tab-content {
margin-top: -25px;
}
.mob-row {
justify-content: center;
}
.background-image-service {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service-mob/banner.jpg);
background-size: 100% 100%;
position: relative;
height: fit-content;
}
.banner-title::after {
display: none;
}
.ask-for-help a {
font-weight: 600;
font-size: 15px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 9px 46px;
}
.assessment {
font-weight: 400;
font-size: 34px;
line-height: 104%;
letter-spacing: 0%;
}
.assessment-subtext {
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
}
.second-section-service {
padding: 60px 0 60px 10px;
}
.left-service-column {
padding-top: 0px;
}
.one-liner {
font-weight: 400;
font-size: 11px;
line-height: 100%;
letter-spacing: 0%;
min-height: auto;
}
.meth-one-liner {
font-weight: 400;
font-size: 11px;
line-height: 100%;
letter-spacing: 0%;
min-height: auto;
}
.cocaine-one-liner {
font-weight: 400;
font-size: 11px;
line-height: 100%;
letter-spacing: 0%;
min-height: auto;
}
.marijuana-one-liner {
min-height: 41px;
}
.test-column {
padding-top: 45px;
}
.text-height {
min-height: 0;
}
.test-button a {
font-weight: 600;
font-size: 13.07px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 5px 17px;
}
.left-mob-column {
padding-left: 15px;
}
.right-mob-column {
padding-right: 15px;
}
.treatment-heading {
font-weight: 800;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
}
.treatment-textbox>p,
.treatment-textbox-2>p {
font-weight: 400;
font-size: 12px;
line-height: 13px;
letter-spacing: 0%;
text-align: left;
}
.treatment-textbox {
box-shadow: -13px 14px 11px 0px #0000001A;
width: 647.1494140625px;
background-color: white;
height: fit-content;
border-radius: 16px; width: 212px;
padding: 0;
padding-left: 20px;
padding-top: 20px;
padding-right: 20px;
}
.first-image {
position: absolute;
top: 40px;
left: 6%; width: 93%;
}
.treatment-image {
width: 35%;
}
.treatment-textbox-2 {
box-shadow: -13px 14px 11px 0px #0000001A;
width: 647.1494140625px;
background-color: white;
height: fit-content;
border-radius: 16px; width: 212px;
padding: 0;
padding-left: 20px;
padding-top: 20px;
padding-right: 20px;
}
.second-treatment {
justify-content: start;
position: relative;
padding-top: 110px;
padding-left: 33px;
}
.second-image {
position: absolute;
left: 209px;
top: 62px;
width: 42%;
}
.accordion-section {
padding-top: 60px;
padding-left: 4%;
}
.faq-accordion-section {
padding-top: 0px;
padding-left: 22px;
padding-right: 22px;
}
.faq-accordion {
padding-left: 20px;
font-size: 12px !important;
}
.faq-line {
padding-bottom: 10px;
}
.faq-accordion-body {
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 8.88px;
line-height: 124%;
letter-spacing: 0%;
padding-left: 20px;
padding-bottom: 22px;
}
.faq-para {
font-family: "Nunito Sans", sans-serif;
font-weight: 700;
font-size: 12px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 0 32px;
}
.faq-text-section {
padding-top: 70px;
}
.alcohol-subtext {
padding-top: 20px;
font-weight: 300;
font-size: 12px;
line-height: 13px;
letter-spacing: 0%;
}
.accordion-header>button {
font-weight: 400;
font-size: 12.93px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
}
.cta-heading {
font-weight: 700;
font-size: 14.46px;
line-height: 100%;
letter-spacing: 0%;
}
.cta-subheading {
font-weight: 300;
font-size: 10.84px;
line-height: 100%;
letter-spacing: 0%;
}
.cta-service-text {
padding-left: 6%;
}
.hex-svg {
position: absolute;
width: 94px;
height: 106px;
z-index: 2;
}
.main-circle {
width: 168px;
height: 168px;
}
.hex-left-3 {
transform: translate(-51px, -100px) rotate(240deg);
}
.hex-right-3 {
transform: translate(41px, -109px) rotate(60deg);
}
.hex-right-1 {
transform: translate(139px, -88px) rotate(60deg);
}
.hex-right-2 {
transform: translate(139px, 102px) rotate(60deg);
}
.hex-left-2 {
transform: translate(46px, 107px) rotate(240deg);
}
.hex-left-1 {
transform: translate(-51px, 85px) rotate(240deg);
}
.main-circle>h2 {
font-weight: 400;
font-size: 16.68px;
line-height: 91%;
letter-spacing: 0%;
left: 35px;
top: 76px;
}
.ask-for-help {
padding: 0;
position: absolute;
top: 97%;
}
.recognize {
flex-direction: column;
}
.recognize>h2 {
font-weight: 600;
font-style: italic;
font-size: 13px;
line-height: 74px;
letter-spacing: 0%;
text-align: center;
}
.signs {
font-weight: 600;
font-style: italic;
font-size: 13px;
line-height: 20px;
letter-spacing: 0%;
text-align: center;
}
.recognize-line {
width: 21px;
height: 21px;
}
.hex-label-right-2 {
color: white;
margin: 0 0.75rem;
position: absolute;
right: -56px;
color: black;
top: -190px;
width: 100px;
font-weight: 500;
font-size: 13px;
text-align: center;
}
.hex-label-right-1 {
font-weight: 500;
font-size: 13px;
line-height: 117%;
letter-spacing: 0%;
text-align: center;
right: -205px;
top: -218px;
}
.hex-label-right-3 {
font-weight: 500;
font-size: 13px;
line-height: 117%;
letter-spacing: 0%;
text-align: center;
top: 154px;
right: -101px;
}
.hex-label-3 {
font-weight: 500;
font-size: 13px;
line-height: 117%;
letter-spacing: 0%;
text-align: center;
top: 170px;
right: -202px;
}
.hex-label {
font-weight: 500;
font-size: 13px;
line-height: 117%;
letter-spacing: 0%;
text-align: center;
top: 147px;
right: -246px;
width: 109px;
}
.hex-label-1 {
font-weight: 500;
font-size: 13px;
line-height: 117%;
letter-spacing: 0%;
text-align: center;
top: -202px;
right: -257px;
width: 109px;
}
.hide-on-desktop {
display: flex !important;
}
.mob-recog {
font-weight: 600;
font-style: italic;
font-size: 13px;
line-height: 20px;
letter-spacing: 0%;
text-align: center;
margin: 0;
padding-bottom: 5px;
}
.recognize-line {}
.get-help-btn>a {
font-weight: 600;
font-size: 15px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 10px 32px;
}
.get-help-btn {
margin-top: 7px;
}
.hexagon-cta {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/service/background (1).png');
background-position: center;
padding-bottom: 40px;
background-repeat: no-repeat;
margin-top: -31px;
} .background-treatment {
padding-top: 0px;
}
.service-approach-bg {
padding-bottom: 45px;
}
#home-title {
padding-bottom: 0px !important;
padding-top: 404px;
}
.background-image-heroin {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/heroin/mob/heroin mo.jpg);
}
.background-image-cocaine {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/cocaine/mob/cociane mob.jpg);
background-size: 100% 100%;
height: fit-content;
}
.background-image-pain {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/painkiller/Painkiller Addiction mobile banner.jpg);
background-size: cover;
height: fit-content;
}
.background-image-who-we-are {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/MOB/who we are-mob.png);
height: 651px;
background-size: 100% 100%;
}
.background-image-marijuana {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/marijuana/mobile/marijuana mob.jpg);
height: fit-content;
}
.background-image-benzodiazepine {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Benzodiazepine Addiction/mobile/mobile banner.jpg);
height: fit-content;
}
.background-image-ketamine {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Ketamine/Ketamine  mob.jpg);
height: max-content;
}
.background-image-what-we-treat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/what-we-treat/what-we-treat-mobile.png);
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
.background-image-preg {
background-image: linear-gradient(11deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.36) 65.18%),
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Pregabalin/Pregabalin mob.jpg);
height: max-content;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-color: white;
}
#whatwetreat {
margin-bottom: 35px;
}
#whatwetreat-subtext {
font-size: 24px;
}
#whowearesection {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/WEB/bg.png);
margin-bottom: 0px;
}
#treat-title {
font-size: 47px;
}
#benzo-hex-label-mob-3 {
right: -254px;
width: 105px;
}
#benzo-hex-label-mob {
right: -49px;
}
#keta-hex-label-right-2 {
top: -232px;
}
#keta-hex-label-right-1 {
top: -251px;
}
#meth-hex-label-right-1 {
top: -207px;
}
#keta-hex-label-1 {
top: -221px;
}
#meth-hex-label-right-2 {
top: -190px;
}
#meth-hex-label-1 {
top: -192px;
}
.approach-img-section>img {
width: 109px;
height: 79px;
}
.approach-second-image>img {
width: 109px;
height: 79px;
}
.approach-section-heading {
font-weight: 700;
font-size: 14.83px;
line-height: 100%;
letter-spacing: 0%;
}
#mobile-number-2 {
width: 134px;
height: 80px;
}
.approach-second-image {
padding-left: 0px;
justify-content: center;
}
.approach-second-textbox {
padding-left: 9%;
}
.section-subtext {
font-weight: 400;
font-size: 13px;
line-height: 100%;
letter-spacing: 0%;
}
.text-section {
padding-left: 10px;
padding-right: 24px;
}
.left-background-image {
background-size: 49%;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/mobile/numbers/bg.png);
background-position: left 7%;
height: 1904px;
}
.section-arrow,
.section-arrow-left {
background-size: 40%;
background-position: 50% 100%;
padding-bottom: 15px;
}
.approach-img-section {
justify-content: flex-start;
padding-left: 9%;
}
.approach-second-section,
.first-section {
padding-top: 38px;
}
#approach-first-section {
padding-top: 86px;
}
.background-image-approach {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/our approach/mobile/banner.png);
height: 664px;
min-height: auto;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-contact {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 131.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-career {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/career/CAREER-MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-care {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/care/care-mob.png); height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-certification {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/certifications/banner-mob.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-admission {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/admissions/banner-mob.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-terms {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/staff/mob-banner.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-staff {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/staff/Group 131 (10).png');
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-price {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/price/Group 131 (11).png');
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-refund {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/refund/Group 131 (12).png');
height: 664px;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-color: white;
}
.background-image-schedule {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/schedule/Group 131 (13).png');
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-drug {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/banner-mob.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-pune {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/banner-mob-pune.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-pune-1 {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/addiction-treat/mob-banner-pune-alcohol.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.approach-text {
font-size: 47px;
padding-bottom: 78px;
}
.contact-text {
font-size: 47px;
padding-bottom: 10px;
padding-top: 480px;
}
.terms-text {
font-size: 47px;
padding-bottom: 10px;
padding-top: 397px;
}
.background-image-mdma {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/mdma/mob/mdma mob.jpg);
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: fit-content;
}
.background-image-our-facilities {
background-image:
url();
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 553px;
}
.facilities-title {
font-size: 13px;
padding-top: 35px;
}
.facilities-subtext {
font-size: 27px;
}
.our-facilities-first-section>img {
padding-top: 12px;
width: 90px;
}
.facilities-para {
padding: 15px 36px 15px 36px;
font-size: 13px;
}
.mob-facilities-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/MOB/1.png);
transform: translate(28px, 16px);
background-repeat: no-repeat;
background-size: 100% 100%;
}
.mob-facilities-section>p {
font-weight: 400;
font-size: 10px;
line-height: 130%;
letter-spacing: 0%;
padding-right: 17px;
}
.mob-facilities-second-section>p {
font-weight: 400;
font-size: 10px;
line-height: 130%;
letter-spacing: 0%;
padding-left: 12px;
}
.mob-facilities-section>h1 {
font-weight: 400;
font-size: 13px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
padding-top: 20px;
}
.mob-facilities-second-section>h1 {
font-weight: 400;
font-size: 13px;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
padding-top: 20px;
padding-left: 10px;
}
.mob-facilities-second-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/MOB/2.png);
transform: translate(-28px, 16px);
background-repeat: no-repeat;
background-size: 100% 100%;
}
.facilities-privacy-heading {
font-weight: 400;
font-size: 27.97px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
}
.mobile-privacy-line {
width: 139px;
margin: auto;
}
.privacy-container>p {
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
padding: 20px 40px 40px 40px;
}
.facilities-privacy {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/MOB/BG.png);
background-repeat: no-repeat;
background-size: contain;
}
.privacy-container {
padding: 49px 0px;
}
.experience>h1 {
font-weight: 400;
font-size: 27px;
line-height: 105%;
letter-spacing: 0%;
padding-top: 0px;
padding-left: 35px;
}
.mobile-experience-arrow {
width: 100px;
}
.experience-row {
padding: 24px 0 0 0;
}
#mob-contact-row {
padding: 0px 0 0 0;
}
.contact-row {
padding: 0px 0 0 0;
}
.number-circle {
padding: 17px 19px;
font-weight: 900;
font-size: 12.33px;
line-height: 91%;
letter-spacing: 0%;
box-shadow: 2px 5px 4px 0px #00000026;
}
.contact-number-circle {
padding: 15px 16px;
font-weight: 900;
font-size: 12.33px;
line-height: 91%;
letter-spacing: 0%;
box-shadow: 2px 5px 4px 0px #00000026;
}
.experience-list {
font-weight: 500;
font-size: 12.33px;
line-height: 91%;
letter-spacing: 0%;
}
.experience-list {
padding-left: 12px;
}
.experience-list-1 {
padding-top: 21px;
}
.contact-list-1 {
padding-top: 21px;
}
.contact-list {
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 12.88px;
line-height: 91%;
letter-spacing: 0%;
padding-left: 12px;
}
.experience-list-column {
transform: translate(61%, 0px);
}
.contact-list-column {
transform: translate(22%, 0px);
width: fit-content;
}
.experience-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/MOB/EXP.png);
background-position: top right;
background-repeat: no-repeat;
}
.background-image-meth {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/meth/mob/Methamphetamine mobile banner.jpg);
height: max-content;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-color: white;
}
#meth-title {
font-size: 40px;
}
#meth-second-text-mob {
font-size: 32px;
}
#meph-hex-label-right-1 {
top: -217px;
}
#meph-hex-label-right-2 {
top: -202px;
}
#meph-hex-label-1 {
top: -199px;
}
.background-image-meph {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/meph/mob/Mephedrone mobile banner.jpg);
height: max-content;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-color: white;
}
.background-image-gambling {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/gambling/mob/gamble mob.jpg);
height: max-content;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-color: white;
}
#gambling-hex-label-right-1 {}
#gambling-hex-label-right-2 {
top: -201px;
}
#gambling-hex-label-1 {
top: -202px;
}
#comp-hex-label-right-1 {
top: -221px;
}
#comp-hex-label-right-2 {
top: -201px;
}
#comp-hex-label-1 {
top: -199px;
}
.background-image-compulsive {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/compulsive/mob/sexual mob.jpg);
height: max-content;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-color: white;
}
.banner-underline::after {
content: '';
position: absolute;
bottom: -15px; left: 50%;
transform: translateX(-50%);
width: 143px; height: 2px;
background-color: white;
} .who-we-are-section-content {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/OUR FACILITIES/WEB/1.png);
background-repeat: no-repeat;
background-position: 100% 100%;
background-size: contain;
transform: translate(0px, 0px);
display: flex;
flex-direction: column;
justify-content: start;
padding-left: 20px;
}
.who-we-are-section {
margin: 0;
padding-top: 50px;
background-image: none;
background-repeat: no-repeat;
background-position: 0% 27%;
}
.our-story {
transform: translate(0px, 0px);
}
#who-we-are-story {
font-weight: 300;
font-size: 15px;
line-height: 10%;
letter-spacing: 0%;
}
.who-we-are-second-text {
font-weight: 300;
font-size: 36px;
line-height: 100%;
letter-spacing: 0%;
}
.who-we-are-first-para {
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
padding-right: 20px;
margin-bottom: 0px;
padding-top: 6px;
}
.who-we-are-section-content {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/MOB/our story.png);
height: 112px;
background-size: 100% 100%;
justify-content: start;
padding-top: 7px;
padding-left: 30px;
}
.who-we-are-line {
justify-content: center;
transform: translate(0px, 16px);
display: none;
}
.who-we-are-section-img>img {
width: 69%;
}
.who-we-are-section-img {
padding: 0 0 0 0;
justify-content: end;
margin-top: -28px;
}
.who-we-are-second-section {
padding-top: 62px;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/MOB/how.png);
padding-bottom: 62px;
background-size: 100% 100%;
margin-top: 100px;
}
.who-we-are-section-heading {
font-weight: 400;
font-size: 16.66px;
line-height: 104%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
}
.heading-mob-help {
font-family: "Tenor Sans" sans-serif;
font-weight: 400;
font-size: 23.15px;
line-height: 104%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
}
.who-we-are-icons>h2 {
font-weight: 700;
font-size: 18.31px;
line-height: 100%;
letter-spacing: 0%;
}
.who-we-are-icons>p {
font-weight: 400;
font-size: 13px;
line-height: 12.02px;
letter-spacing: 0%;
text-align: center;
}
.who-we-are-icons {
padding-top: 33px;
}
.therapies-we-use-1 {
padding: 0 35px;
}
.therapies-we-use>.left-heading {
font-family: 'Tenor Sans', sans-serif;
font-weight: 400;
font-size: 34px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.therapies-we-use>.who-we-are-second-text {
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
font-size: 15px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.therapies-we-use {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/WHO WE ARE/MOB/arrow.png);
background-repeat: no-repeat;
background-position: 80% 71%;
}
.thearpy-img-mob-row {
padding-top: 15px;
}
.thearpy-img-row {
padding-top: 0px;
}
.therapy-cta>a {
padding: 7px 24px;
font-family: 'nunito sans', sans-serif;
font-weight: 600;
font-size: 15px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
width: fit-content;
}
.image-wrapper {
width: 100%;
}
.therapy-cta {
padding-top: 40px;
}
#who-we-are-banner-title {
padding-bottom: 15px;
padding-top: 415px;
}
.contact-line {
width: 209.421875px;
padding-bottom: 30px;
}
.gallery-line {
width: 209.421875px;
padding-bottom: 7px;
}
.mob-contact-heading>h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 24px;
line-height: 153%;
letter-spacing: 0%;
text-align: center;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 170.png);
background-repeat: no-repeat;
background-position: center;
}
.contact-first-section {
padding-top: 0px;
}
.contact-us-background {
position: absolute;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 165.png);
height: 370px;
display: flex;
align-items: center;
background-repeat: no-repeat;
color: #545454;
background-size: 27% 58%;
}
.call-text {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 27.97px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
}
.contact-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 197.png);
background-size: 100% 100%;
padding-bottom: 35px;
height: 200px;
}
.contact-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 197.png);
background-size: 100% 100%;
padding-bottom: 35px;
height: 200px;
}
.admission-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 197.png);
background-size: 100% 100%;
padding-bottom: 0px;
}
.mob-admission-points {
padding-left: 20px !important;
}
.pt-sm-2 {
padding-top: 30px;
}
.career-cta-section {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/MOB/Group 197.png);
background-size: 100% 100%;
padding-bottom: 35px;
}
.contact-heading {
flex-direction: column;
padding-top: 30px;
}
.contact-heading>img {
width: 139px;
}
.call-text {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 27.97px;
line-height: 91%;
letter-spacing: 0%;
text-align: center;
color: #545454;
}
.contact-form {
flex-direction: column;
padding-top: 40px;
}
.contact-input::placeholder {
font-family: "Nunito Sans", sans-serif;
font-weight: 400;
font-size: 14.78px !important;
line-height: 100%;
letter-spacing: 0%;
text-align: left;
padding: 10px 0px;
color: #9A9A9A;
}
.form-section h2 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 15.16px;
line-height: 21.46px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
margin-bottom: 0px;
}
.contact-form-arrow>img {
width: 92px;
padding-bottom: 21px;
}
.contact-submit {
transform: translate(0px, 13px);
}
.news-background>h1,
.news-background-1>h1 {
font-family: "Tenor Sans", sans-serif;
font-weight: 400;
font-size: 14.89px;
line-height: 118%;
letter-spacing: 0%;
}
.faqs-background-1 {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/faqs/Group 162.png);
height: max-content;
display: flex;
align-items: start;
background-repeat: no-repeat;
color: #545454;
background-size: contain;
flex: 0 0 auto;
width: 55.333333%;
flex-direction: column;
justify-content: center;
padding: 0 20px;
background-position: center;
}
.faq-img-1>p {
font-family: "Nunito Sans", sans-serif;
font-weight: 500;
font-size: 12px;
line-height: 124%;
letter-spacing: 0%;
margin: 0;
padding-top: 30px;
}
.news-background,
.news-background-1 {
justify-content: unset;
padding: 0 18px;
padding-top: 20px;
height: 125px;
background-size: 100% 100%;
;
}
.news-row {
padding-top: 30px !important;
}
.news-row-1,
.news-row-2 {
padding-top: 30px !important;
justify-content: end;
}   .news-background>p,
.news-background-1>p {
font-size: 13px;
margin: 0;
padding: 0 0 5px 0;
}
.learn-more>a {
font-size: 10px;
}
.learn-more {
width: 97%;
}
.news-img {
flex: 0 0 auto;
width: 75%;
margin-left: 0;
margin-top: -4%;
padding-left: 17px;
}
.drug-img {
flex: 0 0 auto;
width: 75%;
margin-left: 0;
margin-top: -4%;
padding-left: 17px;
}
.overseas-img {
flex: 0 0 auto;
width: 75%;
margin-left: 70px;
margin-top: -7%;
padding-left: 17px;
}
.news-img-1 {
flex: 0 0 auto;
width: 75%;
margin-right: 13.5%;
margin-top: -2%;
}
.background-image-news {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/news/Group 131.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-faqs {
background-image: 
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/faqs/FAQ-MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-martin {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/martin/Martin Peters - MOB.jpg);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-obi {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/obi/obi - MOB.jpg);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-nishikant {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/nishikant/nishikant_mob_1x - Copy.webp);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-mrinal {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/devolika/devolika_mob_1x.webp);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-nilima {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/nilima/nilima_mob_1x.webp);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-devolika {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/mrinal/mrinal_mob_1x.webp);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-amal {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/amal/amal_mob_1x.webp);
height: 600px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-ishita {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Ishita/ishita - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-mridula {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Mridula/mridul  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-krisha {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Krisha/krishna  - MOB.jpg);
height: 620px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-aaliya {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Aaliya/aaliya  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-mansi {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Mansi/mansi  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-ashish {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Dr. Ashish/Dr. Ashish Deshpande Mobile Banner.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-saumya {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Saumya/saumya  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-alisha {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Alisha/Alisha Reuben More Mobile Banner.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-glory {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Glory/glory  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-imon {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Imon/md imon  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-pavitra {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Pavitra/pavitra  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-shubham {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Santosh/shubham  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-suman {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Suman/suman  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-nusarat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Nusarat/nusarat  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-nuzhat {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Nuzhat/nuzhat  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-pawan {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Pawan/pawan  - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.background-image-dnyaneshwar {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/Dnyaneshwar/Dnyaneshwar - MOB.jpg);
height: 664px;
z-index: 9999;
position: relative;
background-size: 100% 100%;
background-repeat: no-repeat;
background-color: white;
}
.mob-banner-div {
display: flex;
flex-direction: column;
}
.career-background {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/CONTACT US/WEB/Group 162.png);
background-size: 100% 100%;
padding: 45px 0PX 65px 0px;
height: fit-content;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.career-background img {
width: 70px;
margin-left: 20px;
}
.career-background>h1 {
font-weight: 400;
font-size: 29.13px;
line-height: 118%;
letter-spacing: 0%;
background-image: none;
width: inherit;
}
.career-para>p {
font-weight: 500;
font-size: 13px;
line-height: 123%;
letter-spacing: 0%;
padding-right: 15px;
padding-left: 15px;
}
.career-first-row {
align-items: start;
padding-top: 25px;
padding-bottom: 30px;
}
.career-text {
font-weight: 400;
font-size: 20px;
line-height: 121%;
letter-spacing: 0%;
text-align: center;
}
.career-button {
font-weight: 500;
font-size: 12.88px;
line-height: 123%;
letter-spacing: 0%;
}
.internship>h1 {
font-weight: 400;
font-size: 29.13px;
line-height: 118%;
letter-spacing: 0%;
}
.internship>p {
font-weight: 500;
font-size: 12px;
line-height: 123%;
letter-spacing: 0%;
}
.description>li {
font-weight: 500;
font-size: 12px;
line-height: 123%;
letter-spacing: 0%;
}
.internship>a {
font-weight: 600;
font-size: 13.14px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}
.career-play {
position: absolute;
top: 60px;
}
.career-accordion {
padding: 20px 20px 0px 20px;
}
.internship-section {
padding-top: 45px;
padding-bottom: 70px;
}
.admission-first-section p {
font-size: 12px;
padding: 0px 44px;
}
.admission-first-section {
padding: 25px 0px;
}
.admission-first-section img {
width: 199px;
}
.admission-points li {
font-size: 10px;
padding-bottom: 10px;
}
.admission-points {
padding-left: 30px;
font-size: 8px;
padding-right: 30px;
}
.admission-points p {
font-size: 10px;
}
.admission-contant-heading {
justify-content: start;
align-items: start;
}
.admission-contant-heading img {
padding-right: 20px;
}
.admission-background img {
padding-left: 0px;
width: 90%;
height: 177px;
}
.admission-background {
padding: 0;
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/admissions/Group 162 (2).png');
justify-content: end;
display: flex;
background-position: bottom;
height: 197px;
}
.admission-second-heading {
font-size: 18px;
}
.admission-second-heading span {
font-size: 22px;
}
.admission-second-heading img {
width: 193px;
padding-bottom: 20px;
}
.admission-second-row {
width: auto;
padding-top: 45px;
padding-bottom: 15px;
}
.admission-text h1,
.admission-text a {
font-size: 15px;
word-break: break-word;
}
.admission-text h1 {
padding: 0 15px;
margin: 0;
}
.admission-text {
font-size: 15px;
}
.admission-cta {
padding-top: 15px;
margin-bottom: 50px;
}
.admission-second-section {
font-size: 12px;
padding: 0 20px;
}
.admission-second-section span {
font-size: 22px;
}
.admission-second-section>img {
width: 193px;
padding-top: 11px;
}
.telephone-section {
padding: 45px 0px 0px 0px;
}
.admission-second-row {
padding-top: 10px;
}
.making-section {
padding-left: 40px;
padding-right: 40px;
padding-top: 10px;
}
.telephone-section {
padding: 0px;
}
.mob-telephone {
padding-top: 45px;
}
.admission-second-row {
width: 100%;
}
.video-background-admission {
padding-bottom: 60px;
padding-top: 0px;
}
.video-background-padding {
padding-bottom: 60px;
padding-top: 50px;
}
.house {
width: 50%;
}
.career-para {
padding: 0;
}
.admission-mob-section {
padding: 0;
}
.admissions-heading {
font-size: 36px;
}
.warrant-title {
font-size: 24px;
padding-top: 50px;
}
.warrant-title span {
font-size: 21px;
}
.warrant>img {
width: 142px;
}
.experts-insights {
flex-direction: column;
justify-content: center;
align-items: center;
}
.staff-insight-section {
flex-direction: column;
}
.insights-title>a {
text-align: center;
font-size: 22px;
color: #545454;
}
.insights-title {
margin: 0;
padding-top: 15px;
}
.insights-designation {
text-align: center;
font-size: 16px;
color: #545454;
}
.staff-arrow {
width: 200px;
}
.expert-para>p {
font-size: 10px;
padding: 10px 40px;
margin: 0;
}
.staff-insight-section {
padding: 10px 0px;
}
.last-mob-expert {
padding-bottom: 40px;
}
.first-mob-expert {
padding-top: 35px;
}
.pricing-mob-para {
font-size: 13px;
padding: 0 20px;
}
.warrant-para, .warrant-para>u>a, .definition-para, .warrant-list li{
font-size: 13px;
}
.gallery-para {
font-size: 13px;
text-align: center;
padding: 0 8px;
}
.heading-price h3 {
font-size: 16px;
padding-top: 0px;
padding-left: 20px;
margin: 0;
}
.premium-title {
font-size: 15px;
}
.pricing-weeks {
font-size: 20px;
}
.price-subtext {
font-size: 13px;
}
.pricing {
padding: 25px 30px;
}
.pricing-row {
padding-top: 10px;
}
.mob-arrow-price {
width: 150px;
}
.pricing-credit {
font-size: 28px;
}
.pricing-credit span {
font-size: 18px;
}
.better-title {
font-size: 15px;
}
.schedule-title {
font-size: 15px;
}
.activities-list li {
font-size: 13px;
}
.activities-first-list {
justify-content: start;
}
.activities-second-list {
justify-content: start;
display: flex;
}
.activities-row {
padding: 0 30px;
}
.activities-list,
.program-list {
padding-left: 0;
}
.pricing-addiction-title {
font-size: 15px;
margin: 0;
}
.program-list li {
font-size: 13px;
}
.mob-pricing-addict-arrow {
width: 100px;
}
.not-included-list {
padding-top: 15px;
}
.pricing-not-included {
padding-bottom: 40px;
padding-top: 0px;
}
.activities {
padding: 50px 0 30px 0px;
}
.pricing-first-heading {
padding-top: 40px;
}
.enquire-price {
padding-top: 30px;
}
.mob-refund-pricing {
padding: 25px 0px;
}
.payment-custom-mob {
flex: 0 0 auto;
width: 70%;
padding: 0;
}
.refund-custom-mob {
flex: 0 0 auto;
width: 30%;
padding-top: 40px;
}
.refund-box-para {
padding: 27px 30px !important;
margin: 0;
}
.refund-box {
margin-top: 10px;
}
.refund-last-section {
padding-bottom: 50px;
}
.icon-heading {
font-size: 10px;
padding-top: 10px;
}
.martin-mob-icon {
width: 44px;
}
.martin-box {
padding: 20px;
}
.news-arrow {
width: 55%;
justify-content: center;
display: flex;
padding-left: 27%;
}
.martin-arrow {
width: 100%;
justify-content: center;
display: flex;
padding-left: 27%;
padding-bottom: 10px;
}
.martin-mob-img {
position: absolute;
left: 65%;
margin-top: 31px;
width: max-content;
padding: 0;
}
.martin-background {
height: 313px;
}
.martin-para {
font-size: 13px; 
color: #545454;
}
.global-heading {
font-size: 22px;
}
.global-heading span {
color: #000000;
}
.mob-globe {
width: 21%;
}
.mob-globe-img {
width: 76px;
}
.global-row {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/martin/mob-globe.png);
background-repeat: no-repeat;
background-position: right;
padding-top: 250px;
padding-left: 10px;
}
.global-row-2 {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/martin/mob-globe.png);
background-repeat: no-repeat;
background-position: right;
padding-top: 50px;
padding-left: 10px;
}
.global-row-3 {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/martin/mob-globe.png);
background-repeat: no-repeat;
background-position: right;
padding-top: 150px;
padding-left: 10px;
}
.ready>p {
font-size: 10px;
}
.global-margin {
margin-top: 10%;
transform: translate(0px, 37px);
}
.martin-consult {
font-size: 15px;
padding: 4px 15px; }
.martin-consult-1 {
font-size: 15px;
padding: 4px 15px;
}
.global-background {
height: 60px;
}
.martin-heading-2 {
font-size: 22px;
}
.martin-blue-line {
width: 200px;
padding-top: 20px;
}
.martin-third-section {
padding-top: 50px;
padding-right: 30px;
padding-left: 30px;
}
.ready {
padding-top: 15px;
padding-bottom: 15px;
}
.martin-first-section {
padding: 45px 20px 20px 20px;
}
.martin-title {
padding-top: 165px;
font-size: 40px;
padding-left: 30px;
}
.martin-subtitle {
font-size: 12px;
text-align: start;
padding-left: 30px;
}
.martin-line {
width: 150px;
}
.typical h1 {
font-size: 20px;
}
.second-better {
font-size: 24px;
}
.approach-second-better {
font-size: 24px;
}
.schedule-line-img {
width: 141px;
}
.better-para {
font-size: 13px;
padding: 0px 30px;
}
.better-para-div {
padding-top: 30px;
}
#activities-title-schedule {
font-size: 20px;
}
.mob-activities-row {
padding-left: 70px;
}
.typical-para p {
font-size: 13px;
padding: 0 30px;
}
.typical-para {
padding-top: 15px;
}
.typical img {
width: 72px;
}
.better-treatment {
padding: 50px 0 0 0;
}
.mumbai-title {
font-size: 16px;
}
.mumbai-title span {
font-size: 24px;
}
.mumbai-second-title {
font-size: 16px;
margin: 0;
}
.drug-mob-arrow {
width: 100px;
}
.second-right-treatment {
padding-top: 35px;
}
.drug-para {
font-size: 13px;
margin-bottom: 0;
padding-right: 40px;
text-align: justify;
}
.mumbai-background {
width: 186px;
top: 45%;
}
.pune-background {
width: 158px;
top: 29%;
}
.pune-background-2 {
width: 158px;
top: 38%;
}
.pleasant-padding {
padding-right: 120px;
margin-bottom: 30px;
}
.mob-padding {
padding-right: 72px;
margin-bottom: 35px;
}
.drug-right-section {
padding-right: 0;
}
.closeness {
padding: 30px 0;
}
.overseas-background h1 {
font-size: 16px;
}
.overseas-background h2 {
font-size: 16px;
}
.overseas-background p {
font-size: 12px;
}
.overseas-background {
justify-content: start;
height: 190px;
padding: 30px 30px 30px 45px;
}
.drug-cta h1,
.drug-cta h1 span {
font-size: 16px;
margin: 0;
}
.drug-cta h2,
.drug-cta h2 span {
font-size: 16px;
margin: 0;
}
.drug-cta-img {
width: 35px;
}
.drug-cta {
padding: 30px 0;
}
.rehab h1 {
font-size: 14px;
padding-top: 25px;
}
.rehab h2 {
font-size: 14px;
padding-top: 25px;
}
.rehab p {
font-size: 12px;
margin-bottom: 3px;
}
.recovery-heading img {
padding: 0 10px;
width: 60px;
}
.support-heading {
padding-bottom: 0px;
}
.support-group-background {
padding-bottom: 30px;
margin-top: 40px;
}
.rehab {
padding-right: 45px;
}
.mob-left-padding {
padding-left: 45px;
}
.certificate-mob-left-padding {
padding-left: 30px;
}
.first-right-treatment {
padding-bottom: 0;
padding-top: 0;
}
.drug-text {
padding-top: 378px;
}
.certification-text {
padding-top: 430px;
}
.drug-span {
font-size: 32px;
}
.house {
padding-bottom: 10px;
}    .modal-text {
font-size: 17px;
}
.modal-right-side {
padding: 5em 1.6em !important;
}
.modal-phone::placeholder {
font-size: 21px;
padding: 0;
}
.modal-phone {
padding: 0;
}
.modal-content {
margin: 5px;
}
.icons>img {
width: 69%;
height: 65px;
}
.modal-heading {
font-size: 21px;
}
.modal-call {
font-size: 21px;
}
.drug-first-section-padding {
padding-left: 0;
}
.care-list>li {
font-size: 10px;
padding-top: 2px;
}
.care-list {
margin: 0;
}
.care-second-heading {
padding-top: 20px;
}
.care-second-section {
margin-top: 35px;
}
.care-third-section {
padding-bottom: 30px;
}
.first-certifications {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/certifications/Rectangle 299.png);
background-repeat: no-repeat;
background-position: 100% 62%;
padding-top: 70px;
background-size: 100%;
}
.first-certification-img {
padding-right: 0;
padding-left: 26px;
}
.mob-certificate-img {
width: 100%;
}
.national {
font-size: 12px;
font-family: 'Nunito sans', sans-serif;
font-weight: bold;
}
.certification-para-section {
padding-top: 20px;
}
.memberships {
font-size: 16px;
color: #545454;
}
.certification-subtext {
font-size: 22px;
}
.who-we-are-button {
font-size: 14px;
}
.faq-body {
font-size: 12px;
}
.assesment-row {
flex-direction: column;
align-items: start;
}
.assessment-btn {
font-size: 12px;
padding: 5px 15px;
}
.assessment-subtitle {
font-size: 10px;
}
.assessment-container {
padding-top: 30px;
padding-bottom: 30px;
}
.assesment-img {
width: 100%;
}
.modal-right-side-1 {
padding: 4em 3em !important;
background-size: 31%;
}
.modal-choice-btn {
font-size: 16px;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}
.expert-list {
font-size: 13px;
color:#545454;
}
.background-image-dual {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/dual/Dual Diagnosi mobile banner.jpg);
height: 661px;
}
.background-image-substance {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/substance/Substance Abuse mobile banner.jpg);
height: fit-content;
}
.background-image-digital {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/digital/DIGITAL ADDICTION mobile banner.jpg);
height: fit-content;
}
.background-image-opioid {
background-image:
url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/opioid-addiction/opioid_addiction_treatment_mob_banner_1x.webp);
height: fit-content;
}
#substance-label-right-2 {
top: -221px;
}
.navbar {
position: fixed;
top: 42px; width: 100%;
z-index: 10000; padding: 0;
} .navbar-top {
position: relative;
width: 100%;
} .navbar.scrolled .custom-nav-cta {
color: #00978d; background-color: #ffffff; }
.navbar-top::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0;
background-color: #00978d; transition: height 0.4s ease;
z-index: -1;
}
.navbar.scrolled .navbar-top::before {
height: 100%;
}
.mob-navbar-container {
display: flex;
align-items: center;
justify-content: space-evenly;
}
.navbar-toggler {
border: none;
}
.row>a {
width: fit-content;
padding: 0;
}
.martin-para-section {
padding-left: 17px;
}
.martin-row {
background-image: none;
}
.accordion-body {
font-size: 13px;
}
.faq-body {
line-height: 18.76px;
}
.banner-arrow-div>img {
width: 40%;
}
.bg-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: 100%;
height: auto;
z-index: 0;
transform: translate(-50%, -50%);
object-fit: 100% 100%;
}
.thankyou-inner {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/thank-you/thank-you-mob.png);
height: 520px;
margin: 115px 10px 10px 10px;
}
.thank-you-heading {
font-size: 31px;
}
.thank-you-para {
font-size: 11px;
}
.thank-you-nav-link {
color: white;
}
#samarpan-special {
padding-top: 0px;
}
#pune-first-section {
padding-top: 0px;
}
.faq-heading {
font-size: 34px;
text-align: center;
}
.who-we-are-faq {
padding-left: 35px;
padding-right: 35px;
}
#approach-last-section {
min-height: 200px;
}
.step-btn {
width: fit-content;
height: fit-content;
font-size: 12px;
padding: 1px 6px;
}
.modal-pagination {
top: 83%;
left: 37.2%;
}
.pagination a,
.pagination strong {
padding: 4px 8px;
font-size: 12px;
}
.staff-video {
width: 85%;
}
.admission-first-heading {
padding-top: 30px;
}
.blog-search::placeholder {
font-size: 21px !important; opacity: 1; }
.blog-search {
background-size: 7% !important;
background-position: 94% 59% !important;
}
.slider-carousel-track {
justify-content: start;
}
.home-form {
padding-bottom: 28px !important;
}
.who-we-are-faq {
padding-bottom: 45px;
}
#main-form {
transform: translate(0px, -223px);
}
.who-we-are-faq {
margin-bottom: 10px;
}
#home-mob-form {
margin-bottom: 100px;
}
.custom-carousel .carousel-item img {
height: max-content;
}
.custom-carousel .carousel-item {
height: max-content;
}
.custom-carousel-wrapper {
padding-bottom: 75px;
}
.custom-carousel-prev {
left: -32px;
background: white;
width: 18px;
height: 18px;
border-radius: 100%;
top: 34%;
}
.custom-carousel-next {
background: white;
width: 18px;
height: 18px;
border-radius: 100%;
top: 36%;
right: -31px;
}
.dnyanesh-mob {
font-size: 9px !important;
}
.carousel-inner {
height: max-content;
}
.custom-carousel .carousel-item img {
width: 100%;
height: 80%;
object-fit: contain;
}
#gallery-container {
background-size: cover !important;
}
input,
.resume-btn {
font-size: 10px;
}
.mumbai-title,
.mumbai-second-title {
padding-right: 35px;
text-align: left;
}
#index-cta {
position: absolute;
}
.about-para {
font-size: 13px;
padding: 0 30px;
}
.about-title {
font-size: 34px;
padding-top: 25px;
}
.about-arrow {
width: 100px;
padding-top: 15px;
}
.about-section {
padding: 35px 0;
}
.clinical-section {
padding: 0 0 30px 0;
}
.about-list {
font-size: 10px;
}
.about-goal-row {
margin: 20px 0;
justify-content: end;
}
.about-goals {
padding: 30px 0;
}
.about-card {
padding: 0;
width: 48.5%;
border-radius: 12px;
height: fit-content;
min-height: 130px;
justify-content: flex-start;
}
.about-goal-title {
font-size: 9px;
padding: 5px 8px;
top: -8%;
right: 33%;
}
.about-goal-heading {
font-size: 11px;
padding-top: 24px;
margin: 0;
}
.about-goal-para {
font-size: 9px;
height: fit-content;
margin: 0;
padding-top: 5px;
padding-left: 7px;
padding-right: 7px;
}
.who-we-are-second-section {
margin-top: 50px;
}
.why-choose-left {
padding-left: 4%;
}
.custom-carousel-btn {
width: 30px;
height: 20px;
}
.custom-carousel-viewport {
padding: 8px 0;
}
.custom-carousel-track {
gap: 10px;
}
}
@media (max-width: 760px) {
.custom-carousel-card {
flex: 0 0 auto;
width: 120px !important;
height: 100px !important;
min-width: 120px;
}
.custom-carousel-card img {
width: 100%;
height: 100%;
object-fit: cover;
}
.custom-card-caption {
font-size: 10px;
bottom: 4px;
left: 4px;
}
.background-image-gallery {
background-image: url(//www.samarpanrecovery.com/wp-content/themes/samarpan-theme/assets/images/gallery/Group 131.png);
height: 664px;
z-index: 9999;
position: relative;
background-size: cover;
background-repeat: no-repeat;
background-position: center top;
background-color: white;
}
.gallery-heading,
.gallery-heading-new {
font-size: 42px;
color: white;
padding-top: 430px;
margin: 0;
}
.gallery-subtext {
font-size: 18px;
}
.gallery-arrow {
width: 11%;
}
.gallery-title {
font-size: 14px;
}
.custom-carousel-btn img {
width: 16px;
}
.custom-carousel-track {
gap: 6px !important;
}
.custom-next {
right: 4px;
}
.custom-prev {
left: 4px;
z-index: 999;
}
.gallery-heading-title {
padding: 21px 0 6px 0;
}
.gallery-background {
top: 34%;
}
.gallery-last-background {
top: 22%;
}
.news-inner-heading {
font-size: 14px !important;
font-weight: normal;
}
.arrow-img-mobile {
width: 60px;
}
.news-inner-para,
.news-inner-list {
font-size: 13px !important;
line-height: 1.6;
padding: 0 10px;
}
.news-inner-list {
padding-left: 8px;
margin-bottom: 0px;
}
.img-fluid {
width: 100%;
height: auto;
display: block;
}
.news-second-image img {
height: 100%;
object-fit: cover;
}
.lightbox-img {
height: 27vh !important;
}
.currency-heading {
font-size: 22px !important;
text-align: center;
}
.currency-select,
.currency-input {
height: 50px !important;
width: 80% !important;
}
.currency-col {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.mob-swap {
margin: 0;
}
.continued-care-table tbody td:first-child {
padding-left: 14px !important;
}
.cotinuing-care-heading,
.custom-table-heading {
font-size: 16px !important;
}
.continued-care-container {
padding-top: 0 !important;
}
.custom-room-table td,
.custom-room-table th {
font-size: 11px !important;
}
.continued-table thead tr th {
font-size: 11px !important;
}
.continued-table {
padding: 0 15px !important;
}
.continued-table tbody td:first-child {
border-right: 0 !important;
}
.custom-room-table {
padding: 0 20px !important;
}
.shared-room-table {
padding-top: 40px !important;
}
.custom-room-table th,
.custom-room-table td {
padding: 10px 16px !important;
}
.icon-link>img {
width: 19px;
}
.icon-link {
width: 40px;
height: 40px;
}
.custom-nav-cta {
margin: 0;
font-size: 13px;
padding: 10px 20px;
width: max-content;
}
.card-header{
font-size: 18px;
}
.card-body {
padding: 14px
}
.assessment-question{
font-size:16px;
}
.radio-item{
font-size: 16px;
}
.radio-item input{
width: 18px;
height: 18px;
}
.progress-info{
font-size: 16px;
}
.question h3{
font-size: 16px;
}
.nav-row{
width: 100%;
flex-direction: column;
}
.btn-assessment{
width: 100%;
}
.result-stat{
font-size: 24px;
}
.next-step{
font-size: 20px;
}
.text-support-cta, .insurance-cta {
width: 100% !important;
}
.expert-title h2{
font-size: 27px !important;
}
.expert-section{
flex-direction: column !important;
}
.expert-title p,.expert-points,.our-team-para{
font-size: 12px !important;
padding-left:4px;
}
.team-heading{
font-size: 31px !important;
}
.first-team-section{
padding-bottom: 0 !important;
}
.our-team-second-section{
padding-top: 0px !important;
}
.expert-img-background{
top:58%;
}
.slider-expert-img-bg{
top:32%;
}
.multi-carousel-prev{
width: max-content !important;
padding:0 !important;
}
.multi-carousel-next{
width: max-content !important;
padding:0 !important;
justify-content: end;
}
.multi-carousel-next-img,.multi-carousel-prev-img{
width:66% !important
}
.lightbox-next {
right: 3% !important;
transform: none !important;
top: 49% !important;
}
.lightbox-prev, .lightbox-next {
position: absolute !important;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.7);
border: none;
font-size: 15px !important;
cursor: pointer;
padding: 2px 9px !important;
border-radius: 50%;
transition: 0.2s; }
.lightbox-prev {
right: 90% !important;
transform: none !important;
top: 49% !important;
}
}
.center-line {
position: fixed;
top: 50%;
left: 0;
width: 100vw;
height: 2px;
background-color: black;
transform: translateY(-50%);
z-index: 1000;
}
.vertical-line {
position: fixed;
top: 0;
left: 50%;
width: 2px;
height: 100vh;
background-color: black;
transform: translateX(-50%);
z-index: 1000;
}
.nunito-13{
font-family: 'Nunito Sans';
font-size:13px;
}
.temor-13{
font-family:'Tenor Sans';
font-size:13px;
}
.pad-t-b-50{
padding: 50px 0px;
}
.text-white-color{
color:#fff !important;
}
.ticker{
background:#00978D !important;
color:#fff !important;
position:fixed;
top:0;
left:0;
width:100%;
z-index:10001; padding:10px 0;
display:flex;
align-items:center;
}
.ticker marquee{
width:100%;
}
@media (max-width: 760px) {
.ticker{
position:fixed;
top:0;
left:0;
width:100%;
z-index:10001; }
.footer-accred-row a{
width:20%;
}
}