:root {
  --bs-body-bg:#f1f5f9;	  
  --bs-primary: #112138;  
  --bs-accent: #f58531;  
  --bs-accent-hover: #e0751f;
  --bs-secondary: #1a3a5c;  
  --bs-btn-1a: #ffffff1a;  
  --bs-light-orange: #f585310a;  
  --bs-highlight: #fbc124;  
  --bs-bg: #ffffff;
  --bs-bg-fcfdfd: #fcfdfd;
  --bs-tag-bg: #11213814;
  --bs-text: #2d3748;  
  --bs-text-gray: #556171;  
  --bs-text-light: #64748b;  
  --bs-card-bg: #f8f9fa; 
  --bs-text-lightwhite: #ffffffa6; 
  --bs-text-white: #ffffff; 
  --bs-text-d9: #ffffffd9; 
  --bs-bg-light-white: #ffffff14;
  --bs-border: #e2e8f0;  
  --bs-success: #10b981;  
  --bs-error: #e53e3e;
  --bs-radius: 8px;  
  --bs-radius-lg: 12px;
  --bs-shadow: 0 1px 3px rgba(0,0,0,0.08);
  --bs-btn-hover-shadow: 0 4px 16px #f5853159;
  --bs-shadow-hover: 0 4px 12px rgba(0,0,0,0.1);
  --bs-max-container: 1200px;
  --bs-container: 100%;
  --bs-font: 'Inter', -apple-system, sans-serif;
  --bs-font-p: 17px;
  --bs-font-h1: 36px;
  --bs-font-h2: 28px;
  --bs-font-h3: 22px;
}


/*
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*/

/* font-family: "Inter", sans-serif;*/

/*======================HEADER=======================*/

body {
	font-family: var(--bs-font);
	font-size: var(--bs-font-p);
	line-height:1.8;
	color: var(--bs-text);
	background: var(--bs-body-bg);
	padding: 40px 20px;
	-webkit-font-smoothing: antialiased;
}


body h1 {
	font-size: var(--bs-font-h1);
	margin:0 0 15px;
	font-weight: 800;
}

body h2 {
	font-size: var(--bs-font-h2);
	margin:0 0 15px;
	font-weight: 700;
}

body h3 {
	font-size: var(--bs-font-h3);
	margin:0 0 15px;
	font-weight: 700;
}

body p {
	font-size: var(--bs-font-p);
	line-height:1.8;
	margin:0 0 20px;
	color: var(--bs-text);
}






.container {
	max-width: var(--bs-max-container);
	width: var(--bs-container);
	margin: 0 auto;
}



.site-header {
	border-bottom: 1px solid var(--bs-border);
}


#masthead .inside-header {
	padding: 5px 0;
	max-width: var(--bs-max-container);
	width: var(--bs-container);
}


#masthead .site-logo img {
	height: 36px;
}


#masthead .site-branding {
  display: none;
}


#masthead nav li {
	margin-left: 32px;
}


#masthead nav li a {
	font-size: 16px;
	color: var(--bs-text);
	text-decoration: none;
	transition: color .2s ease;
	padding:0;
}


#masthead nav li[class*="current-menu-"] > a {
	color: var(--bs-accent);
}


#masthead nav li a:hover {
  color: var(--bs-accent);
}


#masthead nav li.btn-submit-brand a {
	background: var(--bs-accent);
	color: var(--bs-text-white);
	padding: 8px 18px;
	border: none;
	border-radius: var(--bs-radius);
	font-weight: 600;
	font-size: 14px;
	font-family: var(--bs-font);
	cursor: pointer;
	transition: background .2s ease;
	line-height: normal;
}


#masthead nav li.btn-submit-brand a:hover {
	background: var(--bs-accent-hover);
}



.nav-float-right .navigation-stick {
	width: calc(100% - 40px ) !important;
	left: 0;
	right: 0;
	margin: 0 auto;
}



.sticky-enabled .main-navigation.is_stuck {
	box-shadow: 0 2px 8px #00000014;
}



#masthead .menu-toggle {
  background: transparent;
  padding: 0;
}


#masthead .menu-toggle svg {
	width: 25px;
	height: 23px;
	line-height: normal;
}


#masthead .menu-toggle .icon-menu-bars {
  top: 6px;
  position: relative;
}





/*============POPUP=============*/



#bs-brand-modal {
	position: fixed;
	inset: 0;
	background: #081222b8;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	animation: sbm-fade-in .2s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}


.bs-modal-card {
	position: relative;
	background: #fff;
	border-radius: 20px;
	width: 100%;
	max-width: 700px;
	max-height: 92vh;
	overflow-y: auto;
	box-shadow: 0 40px 100px #00000073,0 0 0 1px #ffffff0f;
	animation: sbm-slide-up .28s cubic-bezier(.16,1,.3,1);
	scrollbar-width: thin;
	scrollbar-color: #e2e8f0 transparent;
	display: flex;
	flex-direction: column;
}


.sbm-header {
	background: var(--bs-primary, #112138);
	border-radius: 20px 20px 0 0;
	padding: 30px 32px 28px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	position: relative;
}


.sbm-header__content {
	flex: 1;
	min-width: 0;
	position: relative;
}


.sbm-header__content span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bs-accent, #f58531);
  margin-bottom: 10px;
}


.sbm-header__content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--bs-text-white);
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -.3px;
}


.sbm-header__content p {
	font-size: 14px;
	color: var(--bs-text-lightwhite);
	margin: 0 0 20px;
	line-height: 1.65;
	max-width: 460px;
}


.bs-modal-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}


.bs-modal-trust span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #f585311f;
	border: 1px solid rgba(245,133,49,.28);
	color: #ffffffe0;
	font-size: 12px;
	font-weight: 500;
	padding: 3px 11px;
	border-radius: 100px;
	text-transform: none;
	letter-spacing: normal;
	margin-bottom: 2px;
}


.bs-modal-trust span svg {
  flex-shrink: 0;
  stroke: var(--bs-accent, #f58531);
}


.bs-modal-close {
	width: 36px;
	height: 36px;
	border-radius: 100%;
	border: 1px solid rgba(255,255,255,.18);
	background: #ffffff12;
	color: var(--bs-text-lightwhite);
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 0 17px;
	font-size: 24px;
	line-height: 29px;
}


.brand-form {
  padding: 28px 32px 32px;
}


.brand-form .form-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}


.brand-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 3px;
}


.form-row .form-group {
  width: 48.5%;
}


.form-group {
	margin-bottom: 17px;
}


.form-group br {
  display: none;
}


.form-group p {
	margin: 0;
}


.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px;
  font-family: var(--bs-font);
  font-size: 15px;
  color: var(--bs-text);
  background: var(--base-3);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius);
  outline: none;
  transition: border-color .2s ease,box-shadow .2s ease;
}


.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--bs-accent);
  box-shadow: var(--bs-shadow-hover);
}


.form-group textarea {
  height: 100px;
  resize: vertical;
}


.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  appearance: none;
  background-position: calc(100% - 15px) center;
}


.wpcf7-checkbox .wpcf7-list-item {
	margin: 0 10px 3px 0;
	display: flex;
	flex-flow: row wrap;
}


.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}



.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin: 0;
}


.wpcf7-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bs-accent);
  cursor: pointer;
  flex-shrink: 0;
}


.wpcf7-checkbox label span {
  font-size: 14px;
  color: var(--bs-text);
  cursor: pointer;
}



