* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    overflow-x: hidden;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:focus-visible {
    outline: none;
}

:root {
    --Themegreen: #345E52;
    --themeyellow: #FFC513;
    --themegrey: #54595F;
    --themefont: "DM Sans", sans-serif;
    --themefont2: "Bona Nova", serif;
    --Font16px: clamp(14px, 0.833vw, 18px);
    --Font18px: clamp(16px, 0.938vw, 20px);
    --Font20px: clamp(16px, 1.042vw, 22px);
    --Font22px: clamp(18px, 1.146vw, 25px);
    --Font24px: clamp(18px,1.25vw,26px);
    --Font30px: clamp(20px, 1.563vw, 35px);
    --Font35px: clamp(25px, 2.734vw, 40px);
    --Font40px: clamp(25px,2.083vw,45px);
    --Font50px: clamp(30px, 2.604vw, 60px);
    --Font60px: clamp(30px, 3.125vw , 65px);
    --Font70px: clamp(32px,3.646vw,75px);
    --Button-common-padding: 17px 22px;
}

.container {
    max-width: 92%;
}

p {
    font-family: var(--themefont);
    line-height: 1.6;
    font-size: var(--Font20px);
}


/* Header */

.header-top-bar {
    background-color: var(--Themegreen);
    padding: 17px 0px;
}

.header-top-bar p {
    font-family: var(--themefont);
    font-size: var(--Font16px);
    color: #fff;
    font-weight: 400;
}

.header-top-bar p a {
    font-family: var(--themefont);
    font-size: var(--Font16px);
    color: #fff;
    text-transform: uppercase;
    padding-left: 10px;
}

.header-top-bar .info-col-top-bar ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.header-top-bar .info-col-top-bar ul li a {
    text-decoration: none;
    color: #fff;
    font-family: var(--themefont);
    text-decoration: none;
    font-size: var(--Font16px);
    font-weight: 400;
    display: flex;
    align-items: center;
}

.header-top-bar .info-col-top-bar ul li a i {
    margin-right: 10px;
}

.header-top-bar .info-col-top-bar ul li:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 22px;
}

.header-top-bar .info-col-top-bar ul li:last-child {
    padding-left: 22px;
}

.header-top-bar .social-media-col-top-header ul {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.header-top-bar .social-media-col-top-header ul li a {
    text-decoration: none;
    color: #fff;
}

header {
    padding: 15px 0px;
    box-shadow: 0px 4px 20px 10px #0000000D;
    background-color: #fff;
    z-index: 9;
}

header .header-logo {
    display: block;
}

header .header-logo img {
    width: 230px;
}

header nav {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: end;
    align-items: center;
}

header nav ul {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

header nav ul li:not(:last-child) {
    margin-right: 4%;
}

header nav ul li a {
    font-family: var(--themefont);
    text-decoration: none;
    font-size: var(--Font22px);
    color: #000;
    font-weight: 400;
}

header nav ul li a:hover {
    color: var(--Themegreen);
}

header nav ul li a.active-nav {
    color: var(--Themegreen);
}

.register-nav-btn {
    box-shadow: 0px 4px 20px 10px #0000000D;
    padding: 17px 22px;
    background-color: var(--Themegreen);
    font-weight: 400;
    display: block;
    width: max-content;
    border-radius: 5px;
    color: #fff;
    border: 1px solid var(--Themegreen);
    transition: 0.4s all;
}

.register-nav-btn:hover {
    background-color: #fff;
    color: var(--Themegreen);
}

.login-nav-btn {
    box-shadow: 0px 4px 20px 10px #0000000D;
    padding: 17px 22px;
    background-color: #fff;
    font-weight: 400;
    display: block;
    width: max-content;
    border-radius: 5px;
    color: var(--Themegreen);
    border: 1px solid var(--Themegreen);
    transition: 0.4s all;
}

.login-nav-btn:hover {
    background-color: var(--Themegreen);
    color: #fff;
}

/* Banner section Homepage */
.banner-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--Themeblue);
    opacity: 0.5;
    z-index: 2;
}

.banner-section .swiper-container {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.banner-section .swiper-container .image-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    transition: 5s ease-out;
    transform: scale(1);
}

.banner-section .swiper-container .swiper-slide.swiper-slide-active .image-container {
    transform: scale(1);
}

.banner-section .banner-content {
    position: absolute;
    top: 50%;
    left: 4%;
    z-index: 2;
    transform: translate(1%, -50%);
    text-align: left;
    width: 92%;
}

.banner-section .banner-content h6 {
    font-family: var(--themefont);
    color: #000;
    font-size: clamp(18px, 1.25vw, 28px);
}

.banner-section .banner-content h1 {
    font-size: clamp(28px, 3.646vw, 75px);
    font-family: var(--themefont);
    color: var(--Themegreen);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    text-transform: uppercase;
    margin: 20px 0px;
    letter-spacing: 1px;
}

.banner-section .banner-content a {
    padding: var(--Button-common-padding);
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-family: var(--themefont);
    display: block;
    width: fit-content;
    margin: 0px 0 0px 0;
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 600;
    background-color: var(--Themegreen);
    border: 1px solid var(--Themegreen);
}

.banner-section .banner-content a:hover {
    background-color: #fff;
    color: var(--Themegreen);
}

/* About Homepage section */
.about-info-section {
    padding: 66px 0px;
}

.about-info-section h2 {
    font-family: var(--themefont2);
    font-size: var(--Font50px);
}

.about-info-section .color-para {
    margin: 20px 0px;
}

