:root {
	/* Card dimensions */
	--card-small: 248px;
	--card-large: 376px;
	--card-large-desktop: 510px;

	/* Typography */
	--font-heading: "Plus Jakarta Sans", sans-serif;
	--font-body: "Inter", sans-serif;

	/* Colors - Buttons */
	--btn-primary: #0CF0BB;
	--btn-primary-hover: #00ffc3;
	--btn-secondary: #101223;
	--btn-secondary-hover: #1c1f38;

	/* Colors - Text */
	--text-primary: #15172E;
	--text-secondary: #555963;
	--text-secondary-negative: #D3D5D9;
	--text-tertiary: #717683;
	--text-tertiary-negative: #A7ABB3;
	--text-link: #0040E0;
	--text-link-hover: #0037c4;
	--text-hex-color: #231C1C;

	/* Colors - Backgrounds */
	--bg-icon-dark: #1C1E21;
	--bg-icon-light: #FAFAF9;
	--bg-subtle: #F3F5F9;
	--surface-light: #FAFAFA;
	--bg-dark: #01110D;
	--bg-light: #F5F5F7;
	--bg-dark-hover: #333333;
	--bg-footer: #01110D;
	--bg-footer-icon: #061914;
	--bg-category-icon: #EBF0FF;
	--bg-light-grayish-green: #E8F2D9;
	--bg-arc: #E6E8F4;
	--bg-oxford-blue: #F8F8FC;
	--bg-hex-gray: #ccc;
	--bg-hex-lightgray: #f1f1f1;

	/* Colors - Base */
	--white: #FFF;
	--black: #000;
	--divider: #E9EAEC;

	/* Border Radius */
	--border-radius-full: 100%;
	--border-radius-2xl: 20px;
	--border-radius-xl: 16px;
	--border-radius-lg: 12px;
	--border-radius-md: 8px;
	--border-radius-sm: 6px;
	--border-radius-xs: 4px;

	/* Placeholder Text */
	--placeholder-text-light: #A0A6D4;
	--placeholder-text-dark: #A7ABB3;

	/* Borders */
	--border-light: #A0A6D4;
	--border-dark: #555963;
}

/* ---------- TYPOGRAPHY ---------- */
.h1 {
	font-size: 26px;
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: normal;
}

.h2 {
	font-size: 20px;
}

.h3 {
	font-size: 24px;
}

.h4 {
	font-size: 16px;
}

.h5 {
	font-size: 18px;
}

.h6 {
	font-size: 16px;
}

.h1.negative,
.h2.negative,
.h3.negative,
.h4.negative,
.h5.negative,
.h6.negative {
	color: var(--white);
}

.paragraph-xl {
	font-size: 14px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 150%;
}

.paragraph-lg,
.paragraph-md,
.paragraph-ml {
	font-size: 14px;
}

.paragraph-sm {
	font-size: 11px;
}

.paragraph-xs {
	font-size: 10px;
}

.paragraph-xxs {
	font-size: 13px;
}

.paragraph-xl.negative {
	color: var(--white);
}

.paragraph-xl.negative-secondary {
	color: var(--text-secondary-negative);
}

.paragraph-xl.negative-tertiary {
	color: var(--text-tertiary-negative);
}

.paragraph-xl.text-tertiary {
	color: var(--text-tertiary);
}

.paragraph-xl.text-primary {
	color: var(--text-primary);
}

.paragraph-xl.text-hex-color {
	color: var(--text-hex-color);
}

.paragraph-xl.text-neg-color {
	color: var(--text-secondary-negative);
}

a {
	 text-underline-offset: 1px !important;
}
/* ---------- LAYOUT ---------- */
body {
	background: var(--white);
}

.layout-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* ---------- NAVBAR ---------- */
.navbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--divider);
	background: var(--white);
	position: relative;
}

.navbar-toggle {
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	background: transparent !important;
	color: var(--black) !important;
	transition: background-color .2s ease;
}

.navbar-toggle:hover {
	background-color: var(--bg-subtle);
}