.brand-form input[type="submit"] {
	background: var(--bs-accent);
	color: var(--bs-text-white);
	border: none;
	border-radius: var(--bs-radius);
	padding: 12px 12px;
	font-family: var(--bs-font);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease,transform .1s ease;
	width: var(--bs-container);
}

.brand-form input[type="submit"]:hover {
  background: var(--bs-accent-hover);
}



.bs-modal-card .wpcf7-response-output {
	margin: 0 auto 37px !important;
	width: calc(100% - 64px);
	font-size: 13px;
	text-align: center;
}




/*============POPUP=============*/





/*======================HEADER=======================*/




/*======================HOME=======================*/

#page {
	min-height: 550px;
	width: var(--bs-container);
	max-width: var(--bs-container);
}


.home-wrapper {
	width: var(--bs-container);
}


.bs-hero {
	background: var(--bs-primary);
	padding: 80px 0;
}


.bs-hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}


.bs-hero h1 {
	color: var(--bs-text-white);
	font-size: var(--bs-font-h1);
	font-weight: 800;
	line-height: 1.2;
}


.bs-hero p {
	color: var(--bs-text-d9);
}


.bs-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
	flex-wrap: wrap;
}


.bs-btn-primary {
	 background: var(--bs-accent);
	display: inline-block;
	align-items: center;
	gap: 6px;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--bs-radius);
	text-decoration: none;
	cursor: pointer;
	border: none;
	font-family: var(--bs-font);
	transition: all .3s ease;
	color: var(--bs-text-white);
	border: none;
}


.bs-btn-primary:hover {
	background: var(--bs-accent-hover);
	transform: translateY(-1px);
	box-shadow: var(--bs-btn-hover-shadow);
	color: var(--bs-text-white);
}


.bs-btn-dark {
	background: var(--bs-btn-1a);
	display: inline-block;
	align-items: center;
	gap: 6px;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--bs-radius);
	text-decoration: none;
	cursor: pointer;
	border: none;
	font-family: var(--bs-font);
	transition: all .3s ease;
	color: var(--bs-text-white);
	border: none;
}


.bs-btn-dark:hover {
	background: #ffffff2e;
	color: var(--bs-text-white);
}



.bs-intro {
	background: var(--bs-bg);
	padding: 60px 0;
}


.bs-intro-card {
	background: linear-gradient(to right,#11213808,#f585310d);
	border-left: 4px solid var(--bs-accent);
	padding: 28px 32px;
	border-radius: var(--bs-radius-lg);
}



.bs-intro-card p {
	line-height: 1.7;
	color: var(--bs-text);
	margin-bottom: 0;
}



.bs-how {
	background: var(--bs-card-bg);
	padding: 80px 0;
}


.bs-how h2 {
	color: var(--bs-primary);
	font-weight: 700;
	text-align: center;
	margin-bottom: 48px;
}


.bs-how-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 32px;
	padding: 4px 0;
}


.bs-how-card {
	background: var(--bs-bg);
	border-radius: var(--bs-radius-lg);
	padding: 40px 28px;
	text-align: center;
	box-shadow: var(--bs-shadow);
	transition: box-shadow .3s ease,transform .3s ease;
	-webkit-transition: box-shadow .3s ease,transform .3s ease;
	-moz-transition: box-shadow .3s ease,transform .3s ease;
	-ms-transition: box-shadow .3s ease,transform .3s ease;
}


.bs-how-card:hover {
	box-shadow: var(--bs-shadow-hover);
	transform: translateY(-2px);
}



.bs-step {
	width: 56px;
	height: 56px;
	background: var(--bs-accent);
	color: var(--bs-text-white);
	font-size: 24px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}



.bs-how-card h3 {
	color: var(--bs-primary);
	margin-top: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}


.bs-how-card p {
	color: var(--bs-text-light);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}



.bs-browse {
	background: var(--bs-bg);
	padding: 80px 0;
}


.bs-browse h2 {
	color: var(--bs-primary);
	text-align: center;
	margin-bottom: 40px;
}


.bs-browse-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 24px;
}



.bs-browse-card {
	background: #fff;
	border: 1px solid var(--bs-border);
	border-radius: var(--bs-radius-lg);
	padding: 32px;
	box-shadow: var(--bs-shadow);
	transition: box-shadow .3s ease;
	cursor: pointer;
}


.bs-browse-card:hover {
	box-shadow: var(--bs-shadow-hover);
}


.bs-browse-card.active {
	border-left: 4px solid var(--bs-accent);
}


.bs-browse-card .badge {
	background: var(--bs-highlight);
	color: var(--bs-primary);
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	padding: 1px 12px;
	border-radius: 20px;
	margin-bottom: 14px;
}


.badge.green {
	background: var(--bs-success);
	color: var(--bs-text-white);
}


.bs-browse-card.active h3 {
	color: var(--bs-primary);
}


.bs-browse-card h3 {
	color: var(--bs-text-gray);
	margin-bottom: 10px;
}


.bs-browse-card p {
	margin-bottom: 16px;
	font-size: 15px;
	line-height: 1.6;
}


.bs-browse-card a {
	color: var(--bs-accent);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	display: inline-block;
	margin-top: 4px;
	transition: gap .2s ease;
}



.bs-browse-card a:hover {
	color: var(--bs-accent-hover);
	text-decoration: underline;
}





.bs-featured {
	background: var(--bs-card-bg);
	padding: 80px 0;
}


.bs-featured h2 {
	color: var(--bs-primary);
	font-weight: 700;
	text-align: center;
	margin-bottom: 12px;
}


.bs-featured p {
	color: var(--bs-text-light);
	font-size: 16px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 45px;
	line-height: 1.6;
}


.bs-featured-grid {
	display: flex;
	gap: 24px;
}



.bs-brand-card {
	width: 23.5%;
	background: var(--bs-bg);
	border-radius: var(--bs-radius-lg);
	box-shadow: var(--bs-shadow);
	overflow: hidden;
	transition: box-shadow .3s ease,transform .3s ease;
	margin-bottom: 34px;
}


.bs-brand-card:hover {
	box-shadow: var(--bs-shadow-hover);
	transform: translateY(-2px);
}


.bs-brand-logo{
	background: #e1e8f0;
	height: 161px;
	padding: 0 20px;
	position: relative;
}


.bs-brand-logo img {
	max-height: 60px;
	width: auto;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	top: 50%;
	padding: 0 10px;
}



.bs-brand-content {
  padding: 20px;
}


.bs-brand-content .bs-tag {
	display: inline-block;
	background: var(--bs-tag-bg);
	color: var(--bs-primary);
	font-size: 11px;
	font-weight: 500;
	padding: 0px 10px;
	border-radius: 20px;
}


.cc-brand-card__platform {
  display: block;
  color: var(--bs-text-light);
  font-size: 12px;
  margin-top: 7px;
}


.bs-tag-cc {
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 20px;
	font-weight: 500;
	background: #f585311a;
	color: var(--bs-accent);
	margin-left: 3px;
}


.bs-brand-content h4 {
	color: var(--bs-primary);
	font-size: 17px;
	font-weight: 700;
	margin: 4px 0 3px;
}


.bs-brand-content p {
	color: var(--bs-text-light);
	font-size: 14px;
	line-height: 1.5;
	margin:0px;
	text-align: left;
}


.bs-brand-content a {
	color: var(--bs-accent);
	font-weight: 600;
	font-size: 14px;
	margin-top: 7px;
	display: block;
	text-decoration: none;
}


