@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Anton&family=Archivo:ital,wght@0,100..900;1,100..900&family=Audiowide&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cinzel:wght@400..900&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Russo+One&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px;
    color: #393939;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    background: #f6f6f6;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'qeilab';
    src: url(../fonts/qeilab.otf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

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

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'qeilab';
    font-size: 75px;
    line-height: 100px;
    color: #011e30;
    font-weight: 500;
    margin: 0 0 15px;
}

h2 {
    font-family: 'qeilab';
    font-size: 50px;
    line-height: 65px;
    color: #011e30;
    font-weight: 500;
    margin: 0 0 15px;
}

h3 {
    font-family: 'qeilab';
    font-size: 30px;
    line-height: 34px;
    color: #011e30;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #011e30;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #011e30;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #011e30;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* Header Start */

header {
    padding: 15px 0;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
    background: #011e30;
    border-radius: 50px;
    padding: 10px 0;
}


.header-logo a img {
    width: 36%;
}


.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0px 12px;
    font-size: 15px;
    text-transform: capitalize;
    color: #ffffff;

}

a.meun-contact-us-btn {
    background: #fff !important;
    color: #011e30 !important;
    padding: 12px 25px !important;
    margin-left: 15px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    animation: pulse-animation 2s infinite;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

/* Header Ends */

/*Main Banner Start*/

.main-banner-sec h1 span {
    display: block;
}

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

.main-banner-button ul {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-banner-text-row {
    display: flex
;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
    margin-top: -90px;
    position: relative;
    z-index: 99999;
}

a.theme-btn-1.chg {
    background: #02b9d7;
}

.main-banner-images img {
    width: 100%;
    height: 667px;
    object-fit: cover;
    border-radius: 30px;
}

.main-banner-heading {
    position: relative;
}

.main-banner-heading-flowers {
    position: absolute;
    top: 10px;
    right: 22%;
}

.main-banner-heading-flowers img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    animation: rotate360 2s 
linear infinite;
}

.main-banner-pargf {
    width: 41%;
}

.main-banner-images {
    margin-top: 50px;
}

.theme-btn-1 {
    background: #011e30;
    padding: 13px 25px;
    border-radius: 50px;
    color: #fff !important;
    font-size: 15px;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(16 183 215);
    }

    100% {
        box-shadow: 0 0 0 20px rgb(180 9 9 / 5%);
    }
}

.main-banner-pargf p {
    width: 100%;
    margin-bottom: 0;
}


/*Main Banner Ends*/


/*About Us Start*/

.about-us-sec {
    padding: 30px 0;
}

.about-us-btn a {
    color: #011e2f;
    border: 1px solid #011e2f;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse-animation 2s infinite;
}

.for-those-recovery {
    height: 380px;
}

.about-us-heading {
    position: relative;
    margin-top: -5px;
}

.about-us-heading-flowers {
    position: absolute;
    bottom: -12px;
    right: 45%;
}

.about-us-silder-items-flowers img {
    width: 60px !important;
    height: 60px !important;
      animation: rotate360 2s  linear infinite;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(12%) saturate(243%) hue-rotate(170deg) brightness(113%) contrast(100%);
}

.about-us-silder-items-flowers {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9999;
}


.about-us-silder-items-img:before {
    content: "";
    position: absolute;
    background: #031b2ae0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transition: 0.5s;
}

.about-us-sec .slick-dots li button:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    content: '';
    text-align: center;
    opacity: 1;
    color: black;
    background: #ffffff;
}

.about-us-sec .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
    background: #011e30;
}

.about-us-sec .slick-dots li {
    width: 100%;
    height: 5px;
    margin: 0 0px;
}

.about-us-sec .slick-dots {
    bottom: inherit;
    top: -60px;
    display: flex;
    width: 150%;
    left: -435px;
}

.about-us-sec .slick-dots li button {

    width: 100%;
    height: 5px;
    padding: 0px;

}

.about-us-sec .slick-slide {

    opacity: 1.2;
}

.about-us-button {
    text-align: end;
    margin-top: -60px;
}

.about-us-heading-flowers img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: rotate360 2s  linear infinite;
}

.about-us-row {
    margin-top: 150px;
}

.about-us-silder-items label {
    color: #011e30;
    font-weight: 600;
    font-size: 16px;
}

.about-us-silder-items-img {
    margin-top: 15px;
    position: relative;
    border-radius: 20px;
}

.about-us-silder-items-pragf p {
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
    width: 97%;
    font-weight: 400;
}

.about-us-silder-items-pragf {
    position: absolute;
    bottom: 35px;
    left: 25px;
    z-index: 99;
}

.about-us-sec .slick-slide {
    margin: 0px 10px;
}

.about-us-sec .slick-active {
    opacity: 1.5;
}

.about-us-silder-items-img img {
    width: 100%;
    height: 613px;
    border-radius: 25px;
}

.about-us-silder-items-button a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
      animation: rotate360 2s  linear infinite;
}

.about-us-silder-items-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    z-index: 999;
}

.about-us-silder-items-button {
    position: absolute;
    top: 18px;
    z-index: 999;
    right: 20px;
    opacity: 0;
}

.for-those-recovery a {
    color: #011e2f;
    border: 1px solid #011e2f;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse-animation 2s infinite;
}

.about-us-main-heading h2 {
    margin-top: 55px;
    font-size: 48px;
    margin-bottom: 0;
}

.about-us-silder .slick-slide.slick-current.slick-active.slick-center .about-us-silder-items .about-us-silder-items-img:before {
    opacity: 0;
}


.about-us-silder .slick-slide.slick-current.slick-active.slick-center .about-us-silder-items .about-us-silder-items-button {
    opacity: 1;
}

.about-us-silder .slick-slide.slick-current.slick-active.slick-center .about-us-silder-items .about-us-silder-items-flowers {
    opacity: 0;
}