.about-info-section a {
    padding: var(--Button-common-padding);
    border: 1px solid var(--Themegreen);
    border-radius: 5px;
    display: block;
    width: fit-content;
    margin-top: 20px;
    font-size: var(--Font18px);
    font-family: var(--themefont);
    box-shadow: 0px 4px 20px 10px #0000000D;
    color: var(--Themegreen);
    text-decoration: none;

}

.about-info-section a:hover {
    background-color: var(--Themegreen);
    color: #fff;
}

.color-para {
    font-family: var(--themefont);
    line-height: 1.6;
    color: var(--Themegreen);
}

/* About Homepage Section End*/

/* Two Cards homepage section */

.common-two-cards-section {
    box-shadow: 0px 4px 4px 0px #0000000D inset;
    padding: 66px 0px;
}

.common-two-cards-section h6 {
    font-family: var(--themefont);
    color: var(--Themegreen);
    font-size: var(--Font20px);
    margin-bottom: 15px;
}

.common-two-cards-section h2 {
    font-family: var(--themefont);
    font-size: var(--Font30px);
    line-height: 1.4;
}

.common-two-cards-section .two-cards-inner-section {
    margin-top: 36px;
}

.common-two-cards-section .two-cards-inner-section ul {
    display: flex;
    gap: 20px;
}

.common-two-cards-section .two-cards-inner-section ul li {
    width: 50%;
    margin-top: 30px;
}

.common-two-cards-section .two-cards-inner-section ul li .two-big-card {
    position: relative;
    height: 434px;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: end;
}

