@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

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 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'montserrat-medium';
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'cinzel-bold';
    src: url(../font/Cinzel-Bold.otf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'montserrat-medium';
    src: url(../font/Montserrat-Medium.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'montserrat-semibold';
    src: url(../font/Montserrat-SemiBold.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 4px 4px 4px 12px;
    border: unset;
    border-radius: 50px;
    color: #ffffff;
    z-index: 1;
    background: #202534;
    position: relative;
    font-size: 15px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    height: 100%;
    width: 0;
    border-radius: 50px;
    background-color: #6576ab;
    z-index: -1;
    transition: all 250ms;
    border: 1px solid #fff;
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
    left: 0px;
}

.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: 'cinzel-bold';
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 27px;
}

h2 {
    font-family: 'cinzel-bold';
    font-size: 45px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'cinzel-bold';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'cinzel-bold';
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'montserrat-medium';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 8px;
}

h6 {
    font-family: 'montserrat-semibold';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0px 0 6px;
}

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 css start */

.menuSec {
    position: absolute;
    padding: 30px 0px 0px;
    width: 100%;
    z-index: 1;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0px 0px;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    background: #fff;
    border-radius: 50px;
}

.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;
    color: #000000;
    padding: 17px 10px;
    font-size: 14px;
    font-family: 'montserrat-medium';
    font-weight: 600;
    text-transform: uppercase;
}

/* .menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
} */



.menuSec ul li:last-child a:after {
    display: none;
}

.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: #6d7eb1;
}

.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 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;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */



.banner-video-sd .video-container {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  top: 50%;
  left: 50%;
}

.banner-video-sd video {
  display: block;
  width: 100%;
  height: auto;
}
.banner-video-sd video {
  display: none; /* initially hidden */
  width: 100%;
  height: auto;
}

/* Play Button */
.banner-video-sd .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 62px;
  background-color: #fff;
  clip-path: polygon(30% 20%, 30% 80%, 80% 50%);
  transition: background-color 0.3s;
}

.banner-video-sd .play-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Close Button */
.banner-video-sd .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: white;
  background-color: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: none; /* initially hidden */
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner-video-sd .close-button:hover {
  background-color: rgba(0,0,0,0.8);
}


.banner-img img {
    width: 100%;
    height: 100vh;
}

.container-fluid {
    padding: 0px 80px;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.side-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.side-btn-img {
    height: 38px;
    width: 38px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.banner-text-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.banner-text-line h3 {
    margin-bottom: 0px;
    color: #fff;
    font-size: 31px;
}

.banner-text-line:before {
    position: absolute;
    content: '';
    top: 19px;
    right: 16px;
    height: 1px;
    width: 74%;
    background: #ffffff3b;
}

.banner-text-line i {
    color: #ffffff91;
}

.banner-text-line p {
}

.banner_text p {
    width: 77%;
    color: #fff;
    opacity: 50%;
    margin-bottom: 30px;
}

.banner_text ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner_text ul li a {
    background: transparent;
    border: 1px solid #fff;
}

.banner_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 44%;
}

section.main_slider {
    position: relative;
}

.banner-video-sd {
    position: absolute;
    z-index: 10;
    bottom: 40px;
    right: 50px;
    width: auto;
    background: #6778ae;
    padding: 20px 20px 40px;
    border-radius: 10px;
}

.banner_img > img {
    width: 100%;
}
.side-btn-img img {
    width: auto;
}

.slider-progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    color: #fff; /* Aapki image ke mutabiq white text */
    font-family: sans-serif;
    font-weight: bold;
    position: absolute;
    bottom: 110px;
    left: 100px;
}

.progress-line-bg {
    width: 600px; /* Line ki lambai aap yahan se set kar sakte hain */
    height: 5px;
    background: rgba(255, 255, 255, 0.3); /* Piche wali halki line */
    position: relative;
}