.about-us-silder .slick-slide.slick-current.slick-active.slick-center .about-us-silder-items .about-us-silder-items-img:after {
    opacity: 1;
}


.about-us-silder-items-img:after {
    content: "";
    position: absolute;
    background: linear-gradient(5deg, #031b29, transparent);
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    border-radius: 25px;
    left: 0;
    transition: 0.5s;
}

/*About Us Ends*/


/*Connect with Clients Start*/

.for-counselors-sec .row {
    background: #011e30;
    padding: 20px 15px;
    border-radius: 25px;
    padding-left: 25px;
}

.for-counselors-button {
    margin-top: 45px;
}

.for-counselors {
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    animation: pulse-animation 2s infinite;
}

.for-counselors-text h2 {
    color: #fff;
    margin-top: 25px;
}

.for-counselors-text p {
    color: #fff;
    font-weight: 400;
    margin-top: 25px;
}

.for-counselors-images img {
    width: 100%;
    height: 622px;
    object-fit: cover;
    border-radius: 25px;
}

.for-counselors-text label img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(107deg) brightness(108%) contrast(101%);
    width: 60px;
    height: 60px;
    object-fit: contain;
      animation: rotate360 2s  linear infinite;
}

.for-counselors-text label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.for-counselors-sec {
    margin-top: 40px;
}


/*Connect with Clients Ends */

/*Share Listen and Grow Together Ends */

.share-listen-grow-sec {
    padding: 100px 0;
}

.share-listen-forums a {
    color: #011e2f;
    border: 1px solid #011e2f;
    padding: 8px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse-animation 2s infinite;
}

.share-listen-grow-heading ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 40px;
}

.share-listen-grow-silder-items-number h2 {
    color: #02b9d7;
    margin-bottom: 0;
    line-height: 30px;
}

.share-listen-grow-silder-items-heading h2 span {
    display: block;
}

.share-listen-grow-silder-items-heading h2 {
    margin-bottom: 5px;
    font-size: 40px;
    line-height: 65px;
}

.share-listen-grow-silder-items-heading-btn {
    text-align: end;
    margin-top: 45px;
}

.share-listen-grow-silder-items-heading {
    position: relative;
}

.share-listen-grow-silder-items-flowers {
    position: absolute;
    top: 0;
    right: 0;
}

.share-listen-grow-silder-items-flowers img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.share-listen-grow-heading ul li a {
    padding: 13px 35px;
}

.share-listen-grow-heading ul li h2 {
    margin-bottom: 0;
}

.share-listen-grow-row {
    margin-top: 20px;
}

.share-listen-grow-silder-items-img img {
    width: 95%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}

.share-listen-grow-silder .slick-active {
    opacity: 1.5;
}

.share-listen-grow-silder-items {
    border-bottom: 1px solid #ffffff;
    padding: 30px 0;
}

.share-listen-grow-silder-items-heading-btn {
    display: none;
    transition: 0.5s;
}

.share-listen-grow-silder-items-heading p {
    display: none;
    transition: 0.5s;
}

.share-listen-grow-silder-items-flowers img {

    display: none;
}


.share-listen-grow-silder .slick-slide.slick-current.slick-active .share-listen-grow-silder-items-heading p {
    display: block;
    transition: 0.5s;

}

.share-listen-grow-silder .slick-slide.slick-current.slick-active .share-listen-grow-silder-items-heading-btn {
    display: block;
    transition: 0.5s;
}

.share-listen-grow-silder .slick-slide.slick-current.slick-active .share-listen-grow-silder-items-flowers img {
    display: block;
    transition: 0.5s;
      animation: rotate360 2s  linear infinite;
}


.share-listen-grow-silder .slick-slide {

    opacity: 1.2;
}

/*.share-listen-grow-silder .slick-slide {
    margin: 5px 20px;
}*/


/*Share Listen and Grow Together Ends */

/*Guides  Tools  Support for Recovery Start*/
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.guides-tools-support-resources a {
    color: #011e2f;
    border: 1px solid #011e2f;
    padding: 8px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse-animation 2s infinite;
}

.guides-tools-support-heading ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
}

.guides-tools-support-heading ul li h2 {
    margin-bottom: 0;
}

.guides-tools-support-resources-items {
    margin-top: 50px;
}

.guides-tools-support-resources-silder .slick-slide {
    margin: 0px 5px;
}

.guides-tools-support-resources-silder .slick-slide {

    opacity: 1.2;
}

.guides-tools-sup-res-items {
    margin-top: 50px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.guides-tools-sup-res-items-heading p {
    font-weight: 400;
}

.guides-tools-sup-res-items-heading h2 {
    color: #f6f6f6;
    margin-bottom: 8px;
}

.guides-tools-sup-res-items-heading {
    position: absolute;
    bottom: 0;
    padding: 50px 30px;
}

.guides-tools-sup-res-items:before {
    content: "";
    position: absolute;
    background: #031b29e8;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transition: 0.5s;
}

.guides-tools-sup-res-items-img img {
    width: 100%;
    height: 634px;
    object-fit: cover;
    border-radius: 20px;
}

.guides-tools-sup-res-items-heading h2 {
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 8px;
}

.guides-tools-sup-res-items-heading p {
    color: #f6f6f6;
    margin-bottom: 0;
}

.guides-tools-sup-res-items-flowers img {
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(5998%) hue-rotate(34deg) brightness(102%) contrast(103%);
    width: 60px;
    height: 60px;
      animation: rotate360 2s  linear infinite;
}

.guides-tools-sup-res-items-flowers {
    position: absolute;
    top: 20px;
    right: 20px;
    transition: 0.5s;
}



.guides-tools-sup-res-items-button a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
      animation: rotate360 2s  linear infinite;
}

.guides-tools-sup-res-items-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.guides-tools-sup-res-items-button {
    position: absolute;
    top: 30px;
    right: 20px;
}

