/* Fonts */
:root {
  --default-font: 'Lato', sans-serif;
  --heading-font: 'Baloo Tamma 2', cursive;
  --nav-font: 'Baloo Tamma 2', cursive;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #faf6db; /* Background color for the entire website, including individual sections */
  --default-color: #18181b; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #b79954; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #faf6db; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #faf6db; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #18181b;  /* The default color of the main navmenu links */
  --nav-hover-color: #612f8f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #612f8f; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #612f8f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #18181b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #a09ccd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #faf6db;
  --surface-color: #faf6db;
}

.dark-background {
  --background-color: #b79954;
  --default-color: #faf6db;
  --heading-color: #faf6db;
  --surface-color: #b79954;
  --contrast-color: #faf6db;
}

.accent-background {
  --background-color: #b79954;
  --default-color: #faf6db;
  --heading-color: #faf6db;
  --accent-color: #faf6db;
  --surface-color: #b79954;
  --contrast-color: #faf6db;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html,
body {
  color: var(--default-color);
  background-color: #faf6db;
  font-family: var(--default-font);
  font-size: clamp(16px, 2vw, 24pt);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.main{
  background: #faf6db;
}

p{
  font-size: 22px;
  line-height: 42px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #faf6db;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  /* box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 16pt;
  margin: 0;
  font-weight: 600;
  color: #18181b;
  
}

.header .logo span {
  color: #f0c514;
  font-size: 26px;
  font-weight: 600;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}
.MainLog{
  justify-content: flex-end;
  display: flex;
}
.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}
.topnavDisplaflex{
  display: flex;  
}
.topnavDisplaflexItem{
  flex: 1;                /* make all items equal width */
  text-align: center;
}
.topnavDisplaflexItem a{
  color: var(--nav-hover-color);
  font-size: 16pt;
  font-weight: 600;
}
.topnavDisplaflexItem a img,
.footer-content-ContactLink img {
  width: 24px;
}
.swiper-slide{
    display: flex;
    text-align: center;
    justify-content: center;
}
.BrandliveimgConatiner .BacktoBrand{
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.BrandliveimgConatiner .BacktoBrand a{
  color: #612f8f;
  font-size: 16pt;
  font-weight: 600;
  font-family: 'Baloo Tamma 2', cursive;
  display: flex;
  align-items: start;
  gap: 5px;
}
.BrandliveimgConatiner .BacktoBrand a img{
  width: 24px;
}
.mobileActive-LifeConnect{
  display: none;
}
#scroll-top{
  display: none !important;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color:#fff;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  /* position: relative; */
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  border-radius: 50px;
  /* border: 6px solid var(--background-color); */
  /* float: left; */
  margin: 0 0px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0px 0 0px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 4px;
}

.testimonials .testimonial-item .stars {
  margin: 0px 0;
  margin-top: -10px;
  margin-left: -3px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 3px;
  font-size: 20px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
  
}
.testi-heading{
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #d9d7c8;
    margin-bottom: 30px;
    padding-bottom: 0px;
}

.testi-heading h5 {
    font-size: 28px;
    font-weight: 600;
    color: var(--nav-hover-color);
    font-family: var(--nav-font);
}
.testi-heading img{
  width: 26px;
}
.testimonial-item span{
  display: block;
  margin-bottom: 16px;
}
.testimonial-top-section{
  display: flex;
  gap:10px;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .testi-heading h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--nav-hover-color);
    font-family: var(--nav-font);
}
  .mobileActive-LifeConnect{
    display: block;
  }

  .header .header-social-links {
    order: 0;
    justify-content: space-evenly;
  }

  .header .navmenu {
    order: 3;
    justify-content: right;
  }
}