.progress-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff; /* White active line */
    width: 33.33%; /* Initial width (1 slide out of 3) */
    transition: width 0.4s ease;
}

.current-num, .total-num {
    font-size: 18px;
}

.dis-block{
    display: block;
}
.about-img img {
    width: 95%;
}

section.about-sec {
    margin: 100px 0px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 26px;
}
section.our-services-sec {
    padding: 60px 0px;
    background-image: url(../images/our-services-bg-img.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 100px;
}


.our-services-slider-box {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    /* border-radius: 20px; */
    /* overflow: hidden; */
    height: auto;
    transition: all 0.5s ease;
    row-gap: 50px;
}

.our-services-slider-box-text {
    order: 1;
    background: #fff;
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    /* margin: 30px 0; */
    height: 318px;
    /* row-gap: 50px; */
}

.our-services-slider-box-img {
    order: 2;
    flex: 1;
    height: 400px;
    /* margin-bottom: 30px; */
}

.our-services-slider-box-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}


.our-services-slider .slick-center .our-services-slider-box {
    flex-direction: column;
}

.our-services-slider .slick-center .our-services-slider-box-img {
    order: 1 !important;
}

.our-services-slider .slick-center .our-services-slider-box-text {
    order: 2 !important;
}


.our-services-slider-box-text:has(h3:contains("Group Therapy")) {
    background-color: #1f242e;
    color: #fff;
}