.guides-tools-sup-res-items-button {
    position: absolute;
    top: 30px;
    right: 20px;
    opacity: 0;
    transition: 0.5s;
}

.guides-tools-support-resources-silder .slick-slide.slick-current.slick-active.slick-center .guides-tools-sup-res-items:before {

    background: linear-gradient(5deg, #011e30, transparent);
}


.guides-tools-support-resources-silder .slick-slide.slick-current.slick-active.slick-center .guides-tools-sup-res-items .guides-tools-sup-res-items-flowers {
    opacity: 0;

}

.guides-tools-support-resources-silder .slick-slide.slick-current.slick-active.slick-center .guides-tools-sup-res-items .guides-tools-sup-res-items-button {
    opacity: 1;

}

/*Guides  Tools  Support for Recovery Ends*/


/*Footer Start*/

.guides-tools-support-sec {
    padding: 30px 0 100px;
}

.footer-sec {
    background-image: url(../images/footer-back.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 50px 0 40px;
    border-radius: 20px;
}

.footer-send-email-box form input {
    width: 100%;
    height: 80px;
    background: no-repeat;
    border: none;
    border-bottom: 2px solid #475660;
    text-transform: capitalize;
    color: #fff;
    font-size: 17px;
}

.footer-send-email-button button {
    border: none !important;
    background: none !important;
}

.footer-send-email-button button img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    animation: rotate360 8s 
linear infinite;
}

.footer-send-email-box form {
    position: relative;
}


.footer-send-email-button {
    position: absolute;
    top: 0;
    right: 0;
}

.footer-send-email-box form input::placeholder {
    color: #fff;
}

.footer-send-email-box {
    margin-top: 45px;
}

.footer-bottom-row-link ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-row {
    margin-top: 70px;
    border-bottom: 1px solid #4d5d65;
    padding: 25px 0;
}

.footer-bottom-social-link ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.footer-bottom-social-link ul li a:hover {
    background: #fff;
    color: #061824;
    transform: rotate(360deg);
    transition: 0.5s;
}

.footer-copy-right-row p {
    margin-bottom: 0;
    color: #f9f9f9;
    font-weight: 500;
}

.footer-copy-right-row {
    padding-top: 25px;
}

.footer-bottom-social-link ul li a {
    color: #ffffff;
    border: 1px solid #ffffff;
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.5s;
    animation: pulse-animation 2s infinite;
}

.footer-bottom-row-link ul li a {
    color: #ffffff;
}

.footer-logo-heading h2 {
    font-size: 30px;
    color: #fff;
    line-height: 45px;
    margin-top: 35px;
    width: 95%;
}

.footer-logo a img {
    width: 18%;
}

.footer-loction h2 {
    color: #f9f9f9;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 12px;
    line-height: 30px;
    text-transform: uppercase;
}

.footer-loction.chg.margin {
    margin-left: 140px;
}

.footer-loction {
    margin-left: 20px;
}

.footer-loction.margin {
    margin-left: 140px;
}

.footer-loction a {
    color: #f9f9f9;
}

.footer-loction.chg {
    margin-top: 80px;
}

/*Footer Ends*/



/* Innner Pages Start  */

.main-banner-heading h1 span img {
    animation: rotate360 2s 
linear infinite;
    width: 62px;
    height: 62px;
    object-fit: contain;
    margin-left: 15px;
}

.about-us-sec.inner .about-us-heading-flowers {

    bottom: 8px;
 
}
h1.innerTitle {
  display: inline-block;
  margin: 0;
}

.main-banner-sec h1.innerTitle span {
  display: inline-block;
}

.innerbanner .main-banner-images img {
  height: 500px;
}

.innerbanner .main-banner-images {
  margin-top: 30px;
}

section.for-about-couns {
  padding-bottom: 100px;
}

section.resource-detail {
  padding-bottom: 100px;
}

/* forum page start  */

section.forum-detail {
  position: relative;
  padding: 80px 0 100px;
}

.form-right-col {
  padding-left: 24px;
}

.form-right-col .detail-title {
  display: inline-block;
  position: relative;
  margin: 16px 0 20px;
}

.form-right-col .detail-title h2 {
  width: 80%;
  margin: 0px;
}

.form-right-col .detail-title img {
    display: inline-block;
    position: absolute;
    right: 27%;
    top: 5px;
    animation: rotate360 2s 
linear infinite;
}

.form-left-col {
  position: relative;
}

.form-left-col img {
  width: 100%;
  object-fit: cover;
}

.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-size: 30px;
    font-family: "qeilab";
    margin: 0;
    display: flex !important
;
    justify-content: center !important;
    align-items: center !important;
}

.comment-box {
  background-color: #dde0e2;
  padding: 10px 10px 32px;
  border-radius: 20px;
}

.posting-box {
  position: relative;
  margin-top: 80px;
}

.comment-box button.theme-btn-1.chg {
  border: 0px;
  width: 14%;
  font-size: 15px;
  padding: 10px 25px;
  background: #02b9d7;
}

.comment-box textarea.form-control {
  border-radius: 15px !important;
  resize: unset;
  padding: 20px;
  font-weight: 500;
}