.bs-brand-content a:hover {
	text-decoration: underline;
}


.bs-center {
	text-align: center;
}


.bs-center a {
	color: var(--bs-accent);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
}



.bs-center a:hover {
  text-decoration: underline;
}



.bs-blog {
  background: var(--bs-bg);
  padding: 80px 0;
}


.bs-blog .container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}


.bs-blog h2 {
	color: var(--bs-primary);
	margin-bottom: 28px;
}


.bs-blog h3 {
	color: var(--bs-primary);
	margin-top: 36px;
	margin-bottom: 12px;
}


.bs-blog p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 18px;
}


.bs-more-content {
	display: none;
}


.bs-blog h4 {
	color: var(--bs-secondary);
	font-size: 18px;
	font-weight: 700;
	margin-top: 16px;
	margin-bottom: 6px;
}


.read-toggle-center{
	text-align:center;	
	margin-top: 40px;
}


.bs-read-toggle {
	gap: 6px;
	background: transparent;
	color: var(--bs-accent);
	font-weight: 600;
	font-size: 15px;
	border: 1px solid var(--bs-accent);
	padding: 10px 24px;
	border-radius: var(--bs-radius);
	cursor: pointer;
	font-family: var(--bs-font);
	transition: background .3s ease,color .3s ease;
	text-decoration: none;
}


.bs-read-toggle:hover {
	background: var(--bs-accent);
	color: var(--bs-text-white);
}


.bs-niche {
  background: var(--bs-card-bg);
  padding: 80px 0;
}


.bs-niche h2 {
  color: var(--bs-primary);
  text-align: center;
  margin-bottom: 12px;
}


.bs-niche p {
	color: var(--bs-text-light);
	font-size: 16px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.6;
}


.bs-niche-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}


.bs-niche-card.active {
	border-left: 3px solid var(--bs-accent);
	background: var(--bs-bg);
}


.bs-niche-card.active:hover {
	box-shadow: var(--bs-shadow-hover);
	border-color: var(--bs-accent);
}


.bs-niche-card {
	background: var(--bs-bg-fcfdfd);
	border: 1px solid var(--bs-border);
	border-radius: var(--bs-radius-lg);
	padding: 28px;
	box-shadow: var(--bs-shadow);
	transition: box-shadow .3s ease,border-color .3s ease;
}


.bs-niche-card__icon {
	margin-bottom: 5px;
	height: 39px;
	font-size: 28px;
}


.bs-niche-card__icon img {
	object-fit: contain;
}

.bs-niche-card.active h3 {
	color: var(--bs-primary);
}


.bs-niche-card h3 {
	color: var(--bs-text-gray);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}


.bs-niche-card p {
	color: var(--bs-text-light);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
	margin: 0;
}


.bs-niche-card a {
	color: var(--bs-accent);
	font-weight: 600;
	font-size: 14px;
	margin-top: 8px;
	display: inline-block;
	text-decoration: none;
}


.bs-niche-card a:hover {
  text-decoration: underline;
}


.badge.yellow {
	display: inline-block;
	background: var(--bs-highlight);
	color: var(--bs-text-gray);
	font-size: 12px;
	font-weight: 600;
	padding: 1px 12px;
	border-radius: 20px;
	margin-top: 12px;
}



.bs-newsletter {
	background: var(--bs-primary);
	padding: 60px 0;
}


.bs-newsletter .container {
  max-width: 619px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bs-newsletter h2 {
	color: var(--bs-text-white);
}


.bs-newsletter p {
	color: #fffc;
	font-size: 16px;
	margin-top: 12px;
	line-height: 1.6;
}



.bs-newsletter small {
  color: #ffffff80;
  line-height: normal;
}



.bs-newsletter .footer-subscribe {
  max-width: 619px;
  margin: 0 auto;
}



.bs-newsletter .footer-subscribe p {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}


.bs-newsletter .footer-subscribe br {
  display: none;
}


.bs-newsletter input[type="email"] {
	padding: 12px 18px;
	border-radius: var(--bs-radius);
	border: none;
	font-size: 16px;
	font-family: var(--bs-font);
	outline: none;
}


.bs-newsletter input[type="submit"] {
  background: var(--bs-accent);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: var(--bs-radius);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--bs-font);
  white-space: nowrap;
  transition: background .3s ease;
}


.bs-newsletter input[type="submit"]:hover {
  background: var(--bs-accent-hover);
}




.bs-cta {
  background: var(--bs-bg);
  padding: 80px 0;
}


.bs-cta-box {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border: 2px solid var(--bs-accent);
	border-radius: var(--bs-radius-lg);
	padding: 48px;
	box-shadow: var(--bs-shadow);
}


.bs-cta-box h2 {
	color: var(--bs-primary);
	margin-bottom: 13px;
}


.bs-cta-box p {
	color: var(--bs-text);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 14px;
}


.bs-cta-box ul {
	list-style: none;
	padding: 0;
	margin: 12px 0;
}


.bs-cta-box ul li {
  color: var(--bs-text);
  font-size: 16px;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}


.bs-cta-box ul li::before {
	content: "✓";
	color: var(--bs-accent);
	position: absolute;
	left: 0;
	font-weight: 700;
}



.bs-primary-center {
  text-align: center;
  margin-top: 31px;
}



.bs-faq {
  background: var(--bs-card-bg);
  padding: 80px 0;
}


.bs-faq h2 {
	color: var(--bs-primary);
	text-align: center;
	margin-bottom: 40px;
}


.bs-faq-list {
  max-width: 800px;
  margin: 0 auto;
}



.bs-faq-list details {
	background: var(--bs-bg);
	border: 1px solid var(--bs-border);
	border-radius: var(--bs-radius);
	margin-bottom: 12px;
	overflow: hidden;
}


.bs-faq-list summary {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	padding: 16px 44px 16px 24px;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	color: var(--bs-primary);
	transition: background .2s ease;
	-webkit-user-select: none;
	user-select: none;
	position: relative;
	transition: background .2s ease;
}


.bs-faq-list summary:hover {
	background: var(--bs-light-orange);
}


.bs-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 10px;
	color: var(--bs-accent);
	font-size: 20px;
	font-weight: 400;
	transition: transform .3s ease;
}


.bs-faq-list details[open] summary::after {
	transform: rotate(45deg);
}


.bs-faq-list p {
	overflow: hidden;
	padding: 0 24px;
	transition: max-height .35s ease,padding .3s ease;
	font-size: 15px;
	line-height: 1.7;
	color: var(--bs-text);
}


/*======================HOME=======================*/





/*======================CONTACT=======================*/


.contact-page-wrapper {
  width: 100%;
  background: #fff;
}


.cp-hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	padding: 50px 20px;
	min-height: 220px;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}


.cp-hero::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,#112138d1,#112138a6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}


.cp-hero__inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}


.cp-hero__inner h1 {
	color: var(--bs-text-white);
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}


.cp-hero__inner p {
	color: #fffc;
	margin: 10px 0 0;
	line-height: normal;
}


.contact-section {
  padding: 60px 0px;
}


.contact-section .container {
  max-width: 640px;
  margin: 0 auto;
}


.contact-header h2 {
	color: var(--bs-primary);
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 10px;
}


.contact-header p {
	color: var(--bs-text);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 28px;
}


.gp-form-row {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-bottom: 17px;
}


.gp-form-col.full {
	width: 100%;
}