.navbar-toggle .iconify {
	color: var(--text-primary);
}

.navbar-logo img {
	/*height: 32px;
	width:98px;*/
}

.navbar-logo a {
	display: flex;
	column-gap: .5rem;
}

.navbar-menu-mobile {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--white);
	border: 1px solid var(--divider);
	border-top: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all .3s ease;
	display: none;
	z-index: 5;
}

.navbar-menu-mobile.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	display: block;
}

.navbar-menu-mobile ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.navbar-menu-mobile li {
	border-bottom: 1px solid var(--divider);
}

.navbar-menu-mobile li:last-child {
	border-bottom: none;
}

.navbar-menu-mobile a {
	display: block;
	padding: 16px 24px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	font-family: var(--font-heading);
}

.navbar-menu-mobile a:hover {
	background: var(--bg-subtle);
	color: var(--text-secondary);
}

.navbar-menu-desktop {
	display: none;
}

.navbar-menu-desktop ul {
	display: flex;
	gap: 29px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navbar-menu-desktop li {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
}

.navbar-menu-desktop a {
	text-decoration: none;
	color: inherit;
	font-family: var(--font-heading);
}

.navbar-menu-desktop a:hover {
	color: var(--text-secondary);
}

.navbar-actions-desktop {
	display: none;
}

.navbar-menu-mobile .navbar-actions-mobile {
	padding: 16px 24px;
	border-top: 1px solid var(--divider);
	/*width: 219px;*/
	text-align:center;
}

.navbar-menu-mobile .navbar-actions-mobile a {
	color: var(--white);
}

/* ---------- BUTTONS ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
	font-weight: 500;
	line-height: 1;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: all .3s ease-in-out;
	border-radius: var(--border-radius-md);
}

.btn .iconify {
	transition: transform .3s ease-in-out;
}

.btn:hover .iconify {
	transform: translateX(4px);
}

.btn-sm {
	font-size: 12px;
	padding: 12px 16px;
}

/*.btn-md { min-width: 102px; padding: 16px 24px; font-size: 14px; font-weight: 600; }*/
.btn-lg {
	min-width: 140px;
	padding: 20px 32px;
	font-size: 16px;
	font-family: var(--font-heading);
}

.btn-primary {
	background: var(--btn-primary);
	color: var(--text-primary);
}

.btn-primary:hover {
	background: var(--btn-primary-hover);
}

.btn-secondary {
	background: var(--btn-secondary);
	color: var(--white);
	font-family: var(--font-heading);
}

.btn-secondary:hover {
	background: var(--btn-secondary-hover);
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--border-light);
	border-radius: var(--border-radius-md);
	color: var(--text-primary);
}

.btn-outline:hover {
	background: var(--bg-subtle);
}

.btn-dark {
	background: var(--bg-dark);
	color: var(--white);
}

.btn-dark:hover {
	background: var(--bg-dark-hover);
}

.btn-link {
	background: transparent;
	border: none;
	color: var(--text-link);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
}

.btn-link:hover {
	color: var(--text-link-hover);
}

/* ---------- SEARCH ---------- */
.footersearch {  margin-bottom: 0px; width: 300px; }
.search-container {
	display: flex;
	align-items: center;
	width: fit-content;
	border: 1px solid var(--text-secondary);
	border-radius: var(--border-radius-md);
	padding: 4px 4px 4px 14px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(26px);
	margin-top: 32px;
}

.search-input-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.search-input {
	border: none;
	outline: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--text-primary);
}

.search-input::placeholder {
	color: var(--text-tertiary);
}

.search-input:focus::placeholder {
	color: var(--text-secondary);
}

.search-button {
	border: none;
	padding: 12px 20px;
	border-radius: var(--border-radius-sm);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	background: var(--btn-primary) !important;
	color: var(--bg-dark) !important;
	cursor: pointer;
	transition: background .2s ease;
}

.search-button:hover {
	opacity: .9;
}

/* ---------- FOOTER ---------- */
.footer-container {
	margin-top: auto;
	padding: 0;
}