.about-us-heading.foru-head {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.about-us-heading.foru-head .about-us-button {
  margin: 0;
}

section.form-listin-pg {
  position: relative;
}

section.form-listin-pg .share-listen-grow-silder-items {
  position: relative;
  margin: 0px 0;
  padding: 30px 0;
}

section.form-listin-pg
  .share-listen-grow-silder-items
  .share-listen-grow-silder-items-heading {
  position: relative !important;
}

section.form-listin-pg
  .share-listen-grow-silder-items:hover
  .share-listen-grow-silder-items-heading {
  display: block;
}

section.form-listin-pg
  .share-listen-grow-silder-items:hover
  .share-listen-grow-silder-items-heading-btn {
  display: block;
}

section.form-listin-pg
  .share-listen-grow-silder-items:hover
  .share-listen-grow-silder-items-flowers
  img {
  display: block;
}

section.form-listin-pg
  .share-listen-grow-silder-items:hover
  .share-listen-grow-silder-items-heading
  p {
  display: block;
}

section.counselor-page {
  padding-bottom: 80px;
}

section.contac-page-inner {
  padding: 30px 0 80px;
}

.cnt-lft-col {
  position: relative;
  padding-right: 24px;
}

.cnt-lft-col h2 {
  font-size: 40px;
  line-height: 50px;
  padding-bottom: 18px;
}

.cnt-lft-col form {
  position: relative;
}

.cnt-lft-col form input,
.cnt-lft-col form textarea {
  width: 100%;
  display: inline-block;
  padding: 14px 24px;
  border-radius: 45px;
  font-weight: 500;
  border: 0px;
  background-color: #fff;
  margin-bottom: 24px;
  font-size: 14px;
  color: #000;
}

.cnt-lft-col form textarea {
    height: 190px;
    resize: unset;
    border-radius: 20px !important;
    padding: 25px 25px !important;
}

.about-us-row.inn.inner .about-us-silder-items.inner:hover .about-us-silder-items-flowers {
    opacity: 0;
    transition: 0.5s;
}

.about-us-silder-items.inner:hover .about-us-silder-items-img:before {
    opacity: 0;
    transition: 0.5s;
}

.about-us-row.inn.inner .about-us-silder-items.inner:hover .about-us-silder-items-button {
    opacity: 1;
    transition: 0.5s;
}

.cnt-lft-col form input,
.cnt-lft-col form textarea {
  width: 100%;
  display: inline-block;
  padding: 14px 24px;
  border-radius: 45px;
  font-weight: 500;
  border: 0px;
  background-color: #fff;
  margin-bottom: 24px;
  font-size: 14px;
  color: #000;
}

.cnt-lft-col form input::placeholder,
.cnt-lft-col form textarea::placeholder {
  color: #000;
}

.formsend-btn {
  display: inline-block;
  margin-top: 10px;
}

.formsend-btn button {
  width: 100%;
  text-align: center;
  border-radius: 24px;
  padding: 12px 20px;
  border: 0px;
  background: #011e30;
  color: #fff;
  transition: 0.2s;
  font-family: "poppins";
}

.formsend-btn button:hover {
  background: #fff;
  color: #011e30;
}

.cnt-right-col {
  position: relative;
  padding-left: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}
.about-us-row.inn {
    margin-top: 0px;
    padding-bottom: 40px;
}

.about-us-row.inn .about-us-main-heading h2 span {
    display: block;
    line-height: 64px;
}

.about-us-main-heading.wow.fadeInDown {
    margin-bottom: 30px;
}

.guides-tools-sup-res-items.inner:hover .guides-tools-sup-res-items-flowers {
    display: none !important;
    transition: 0.5s;
}
.guides-tools-sup-res-items.inner:hover .guides-tools-sup-res-items-button {
    opacity: 1;
    transition: 0.5s;
}

.guides-tools-sup-res-items.inner:hover:before {
    display: none !important;
     transition: 0.5s;
     background: linear-gradient(5deg, #031b29, transparent);
 }





/* Innner Pages End */

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
    
    
.menuSec  .col-lg-3.col-md-12.col-12 {
    width: 15%;
}

.header-logo a img {
    width: 100%;
    height: auto;
}
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    width: 85%;
}


     .footer-bottom-row {
    margin-top: 30px;
    border-bottom: 1px solid #4d5d65;
    padding: 25px 0;
}           
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    width: 85%;
}
.main-banner-text-row {
    margin: 0;
}
.for-those-recovery {
    height: 180px;
}
.about-us-silder-items-img img {
    width: 100%;
    height: 470px;
    border-radius: 25px;
}
.for-counselors-images img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
}
.theme-btn-1 {
    width: max-content;
    display: block;
}
.guides-tools-sup-res-items-img img {
    height: 530px;
}
.guides-tools-sup-res-items-heading h2 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.main-banner-heading-flowers {
    position: absolute;
    top: 10px;
    right: 10%;
}
.about-us-button {
    text-align: end;
    margin-top: 0;
}
.about-us-main-heading h2 {
    margin: 0;
    font-size: 35px;
}
.footer-loction.margin {
    margin-left: 40px;
}
.footer-loction.chg.margin {
    margin-left: 40px;
}
.footer-send-email-box form input {
    margin: 0 0 10px;
}
.guides-tools-sup-res-items-heading {
    padding: 20px;
}   
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
.guides-tools-sup-res-items-heading {
    padding: 20px;
}    
 .share-listen-grow-silder-items-flowers img {
    width: 30px;
    height: 60px;
    object-fit: contain;
}
 .footer-bottom-row {
    margin-top: 30px;
    border-bottom: 1px solid #4d5d65;
    padding: 25px 0;
}           
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    width: 85%;
}
.main-banner-text-row {
    margin: 0;
}
.for-those-recovery {
    height: 180px;
}
.about-us-silder-items-img img {
    width: 100%;
    height: 470px;
    border-radius: 25px;
}
.for-counselors-images img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
}
.theme-btn-1 {
    width: max-content;
    display: block;
}
.guides-tools-sup-res-items-img img {
    height: 530px;
}
.guides-tools-sup-res-items-heading h2 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.main-banner-heading-flowers {
    position: absolute;
    top: 10px;
    right: 10%;
}
.about-us-button {
    text-align: end;
    margin-top: 0;
}
.about-us-main-heading h2 {
    margin: 0;
    font-size: 35px;
}
.footer-loction.margin {
    margin-left: 40px;
}
.footer-loction.chg.margin {
    margin-left: 40px;
}
.footer-send-email-box form input {
    margin: 0 0 10px;
}
    
    
    
    .about-us-main-heading.wow.fadeInDown {
    margin-bottom: 0;
}