.gp-form-row .gp-form-col {
	width: 48.5%;
}


.gp-form-col p {
	margin-bottom: 0;
}



.gp-form-row .gp-form-col.full {
	width: 100%;
}



.contact-form-wrap label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--bs-primary);
	margin-bottom: 6px;
}


.contact-form-wrap label em {
	color: var(--bs-error, #e53e3e);
	margin-left: 2px;
}


.contact-form-wrap input, 
.contact-form-wrap textarea, 
.contact-form-wrap select {
	width: 100%;
	background:var(--base-3);
	box-sizing: border-box;
	padding: 10px 16px;
	font-family: var(--bs-font);
	font-size: 15px;
	color: var(--bs-text);
	background: var(--base-3);
	border: 1px solid var(--bs-border);
	border-radius: var(--bs-radius);
	outline: none;
	transition: border-color .2s ease,box-shadow .2s ease;
}


.contact-form-wrap select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	appearance: none;
	background-position: calc(100% - 15px) center;
}


.contact-form-wrap input:focus, 
.contact-form-wrap textarea:focus {
  border-color: var(--bs-accent);
  box-shadow: var(--bs-shadow-hover);
  background:transparent;
}


.contact-form-wrap textarea{
	height:140px;
}


.gp-form-row br {
	display: none;
}


.contact-form-wrap input[type="submit"] {
	background: var(--bs-accent);
	color: var(--bs-text-white);
	border: none;
	border-radius: var(--bs-radius);
	padding: 12px 12px;
	font-family: var(--bs-font);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease,transform .1s ease;
}


.contact-form-wrap input[type="submit"]:hover {
  background: var(--bs-accent-hover);
}



.contact-form-wrap .wpcf7-response-output {
  text-align: center;
  font-size: 14px;
}


.wpcf7-not-valid-tip {
  font-size: 13px;
}


/*======================CONTACT=======================*/





/*======================COMFORT=======================*/


.comfort-page {
	width: 100%;
}


.breadcrumb {
  padding:16px 0px;
  background: var(--bs-bg);
}


.breadcrumb ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}


.breadcrumb ul li {
	color: var(--bs-text);
	font-size: 14px;
	font-weight: 500;
	position: relative;
}


.breadcrumb li::after {
	content: " > ";
	margin: 0 6px;
}


.breadcrumb ul li a {
  color: var(--bs-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}


.breadcrumb ul li:last-child::after {
  display: none;
}



.comfort-page .bs-hero {
  background: var(--bs-secondary);
  padding: 70px 0;
}



.comfort-intro {
	margin-top: 100px;
}


.comfort-page p a {
	color: var(--bs-accent);
	text-decoration: none;
	font-weight: 500;
}


.comfort-page .bs-intro {
	padding-bottom: 30px;
}


.comfort-page .bs-how h2 {
	margin-bottom: 38px;
}


.comfort-page .bs-how-card h3 {
	font-size: 19px;
}


.cc-models {
	background: var(--bs-bg);
	padding: 70px 0 50px;
}


.cc-models p {
	color: var(--bs-text);
	font-size: 16px;
	line-height: 1.7;
	max-width: 800px;
	margin-bottom: 32px;
}



.cc-table-wrap {
  overflow-x: auto;
  border-radius: var(--bs-radius);
  box-shadow: var(--bs-shadow);
  margin-bottom: 25px;
}


.cc-table {
	width: var(--bs-container);
	border-collapse: collapse;
	font-size: 14px;
	margin: 0;
}


.cc-table thead tr {
	background: var(--bs-primary);
}


.cc-table thead th {
	color: var(--bs-text-white);
	font-weight: 600;
	font-size: 14px;
	padding: 14px 16px;
	text-align: left;
	white-space: nowrap;
}


.cc-table tbody tr {
  background: var(--bs-bg);
  border-bottom: 1px solid var(--bs-border);
  transition: background .2s ease;
}


.cc-table tbody td {
	color: var(--bs-text);
	padding: 12px 16px;
	vertical-align: top;
	line-height: 1.5;
}


.cc-table tbody td strong {
  font-weight: 700;
  color: var(--bs-primary);
}


.cc-table tbody tr:nth-child(2n) {
  background: var(--bs-card-bg);
}


.cc-models__note p {
  max-width: 100%;
  margin-bottom: 10px;
}


.comfort-page p a {
  color: var(--bs-accent);
  font-weight: 600;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  line-height: normal;
}


.comfort-page p a:hover {
	text-decoration: underline;
}


.cc-why {
  background: var(--bs-card-bg);
  padding: 70px 0;
}


.cc-why__inner {
  max-width: 800px;
  margin: 0 auto;
}


.cc-why h2 {
  color: var(--bs-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}


.cc-why p {
  color: var(--bs-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}


.cc-why h3 {
  color: var(--bs-secondary);
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 10px;
}



.comfort-niche {
	background: var(--bs-bg);
	padding: 70px 0;
}


.bs-niche-layer h2 {
	text-align: left;
}

.bs-niche-layer p {
	text-align: left;
	max-width:100%;
}



.cc-niches-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
  align-items: start;
}


.cc-niches-layout .bs-niche-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
}


.cc-stats-sidebar {
  position: sticky;
  top: 90px;
}


.cc-stats-card {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  padding: 24px;
  box-shadow: var(--bs-shadow);
}


.cc-stats-card h3 {
  color: var(--bs-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}


.cc-stats__item {
	padding: 12px 0;
}


.cc-stats__item:first-of-type {
  padding-top: 0;
}


.cc-stats__divider {
	border: none;
	border-top: 1px solid var(--bs-border);
	margin: 0;
}


.cc-stats__number {
  color: var(--bs-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}


.cc-stats__label {
	color: var(--bs-text-light);
	font-size: 13px;
	margin-top: 2px;
}


.cc-stats__number--sm {
  font-size: 18px;
}


.comfort-page .bs-cta {
	padding-top: 65px;
}



.cc-explore {
	background: var(--bs-bg);
	padding: 60px 0;
}


.cc-explore h2 {
	color: var(--bs-primary);
	margin-bottom: 24px;
}



.cc-explore__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}


.explore-link a {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--bs-border);
	border-radius: var(--bs-radius);
	padding: 18px 22px;
	text-decoration: none;
	cursor: pointer;
	transition: box-shadow .3s ease,border-color .3s ease;
	line-height: normal;
}


.explore-link a:hover {
	box-shadow: var(--bs-shadow-hover);
	border-color: var(--bs-accent);
}


.cc-explore__arrow {
	color: var(--bs-accent);
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
	position: relative;
	top: -2px;
}


.cc-explore__text {
	color: var(--bs-primary);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
}



/*======================COMFORT=======================*/





/*======================LEARN=======================*/


.learn-list-wrapper {
	width: var(--bs-container);
	background: var(--base-3);
}



.learn-list-wrapper .cp-hero__inner p {
	color: #fffc;
	font-size: 17px;
	margin-top: 12px;
	line-height: 1.6;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}


.filter-buttons {
	padding: 32px 0 0;
	display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}


.filter-buttons button {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--bs-border);
  background: transparent;
  color: var(--bs-text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bs-font);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}


.filter-buttons button.active {
  background: var(--bs-accent);
  border-color: var(--bs-accent);
  color: var(--bs-text-white);
  font-weight: 600;
}


.filter-buttons button.active:hover {
  color: var(--bs-text-white);
}


