
/* Fonts */
@import url('https://fonts.cdnfonts.com/css/satoshi');
 
:root { 
  --background-color: #ffffff; 
  --default-color: #3b5353;
  --heading-color: #193838;
  --accent-color: #D51D73;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #3b5353;
  --nav-hover-color: #00a19e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3b5353;
  --nav-dropdown-hover-color: #00a19e;
}

html, body{
  overflow-x: hidden;
  overflow-y: auto;
}

.light-background {
  --background-color: #f0f6f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031a1a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Satoshi', sans-serif;
}

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;
}



/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

header#header .container-fluid {
    margin: 0 40px;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #D51D73;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    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;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    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: var(--nav-dropdown-hover-color);
  }

  .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);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #000;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 25px;
  color: white;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: white;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 25px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .social-links span{
 font-size: 18px;
}
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #fff;
  font-size: 20px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

p{
  font-size: 21px;
  color: #161616;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 145px 0 0 0;
  position: relative;
  overflow: hidden;
}

.dot img{
  left: -14px;
    position: relative;
    top: 17px;
}

.hero .hero-content {
  padding: 20px 0;
}

.hero-sub-title{
  font-size: 30px;
  font-weight: 500;
  color: #a3a3a3;
  line-height: 40px;
}
.hero-sub-title span{
  font-size: 40px;
    font-weight: 700;
    position: relative;
    top: 5px;
}

.hero .hero-content .hero-title {
  font-size: 80px;
  font-weight: 900;
  line-height: 100%;
  margin-bottom: 32px;
  color: #000;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-actions .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 48px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  padding-top: 10px;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
  width: 80%;
    height: auto;
    object-fit: cover;
    float: right;
    position: relative;
    right: 23px;
}

.hero .hero-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-visual .floating-elements .floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card i {
  font-size: 1.125rem;
  color: var(--accent-color);
}

.hero .hero-visual .floating-elements .floating-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
}
.hero .hero-visual .floating-elements .floating-card.card-1 img{
  height: 90px;
}
.hero .hero-visual .floating-elements .floating-card.card-3 img{
  height: 40px;
}
.hero .hero-visual .floating-elements .floating-card.card-1 {
  top: 0px;
  left: 15%;
  animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
  bottom: 22%;
  /* left: 255px; */
  right: 40px;
  animation-delay: -2s;
}

@media (max-width: 768px) {
  .hero .hero-visual .floating-elements .floating-card {
    padding: 12px 16px;
  }

  .hero .hero-visual .floating-elements .floating-card span {
    font-size: 0.75rem;
  }

  .hero .hero-visual .floating-elements .floating-card.card-1 {
    left: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-2 {
    right: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-3 {
    /* left: 10px; */
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(40px);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 10px;
  }
}

/*--------------------------------------------------------------
# stories Section
--------------------------------------------------------------*/
#stories{
  background-color: #000;
  position: relative;
  top: -100px;
  padding-bottom: 170px;
  padding-top: 130px;
}

.stories-text h2{
font-weight: 700;
font-style: Bold;
font-size: 40px;
line-height: 130%;
letter-spacing: -3%;
color: white;
}
.stories-text h2 span{
color: #D51D73;
}

.stories-text p{
font-weight: 200;
font-size: 25px;
color: white;
}

.stories-card{
  background-color: #272727;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.stories-card .card-text{
  padding: 40px 32px 20px;
}
.stories-card h4{
  color: white;
  font-size: 25px;
  font-weight: 500;
}
.stories-card p{
  color: white;
  font-weight: 200;
  font-size: 19px;
}
.pintra-img{
background: #3E4095;
background: linear-gradient(47deg, rgba(62, 64, 149, 1) 0%, rgba(0, 168, 89, 1) 100%);
border-radius: 24px;
padding: 0; 
height: 100%;
  display: flex;
  /* flex-direction: column; */
}
.pintra-img img{
  width: 100%;
  object-fit: contain;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}
 .stories-card .zoom-thumbnail {
  /* transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);  
  transform: scale(0.9); */
  padding: 0 20px;
}
/* .stories-card:hover .zoom-thumbnail {
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
} */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about{
  overflow: hidden;
  margin-top: 0px;
  padding-bottom: 100px;
  padding-top: 40px;
}
.about-dot{
  height: 40px;
  position: relative;
  top: -30px;
}
.about h3{
  font-weight: 700;
  font-size: 40px;
  color: #000;
  position: relative;
}
.about h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 2px;
    background: #770465;
    background: linear-gradient(99deg, rgba(119, 4, 101, 1) 0%, rgba(213, 29, 115, 1) 100%);
    left: -420px;
    right: 0;
    bottom: -21px;
    margin: auto;
}
.about .about-img{
height: auto;
width: 100%;
object-fit: contain;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features{
  background-color: #000;
  overflow: hidden;
  padding: 100px 0px;
}

#features .box {
    animation: floating 3s ease-in-out infinite;
}