.menuSec  .col-lg-3.col-md-12.col-12 {
    width: 15%;
}

.header-logo a img {
    width: 100%;
    height: auto;
}
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    width: 85%;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    
    .footer-logo-heading h2 {
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    margin-top: 10px;
    width: 103%;
}
              
    .about-us-main-heading.wow.fadeInDown {
    margin-bottom: 0;
}
.menuSec  .col-lg-3.col-md-12.col-12 {
    width: 10%;
}

.header-logo a img {
    width: 100%;
    height: auto;
}
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    width: 90%;
}
.footer-loction a {
    color: #f9f9f9;
    font-size: 15px;
}
.menuSec ul li a {
    font-size: 14px;
    padding: 0 8px;
}
.about-us-sec.inner .about-us-heading-flowers {
    bottom: -12px;
    right: 10%;
}
.footer-loction {
    margin-left: 0;
}

ul#menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 63px;
    line-height: 1.2;
}

.main-banner-sec h1 span {
    display: unset;
}

.main-banner-text-row {
    margin: 0;
}

.main-banner-heading-flowers {
    right: 10%;
}

.main-banner-pargf {
    width: 48%;
}

.main-banner-images img {
    height: 500px;
}

.about-us-btn a {
    padding: 5px 10px;
}

.about-us-heading h2 {
    line-height: 1.3;
    font-size: 27px;
}

.about-us-button {
    margin: 0;
}
.for-those-recovery {
    height: auto;
}

.about-us-silder-items-img img {
    height: 350px;
}

.about-us-main-heading h2 {
    font-size: 25px;
    line-height: 1.2;
}

.theme-btn-1 {
    padding: 10px 16px;
    display: block;
    width: fit-content;
}

.for-counselors-text h2 {
    font-size: 25px;
    line-height: 1.2;
}

.for-counselors-images img {
    height: 400px;
}

.share-listen-grow-heading ul li a {
    width: max-content;
}

.share-listen-grow-silder-items-heading h2 {
    font-size: 25px;
    line-height: 1.2;
}

.share-listen-grow-sec {
    padding: 50px 0;
}

.guides-tools-support-heading ul li a {
    width: max-content;
}

.guides-tools-support-heading ul li h2 {
    font-size: 25px;
}

.guides-tools-sup-res-items-img img {
    height: 350px;
}

.guides-tools-sup-res-items-heading {
    padding: 10px;
}

.guides-tools-sup-res-items-heading {
    font-size: 20px;
    line-height: 1.2;
}

.guides-tools-sup-res-items-heading h2 {
    font-size: 18px;
    line-height: 1.3;
}
.for-counselors-button {
    margin-top: 0px;
}
.footer-loction.margin {
    margin-left: 0;
}
.footer-loction.chg.margin {
    margin-left: 0;
}
.about-us-silder-items-pragf {
    position: absolute;
    bottom: 35px;
    left: 15px !important;
    z-index: 99;
}
.footer-send-email-box form input {
    height: 60px;
    border: 2px solid #475660;
    margin: 0 0 10px 0;
}.footer-send-email-button button img {
    width: 25px;
    height: 25px;
}
.footer-send-email-button {
    top: 20px;
    right: 10px;
}
.footer-send-email-box {
    margin: 0;
}
.footer-bottom-social-link ul {
    justify-content: center;
    margin: 20px 0 0;
}

.footer-copy-right-row p {
    text-align: center;
}

.footer-bottom-row-link ul li a {
    font-size: 13px;
}
.footer-bottom-row {
    margin: 0;
}

.footer-sec{
    padding-bottom: 0;
}
section.forum-detail .wpb_column.vc_column_container.vc_col-sm-8 {
    width: 100%;
}

section.forum-detail .wpb_column.vc_column_container.vc_col-sm-4 {
    width: 50%;
    margin: 0 auto 20px auto;
}
section.forum-detail .form-right-col {
    padding-left: 0;
}


  
.cnt-lft-col {
    padding: 0;
} 
.cnt-lft-col form input, .cnt-lft-col form textarea {
    width: 100%;
    display: inline-block;
    padding: 14px 14px;
    border-radius: 45px;
    font-weight: 500;
    border: 0px;
    background-color: #fff;
    margin-bottom: 24px;
    font-size: 14px;
    color: #000;
}

.cnt-right-col {
    padding: 0;
}
.form-right-col {
    padding-left: 0;
}



    
body.postid-77 .wpb_column.vc_column_container.vc_col-sm-4 {
    width: 100%;
}

body.postid-77 .wpb_single_image.wpb_content_element.vc_align_left.form-left-col {
    margin: 0 auto;
    width: 40%;
}

body.postid-77 .wpb_column.vc_column_container.vc_col-sm-8 {
    width: 100%;
}

body.postid-77 .wpb_column.vc_column_container.vc_col-sm-11 {
    width: 80%;
}

body.postid-77 .wpb_column.vc_column_container.vc_col-sm-1 {
    width: 20%;
}

.form-right-col .detail-title img {
    display: inline-block;
    position: absolute;
    right: 7%;
    top: 5px;
    animation: rotate360 2s 
linear infinite;
}

    
.vc_custom_1760609894718 .wpb_column.vc_column_container.vc_col-sm-11 {
    width: 85%;
}

.vc_custom_1760609894718 .wpb_column.vc_column_container.vc_col-sm-1 {
    width: 15%;
}
input#submit {
    border: 0px;
    width: fit-content !important;
    font-size: 15px;
    padding: 10px 25px;
    background: #02b9d7;
    animation: pulse-animation 2s infinite;
    border-radius: 50px;
    color: white;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    input#submit {
    border: 0px;
    width: fit-content !important;
    font-size: 15px;
    padding: 10px 25px;
    background: #02b9d7;
    animation: pulse-animation 2s infinite;
    border-radius: 50px;
    color: white;
}
    
    
.vc_custom_1760609894718 .wpb_column.vc_column_container.vc_col-sm-11 {
    width: 85%;
}