/* Landing Page Bottom Logos
 */

 .LogoScroll{
  background: #faf6db;
 }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    color: var(--nav-color);
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    font-size: 22pt;
    font-weight: 600;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 6px 18px;
    font-size: 16pt;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-family: var(--nav-font);
    color: var(--nav-dropdown-color);
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
}
.MobileShowLi,
.navmenuIndex,
.navmenuMail{
    display: none;
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #6a2d91;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    /* inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px; */
    inset: 20px 20px 20px 20px;
    padding: 0px 0;
    margin: 0;
    border-radius: 0px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
 
  .navmenuIndex{
    position: absolute;
    top: 0px;
  }
  .navmenuMail{
    position: absolute;
    bottom: 0px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #b28ec8;
    padding: 0px 0px;
    font-family: var(--nav-font);
    font-size: 46px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #18181b;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    /* background: rgba(33, 37, 41, 0.8); */
    background:#6a2d91;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  .MobileShowLi,
  .navmenuIndex,
  .navmenuMail{
    display: block;
  }
  .navmenuIndex h1{
    color: #fff;
    font-size: 28px;
  }
  .navmenuMail h1{
    color: #fff;
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  height: 40px;
  display: flex;
  align-items: center;
}
.footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-content-Mob{
  font-size: 16pt;
  display: flex;
  align-items: center;
  gap:10px;
  justify-content: flex-end;
  color: #faf6db;
}
.footer-content-Mob a{
    color: #faf6db;
}
.footer-content-Mob div{
  padding-right: 10px;
  border-right:2px solid #faf6db;
}
.footer-content-Mob div:last-child{
  border-right:none
}
.footer-content-ContactLink{
  display: flex; 
  gap:10px;
  align-items: center;
  
}
.footer-content-ContactLink a{
  color: #faf6db;
  font-size: 16pt;
  font-weight: 600;
}


@media (max-width: 768px) {
  .mobile-WrFooter{
    flex-direction: column;
    gap:0px;
  }
  .MainLog{
    display: none !important;
  }
  main{
    overflow: visible !important;
  }
  .Landingpage-img-Mobile{
    width: 80% !important;
  }
  .footer-content-Mob{
    flex-direction: column;
    gap:5px;
    justify-content: center;
    align-items: center;
  }
  .navmenuMail h1 {
    font-size: 20px;
    font-weight: 600;
  }
  .navmenuIndex h1 {
    font-size: 26px;
    font-weight: 600;
  }
  
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* Fullscreen loading overlay */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #faf6db; /* background color */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    /* Hide loader when page is ready */
    body.loaded #loader {
      opacity: 0;
      display: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    #loader {
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    /* Loader image size */
    #loader img {
      width: 200px;
      height: 200px;
      object-fit: contain;
    }
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 30px;
  z-index: 99999;
  background-color: #6a2d91;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #b167e0;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 80px;
  font-weight: 600;
  margin: 0;
  color: #692c90;
}
.about .inner-title2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: -20px;
  margin-left: 15px;
  color: #692c90;
}
.inner-title3,
.inner-Services-title3{
  font-size: 18px;
  line-height: 28px;
}
.inner-title4{
  font-size: 32px;
  color: #692c90;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 42px;
}
.about .inner-title {
    margin: 0;
}
.inner-title4-container{
  margin-top: 60px;
  display: block;
  margin-bottom: 40px;
}
.inner-title4Lives-container{
  margin-top: 30px;
}
.BrandliveimgConatiner {
  margin-top: 30px;
}
.BrandliveimgConatiner img{
  width: 100%;
}
.BrandliveimgConatiner .col-lg-6{
  margin-bottom: 40px;
}
.profileInfo2{
  display: block;
}
.profileInfo2-Mobile{
  display: none;
}
.footerbelow-Mobile{
  display: none;
}
.ideas-come-alive-Mobile{
  display: none;
}
.intro-section {
  background-color: #a09ccd; /* same light purple tone */
  color: #18181b;
  padding: 10px 30px;
}

