@charset "utf-8"; 

/* ****************************** Fonts ****************************** */

/* gibson-thin */
		@font-face { 
			font-family: "gibson-thin";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-thin"), 
				 url("../css/font/gibson/gibson-thin.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-thin.woff") format("woff");
				
		} 

		/* gibson-light */
		@font-face { 
			font-family: "gibson-light";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-light"), 
				 url("../css/font/gibson/gibson-light.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-light.woff") format("woff");
		} 

		/* gibson-book */
		@font-face { 
			font-family: "gibson-book";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-book"), 
				 url("../css/font/gibson/gibson-book.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-book.woff") format("woff");
		} 

		/* gibson-regular */
		@font-face { 
			font-family: "gibson-regular";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-regular"), 
				 url("../css/font/gibson/gibson-regular.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-regular.woff") format("woff");
		} 

		/* gibson-medium */
		@font-face { 
			font-family: "gibson-medium";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-medium"), 
				 url("../css/font/gibson/gibson-medium.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-medium.woff") format("woff");
		} 

		/* gibson-semibold */
		@font-face { 
			font-family: "gibson-semibold";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-semibold"), 
				 url("../css/font/gibson/gibson-semibold.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-semibold.woff") format("woff");
		} 

		/* gibson-bold */
		@font-face { 
			font-family: "gibson-bold";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-bold"), 
				 url("../css/font/gibson/gibson-bold.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-bold.woff") format("woff");
		} 

		/* gibson-heavy */
		@font-face { 
			font-family: "gibson-heavy";
			font-weight: normal;
			font-style: normal;
			font-display: block;
			src: local("gibson-heavy"), 
				 url("../css/font/gibson/gibson-heavy.woff2") format("woff2"),
				 url("../css/font/gibson/gibson-heavy.woff") format("woff");
		}

/* ****************************** Structural Styles ****************************** */

.landing-page nav, .landing-page main {
    max-width: 1200px;
}

.landing-page .main-container {
	background: url("../img/landing/Background-Image-darker.png") #3f073b right no-repeat;
	background-size: auto 100%;
	
}

.landing-page .main-container .main-container-inner{
	position: relative;
	/* Only use if content gets very long. This will prevent too much of the right side background image from displaying */
	/* background-image: linear-gradient(to right, #ebedee 25%, 26%, transparent); */
}

.landing-page main {
	min-height: calc(100vh - 304px);
	background: transparent;
}

.hidden_url {
	display: none;
}


/* ****************************** Header Styles ****************************** */

.landing-page header  {
    background: rgb(79, 10, 75);
    background: linear-gradient(180deg, rgba(79, 10, 75, 1) 44%, rgba(27, 6, 28, 1) 150%);
    border-bottom: 1px solid #EACA30;
	margin-bottom: 0px;
	padding: 35px 0px;
}

.landing-page header #logo  {
	width: 166px;
	height: 87px;
    background: url(../img/disney_benefits_logo.svg) no-repeat 0 0;
	background-size: 166px 87px;
}

.landing-page #header_border_fade  {
	height: 8px;
	background-image: linear-gradient(to right, #fff, 80%, transparent);
	position: absolute;
	width: 55%;
}


/* ****************************** Content Styles ****************************** */

.landing-page .landing-content-container  {
	padding-top: 22px;
	width: 490px;
}


.landing-page h1 {
    color: #fff;
    font-size: 30px;
    font-weight: normal;
	margin-bottom: 15px;
}

.landing-page h2 {
    color: #4F0A4B;
    font-size: 19px;
	line-height: 24px;
    font-family: 'gibson-medium';
    font-weight: normal;
	margin-bottom: 4px;
}

.landing-page p.landing-intro {
    color: #fff;
   font-size: 19px;
   line-height: 25px;
    max-width: 420px;
   padding-bottom: 22px;
}


/* ********* Launch Buttons ********* */
.launch-button-container {
	padding-bottom: 10px;
}

.launch-button-container button {
	display: flex;
	background-color: #fff;
	width: 100%;
	border: 0px;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	cursor: pointer;
	padding-top: 27px;
	padding-bottom: 24px;
	margin-bottom: 12px;
}

.launch-button-container button img {
	padding-right: 15px;
	padding-left: 14px;
}

.launch-button-container button .right {
	padding-right: 14px;
}

.launch-button-container button .right span {
	text-decoration: none;
	font-size: 18px;
	color: #3B66AB;
	line-height: 24px;
}

.launch-button-container button:hover .right span {
	text-decoration: underline
}


/* ********* Language Links ********* */
.language-links {
	padding-bottom: 44px;
	color: #ffffff;
}
.language-links a {
    color: #fff;
	font-size: 16px;
	line-height: 40px;
	margin: 0px 20px;
}
.language-links a:hover {
	text-decoration: underline;
	color: #EACA30;
}
.language-links a:first-child {
	margin-left: 0px;
}
.language-links a:last-child {
	display: block;
	margin: 0px;
}



/* ****************************** Footer Styles ****************************** */
.landing-page footer {
	padding-top: 35px;
	padding-bottom: 35px;
	font-size: 16px;
    line-height: 25px;
}

/* ****************************** Desktop Styles ****************************** */

@media (min-width: 980px) {
    header nav {
        height: 87px;
    }
}

@media (max-width: 1250px) { 
	
	/* ********* Structural Styles ********* */
	.landing-page main {
		padding-left: 30px;
		padding-right: 30px;
	}   
}

/* ****************************** Small Desktop Styles ****************************** */
@media (max-width: 1100px) { 
	
	/* ********* Structural Styles ********* */
	.landing-page main {
		min-height: calc(100vh - 304px);
	}
	
	
	/* ********* Header Styles ********* */
	.landing-page header #logo  {
		margin-left: 30px;
	}
	
	
	/* ********* Foooter Styles ********* */
	.landing-page footer {
		padding-left: 30px;
		padding-right: 30px
	}

}



/* ****************************** Tablet Styles ****************************** */
@media (max-width: 980px) { 
	
	/* ********* Structural Styles ********* */
	.landing-page main {
		min-height: calc(100vh - 284px);
	}
	
	
	/* ********* Header Styles ********* */
    .landing-page header {
        padding: 23px 0px;
    }
	.landing-page header nav  {
		height: auto;
	}
	
	.landing-page header #logo  {
		width: 150px;
		height: 78px;
		background-size: 150px 78px;
	}

}

/* ****************************** Large Mobile Styles ****************************** */
@media (max-width: 767px) { 
	
	/* ********* Structural Styles ********* */
	.landing-page .main-container {
		background-image: none;
	}
	
	.landing-page main {
		background-image: none;
	}
	
	
	/* ********* Header Styles ********* */
	.landing-page #header_border_fade  {
		background-image: none;
	}

}




/* ****************************** Mobile Styles ****************************** */
@media (max-width: 550px) { 
	
	/* ********* Structural Styles ********* */
	.landing-page main {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	
	/* ********* Header Styles ********* */
	.landing-page header #logo  {
		margin-left: 20px;
	}
	
	
	/* ********* Content Styles ********* */
	.landing-page .landing-content-container  {
		padding-top: 48px;
		width: 100%;
	}
	
	.language-links {
		padding-bottom: 44px;
	}
	
	.language-links a {
		display: block;
	}
	
	.language-links a:first-child {
		margin-right: 0px;
		margin-bottom: 8px;
	}
	
	
	/* ********* Foooter Styles ********* */
	.landing-page footer {
		padding-left: 20px;
		padding-right: 20px
	}
	
	.landing-page footer nav {
		width: 100%;
	}

}