.filter-buttons button:hover {
  border-color: var(--bs-accent);
  color: var(--bs-accent);
}


.post-search-block {
  position: relative;
  max-width: 400px;
  margin-top: 16px;
  margin-bottom: 34px;
}


.post-search-block svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-text-light);
  pointer-events: none;
}


.post-search-block input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius);
  padding: 10px 16px 10px 40px;
  font-size: 15px;
  font-family: var(--bs-font);
  color: var(--bs-text);
  outline: none;
  transition: border-color .2s ease,box-shadow .2s ease;
    background: transparent;
}


.post-search-block input::placeholder {
  color: var(--bs-text-light);
}



.post-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 28px;
	margin-bottom: 90px;
}


.post-grid .post-card-link {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease,box-shadow .2s ease;
}


.post-grid .post-card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--bs-shadow-hover);
}


.post-card-link.featured-post{
	grid-column: 1 / -1;
	flex-direction: row;
	min-height: 280px;
	
}


.featured-post .post-card {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
}


.featured-post .post-content {
	width: 55%;
	padding: 32px 36px;
}


.featured-post .post-thumb-large {
	width: 45%;
	height: auto;
	min-height: 280px;
	position:relative;
}


.featured-post .post-badge {
	color: var(--bs-accent);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}



.featured-post .post-thumb-large img {
  height: 290px;
  object-fit: cover;
}


.post-card-link p {
  font-size: 15px;
  color: var(--bs-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
}


.featured-post p {
	margin-bottom: 30px;
}


.post-card-link h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--bs-primary);
	line-height: 1.3;
	margin: 0 0 10px;
	transition: color .2s ease;
}


.featured-post h3 {
   font-size: 24px;
}


.post-card-link:hover h3 {
  color: var(--bs-accent);
}



.post-thumb-large {
  width: 100%;
  position: relative;
}


.post-content {
	display: flex;
	flex-direction: column;
	padding: 20px 24px 24px;
}


.post-badge {
  display: none;
}


.featured-post .post-badge {
  display: block;
}


.post-thumb-large span {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: var(--bs-accent);
	color: var(--bs-text-white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 4px 12px;
	border-radius: 4px;
}


.post-thumb-large img {
  width: var(--bs-container);
  display: inherit;
  height: 200px;
  object-fit: cover;
}



.post-grid .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}


.post-meta .date {
  color: var(--bs-text-light);
  font-size: 13px;
}


.post-meta .mint {
	color: var(--bs-accent);
	font-size: 13px;
	position:relative;
	font-weight: 600;
}



.bs-scout {
  background: var(--base-3);
  padding: 60px 0;
}


.bs-scout h2 {
  margin-bottom: 35px;
}


.bs-scout-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}


.bs-scout-card {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  padding: 20px 24px;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s ease;
  position: relative;
}


.bs-scout-card:hover {
  box-shadow: var(--bs-shadow-hover);
  border-color: var(--bs-accent);
}


.bs-scout-card__icon {
	margin-top: 3px;
}


.bs-scout-card__icon img {
	height: 31px;
	object-fit: contain;
}


.arrow-icon {
  color: var(--bs-accent);
  font-size: 14px;
  font-weight: 700;
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}


.bs-scout-desc h4 {
  color: var(--bs-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: normal;
}


.bs-scout-desc p {
  color: var(--bs-text-light);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  margin: 0;
}



#noResultsMessage {
  margin-bottom: 60px;
}


#noResultsMessage button {
  background: var(--bs-accent);
  color: var(--bs-text-white);
  padding: 12px 18px;
  font-weight: 600;
  border-radius: var(--bs-radius);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--bs-font);
  white-space: nowrap;
  transition: background .3s ease;
}

#noResultsMessage button:hover {
  background: var(--bs-accent-hover);
}




/*======================LEARN=======================*/





/*======================COMFORT DETAIL=======================*/



.confort-single {
  width: var(--bs-container);
}


.confort-single .bs-hero {
	background: var(--bs-card-bg);
	padding: 50px 0;
	border-bottom: 1px solid var(--bs-border);
}


.confort-single .bs-hero h1 {
	color: var(--bs-primary);
}


.confort-single .bs-hero p {
  color: var(--bs-text-light);
}



.ca-stats-bar {
	background: var(--bs-bg);
	padding: 0px 0 30px;
}


.ca-stats-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}


.ca-stats-bar__stat {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
}


.ca-stats-bar__divider {
  width: 1px;
  background: var(--bs-border);
  align-self: stretch;
  margin: 8px 0;
}


.ca-stats-bar__val {
  color: var(--bs-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}


.ca-stats-bar__label {
  color: var(--bs-text-light);
  font-size: 13px;
  margin-top: 4px;
  line-height: normal;
}




.during-ca {
	background: #fef5ef;
	border-top: 1px solid var(--bs-border);
	border-bottom: 1px solid var(--bs-border);
	padding: 14px 0;
	text-align: center;
}


.during-ca p {
  color: var(--bs-text);
  font-size: 15px;
  margin: 0;
  line-height: normal;
}


.during-ca p a {
  color: var(--bs-accent);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}


.during-ca p a:hover, 
.cc-why p a:hover {
  text-decoration: underline;
}



.confort-single .cc-why h2 {
	font-size: 28px;
}


.cc-why p a {
	 color: var(--bs-accent);
	 text-decoration: none;
}



.confort-single .bs-how {
	background: var(--bs-bg);
	padding: 60px 0;
}


.confort-single .bs-how h2 {
	margin-bottom: 28px;
}


.confort-single .bs-how-card h3 {
  color: var(--bs-primary);
  font-size: 18px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 10px;
}


.subm-bradn {
	text-align: center;
	max-width: 540px;
	margin: 130px auto 0px;
}


.subm-bradn p {
  color: var(--bs-text-light);
  line-height: 1.3;
}


.confort-single .bs-newsletter h2 {
	font-size: 22px;
	margin-bottom: 10px;
}


.confort-single .bs-newsletter {
	border-top: 60px solid var(--bs-bg);
}



.confort-single .cc-explore {
  background: var(--bs-card-bg);
}


.confort-single .cc-explore h2 {
	font-size: 26px;
}



.post-wrapper {
  background: var(--bs-bg);
}


.post-grid-with-sidebar {
	display: grid;
	grid-template-columns: 74% 26%;
	gap: 28px;
	align-items: start;
	padding: 43px 0 60px;
}


.post-grid-wrapper .post-thumb-large {
	background: #e1e8f0;
	height: 140px;
}


.post-grid-wrapper .post-thumb-large img {
	max-height: 60px;
	width: auto;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	top: 50%;
	height: auto;
	padding: 0 10px;
}



.post-grid-wrapper .post-content {
	padding: 18px;
}


.cc-brand-card__pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}


.cc-brand-card__pills span {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}


.cc-brand-card__pills .bs-tag {
  background: #f585311a;
  color: var(--bs-accent);
  padding: 3px 10px;
}


.ca-tag.ca-tag--platform {
  background: #10b98114;
  color: var(--bs-success);
}


.cc-brand-card__pills .bs-tag-cc {
  background: #1121380f;
  color: var(--bs-primary);
}


.post-grid-wrapper  h3 {
  color: var(--bs-primary);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}


.post-grid-wrapper  p {
  color: var(--bs-text-light);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}


.post-grid-wrapper .view-brand-btn {
	display: block;
	color: var(--bs-accent);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	margin-top: 12px;
}