@media (min-width: 1440px) {
  .intro-text {
    font-weight: 600;
    font-size: 28pt;
    line-height: 1.2;
    font-family: var(--heading-font);
    margin: 0px;
  }
  .services-container{
    margin: 80px 0px 0px 0px;
  }
  section#about {
    padding: 10px 0;
  }
  .about .inner-title {
    font-size: 134px;
    font-weight: 600;
    margin: 0;
    margin-top: 150px;
  }
  .about .inner-title2 {
    font-size: 38px;
    font-weight: 600;
    margin-top: -40px;
    margin-left: 25px;
  }

  .inner-Services-title3{
    margin:0px;
    margin-top: -20px;
  }
  
}


.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}


.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}
.ProfileInfo{
  color: #b89c59;
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 32px;
  line-height: 42px;
  display: block;
}
.ProfileInfoMobile{
  display: none;
}
.ProfileInfo span{
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0c514;
  color: #fff;
  text-align: center;
  line-height: 24px;;
}
.about .about-img img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 40px;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


@media (min-width: 1440px) {
  .lifethrough-services{
    display: flex;
    align-items: center;
    gap: 0px;
  }
  .lifethrough-services div{
    font-size: 28px;
    font-weight: 600;
    color: var(--nav-hover-color);
    font-family: var(--nav-font);
  }
}
@media (max-width: 1439px) {
  .ProfileInfo{
    font-size: 22px;
    line-height: 28px;
  }
  .services-container h3 {
    font-size: 1.4rem;
  }
  .services-container img {
    transform: scale(0.6); /* 80% of original size */
  }
  .services-container{
    margin: 80px 0px 0px 0px;
  }
  h6{
    font-size: 22px;
  }
  p{
    font-size: 18px;
    line-height: 1.5;
  }
  .lifethrough-services{
    display: flex;
    align-items: center;
    gap: 0px;
  }
  .lifethrough-services div{
    font-size: 28px;
    font-weight: 600;
    color: var(--nav-hover-color);
    font-family: var(--nav-font);
  }
  .lifethrough-services img{
    transform: none;
    width: 28px;
  }
  .header .logo h1,
  .footer-content-ContactLink a,
  .topnavDisplaflexItem a,
  .footer-content-Mob,
  .navmenu a,
  .navmenu a:focus {
    font-size: 14pt;
  }

  .footer-content-Mob{
    font-size: 12pt;
    gap: 10px;
  }
  .topnavDisplaflexItem a img, 
  .footer-content-ContactLink img{
    width: 20px;
  }
  .header{
    font-size: 18pt;
    line-height: 1.2;
  }
  .intro-text {
    font-weight: 600;
    font-size: 18pt;
    line-height: 1.2;
    font-family: var(--heading-font);
    margin: 0px;
  }
}
@media (min-width: 1320px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 94%;
    }
}

