/*
--------------------------------------
Container
--------------------------------------
*/

.banner-text-container {
	margin-bottom: 20px;
}

/*
--------------------------------------
Item
--------------------------------------
*/

/*Common padding*/

.banner-text-container .banner-text--spacing {
	padding-bottom: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
	padding-top: calc(15px + (50 - 15) * ((100vw - 320px) / (1920 - 320)));
}

/*Subhead*/

.banner-text-title--center .banner-text-subhead-container {
	display: flex;
	justify-content: center;
}

.banner-text-subhead {
	font-family: var(--e-global-typography-text-font-family);
	font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 500;
	color: #FDFDFD;
	text-align: center;
	text-transform: uppercase;
	line-height: calc(25px + (55 - 25) * ((100vw - 320px) / (1920 - 320)));
}

.banner-text-subhead--primary {
	font-family: var(--e-global-typography-text-font-family);
	font-size: 16px;
	font-weight: 500;
	color: var(--e-global-color-primary);
	letter-spacing: 2.88px;
	text-transform: uppercase;
}

/*Title*/

.banner-text-container .banner-text-title {
	display: flex;
	flex-direction: column;
	font-family: var(--e-global-typography-primary-font-family);
	font-size: calc(36px + (80 - 36) * ((100vw - 320px) / (1920 - 320)));
	font-weight: var(--e-global-typography-primary-font-weight);
	font-style: normal;
	text-align: center;
	line-height: 1.25;
}

.banner-text-container .banner-text-title--primary {
	color: var(--e-global-color-primary);
}

.banner-text-container.banner-text-title--center * {
	text-align: center;
}

.banner-text-container.banner-text-title--left * {
	text-align: left;
}

.banner-text-container .banner-text-title.banner-text-title--medium {
	font-size: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.banner-text-container .banner-text-title.banner-text-title--secondary,
.banner-text-container .banner-text-description--secondary {
	color: #fff;
}

/*Description*/

.banner-text-description-container.banner-text-description-container p {
	font-family: var(--e-global-typography-text-font-family), sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.banner-text-description-container.banner-text-description--primary p {
	color: var(--e-global-color-primary);
}

.banner-text-description-container.banner-text-description--secondary p {
	color: rgba(255,255,255,0.8);
}

.banner-text-description-container.banner-text-description--border {
	border-left: 7px solid var(--e-global-color-primary);

	p {
		margin-left: 2em;
	}

}

/*Btn*/

.banner-text-container .banner-text-link-container {
	padding-top: calc(25px + (45 - 25) * ((100vw - 320px) / (1920 - 320)));
}

.banner-text-container .banner-text-link {
	position: relative;
	display: inline-flex;
	font-family: var(--e-global-typography-text-font-family);
	font-size: 18px;
	font-weight: 600;
	padding: 10px 35px;
}

.banner-text-container .btn-shape {
	position: absolute;
}

.banner-text-container .top-shape.btn-shape {
	top: -18px;
	left: -15px;
}

.banner-text-container .bottom-shape.btn-shape {
	bottom: -25px;
	right: -15px;
}

.banner-text-container .banner-text-link.btn-primary {
	background: var(--e-global-color-primary);
	color: #fff;
	border: 1px solid var(--e-global-color-primary);
	position: relative;
	z-index: 1;
	
	transition: 0.3s ease all;
}

.banner-text-container .banner-text-link.btn-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 100%;
	background-color: #fff;
	z-index: -1;
	transition: 0.5s all ease;
}

.banner-text-container .banner-text-link.btn-primary:hover {
	color: var(--e-global-color-primary);
}

.banner-text-container .banner-text-link.btn-primary:hover::before {
	left: 0;
	width: 100%;
}


.banner-text-container .banner-text-link.btn-secondary {
	background: #fff;
	color: var(--e-global-color-primary);
	border: 1px solid #fff;
	position: relative;
	z-index: 1;

	transition: 0.3s ease all;
}
.banner-text-container .banner-text-link.btn-secondary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	right: 50%;
	bottom: 0;
	z-index: -1;
	transition: 0.5s all ease;
}


.banner-text-container .banner-text-link.btn-secondary:hover {
	background: transparent;
	color: #fff;
}
.banner-text-container .banner-text-link.btn-secondary:hover::before {
	left: 0;
	right: 0;
}

.banner-text-container .banner-text-link--primary .btn-shape {
	color: var(--e-global-color-primary);
}

.banner-text-container .banner-text-link--secondary .btn-shape {
	color: #fff;
}