.vc_custom_1760609894718 .wpb_column.vc_column_container.vc_col-sm-1 {
    width: 15%;
}


    .header-logo a img {
    width: 16%;
    margin: 0 auto 10px auto;
    display: block;
    height: auto;
    object-fit: cover;
}
    
.about-us-heading-flowers {
    position: absolute;
    bottom: 41px;
    right: 40%;
}    
    
body.postid-77 .wpb_column.vc_column_container.vc_col-sm-4 {
    width: 100%;
}

body.postid-77 .wpb_single_image.wpb_content_element.vc_align_left.form-left-col {
    margin: 0 auto;
    width: 40%;
}

body.postid-77 .wpb_column.vc_column_container.vc_col-sm-8 {
    width: 100%;
}

body.postid-77 .wpb_column.vc_column_container.vc_col-sm-11 {
    width: 80%;
}

body.postid-77 .wpb_column.vc_column_container.vc_col-sm-1 {
    width: 20%;
}

.form-right-col .detail-title img {
    display: inline-block;
    position: absolute;
    right: 7%;
    top: 5px;
    animation: rotate360 2s 
linear infinite;
}






   .form-right-col {
    padding-left: 0;
} 
.cnt-lft-col {
    padding: 0;
} 
.cnt-lft-col form input, .cnt-lft-col form textarea {
    width: 100%;
    display: inline-block;
    padding: 14px 14px;
    border-radius: 45px;
    font-weight: 500;
    border: 0px;
    background-color: #fff;
    margin-bottom: 24px;
    font-size: 14px;
    color: #000;
}

.cnt-right-col {
    padding: 0;
}
section.forum-detail .wpb_column.vc_column_container.vc_col-sm-8 {
    width: 100%;
}

section.forum-detail .wpb_column.vc_column_container.vc_col-sm-4 {
    width: 50%;
    margin: 0 auto 20px auto;
}
section.forum-detail .form-right-col {
    padding-left: 0;
}
.footer-loction {
    margin: 20px 0 0 0 !important;
}
.footer-loction a {
    color: #f9f9f9;
}
.innerbanner .main-banner-images img {
    height: 300px;
}
.about-us-sec.inner .about-us-heading-flowers {
    bottom: -16px;
    right: 35%;
} 
    
.menuSec ul li:last-child a{
    padding: 10px 13px   !important;
    font-size: 10px !important;
}    
    
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    width: 100%;
}

.menuSec ul li a {
    font-size: 13px;
    padding: 0 4px;
}

ul#menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 63px;
    line-height: 1.2;
}

.main-banner-sec h1 span {
    display: unset;
}

.main-banner-text-row {
    margin: 0;
}

.main-banner-heading-flowers {
    right: 10%;
}

.main-banner-pargf {
    width: 48%;
}

.main-banner-images img {
    height: 500px;
}

.about-us-btn a {
    padding: 5px 10px;
}

.about-us-heading h2 {
    line-height: 1.3;
    font-size: 27px;
}

.about-us-button {
    margin: 0;
}
.for-those-recovery {
    height: auto;
}

.about-us-silder-items-img img {
    height: 350px;
}

.about-us-main-heading h2 {
    font-size: 25px;
    line-height: 1.2;
}

.theme-btn-1 {
    padding: 10px 16px;
    display: block;
    width: fit-content;
    font-size: 12px;
}

.for-counselors-text h2 {
    font-size: 25px;
    line-height: 1.2;
}

.for-counselors-images img {
    height: 400px;
}

.share-listen-grow-heading ul li a {
    width: max-content;
}

.share-listen-grow-silder-items-heading h2 {
    font-size: 25px;
    line-height: 1.2;
}

.share-listen-grow-sec {
    padding: 50px 0;
}

.guides-tools-support-heading ul li a {
    width: max-content;
}

.guides-tools-support-heading ul li h2 {
    font-size: 25px;
}

.guides-tools-sup-res-items-img img {
    height: 350px;
}

.guides-tools-sup-res-items-heading {
    padding: 10px;
}

.guides-tools-sup-res-items-heading {
    font-size: 20px;
    line-height: 1.2;
}

.guides-tools-sup-res-items-heading h2 {
    font-size: 17px;
    line-height: 1.3;
}
.guides-tools-sup-res-items-heading p {
    font-size: 13px !important;
}
.for-counselors-button {
    margin-top: 0px;
}
.footer-loction.margin {
    margin-left: 0;
}
.footer-loction.chg.margin {
    margin-left: 0;
}
.about-us-silder-items-pragf {
    position: absolute;
    bottom: 35px;
    left: 15px !important;
    z-index: 99;
}
.footer-send-email-box form input {
    height: 60px;
    border: 2px solid #475660;
    margin: 0 0 10px 0;
}.footer-send-email-button button img {
    width: 25px;
    height: 25px;
}
.footer-send-email-button {
    top: 20px;
    right: 10px;
}
.footer-send-email-box {
    margin: 0;
}
.footer-bottom-social-link ul {
    justify-content: center;
    margin: 20px 0 0;
}

.footer-copy-right-row p {
    text-align: center;
}

.footer-bottom-row-link ul li a {
    font-size: 13px;
}
.footer-bottom-row {
    margin: 0;
}

.footer-sec{
    padding-bottom: 0;
}

    
    .about-us-main-heading.wow.fadeInDown {
    margin-bottom: 0;
}

}


@media only screen and (min-width: 520px) and (max-width:767px) {
    
    

ul#menu li {
    display: none;
}