@media (min-width: 1200px){
  .lifeBrands-Heading img{
    width: 100%;
    display: block;
  }
  .lifeBrands-mobile-Heading,
  .lifeBrands-mobile-Heading{
    display: none;
  }
  .lifeBrands-mobile-Heading-img{
    display: none;
  }
  
  .desktopshow{
    display: block;
  }
  .mobileShow{
    display: none;
  } 
  .image-container {
    width: 100%;
    height: auto; /* or auto */
  }
  .image-fit {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* shows full image, adds empty space if needed */
  }
  .mobilesitheadclass h1{
    display: none !important;
  }
  
}
@media (max-width: 1199px) {
  .sitename {
    display: none;
  }
   
  .MainLog {
    display: none !important;
  }
  .navmenu a, .navmenu a:focus{
    font-size: 46px;
  }
  .mobilesitheadclass h1{
    font-size: 14pt;
    margin: 0;
    font-weight: 600;
    color: #18181b;
    width: 100%;
    text-align: center;
    display: block;
    justify-content: center;
    margin-bottom: 40px;
  }
  .lifeBrands-Heading img{
    width: 100%;
    display: none;
  }
  .lifeBrands-mobile-Heading,
  .lifeBrands-mobile-Heading
  {
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .lifeBrands-mobile-Heading-img{
    display: block;
    margin-bottom: 30px;
  }
  .lifeBrands-mobile-Heading-img img{
    width: 96%;
  }
  .lifeBrands-mobile-Heading img {
        width: auto;
        height: 100%;
    }
  .lifeBrands-mobile-Heading .lifebrands-mobile-heading-text {
    background-color: #a09ccd;
    font-size: 12pt;
    color:#fff;
    padding: 10px 0px;
    font-weight: 500;
    line-height: 1.5;
    }
  .ProfileInfo br{
    display: none;
  }
  .about .inner-title {
    font-size: 70px;
    font-weight: 600;
    margin: 0;
    color: #692c90;
    line-height: 60px;
  }
  .about .inner-title2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0px;
    margin-left: 0px;
    color: #692c90;
  }
  .ProfileInfoImg {
    order: 1;
  }
  .ProfileInfoTxt {
    order: 2;
    margin-top: 20px;
  }
  .ProfileInfoImg{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .about .about-img img{
    margin-top: 50px;
  }
  .ProfileInfo
  {
    display: none;
  }
  .ProfileInfoMobile{
    color: #b89c59;
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 13.4pt;
    line-height:1.3;
    text-align: center;
    width: 100%;
    display: block;
  }
  .profileInfo2{
    display: none;
  }
  .profileInfo2-Mobile{
    margin-top: 20px;
    display: block;
  }
  .profileInfo2-Mobile p{
    text-align: center;
    font-size: 11pt;
    line-height: 17pt;
  }
  .inner-title4-container{
    display: none;
  }
  .ideas-come-alive-Mobile{
    padding-top: 0px;
    display: block;
    padding-bottom: 5px;
  }
  .ideas-come-alive-txt-Mobile{
    font-size: 28px;
    line-height: 1.3;
    color: #6a2d91;
    text-align: center;
    font-weight: 600;
    margin-top: 60px;
    display:none;
  }
  .footer{
    height: 40px;
  }
  .footer-content-Mob{
    display: none;
  }
  .footer-content-Mob div{
    border-right: 0px;
  }
  .footerbelow-Mobile{
    display: block;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .footerbelow-img-Mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
  }
  .footerbelow-img-Mobile img{
    width: 80%;
  }
  .footerbelow-Mobile .mailtxt{
    font-size: 12pt;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .mobile-WrFooter{
    justify-content: center !important;
  }
  
  /* .container, .container-md, .container-sm {
    max-width: 94%;
  } */
  section, 
  .section {
    padding: 0px 0;
    scroll-margin-top: 160px;
  }
  .footer-content-ContactLink a {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .scroll-top{
    bottom: 30px;
    right: 0px;
  }
  .services-container {
    margin: 30px 0px 0px 0px;
  }
  .services-container p {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
  }
  .lifethrough-services{
    justify-content: center;
  }
  .lifethrough-services div {
     font-size: 28px;
    font-weight: 600;
    color: var(--nav-hover-color);
    font-family: var(--nav-font);
  }
  .desktopshow{
    display: none;
  }
  .mobileShow{
    display: block;
  }
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .inner-title4 {
    font-size: 28px;
    color: #692c90;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .BrandliveimgConatiner .col-lg-6{
    margin-bottom: 20px;
  }
}

@media (max-width: 769px) {
  .lifeBrands-mobile-Heading img {
        width: 90%;
    }
    .mobilesitheadclass h1{
      margin-bottom:60px;
    }
    .testimonials .testimonial-item{
      padding: 18px;
    }
    .testimonials .testimonial-item .testimonial-img{
        width: 66px;
    }
    .testimonials .testimonial-item .stars {
        margin: 0px 0;
        margin-top: -4px;
        margin-left: -3px;
    }
}