:root {
	--clr-cold: 90,169,230;			/* 5aa9e6 blue */
	--clr-link: 90,169,230;			/* 5aa9e6 blue */
	--clr-warm: 247,184,32;			/* f7b820 yellow */
	--clr-emph: 227,74,111;			/* e34a6f pink */
	--clr-main: 25,35,26;			/* 19231a black */
	--clr-main-light: 99,105,131;	/* 636983 black light */
	--clr-shade: 243,243,243;		/* f3f3f3 light gray */
	--clr-shade-light: 249,249,249; /* f9f9f9 light gray */
	--clr-light: 255,255,255;		/* ffffff white */
	--clr-dark: 0,0,0;				/* 000000 black */
}

/* GLOBAL CSS */
html, body {
	margin: 0;
	padding: 0;
}
.container {
	width: 100%;
	max-width: 1320px;
	min-width: 360px;
	padding-right: 24px;
	padding-left: 24px;
}
h1 {
	font-weight: 700;
	font-size: clamp(28px, 4vw, 40px);
}
h2 {
	font-weight: 600;
	/*font-size: clamp(20px, 4vw, 28px);*/
	font-size: clamp(24px, 3vw, 32px);
}
h3 {
	font-weight: 600;
	font-size: clamp(18px, 2vw, 24px);
}
h1 span,
h2 span,
h3 span,
.tvt-text span {
	display: block;
}
.readex-pro-400 {
	font-weight: 400;
}
.readex-pro-500 {
	font-weight: 500;
}
.readex-pro-600 {
	font-weight: 600;
}
.readex-pro-700 {
	font-weight: 700;
}
a {
	color: inherit;
	text-decoration: none;
	transition: all .25s ease;
}
a.colored {
	color: rgba(var(--clr-link),1);
}
a.colored:hover,
a.colored:focus {
	color: rgba(var(--clr-main-light),1);
}
.fw-500 {
	font-weight: 500;
}
.spacer4  {height:  4px;}
.spacer8  {height:  8px;}
.spacer12 {height: 12px;}
.spacer16 {height: 16px;}
.spacer20 {height: 20px;}
.spacer24 {height: 24px;}
.spacer28 {height: 28px;}
.spacer32 {height: 32px;}
.spacer36 {height: 36px;}
.spacer40 {height: 40px;}
.spacer44 {height: 44px;}
.spacer48 {height: 48px;}
.spacer52 {height: 52px;}
.spacer56 {height: 56px;}
.spacer60 {height: 60px;}
.spacer64 {height: 64px;}
.spacer68 {height: 68px;}
.spacer72 {height: 72px;}
.spacer76 {height: 76px;}
.spacer80 {height: 80px;}

.tvt-img-spaced {
	margin-top: 1rem;
	margin-bottom: 2rem;
}
.tvt-text {
	font-size: clamp(14px, 3vw, 18px);
}
.tvt-emphasize-text {
	margin: 1.5rem 0;
	font-weight: 600; 
	font-size: 2rem;
	color: rgba(var(--clr-emph),1);
	text-align: center;
}
.tvt-emphasize-color {
	color: rgba(var(--clr-emph),1);
}
.tvt-btn {
	display: inline-block;
	min-width: 270px;
	padding: 20px 32px;
	font-weight: 700;
	font-size: 24px;
	color: rgba(var(--clr-main),1);
	text-align: center;
	white-space: nowrap;
	border-width: 3px;
	border-style: solid;
	border-radius: 16px;
	transition: all .25s ease;
}
.tvt-btn:hover,
.tvt-btn:focus {
	box-shadow: 0 1px 3px rgba(0,0,0,.35);
}
.tvt-btn.main {	
	background-color: rgba(var(--clr-warm),1);
	border-color: rgba(var(--clr-warm),1);
}
.tvt-btn.alpha {
	background-color: transparent;
	border-color: rgba(var(--clr-main),1);
}
.tvt-btn.block {	
	display: block;
	width: 100%;
}
.tvt-btn.tvt-btn-sm {	
	min-width: 200px;
	padding: 12px 24px;
	font-size: 20px;
	border-radius: 12px;
}
.tvt-btn.tvt-btn-xs {	
	min-width: 120px;
	padding: 8px 16px;
	font-size: 16px;
	border-radius: 8px;
}
@media screen and (max-width: 767px){
	.tvt-btn {
		min-width: 190px;
		padding: 12px 24px;
		font-size: 20px;
		border-radius: 12px;
	}
}
.tvt-note {
	font-size: 14px;
}
.form-control {
	margin-bottom: 28px;
	padding-right: 0;
	padding-left: 0;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid rgba(var(--clr-main),1);
	border-radius: 0;
}
.form-control:focus {
	background-color: transparent;
	box-shadow: none;
}
.form-check-input,
.form-check-input:focus {
	border-color: rgba(var(--clr-main),1);
	box-shadow: none;
}
.tvt-menu-body-overlay {
	position: fixed;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.25);
	transition: all .25s ease;
	opacity: 0;
}
/* /GLOBAL CSS */

body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
	font-family: "Readex Pro", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
	color: rgba(var(--clr-main),1);
	line-height: 1.4;
	background-color: rgba(var(--clr-shade-light),1);
	overflow-x: hidden;
}
body.show-mobile-nav {
	overflow: hidden;
}
.tvt-header {
	position: relative;
	z-index: 999999;
	transition: background-color .25s ease;
}
.tvt-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	cursor: pointer;
}
.tvt-menu-toggle-item {
	width: 36px;
	height: 3px;
	background-color: rgba(var(--clr-main),1);
	transition: all .25s ease;
}
/*.show-mobile-nav .tvt-menu-toggle-item.top {
	transform: translateY(11px) rotate(45deg);
}
.show-mobile-nav .tvt-menu-toggle-item.middle {
	opacity: 0;
}
.show-mobile-nav .tvt-menu-toggle-item.bottom {
	transform: translateY(-11px) rotate(-45deg);
}*/
.tvt-menu-close {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	cursor: pointer;
}
.tvt-menu-close-item {
	width: 44px;
	height: 3px;
	background-color: rgba(var(--clr-main),1);
	transition: all .25s ease;
}
.show-mobile-nav .tvt-menu-close-item.top {
	transform: rotate(45deg);
}
.show-mobile-nav .tvt-menu-close-item.bottom {
	transform: translateY(-11px) rotate(-45deg);
}
/*.show-mobile-nav .tvt-menu-body-overlay {
	z-index: 999998;
	opacity: 1;
}*/