.footer-content {
	padding: 20px;
	border-radius: 0;
	background: var(--bg-footer);
}

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

.important-links {
	margin-bottom: 60px;
}

.important-links a {
	text-decoration: none;
	font-size: 14px;
	color: var(--text-tertiary-negative);
}

.important-links a:hover {
	color: var(--text-tertiary);
}

.footer-container .icon {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-footer-icon);
}

.footer-container .icon .iconify {
	font-size: 20px;
	color: var(--text-tertiary-negative);
}

/* Sections inside footer */
.search .h6.negative {
	margin-bottom: 16px;
}

.wrapper {
	margin: 60px 0;
}

.wrapper .h6.negative {
	margin-bottom: 16px;
	font-size: 16px;
	color: var(--white);
}

.wrapper .paragraph-sm.negative-tertiary {
	font-size: 14px;
	color: var(--text-tertiary-negative);
	font-family: var(--font-body) !important;
}

.wrapper .paragraph-sm.negative-secondary {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-secondary-negative);
	font-family: var(--font-body) !important;
}
.wrapper-links ul li a{
	font-size: 14px;
	color: var(--text-tertiary-negative);
	font-family: var(--font-body) !important;
}
.wrapper-links ul li{
	margin-bottom: 6px;
}


/*.wrapper-links {
	margin-bottom: 60px;
}*/

.wrapper-links .h6.negative,
.download-app .h6.negative,
.get-social .h6.negative {
	color: var(--white);
	font-size: 16px;
}

.wrapper-links .h6.negative {
	margin-bottom: 24px;
}

.download-app .h6.negative {
	margin-bottom: 20px;
}

.get-social .h6.negative {
	margin-bottom: 24px;
}

.download-app .flex-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 32px;
}

.download-app .flex-col img {
	width: 125px;
	height: 42px;
}

.get-social .flex {
	display: flex;
	align-items: center;
	gap: 24px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	/*margin-top: 16px;*/
	margin-top: 32px;
}

.contact-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.3;
}

.contact-text p {
	margin: 0;
}

.copy-txt {
	color: var(--text-tertiary-negative);
	margin-top: 20px;
	text-align: center;
	font-family: var(--font-body);
}

/* ---------- UTILITIES ---------- */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.gap-3 {
	gap: 12px;
}

.mt-\[32px\] {
	margin-top: 32px;
}

/*Hero Section - 20-8-25*/
.mobile-hero {
	margin-top: 40px;
	width: 100%;
}

.mobile-hero-subtitle {
	margin-top: 24px;
	width: 100%;
}

.mobile-hero-detail {
	margin-top: 20px;
	width: 100%;
}

.hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	padding: 0px 16px 40px 16px;
	text-align: center;
	min-height: 560px;
	flex-wrap: wrap;
	/*background-image: url('../images/blog-hero-mobile.png');*/
	align-content: space-between;
	background: no-repeat;
	background-size: cover;
}

.hero .hero-content {
	width: 100%;
}

.hero .scroll-indicator {
	position: relative;
	width: 76px;
	height: 76px;
}