.feature-line{
  position: relative;
  left: 80px;
}

/*--------------------------------------------------------------
# Our Expertise Section
--------------------------------------------------------------*/

.experties h3{
  font-weight: 700;
  font-size: 40px;
  color: #000;
  position: relative;
}
.experties h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 2px;
    background: #770465;
    background: linear-gradient(99deg, rgba(119, 4, 101, 1) 0%, rgba(213, 29, 115, 1) 100%);
    left: -991px;
    right: 0;
    bottom: -21px;
    margin: auto;
}

/*--------------------------------------------------------------
# engagement Section
--------------------------------------------------------------*/
#engagement{
  background-color: #000;
}
.engagement .heading h2{
  color: #fff !important;
  text-align: center;
  font-size: 40px !important;
  font-weight: 700;
}
.engagement .heading p{
  color: #fff !important;
  text-align: center;
  font-size: 25px;
    margin-top: 20px;
}
.engagement img{
  height: auto;
    width: 100%;
    object-fit: contain;
}
.engagement h4{
  color: #fff;
  font-size: 26px;
}
.engagement p {
    color: #e9e9e9;
    font-weight: 200;
    font-size: 20px;
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
  
}
.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.faq .accordion-button::after {
  transition: all 0.5s;
}
.faq .accordion-item{
border-bottom: 1px solid rgb(233, 233, 233) !important;
border-top:none !important;
border-left:none !important;
border-right:none !important;
box-shadow: none !important;
outline: none !important;
}
.faq .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-btn-color);
    background-color: transparent;
    box-shadow: unset;
}
.faq .accordion-button:focus{
  box-shadow: none !important;
}

.faq h3{
  font-weight: 700;
  font-size: 40px;
  color: #000;
  position: relative;
}
.faq h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 2px;
    background: #770465;
    background: linear-gradient(99deg, rgba(119, 4, 101, 1) 0%, rgba(213, 29, 115, 1) 100%);
    left: -991px;
    right: 0;
    bottom: -21px;
    margin: auto;
}


/*--------------------------------------------------------------
# Service page
--------------------------------------------------------------*/
.service-hero{
  padding-top: 130px;
}