.tvt-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 0;
	border-bottom: 3px solid rgba(var(--clr-main),1);
}
.tvt-main-nav {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;	
}
.tvt-main-nav-item {
	position: relative;
	margin-left: 4px;
}
.tvt-main-nav-item.active {
	padding: 0 8px;
}
.tvt-main-nav-item.active .tvt-main-nav-link {
	padding-left: 4px;
}
.tvt-main-nav-item:first-of-type {
	margin-left: 0;
}
.tvt-main-nav-item span {
	position: relative;
}
.tvt-main-nav-item em {
	font-style: normal;
}
.tvt-main-nav-item.active span::before,
.tvt-main-nav-item.active span::after,
.tvt-main-nav-item.active em::after {
	font: var(--fa-font-solid);
	font-size: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.tvt-main-nav-item.active span::before {
	content: "\f053";
	left: -12px;
}
.tvt-main-nav-item.active span::after {
	content: "\f054";
	right: -20px;
}
.tvt-main-nav-link {
	position: relative;
	padding: 4px 12px 6px;
	font-size: 18px;
	border-radius: 4px;
	transition: all .25s ease;
}
.tvt-main-nav-link:hover,
.tvt-main-nav-link:focus {
	color: rgba(var(--clr-emph),1);
}
.active .tvt-main-nav-link:hover,
.active .tvt-main-nav-link:focus {
	color: rgba(var(--clr-main),1);
}
.active .tvt-main-nav-link::after {
	font: var(--fa-font-solid);
	font-size: 12px;
	position: absolute;
	top: 50%;
	transform: translate(4px, -50%) rotate(72deg);
	color: rgba(var(--clr-emph),1);
}
.active .tvt-main-nav-link::after {
	content: "\f715";
	right: 1px;
}
@media screen and (max-width: 991px) {
	.tvt-nav {
		padding: 24px 0;
	}
	.tvt-main-nav-mobile-wrapper {
		position: fixed;
		z-index: 10;
		top: 0;
		bottom: 0;
		right: -100vw;
		width: 100vw;
		max-width: 300px;
		background-color: rgba(var(--clr-shade-light),1);
		transition: all .25s ease;		
		text-align: right;
		box-shadow: 0 0 20px rgba(0,0,0,.45);
		overflow-y: auto;
	}
	.show-mobile-nav .tvt-main-nav-mobile-wrapper {
		right: 0;
	}
	.tvt-main-nav-mobile-header {
		padding: 24px 48px;
	}
	.tvt-main-nav-mobile-body {
		padding: 48px;
	}
	.tvt-main-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.tvt-main-nav-item {
		margin: 0;
	}
	.tvt-main-nav-link {
		display: block;
		font-size: 24px;
	}
	.tvt-main-nav-link.active::before,
	.tvt-main-nav-link.active::after {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.tvt-logo-img {
		width: auto;
		height: 40px;
	}
	.tvt-nav {
		padding: 16px 0;
	}
}
@media screen and (max-width: 375px) {
	.tvt-main-nav-mobile-wrapper {
		max-width: none;
	}
}
@media screen and (min-width: 992px){
	.tvt-menu-toggle,
	.tvt-menu-close {
		display: none;
	}
}

/* tvt-footer */
.tvt-footer {
	padding-top: 56px;
	background-color: rgba(var(--clr-shade),1);
}
.tvt-footer .tvt-logo-img {
	width: auto;
	height: 40px;
	margin-bottom: 24px;
}
.tvt-footer h3 {
	font-size: 18px;
}
.tvt-footer ul {
	margin-top: 0;
	padding: 0;
	list-style-type: none;
	font-size: 15px;
}
.tvt-footer ul li {
	margin-bottom: 4px;
}
.tvt-footer a {
	transition: all .25s ease;
}
.tvt-footer a:hover,
.tvt-footer a:focus {
	color: rgba(var(--clr-emph),1);
}
.tvt-footer .tvt-footer-logo span {
	display: block;
}
.tvt-footer .tvt-footer-bottom {
	margin-top: 8px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 3px solid rgba(var(--clr-main),1);
}
.tvt-footer .tvt-footer-bottom-copy {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.tvt-footer .tvt-footer-bottom-copy i {
	font-size: 3px;
}
.tvt-footer .tvt-footer-bottom-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	font-size: 20px;
}
@media screen and (max-width: 767px){
	.tvt-footer .tvt-footer-logo {
		margin-bottom: 24px;
	}
	.tvt-footer .tvt-footer-logo span {
		display: inline;
	}
	.tvt-footer .tvt-footer-bottom-copy,
	.tvt-footer .tvt-footer-bottom-social {
		justify-content: center;
	}
	.tvt-footer .tvt-footer-bottom-social {
		margin-top: 12px;
	}
}
@media screen and (max-width: 575px){
	.tvt-footer {
		text-align: center;
	}
	.tvt-footer .tvt-footer-bottom {
		margin-top: 0;
		padding-top: 12px;
		padding-bottom: 12px;
		
	}
	.tvt-footer .tvt-footer-bottom-copy {
		margin-top: 0;
		font-size: 12px;
	}
}

/* tvt-hero home */
.tvt-hero.home {
	margin-top: -124px;
	margin-bottom: -32px;
	padding: 194px 0 70px;
	/* https://colorzilla.com/gradient-editor/#d3e9fa+0,5baae7+100,7db9e8+100 */
	background-image: url('/wp-content/themes/travitude/assets/img/bg_home_comp_1.webp'), url('/wp-content/themes/travitude/assets/img/bg_world_map_1.webp'), linear-gradient(135deg,  #d3e9fa 0%,#5baae7 100%,#7db9e8 100%);
	background-position: right 0 bottom 40%, right 3% top 0, center top;
	background-repeat: no-repeat;
}
.tvt-hero.home h1 {
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}
.tvt-hero.home .text {
	margin-bottom: 56px;
	font-size: clamp(14px, 4vw, 18px);
}
.tvt-hero.home ul {
	margin-top: 0;
	margin-bottom: 48px;
	padding-left: 15px;
}
.tvt-hero.home ul span {
	display: block;
}
.tvt-hero-bottom-img.home {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto; 
}

@media screen and (max-width: 575px){
	.tvt-hero.home {
		margin-top: 0;
		margin-bottom: 12px;
		padding: 36px 0 96px;
		text-align: center;
		background-image: url('/wp-content/themes/travitude/assets/img/bg_home_comp_1_mobile.webp'), url('/wp-content/themes/travitude/assets/img/bg_home_comp_2_mobile.webp');
		background-position: center bottom, right top 40%;
		background-size: 100%, 90%;
		background-repeat: no-repeat;
	}
	.tvt-hero.home h1 span,
	.tvt-hero.home .text span,
	.tvt-hero.home ul span {
		display: inline;
	}
	.tvt-hero.home ul {
		padding-right: 48px;
		padding-left: 48px;
		font-size: 12px;
		text-align: left;
	}
	.tvt-hero-bottom-img.home {
		width: 75%;
	}
}

/* tvt-hero features */
.tvt-hero.features {
	margin-top: -124px;
	margin-bottom: 100px;
	padding: 194px 0 70px;
	background-image: linear-gradient(135deg,  #d3e9fa 0%,#5baae7 100%,#7db9e8 100%);
	background-position: center top;
	background-repeat: no-repeat;
}
.tvt-hero.features .container {
	position: relative;
}
.tvt-hero.features img {
	position: absolute;
	z-index: 2;
	top: -220px;
	right: -100px;
	width: clamp(350px, 60vw, 780px);
	height: auto;
}
.tvt-hero-title-wrapper {
	position: relative;
	z-index: 3;
}
.tvt-hero-title.features {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: clamp(24px, 4vw, 40px);
	line-height: 1.2;
}
.tvt-hero-text.features {
	margin-bottom: 56px;
	font-size: clamp(14px, 1.25vw, 16px);
}
.tvt-hero-title.features span,
.tvt-hero-text.features span {
	display: block;
}

@media screen and (max-width: 991px){
	.tvt-hero.features {
		position: relative;
		margin-bottom: 96px;
		padding: 160px 0 35vw;
		text-align: center;
	}
	.tvt-hero.features .container {
		position: static;
	}
	.tvt-hero.features img {
		position: absolute;
		z-index: 2;
		top: auto;
		right: auto;
		bottom: -5vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.tvt-hero-title-wrapper {
		text-align: center;
	}		
}
@media screen and (max-width: 575px){
	.tvt-hero.features {
		padding-bottom: 50vw;
	}
	.tvt-hero-title.features span,
	.tvt-hero-text.features span {
		display: inline;
	}
}

/* tvt-tech */
.tvt-tech {
	margin-top: 48px;
	margin-bottom: 64px;
}
.tvt-tech .row > * {
	padding-top: calc(var(--bs-gutter-x) * .5);
	padding-bottom: calc(var(--bs-gutter-x) * .25);
}
.tvt-tech-imgbox {
	position: relative;
	height: 100%;
	margin-bottom: 4px;
	padding: 8px 16px;
	background-color: rgba(var(--clr-light),1);
	box-shadow: 0 0 20px 0 rgba(var(--clr-dark),.05);
	border-radius: 12px;
	transition: all .25s ease;
	overflow: hidden;
}
.tvt-tech-imgbox-mask {
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(var(--clr-dark),.1);
	font-weight: 700;
	font-size: 40px;
	color: rgba(var(--clr-light),1);
	text-align: center;
	line-height: 1.2;
	text-shadow: 0 0 8px rgba(var(--clr-dark),.1);
	transition: all .25s ease;
}
.tvt-tech img {
	display: block;
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 15px auto;
	transition: all .25s ease;
}
.tvt-tech-imgtext {
	display: none;
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 26px;
	text-align: center;
}
.tvt-tech-imgbox:hover .tvt-tech-imgbox-mask,
.tvt-tech-imgbox:focus .tvt-tech-imgbox-mask {
	opacity: 1;
	z-index: 1;
}
.tvt-tech-imgbox:hover img,
.tvt-tech-imgbox:focus img {
	-webkit-filter: blur(4px);
			filter: blur(4px);  
}
@media screen and (max-width: 991px){
	.tvt-tech-imgbox-mask {
		font-size: 32px;
	}
}

/* tvt-hero services */
.tvt-hero.services {
	padding-top: 24px;
}
.tvt-hero.services .tvt-hero-content-wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: -96px;
	/*background-image: url('/wp-content/themes/travitude/assets/img/airplane_yellow_right.webp');
	background-repeat: no-repeat;
	background-position: left 10vw top 3vw;
	background-size: 25%;*/
}
.tvt-hero.services .tvt-hero-content {
	margin-top: 120px;
	padding-left: 64px;
}
.tvt-hero.services .tvt-hero-title {
	margin-bottom: 28px;
	font-weight: 700;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.2;
}
.tvt-hero.services .tvt-hero-text {
	margin-bottom: 28px;
	font-size: clamp(14px, 1.25vw, 18px);
}
.tvt-hero.services .tvt-hero-title span,
.tvt-hero.services .tvt-hero-text span {
	display: block;
}
.tvt-hero.services img {
	width: clamp(212px, 40vw, 554px);
}
@media screen and (max-width: 991px){
	.tvt-hero.services .tvt-hero-content-wrapper {
		margin-bottom: 0;
		flex-direction: column;
	}
	.tvt-hero.services {
		margin-bottom: 0;
		padding: 64px 0 36px;
		text-align: center;
	} 	
	.tvt-hero.services .tvt-hero-content {
		margin-top: 0;
		padding-left: 0;
	}		
}
@media screen and (max-width: 575px){
	.tvt-hero.services .tvt-hero-text span {
		display: inline;
	}
}

/* tvt-hero suppliers */
.tvt-hero.suppliers {
	margin-bottom: 160px;
	padding-top: 24px;
}
.tvt-hero.suppliers .tvt-hero-content-wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.tvt-hero.suppliers .tvt-hero-content {
	position: relative;
	z-index: 2;
	margin-top: 84px;
}
.tvt-hero.suppliers h1 {
	margin-bottom: 28px;
	line-height: 1.2;
}
.tvt-hero.suppliers .tvt-text {
	margin-bottom: 28px;
}
.tvt-hero.suppliers img {
	position: absolute;
	z-index: 1;
	top: -80px;
	right: -160px;
	width: 900px;
	height: auto;
}
@media screen and (max-width: 1320px){
	.tvt-hero.suppliers img {
		right: -24px;
		opacity: .75;
	}
}
@media screen and (max-width: 1199px){
	.tvt-hero.suppliers {
		margin-bottom: 200px;
	}
	.tvt-hero.suppliers img {
		opacity: .5;
	}
}
@media screen and (max-width: 991px){
	.tvt-hero.suppliers  {
		margin-bottom: calc(15vw + 80px);
		padding: 64px 0 36px;
		text-align: center;
	}
	.tvt-hero.suppliers .tvt-hero-content-wrapper {
		flex-direction: column;
	}
	.tvt-hero.suppliers .tvt-hero-content {
		margin-top: 0;
		padding-left: 0;
	}		
	.tvt-hero.suppliers img {
		width: clamp(375px, 100vw, 991px);
		top: calc(50% + 80px);
		right: auto;
		left: 50%;
		transform: translate(-50%,-50%);
		opacity: .45;
	}
}
@media screen and (max-width: 575px){
	.tvt-hero.suppliers h1 span,
	.tvt-hero.suppliers .tvt-text span {
		display: inline;
	}
}

/* tvt-hero customers */
.tvt-hero.customers {
	margin-bottom: 320px;
	padding-top: 24px;
}
.tvt-hero.customers .tvt-hero-content-wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.tvt-hero.customers .tvt-hero-content {
	position: relative;
	z-index: 2;
	margin-top: 84px;
}
.tvt-hero.customers h1 {
	margin-bottom: 28px;
	line-height: 1.2;
}
.tvt-hero.customers .tvt-text {
	margin-bottom: 28px;
}
.tvt-hero.customers img {
	position: absolute;
	z-index: 1;
	top: -64px;
	right: -160px;
	width: 840px;
	height: auto;
}
@media screen and (max-width: 1320px){
	.tvt-hero.customers img {
		right: -24px;
		opacity: .75;
	}
}
@media screen and (max-width: 1199px){
	.tvt-hero.customers {
		margin-bottom: 30vw;
	}
	.tvt-hero.customers img {
		opacity: .5;
	}
}
@media screen and (max-width: 991px){
	.tvt-hero.customers  {
		margin-bottom: 40vw;
		padding: 64px 0 36px;
		text-align: center;
	}
	.tvt-hero.customers .tvt-hero-content-wrapper {
		flex-direction: column;
	}
	.tvt-hero.customers .tvt-hero-content {
		margin-top: 0;
		padding-left: 0;
	}		
	.tvt-hero.customers img {
		width: clamp(375px, 100vw, 767px);
		top: calc(50% + 120px);
		right: auto;
		left: 50%;
		transform: translate(-50%,-50%);
		opacity: .35;
	}
}
@media screen and (max-width: 575px){
	.tvt-hero.customers h1 span,
	.tvt-hero.customers .tvt-text span {
		display: inline;
	}
}

/* tvt-hero pricing */
.tvt-hero.pricing {
	position: relative;
	padding-top: 24px;
	padding-bottom: 140px;
	background-image: url('/wp-content/themes/travitude/assets/img/map_pink.webp');
	background-position: right 2vw top 20px;
	background-repeat: no-repeat;
	overflow: hidden;
}
.tvt-hero.pricing .tvt-hero-content-wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.tvt-hero.pricing .tvt-hero-content {
	position: relative;
	z-index: 2;
	margin-top: 84px;
}
.tvt-hero.pricing h1 {
	margin-bottom: 28px;
	line-height: 1.2;
}
.tvt-hero.pricing .tvt-text {
	margin-bottom: 28px;
}
.tvt-hero.pricing .tvt-hero-img img {
	position: absolute;
	z-index: 1;
	bottom: -140px;
	right: 110px;
}
.tvt-hero-bottom-img.pricing {
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	bottom: -28px;	
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto; 
}
@media screen and (max-width: 1320px){
	.tvt-hero.pricing  {
		background-position: center top 2vw;
	}
	.tvt-hero.pricing .tvt-hero-img img {
		right: 0;
	}
	.tvt-hero-bottom-img.pricing {
		max-width: 90%;
	} 
}
@media screen and (max-width: 991px){
	.tvt-hero.pricing  {
		margin-bottom: 0;
		padding: 15vw 0 18vw;
		text-align: center;
		background-size: 90vw;
	}
	.tvt-hero.pricing .tvt-hero-content-wrapper {
		flex-direction: column;
	}
	.tvt-hero.pricing .tvt-hero-content {
		margin-top: 0;
		padding-left: 0;
	}		
	.tvt-hero.pricing .tvt-hero-img img {
		display: none;
	}
	.tvt-hero-bottom-img.pricing {
		bottom: 24px;
	} 
}

/* tvt-hero about */
.tvt-hero.about {
	position: relative;
	margin-top: -124px;
	margin-bottom: -32px;
	padding: 194px 0 120px;
	/* https://colorzilla.com/gradient-editor/#f9f9f9+0,5baae7+100,5aa9e6+100 */
	background-image: linear-gradient(135deg, #f9f9f9 0%, #f9f9f9 10%, #5baae7 100%, #5aa9e6 100%);
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
}
.tvt-hero.about img {
	position: absolute;
	z-index: 1;
	top: 129px;
	right: 0;
}
.tvt-hero.about .tvt-hero-content-wrapper {
	position: relative;
	z-index: 2;
}
.tvt-hero.about h1 {
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}
.tvt-hero.about .tvt-text {
	margin-bottom: 56px;
	font-size: clamp(14px, 4vw, 18px);
}
.tvt-hero-bottom-img.about {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto; 
}
@media screen and (max-width: 991px){
	.tvt-hero.about {
		margin-top: -103px;
		margin-bottom: -32px;
		text-align: center;
	}
	.tvt-hero.about img {
		right: -10vw;
		opacity: .35;
	}
}
@media screen and (max-width: 575px){
	.tvt-hero.about {
		margin-bottom: 12px;
		padding-bottom: 36px;
	}
	.tvt-hero.about h1 span,
	.tvt-hero.about .tvt-text span,
	.tvt-hero.about ul span {
		display: inline;
	}	
	.tvt-hero.about img {
		top: 30vw;
		right: auto;
		left: 35%;
		width: 740px;
	}
}

/* tvt-hero contact */
.tvt-hero.contact {
	position: relative;
	padding-top: 24px;
}
.tvt-hero.contact .tvt-hero-content-wrapper {
	text-align: center;
}
.tvt-hero.contact .tvt-hero-content {
	position: relative;
	z-index: 2;
	padding-top: 5vw;
	padding-bottom: 2vw;
}
.tvt-hero.contact .tvt-hero-title {
	margin-bottom: 28px;
	font-weight: 700;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.2;
}
.tvt-hero.contact .tvt-hero-text {
	margin-bottom: 54px;
	font-size: clamp(14px, 1.25vw, 18px);
}
.tvt-hero.contact .tvt-hero-title span,
.tvt-hero.contact .tvt-hero-text span {
	display: block;
}
.tvt-hero.contact i {
	position: absolute;
	z-index: 1;
	top: 2vw;
	left: 50%;
	transform: translateX(-50%);
	font-size: 300px;
	color: rgba(var(--clr-warm),1);
	opacity: .5;
}
@media screen and (max-width: 767px){
	.tvt-hero.contact .tvt-hero-content {
		padding-bottom: 5vw;
	}
	.tvt-hero.contact i {
		top: 5vw;
		font-size: 40vw;
	}
	.tvt-hero.contact .tvt-btn {
		margin-bottom: 5vw;
	} 	
}
@media screen and (max-width: 575px){
	.tvt-hero.contact .tvt-hero-title span,
	.tvt-hero.contact .tvt-hero-text span {
		display: inline;
	}
}
@media screen and (max-width: 480px){
	.tvt-hero.contact {
		margin-bottom: 6vw;
	}
	.tvt-hero.contact i {
		top: 10vw;
		font-size: 50vw;
	}
	.tvt-hero.contact .tvt-btn {
		margin-bottom: 8vw;
	} 
}

/* tvt-hero sign-up */
.tvt-hero.sign-up {
	position: relative;
	z-index: 1;
	margin-bottom: -28px;
	padding-top: 96px;
}
.tvt-hero.sign-up .tvt-hero-content {
	position: relative;
	z-index: 2;
	margin-bottom: 32px;
}
.tvt-hero.sign-up .tvt-hero-content .row {
	align-items: center;
}
.tvt-hero.sign-up h1 {
	margin-bottom: 28px;
	line-height: 1.2;
}
.tvt-hero.sign-up .tvt-text {
	margin-bottom: 28px;
}
.tvt-hero.sign-up .tvt-hero-img img {
	position: absolute;
	z-index: 1;
	top: 15vw;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: auto;
}
.tvt-hero.sign-up .tvt-hero-content-sign-up-form form {
	padding: 64px;
	background-color: rgba(var(--clr-light),.65);
	border: 3px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-hero.sign-up .tvt-hero-content-sign-up-form h2 {
	margin-bottom: 36px;
}
.tvt-hero.sign-up .tvt-hero-content-sign-up-form h2 em {
	font-style: normal;
	color: rgba(var(--clr-warm),1);
}
.tvt-hero.sign-up .tvt-hero-content-sign-up-form .tvt-btn {
	margin-top: 12px;
	margin-bottom: 12px;
}
.tvt-hero.sign-up .tvt-hero-img-bottom {
	margin-top: 64px;
	text-align: center;
}
@media screen and (max-width: 1199px){
	/*.tvt-hero.sign-up {
		margin-bottom: 30vw;
	}*/
	.tvt-hero.sign-up .tvt-text {
		margin-bottom: 64px;
	}
	.tvt-hero.sign-up .tvt-hero-img img {
		width: clamp(375px, 100vw, 767px);
		top: 120px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.tvt-hero.sign-up .tvt-hero-content-sign-up-form form {
		padding: 48px;
	}
}
@media screen and (max-width: 991px){
	.tvt-hero.sign-up  {
		margin-bottom: 0;
		padding: 64px 0 36px;
		text-align: center;
	}
	.tvt-hero.sign-up .tvt-hero-content {
		margin-top: 0;
		padding-left: 0;
	}	
	.tvt-hero.sign-up h1 span,
	.tvt-hero.sign-up .tvt-text span {
		display: inline;
	}	
}
@media screen and (max-width: 767px){
	.tvt-hero.sign-up .tvt-hero-content-sign-up-form form {
		padding: 24px;
	}
}

/* tvt-hero blog-page */
.tvt-hero.blog-page {
	position: relative;
	margin-top: -119px;
	margin-bottom: 64px;
	padding-top: 140px;
	padding-bottom: 96px;
	background-color: #f3f3f3;
	background-repeat: no-repeat;
	background-position: center, center;
	background-size: cover;
}
.tvt-hero.blog-page.booking-protect-cover-genius {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/booking_protect_wide.webp');
}
.tvt-hero.blog-page.ratehawk-api-integration {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/programming_code_wide.webp');
}
.tvt-hero.blog-page.how-to-choose-suppliers {	
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/workers.webp');
}
.tvt-hero.blog-page.how-many-people-are-required-to-handle-an-online-travel-booking-website {	
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/how_many_people_wide.webp');
}
.tvt-hero.blog-page.how-to-optimize-your-budget-in-the-online-travel-business {	
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/optimize_budget_wide.webp');
}
.tvt-hero.blog-page.how-much-does-a-modern-travel-website-cost {	
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/travel_website_wide.webp');
}
.tvt-hero.blog-page.do-you-need-to-be-technical-in-order-to-sell-travel-online {	
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/need_technical_wide.webp');
}
.tvt-hero.blog-page.is-it-worth-investing-in-travel-content {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/rocket_content_wide.webp');
}
.tvt-hero.blog-page.the-benefits-of-standardised-offers {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/standardized_offer_wide.webp');
}
.tvt-hero.blog-page.what-customisation-level-a-travel-platform-should-have {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/platform_customisation_level_wide.webp');
}
.tvt-hero.blog-page.is-it-possible-to-sell-travel-without-effort {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/effortless_wide.webp');
}
.tvt-hero.blog-page.how-to-reach-travellers-when-they-are-ready-to-buy {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/how_to_reach_travellers_wide.webp');
}
.tvt-hero.blog-page.is-it-possible-to-beat-big-online-players-in-the-travel-market {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/shark_wide.webp');
}
.tvt-hero.blog-page.simplest-marketing-plan-for-otas {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/marketing_plan_wide.webp');
}
.tvt-hero.blog-page.what-is-complicated-about-selling-travel-online {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/book_flight_online_wide.webp');
}
.tvt-hero.blog-page.how-working-offline-keeps-you-behind-of-the-game {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/work_offline_wide.webp');
}
.tvt-hero.blog-page.how-the-pandemic-changed-the-future-of-travel {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/pandemic_highway_wide.webp');
}
.tvt-hero.blog-page.how-to-get-rid-of-cold-travel-leads {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/frozen_footsteps_wide.webp');
}
.tvt-hero.blog-page.what-makes-someone-buy-from-you {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/book_online_wide.webp');
	background-position: center top, center top;
}
.tvt-hero.blog-page.what-makes-a-travel-business-profitable-online {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,.75) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/business_profitable_wide.webp');
	background-position: center top, center top;
}
.tvt-hero.blog-page.the-secrets-of-the-conversation-that-sells {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/people_talking_wide.webp');
	background-position: left top, right top;
}
.tvt-hero.blog-page.travel-agencies-pain-relievers {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/pain_relievers_wide.webp');
}
.tvt-hero.blog-page.is-it-worth-selling-travel-online {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/travel_sales_wide.webp');
}
.tvt-hero.blog-page.abreu-api-integration {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/programming_code_wide.webp');
}
.tvt-hero.blog-page.promote-travel-agency-offers-on-facebook-part-three {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/facebook_ads_wide.webp');
}
.tvt-hero.blog-page.promote-travel-agency-offers-on-facebook-part-two {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/facebook_account_wide.webp');
}
.tvt-hero.blog-page.promote-travel-agency-offers-on-facebook-part-one {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/facebook_posts_wide.webp');
}
.tvt-hero.blog-page.api-xml-travel-suppliers-integration-guide {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/travel_suppliers_wide.webp');
	background-position: left bottom, right bottom;
}
.tvt-hero.blog-page.hotelbeds-api-integration {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/programming_code_wide.webp');
}
.tvt-hero.blog-page.travel-software {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(249,249,249,.5) 25%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/travel_software_wide.webp');
}
.tvt-hero.blog-page.seo-for-travel-agencies {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/seo_guide.webp');
}
.tvt-hero.blog-page.travel-insights-brochure-2019 {
	background-image: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%), url('/wp-content/themes/travitude/assets/img/blog/passports_hands_wide.webp');
}

.tvt-hero.blog-page .tvt-hero-content {
	margin-top: 96px;
	/*padding-left: 64px;*/
	text-shadow: 1px 1px 0 rgba(255,255,255,.5);
}
.tvt-hero.blog-page .tvt-hero-title {
	margin-bottom: 28px;
	font-weight: 700;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.2;
}
.tvt-hero.blog-page .tvt-hero-text {
	margin-bottom: 28px;
	font-size: clamp(14px, 1.25vw, 18px);
}
.tvt-hero.blog-page .tvt-hero-title span,
.tvt-hero.blog-page .tvt-hero-text span {
	display: block;
}
.tvt-hero.blog-page .tvt-hero-auth {
	font-weight: 600;
	font-size: clamp(16px, 1.5vw, 20px);
	color: rgba(var(--clr-emph),1);
}
@media screen and (max-width: 991px){	
	.tvt-hero.blog-page {
		margin-bottom: 48px;
		background-size: cover;
	}
	.tvt-hero.blog-page .tvt-hero-content {
		margin-top: 24px;
		padding-left: 0;
	}
}
@media screen and (max-width: 767px){
	.tvt-hero.blog-page {
		margin-top: -75px;
		margin-bottom: 64px;
		padding-top: 96px;
		padding-bottom: 32px;
		text-align: center;
	}
	.tvt-hero.blog-page.is-it-worth-investing-in-travel-content {
		background-position: center;
	}
}
@media screen and (max-width: 575px){
	.tvt-hero.blog-page .tvt-hero-text span {
		display: inline;
	}
}

/* tvt-hero blog */
.blog .tvt-main-nav-link {
	text-shadow: 0 0 2px rgba(255,255,255,1);
}
.tvt-hero.blog {
	margin-bottom: 40px;
	padding-top: 24px;
	padding-bottom: 100px;
}
.tvt-hero.blog .tvt-hero-content-wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.tvt-hero.blog .tvt-blog-pag {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: -100px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	color: rgba(var(--clr-emph),1);
	background-color: #f3f3f3;
	border-radius: 16px;
}
.tvt-hero.blog .tvt-hero-content {
	position: relative;
	z-index: 2;
	margin-top: 84px;
}
.tvt-hero.blog h1 {
	margin-bottom: 28px;
	line-height: 1.2;
}
.tvt-hero.blog .tvt-text {
	margin-bottom: 28px;
}
.tvt-hero.blog img {
	position: absolute;
	z-index: 1;
	top: -48px;
	right: 20px;
}
@media screen and (max-width: 1199px){
	.tvt-hero.blog img {
		opacity: .75;
	}
}
@media screen and (max-width: 767px){
	.tvt-hero.blog  {
		padding: 64px 0 0;
		text-align: center;
	}
	.tvt-hero.blog .tvt-hero-content-wrapper {
		flex-direction: column;
	}
	.tvt-hero.blog .tvt-hero-content {
		margin-top: 0;
		padding-left: 0;
	}		
	.tvt-hero.blog img {
		position: relative;
		top: auto;
		right: auto;
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto 40px;
		opacity: 1;
	}
	.tvt-hero.blog .tvt-blog-pag {
		position: relative;
		z-index: 3;
		right: auto;
		bottom: auto;
		gap: 20px;
		justify-content: center;
	}
	.tvt-hero.blog .tvt-blog-pag i {
		font-size: 24px;
	}
}
@media screen and (max-width: 575px){
	.tvt-hero.blog .tvt-text span {
		display: inline;
	}
}

/* tvt-blog-feed */
.tvt-blog-feed {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	margin-bottom: 30px;
}
.tvt-blog-feed-item {
	position: relative;
	z-index: 1;
	min-height: 360px;
	background-image: linear-gradient(0deg, #dcdcdc, #f1f1f1);
	border-radius: 16px;
	overflow: hidden;
}
.tvt-blog-feed-item-bg-mask {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .6;
}
.tvt-blog-feed-item.item-4 .tvt-blog-feed-item-bg-mask {
	background: linear-gradient(45deg, #e34a6f 0%,#f7b820 100%)
}
.tvt-blog-feed-item.item-7 .tvt-blog-feed-item-bg-mask.bw {
	background-image: linear-gradient(0deg, #dcdcdc, #f1f1f1);
}
.tvt-blog-feed-item.item-13 .tvt-blog-feed-item-bg-mask.bw {
	background-image: linear-gradient(0deg, #dcdcdc, #f1f1f1);
}
.tvt-blog-feed-item.item-20 .tvt-blog-feed-item-bg-mask.bw {
	background-image: linear-gradient(0deg, #dcdcdc, #f1f1f1);
	opacity: .65;
}
.tvt-blog-feed-item.item-29 .tvt-blog-feed-item-bg-mask.bw {
	background-image: linear-gradient(0deg, #dcdcdc, #f1f1f1);
}
.tvt-blog-feed-item-img-mask {
	position: absolute;
	z-index: -2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(240deg, #424e51, #000);
	transition: opacity .25s ease;
	opacity: .3;
}
.tvt-blog-feed-item:hover .tvt-blog-feed-item-img-mask {
	opacity: .5;
}
.tvt-blog-feed-item-img {
	position: absolute;
	z-index: -3;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: no-repeat center center;
	background-size: cover;
}
.tvt-blog-feed-item:hover .tvt-blog-feed-item-img {
	filter: blur(4px);
	-webkit-filter: blur(4px);
}
/*.tvt-blog-feed-item-img::before {
	display: block;
	width: 100%;
	height: 100%;
	content: '';
	opacity: .4;
	background-image: linear-gradient(240deg, #424e51, #000);
}*/
.tvt-blog-feed-item.item-2 .tvt-blog-feed-item-bg-mask  {	
	background: linear-gradient(45deg, #f7b820 0%,#e34a6f 100%); /* https://colorzilla.com/gradient-editor/#f7b820+0,e34a6f+100 */
}
.tvt-blog-feed-item.item-5 {
	grid-column: 2/4;
}
.tvt-blog-feed-item.item-4 {	
	background: linear-gradient(45deg, #e34a6f 0%,#f7b820 100%); /* https://colorzilla.com/gradient-editor/#e34a6f+0,f7b820+100 */
}
.tvt-blog-feed-item.item-4 .tvt-blog-feed-item-bg-mask {
	background: linear-gradient(45deg, #e34a6f 0%,#f7b820 100%);
}
.tvt-blog-feed-item.item-6 {	
	background: linear-gradient(-45deg, #e34a6f 0%,#f7b820 100%); /* https://colorzilla.com/gradient-editor/#e34a6f+0,f7b820+100 */
}
.tvt-blog-feed-item.item-9 {	
	grid-column: 1/3;
}
.tvt-blog-feed-item.item-11 {	
	background: linear-gradient(0deg, #e34a6f 0%,#f7b820 100%); /* https://colorzilla.com/gradient-editor/#e34a6f+0,f7b820+100 */
}
.tvt-blog-feed-item.item-16 {	
	background: linear-gradient(-135deg, #f7b820 0%,#e34a6f 100%); /* https://colorzilla.com/gradient-editor/#f7b820+0,e34a6f+100 */
}
.tvt-blog-feed-item.item-18 {	
	background: linear-gradient(45deg, #f7b820 0%,#e34a6f 100%); /* https://colorzilla.com/gradient-editor/#f7b820+0,e34a6f+100 */
}
.tvt-blog-feed-item.item-21 {	
	grid-column: 2/4;
}
.tvt-blog-feed-item.item-24 .tvt-blog-feed-item-bg-mask {	
	background: linear-gradient(-45deg, #f7b820 0%,#e34a6f 100%); /* https://colorzilla.com/gradient-editor/#f7b820+0,e34a6f+100 */
}
.tvt-blog-feed-item.item-31 {	
	grid-column: 1/3;
}
.tvt-blog-feed p span {
	display: block;
}
.tvt-blog-feed-item-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	height: 100%;
	padding: 40px 32px;
	color: rgba(var(--clr-dark),1);	
	transition: all .25s ease;
}
.has-image .tvt-blog-feed-item-info {	
	color: rgba(var(--clr-light),1);
	text-shadow: 1px 1px 1px rgba(0,0,0,1);
}
.has-bg .tvt-blog-feed-item-info {	
	color: rgba(var(--clr-light),1);
}
.tvt-blog-feed-item-info-title {
	margin-bottom: 12px;
	font-weight: 700;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.2;
}
.tvt-blog-feed-item-info-text {
	margin-bottom: 16px;
	font-size: clamp(14px, 2vw, 16px);
	line-height: 1.2;
}
.tvt-blog-feed-item-info-auth-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 0;
	font-size: 14px;
}
.tvt-blog-feed-item-info-date {
	font-weight: 600;
}
@media screen and (max-width: 991px){
	.tvt-blog-feed {
		grid-template-columns: 1fr 1fr;
	}
	.tvt-blog-feed-item.item-custom {
		grid-column: initial;
	}
}
@media screen and (max-width: 575px){
	.tvt-blog-feed {
		grid-template-columns: 1fr;
	}		
	.tvt-blog-feed-item {
		min-height: auto;
	}
	.tvt-blog-feed-item-info {
		padding: 20px 16px;
	}
}

/* tvt-blog-page */
.tvt-hero.blog-page .tvt-hero-content-wrapper {
	display: flex;
	justify-content: space-between;
}
.tvt-hero.blog-page .tvt-blog-pag {
	position: absolute;
	z-index: 1;
	right: 50%;
	transform: translateX(50%);
	bottom: -39px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	color: rgba(var(--clr-emph),1);
	background-color: #efefef;
	border-radius: 0 0 16px 16px;
}
.tvt-blog-page {
	display: flex;
	align-items: flex-start;
	gap: 44px;
}
.tvt-blog-page-main {
	display: flex;
	align-items: flex-start;
	gap: 44px;
}
.tvt-blog-page-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 132px;
}
.tvt-blog-page-date-day {
	order: 2;
	font-weight: 700;
	font-size: 100px;
	color: rgba(var(--clr-emph),1);
	line-height: 1;
}
.tvt-blog-page-date-month {
	order: 1;
	font-weight: 600;
	font-size: 24px;
}
.tvt-blog-page-date-year {
	order: 3;
	font-weight: 600;
	font-size: 48px;	
}
.tvt-blog-page-content {
	margin-bottom: 44px;
	font-weight: 300;
}
.tvt-blog-page-content h2 {
	margin-top: 32px;
	font-weight: 600;
	font-size: clamp(20px, 3vw, 24px);
}
.tvt-blog-page-content h2:first-of-type {
	margin-top: 12px;
}
.tvt-blog-page-content h3 {
	margin-top: 20px;
	font-weight: 500;
	font-size: clamp(16px, 3vw, 20px);
}
.tvt-blog-page-content strong {
	font-weight: 600;
}
.tvt-blog-page-content a {
	text-decoration: underline;
	transition: all .25s ease;
}
.tvt-blog-page-content a:hover,
.tvt-blog-page-content a:focus {
	color: rgba(var(--clr-emph),1);
	text-decoration: none;
}
.tvt-blog-page-sidebar {
	min-width: 240px;
	max-width: 240px;
	margin-bottom: 20px;
	padding: 28px;
	color: rgba(var(--clr-light),1);
	background-color: rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-blog-page-sidebar-item {
	display: block;
	position: relative;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(var(--clr-shade-light),1);
}
.tvt-blog-page-sidebar-item:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.tvt-blog-page-sidebar-item.prev i,
.tvt-blog-page-sidebar-item.next i {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 196px;
	color: rgba(var(--clr-light),.075);
}
.tvt-blog-page-sidebar-title {
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 18px;
	color: rgba(var(--clr-warm),1);
}
.tvt-blog-page-sidebar-text {
	margin-bottom: 16px;
	font-size: 14px;
}
.tvt-blog-page-sidebar-auth {
	font-weight: 600;
	font-size: 14px;
	color: rgba(var(--clr-warm),1);
}
.tvt-blog-page-sidebar-date {
	font-weight: 400;
	font-size: 12px;
	color: rgba(var(--clr-warm),1);
}
@media screen and (min-width: 768px){
	.tvt-blog-page-sidebar {
		position: sticky;
		top: 20px;
	}
}
@media screen and (max-width: 991px){
	.tvt-blog-page-main {
		flex-direction: column;
		gap: 12px;
	}
	.tvt-blog-page-date {
		flex-direction: row;
		gap: 8px;
		width: auto;
	}
	.tvt-blog-page-date-day {
		font-size: 18px;
		line-height: 1;
	}
	.tvt-blog-page-date-month,
	.tvt-blog-page-date-year {
		font-size: 18px;
	}
	.tvt-blog-page-sidebar {
		padding: 20px;
	}
}
@media screen and (max-width: 767px){
	.tvt-blog-page {
		flex-direction: column;
		gap: 0;
	}
	.tvt-blog-page-content {
		margin-bottom: 20px;
	}
	.tvt-blog-page-sidebar {
		min-width: 100%;
		max-width: 100%;
	}
}

.tvt-blog-page-main .tvt-blog-nwl-form {
	padding: 32px;
	background-color: rgba(var(--clr-light),.65);
	border: 3px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-blog-page-main form.tvt-blog-nwl-form {
	max-width: 600px;
	margin: 0 auto;
}

/* tvt-values-wrapper */
.tvt-values-wrapper {
	margin: 96px auto;
	overflow: hidden;
}
.tvt-values-heading {
	margin-bottom: 72px;
	text-align: center;
}
.tvt-values-heading .tvt-text {
	font-weight: 600;
	font-size: clamp(20px, 1vw, 24px);
}
.tvt-values-inner {
	position: relative;
	z-index: 1;
	width: 84%;
	margin: 0 auto;
	padding: 48px;
}
.tvt-values-inner picture {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: auto;
	border-radius: 16px;
	overflow: hidden;
}
.tvt-values-box {
	position: relative;
	z-index: 2;
	padding: 48px 440px 48px 72px;
	border: 6px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-values-box h2 {
	margin-bottom: 20px;
}
.tvt-values-box .slick-dots li button::before {
	font-size: 12px;
	color: rgba(var(--clr-main),1);
	opacity: .5;
}
/*.tvt-values-box .slick-prev,
.tvt-values-box .slick-next {
	top: auto;
	bottom: -2.5vw;
}*/
.tvt-values-box .slick-prev {
	left: -40px;
}
.tvt-values-box .slick-next {
	right: -40px;
}
.tvt-values-box .slick-prev::before,
.tvt-values-box .slick-next::before {
	font: var(--fa-font-solid);
	font-size: 20px;
	color: rgba(var(--clr-main),1);
	line-height: 1;
}
.tvt-values-box .slick-prev::before {
	content: "\f053";
}
.tvt-values-box .slick-next::before {
	content: "\f054";
}
/*.tvt-values-box .slick-dots {
	width: auto;
	left: 50%;
	transform: translateX(-50%);
}*/
.tvt-values-box .slick-dots li button:hover::before,
.tvt-values-box .slick-dots li button:focus::before {
	opacity: 1;
}
.tvt-values-box .slick-dots li.slick-active button::before {
	color: rgba(var(--clr-warm),1);
	opacity: 1;
}
@media screen and (max-width: 1320px){
	.tvt-values-inner {
		width: 100%;
	}
}
@media screen and (max-width: 991px){
	.tvt-values-wrapper {
		margin: 48px auto;
	}
	.tvt-values-box {
		padding: 50vw 48px 48px;
		text-align: center;
		border-width: 3px;
	}
	.tvt-values-inner picture {
		top: 0;
		transform: translateY(0%);
		right: 0;
		left: 0;
		height: auto;
	}
	.tvt-values-inner picture img {
		width: 100%;
		height: auto;
	}
	.tvt-values-box h2 span,
	.tvt-values-box .tvt-text span {
		display: inline;
	}
}
@media screen and (max-width: 575px){
	.tvt-values-heading {
		margin-bottom: 36px;
	}
	.tvt-values-inner {
		padding: 30px;
	}
}

/* tvt-leadership-wrapper */
.tvt-leadership-wrapper {
	/* margin: 96px auto 0; */
}
.tvt-leadership-heading {
	margin-bottom: 120px;
	text-align: center;
}
.tvt-leadership-heading .tvt-text {
	font-weight: 600;
	font-size: clamp(20px, 1vw, 24px);
}
.tvt-leadership-wrapper .row > * {
	padding-bottom: 96px;
}
.tvt-leadership-box {
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 96px 36px 36px 36px;
	border: 1px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-leadership-box img {
	position: absolute;
	z-index: 5;
	top: -68px;
	left: 36px;
	width: 139px;
	height: 139px;
	border-radius: 16px;
}
.tvt-leadership-box h2 {
	font-size: clamp(22px, 2vw, 30px);
}
.tvt-leadership-box .tvt-subtitle {
	font-weight: 600;
	font-size: clamp(16px, 2vw, 20px);
}
@media screen and (max-width: 991px){
	.tvt-leadership-box h2 span,
	.tvt-leadership-box .tvt-text span {
		display: inline;
	}
}
@media screen and (max-width: 575px){
	.tvt-leadership-wrapper .row > [class*="col-"]:last-of-type {
		padding-bottom: 48px;
	}
}

/* tvt-bootstraped-wrapper */
.tvt-bootstraped-wrapper { 
	margin-top: -196px;
	padding: 360px 0 320px;
	background-image: url('/wp-content/themes/travitude/assets/img/graph.webp'), url('/wp-content/themes/travitude/assets/img/map_yellow.webp');
	background-position: right 24vw center, right -1vw top 0;
	background-repeat: no-repeat;
	background-size: 200px auto, auto;
}
.tvt-bootstraped {
	padding: 0 96px;
}
.tvt-bootstraped h2 {
	margin-bottom: 32px;
}
@media screen and (max-width: 991px){
	.tvt-bootstraped-wrapper { 
		margin-top: -144px;
		padding: 360px 0 320px;
		background-position: right 14vw center, center center;
		background-size: 160px auto, auto;
	}
	.tvt-bootstraped {
		padding: 0 48px;
	}
}
@media screen and (max-width: 767px){
	.tvt-bootstraped-wrapper {
		margin: 0 0 32px;
		padding: 0 0 320px;
		background-position: center bottom 20vw, center bottom;
		background-size: 28vw auto, 110vw auto;
	}
	.tvt-bootstraped {
		padding: 0 48px;
		text-align: center;
	}
}
@media screen and (max-width: 575px){
	.tvt-bootstraped-wrapper {
		padding-bottom: 280px;
		background-size: 28vw auto, 110vw auto;
	}
}

/* tvt-pricing-plans-wrapper */
.tvt-pricing-plans-wrapper {
	position: relative;
	margin-bottom: 64px;
	padding-top: 64px;
}
.tvt-pricing-plans-wrapper-bg {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	height: 620px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e34a6f+0,5baae7+100,7db9e8+100 */
	background: linear-gradient(135deg, #e34a6f 0%,#5baae7 100%,#7db9e8 100%);
}
.tvt-pricing-plans-wrapper .container {
	position: relative;
	z-index: 2;
}
.tvt-pricing-plans-head h2 {
	font-size: clamp(24px, 3vw, 40px);
	color: rgba(var(--clr-light),1);
	text-align: center;
	line-height: 1.6;
}
.tvt-pricing-plans-head .tvt-text {
	margin-bottom: 0;
	font-weight: 600;
	font-size: clamp(18px, 1.25vw, 24px);
	color: rgba(var(--clr-light),1);
	text-align: center;
}
.tvt-range-slider-wrapper {	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 64px;
}
.tvt-range-slider-value {
	margin-bottom: 40px;
	font-weight: 600;
	font-size: 40px;
	color: rgba(var(--clr-light),1);
}
.tvt-range-slider-wrapper input[type="range"] {
	-webkit-appearance: none;
			appearance: none; 
	width: 100%;
	height: 13px;
	cursor: pointer;
	outline: none;
	border-radius: 16px;
}
.tvt-range-slider-wrapper input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
			appearance: none;
	width: 36px;
	height: 36px;
	background-color: rgba(var(--clr-warm),1);
	border-radius: 50%;
	border: 6px solid rgba(var(--clr-light),1);
}
.tvt-range-slider-wrapper input[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
			appearance: none;
	width: 36px;
	height: 36px;
	background-color: rgba(var(--clr-warm),1);
	border-radius: 50%;
	border: 6px solid rgba(var(--clr-light),1);
}
.tvt-pricing-plans-wrapper .row > * {
	margin-bottom: 32px;
}
.tvt-pricing-plan {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 44px;
	color: rgba(var(--clr-main),1);
	background-color: rgba(var(--clr-light),1);
	border-radius: 16px;
	box-shadow: 0 0 12px 10px rgba(0,0,0,.1);

}
.tvt-pricing-plan-content h2 {
	font-size: clamp(24px, 3vw, 40px);
}
.tvt-pricing-plan-content .tvt-text {
	font-weight: 600;
	font-size: clamp(18px, 1.25vw, 24px);
}
.tvt-pricing-plan-content ul {
	margin-bottom: 48px;
}
.tvt-pricing-plan-content li {
	margin-bottom: 8px;
}
.tvt-pricing-plan-btn {
	text-align: center;
}
.tvt-pricing-plan-btn .tvt-btn.main {
	width: 100%;
	max-width: 280px;
	min-width: auto;
}
.tvt-pricing-plan.reverse {
	color: rgba(var(--clr-light),1);
	background-color: rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-pricing-plan.reverse .tvt-text {
	color: rgba(var(--clr-warm),1);
}
.tvt-pricing-plan.no-text h2 {
	margin-bottom: 40px;
}
@media screen and (max-width: 575px){
	.tvt-pricing-plan-content ul {
		padding-left: 16px;
	}
}

/* tvt-accordion */
.tvt-accordion-wrapper {
	margin-bottom: 32px;
}
.tvt-accordion {
	padding: 44px;
	border: 1px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-accordion h2 {
	margin-bottom: 44px;
}
.tvt-accordion h3 {
	margin-bottom: 20px;
}
.tvt-accordion-panel {
	margin-bottom: 20px;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(var(--clr-main),1);
}
.tvt-accordion-panel .tvt-accordion-panel-heading {
	display: flex;
	justify-content: space-between;
	gap: 8px;
}
.tvt-accordion-panel .tvt-accordion-panel-heading .fa {
	position: relative;
	top: 3px;
}
.tvt-accordion-panel .tvt-accordion-panel-heading[aria-expanded="true"] {
	margin-bottom: 8px;
	font-weight: 600;
}
.tvt-accordion-panel .collapsing p,
.tvt-accordion-panel .collapse p {
	margin-bottom: 8px;
	font-weight: 300;
}
.tvt-accordion-panel .collapsing p:last-of-type,
.tvt-accordion-panel .collapse p:last-of-type {
	margin-bottom: 4px;
}
/*.tvt-accordion-panel .collapsing p > a,
.tvt-accordion-panel .collapse p > a {
	color: rgba(var(--clr-cold),1);
}*/
.tvt-accordion-panel .collapsing p > strong,
.tvt-accordion-panel .collapse p > strong {
	font-weight: 600;
}
.tvt-accordion-bottom-img {
	margin-top: -64px;
	margin-bottom: -36px;
	text-align: center;	
}
@media screen and (max-width: 991px){
	.tvt-accordion-wrapper {
		margin-bottom: 0;
	}
	.tvt-accordion-wrapper [class*="col-"]:first-of-type .tvt-accordion-panel:last-of-type {
		margin-bottom: 48px;
	}
	.tvt-accordion {
		padding: 0;
		border: none;
	}
	.tvt-accordion-bottom-img {
		margin-top: 0;
		margin-bottom: -16px;
	}
}

/* tvt-advantages-wrapper */
.tvt-advantages-wrapper {
	position: relative;
	z-index: 2;
	margin-bottom: 96px;
	padding: 96px 0;
	color: rgba(var(--clr-light),1);
	text-align: center;
	background: linear-gradient(135deg, #e34a6f 0%,#5baae7 100%,#5aa9e6 100%);
}
.tvt-advantages-wrapper h2 {
	margin-bottom: 84px;
}
.tvt-advantages-wrapper .row {
	justify-content: center;
}
.tvt-advantages-wrapper .row > * {
	margin-bottom: 24px;
}
.tvt-advantages-box {
	position: relative;
	height: 100%;
	padding: 96px 24px 24px;
	border: 1px solid rgba(var(--clr-light),1);
	border-radius: 16px;
}
.tvt-advantages-icon {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 700;
	font-size: 150px;
	color: rgba(var(--clr-warm),1);
}
.tvt-advantages-content {
	position: relative;
	z-index: 2;
}
.tvt-advantages-box h3 {
	margin-bottom: 24px;
}
@media screen and (max-width: 991px){
	.tvt-advantages-wrapper {
		margin-bottom: 36px;
		padding: 64px 0;
	}
	.tvt-advantages-icon {
		line-height: 1;
	}
	.tvt-advantages-wrapper h2 {
		margin-bottom: 40px;
	}
}

/* tvt-service-details */
.tvt-service-details-wrapper {
	margin-bottom: 32px;
	padding: 96px 0;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e34a6f+0,5baae7+100,5aa9e6+100 */
	background: linear-gradient(135deg,  #e34a6f 0%,#5baae7 100%,#5aa9e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.tvt-service-details {
	display: flex;
	align-items: center;
	gap: 96px;
	font-size: clamp(14px, 3vw, 18px);
	color: rgba(var(--clr-light),1);
}
.tvt-service-details-item {
	flex-basis: 100%;
}
.tvt-service-details-item.text {
	flex-basis: 100%;
	padding: 40px 160px 40px 40px;
	background-image: url('/wp-content/themes/travitude/assets/img/lightbulb.webp');
	background-repeat: no-repeat;
	background-position: right 40px bottom 40px;
	background-size: 15%;
	border: 3px solid rgba(var(--clr-light),1);
	border-radius: 16px;
}
.tvt-service-details-item.text p:last-of-type {
	margin-bottom: 0;
}
.tvt-service-details-item.list .title {
	margin-bottom: 24px;
	font-weight: 700;
	font-size: clamp(22px, 3vw, 40px);
}
.tvt-service-details-item.list ul {
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 15px;
}
@media screen and (max-width: 991px){
	.tvt-service-details-wrapper {
		margin-bottom: 48px;
		padding: 48px 0;
	}
	.tvt-service-details {
		flex-wrap: wrap;
		gap: 48px;
	}
	.tvt-service-details-item {
		width: 100%;
		max-width: 575px;
		margin: 0 auto;
	}
	.tvt-service-details-item.text {
		order: 1;
		padding: 24px 80px 24px 24px;
		background-position: right 24px bottom 24px;
		background-size: 15%;
	}
	.tvt-service-details-item.list .title {
		text-align: center;
	}
}

/* tvt-features-grid */
.tvt-features-grid {
	margin-top: 120px;
	background: transparent url('/wp-content/themes/travitude/assets/img/multiple_devices.webp') no-repeat right 2% center;
	background-size: 36%;
}
.tvt-features-grid-item {
	display: block;
	margin-bottom: 64px;
	font-size: 18px;
	text-align: center;
}
.tvt-features-grid-item span {
	display: block;
}
.tvt-features-grid-item img {
	margin-bottom: 24px;
}
.tvt-features-grid-item h2 {
	font-size: clamp(20px, 4vw, 24px);
}
@media screen and (max-width: 991px){
	.tvt-features-grid {
		margin-top: 64px;
		margin-bottom: 64px;
		padding-bottom: 60vw;
		background-size: 75%;
		background-position: center bottom;
	}
}

/* tvt-banners */
.tvt-banners-wrapper {
	margin-bottom: 32px;
}
.tvt-banners {
	display: flex;
	gap: 32px;	
}
.tvt-banners-item {
	flex-basis: 50%;
	border-radius: 16px;
	overflow: hidden;
}
.tvt-banners-item h2 {
	margin-bottom: 40px;
	font-size: clamp(28px, 3vw, 40px);
}
.tvt-banners-item h2 em {
	font-style: normal;
	color: rgba(var(--clr-warm),1);
}
.tvt-banners-item .tvt-banners-item-content {
	padding: 64px;
}
/* reviews */
.tvt-banners-item.reviews {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: rgba(var(--clr-light),1);
	background-color: rgba(var(--clr-main),1);
}
.tvt-banners-item.reviews .tvt-banners-item-content {
	padding: 64px 64px 0;
}
.tvt-banners-item.reviews .tvt-info {
	margin-top: 20px;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 18px;
	color: rgba(var(--clr-warm),1);
}
.tvt-banners-item.reviews .tvt-info span {
	display: block;
	color: rgba(var(--clr-warm),1);
}
.tvt-banners-item.reviews .tvt-info em {
	font-style: normal;
	color: rgba(var(--clr-light),1);
}
.tvt-banners-item.reviews .tvt-banners-item-img-wrapper {
	display: flex;
	justify-content: flex-end;
}
.tvt-banners-item.reviews .tvt-banners-item-img {
	align-self: flex-end;
}
.tvt-banners-item.reviews .slick-track {
	margin-left: -12px;
}
.tvt-banners-item.reviews .slick-initialized .slick-slide {
	padding: 0 0 0 12px;
}
.tvt-banners-item.reviews .slick-prev,
.tvt-banners-item.reviews .slick-next {
	top: 64px;
}
.tvt-banners-item.reviews .slick-prev::before,
.tvt-banners-item.reviews .slick-next::before {
	font-size: 32px;
}
.tvt-banners-item.reviews .slick-prev {
	left: -48px;
}
.tvt-banners-item.reviews .slick-next {
	right: -40px;
}
/* features */
.tvt-banners-item.features {
	background-color: rgba(var(--clr-emph),1);
}
.tvt-banners-item.features .tvt-banners-item-content {
	padding: 64px;
}
.tvt-banners-item.features .tvt-text {
	margin-bottom: 48px;
}
.tvt-banners-item.features .tvt-banners-item-img-wrapper {
	padding: 0 64px 64px;
}
.tvt-banners-item.features .tvt-banners-item-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
/* trial */
.tvt-banners-item.trial {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: rgba(var(--clr-light),1);
	border: 2px solid rgba(var(--clr-main),1);
}
.tvt-banners-item.trial .tvt-banners-item-content {
	margin-bottom: 48px;
	padding: 64px;
}
.tvt-banners-item.trial h2 {
	margin-bottom: 80px;
}
.tvt-banners-item.trial h2 em {
	color: rgba(var(--clr-emph),1);
}
.tvt-banners-item.trial .tvt-banners-item-img-wrapper {
	padding: 0 24px;
}
.tvt-banners-item.trial .tvt-banners-item-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
/* contact-form */
.tvt-banners-item.contact-form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: rgba(var(--clr-emph),1);
}
.tvt-banners-item.contact-form .tvt-banners-item-content {
	padding: 64px 64px 0;
}
.tvt-banners-item.contact-form h2 {
	margin-bottom: 16px;
}
.tvt-banners-item.contact-form .tvt-subtitle {
	margin-bottom: 48px;
}
.tvt-banners-item.contact-form .form-control {
	margin-bottom: 30px;
	padding: 20px 32px;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	background-color: transparent;
	border: 2px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-banners-item.contact-form .form-control:focus {
	color: rgba(var(--clr-main),1);
	background-color: transparent;
	border-color: rgba(var(--clr-main),1);
	box-shadow: none;
}
.tvt-banners-item.contact-form button {
	margin-bottom: 30px;
}
.tvt-banners-item.contact-form .form-check-input {
	background-color: transparent;
	border-color: rgba(var(--clr-main),1);
}
.tvt-banners-item.contact-form .form-check-input:focus {
	border-color: rgba(var(--clr-main),1);
	box-shadow: none;
}
.tvt-banners-item.contact-form .tvt-banners-item-img-wrapper {
	display: flex;
	justify-content: flex-end;
}

/* contact */
.tvt-banners-item.contact {
	color: rgba(var(--clr-light),1);
	background-color: rgba(var(--clr-main),1);
}
.tvt-banners-item.contact .tvt-text {
	margin-bottom: 80px;
}
.tvt-banners-item.contact .tvt-info {
	margin-top: 20px;
	margin-bottom: 0;
	font-weight: 700;
	font-size: clamp(14px, 3vw, 18px);
	color: rgba(var(--clr-warm),1);
}
.tvt-banners-item.contact .tvt-info-line {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}
.tvt-banners-item.contact .tvt-info-line:last-of-type {
	margin-bottom: 0;
}
.tvt-banners-item.contact .tvt-info-line-text {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.tvt-banners-item.contact .tvt-info-line-icon i {
	font-size: 20px;
}
/* message */
.tvt-banners-item.message {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: rgba(var(--clr-light),1);
	border: 2px solid rgba(var(--clr-main),1);
}
.tvt-banners-item.message .tvt-banners-item-content {
	margin-bottom: 0;
}
.tvt-banners-item.message h2 {
	margin-bottom: 56px;
}
.tvt-banners-item.message h2 em {
	color: rgba(var(--clr-emph),1);
}
.tvt-banners-item.message .tvt-btn {
	margin-top: 24px;
}
@media screen and (max-width: 1199px){
	.tvt-banners-item h2 span {
		display: inline;
	}
}
@media screen and (max-width: 991px){
	.tvt-banners {
		flex-direction: column;
	}
	.tvt-banners-item {
		flex-basis: 100%;
		width: 100%;
		max-width: 575px;
		margin: 0 auto;
	}
	.tvt-banners-item .tvt-banners-item-content {
		padding: 48px;
	}
	.tvt-banners-item.reviews .tvt-banners-item-content {
		padding: 32px 48px 0;
	}
	.tvt-banners-item h2 {
		margin-bottom: 24px;
	}
	.tvt-banners-item.reviews .slick-prev {
		left: -40px;
	}
	.tvt-banners-item.reviews .slick-next {
		right: -28px;
	}
	.tvt-banners-item.features .tvt-banners-item-content {
		padding: 48px;
	}
	.tvt-banners-item.features .tvt-banners-item-img-wrapper {
		padding: 0 48px 32px;
	}
	.tvt-banners-item.trial .tvt-banners-item-content {
		margin-bottom: 24px;
		padding: 32px;
	}
	.tvt-banners-item.trial h2 {
		margin-bottom: 32px;
	}
	.tvt-banners-item.contact-form .tvt-banners-item-content {
		padding: 36px 24px 24px;
	}
}
@media screen and (max-width: 767px){
	.tvt-banners-item.contact-form .form-control {
		padding: 12px 24px;
		font-size: 20px;
		border-radius: 12px;
	}
	.tvt-banners-item.contact-form .tvt-banners-item-img {
		max-width: 80%;
		height: auto;
	}
}
@media screen and (max-width: 575px){
	.tvt-banners-item .tvt-banners-item-content {
		padding: 24px;
	}
	.tvt-banners-item.reviews .tvt-banners-item-content {
		padding: 24px 48px 0;
	}
	.tvt-banners-item.features .tvt-banners-item-content {
		padding: 24px;
	}
	.tvt-banners-item.features .tvt-banners-item-img-wrapper {
		padding: 0 24px 24px;
	}	
	.tvt-banners-item.contact .tvt-text {
		margin-bottom: 40px;
	}
	.tvt-banners-item.message h2 {
		margin-bottom: 28px;
	}
	.tvt-banners-item.message .tvt-button-wrapper {
		text-align: center;
	}
}

/* tvt-contact-widget */
.tvt-contact-widget {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 16px 0 32px;
	background-color: rgba(var(--clr-light),1);
	border: 2px solid rgba(var(--clr-main),1);
	border-radius: 16px;
	overflow: hidden;
}
.tvt-contact-widget-item {
	padding: 36px 48px;
}
.tvt-contact-widget-item .tvt-btn {
	margin-top: 32px;
}
.tvt-contact-widget-item.info {
	background-color: rgba(var(--clr-shade),1);
}
.tvt-contact-widget-item.info i {
	font-size: 20px;
	color: rgba(var(--clr-emph),1);
}
.tvt-contact-widget-item-info-line {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}
.tvt-contact-widget-item-info-line:first-of-type {
	margin-top: 36px;
}
.tvt-contact-widget-item-info-line:last-of-type {
	margin-bottom: 0;
}

/* tvt-home-suppliers */
.tvt-home-suppliers-wrapper {
	margin-bottom: 96px;
}
.tvt-home-suppliers {
	display: flex;
	flex-wrap: wrap;	
	padding: 64px;
	border: 1px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-home-suppliers-text {
	flex-basis: 60%;
	padding-right: 64px;
}
.tvt-home-suppliers h2 {
	margin-bottom: 12px;
	font-size: clamp(28px, 4vw, 40px);
}
.tvt-home-suppliers-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
	flex-basis: 40%;
	min-width: 344px;
}
.tvt-home-suppliers-logos img {
	width: 166px;
	height: auto;
	border: 1px solid rgba(var(--clr-main),1);
	border-radius: 16px;
}
.tvt-home-suppliers-btn {
	flex-basis: 60%;
	margin-top: -80px;
}
@media screen and (max-width: 1199px){
	.tvt-home-suppliers-text {
		flex-basis: 100%;
		margin-bottom: 12px;
		padding-right: 0;
	}
	.tvt-home-suppliers-logos {
		justify-content: flex-start;
		flex-basis: 100%;
		min-width: auto;
	}
	.tvt-home-suppliers-btn {
		flex-basis: 100%;
		margin-top: 32px;
	}
}
@media screen and (max-width: 991px){
	.tvt-home-suppliers {
		padding: 24px;
	}
}
@media screen and (max-width: 575px){
	.tvt-home-suppliers-wrapper {
		margin-bottom: 48px;
	}
	.tvt-home-suppliers-logos {
		justify-content: center;
	}
	.tvt-home-suppliers-logos img {
		width: 120px;
	}
	.tvt-home-suppliers-btn {
		text-align: center;
	}
}

/* tvt-home-team */
.tvt-home-team h2 {
	margin-bottom: 48px;
	font-size: clamp(28px, 4vw, 40px);
	text-align: center;
}
.tvt-home-team-content {
	padding-top: 400px;
	text-align: center;
	background: rgba(var(--clr-main),1) url('/wp-content/themes/travitude/assets/img/team_travitude.webp') no-repeat center 0; 
}
.tvt-home-team h2 span {
	display: block;
}
@media screen and (max-width: 1199px){
	.tvt-home-team-content {
		padding-top: 32vw;
		background-size: 150%;
	}
}

/* tvt-try-free */
.tvt-try-free {
	padding: 48px 24px;
	color: rgba(var(--clr-light),1);
	text-align: center;
	background-color: rgba(var(--clr-main),1);
}
.tvt-try-free .tvt-btn.main {
	margin-bottom: 32px;
}
.tvt-try-free p {
	margin-bottom: 0;
}
.tvt-features-wrapper ~ .tvt-try-free {
	margin-bottom: 64px;
}
@media screen and (max-width: 767px){
	.tvt-try-free {
		padding: 36px 24px;
	}
	.tvt-try-free ~ .tvt-features-wrapper .tvt-feature {
		margin-top: 5vw;
	}
}

/* tvt-feature */
.tvt-features-wrapper {
	overflow: hidden;
}
.tvt-feature {
	margin-right: 10vw;
	margin-bottom: 64px;
	padding: 48px;
	background-image: url('/wp-content/themes/travitude/assets/img/airplane_pink_right.webp');
	background-position: left 48px center;
	background-repeat: no-repeat;
	background-size: auto 300px;
	border: 3px solid #000;
	border-radius: 16px;
}
.tvt-feature-inner {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-right: -13vw;
}
.tvt-feature h2 {
	margin-bottom: 20px;
	font-size: clamp(24px, 2vw, 32px);
}
.tvt-feature h2 span {
	display: block;
}
.tvt-feature p span {
	color: rgba(var(--clr-emph),1);
}
.tvt-feature ul {
	list-style-type: none;
	margin-bottom: 0;
	padding-left: 0;
}
.tvt-feature ul li {
	position: relative;
	margin-bottom: 4px;
	padding-left: 20px;
}
.tvt-feature ul li::before {
	content: "\f00c";
	font: var(--fa-font-solid);
	position: absolute;
	top: 4px;
	left: 0;
	color: rgba(var(--clr-emph),1);
}
.tvt-feature-content {
	/*flex: 0 0 auto;*/
	/*max-width: 100%;
	min-width: 320px;*/
	width: 30%;
}
.tvt-feature-images {
	/*flex: 0 0 auto;
	max-width: 100%;*/
	width: 65%;
}
.tvt-feature-images .slick-list {
	overflow: visible;
}
.tvt-feature-images img {
	border-radius: 16px;
	box-shadow: 0 8px 12px rgba(0,0,0,.15);
}
@media screen and (max-width: 1199px){
	.tvt-feature-inner {
		margin-right: -8vw;
	}
}
@media screen and (max-width: 991px){
	.tvt-feature {		
		width: 100%;
		max-width: 575px;
		margin: 0 auto 22vw;
		padding-top: 32px;
		background-position: center bottom 15vw;
		background-size: 35vw;
	}
	.tvt-feature-inner {
		flex-direction: column;
		gap: 24px;
		margin: 0 auto;
		max-width: 575px;
	}
	.tvt-feature-content {
		width: 100%;
		min-width: auto;
		width: 100%;
		max-width: 767px;
	}
	.tvt-feature h2 span {
		display: inline;
	}
	.tvt-feature ul li {
		margin-bottom: 8px;
	}
	.tvt-feature-images {
		width: 100%;
		margin-bottom: -20vw;
	}
}
@media screen and (max-width: 767px){
	.tvt-feature {		
		background-size: 45vw;
	}
}
@media screen and (max-width: 575px){
	.tvt-feature {
		margin-bottom: 30vw;
		background-position: center bottom 24vw;
		background-size: 50vw;
	}
	.tvt-feature-images {
		margin-bottom: -30vw;
	}
}

/* tvt-feature reverse */
.tvt-feature.reverse {
	margin-right: 0;
	margin-left: 10vw;
	color: rgba(var(--clr-light),1);
	background-color: rgba(var(--clr-main),1);
	background-image: url('/wp-content/themes/travitude/assets/img/airplane_yellow_right.webp');
	background-position: right 120px center;
}
.tvt-feature.reverse .tvt-feature-inner {
	margin-right: 0;
	margin-left: -13vw;
}
.tvt-feature.reverse h2 {
	color: rgba(var(--clr-light),1);
}
.tvt-feature.reverse p span {
	color: rgba(var(--clr-warm),1);
}
.tvt-feature.reverse ul {
	list-style-type: none;
	margin-bottom: 0;
	padding-left: 0;
}
.tvt-feature.reverse ul li {
	margin-bottom: 4px;
}
.tvt-feature.reverse ul li::before {
	color: rgba(var(--clr-warm),1);
}
.tvt-feature.reverse .tvt-feature-content {
	order: 2;	
}
.tvt-feature.reverse .tvt-feature-images {
	order: 1;
}
@media screen and (max-width: 1199px){
	.tvt-feature.reverse .tvt-feature-inner {
		margin-right: 0;
		margin-left: -8vw;
	}
}
@media screen and (max-width: 991px){
	.tvt-feature.reverse {
		margin-right: auto;
		margin-left: auto;
	}
	.tvt-feature.reverse .tvt-feature-inner {
		margin-left: 0;
	}
	.tvt-feature.reverse .tvt-feature-content {
		order: 1;		
	}	
	.tvt-feature.reverse .tvt-feature-images {
		order: 2;
	}
}

/* tvt-get-started */
.tvt-get-started {
	padding: 20vw 24px 8vw;
	text-align: center;
	background-image: url('/wp-content/themes/travitude/assets/img/airplane_heart.webp'), url('/wp-content/themes/travitude/assets/img/bg_world_map_2.webp');
	background-position: top center, left 16vw top 16vw;
	background-repeat: no-repeat;
}
.tvt-get-started-content {
	padding: 4vw 0;
}
.tvt-get-started-content h2 {
	margin-bottom: 24px;
}
.tvt-get-started-content p {
	margin-bottom: 64px;
}
.tvt-get-started-content p span {
	display: block;
}
.tvt-get-started-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px;
}
@media screen and (max-width: 1199px){
	.tvt-get-started {
		padding: 20vw 24px 4px;
		background-position: top center, right 0 top 16vw;
		background-size: 75vw, 100vw;
	}
	.tvt-get-started-content {
		padding: 10vw 0;
	}
}
@media screen and (max-width: 767px){
	.tvt-get-started-content {
		padding: 10vw 0;
	}
}
@media screen and (max-width: 575px){
	background-image: url('/wp-content/themes/travitude/assets/img/bg_world_map_2.webp');
	background-position: center top 16vw;
	background-repeat: no-repeat;
	.tvt-get-started-content {
		padding: 10vw 0;
	}
}

/* tvt-suppliers */
.tvt-suppliers {
	margin-bottom: 64px;
}
.tvt-suppliers h2 {
	margin-bottom: 20px;
}
.tvt-suppliers .tvt-text {
	margin-bottom: 24px;
}
.tvt-suppliers-logo-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 12px;
	/* justify-content: center; */
} 
.tvt-supplier-logo {
	width: 135px;
	margin-bottom: 4px;
	padding-right: 4px;
	padding-left: 4px;
	text-align: center;
}
.with-text .tvt-supplier-logo {
	margin-bottom: 16px;
}
.tvt-supplier-image {
	margin-bottom: 4px;
	padding: 10px 5px;
	background-color: rgba(var(--clr-light),1);
	/*border: 1px solid rgba(90,169,230,.15);
	box-shadow: 3px 4px 30px 0 rgba(90,169,230,.1);*/
	box-shadow: 0 0 20px 0 rgba(var(--clr-dark),.05);
	transition: all .25s ease;
}
.tvt-supplier-text {
	font-size: 14px;
}
.tvt-supplier-text strong {
	font-weight: 600;
}
.tvt-supplier-slider-wrapper {
	/*margin-right: -4px;
	margin-left: -4px;
	overflow: hidden;*/
}
.tvt-supplier-slider-item {
	display: inline-block;
	margin-bottom: 16px;
	padding-right: 4px;
	padding-left: 4px;
	text-align: center;
}
.tvt-supplier-slider-imgbox {
	margin-bottom: 8px;
	padding: 12px 4px;
	background-color: rgba(var(--clr-light),1);
	box-shadow: 0 0 20px 0 rgba(var(--clr-dark),.05);
	/*border: 1px solid rgba(64,87,191,.15);*/
}
.tvt-supplier-slider-image {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.tvt-suppliers-note {
	margin-bottom: 80px;
	text-align: center;
}
.tvt-suppliers-note h2 {
	font-weight: 600;
	font-size: clamp(18px, 4vw, 24px);
}
.tvt-suppliers-note .tvt-text {
	font-size: clamp(12px, 2vw, 16px);
}
@media screen and (max-width: 575px){
	.tvt-suppliers {
		margin-bottom: 10vw;
	}
	.tvt-suppliers-note {
		margin-bottom: 10vw;
	}	
}

/* tvt-customers-wrapper */
.tvt-customers-wrapper {
	text-align: center;
}
.tvt-customers-wrapper h2 {
	font-size: clamp(28px, 4vw, 36px);
}
.tvt-customers-wrapper .tvt-text {
	margin-bottom: 96px;
	font-size: clamp(20px, 3vw, 24px);
}
.tvt-customers-logos {
	margin-bottom: 36px;
}
.tvt-customer-box {
	margin: 15px 0;
	padding: 20px;
	background-color: rgba(var(--clr-light),1);
	box-shadow: 3px 4px 30px 0 rgba(90,169,230,.1);
}
.tvt-customer-logo {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.tvt-customers-bottom-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 64px;
}
@media screen and (max-width: 575px) {
	.tvt-customers-wrapper .tvt-text span {
		display: inline;
	}
}

/* cookie button bg color */
#cookie-bar {
	font-weight: 300;
	font-size: 14px;
	color: #555;
	text-align: left;
	line-height: 1.3;
	background: #fff;
	background: rgba(255,255,255,.95);
	border-top: 1px solid #ccc;
	-webkit-transition: all 0.25s ease;
	   -moz-transition: all 0.25s ease;
			transition: all 0.25s ease;
}
#cookie-bar:hover {
	background-color: #fff;
}
#cookie-bar p {
	padding: 10px 140px 10px 15px;
	vertical-align: middle;
}
#cookie-bar p .title {
	display: block;
	font-weight: 600;
	font-size: 15px; /*0.938em;*/
}
#cookie-bar a,
#cookie-bar a:visited {
	display: inline-block;
	margin-left: 0;
	padding: 0;
	color: #555;
	text-decoration: underline;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
	-webkit-transition: all 0.25s ease;
	   -moz-transition: all 0.25s ease;
			transition: all 0.25s ease;
}
#cookie-bar a:hover {
	text-decoration: none;
}
#cookie-bar a.cb-enable {
	/*position: absolute;
	z-index: 5;
	top: 50%;
	right: 15px;
	margin-top: -13px;*/
	height: 30px;
	line-height: 30px;
	margin-top: 5px;
	padding: 0 10px;
	font-weight: 500;
	font-size: 14px; /*0.875em;*/
	color: #fff;
	text-decoration: none;
	background: #5cb85c;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
#cookie-bar .cb-enable:hover {
	background: #449d44;
}