.post-grid-wrapper .view-brand-btn:hover {
  text-decoration: underline;
}



.post-grid-with-sidebar .post-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 57px;
}


.post-grid-wrapper .post-card {
  background: var(--bs-bg);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  box-shadow: var(--bs-shadow);
  overflow: hidden;
  transition: box-shadow .3s ease,transform .3s ease;
}



.post-grid-wrapper .post-card:hover {
  box-shadow: var(--bs-shadow-hover);
  transform: translateY(-2px);
}



.brand-niche-sidebar {
  position: sticky;
  top: 90px;
  width: 90%;
}


.filter__label-full {
  border-bottom: 1px solid var(--bs-border);
  padding: 30px 0 20px;
  background: var(--bs-bg);
}


.ca-filter__label {
	color: var(--bs-text);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}



.filter__label-full .filter-buttons {
	padding: 0;
}



.ca-sw {
  background: var(--bs-bg);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  padding: 20px;
  box-shadow: var(--bs-shadow);
  margin-bottom: 20px;
}


.ca-sw__title {
  color: var(--bs-primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}


.ca-sw__subtitle {
  color: var(--bs-accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}


.ca-sw__specs {
  border-top: 1px solid var(--bs-border);
}


.ca-sw__spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--bs-border);
}


.ca-sw__spec-label {
  color: var(--bs-text-light);
  font-size: 13px;
}


.ca-sw__spec-val {
  color: var(--bs-text);
  font-size: 13px;
  font-weight: 600;
}


.ca-sw .ca-sw__note {
  color: var(--bs-text);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
}


.ca-sw .ca-sw__link {
  display: block;
  color: var(--bs-accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
}


.ca-sw--cta {
  background: #f585310f;
  border-color: #f585314d;
  margin-bottom: 20px;
}


.ca-sw--cta p {
  color: var(--bs-text);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}


.ca-sw--cta button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: var(--bs-accent);
  color: var(--bs-text-white);
  border: none;
  border-radius: var(--bs-radius);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--bs-font);
  cursor: pointer;
  transition: background .2s ease;
}


.ca-sw--cta button:hover {
  background: var(--bs-accent-hover);
   color: var(--bs-text-white);
}


.brand-niche-sidebar .cc-stats-card {
  margin-bottom: 20px;
}


.ca-sw__blanks {
  margin-top: 6px;
}


.ca-sw__blank {
  color: var(--bs-text-light);
  font-size: 14px;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}


.ca-sw__soon {
  font-size: 11px;
  color: var(--bs-text-light);
  font-style: italic;
}


.ca-sw__blank--active {
  color: var(--bs-primary);
  font-weight: 700;
}

.load-more {
  display: flex;
  justify-content: center;
}




/*======================COMFORT DETAIL=======================*/






/*======================LEARN DETAIL=======================*/


.learn-single {
  background: var(--base-3);
}



.learn-single .cp-hero {
	min-height: 380px;
}


.learn-single .cp-hero__inner {
	max-width: 670px;
}


.learn-article .container {
	max-width: 760px;
}


.article-full {
	padding-bottom: 50px;
}


.learn-article {
	padding-top: 40px;
	padding-bottom: 10px;
}


.bp17-tldr {
	border-left: 4px solid var(--bs-accent);
	background: #fdf8f3;
	padding: 20px 24px;
	border-radius: 0 var(--bs-radius) var(--bs-radius) 0;
	margin-top: 40px;
}


.bp17-tldr p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--bs-text);
	margin: 0;
}



.article-full p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--bs-text);
	margin-bottom: 24px;
}


.article-full h2 {
	color: var(--bs-primary);
	margin-bottom: 20px;
	line-height: 1.25;
}



.article-full h3 {
  color: var(--bs-secondary);
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.3;
}


.article-full p a {
	color: var(--bs-accent);
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
}



.bp-cta-block {
	background: var(--bs-card-bg);
	border: 1px solid var(--bs-border);
	border-left: 4px solid var(--bs-accent);
	border-radius: var(--bs-radius-lg);
	padding: 28px 32px;
	margin: 28px 0
}


.bp-cta-block h3 {
  color: var(--bs-secondary);
  font-size: 22px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 14px;
  line-height: 1.3;
}


.bp-cta-block p {
  color: var(--bs-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0px 0px 20px;
}


.bp-cta-block__buttons a {
	padding: 7px 32px;
	margin-bottom: 14px;
}


.bp-cta-ghost {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	border: 2px solid var(--bs-accent);
	border-radius: var(--bs-radius);
	color: var(--bs-accent);
	font-size: 15px;
	font-weight: 600;
	font-family: var(--bs-font);
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: background .2s ease,color .2s ease;
}


.bp-cta-ghost:hover {
  background: var(--bs-accent);
  color: var(--bs-text-white);
}



.learn-single .bs-faq .container, 
.learn-single .cc-explore .container {
	max-width: 760px;
}


.learn-single .bs-faq-list {
  max-width: var(--bs-container);
}


.learn-single .cc-explore__text {
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}


.learn-single .bs-newsletter h2 {
  font-size: 22px;
  margin-bottom: 10px;
}


.learn-single .bs-faq h2 {
  text-align: left;
}



.article-card-list {
  /*padding-top: 40px;*/
  padding-bottom: 8px;
}


.article-card-list .bb-niche-tag {
  color: var(--bs-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 39px;
}




.article-card-inner {
  background: var(--base-3);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  padding: 24px 28px;
  margin-top: 24px;
  transition: box-shadow .25s ease;
}


.article-card-inner h3 {
  color: var(--bs-secondary);
  font-size: 22px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.3;
}


.article-card-inner .bb-card__meta {
  font-size: 13px;
  color: var(--bs-text-light);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}


.article-card-inner .bb-card__badge {
  background: var(--bs-accent);
  color: var(--bs-text-white);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
}


.article-card-inner .bb-card__sep {
  color: var(--bs-text-light);
  padding: 0 2px;
}


.article-card-inner .bb-card__prints {
  color: var(--bs-text-light);
  font-size: 13px;
}


.article-card-inner .bb-card__meta a {
  color: var(--bs-accent);
  font-size: 13px;
  text-decoration: none;
  word-break: break-all;
}




.article-full .bp-operator-card {
  background: var(--bs-card-bg);
  border-left: 4px solid var(--bs-secondary);
  border-radius: var(--bs-radius-lg);
  padding: 40px 36px;
  /*margin-top: 48px;*/
}



.article-full .ccvsbc-user-block {
  background: var(--bs-card-bg);
  border-radius: var(--bs-radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--bs-border);
  margin-top: 8px;
}






.article-full .bp-table-wrap {
  overflow-x: auto;
  border-radius: var(--bs-radius);
  box-shadow: var(--bs-shadow);
  margin-top: 24px;
}



.article-full .bp-table {
  width: var(--bs-container);
  border-collapse: collapse;
  font-size: 14px;
  margin: 0
}


.article-full .bp-table thead th {
  background: var(--bs-primary);
  color: var(--bs-text-white);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
}


.article-full .bp-table tbody tr {
  background: var(--base-3);
  border-bottom: 1px solid var(--bs-border);
  transition: background .2s ease;
}


.article-full .bp-table tbody tr:hover {
  background: var(--bs-light-orange);
}


.article-full .ccvsbc-row-even td {
  background: var(--bs-card-bg);
}


.article-full .ccvsbc-table tbody td:first-child {
  background: var(--bs-card-bg);
  font-weight: 600;
  color: var(--bs-primary);
}


.article-full .bp-table tbody td {
  color: var(--bs-text);
  padding: 10px 14px;
  vertical-align: top;
  line-height: 1.5;
}



.article-full .bp17-spec-card {
  background: var(--bs-primary);
  border-radius: var(--bs-radius-lg);
  padding: 24px 28px;
  margin-top: 20px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 24px;
}


.article-full .bp17-spec-row {
  display: contents;
}


.article-full .bp17-spec-label {
  color: var(--bs-text-lightwhite);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  align-self: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}


.article-full .bp17-spec-value {
  color: var(--bs-text-white);
  font-size: 16px;
  font-weight: 500;
  align-self: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}



.article-full .bb-card__notable {
	font-style: italic;
	font-size: 17px;
	line-height: 1.8;
	color: var(--bs-text);
	border-top: 1px solid var(--bs-border);
	padding-top: 10px;
	margin-top: 12px;
	margin-bottom: 0;
}



.article-full .bp-cta-block {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-border);
  border-left: 4px solid var(--bs-accent);
  border-radius: var(--bs-radius-lg);
  padding: 28px 32px;
  /*margin: 28px 0;*/
}


.article-full .bp-tldr {
  background: linear-gradient(to right,#11213808,#f585310d);
  border-left: 4px solid var(--bs-accent);
  border-radius: var(--bs-radius-lg);
  padding: 22px 26px;
  margin-bottom: 0;
}


.article-full .bp-tldr p:last-child {
  margin-bottom: 0;
}



.bp-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.05);
  z-index: 9999999;
}
 