.our-services-slider .slick-prev, .our-services-slider .slick-next {
    top: -50px;
    right: 34px;
    left: auto;
    width: 55px;
    height: 55px;
    background: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.our-services-slider .slick-prev {
    right: 100px;
}

.our-services-slider .slick-prev::before, .our-services-slider .slick-next::before {
    color: #000;
    font-size: 20px;
    opacity: 1;
}


/* .our-services-slider .slick-center .side-btn {
    background: #1f242e;
    color: #fff;
} */

.our-services-slider .slick-active {
    opacity: 1;
}
.our-services-slider-box-text a {
    width: 185px;
    margin: 0 auto;
}

.our-services-top-heading {
    margin-bottom: 40px;
    margin-left: 38px;
}

.our-services-top-heading h2 {
    color: #fff;
}
.our-services-slider-box-text p {
    height: 100px;
}
.our-services-slider .slick-next:before {
    content: '';
    position: absolute;
    background-image: url(../images/right-arrow-slider.png);
    height: 9px;
    width: 17px;
    background-repeat: no-repeat;
    background-size: cover;
}
.our-services-slider .slick-prev:before {
    content: '';
    position: absolute;
    background-image: url(../images/right-arrow-slider.png);
    height: 9px;
    width: 17px;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(179deg);
}
.how-help-img {
    display: flex;
    align-items: start;
    justify-content: end;
    position: relative;
}

.how-help-img-one {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.how-help-img img {
    width: 80%;
}

.how-help-text ul li {display: flex;align-items: center;gap: 10px;margin-bottom: 10px;}
section.how-we-help-sec {
    margin-bottom: 100px;
}
section.insurance-sec {
    background-image: url(../images/insurance-bg-img.png);
    height: 100%;
    width: 100%;
    padding: 80px 0px;
    margin-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
}
.insurance-top-heading {
    width: 30%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}

h2 h2 {
    color: #fff;
}

.insurance-top-heading h2 {
    color: #fff;
}

.insurance-top-heading p {
    color: #fff;
}

.insurance-box {
    background: #fff;
    padding: 30px 30px 0px 30px;
    border-radius: 20px;
}

.insurance-box > img {
    width: 100%;
}

.insurance-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

li.insurance-date {
    padding: 12px 20px;
    border: 1px solid #202534;
    border-radius: 50px;
}

li.insurance-icon {
    height: 45px;
    width: 45px;
    background: #202534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

li.insurance-icon img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(122deg) brightness(114%) contrast(101%);
}

.insurance-box p {
    font-size: 15px;
    margin-bottom: 30px;
}

.insurance-box:hover {
    background: #212435;
}

.insurance-box:hover li.insurance-date {
    border: 1px solid #fff;
    color: #fff;
}

.insurance-box:hover li.insurance-icon {
    background: #fff;
}

.insurance-box:hover li.insurance-icon img {
    filter: unset;
}

.insurance-box:hover h4 {
    color: #fff;
}

.insurance-box:hover p {
    color: #fff;
}
.our-blog-box-img img {
    width: 100%;
}

.our-blog-box-img {
    position: relative;
}

.our-blog-box-img-number {
    position: absolute;
    top: 30px;
    left: 20px;
    text-align: center;
}

.our-blog-box-img-numberone p {
    margin-bottom: 0px;
    color: #fff;
    font-weight: 700;
}

.our-blog-box-img-numberone {
    background: #6778ae;
    padding: 10px;
    border-radius: 6px 6px 0px 0px;
}

.our-blog-box-img-numbertwo {
    background: #fff;
    padding: 8px 6px;
    border-radius: 0px 0px 6px 6px;
}

.our-blog-box-img-numbertwo p {
    margin-bottom: 0px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.our-blog-box-text {
    background: #fff;
    padding: 30px 30px;
    width: 90%;
    margin: 0 auto;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 6px 0px #00000066;
    border-radius: 20px;
}

.our-blog-box-text ul {
    display: flex;
    gap: 20px;
}
.our-blog-box-text {
    background: #fff;
    padding: 30px 30px;
    width: 90%;
    margin: 0 auto;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 6px 0px #00000066;
    border-radius: 20px;
}

.our-blog-box-text ul {
    display: flex;
    gap: 40px;
}

.our-blog-top-heading {
    margin-bottom: 30px;
}

.our-blog-box-text:hover {
    background: #202534;
}

.our-blog-box-text a {
    background: #6778ae;
}

.our-blog-box-text:hover ul li {
    color: #fff;
}

.our-blog-box-text:hover h4 {
    color: #fff;
}

.our-blog-box-text:hover p {
    color: #fff;
}
.our-blog-box-text ul li i {
    color: #6778ae;
    font-size: 19px;
}

.our-blog-box-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #000;
    font-family: 'montserrat-semibold';
}
section.our-blog-sec {
    margin-bottom: 100px;
}

section.our-testi-sec {
    background-image: url(../images/testi-bg-img.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
    /* margin-bottom: 100px; */
}
.our-testi-top-heading {
    text-align: center;
    width: 30%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.our-testi-top-heading h2 {
    color: #fff;
}

.our-testi-top-heading p {
    color: #fff;
}

.our-testi-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
}

.our-testi-box h5 {
    font-size: 22px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
}

.our-testi-box h6 {
    font-size: 20px;
    text-transform: uppercase;
    color: #6778ae;
    margin-bottom: 22px;
}

.our-testi-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px 0px;
}

.our-testi-box ul li i {
    color: #f9ae0e;
}

.our-testi-box p {
    font-weight: 600;
    font-size: 16px;
    opacity: 60%;
}
.our-testi-box:hover {
    background: #212435;
}

.our-testi-box:hover h5 {
    color: #fff;
}

.our-testi-box:hover h6 {
    color: #fff;
}

.our-testi-box:hover p {
    color: #fff;
}



/*Footer Css Starts*/

.footer-main {
    background-color: #202534;
    position: relative;
    z-index: 2;
}

footer {
    padding: 50px 0 0 0;
}

.footer-txt-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.footer-txt p {
    color: #fff;
    opacity: 0.7;
}

.footer-socials-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.footer-txt h5 {
    color: var(--white);
}

.footer-heading {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    height: 50px;
    width: 100%;
}

.footer-heading::before {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #ffffff52;
    width: 100%;
}

.footer-heading h5, .footer-socials-txt h5 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'cinzel-bold';
    font-weight: unset;
    font-size: 24px;
    width: fit-content;
    /* border-bottom: 1px solid #ffffff91; */
    padding-bottom: 15px;
    padding-right: 30px;
}

.footer-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    margin-left: 20px;
}