ul#menu li:last-child {
    display: block;
}

.slicknav_menu li:last-child {
    display: none;
}
.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
    background: #011e30;
    border-radius: 50px;
    padding: 10px 13px 10px 0px;
    width: fit-content;
    margin: 9px auto;
}
.header-logo {
    justify-content: center;
    display: flex;
}

.header-logo a img {
    width: 150px;
    object-fit: cover;
    height: auto;
}
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    display: block !important;
}
.slicknav_nav a:hover {
    background: #011e30;
    color: #fff;
}


.vc_single_image-wrapper.vc_box_border_grey {
    margin: 0 0 20px 0;
}    
    .about-us-main-heading.wow.fadeInDown {
    margin-bottom: 0;
}
    .main-banner-sec h1 span {
        display: unset;
    }
    .share-listen-grow-silder-items-img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
    }
    .about-us-sec .slick-dots {
        display: none !important;
    }

    h1 {
        font-size: 52px;
        line-height: 1.2
    }

    .main-banner-pargf {
        width: 100%!important
    }

    .main-banner-button ul {
        display: flex;
        align-items: center;
        gap: 38px;
        flex-wrap: wrap
    }

    .main-banner-heading-flowers {
        position: absolute;
        top: -60px;
        right: 2%
    }

    .main-banner-text-row {
        flex-wrap: wrap!important;
        margin: 0;
        justify-content: center;
    }

    .main-banner-images img {
        height: 320px;
    }

    h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    html {
        overflow-x: hidden
    }

    .main-banner-heading-flowers img {
        width: 30px
    }

    .about-us-button {
        margin: 30px 0 0 0;
        text-align: left
    }

    .about-us-heading-flowers {
        bottom: unset;
        top: -70px;
        right: 10%
    }

    .about-us-row {
        margin-top: 40px
    }

    .for-those-recovery {
        height: auto
    }

    .about-us-main-heading h2 {
        font-size: 31px;
        margin: 20px 0 0 0;
    }

    .about-us-silder-items-img img {
        height: 400px
    }

    .for-counselors-images img {
        height: 450px;
        margin: 20px 0 0 0
    }

    a.theme-btn-1 {
        display: block;
        width: fit-content
    }

    .for-counselors-sec .row {
        padding: 10px 0
    }

    .share-listen-grow-heading ul {
        flex-wrap: wrap;
        gap: 20px;
    }

    .guides-tools-support-heading ul {
        flex-wrap: wrap
    }

    .guides-tools-sup-res-items-img img {
        height: 450px;
        object-fit: cover
    }

    .guides-tools-sup-res-items-heading h2 {
        line-height: 1.2;
        font-size: 22px
    }

    .footer-sec {
        border-radius: 0;
        background-position: top
    }

    .footer-send-email-button button img {
        width: 25px;
        height: 25px
    }

    .footer-send-email-button {
        top: 20px;
        right: 10px
    }

    .footer-loction.chg {
        margin-top: 20px
    }

    .footer-loction.margin {
        margin-left: 0
    }

    .footer-loction.chg.margin {
        margin-left: 0
    }

    .footer-loction {
        margin-left: 0;
        margin-top: 20px
    }

    .footer-bottom-row {
        margin-top: 20px;
        border-bottom: 1px solid #4d5d65;
        padding: 25px 0
    }

    .guides-tools-sup-res-items-heading {
        padding: 20px 10px
    }

    .footer-send-email-box form input {
        height: 60px;
        border: 2px solid #475660;
        margin: 0 0 10px 0
    }

    .footer-sec {
        border-radius: 0;
        background-position: top
    }

    .footer-send-email-button button img {
        width: 25px;
        height: 25px
    }

    .footer-send-email-button {
        top: 20px;
        right: 10px
    }

    .footer-bottom-row-link ul {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .footer-bottom-social-link ul {
        margin: 20px 0 0 0;
        justify-content: center;
    }

    .footer-copy-right-row p {
        text-align: center
    }

    .footer-loction h2 {
        margin-bottom: 2px
    }

    .footer-logo-heading h2 {
        font-size: 22px;
        color: #fff;
        line-height: 1.5;
        margin-top: 35px;
        width: 100%
    }

    .share-listen-grow-silder .slick-slide {
        margin: 0
    }

    .share-listen-grow-silder-items-heading h2 {
        font-size: 24px;
        line-height: 1.2
    }

    .share-listen-grow-silder-items-number {
        margin: 20px 0 0 0
    }

    .share-listen-grow-silder-items-flowers {
        top: -40px
    }

    .share-listen-grow-silder .slick-slide.slick-current.slick-active .share-listen-grow-silder-items-flowers img {
        width: 20px
    }

    .share-listen-grow-silder-items-heading-btn {
        margin-top: 10px
    }
    
   section.forum-detail .wpb_text_column.wpb_content_element.form-right-col {
    padding: 20px 0 0 10px;
}

section.forum-detail .wpb_text_column.wpb_content_element.recove-btm-txt.mt-4.pt-4 {
        padding: 20px 0 0 10px;
}
section.forum-detail .wpb_single_image.vc_align_left {
    text-align: center;
}

.share-listen-grow-heading ul {
    flex-wrap: wrap;
    gap: 20px;
}
.share-listen-grow-silder-items-heading h2 {
    font-size: 25px;
    line-height: 1.3;
}
.share-listen-grow-silder-items-flowers img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.share-listen-grow-silder-items-flowers {
    position: absolute;
    top: 20px;
    right: 0;
}
.cnt-right-col {
    padding: 10px;
}    

.recovery-detial-page .vc_row {
    margin-left: 0;
    margin-right: 0;
} 
input#submit {
    border: 0px;
    width: fit-content !important;
    font-size: 15px;
    padding: 10px 25px;
    background: #02b9d7;
    animation: pulse-animation 2s infinite;
    border-radius: 50px;
    color: white;
}
}