.bp-progress {
  height: 100%;
  width: 0%;
  background: #f58531; /* change color */
  transition: width 0.1s linear;
}


.article-full p:last-child {
  margin-bottom: 0;
}


/*======================LEARN DETAIL=======================*/








/*======================FOOTER=======================*/



.site-footer {
	background: var(--bs-primary);
	padding: 60px 0 30px;
}


.site-footer #footer-widgets .grid-container, 
.site-footer .site-info .grid-container {
	max-width: var(--bs-max-container);
	width: var(--bs-container);
}


.site-footer #footer-widgets, 
.site-footer .site-info {
	background: transparent;
}


#footer-widgets .footer-widgets-container {
	padding: 0;
}


#footer-widgets .inside-footer-widgets {
	margin: 0;
	gap: 40px;
}


#footer-widgets aside {
	padding-left: 0;
}


.footer-widget-1, 
.footer-widget-4 {
	width: 25.3%;
	flex: unset !important;
}


.footer-widget-1 .widget_media_image {
  margin-bottom: 16px;
}


.footer-widget-1 .widget_media_image img {
	height: 32px !important;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
	opacity: .9;
}


.footer-widget-1 .widget_media_image a:hover img {
	opacity: 1;
}



.footer-widget-2, 
.footer-widget-3 {
	width: 20%;
	flex: unset !important;
}


#footer-widgets aside p {
	color: var(--bs-text-lightwhite);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}


#footer-widgets aside li {
	margin-bottom: 0;
}



#footer-widgets aside a {
  display: block;
  color: var(--bs-text-lightwhite);
  font-size: 15px;
  line-height: 2.2;
  text-decoration: none;
  transition: color .2s ease;
}


#footer-widgets aside a:hover {
  color: var(--bs-text-white);
}


#footer-widgets aside h3 {
	color: var(--bs-text-white);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}



#footer-widgets aside input[type="email"] {
	width: 100%;
	padding: 10px 14px;
	border-radius: var(--bs-radius);
	border: 1px solid rgba(255,255,255,.2);
	background: var(--bs-bg-light-white);
	color: var(--bs-text-white);
	font-size: 14px;
	font-family: var(--bs-font);
	outline: none;
	transition: border-color .2s ease;
}


#footer-widgets aside input[type="email"]::placeholder {
	color: #fff6;
}


#footer-widgets aside input[type="submit"] {
	padding: 10px 14px;
	background: var(--bs-accent);
	color: var(--bs-text-white);
	border: none;
	border-radius: var(--bs-radius);
	font-size: 14px;
	font-weight: 600;
	font-family: var(--bs-font);
	cursor: pointer;
	transition: background .2s ease;
	width: var(--bs-container);
	margin-top: 10px;
}


#footer-widgets aside input[type="submit"]:hover {
	background: var(--bs-accent-hover);
}


.footer-widget-4 #block-17, 
.footer-widget-4 #block-5 {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	gap: 12px;
}


.footer-widget-4 #block-17 a, 
.footer-widget-4 #block-5 a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: #ffffff1a;
	color: #ffffffb3;
	text-decoration: none;
	line-height: 1;
	transition: background .2s ease,color .2s ease;
}


.footer-widget-4 #block-17 a:hover, 
.footer-widget-4 #block-5 a:hover {
  background: var(--bs-accent);
  color: var(--bs-text-white);
}



.footer-widget-4 #block-10, 
.footer-widget-4 #block-6 {
	margin-bottom: -9px;
}




.site-info .grid-container {
  padding: 15px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 30px;
}


.copyright-bar, 
.copyright-bar a {
	color: #ffffff80;
	font-size: 14px;
}


.footer-bar a {
	color: #fff6;
	font-size: 14px;
	text-decoration: none;
	transition: color .2s ease;
}



.site-footer .wpcf7-response-output, 
.bs-newsletter .wpcf7-response-output {
	color: var(--bs-text-lightwhite);
	font-size: 14px;
	line-height: normal;
	margin: 0 0 25px !important;
	padding: 10px !important;
	text-align: center;
}



/*======================FOOTER=======================*/






/*======================HEADER=======================*/





@media (max-width:767px){
	

	#masthead nav.has-sticky-branding  {
		transition: max-height .35s ease;
		margin-top: 4px !important;
	}


	#masthead .inside-header {
		padding-bottom: 0;
	}


	.site-branding-container {
		padding-left: 20px;
	}


	#mobile-menu-control-wrapper {
		padding-right: 20px;
	}


	#primary-menu {
	  border-top: 1px solid var(--bs-border);
	  margin-top: 0;
	}


	#primary-menu ul li {
	  border-bottom: 1px solid var(--bs-border);
	  margin: 0;
	  line-height: normal;
	}


	#masthead nav li a {
		padding: 0 20px;
		line-height: 44px;
		
	}	


	#masthead nav li.btn-submit-brand a {
		background: transparent;
		color: var(--bs-text);
		padding: 0 18px;
		font-weight: 400;
		font-size: 16px;
		line-height: 44px;
		border-radius:0px;
	}


	#masthead nav li.btn-submit-brand a:hover, 
	#masthead nav li a:hover {
		background: var(--bs-light-orange);
		color: var(--bs-accent);
	}
	
	
		
	#bs-brand-modal {
		padding: 0;
	}


	.sbm-header {
		border-radius: 20px 20px 0 0;
		padding: 24px 20px 22px;
	}


	.brand-form {
		padding: 20px 20px 0px;
	}	


	.sbm-header__content h2 {
		font-size: 22px;
	}	
	  
	.sbm-header__content p {
		font-size: 13px;
	} 


	.form-row .form-group {
		width: 100%;
	}


	.bs-modal-card {
		border-radius: 20px 20px 0 0;
		max-height: 100vh;
	}
	
	
}/*=====media close=====*/