.footer-links ul li a {
    font-size: 14px;
    /* font-family: 'Montserrat'; */
    font-weight: 400;
    line-height: 1;
    color: #fff;
    opacity: 1;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
    /* gap: 15px; */
    /* transition: ease-in; */
    /* transition-duration: 0.5s; */
}

.footer-links ul li a:hover {
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}
    
    
.footer-links  ul li a {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
    /* gap: 20px; */
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 16px;
    width: 100%;
    column-count: 2;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}



.footer-socials ul li a i {
    color: #ffffff54;
    font-size: 14px;
    height: 36px;
    width: 36px;
    background: #ffffff00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #ffffff54;
}

.footer-copy-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.footer-copy-txt p, .footer-copy-txt p a {
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    transition: ease-in;
    transition-duration: 0.5s;
    margin-bottom: 0px;
}

.footer-copy-txt p a:hover {
    color: var(--base2);
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-main .footer-ex {
    padding: 20px 0 20px 0;
    margin-top: 50px;
    border-top: 1px solid #ffffff52;
    position: relative;
}

.footer-scroll a {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g1);
}



section.inner-about-sec .heading2 span {
    color: #000;
}

.about-bottom {
    margin: 50px 0 0 0;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 600px; */
    object-fit: cover;
    /* display: none; */
}

section.inner-banner-sec .banner-heading::before, section.inner-banner-sec .banner-heading::after {
    display: none;
}

section.inner-banner-sec .banner-heading h1 {
    font-weight: 900;
}
.footer-links.ft-pg-links ul {
    width: 100%;
    column-count: 2;
    display: block;
    margin-top: 9px;
}

.footer-links.ft-pg-links ul li {
    margin-bottom: 20px;
}
.footer-links.ft-pg-links {
    width: 100%;
}
.footer-links ul li {
    /* font-family: 'Montserrat'; */
    font-size: 14px;
}
.footer-links.ft-pg-links ul li a {
    text-transform: uppercase;
}
.footer-txt-main.mainquick-link {
    margin-left: 45px;
}
.follow-us h5 {
    border-bottom: unset;
    padding-bottom: 0px;
    margin-bottom: 6px;
    margin-top: 10px;
}
ul.ft-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 22px;
    padding-bottom: 10px;
}
/*Footer Css Ends*/


/*Section Subscribe Start*/

.subscribe-text h2 {
    font-family: 'cinzel-bold';
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}


.subscribe-field input {
    border: 1px solid #fff;
    width: 75%;
    padding: 18px 20px;
    /* font-family: 'Montserrat'; */
    border-radius: 50px;
    margin-right: 10px;
}

.subscribe-field {
    display: flex;
}

.subscribe-field button.pinBtn {
    margin-left: -40px;
}
.subscribe-main {
    background: #202534;
    padding: 50px 0px;
    border-bottom: 1px solid #ffffff52;
}

.subscribe-main .row {
    justify-content: center;
    align-items: center;
}

.subscribe-text p {
    margin-bottom: 0px;
}
.subscribe-field button {
    font-size: 14px;
    background: #000;
    color: #fff;
    border: unset;
    padding: 11px 30px;
    /* width: 232px; */
    border-radius: 50px;
    margin-left: 0px;
}
/*Section Subscibe End*/

.subscribe-text {
    display: flex;
    gap: 20px;
    align-items: center;
}

.subscribe-icon-text p {
    color: #fff;
}

.footer-txt-box p {
    color: #fff;
}

ul.ft-contact li p {
    color: #fff;
}
.footer-socials ul li a i:hover {
    background: #6b7bad;
    color: #fff;
}