.hero .circle-text {
	width: 100%;
	height: 100%;
	background-image: url('../images/scroll-down.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	animation: rotateImage 10s linear infinite;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.hero .scroll-indicator .arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	cursor: pointer;
}

.scroll-button {
	background: none !important;
	border: none !important;
	cursor: pointer;
	padding: 0;
}

@keyframes rotateImage {
	0% {
		transform: rotate(0deg);
	}

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

.custom-container {
	padding: 0px 5px 0px 5px;
}

.m-tp5 {
	margin-top: 4px;
}

.btn-md {
	width: 100%;
	padding: 15.5px 20px;
}

.cta-container a {
	font-size: 16px;
}

.body-container {
	margin: 40px 20px 40px 20px;
}

/*.body-container-search {
	margin: 40px 20px 40px 20px;
}*/

.body-container-search {
	padding: 32px 20px 40px 20px;
	margin:0 auto;
}

.viewall {
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	text-decoration: underline;
}

.bg-customer-care {
	background-color: var(--bg-light-grayish-green);
	border-radius: var(--border-radius-sm);
}

.customer-care-title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	margin-bottom: 12px;
}

.customer-care-des {
	font-family: var(--font-body);
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 32px;
	color: var(--text-secondary);
}

.customer-care-container {
	margin-top: 0px;
	margin-left: 0px;
	width: 100%;
	padding: 40px 16px 0px 16px;
}

.blog-card {
	border-radius: var(--border-radius-lg);
}

.tips {
	padding: 4px 10px;
	justify-content: center;
	align-items: center;
	gap: 4px;
	border-radius: 52px;
	color: var(--text-link);
	background: var(--bg-category-icon);
}

.monthdate {
	color: var(--text-tertiary-negative);
	font-family: var(--font-body);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.tips-monthdate {
	display: flex;
	/*justify-content: space-between;*/
}

.mb-20px {
	margin-bottom: 20px;
}

.gap-y-40px {
	row-gap: 60px;
}

.auth-name {
	color: var(--text-tertiary-negative);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 150%;
}

.blogdes {
	color: var(--text-tertiary);
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.readblog {
	color: var(--text-primary);
	font-weight: 600;
	line-height: 0%;
}

.img-arrow {
	width: 65%;
}

.read-blog-link {
	display: flex;
	align-items: center;
	color: var(--text-primary);
	font-weight: 600;
	text-decoration: underline;
	gap: 3px;
}

.sort-button-size {
	padding: 10px 14px;
	align-items: center;
	gap: 4px;
	border-radius: 38px;
	border: 1.5px solid var(--divider);
	background: var(--white) !important;
	color: var(--text-secondary) !important;
}

.mb-40px {
	margin-bottom: 40px;
}

form.search-container-form.search-form {
	display: flex;
	min-width: 240px;
	align-items: center;
	overflow: hidden;
	color: var(--text-primary);
	white-space: nowrap;
	text-align: center;
	justify-content: space-between;
	width: 100%;
	margin: auto 0;
	padding: 4px 4px 4px 12px;
	font: 15px Plus Jakarta Sans, sans-serif;
	position: relative;
	outline: none;
	border-radius: 8px;
	border: 1px solid var(--text-secondary-negative);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(26px);
}

.search-input-wrapper {
	position: relative;
	flex: 1;
}

.search-icon {
	width: 3%;
}

.search-input-form {
	width: 100%;
	/*padding: 8px 8px 8px 40px;*/
	padding: 10px 8px 10px 8px !important;
	font-size: 15px;
	/*height: 50px;*/
	color: var(--text-primary);
	opacity: 0.5;
	line-height: 0px !important;
}

.search-form .search-field {
	margin-top: 0px !important;
	margin-right: 0px !important;
	border: none;
}

.search-button-black {
	color: var(--white) !important;
	align-self: stretch;
	border-radius: 4px;
	background-color: var(--btn-secondary);
	gap: 10px;
	overflow: hidden;
	font-weight: 600;
	margin: auto 0;
	padding: 10px 16px;
	border: none;
	cursor: pointer;
	position: absolute;
	right: 5px;
	top: 4px;
	font-size: 14px;
}

.search-button-black:hover {
	background-color: var(--btn-secondary);
	color: var(--white);
}

#search-input::placeholder {
	color: var(--text-primary); 
	opacity: 1; 
  }

input:focus,
button:focus {
	outline: none;
	box-shadow: none;
}

input:focus {
	outline: none !important;
	border-style: none;
	box-shadow: none;
}

.sort-btn.active {
	background-color: var(--text-primary);
	color: var(--white);
	border-color: var(--text-primary);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.blog-card-img {
	aspect-ratio: 1.97 / 1;
	object-fit: cover;
	object-position: center center;
	width: 100%;
	transition: transform 0.4s ease-in-out;
	border-radius: var(--border-radius-lg);
}

.blog-card-img:hover {
	transform: scale(1.05);
}

.blog-card-img-wrapper,
.image-container {
	overflow: hidden;
	border-radius: var(--border-radius-lg);
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: flex-start;
}

.navigation.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 10px 0;
	margin: 0;
}

.page-numbers {
	padding: 8px 12px;
	background-color: #f1f1f1;
	border: 1px solid var(--bg-hex-gray);
	text-decoration: none;
	color: #333;
	border-radius: 4px;
	transition: background-color 0.3s ease;
	font-size: 12px;
}

.page-numbers.current {
	background-color: var(--black);
	color: var(--white);
	border: 1px solid var(--black);
}

.next.page-numbers {
	font-weight: bold;
	margin-left: 10px;
	background-color: var(--black);
	color: var(--white);
	padding: 8px 12px;
	border: 1px solid var(--black);
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.pagination,
.comments-pagination {
	border: none !important;
}

.rounded-lg a {
	font-size: 12px;
}

.rounded-lg {
	padding-bottom: 10px;
}

.wrap {
	flex-wrap: wrap;
}

.page-header {
	padding-top: 20px;
	padding-bottom: 20px;
}

.search h1.page-title {
	color: var(--black);
	font-family: var(--font-heading);
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
}

.error404 h1.page-title {
	color: var(--black);
	font-family: var(--font-heading);
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
}

.error404 .page-content p {
	color: var(--text-tertiary);
	font-family: var(--font-body);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.search-submit {
	border-radius: 12px !important;
	padding: 12px !important;
	margin: 0px !important;
	margin-left: 5px !important;
	color: var(--white) !important;
}

.search-submit:hover {
	color: var(--black) !important;
}

form.search-container.search-form {
	display: flex;
	min-width: 240px;
	align-items: center;
	overflow: hidden;
	color: var(--text-primary);
	white-space: nowrap;
	text-align: center;
	justify-content: space-between;
	width: 540px;
	margin: auto 0;
	padding: 4px 4px 4px 12px;
	font: 15px Plus Jakarta Sans, sans-serif;
	position: relative;
	outline: none;
}


/* Layout wrapper for contributor + content */
.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}

/* Contributor section */
.contributor {
  flex: 1;
  max-width: 100%;
}

.badge {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.author-section {
  display: flex;
  align-items: center;
  margin: 24px 0;
  font-size: 14px;
  color: #555;
}

.author-section img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.reading-time {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
  gap: 12px;
}

/* Blog content */
.blog-content {
  flex: 3;
  font-size: 14px;
  font-family: var(--font-body);
}

.hero-detailpage {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	/*margin: 0 auto;*/
	padding: 20px;
	border-radius: var(--border-radius-lg);
	flex-wrap: nowrap;
	justify-content: space-between;
}

.img-boder{
	border-radius: 12px;
	margin-top: 24px;
}

.txt-center {
	text-align: left;
}

.contributor-txt{
	color: var(--text-secondary);
	font-family: var(--font-body);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
}

.custom-line {
  border-top: 1px solid var(--divider); 
  margin: 24px 0;
}

.contributor-name {
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
}

.contributor-date {
	color: var(--text-tertiary-negative);
	font-family: var(--font-body);
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; 
}

.m-hide {
	display :none;
}

.relatedblog {
	color: var(--text-primary);
	font-family: var(--font-heading);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	padding-bottom: 40px;
	padding-top: 40px;
}

.blog-content ul {
	list-style: unset;
	padding-left: 20px;
	color: var(--text-tertiary);
	font-family: var(--font-body);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin-bottom:20px;
}

.blog-content h2:first-of-type {
    margin-top: 32px; 
}

.blog-content h2 {
	color: var(--text-primary);
	font-family: var(--font-heading);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom:24px;
	margin-top: 40px;
}

.blog-content h3 {
	color: var(--text-secondary);
	font-family: var(--font-heading);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom:12px;
	margin-top: 24px;
}

.blog-content p {
	color: var(--text-tertiary);
	font-family: var(--font-body);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin-bottom:10px;
}

.hero-image {
	width:100%;
}
	
.search-input-wrapper input {
	border: none;
}

.navbar-menu-desktop ul li.menu-item-12 > a {
    font-weight: bold;
}

.hide-mobile {
	display: none !important;
}

.w-28 {
	width: 100% !important;
}

.blog-content figure {
	width: 100% !important;
}

.blog-content .wp-caption-text {
	color: var(--text-tertiary);
    font-family: var(--font-body);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 10px;
}

.logo-small {
	width :40px;
	height :40px;
}

.logo-big {
	width :185px;
	height :30px;
}

/* ---------- DESKTOP OVERRIDES ---------- */
@media (min-width: 768px) {
	.h1 {
		font-size: 48px;
		font-family: var(--font-heading);
		font-weight: 600;
		line-height: 140%;
	}

	.h2 {
		font-size: 40px;
	}

	.h3 {
		font-size: 32px;
	}

	.h4 {
		font-size: 24px;
	}

	.h5 {
		font-size: 20px;
	}

	.h6 {
		font-size: 18px;
	}

	.paragraph-xl {
		font-size: 20px;
		font-family: var(--font-body);
		font-weight: 400;
		line-height: 150%;
	}

	.paragraph-lg {
		font-size: 18px;
	}

	.paragraph-md {
		font-size: 16px;
	}

	.paragraph-sm {
		font-size: 14px;
		/*margin-bottom: 32px;*/
	}

	.navbar-container {
		padding: 20px 132px;
	}

	.navbar-toggle {
		display: none;
	}

	.navbar-actions-desktop {
		display: block;
	}

	.navbar-menu-desktop {
		display: block;
	}

	.btn-md {
		/*width: 211px;*/
		font-size: 14px;
		font-weight: 600;
	}
	
	.btn-md1 {
		width: 211px;
	}

	.btn-sm {
		font-size: 14px;
	}

	.btn-lg {
		font-size: 18px;
	}

	/*.search {  margin-bottom: 60px; }	*/
	.search-input {
		font-size: 14px;
	}

	.search-button {
		padding: 10px 16px;
		font-size: 14px;
	}

	.footer-container {
		padding: 20px;
	}

	.footer-content {
		padding: 64px 112px;
		border-radius: 32px;
	}

	.wrapper {
		margin-top: 0px;
	}

	.wrapper .h6.negative,
	.wrapper-links .h6.negative,
	.download-app .h6.negative,
	.get-social .h6.negative {
		font-size: 18px;
		font-family: var(--font-heading) !important;
		letter-spacing : normal !important;
	}

	.contact-item {
		margin-bottom: 32px;
	}

	.icon-circle {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.05);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.icon-circle img {
		width: 20px;
		height: 20px;
	}

	.copy-txt {
		font-size: 10px;
	}

	/*Hero Section - 20-8-25*/
	.desktop-hero {
		margin-top: 1px;
	}

	.desktop-hero-subtitle {
		margin-top: 32px;
		width: 414px;
	}

	.custom-container {
		width: 100%;
		padding: 0px 20px 20px 20px;
		margin: 0 auto;
	}

	.hero {
		/*background-image: url('../images/blog-hero.png');*/
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		min-height: 500px;
		color: var(--white);
		padding: 0px 112px 120px 112px;
		border-radius: var(--border-radius-lg);
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	.hero .hero-content {
		max-width: 600px;
		text-align: left;
	}

	.gap-y-40px {
		row-gap: 40px;
	}

	.page-title {
		font-size: 48px;
		font-family: var(--font-heading);
		font-weight: 600;
		line-height: 140%;
	}

	.body-container {
		margin: 120px 112px 0px 112px;
	}

	/*.body-container-search {
		margin: 60px 112px 0px 112px;
	}*/
	
	.body-container-search {
		padding: 60px 112px 0px 112px;
	}

	.sort-lable-size {
		font-size: 15px;
	}

	.sort-button-size {
		padding: 10px 14px;
		align-items: center;
		gap: 4px;
	}

	.blog-serch-button {
		padding: 12px 24px;
	}

	.h-51 {
		border: 1.5px solid var(--divider);
		min-height: 51px;
		padding-right: 3px;
	}

	.viewall {
		margin-top: 60px;
		margin-bottom: 60px;
		font-family: var(--font-heading);
		font-size: 15px;
		font-weight: 600;
	}

	.bg-customer-care {
		border-radius: var(--border-radius-2xl);
		background-size: cover;
	}

	.customer-care-img {
		width: 100%;
		border-radius: 0px 0px 20px 0px;
	}

	.customer-care-container {
		margin-top: 153px;
		margin-left: 111px;
		width: 536px;
	}

	.customer-care-title {
		color: var(--text-primary);
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 140%;
		margin-bottom: 20px;
	}

	.customer-care-des {
		color: var(--text-secondary);
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 140%;
		margin-bottom: 40px;
		text-align: left;
	}

	.cta-container {
		margin-bottom: 97px;
	}

	.scroll-button {
		background: none !important;
		border: none !important;
		cursor: pointer;
		padding: 0;
	}

	.img-container {
		position: relative;
	}

	.img-container-des {
		position: absolute;
		bottom: 0;
		right: 0;
		max-width: 530px;
		height: auto;
	}

	.cta-container a span {
		display: inline-block;
		transform: translateX(20%);
		transition: 1s;
	}

	.cta-container a:hover>span {
		transform: translateX(50%);
	}

	.mb-40px {
		margin-bottom: 10px;
	}

	form.search-container-form.search-form {
		width: 500px;
	}
	
	.txt-center {
		text-align: center;
	}
	
	.d-hide {
		display: none;
	}
	
	.m-hide {
		display :inline-block;
	}
	
	.img-boder{
		margin-top: 80px;
	}
	
	.contributor {
		max-width: 176px;
	}
	
	.content-wrapper {
	  gap: 120px;
	  flex-wrap: wrap;
	  flex-direction: row;
	}
	
	.relatedblog {
		font-size: 32px;
		font-style: normal;
		font-weight: 600;
		line-height: 140%;
		padding-bottom: 40px;
		padding-top: 120px;
	}
	
	.blog-content h2 {
		margin-top: 60px;
		margin-bottom:32px;
		font-size: 24px;
	}
	
	.blog-content h3 {
		font-size: 18px;
		margin-bottom:16px;
		margin-top: 32px;
	}

	.m-b-60 {
		margin-bottom: 60px;
	}

	.important-links {
		margin-bottom: 12px;
	}

	.important-links ul {
		margin-bottom: 0px;
	}

	.wrapper {
		margin: 0px;
	}
	
	.hero-detailpage{
		padding: 60px 112px 0px 112px;
	}
	
	.hide-mobile {
		display: block !important;
	}
	
	.w-28 {
		width: 7rem !important;
	}
	
	.logo-small {
		width :30px;
		height :30px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hero {
		align-content: flex-end;
		padding: 0px 66px 66px 66px;
		flex-wrap: nowrap;
	}

	.hero .hero-content {
		text-align: left;
	}

	.customer-care-container {
		margin-top: 70px;
		margin-left: 35px;
		width: 100%;
	}

	.navbar-container {
		padding: 20px 22px;
	}

	.footer-content {
		padding: 64px 50px;
	}
	
	.body-container-search {
        padding: 60px 60px 0px 60px;
    }
	.min-wid {
		flex-wrap: wrap;
	}
	.hide-mobile {
		display: none !important;
	}
	.navbar-menu-desktop {
		display: none;
	}
	.navbar-actions-desktop {
		display: none;
	}
	.navbar-toggle {
		display: block;
	}
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .navbar-container {
        padding: 20px 64px;
    }
	.footer-content {
		padding: 32px 40px;
	}
	.footer-container {
        padding: 10px;
    }
	.download-app .flex-col img {
		width: 135px;
		height: 42px;
	}
	.icon-circle {
		width: 40px;
		height: 40px;
	}
}