@media (min-width:767px) and (max-width:1280px){

	#masthead {
		padding: 0 20px;
	}	
	
}/*===media close===*/



@media (min-width:767px) and (max-width:900px){

	#masthead nav li {
		margin-left: 18px;
	}	
		
	#masthead nav li.btn-submit-brand a {
		padding: 8px 10px;
	}	
	
}/*===media close===*/




@media (max-width:1280px){
	
	#site-navigation .navigation-branding, #sticky-navigation .navigation-branding {
		margin-left: 0px !important;
	}	
	  
	#sticky-navigation .inside-navigation.grid-container {
	  padding: 0 20px;
	}  
	
}/*===media close===*/




/*======================HEADER=======================*/




/*======================HOME=======================*/


@media (max-width:1280px){
	
	#content .container {
		padding: 0 20px;
	}	
	
}/*===media close===*/



@media (max-width:767px){


	.bs-hero h1 {
		font-size: 28px;
	}	
	
	
	.bs-hero {
	  padding: 60px 0;
	}


	.bs-hero h1 br {
	  display: none;
	}


	.bs-hero-actions a {
	  line-height: normal;
	}


	.bs-hero-actions a {
	  width: 100%;
	}


	.bs-how-grid, 
	.bs-browse-grid, 
	.bs-niche-grid {
		grid-template-columns: 1fr;
	}


	.bs-browse-card a {
		line-height: normal;
	}



	.bs-brand-card {
		width: 100%;
		margin-bottom: 10px;
	}


	.bs-featured-grid {
		flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		-moz-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
	}



	.bs-newsletter .wpcf7-form-control-wrap {
		width: 100%;
	}


	.bs-newsletter .footer-subscribe p {
		flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		-moz-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		margin-bottom: 0;
	}


	.bs-newsletter input[type="submit"], 
	.bs-newsletter input[type="email"] {
		width: 100%;
	}


	.bs-cta-box {
		padding: 20px;
	}



	.bs-faq-list summary {
		line-height: normal;
	}
	
	
	.bs-faq-list summary::after {
		top: 13px;
	}

		
}/*===media close===*/



@media (min-width:767px) and (max-width:1000px){
	
	.hp-how__grid {
		gap: 25px;
	}	
	
	

	.bs-brand-card {
		width: 48.5%;
	}


	.bs-featured-grid {
		flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		-moz-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
		gap: 0;
	}
	
}/*===media close===*/




/*======================HOME=======================*/





/*======================CONTACT=======================*/


@media (max-width:767px){


	.gp-form-row {
		margin-bottom: 0;
	}

	.gp-form-row .gp-form-col {
		width: 100%;
		margin-bottom: 17px;
	}


	.gp-form-row p {
	  width: 100%;
	}


	.contact-form-wrap input[type="submit"] {
		width: 100%;
	}


}/*===media close===*/


/*======================CONTACT=======================*/







/*======================COMFORT=======================*/


@media (max-width:767px){


	.cc-niches-layout, 
	.cc-niches-layout .bs-niche-grid {
		grid-template-columns: 1fr;
	}


	.cc-stats-sidebar {
		position: static;
	}


	.cc-explore__grid {
		grid-template-columns: 1fr;
	}


}/*===media close===*/



/*======================COMFORT=======================*/





/*======================LEARN=======================*/


@media (max-width:767px){


	.learn-list-wrapper .cp-hero__inner h1 {
		font-size: 26px;
	}
	
	
	.learn-list-wrapper .cp-hero {
		min-height: 220px;
		padding: 40px 20px;
	}
	
	
	.learn-list-wrapper .cp-hero__inner p {
		font-size: 15px;
	}


	.post-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}


	.featured-post .post-thumb-large {
		width: 100%;
	}


	.featured-post .post-content {
		width: 100%;
		padding: 20px 24px 24px;
	}


	.post-card-link h3, 
	.featured-post h3 {
		font-size: 18px;
	}


	.bs-scout-grid {
		grid-template-columns: 1fr;
	}
	

	.bs-scout-card__icon {
		width: 35px;
	}

}/*===media close===*/



@media (min-width:767px) and (max-width:1000px){
	
	.bs-scout-grid {
		grid-template-columns: repeat(2,1fr);
	}
	
}/*===media close===*/



@media (min-width:1000px) and (max-width:1200px){
	
	.bs-scout-card {
		padding: 20px 24px 20px 55px;
	}


	.bs-scout-card__icon {
		margin-top: 3px;
		position: absolute;
		left: 13px;
		top: 18px;
		width: 27px;
	}
	
}/*===media close===*/



/*======================LEARN=======================*/






/*======================LEARN DETAIL=======================*/




@media (max-width:767px){



	.learn-single .bpcc-hero {
		min-height: 300px;
		padding: 50px 20px;
	}


	.learn-single .cp-hero__inner h1 {
		font-size: 24px;
	}


	.article-full h2 {
		font-size: 24px;
	}


	.bp-cta-block {
		padding: 22px 20px;
	}


	.bp-cta-block__buttons a {
		line-height: normal;
		text-align: center;
		font-size: 15px;
	}
	
		
		
	.article-full .bp-cta-block {
		padding: 22px 20px;
	}


	.learn-single .cp-hero {
		min-height: 300px;
		padding: 50px 20px;
	}


	.article-full .bp-operator-card {
		padding: 28px 20px;
	}


	.article-full {
	  padding-bottom: 30px;
	}


	.article-full .bp-tldr {
		margin-bottom: 20px;
	}


	.article-full .bp17-spec-card {
		grid-template-columns: 1fr 1fr;
		padding: 18px 16px;
		gap: 8px 12px;
	}


	.article-full .bp17-spec-row span {
		font-size: 13px;
	}



}/*===media close===*/



/*======================LEARN DETAIL=======================*/






/*======================COMFORT DETAIL=======================*/




@media (max-width:767px){


	.breadcrumb ul {
		flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		-moz-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
	}


	.confort-single .bs-hero h1 {
		font-size: 26px;
	}


	.ca-stats-bar__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}


	.ca-stats-bar__divider {
		display: none;
	}


	.ca-stats-bar__val {
		font-size: 24px;
	}
	
	
	
	.post-grid-with-sidebar, 
	.post-grid-with-sidebar .post-grid {
		grid-template-columns: 1fr;
	}



	.load-more {
		display: flex;
		margin-bottom: 28px;
	}	
	
	
	
	.brand-niche-sidebar {
	  width: 90%;
	}	
	

	
}/*===media close===*/




@media (min-width:767px) and (max-width:1000px){
	
	.bs-how-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.post-grid-with-sidebar {
		grid-template-columns: 65% 35%;
	}	
	
}/*===media close===*/








/*======================COMFORT DETAIL=======================*/











/*======================FOOTER=======================*/


@media (max-width:1280px){

	.site-footer {
		padding: 60px 20px 30px;
	}
	
}/*===media close===*/



@media (max-width:767px){


	.footer-widget-1, 
	.footer-widget-4, 
	.footer-widget-2, 
	.footer-widget-3 {
		width: 100%;
		margin-bottom: 0 !important;
	}

	
}/*===media close===*/




@media (min-width:767px) and (max-width:1000px){


	.footer-widget-1, 
	.footer-widget-4, 
	.footer-widget-2, 
	.footer-widget-3 {
		width: 46%;
	}


	#footer-widgets .inside-footer-widgets {
		flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		-moz-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
	}

	
	
}/*===media close===*/




/*======================FOOTER=======================*/