.service-hero h1{
font-size: 40px;
color: #000;
font-weight: 600;
}
.service-hero-sub-title{
  font-size: 21px;
}
.service-hero .dot img {
    left: 14px;
    position: relative;
    top: 6px;
}
.core{
  background-color: #000;
}
.core h3{
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
.core p{
  color: #fff;
  font-weight: 200;
  padding: 20px 0px;
}
.core ul{
  list-style: none;
    color: white;
    line-height: 2.1;
    padding-left: 0px;
    font-size: 21px;
}
.core ul li{
      display: flex;
    align-items: baseline;
    gap: 17px;
}


.product h1{
font-size: 40px;
color: #000;
font-weight: 600;
}
.product .service-hero-sub-title{
  font-size: 20px;
}
.product .service-hero .dot img {
    left: 14px;
    position: relative;
    top: 6px;
}

.product h3{
  font-size: 40px;
  font-weight: 600;
  color: #000;
}
.product p{
  padding: 20px 0px;
  color: #000;
}
.product ul{
  color: #000;
  list-style: none;
    line-height: 2.1;
    padding-left: 0px;
    font-size: 21px;
}
.product ul li{
      display: flex;
    align-items: baseline;
    gap: 17px;
}
.product .product-img{
position: relative;
left: -120px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
  padding-left: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating {
  display: flex;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
  color: #FFD700;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#features .box img {
    width: 100%;
    height: auto;
}

.core img {
    width: 100%;
    height: auto;
}

.hero-image {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

section#experties{
  padding: 140px 0;
}

#about p {
    font-size: 25px;
}

section#experties p {
    font-size: 25px;
}

section#experties p span{
  display: block;
}

#experties .accordion-button{
  font-size: 25px;
    padding: 22px 15px;
}

section#engagement {
    padding-top: 130px;
    padding-bottom: 160px;
}

#engagement h2 span{
  display: block;
}

section#engagement .heading {
    margin-bottom: 130px;
}

section#faq {
    padding-top: 140px;
}

section#faq button {
    font-size: 25px;
    padding: 22px 15px;
}

section#faq {
    padding-top: 140px;
    padding-bottom: 150px;
}

.stories-text h2 span{
  display: block;
}

#features h2 span{
    display: unset;
  }


/* =========== About us page css =========== */
.about-pge{
  padding: 200px 0px 140px;
}

.about-pge h1{
  font-size: 70px;
  color: #000;
  font-weight: 700;
} 

.about-pge h1 span{
  display: block;
}

.about-full-img img{
  width: 100%;
  height: auto;
}

.about-full-img .container-fluid{
  padding-left: 0;
  padding-right: 0;
}

.about-full-img{
  margin-bottom: 100px;
}