.common-two-cards-section .two-cards-inner-section ul li .two-big-card .bg-image-two-card {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.common-two-cards-section .two-cards-inner-section ul li .two-big-card .bg-image-two-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.common-two-cards-section .two-cards-inner-section ul li .two-big-card .text_content_two_card {
    position: relative;
    background: #60606080;
    padding: 39px;
    backdrop-filter: blur(40px);
    border-radius: 10px;
}

.common-two-cards-section .two-cards-inner-section ul li .two-big-card .text_content_two_card h3 {
    color: var(--themefont2);
    color: #fff;
    font-size: var(--Font30px);
}

.common-two-cards-section .two-cards-inner-section ul li .two-big-card .text_content_two_card p {
    color: #fff;
    margin-top: 14px;
}

/* Two Cards homepage section End*/

/* Logo Slider Homepage Section */

.logo-slider-section {
    padding: 66px 0px;
    background-color: #F5F1EE;
    background-image: url(../images/broken-heart.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

.logo-slider-section h6 {
    text-align: center;
    font-family: var(--themefont);
    color: var(--Themegreen);
    margin-bottom: 10px;
    font-size: var(--Font20px);
}

.logo-slider-section h2 {
    text-align: center;
    font-family: var(--themefont);
    font-size: var(--Font30px);
    color: #000;
}

.logo-slider-section .logo-slider {
    margin-top: 40px;
}

.logo-slider-section .logo-slider img {
    opacity: 0.2;
    transform: scale(0.8);
}

.logo-slider-section .owl-item.active.center img {
    opacity: 1;
    transform: scale(1.1);
}

.logo-slider-section .owl-nav.disabled {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: var(--Themegreen);
}

.logo-slider-section .owl-nav.disabled i {
    font-size: 25px;
}

.logo-slider-section .owl-dots.disabled {
    display: flex;
    justify-content: center;
    position: relative;
    top: 30px;
}

.owl-dot.active span {
    background: var(--Themegreen) !important;
}

.owl-dot:hover span {
    background: var(--Themegreen) !important;
}

/* Logo Slider Homepage Section End*/

/* Common cards section */

.common-cards-section {
    padding: 66px 0px;
}

.common-cards-section h6 {
    font-family: var(--themefont);
    font-size: var(--Font20px);
    color: var(--Themegreen);
    margin-bottom: 10px;
}

.common-cards-section h2 {
    font-family: var(--themefont);
    font-size: var(--Font30px);
}

.common-cards-section .col-lg-8 p{
    font-size: var(--Font20px);
}

.common-cards-section .col-lg-8 a {
    color: var(--Themegreen);
    font-family: var(--themefont);
    margin-top: 10px;
    font-size: var(--Font18px);
    font-weight: 600;
    margin-top: 20px;
    display: block;
}

.common-cards-section .common-cards-inner{
    margin-top: 80px;
}

.common-cards-section .common-cards-inner ul{
  display: flex;
  gap: 20px;
}

.common-cards-section .common-cards-inner ul li{
    width: 33%;
}

.common-cards-section .common-cards-inner ul li .common-card{
    padding: 5% 6%;
    background-color: #F3F4F6;
    border-radius: 10px;
    cursor: pointer;
}

.common-cards-section .common-cards-inner ul li .common-card .common-card-icon{
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background-color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
}

.common-cards-section .common-cards-inner ul li .common-card .common-card-icon img{
    width: 30px;
}

.common-cards-section .common-cards-inner ul li .common-card h3{
    margin: 15px 0px 10px 0px;
    font-family: var(--themefont);
    font-size: var(--Font22px);
}

.common-cards-section .common-cards-inner ul li .common-card p{
    font-size: var(--Font16px);
}

.common-cards-section .common-cards-inner ul li .common-card:hover{
    background-color: var(--Themegreen);
    color: #fff;
}

/* Common cards section end*/

/* Mid Text Banner Section */
.mid-text-banner-section{
    background-image: url(https://3d-development.com/akworsi/public/storage/uploads/about-us/bg-green.png);
    padding: 50px 0px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mid-text-banner-section h2{
    color: #fff;
    font-family: var(--themefont);
    font-size: var(--Font30px);
    line-height: 1.6;
    font-style: italic;
    width: 50%;
    margin: auto;
}

.mid-text-banner-section p{
    color: #fff;
    margin-top: 30px;
    font-size: var(--Font22px);
    font-weight: 400;
}

/* Mid Text Banner Section End*/

/* Featured Announcement section */
.featured-announcement-section{
    padding: 66px 0px;
    position: relative;
}

.featured-announcement-section::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: -22%;
    right: 10%;
    background-image: url(https://3d-development.com/akworsi/public/storage/uploads/about-us/bg-featured-image.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
    opacity: 1;
    transform: scale(1.2);
}

.featured-announcement-section h6{
    text-align: center;
    color: var(--Themegreen);
    font-family: var(--themefont);
    font-size: var(--Font20px);
}

.featured-announcement-section h2{
    text-align: center;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font20px);
    line-height: 1.6;
    font-size: var(--Font30px);
    text-transform: uppercase;
    margin-top: 5px;
}

.featured-announcement-section .featured-top-cta{
    padding: 17px 22px;
    display: block;
    margin: 20px auto;
    width: fit-content;
    text-decoration: none;
    border: 1px solid var(--Themegreen);
    border-radius: 5px;
    color: var(--Themegreen);
    font-family: var(--themefont);
    box-shadow: 0px 4px 20px 10px #0000000D;
    transition: 0.3s all;
}

.featured-announcement-section .featured-top-cta:hover{
    background-color: var(--Themegreen);
    color: #fff;
}

.featured-announcement-section .announcement-row-inner ul li{
  padding: 38px 0px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #58585852;
}

.featured-announcement-section .announcement-row-inner ul li:not(:last-child){
    border-bottom: 1px solid #58585852;
}

.featured-announcement-section .announcement-row-inner ul li .featured-text-col h5{
      font-family: var(--themefont);
      color: #5B5B5B;
      font-size: var(--Font20px);
      margin-top: 20px;
}

.featured-announcement-section .announcement-row-inner ul li .featured-date{
   width: 20%;
}


.featured-announcement-section .announcement-row-inner ul li .featured-date .date-inner{
    padding: 10px 20px;
    box-shadow: 0px 4px 4px 0px #0000000D;
    width: fit-content;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: var(--themefont);
    line-height: 1.1;
    color: #5B5B5B;
 }

 .featured-announcement-section .announcement-row-inner ul li .featured-date .date-inner span{
    font-size: 40px;
    color: #5B5B5B;
 }

 .featured-announcement-section .announcement-row-inner ul li .featured-text-col{
    width: 70%;
    padding-right: 10%;
 }

 .featured-announcement-section .announcement-row-inner ul li .featured-inside-cta{
    width: 15%;
 }

 .featured-announcement-section .announcement-row-inner ul li .featured-inside-cta a{
    text-decoration: none;
    padding: 17px 22px;
    color: #fff;
    background-color: var(--Themegreen);
    font-family: var(--themefont);
    border-radius: 10px;
    border: 1px solid var(--Themegreen);
    box-shadow: 0px 4px 20px 10px #0000000D;
 }

 .featured-announcement-section .announcement-row-inner ul li .featured-inside-cta a:hover{
    background-color: #fff;
    color: var(--Themegreen);
 }


/* Featured Announcement section End    */


/* Join Us section */
.join-us-section{
    display: flex;
}

.join-us-section .join-us-left-col{
    width: 50%;
    background-color: var(--Themegreen);
    padding:4% 4.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-us-section .join-us-right-col-image{
    width: 50%;
}

.join-us-section .join-us-right-col-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.join-us-section .join-us-left-col h2{
    color: #fff;
    font-family: var(--themefont2);
    font-size: var(--Font50px);
}

.join-us-section .join-us-left-col p{
    color: #fff;
    margin: 20px 0px 35px 0px;
    font-size: var(--Font20px);
}

.join-us-section .join-us-left-col .join-us-cta{
  background-color: #838066;
  display: block;
  width: fit-content;
  margin-bottom: 22px;
  padding: 20px 20px;
  color: #FFFFFF;
  font-size: var(--Font22px);
  text-decoration: none;
  font-family: var(--themefont);
  border-radius: 10px;
  font-weight: 400;
}

.join-us-section .join-us-left-col .join-us-cta:nth-of-type(2){
    background-color: #F5F1EE;
    color: #5B5B5B;
    margin-bottom: 0;
}

.join-us-section .join-us-left-col .join-us-cta img{
    width: 50px;
    margin-left: 204px;
}

/* Join Us section End */

/* Footer */
footer{
     background-image: url(https://3d-development.com/akworsi/public/storage/uploads/footer-bg-image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 55px 0px 0 0;
    position: relative;
}

footer::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0E0E0EE5;
}

footer .container{
    position: relative;
}

footer a.footer-logo img{
    width: 320px;
}

footer .footer-social-media{
    display: flex;
    height: 100%;
    justify-content: end;
    align-items: center;
}

footer .footer-social-media ul{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

footer .footer-social-media ul li a{
   color: #fff;
}

footer .footer-social-media ul li a i{
    font-size: 32px;
}

footer h2{
    color: #fff;
    font-family: var(--themefont2);
    font-size: var(--Font30px);
    font-weight: 400;
    margin-bottom: 20px;
}

footer p{
    color: #fff;
    font-size: var(--Font16px);
}

footer .footer-nav-links ul li{
    margin-bottom: 20px;
}

footer .footer-nav-links ul li a{
    text-decoration: none;
    font-size: var(--Font16px);
    color: #fff;
    font-family: var(--themefont);
}

footer .footer-info-bar{
    margin-top: 20px;
}

footer .footer-info-bar ul li {
    margin-bottom: 15px;
}

footer .footer-info-bar ul li a{
    text-decoration: none;
    font-size: var(--Font16px);
    color: #fff;
    font-family: var(--themefont);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}

footer .sign-in a{
    font-family: var(--themefont2);
    color: #EFDA91;
    font-size: var(--Font20px);
}

footer .Copyright-text{
    display: flex;
    gap: 10px;
    font-size: var(--Font16px);
}

footer .Copyright-text img{
width: 20px;
height: 20px;
}

footer .copyright-row-col-right ul {
    display: flex;
    justify-content: end;
    gap: 60px;
}

footer .copyright-row-col-right ul li a{
    text-decoration: none;
    color: #fff;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

/* Footer End */


/* About Page */

.about-slider{
    margin: 30px 0px;
}

.about-slider .center .slide-non-active{
    display: none;
}

.About-slider-section-wrapper h6{
    font-family: var(--themefont);
    font-size: var(--Font20px);
    color: var(--Themegreen);
    margin-bottom: 10px;
}

.About-slider-section-wrapper h2{
    font-family: var(--themefont);
    font-size: var(--Font30px);
}

.slide-non-active{
    display: block;
    margin: auto;
    width: fit-content;
}

.slide-non-active img{
    width: 105px !important;
}

.about-slide-single{
    width: fit-content;
}

.about-slider .item{
    width: fit-content;
    height: 550px;
    display: flex;
    align-items: End;
}

.about-slider .item .slider-active{
    display: none;
}

.about-slider .center .slider-active{
    display: block;
}

.about-slider .center .about-slide-single{
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}

/*.about-slider .owl-item{*/
/*    width: 120px !important;*/
/*}*/

.slider-text-box{
    box-shadow: 0px 4px 20px 10px #345E521A;
    height: 100%;
    width: 380px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.slider-text-box h4{
    font-size: var(--Font24px);
    font-family: var(--themefont);
    margin-bottom: 15px;
}

.slider-text-box h5{
    font-size: var(--Font16px);
    font-family: var(--themefont);
    margin-bottom: 15px;
    font-weight: 400;
    color: #345E52;
}

.slider-text-box p{
    color: #909090;
    font-size: var(--Font16px);
    padding: 0 10%;
}

.banner-section-inner{
    height: 75vh;
    position: relative;
}

.banner-section-inner .col-lg-6 {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
}

.banner-section-inner .container .row{
    height: 100%;

}
.banner-section-inner h1{
      font-size: var(--Font70px);
      color: var(--Themegreen);
}

.banner-section-inner p{
    font-size: var(--Font24px);
    margin-top: 10px;
}

.banner-section-inner .breadcrumb{
  width: 90%;
  margin: 40px auto;
  display: block;
  position: absolute;
  left: 5%;
}

.banner-section-inner .breadcrumb ul{
    display: flex;
    gap: 10px;
}

.banner-section-inner .breadcrumb ul li a{
    color: var(--Themegreen);
    text-decoration: none;
    font-family: var(--themefont);
    font-size: var(--Font20px);
}

.banner-section-inner .breadcrumb ul li span{
     font-weight: 600;
     color: var(--Themegreen);
}

.banner-section-inner .breadcrumb ul li:last-child a{
    font-weight: 700;
}

.banner-section-inner h1{
    font-family: var(--themefont);
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 2px;
}

.banner-section-inner .col-lg-6{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
}

.banner-section-inner .container {
    height: 100%;
}

.banner-section-inner .inner-banner-image-section{
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.banner-section-inner .about-banner-frstimage{
    position: relative;
    z-index: 2;
    width: 85%;
}

.banner-section-inner .right-side-banner-image{
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}


.banner-section-inner .right-side-banner-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-section-inner .inner-banner-image-section::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(180deg, rgba(52, 94, 82, 0.87) 0%, rgba(239, 218, 145, 0.71) 100%);
    z-index: 1;
}


.about-inner-section{
    position: relative;
}

.about-inner-section::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 75%;
    width: 100%;
    background-color: #F5F1EE;
}

.about-inner-section .container{
    position: relative;
}

.about-info-inner-image{
    height: 400px;
    object-fit: cover;
}

.about-inner-section h2{
    font-family: var(--themefont2);
    font-size: var(--Font50px);
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-inner-section .color-para{
    margin-bottom: 20px;
}

.about-inner-section .about-inner-info-right-col{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-inner-section .counter-number-about-inner{
    margin-top: auto;
    display: block;
}

.about-inner-section .counter-number-about-inner ul{
    display: flex;
    gap: 116px;
}

.about-inner-section .counter-number-about-inner ul li span{
   font-family: var(--themefont);
   color: var(--Themegreen);
   font-size: var(--Font50px);
}

.about-inner-section .counter-number-about-inner ul li p{
    font-family: var(--themefont2);
    color: #000;
    font-size: var(--Font24px);
    font-weight: 400;
    text-align: center;
    margin-top: 5px;
}

.about-inner-info-right-col a{
  display: block;
  padding: 17px 22px;
  border: 1px solid var(--Themegreen);
  border-radius: 5px;
  color: var(--Themegreen);
  font-size: var(--Font18px);
  text-decoration: none;
  font-family: var(--themefont);
  width: fit-content;
  margin-top: 20px;
  transition: 0.2s all;
}

.about-inner-info-right-col a:hover{
    background-color: var(--Themegreen);
    color: #fff;
}

/* About Page End */

/* Contact Page */

.contact-form-section{
    padding: 66px 0px;
}

.contact-form-section h2{
    font-family: var(--themefont2);
    font-size: var(--Font60px);
    line-height: 1.2;
}

.contact-form-section ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-form-section ul li{
    width: 48%;
    margin-top: 15px;
}

.contact-form-section ul li h6{
    font-family: var(--themefont);
    font-size: var(--Font24px);
    font-weight: 400;
}

.contact-form-section ul li a{
    font-family: var(--themefont);
    margin-top: 5px;
    display: block;
    line-height: 1.4;
    text-decoration: none;
    color: #909090;
}

.contact-form-section .social-media-contact-form-list ul{
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 5px;
}

.contact-form-section .social-media-contact-form-list ul li{
    width: fit-content;
}

.contact-form-section .social-media-contact-form-list ul li i{
    font-size: 22px;
    color: #000;
}

.contact-form-section .contact-form-inner {
   background-color: #F1F2F4;
   border-radius: 20px;
   padding: 20px 80px;
}

.contact-form-section .contact-form-inner h3{
    font-family: var(--themefont);
    font-size: var(--Font40px);
}

.contact-form-section .contact-form-inner p{
    line-height: normal;
    color: #909090;
    font-weight: 400;
    font-size: var(--Font16px);
    margin: 12px 0px;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row{
  margin-bottom: 20px;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row input[type="text"]{
    width: 100%;
    border: none;
    background-color: transparent;
    font-family: var(--themefont);
    border-bottom: 1px solid #0000004F;
    padding: 10px 0px 10px 0px;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row input[type="email"]{
    width: 100%;
    border: none;
    background-color: transparent;
    font-family: var(--themefont);
    border-bottom: 1px solid #0000004F;
    padding: 10px 0px 10px 0px;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row input[type="tel"]{
    width: 100%;
    border: none;
    background-color: transparent;
    font-family: var(--themefont);
    border-bottom: 1px solid #0000004F;
    padding: 10px 0px 10px 0px;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row textarea{
    width: 100%;
    border: none;
    background-color: transparent;
    font-family: var(--themefont);
    border-bottom: 1px solid #0000004F;
    padding: 10px 0px 10px 0px;
    height: 80px;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row input[type="submit"]{
    width: 100%;
    border: 1px solid var(--Themegreen);
    background-color: var(--Themegreen);
    font-family: var(--themefont);
    color: #fff;
    padding: 14px 12%;
    border-radius: 5px;
    box-shadow: 0px 4px 20px 10px #0000000D;
    width: fit-content;
    margin: auto;
    display: block;
    font-size: var(--Font18px);
    margin-bottom: 0;
}

textarea {
  resize: none;
}

.contact-form-section .contact-form-inner .form-wrapper .form-row input[type="submit"]:hover{
    background-color: transparent;
    color: var(--Themegreen);
}

.contact-form-section .contact-form-inner .form-wrapper .form-row:last-child{
    margin-bottom: 0;
}

/* Contact Page End */

/* FAQ Page */

.faq-section{
    padding: 66px 0px;
}

.faq-section .accordion-item .accordion-button {
  font-family: var(--themefont);
  font-weight: 500;
  font-size: var(--Font24px);
  padding: 26px 0px;
}

.faq-section .accordion-item{
    border: none;
    border-bottom: 1px solid #00000038;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.faq-section .accordion-body{
    padding: 0 0 10px 0px;
}

.faq-section .accordion-button::after{
    filter: brightness(0.5);
}

.faq-section .accordion-button:focus{
    border: none;
    box-shadow: none;
}

/* FAQ Page End*/

/* Sign In page */

.sign-in-form-section-wrapper{
    margin: 20px 0px;
}

.sign-in-form-section-wrapper video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    height: 700px;
}

.sign-in-form-section-wrapper h2{
    font-family: var(--themefont2);
    margin-top: 20px;
    color: var(--Themegreen);
    font-size: var(--Font40px);
}

.sign-in-form-section-wrapper .sign-in-form-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sign-in-form-section-wrapper .sign-in-form-col .sign-in-logo img{
      width: 330px;
}

.sign-in-form-section-wrapper .form-sign-in{
   margin-top: 50px;
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin{
   display: flex;
   flex-direction: column;
   position: relative;
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin input{
    width: 460px;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin label{
    font-family: var(--themefont);
    color: #000000B2;
    font-size: 14px;
    background: #fff;
    position: absolute;
    z-index: 1;
    padding: 10px;
    top: -15px;
    left: 20px;
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin input[type="email"]{
    box-shadow: 0px 4px 4px 0px #0000000D;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #E8E6EA;
    height: 57px;
    position: relative;
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin input[type="password"]{
    box-shadow: 0px 4px 4px 0px #0000000D;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #E8E6EA;
    height: 57px;
    position: relative;
}

.form-row-two-sign-in{
    display: flex;
    justify-content: space-between;
}

.form-row-two-sign-in .remember-me{
    display: flex;
}

.form-row-two-sign-in .remember-me input{
    margin-right: 5px;
}

.form-row-two-sign-in .remember-me p{
    font-size: 14px;
    color: #000000B2;
}

.form-row-two-sign-in a{
    font-family: var(--themefont);
    font-size: 14px;
    color: #000000B2;
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin input[type="submit"]{
    padding: 17px 22px;
    background-color: var(--Themegreen);
    color: #fff;
    font-family: var(--themefont);
    border-radius: 5px;
    font-size: var(--Font18px);
    border: 1px solid var(--Themegreen);
    transition: 0.2s all;
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin input[type="submit"]:hover{
    background-color: #fff;
    color: var(--Themegreen);
}

.sign-in-form-section-wrapper .form-sign-in .form-row-signin a{
    text-align: center;
    font-family: var(--themefont);
    display: block;
    color: var(--Themegreen);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 16px;
}

/* Sign In page End*/


/* Family Registration */

.register-now-banner-section{
    position: relative;
    height: 424px;
}

.register-now-banner-section .banner-bg-image{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.register-now-banner-section .banner-bg-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.register-now-banner-section::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(89.64deg, #FFFFFF 6.11%, rgba(255, 255, 255, 0) 91.54%);
    z-index: 1;
}

.register-banner-breadcrumb{
    position: absolute;
    top: 20px;
    left: 5%;
    z-index: 1;
}

.register-banner-breadcrumb ul{
      display: flex;
      align-items: center;
      gap: 10px;
}

.register-banner-breadcrumb ul li {
    font-family: var(--themefont);
    font-size: var(--Font20px);
    font-weight: 300;
    color: var(--Themegreen);
}

.register-banner-breadcrumb ul li b{
    font-weight: 600;
}

.register-banner-breadcrumb ul li a{
    text-decoration: none;
    color: var(--Themegreen);
}

.register-now-banner-content{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 7%;
    transform: translate(-7%,-50%);
}

.register-now-banner-content h1{
    font-size: var(--Font70px);
    color: var(--Themegreen);
    font-family: var(--themefont);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.family-registration-section{
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    background-color: #fff;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
}

.family-registration-section h2{
    text-align: center;
    font-family: var(--themefont2);
    color: #000;
    font-weight: 400;
    font-size: var(--Font40px);
}

.family-registration-section h4{
    font-family: var(--themefont);
    font-weight: 400;
    font-size: var(--Font30px);
    margin-bottom: 20px;
}

.family-registration-form-wrapper{
    width: 80%;
    margin: auto;
}

.family-registration-form-wrapper .form-col-family-register{
    position: relative;
    margin-top: 10px;
}

.family-registration-form-wrapper .form-col-family-register label{
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--themefont);
    font-size: 12px;
    padding: 5px;
    color: #000000B2;
    background: #fff;
}

.family-registration-form-wrapper .form-col-family-register input[type="text"]{
    border: 1px solid #E8E6EA;
    padding: 0px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

.family-registration-form-wrapper .form-col-family-register input[type="email"]{
    border: 1px solid #E8E6EA;
    padding: 0px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

.family-registration-form-wrapper .form-col-family-register select{
    border: 1px solid #E8E6EA;
    padding: 0px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

.family-registration-form-wrapper .form-col-family-register textarea{
    border: 1px solid #E8E6EA;
    padding: 0px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
    height: 150px;
}

.family-registration-form-wrapper .add-family-member-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--themefont);
    color: #000;
    font-size: var(--Font24px);
    font-weight: 400;
}

.family-registration-form-wrapper .add-family-member-btn:hover{
    color: var(--Themegreen);
}

.family-registration-form-wrapper .add-family-member-btn img{
    width: 20px;
}

.family-registration-form-wrapper input[type="submit"]{
      padding: 15px 40px;
      background-color: var(--Themegreen);
      color: #fff;
      font-family: var(--themefont);
      box-shadow: 0px 4px 20px 10px #0000000D;
      border-radius: 5px;
      border: none;
      font-weight: 600;
      font-size: var(--Font18px);
      margin: auto;
      display: block;
}
/* Family Registration Page End */

/* Register Now Page */

.register-now-inner-section{
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    background-color: #fff;
    width: 80%;
    margin: 50px auto;
    padding: 20px 10%;
}

.register-now-inner-section .register-now-tabs-wrapper .nav-pills{
      width: 100%;
      justify-content: space-between;
}

.register-now-inner-section .register-now-tabs-wrapper .nav-pills .nav-item{
    width: 48%;
}

.register-now-inner-section .register-now-tabs-wrapper .nav-pills .nav-link{
    background-color: #F3F4F6;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 20px 20px;
    width: 100%;
    font-family: var(--themefont2);
    font-size: var(--Font24px);
    color: #000;
}

.register-now-inner-section .register-now-tabs-wrapper .nav-pills .nav-link.active{
    background-color: var(--Themegreen);
    color: #fff;
}

.register-now-inner-section .register-form-col{
    position: relative;
}

.register-now-inner-section .register-form-col h6{
    font-family: var(--themefont);
    font-size: var(--Font24px);
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}

.register-now-inner-section .register-form-col p{
    font-family: var(--themefont);
    font-size: var(--Font16 px);
    color: #909090;
    font-weight: 400;
}

.register-now-inner-section .register-form-col label{
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--themefont);
    font-size: 12px;
    padding: 5px;
    color: #000000B2;
    background: #fff;
}

.register-now-inner-section .register-form-col input[type="text"]{
    border: 1px solid #E8E6EA;
    padding: 0px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

.register-now-inner-section .register-form-col select{
    border: 1px solid #E8E6EA;
    padding: 0px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}

.register-now-inner-section .register-form-col textarea{
    border: 1px solid #E8E6EA;
    padding: 15px 10px 10px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 150px;
    color: #000;
    font-family: var(--themefont);
    font-size: var(--Font16px);
}


.register-now-inner-section .register-form-col .associate-input{
    margin-top: 30px;
    position: relative;
}

.register-now-inner-section .register-form-col input[type="submit"]{
    padding: 15px 40px;
    background-color: var(--Themegreen);
    color: #fff;
    font-family: var(--themefont);
    box-shadow: 0px 4px 20px 10px #0000000D;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: var(--Font18px);
    margin: auto;
    display: block;
}

.register-now-inner-section h4{
    font-family: var(--themefont);
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: var(--Font24px);
}

.register-now-inner-section .radio-btn-wrapper{
    gap: 10px;
    align-items: center;
}

.register-now-inner-section .radio-btn-wrapper label{
    position: relative;
    left: unset;
    top: unset;
    padding: 0;
}

.register-now-inner-section .radio-btn-wrapper > div{
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dashboard Page CSS */

.home-link-dashboard{
    text-transform: uppercase;
    font-family: var(--themefont);
    color: var(--Themegreen);
    font-size: var(--Font24px);
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 100%;
}

.dashboard-header .dashboard-header-logo {
    display: flex;
    justify-content: center;
}

.dashboard-header .dashboard-header-logo img{
     width: 100px;
}

.dashboard-header .dashboard-header-profile{
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-header .dashboard-header-profile img{
    width: 20px;
    object-fit: contain;
}

.dashboard-header .dashboard-header-profile p{
    font-size: var(--Font24px);
    color: #000;
    font-weight: 400;
}

.dasboard-main-wrapper{
    display: flex;
}

.dasboard-main-wrapper .dashboard-left-col{
     background-color: var(--Themegreen);
     width: 25%;
     font-family: var(--themefont);
}

.dashboard-left-col .dashboard-left-tab-switches-wrapper .nav-link{
    padding: 25px 0px;
    font-size: var(--Font20px);
    font-weight: 400;
    color: #fff;
    text-align: left;
    padding-left: 10%;
}

.dashboard-left-col .dashboard-left-tab-switches-wrapper .nav-link.active{
   background-color: #F3F4F6;
   border-radius: 0;
   color: var(--Themegreen);
}

.dashboard-right-col{
    width: 75%;
    padding-bottom: 50px;
}

.dashboard-right-col .nav-pills{
    width: 100%;
}

.dashboard-right-col .nav-pills .nav-item{
    width: 50%;
}

.dashboard-right-col .nav-link {
    background-color: #F4F4F4;
    color: #828282;
    text-align: center;
    border-radius: 0;
    padding: 15px 0px;
    width: 100%;
    font-family: var(--themefont);
    border: 1px solid #F4F4F4;
    font-size: var(--Font20px);
}

.dashboard-right-col .nav-link.active{
    border: 1px solid var(--Themegreen);
    background-color: #fff;
    color: var(--Themegreen);
}

.dashboard-right-col .contact-section ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px
}

.dashboard-right-col .contact-section ul li{
    width: 50%;
    margin-bottom: 40px;
}

.dashboard-right-col .contact-section ul li h6{
    font-family: var(--themefont);
    margin-bottom: 10px;
    font-weight: 400;
    font-size: var(--Font24px);
}

.dashboard-right-col .contact-section ul li a{
     font-family: var(--themefont);
     text-decoration: none;
     font-weight: 400;
     font-size: var(--Font16px);
     color: #909090;
}

.dashboard-right-col .contact-section .social-media-contact-form-list ul{
     display: flex;
     gap: 20px;
     margin-top: 5px;
}

.dashboard-right-col .contact-section .social-media-contact-form-list ul li{
    width: fit-content;
}

.dashboard-right-col .contact-section .social-media-contact-form-list ul li a{
    font-size: 20px;
    color: #000;
}

.dashboard-right-col .support-form{
   border-left: 1px solid #0000004F;
   padding-left: 30px;
}

.dashboard-right-col .support-form input{
   border: none;
   font-family: var(--themefont);
   border-bottom: 1px solid #0000004F;
   color: #909090;
   font-weight: 400;
   font-size: var(--Font16px);
   border-radius: 0;
   padding-left: 0;
}

.dashboard-right-col .support-form textarea{
    border: none;
    font-family: var(--themefont);
    border-bottom: 1px solid #0000004F;
    color: #909090;
    font-weight: 400;
    font-size: var(--Font16px);
    border-radius: 0;
    padding-left: 0;
 }

.dashboard-right-col .support-form form{
    margin-top: 20px;
}

.dashboard-right-col .support-form input[type="submit"]{
    border: 1px solid var(--Themegreen);
    background-color: var(--Themegreen);
    font-family: var(--themefont);
    color: #fff;
    padding: 17px 40px;
    border-radius: 5px;
    box-shadow: 0px 4px 20px 10px #0000000D;
    width: fit-content;
    margin: auto;
    display: block;
    font-size: var(--Font18px);
    margin-bottom: 0;
    margin-top: 50px;
}

.dashboard-right-col .contact-section h4{
      font-family: var(--themefont);
      font-size: var(--Font40px);
      text-transform: uppercase;
      color: var(--Themegreen);
}

.dashboard-right-col .contact-section{
    padding-top: 30px;
}

.dashboard-right-col .my-dashboard{
    padding: 0px 8% 20% 4%;
}

.dasboard-main-wrapper .dashboard-left-col .left-col-dashboard-profile-icon{
       display: flex;
       align-items: center;
       gap: 10px;
       padding: 20px 0px;
}

.dasboard-main-wrapper .dashboard-left-col .left-col-dashboard-profile-icon img{
    width: 30px;
    object-fit: contain;
}

.dasboard-main-wrapper .dashboard-left-col .left-col-dashboard-profile-icon p{
    color: #fff;
    font-size: var(--Font24px);
    font-weight: 400;
}

.my-dashboard {
    color: #2f4f4f;
    font-family: var(--themefont);
  }
  
  .my-dashboard h2 {
    margin: 30px 0;
    font-size: var(--Font40px);
  }
  
  .dashboard-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .contribution-box {
    border: 1px solid #2f4f4f;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .contribution-box h1 {
    margin: 0;
    font-size: var(--Font60px);
    font-weight: 600;
  }
  
  .contribution-box p {
    margin-top: 10px;
  }
  
  .member-info {
    border: 1px solid #2f4f4f;
    flex: 1;
    min-width: 250px;
  }
  
  .member-info table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .member-info td {
    border: 1px solid #2f4f4f;
    padding: 20px;
    text-align: center;
  }

  
  .family-records {
    color: #2f4f4f;
    margin-top: 50px;
  }
  
  .dashboard-right-col .container{
    max-width: 98%;
  }
  
  .dashboard-right-col .message-section {
    border: 1px solid var(--Themegreen);
    padding: 30px 15px;
    font-family: var(--themefont);
  }

  .dashboard-right-col .message-section .text-grey{
    color: #54595F;
  }

  .dashboard-right-col .message-section tbody{
    color: #000;
    font-weight: 400;
    font-size: var(--Font18px) !important;
  }

  .message-section table{
    font-size: var(--Font18px);
  }

  .family-records{
    font-family: var(--themefont);
  }

  .family-records .text-grey{
      color: #828282;
  }

  .family-records table{
    font-size: var(--Font18px);
  }

  .family-records h4{
    font-size: var(--Font40px);
  }

  .family-records small{
    font-size: var(--Font16px);
  }

  .add-family-member-btn{
    color: #000;
    text-decoration: none;
    display: flex;
    font-weight: 400;
    font-size: var(--Font16px);
    width: 180px;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border: 1px solid var(--Themegreen);
    border-radius: 5px;
    margin-left: 10px;

  }

  .add-family-member-btn img{
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .search-family-field{
    width: 40%;
  }

  .search-family-field input{
    padding-left: 40px !important;
    background-image: url(../images/search-bar.png);
    background-position: 5%;
    background-size: 20px;
    background-repeat: no-repeat;
    height: 38px;
  }

  .user-settings.container{
    max-width: 100%;
    padding: 0;
  }

  .user-settings{
    font-family: var(--themefont);
  }

  .user-settings h6{
    padding: 10px;
    background-color: #F2F2F2;
    padding-left: 3%;
  }

  .user-settings form{ 
    padding: 3%;
  }

  .user-settings form .input-group{
    background-color: #fff;
  }

  .user-settings .input-group-text{
    background-color: #fff;
    border: none;
  }

  .user-settings .input-group-text img{
    width: 20px;
  }

  .user-settings form label{
    position: absolute;
    left: 40px;
    top: -8px;
    font-size: 12px;
    color: #000000B2;
    z-index: 2;
    padding: 3px;
    background: #fff;
  }

  .user-settings form input[type="text"]{
  border-radius: 15px !important;
  border: 1px solid #E8E6EA;
  padding-left: 30px;
  font-size: var(--Font20px);
  color: var(--Themegreen);
  height: 45px;
  }

  .user-settings form input[type="email"]{
    border-radius: 15px !important;
    border: 1px solid #E8E6EA;
    padding-left: 30px;
    font-size: var(--Font20px);
    color: var(--Themegreen);
    height: 45px;
  }

  .user-settings form input[type="submit"]{
    border: 1px solid var(--Themegreen);
    background-color: var(--Themegreen);
    font-family: var(--themefont);
    color: #fff;
    padding: 14px 40px;
    border-radius: 5px;
    box-shadow: 0px 4px 20px 10px #0000000D;
    width: fit-content;
    display: block;
    font-size: var(--Font18px);
    margin-bottom: 0;
    margin-top: 20px;
  }

  .user-settings form input[type="password"]{
    border-radius: 15px !important;
    border: 1px solid #E8E6EA;
    padding-left: 30px;
    font-size: var(--Font20px);
    color: var(--Themegreen);
    height: 45px;
  }
  
 .text-danger {
    color: #dc3545 !important;
    font-size: 12px;
    padding-top: 4px;
}

/* Dashboard Page CSS End*/

.banner-section-inner p{
    -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
}

.counter-number-about-inner ul li{
    text-align: center;
}


/*Sticky BTN CSS*/

.sticky-call-btn{
    position: fixed;
    top: 50%;
    right: -90px;
    z-index: 999;
    transform: rotate(-90deg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--themefont);
    font-size: var(--Font22px);
    margin-bottom: 15px;
    color: #000;
    background-color: #FFFFFF;
    border-width: 1px 1px 0px 1px;
    border-style: solid;
    border-color: #345E52;
    padding: 10px 20px;
    border-radius: 10px 10px 0px 0px;
}

.sticky-call-btn img{
    transform: rotate(90deg);
    width: 20px