@media only screen and (min-width: 300px) and (max-width: 519px) {
    
input#submit {
    border: 0px;
    width: fit-content !important;
    font-size: 15px;
    padding: 10px 25px;
    background: #02b9d7;
    animation: pulse-animation 2s infinite;
    border-radius: 50px;
    color: white;
}
.recovery-detial-page .vc_row {
    margin-left: 0;
    margin-right: 0;
}    
    ul.slick-dots {
    display: none !important;
}
.cnt-right-col {
    padding: 10px;
}    
.share-listen-grow-heading ul {
    flex-wrap: wrap;
    gap: 20px;
}
.share-listen-grow-silder-items-heading h2 {
    font-size: 25px;
    line-height: 1.3;
}
.share-listen-grow-silder-items-flowers img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.share-listen-grow-silder-items-flowers {
    position: absolute;
    top: 20px;
    right: 0;
}
    .wpb_text_column.wpb_content_element.form-right-col {
    padding: 20px 0 0 10px;
}

.wpb_text_column.wpb_content_element.recove-btm-txt.mt-4.pt-4 {
        padding: 20px 0 0 10px;
}
    h1 {
        font-size: 40px;
        line-height: 1.2;
    }
    .main-banner-pargf {
        width: 100% !important;
    }
    .main-banner-button ul {
        display: flex;
        align-items: center;
        gap: 38px;
        flex-wrap: wrap;
    }
    .main-banner-heading-flowers {
        position: absolute;
        top: -60px;
        right: 2%;
    }
    .main-banner-text-row {
        flex-wrap: wrap !important;
        margin: 0;
    }
.main-banner-images img {
    height: 180px;
}
    h2 {
    font-size: 25px;
    line-height: 1.2;
}

html {
    overflow-x: hidden;
}

.main-banner-heading-flowers img {
    width: 30px;
}

.about-us-button {
    margin: 30px 0 0 0;
    text-align: left;
}

.about-us-heading-flowers {
    bottom: unset;
    top: -70px;
    right: 10%;
}

.about-us-row {
    margin-top: 40px;
}

.for-those-recovery {
    height: auto;
}

.about-us-main-heading h2 {
    font-size: 31px;
}

.about-us-silder-items-img img {
    height: 400px;
}

.for-counselors-images img {
    height: 350px;
    margin: 20px 0 0 0;
}

a.theme-btn-1 {
    display: block;
    width: fit-content;
}

.for-counselors-sec .row {
    padding: 10px 0;
}

.share-listen-grow-heading ul {
    flex-wrap: wrap;
}
.guides-tools-support-heading ul {
    flex-wrap: wrap;
}

.guides-tools-sup-res-items-img img {
    height: 450px;
    object-fit: cover;
}

.guides-tools-sup-res-items-heading h2 {
    line-height: 1.2;
    font-size: 22px;
}

.footer-sec {
    border-radius: 0;
    background-position: top;
}

.footer-send-email-button button img {
    width: 25px;
    height: 25px;
}

.footer-send-email-button {
    top: 20px;
    right: 10px;
}
.footer-loction.chg {
    margin-top: 20px;
}
.footer-loction.margin {
    margin-left: 0;
}
.footer-loction.chg.margin {
    margin-left: 0;
}
.footer-loction {
    margin-left: 0;
    margin-top: 20px;
}
.footer-bottom-row {
    margin-top: 20px;
    border-bottom: 1px solid #4d5d65;
    padding: 25px 0;
}

.guides-tools-sup-res-items-heading {
    padding: 20px 10px;
}
.footer-send-email-box form input {
    height: 60px;
    border: 2px solid #475660;
    margin: 0 0 10px 0px;
}
.footer-sec {
    border-radius: 0;
    background-position: top;
}

.footer-send-email-button button img {
    width: 25px;
    height: 25px;
}

.footer-send-email-button {
    top: 20px;
    right: 10px;
}

.footer-bottom-row-link ul {
    flex-wrap: wrap;
    gap: 19px;
    justify-content: start;
}

.footer-bottom-social-link ul {
    margin: 20px 0 0 0;
    justify-content: start;
}

.footer-copy-right-row p {
    text-align: center;
}
.footer-loction h2 {
    margin-bottom: 2px;
}
.footer-logo-heading h2 {
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    margin-top: 35px;
    width: 100%;
}
.share-listen-grow-silder .slick-slide {
    margin: 0;
}
.share-listen-grow-silder-items-heading h2 {
    font-size: 24px;
    line-height: 1.2;
}

.share-listen-grow-silder-items-number {
    margin: 20px 0 0 0;
}

.share-listen-grow-silder-items-flowers {
    top: -40px;
}

.share-listen-grow-silder .slick-slide.slick-current.slick-active .share-listen-grow-silder-items-flowers img {
    width: 20px;
}

.share-listen-grow-silder-items-heading-btn {
    margin-top: 10px;
}

.innerbanner .main-banner-images img {
    height: 300px;
}



.about-us-main-heading.wow.fadeInDown {
    margin-bottom: 0;
}
ul#menu li {
    display: none;
}

ul#menu li:last-child {
    display: block;
}

.slicknav_menu li:last-child {
    display: none;
}
.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
    background: #011e30;
    border-radius: 50px;
    padding: 10px 13px 10px 0px;
    width: fit-content;
    margin: 9px auto;
}
.header-logo {
    justify-content: center;
    display: flex;
}

.header-logo a img {
    width: 150px;
    object-fit: cover;
    height: auto;
}
.menuSec .col-lg-9.col-md-9.col-12.d-none.d-md-block {
    display: block !important;
}
.slicknav_nav a:hover {
    background: #011e30;
    color: #fff;
}
}

@media only screen and (min-width: 0px) and (max-width: 299px) {}


html {
    overflow-x: hidden;
}