.heading3 h3{
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.heading3 p{
  font-size: 25px;
}

.why-demorff{
  margin-bottom: 60px;
}

.heading3-2 h3{
  font-size: 40px;
  font-weight: 600;
  color: #000; 
  margin-bottom: 15px;
}

.heading3-2 p{
  font-size: 25px;
}

.about-point1-img{
  width: 100%;
  height: auto;
  position: relative;
}

.heading3-2 h2{
  color: #a3a3a3;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 30px;
}

.cofounder-sec2 img{
  position: relative;
  left: -120px;
  width: 110%;
}

section.cofounder-sec2 {
    margin: 70px 0px;
}

.cofounder-sec3{
  margin: 0px 0px 90px;
}
/* =========== // About us page css =========== */


/* =========== Contact Us page =========== */
.contact-sec1{
  position: relative;
  margin-bottom: 70px;
}

.contact-pge{
  margin-top: 180px;
  margin-bottom: 80px;
}

.contact-sec1 .col-lg-5{
  position: absolute;
  bottom: 0;
  right: 0;
}

.contact-pge h1 {
  color: #1a1a1a;
  font-size: 70px;
  font-weight: 800;
}

.contact-pge h1 span{
  color: #d41c72;
}

.cont-form-sec h3 {
  color: #1a1a1a;
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 40px;
}

.cont-form-sec h3 span{
  color: #d41c72;
}

.cont-form label{
  color: #1a1a1a;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 500;
}

.cont-form .form-group{
  margin-bottom: 20px;
}

.cont-form input{
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
}

.cont-form input:focus{
  box-shadow: unset;
}

.cont-form textarea{
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 12px;
}

.cont-form textarea:focus{
  box-shadow: unset;
}

.contact-btn1 button.btn {
  background-color: #000;
  color: #fff;
  width: 100%;
  font-size: 16px;
  padding: 10px;
  transition: .5s ease-in-out;
}

.contact-btn1 button.btn:hover{
  background-color: #d41c72;
}

.contact-dtl-col1 {
    display: flex;
    background: #000000;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: .5s ease-in-out;
}

.contact-dtl-col1:hover{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-dtl-col1 p {
    margin-bottom: 0;
    font-size: 15px;
    color: #dfdfdf;
}

.contact-dtl-col1 h5 {
    font-size: 19px;
    color: #fff;
}

.contact-dtl-col1 i{
background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
    font-size: 19px;
    margin-right: 20px;
}

.contact-dtl {
    position: relative;
    top: 30px;
}

form.cont-form {
    margin-right: 50px;
}
/* =========== // Contact Us page =========== */


/* ============ Tea Beverage page =========== */
section.tea-bevrage-pge {
    margin-top: 90px;
}

.tea-sec1{
  position: relative;
  padding: 100px 0px 300px;
  background-color: #ededed;
}

.shape1{
  position: absolute;
  top: 0;
  left: 25%;
}

.shape1 img{
  width: 100% !important; 
}

.shape2{
  position: absolute;
  bottom: 0;
  left: 0;
}

.shape2 img{
  width: 100% !important; 
}

.tea-sec1 img{
  width: 60%;
  height: auto;
  display: block;
  margin: auto;
  z-index: 2;
    position: relative;
}

.tea-sec1 .row{
  align-items: center;
}

.tea-hero-sec h1{
  color: #1a1a1a;
    line-height: 60px;
    font-weight: 500;
    font-size: 45px;
    margin-bottom: 27px;
}

.tea-hero-sec h1 span{
  display: block;
}

.app-overview-sec h3 {
    font-weight: 400;
    line-height: 45px;
}

.app-overview-sec h3 span{
  display: block;
}

.app-overview-sec {
    margin-top: -170px;
    z-index: 9;
    position: relative;
    background-color: #fff;
    padding-top: 100px;
    margin-bottom: 230px;
}

.order-detail-sec{
  background-color: #ededed;
  position: relative;
  padding-bottom: 110px;
}

.order-detail-sec .row{
  align-items: center;
}

.order-detail-sec h3{ 
  font-weight: 400;
  line-height: 45px;
}

.order-detail-img img{
  width: 70%;
  height: auto; 
  margin-top: -150px;
}

.tea-midd-banner{
  margin-top: 100px;
}

.tea-midd-banner img{
  width: 100%;
  height: auto;
}

.app-screen-sec{
  margin-top: 100px;
}

.app-screen-sec h3{ 
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 20px;
}

.app-screen-sec p span{
  display: block;
}

.app-screen-sec img{
  width: 85%;
  height: auto;
  display: block;
  margin: auto;
  padding-bottom: 20px;
}

.typography-sec{
  margin-top: 100px;
}

.typography-sec h3{ 
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 80px;
}

.tea-typo-txt h5{
color: #1a1a1a;
    font-size: 150px;
    font-weight: 400;
    line-height: 45px;
}

.typography-txt2 h5{
  color: #000;
    margin-bottom: 20px;
    font-size: 21px;
}

.cap-typoraphy{
margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 22px;
}

.low-typoraphy{
  margin-bottom: 0;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 22px;
}

.colors-col{
  margin-top: 70px;
} 

.colors-col h3{ 
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 40px;  
}

.color-palette1{
  background-color: #4c7158;
  width: 100%;
  height: 300px;
}

.color-palette2{
  background-color: #c4a25e;
  width: 100%;
  height: 300px;
}

.color-palette3{
  background-color: #fff9f6;
  width: 100%;
  height: 300px;
}

.color-palette4{
  background-color: #d9e3dd;
  width: 100%;
  height: 300px;
}

.color-palette5{
  background-color: #cdcdcd;
  width: 100%;
  height: 300px;
}

.color-palette6{
  background-color: #373636;
  width: 100%;
  height: 300px;
}

.thanks-watching-sec {
background-color: #ededed;
    padding: 90px 0px;
    margin-top: 130px;
}

.thanks-watching-sec h3{ 
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 40px;
}

.thanks-watching-sec h3 span{
  display: block;
}

.thanks-watching-sec i{
  background-color: #fff;
    font-size: 50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-watching-sec .col-lg-12{
  text-align: -webkit-center;
}

.tea-bevrage-pge h3{ 
  font-size: 40px;
  color: #000;
}

.story-col1 .stories-card{
  margin-right: 20px;
}

.story-col2 .stories-card{
  margin-left: 20px;
}
/* ============ // Tea Beverage page =========== */


/* ============ HR Management system ============ */
.hr-manag-sec1{
  margin-top: 90px;
  background-image: linear-gradient(to right, #f8f9fe, #eaebfb);
  padding-top: 60px;
  position: relative;
  padding-bottom: 40px;
}

.hr-manag-sec1 h5{
  color: #3e3e3e;
    font-size: 18px;
}

.hr-manag-sec1 h5 span{
  background-color: #20a200;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    border-radius: 10px;
}

.hr-manag-sec1 h1 {
    color: #3e4095;
    font-weight: 800;
    font-size: 50px;
    margin: 20px 0px;
}

.hr-manag-sec1 ul{
  display: flex;
  justify-content: center;
}

.hr-manag-sec1 ul li{
  list-style: none;
    float: left;
    margin-right: 50px;
    color: #424242;
    font-size: 16px;
    position: relative;
}

.blue-dot{
  background-color: #3e4095;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  top: 7px;
  left: -20px;
}

.green-dot{
  background-color: #00a859;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  top: 7px;
  left: -20px;
}

.orange-dot{
  background-color: #e97800;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  top: 7px;
  left: -20px;
}

.hero-img-hr-manag img{
  width: 100%;
  height: auto;
}

.hr-manag-sec1 .container{
  z-index: 2;
  position: relative;
}

.hero-manag-bg-img img{
  position: absolute;
  bottom: 0px;
  width: 50%;
  right: 0;
  z-index: 1;
}

.pro-description{
  margin: 70px 0px;
}

.hr-manag-pge h3{
  font-weight: 600;
  font-size: 40px;
  color: #000;
  margin-bottom: 25px;
}

.pro-description img{
  width: 100%;
  height: auto;
  margin: 50px 0px 30px;
}

.hr-manag-pge .middle-border{
  border: 1px solid #e9e9e9; 
  margin: 50px 0px;
}

.pulse-sec{
  margin-top: 90px;
}

.pulse-img img{
  width: 100%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;
}

.pulse-img-col{
  margin: 60px 0px;
}

.problem-sec img{
  width: 100%;
  height: auto;
}

.progress-bar-sec1 progress {
  width: 100%;
  height: 9px;
  appearance: none;
  border: none;
}

.progress-bar-sec1 progress::-webkit-progress-bar {
  background: #f1f1f1;
  border-radius: 20px;
}

.progress-bar-sec1 progress::-webkit-progress-value {
  background-color: #ee7700;
  border-radius: 20px;
}

.progress-bar-sec1 progress::-moz-progress-bar {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 20px;
}

.progress-bar-sec1 h5{
  font-size: 21px;
  color: #484848;
}

.progress-bar-sec1 {
  margin-top: 40px;
}

.problem-sec1{
  margin-top: 150px;
}

.problem-sec2{
  margin-top: 80px;
  margin-bottom: 130px;
}

.problem-sec2 progress::-webkit-progress-value {
    background-color: #05c756; 
}

.user-flow-sec{
  margin-top: 120px;
}

.diagram-img{
  margin-top: 100px;
}

.diagram-img h4{
color: #161616;
    font-size: 22px;
    font-weight: 600;
}

.approval-border{
border: 1px solid #e9e9e9;
    margin: 35px 0px;
}

.diagram-img img{
  width: 100%;
  height: auto;
}

.grid-sec{
  margin-top: 180px;
}

.grid-txt{
  margin-bottom: 80px;
}

.grid-txt p span{
  display: block;
}

.grid-img img{
  width: 100%;
  height: auto;
}

.grid-img2 img{
  width: 100%;
  height: auto;
  margin-top: 80px;
}

.wireframe-sec{
  margin-top: 140px;
}

.wireframe-sec img{
  width: 100%;
  height: auto;
}

.style-guide-sec{
  margin-top: 100px;
}

.color-palatte-row{
  margin-top: 50px;
}

.color-palatte-col1{
border-top: 1px solid #d9d9d9;
    padding: 25px 0;
}

.color-palatte-col1 h6{
  font-size: 15px;
  color: #161616;
}

.pallate-box1{
  width: 100%;
    height: 60px;
    border-radius: 5px;
}

.color-pallate-col2 p{
text-align: center;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.color-pallate-col2 span{
text-align: center;
    font-size: 13px;
    display: block;
    margin: auto;
    color: #818181;
}

.color-palatte-row .row{
  margin-bottom: 40px;
}

.color-palatte-blue{
  background-color: #3e4095;
}

.color-palatte-green{
  background-color: #00a859;
}

.color-palatte-heading{
  background-color: #0b0c2b;
}

.color-palatte-breadcrumb{
  background-color: #797992;
}

.color-palatte-label{
  background-color: #838497;
}

.color-palatte-inner-input-text{
  background-color: #9FA8B2;
}

.color-palatte-card-stroke{
  background-color: #CED2E2;
}

.color-palatte-input-field-stroke{
  background-color: #CED2E2;
}

.color-palatte-table-header{
  background-color: #efeff9;
}

.color-palatte-warning{
  background-color: #C50000;
}

.color-palatte-light-blue{
  background-color: #5B5DC2;
}

.color-pallate-col2 {
    margin-bottom: 30px;
}

.color-palatte-row h4{
  color: #161616;
    margin-bottom: 40px;
    font-size: 23px;
    font-weight: 600;
}

.typography-sec{
  margin-top: 40px;
}

.typography-sec h4{
  color: #161616;
    margin-bottom: 40px;
    font-size: 23px;
    font-weight: 600;
}

.typo-txt1{
  margin-bottom: 70px;
}

.typo-txt1 h2{
  color: #161616;
    font-size: 80px;
    font-weight: bold;
}

.typo-txt{
  margin-bottom: 40px;
}

.typo-txt2 h2{
font-size: 24px;
    color: #161616;
    font-weight: bold;
}

.typo-txt2 p{
font-size: 13px;
    color: #5e5e5e;
}

.typo-border{
  border-top: 1px solid #d9d9d9;
    margin: 7px 0px;
}

.typo-txt3 h2{
font-size: 24px;
    color: #161616;
    font-weight: 900;
}

.typo-txt3 p{
font-size: 13px;
    color: #5e5e5e;
}

.typo-txt4 h2{
font-size: 16px;
    color: #161616;
    font-weight: bold;
}

.typo-txt4 p{
font-size: 13px;
    color: #5e5e5e;
}

.typo-txt5 h2{
font-size: 16px;
    color: #161616;
    font-weight: 900;
}

.typo-txt5 p{
font-size: 13px;
    color: #5e5e5e;
}

.typo-txt6 h2{
font-size: 14px;
    color: #161616;
    font-weight: bold;
}

.typo-txt6 p{
font-size: 13px;
    color: #5e5e5e;
}

.typo-txt7 h2{
font-size: 14px;
    color: #161616;
    font-weight: 900;
}

.typo-txt7 p{
font-size: 13px;
    color: #5e5e5e;
}

.bottom-img-sec{
  margin-top: 80px;
}

.bottom-img-sec img{
  width: 100%;
  height: auto;
}

.our-work-pge{
  margin-top: 100px;
  background-color: #000; 
    padding-bottom: 130px;
    padding-top: 100px;
}
/* ============ // HR Management system ============ */



/* ================== Responsive css start here ================= */
/* Mobile tab */
@media (max-width: 767px){
  header#header .container-fluid {
    margin: 0 0px;
  }
  .hero .hero-visual .floating-elements .floating-card.card-3 {
    right: 0;
  }
  .hero-sub-title{
    font-size: 23px;
  }
  #stories{
    top: 0;
    padding-bottom: 70px;
    padding-top: 70px;
  }
  .about h3::after{
    left: 0;
    right: unset;
  }
  section#experties {
    padding: 70px 0;
  }
  section#engagement {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  section#engagement .heading {
    margin-bottom: 50px;
  }
  .engagement img{
    margin-bottom: 20px;
  }
  .engagement-row2{
    margin-top: 50px;
  }
  section#faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .stories-text h2{
    font-size: 35px;
  }
  .about h3{
    font-size: 35px;
  }
  .faq h3{
    font-size: 35px;
  }
  .engagement .heading h2{
    font-size: 35px !important;
  }
  #engagement h2 span {
    display: unset;
  }
  .stories-text h2 span{
    display: unset;
  }
  .stories-text p{
    font-size: 21px;
  }
  #about p {
    font-size: 21px;
  }
  section#experties p{
    font-size: 21px;
  }
  #experties .accordion-button{
    font-size: 21px;
  }
  .engagement .heading p{
    font-size: 21px;
  }
  .engagement p{
    font-size: 21px;
  }
  section#faq button{
    font-size: 21px;
  }
  .faq h3::after{
    left: 0;
    right: unset;
  }
  .core h3{
    font-size: 35px;
  }
  .service-hero h1{
    font-size: 35px;
    margin-bottom: 20px;
  }
  section.service-hero.section span.dot {
    display: none;
  }
  section.service-hero.section br {
    display: contents;
  }
  .core{
    padding: 80px 0px;
  }
  .product .product-img{
    left: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .product h3{
    font-size: 35px;
  }
  section.core h3 br {
    display: contents;
  }
  .about-pge h1{
    font-size: 40px;
  }
  .about-pge {
    padding: 120px 0px 60px;
  }
  .about-full-img {
    margin-bottom: 50px; 
  }
  .heading3 h3{
    font-size: 35px;
    margin-bottom: 15px;
  }
  .heading3-2 h3{
    font-size: 35px;
  }
  .heading3 p {
    font-size: 21px;
  }
  .heading3-2 p {
    font-size: 21px;
  }
  .cofounder-sec img{
    width: 100%;
    height: auto;
  }
  .cofounder-sec2 img{
    left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  section.cofounder-sec2 {
    margin: 70px 0px 30px;
  }
  .contact-pge h1{
    line-height: 40px;
    font-size: 35px;
  }
  .contact-sec1 .col-lg-5{
    position: unset;
  }
  form.cont-form {
    margin-right: 0px;
  }
  .tea-hero-sec h1{
    font-size: 35px;
    line-height: 40px;
  }
  .shape2 img{
    z-index: 1 !important;
  }
  .tea-bevrage-pge h3{
    font-size: 35px;
    line-height: 40px;
  } 
  .order-detail-img {
    margin-bottom: 40px;
  }
  .tea-midd-banner {
    margin-top: 30px;
  }
  .order-detail-sec{
    padding-bottom: 70px;
  } 
  .typography-txt1 h4{
    margin-bottom: 80px;
  }
  .cap-typoraphy{
    font-size: 14px;
  }
  .low-typoraphy{
    font-size: 14px;
  }
  .color-palette1{
    margin-bottom: 20px;
  }
  .thanks-watching-sec{
    margin-top: 80px;
  }
  .contact-pge{
    margin-top: 130px;
  }
  .story-col1 .stories-card{
    margin-right: 0px;
  }
  .story-col2 .stories-card{
    margin-left: 0px;
  }
  .hr-manag-sec1 h5{
    font-size: 15px;
  }
  .hr-manag-sec1 h5 span{
    font-size: 12px;
  }
  .hr-manag-sec1 h1{
    font-size: 35px;
  }
  .hr-manag-sec1 ul {
    display: inline-grid;
    text-align: -webkit-auto;
  }
  .hr-manag-pge h3{
    font-size: 35px;
    line-height: 40px;
  }
  .pulse-img img{
    margin-bottom: 20px;
  }
  .problem-sec1 {
    margin-top: 0px;
  }
  .pulse-sec {
    margin-top: 60px;
  }
  .pro-description {
    margin: 40px 0px;
  }
  .problem-sec2 {
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .user-flow-sec {
    margin-top: 60px;
  }
  .diagram-img {
    margin-top: 30px;
  }
  .grid-sec {
    margin-top: 90px;
  }
  .grid-img2 img{
    display: block;
    width: 60%;
    margin: auto;
  }
  .grid-img img{
    margin-bottom: 50px;
  }
  .wireframe-sec {
    margin-top: 70px;
  }
  .color-palatte-row .row {
    margin-bottom: 20px;
  }
  .blank-col {
    display: none;
  }
  .bottom-img-sec {
    margin-top: 30px;
  } 
  .tea-typo-txt h5{
    margin-bottom: 80px;
  }
}
/* // Mobile tab */


/* Tablet tab */
@media (max-width: 992px) and (min-width: 768px) {
  #stories{
    top: 0;
    padding-top: 70px;
  }
  #engagement h2 span {
    display: unset;
  }
  section#engagement .heading {
    margin-bottom: 70px;
  }
  .hero .hero-content {
    padding: 60px 0 20px;
  }
  header#header .container-fluid {
    margin: 0 0px;
  }
  .hero .hero-visual .hero-image-wrapper .hero-image{
    padding-bottom: 40px;
  }
  .about h3::after{
    left: 0;
    right: unset;
  }
  .faq h3::after{
    left: 0;
    right: unset;
  }
  #about{
    margin-top: 60px;
  }
  section.service-hero.section span.dot {
    display: none;
  }
  section.service-hero.section br {
    display: contents;
  }
  .core{
    padding: 80px 0px;
  }
  .product .product-img{
    left: 0;
    margin-bottom: 50px;
  }
  .about-pge h1{
    font-size: 40px;
  }
  .about-pge {
    padding: 150px 0px 80px;
  }
  .cofounder-sec img{
    width: 100%;
    height: auto;
  }
  .cofounder-sec2 img{
    left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-pge h1{
    line-height: 40px;
    font-size: 35px;
  }
  .contact-sec1 .col-lg-5{
    position: unset;
  }
  form.cont-form {
    margin-right: 0px;
  }
  .app-overview-sec{
    z-index: 9;
  }
  .color-palette1{
    margin-bottom: 20px;
  }
  .story-col1 .stories-card{
    margin-right: 0px;
  }
  .story-col2 .stories-card{
    margin-left: 0px;
  }
  .style-guide-sec {
    margin-top: 60px;
  }
  .bottom-img-sec {
    margin-top: 40px;
  }
  .problem-sec1 {
    margin-top: 50px;
  }
  .problem-sec2{
    margin-bottom: 80px;
  }
  .user-flow-sec {
    margin-top: 80px;
  }
  .grid-sec {
    margin-top: 100px;
  }
  .wireframe-sec {
    margin-top: 80px;
  }
}
/* // Tablet tab */


/* Mini Leptop tab */
@media (max-width: 1024px) and (min-width: 991px) {
  #stories{
    top: 0;
  }
  .hero{
    padding: 110px 0 0 0;
  }
  .hero .hero-visual .hero-image-wrapper .hero-image{
    padding-bottom: 50px;
  }
  .about h3::after{
    left: 0;
    right: unset;
  }
  .faq h3::after{
    left: 0;
    right: unset;
  }
  #about{
    margin-top: 60px;
  }
  .product .product-img{
    left: 0;
    width: 100%;
    height: auto;
  }
  .app-overview-sec{
    z-index: 9;
  }
}
/* // Mini Leptop tab */
/* ================== // Responsive css start here ================= */