﻿
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,300);

body{font-family: "open sans", "Lucida Grande", "Tahoma", "Verdana", "Arial", sans-serif !important;
	margin:0px;
	line-height:170% !important;}

.main-nav {
	position: absolute;
	top: 20px;
	right: 15px;

	z-index: 10
}

.main-nav>ul {
	display: flex;
	-webkit-flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
	list-style: none
}

nav.grey-color ul li a {
	color:#79869f !important;
}

.main-nav>ul li {
	display: inline;
	font-size: 16px;
	font-weight: 400;
	margin-left: 30px
}

.main-nav>ul li a {
	color: #79869f;
	text-decoration: none
}

.main-nav>ul li a:hover {
	color: #232729;
	transition: color 0.15s ease-in-out
}

.main-nav>ul li.parent {
	position: relative;
	padding-right: 15px
}

.main-nav>ul li.parent:hover .dropdown-list {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out
}

.main-nav>ul li.parent:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	/*border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 3px solid #79869f;*/
	position: absolute;
	top: 11px;
	right: 0
}

.main-nav ul.dropdown-list {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 0;
	border: 1px solid #E1E6EF;
	border-radius: 4px;
	background-color: #FFFFFF;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease-in-out 0.2s, visibility 0.15s ease-in-out 0.2s
}

.main-nav ul.dropdown-list li {
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: 400
}

.main-nav ul.dropdown-list li a {
	display: block;
	height: 30px;
	line-height: 30px;
	border-bottom: 1px solid #FFFFFF;
	padding: 0 35px 0px 25px;
	color: #3A4145;
	background: #FFFFFF;
	white-space: nowrap;
	transition: none;
	text-align: left;
	cursor: pointer
}

.main-nav ul.dropdown-list li a:hover {
	background: #0087e2;
	color: #FFFFFF
}

.main-nav .dropdown-list>.triangle-with-shadow {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	overflow: hidden;
	background: transparent
}

.main-nav .dropdown-list>.triangle-with-shadow:after {
	content: "";
	position: absolute;
	bottom: 7.5px;
	left: 7.5px;
	width: 15px;
	height: 15px;
	background: #FFFFFF;
	transform: rotate(45deg);
	box-shadow: -1.5px -1.5px 3px 0 rgba(0, 0, 0, 0.1)
}

.main-nav .hamb-button {
	display: none
}

.main-nav .login a {
	position: static;
	padding: 0 15px;
	display: inline-block;
	height: 35px;
	line-height: 35px;
	border: 1px solid #d9dadb;
	background: #FFFFFF;
	border-radius: 4px
}

.main-nav.slim .parent {
	display: none
}

.main-nav.slim ul li:nth-child(2) {
	display: none
}

.main-nav.slim.blue .login>a {
	color: white;
	background-color: #0086E6
}


.copyright{font-size:13px; text-align:center;}

@media (max-width: 768px) {
	.main-nav {
		position: absolute;
		top: 10px;
		right: 0;
		left: 0
	}
	.main-nav>ul {
		display: none;
		justify-content: center;
		align-items: center
	}
	.main-nav .hamb-button {
		position: absolute;
		top: 10px;
		right: 35px;
		border-radius: 4px;
		cursor: pointer;
		display: inline-block;
		text-decoration: none;
		height: 39px;
		z-index: 111;
		width: 40px;
		font-size: 20px;
		padding: 0px 6px;
		background: rgba(100, 100, 100, 0.2)
	}
	.main-nav .hamb-button.active {
		background: transparent;
		top: 20px;
		right: 50px
	}
	.main-nav .hamb-button i {
		position: relative;
		display: inline-block;
		width: 28px;
		height: 3px;
		font: bold 14px/.4 Helvetica;
		text-transform: uppercase;
		text-indent: -55px;
		background: #FFFFFF;
		transition: all 0.2s ease-out
	}
	.main-nav .hamb-button i::after,
	.main-nav .hamb-button i::before {
		content: '';
		width: 28px;
		height: 3px;
		background: #FFFFFF;
		position: absolute;
		left: 0;
		transition: all 0.2s ease-out
	}
	.main-nav .hamb-button i::before {
		top: -9px
	}
	.main-nav .hamb-button i::after {
		bottom: -9px
	}
	.main-nav .hamb-button.active i {
		background: transparent
	}
	.main-nav .hamb-button.active i::before {
		background: #4f595f;
		top: 0;
		-webkit-transform: rotateZ(45deg);

		-moz-transform: rotateZ(45deg);
		-ms-transform: rotateZ(45deg);
		-o-transform: rotateZ(45deg);
		transform: rotateZ(45deg)
	}
	.main-nav .hamb-button.active i::after {
		background: #4f595f;
		bottom: 0;
		-webkit-transform: rotateZ(-45deg);
		-moz-transform: rotateZ(-45deg);
		-ms-transform: rotateZ(-45deg);
		-o-transform: rotateZ(-45deg);
		transform: rotateZ(-45deg)
	}
	.main-nav.slim.blue .login>a {
		color: #0086E6;
		background-color: transparent
	}
	.main-nav.active {
		top: 0;
		background: #FFFFFF;
		height: calc(100% + 7%);
		z-index: 110
	}
	.main-nav.active ul {
		display: block;
		padding: 100px 20px 150px;
		height: 100%;
		overflow-y: scroll;
		background: #F4F9FD;
	}
	.main-nav.active ul li {
		display: block;
		font-size: 16px;
		font-weight: 400;
		margin-left: 30px;
		margin-bottom: 30px;
		text-align:center;
	}
	.main-nav.active ul li.parent:after {
		content: "";
		display: none
	}
	.main-nav.active ul li a {
		color: #0068AF;
		font-size: 36px;
		margin-top: 22px
	}
	.main-nav.active ul li a:hover {
		color: #0087e2 !important
	}
	.main-nav.active ul.dropdown-list {
		display: block;
		visibility: visible;
		opacity: 1;
		border: none;
		background: none;
		overflow: hidden;
		box-shadow: none;
		transform: none;
		padding: 0;
		position: relative;
		left: auto;
		top: 0px;
		margin-bottom: 30px
	}
	.main-nav.active ul.dropdown-list .triangle-with-shadow {
		display: none
	}
	.main-nav.active ul.dropdown-list li {
		margin: 20px auto auto 30px
	}
	.main-nav.active ul.dropdown-list li a {
		background: none;
		border: none;
		font-size: 20px;
		margin-left: 0;
		opacity: 1;
		padding: 0;
		margin-top: 10px
	}
	.main-nav.active .login a {
		padding: 0;
		display: block;
		height: inherit;
		line-height: inherit;
		border: none;
		background: none;
		border-radius: 0
	}
}

@media (min-width: 769px) {
	.invert>ul:not(.dropdown-list)>li:not(.login)>a {
		color: #FFFFFF;
		text-decoration: none
	}
	.invert>ul:not(.dropdown-list)>li:not(.login)>a:hover {
		color: #d9dadb
	}
	.invert>ul:not(.dropdown-list)>li.parent:after {
		border-top: 3px solid #FFFFFF
	}
	.invert>ul:not(.dropdown-list)>li.parent:hover:after {
		border-top: 3px solid #d9dadb
	}
	.academy-over-footer .footer-logo-list{padding-left:0px; padding-right:0px;}
}



.academy-overview {

	background-color: #FFFFFF
}

.academy-overview .logo-container {
	height: auto;
	min-height: auto;
	padding: 15px 0 30px
}

.academy-overview .logo-container .logo {
	margin: 0 auto;
	position: relative
}


.academy-overview .logo-container a{text-decoration:none;}

.academy-overview .logo-container a:hover{text-decoration:none;}


@media (max-width: 900px) {
	.academy-overview h2 {

		font-weight: 400
	}
}

@media (max-width: 599px) {
	.academy-overview h2 {

		padding-left: 20px;
		padding-right: 20px;
		font-weight:400 !important;
	}
}

@media (max-width: 900px) {
	.academy-overview h3 {

		font-weight: 400;
	}
}

@media (max-width: 599px) {
	.academy-overview h3 {

		padding-left: 10px;
		padding-right: 10px
	}
}

.academy-overview .hero {
	padding-top: 2em;
	padding-bottom: 4em;
	background: #F4F9FD;
	border-bottom: 1px solid #E1E6EF;
	text-align: center;
	background: linear-gradient(#fdfeff, #f0f7fc)
}

@media (max-width: 700px) {
	.academy-overview .hero {
		padding-left: 1em;
		padding-right: 1em
	}
}

.academy-overview .hero h1 {
	color:#333333;
	margin: 0 auto 15px;
	font-weight:200;
}

@media (max-width: 900px) {
	.academy-overview .hero h1 {

		line-height: 1.4;
		font-weight: 400
	}
}

@media (max-width: 599px) {
	.academy-overview .hero h1 {
		font-size: 1.7em
	}
}

.academy-overview .hero p {
	font-size: 1.2em;
	margin: 0 1em
}

@media (max-width: 700px) {
	.academy-overview .hero p {
		font-size: 1em
	}

	.our-customers .logo-cols img{max-width:125px !important;}
	.cta-form-voice{max-width:475px !important;}
}

.academy-overview .hero p+p {
	padding-top: 5px
}

.academy-overview .hero.browser-frame-hero {
	padding-bottom: 0
}

.academy-overview .hero.browser-frame-hero+section {
	margin-top: 5em
}

.academy-overview .hero.browser-frame-hero .browser-frame {
	top: 35px;
	margin: 0 auto -35px
}

.academy-overview .content {
	min-width: 300px
}

.academy-overview .text-only-component {
	padding: 0 100px;
	text-align: center
}


.headline-only h2{text-align:center !important;}


@media (max-width: 900px) {
	.academy-overview .text-only-component {
		padding: 0 30px
	}
}

@media (max-width: 599px) {
	.academy-overview .text-only-component {
		padding: 0
	}
}

.academy-overview .text-only-component h1,
.academy-overview .text-only-component h2,
.academy-overview .text-only-component h3,
.academy-overview .text-only-component h4 {
	margin-bottom: 15px
}

.academy-overview .text-only-component h1,
.academy-overview .text-only-component h2,
.academy-overview .text-only-component h3,
.academy-overview .text-only-component h4,
.academy-overview .text-only-component p {
	text-align: center
}

.academy-overview .text-only-component p {
	padding-bottom: 5px
}

.academy-overview .section {
	margin-top: 3em;
	position: relative
}

.academy-overview .introduction {
	text-align: center
}

.academy-overview .hero-cta .btn {
	margin-top: 30px
}

.academy-overview #download .btn {
	height: auto;
	line-height: 1.5;
	padding: 10px 20px;
	margin: 10px auto
}





.large-image-section {
	padding: 40px 0;
}

.content {
	max-width: 920px;
	margin: auto;
	padding: 50px 15px;
	min-width: 60em
}

.content:after {
	clear: both;
	content: "";
	display: table
}

.outer-container {
	margin: auto;
	max-width: 60em
}

.outer-container:after {
	clear: both;
	content: "";
	display: table
}



.video-center{text-align:center; margin-bottom:25px;}



.small-font{font-size:27px; font-weight:bold !important;}

.cta-form-voice {
	width: 600px;
	margin: 35px auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center
}

.cta-form-voice::after {
	clear: both;
	content: "";
	display: block
}

@media (max-width: 599px) {
	.cta-form-voice {
		flex-direction: column;
		width: 100%
	}
	.our-customers .logo-cols{width:100% !important;}


	.our-customers .logo-cols .cbc{padding-top:0%!important;}

	.our-customers .logo-cols .expertise{padding-top:5%!important;}

	.our-customers .logo-cols .thumbtack{padding-top:10%!important;}
}

.cta-form-voice span {
	color: rgba(255, 255, 255, 0.5);
	display: block;
	padding-top: 15px;
	font-size: 16px;
	font-weight: 500;
	clear: both;
	text-align: center
}

.cta-form-voice .input-cta-form-voice {
	flex-grow: 1;
	font-size: 18px;
	height: 50px;
	border: 2px solid #0087e2;
	border-radius: 4px 0 0 4px;
	border-right: 0;
	transition: border-color 0.2s ease;
	margin: 0;
	padding: 0 15px;
	color: #6d6d6d
}

.cta-form-voice .input-cta-form-voice::placeholder {
	color: rgba(61, 66, 77, 0.4)
}

.cta-form-voice .input-cta-form-voice:focus {
	border: 2px solid #0087e2;
	border-right: none
}

@media (max-width: 599px) {
	.cta-form-voice .input-cta-form-voice {
		border-radius: 4px;
		border-right: 2px solid #0087e2 !important;
		width: 100%;
		margin-bottom: 10px
	}
}

.cta-form-voice .btn-cta-form-voice {
	flex-grow: 0;
	height: 50px;
	border-radius: 0 4px 4px 0;
	color: #fff;
	background: #0087e2;
	border: solid 2px #0087e2;
	border-left: 0;
	transition: all .2s ease;
	font-size: 18px;
	margin: 0;
	padding: 0 35px
}

.cta-form-voice .btn-cta-form-voice :focus {
	-webkit-box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.5)
}

@media (max-width: 599px) {
	.cta-form-voice .btn-cta-form-voice {
		border-radius: 4px;
		width: 100%
	}
}

.cta-form-voice:hover .input-cta-form-voice {
	border-color: #16a1ff
}

.cta-form-voice:hover .btn-cta-form-voice {
	background: #16a1ff;
	border-color: #16a1ff
}

.cta-sub-text {
	color: #0070BC;
	font-weight: 400;

	position: relative;
	top: -20px;
	text-align: center
}





.footer-form {
	padding-top: 40px;
	padding-bottom: 80px
}

.footer-form h2 {
	text-align: center;
	margin: 0 auto;
	color: #3A4145;
	font-weight: 300
}

.footer-form p.lead {

	letter-spacing: 0.13px;
	line-height: 1.7;
	cursor: default
}



.footer-form span {
	color: #0087e2
}

@media screen and (max-width: 550px) {
	.footer-form {
		width: 90%;
		margin: 0 auto !important
	}
}





.left-right-image {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	justify-content: space-around;
	align-items: center;
	padding: 30px 0;
	max-width: 766px;
	margin: 0 auto
}

.left-right-image:nth-child(even) {
	-webkit-flex-flow: row-reverse nowrap
}

@media (max-width: 599px) {
	.left-right-image {
		flex-direction: column !important
	}
}

.left-right-image .image,
.left-right-image .text {
	width: 50%
}

@media (max-width: 599px) {
	.left-right-image .image,
	.left-right-image .text {
		width: 90%;
		text-align: center
	}
}

.left-right-image .image {
	text-align: center
}

.left-right-image img.oversize-image {
	max-width: 55%
}

.left-right-image img {
	max-width: 90%;
	height: auto
}

.left-right-image p {
	padding-bottom: 5px
}

.left-right-image .text h2,
.left-right-image .text h3 {
	padding-bottom: 20px;
	text-align: left
}

@media (max-width: 599px) {
	.left-right-image .text h2,
	.left-right-image .text h3 {
		text-align: center
	}

}




.learn-more-link {
	font-size: 18px;
	background:url(../../public_image/arrow-right.png) no-repeat right;
	padding-right:18px;
}

.a-blue {
	color: #0087e2;
	text-decoration: none;
}


section.blue-bg {
	background: #F4F9FD;
}


.half {
	float: left;
	display: block;
	margin-right: 2.12766%;
	width: 46.93617%;
	text-align: center;
	padding: 0 20px;
}


.academy-overview .text-only-component {
	padding: 0 100px;
	text-align: center;
}


.our-customers h2 {
	text-align: center;
	margin-bottom: 20px;
}



.customer-logo.mint {
	background-image: url(../../public_image/fc3/logo-mint.png);
	background-size: 75%;
	background-position-y: 30px;
}


.customer-logo.yahoo {
	background-image: url(../../public_image/fc3/pa_philadelphia_voice-lessons_2018.svg);
	background-size: 80%;
}

.customer-logo.thumbtack {
	background-image: url(../../public_image/fc3/thumbtack_logo.png);
	background-size: 86%;
	background-position-y: 41px;
}

.customer-logo {
	width: 112px;
}



.our-customers .logo-cols {
	float: left;
	display: block;
	margin-right: 2.1276595745%;
	width: 30.4042553191%;
	text-align:center;
}

.our-customers .logo-cols img{max-width:170px; opacity:0.7;}

.our-customers .logo-cols img:hover{opacity:1;}

.our-customers .logo-cols .cbc{padding-top:21%;}

.our-customers .logo-cols .expertise{padding-top:8%;}

.our-customers .logo-cols .thumbtack{padding-top:25%;}







/*Start-Profiler-page*/

.vocal-profiler .mainbg-head {
	padding-top: 2em;
	padding-bottom: 4em;
	border-bottom: 1px solid #E1E6EF;
	text-align: center;
	background:url(../../public_image/bg-profilehead.png) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height:100%;
	padding-bottom:2%;
}

.vocal-profiler .headline-wrap{ max-width:960px; width:100%; margin-left:auto; margin-right:auto; padding-left:2%; padding-right:2%;}

.vocal-profiler .mainbg-head h1{ color:#333333; font-weight:300 !important; font-size:34px; text-align:center; line-height:170%;}


.vocal-profiler h2,h3,h1,h4,h5{line-height:140% !important;}

.vocal-profiler .footer-form{padding-top:80px;}


.vocal-profiler  .drag-info-wrap {
	width: 330px;
	height: 155px;
	background: url(../../public_image/drag-info-bg.svg) no-repeat 100%;
	transform: rotate(2deg) scale(0.95);
	padding: 30px 55px 35px 55px;
	z-index: 3;
	margin-left:auto;
	margin-right:auto;
}


.vocal-profiler .drag-info-wrap p {
	color: #00548C;
	padding-bottom: 5px;
	line-height: 1.4;
}

.vocal-profiler .drag-info-wrap strong {
	font-size: 17px;
}


.banner-magnifying #discover-treasure-canvas {
	background-image: url(../../public_image/curatinbanner-blue.png);
	z-index: 2;
}


.banner-magnifying .discover-default {
	position: relative;
	width: 100%;
	z-index: 0;
	background-repeat: no-repeat;
	background-color: transparent;
	background-position: left top;
	background-size: 100% auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


.no-margin-first{margin-top:0em !important;}

.vocal-profiler .text-only-component {
	padding: 0 50px !important;
	text-align: center
}



@media (max-width: 599px) {
	.vocal-profiler .mainbg-head h1{font-weight:300 !important; font-size:22px; text-align:center;}
}

/*EndProfile-Page*/



/*Video Voice Lessons*/

.overlay .animate-img{
	animation:image-animate1 ease-in-out infinite;
	animation-duration:8.5s
}
.planet,.journey,.saturn,.ship{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:transparent
}
.ship{
	animation:floating 10s infinite;
	animation-timing-function:ease-in-out
}
.ship:before{
	content:"";
	width:105px;
	height:116px;
	position:absolute;
	right:7%;
	bottom:170px;
	background:url(../../public_image/header-img-edited.png) no-repeat;
	background-size:105px;
	background-position:center;
	transform:rotate(-5deg);
	animation:rocking 10s infinite;
	animation-timing-function:ease-in-out
}
@media screen and (max-width: 1110px){
	.ship:before{
		display:none
	}
}
@keyframes rocking{
	50%{
		transform:rotate(5deg)
	}
}
.journey:before{
	content:"";
	width:90%;
	height:452px;
	position:absolute;
	bottom:-120px;
	left:0;
	background:url(../../public_image/Lines-v2.svg) no-repeat 55% center;
	opacity:0.4;
	z-index:-2
}
@media screen and (max-height: 650px){
	.journey:before{
		bottom:-100px;
		opacity:0.3
	}
}
.planet:before{
	content:"";
	width:780px;
	height:780px;
	position:absolute;
	bottom:-520px;
	left:50%;
	margin-left:-437px;
	background:url(../../public_image/earth-orignal.png) no-repeat;
	background-size:100%;
	background-position:center;
	z-index:-1;
	animation:slow-rotate 180s infinite;
	animation-timing-function:linear;
	transition:bottom 0.5s ease
}
@keyframes slow-rotate{
	from{
		transform:rotate(0deg)
	}
	to{
		transform:rotate(360deg)
	}
}
.astronaut-wrap{
	display:inline-block;
	position:relative
}
.astronaut-img{
	animation:floating 10s infinite;
	animation-timing-function:ease-in-out;
	position:relative
}
@keyframes floating{
	20%{
		transform:translate(-10px, 10px)
	}
	40%{
		transform:translate(10px, 10px)
	}
	60%{
		transform:translate(-10px, -10px)
	}
	80%{
		transform:translate(10px, -10px)
	}
	100%{
		transform:translate(0px, 0px)
	}
}
.animated{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both
}
@-webkit-keyframes fadeInDown{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0, -7%, 0);
		transform:translate3d(0, -7%, 0)
	}
	100%{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes fadeInDown{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0, -7%, 0);
		transform:translate3d(0, -7%, 0)
	}
	100%{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}

.video-voice-lesson{background: rgba(0,135,226,0.03);}

.video-voice-lesson .splash-content:before{
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:url(../../public_image/A027D48B-B71F-4E13-82D0-C604E89A7D57.svg) no-repeat center 10px/95%;
	opacity:0.5;
	z-index:-1
}
.video-voice-lesson .three-boxes div.var-default{
	margin-top:80px;
	padding-top:80px;
	border-top:1px solid #E1E6EF
}
.video-voice-lesson .illustration-mask{
	width:100%;
	overflow:hidden;
	height:calc(100% + 100px);
	position:absolute;
	bottom:-100px;
	z-index:-1
}
.video-voice-lesson .circular-mask{
	width:200%;
	height:1200px;
	border-radius:50%;
	overflow:hidden;
	z-index:-1;
	position:absolute;
	bottom:0;
	left:-50%;
	background:-moz-linear-gradient(top, rgba(0,102,177,0) 0%, #004682 79%, #003e75 100%);
	background:-webkit-linear-gradient(top, rgba(0,102,177,0) 0%, #004682 79%, #003e75 100%);
	background:linear-gradient(to bottom, rgba(0,102,177,0) 0%, #004682 79%, #003e75 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr= '#000066b1', endColorstr='#003e75',GradientType=0 )
}
@media screen and (max-width: 550px){
	.video-voice-lesson .circular-mask{
		display:none
	}
}
.video-voice-lesson .splash-foot .tell-me-more{
	background:rgba(255,255,255,0.65);
	color:#3A4145
}
.video-voice-lesson .splash-foot .tell-me-more:hover{
	color:#0087e2
}
.video-voice-lesson .main-center h1{
	color:#FFFFFF
}
@media screen and (max-width: 550px){
	.video-voice-lesson .main-center h1{
		font-size:2.8em
	}
}
@media screen and (max-width: 360px){
	.video-voice-lesson .main-center h1{
		font-size:2.4em
	}
}
@media (max-width: 599px){
	.video-voice-lesson .main-center .main-cta{
		margin:35px auto 0
	}
}
.video-voice-lesson .main-center .main-cta .btn-main-cta{
	background:#F4F9FD;
	border-color:#F4F9FD;
	color:#3A4145
}
.video-voice-lesson .main-center .main-cta .btn-main-cta:focus{
	-webkit-box-shadow:none
}

.video-voice-lesson .splash-content p.lead{
	color:rgba(255,255,255,0.75)
}
.video-voice-lesson .splash-content{
	position:relative;
	height:100vh;
	min-height:380px;
	max-height:550px;
	background:#0066b1;
	background:-moz-linear-gradient(top, #0066b1 0%, #004777 100%);
	background:-webkit-linear-gradient(top, #0066b1 0%, #004777 100%);
	background:linear-gradient(to bottom, #0066b1 0%, #004777 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr= '#0066b1', endColorstr='#004777',GradientType=0 )
}
.video-voice-lesson .main-center .main-cta .input-main-cta{
	border-color:#F4F9FD;
	background:rgba(32,31,35,0.2);
	color:#FFFFFF
}
.video-voice-lesson .main-center .main-cta .input-main-cta::placeholder{
	color:rgba(255,255,255,0.5)
}
.video-voice-lesson .main-center .main-cta .input-main-cta:focus{
	border-color:#FFFFFF
}
@media (max-width: 599px){
	.video-voice-lesson .main-center .main-cta .input-main-cta{
		border-right:2px solid #FFFFFF !important
	}
}
.video-voice-lesson .main-center .main-cta:hover .btn-main-cta{
	background:#FFFFFF;
	border-color:#FFFFFF
}
.video-voice-lesson .main-center .main-cta:hover .input-main-cta{
	border-color:#FFFFFF
}
.video-voice-lesson .middle-cta{
	border-top:1px solid #E1E6EF
}
.video-voice-lesson .middle-cta .cta{
	margin:80px auto
}
.video-voice-lesson .main-center.var-email .error-message{
	text-shadow:0 0 2px rgba(0,0,0,0.3);
	color:#F4AD3B
}
.video-voice-lesson .var-email .error-message{
	padding-top:5px;
	font-size:15px;
	text-align:left;
	color:#ea5e5c
}
.video-voice-lesson .ce-video{
	text-align:center;
	padding-top:200px !important
}
@media screen and (max-width: 550px){
	.video-voice-lesson .ce-video{
		padding-top:80px !important
	}
}
@media (max-width: 599px){
	.splash-foot .foreground-hills:before{
		display:none
	}
}
.splash-content{
	width:100%;
	margin:0 auto;
	height:100vh;
	min-height:700px;
	position:relative;
	z-index:5;
	background:#b3dbf6;
	background:-moz-linear-gradient(5deg, #b3dbf6 0%, #cbebff 10%, #f3f9fd 44%, #f7fafc 100%);
	background:-webkit-gradient(linear, left bottom, right top, color-stop(0%, #b3dbf6), color-stop(10%, #cbebff), color-stop(44%, #f3f9fd), color-stop(100%, #f7fafc));
	background:-webkit-linear-gradient(5deg, #b3dbf6 0%, #cbebff 10%, #f3f9fd 44%, #f7fafc 100%);
	background:-o-linear-gradient(5deg, #b3dbf6 0%, #cbebff 10%, #f3f9fd 44%, #f7fafc 100%);
	background:-ms-linear-gradient(5deg, #b3dbf6 0%, #cbebff 10%, #f3f9fd 44%, #f7fafc 100%);
	background:linear-gradient(5deg, #b3dbf6 0%, #cbebff 10%, #f3f9fd 44%, #f7fafc 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr= '#b3dbf6', endColorstr='#f7fafc',GradientType=1 )
}
@media (max-width: 599px){
	.splash-content{
		font-size:0.6em
	}
}
@media (max-width: 900px){
	.splash-content{
		font-size:0.8em
	}
}
@media screen and (max-height: 740px) and (min-width: 600px){
	.splash-content{
		min-height:600px
	}
}
.splash-content .main-center{
	height:35%;
	min-height:200px;
	width:90%;
	margin:0 auto;
	text-align:center;
	background-color:transparent
}
@media screen and (max-width: 550px){
	.splash-content .main-center{
		font-size:0.8em
	}
}
.splash-content+section{
	padding-top:80px
}
@media (min-width: 1800px){
	.splash-content+section{
		padding-top:400px
	}
}
@media (max-width: 599px){
	.splash-content+section{
		padding-top:60px
	}
}
@media screen and (min-height: 860px){
	.splash-content+section{
		padding-top:150px
	}
}
.ce-video,.feature-checks{
	background:rgba(0,135,226,0.05)
}
.ce-video,.faq,.feature-checks,.paragraph-text,.three-boxes{
	padding-top:80px;
	padding-bottom:80px
}
.faq,.paragraph-text{
	border-bottom:1px solid #E1E6EF
}

.main-logo-recording{text-align:center;}

.video-voice-lesson h1{font-weight:300 !important; font-size:34px; text-align:center; line-height:170%;}

.video-voice-lessons-nav a{color:#f9f9f9 !important;}

.video-voice-lessons-nav a:hover{color:#999 !important;}

.video-voice-login a{color:#232729 !important;}

#video-top-title-font{line-height:140%;}

.three-boxes{background:#fff; text-align: center;}

.outer-container {
	margin: auto;
	max-width: 60em;
}

.three-boxes .third {
	float: left;
	display: block;
	margin-right: 1.35765%;
	width: 31.76157%;
	padding: 0 17px;
}

.three-boxes .third h3 {
	text-align:center;
}

.three-boxes .imagethree1 {
	background: url(../../public_image/click-illustration.png) no-repeat center/175px;
	height: 175px;
	width: 175px;
	margin: 10px auto 15px;
}


.three-boxes .imagethree2 {
	background:url(../../public_image/avoid-illustration.png) no-repeat center/175px;
	height: 175px;
	width: 175px;
	margin: 10px auto 15px;
}


.three-boxes .imagethree3 {
	background:url(../../public_image/Vocal-Training-Exercises.png) no-repeat center/175px;
	height: 175px;
	width: 175px;
	margin: 10px auto 15px;
}


.three-boxes h2 {
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
	line-height:140%;
}


.video-voice-footer-form{background:#fff; border-top: 1px solid #E1E6EF; padding-top:100px;}




.video-voice-lesson .feature-checks {
	background: #0066b1;
	background: -moz-linear-gradient(-45deg, #0066b1 0%, #004777 100%);
	background: -webkit-linear-gradient(-45deg, #0066b1 0%, #004777 100%);
	background: linear-gradient(135deg, #0066b1 0%, #004777 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= '#0066b1', endColorstr='#004777',GradientType=1 );
	position: relative;
}

.video-voice-lesson .feature-checks:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../../public_image/A027D48B-B71F-4E13-82D0-C604E89A7D57.svg) no-repeat center/85%;
	opacity: 0.5;
}


.video-voice-lesson .feature-checks .wavy-bg::before {
	content: '';
	width: 100%;
	height: 380px;
	position: absolute;
	top: 60px;
	left: 0;
	background: url(../../public_image/wavy-bg.svg) no-repeat center/100%;
	opacity: 0.15;
}

.myfonthalf h2{color:#fff !important; text-align:left; line-height:140%;}

.myfonthalf p{color:#fff !important; text-align:left;}



.main-two-part-secion {
	text-align: center;
	border-bottom: 1px solid #E1E6EF;
	padding-top:80px;
	padding-bottom:80px;
	background:#fff;
}

.main-two-part-secion .checkmartk-imgleft {
	background-image: url(../../public_image/right-illustration.png);
	width: 75px;
	height: 75px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto 15px;
}

.main-two-part-secion .time-img-right {
	background-image: url(../../public_image/save-time-illustration.png);
	width: 75px;
	height: 75px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto 15px;
}

.main-two-part-secion p{text-align:justify;}



.last-section-voice-lesson{

	padding-top:80px;
	padding-bottom:80px;
	background:#fff;
	text-align:center;
}


@media (max-width: 768px) {
	.main-nav > ul li a{color:#0068AF !important;}

	.three-boxes .third {
		float: none;
		width: 100%;
		margin: 0 auto !important;}

	.video-voice-footer-form{width:100% !important;}

	.text-only-component h2{font-weight:300 !important; font-size:22px !important;}
}
/*End Video-Voice-Page*/



/*Start-Vtrain-Practice-App*/

.vtrain-practice .header-banner-vtrain {
	z-index:999;
	height: 100vh;
	min-height: 450px;
	max-height: 700px;
	background: #65bad4;
	background: -moz-linear-gradient(-45deg, #65bad4 0%, #3282aa 100%);
	background: -webkit-linear-gradient(-45deg, #65bad4 0%, #3282aa 100%);
	background: linear-gradient(135deg, #65bad4 0%, #3282aa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= '#65bad4', endColorstr='#3282aa',GradientType=1 );
	padding-top:30px;
	position:relative;
}


.vtrain-practice .header-banner-vtrain .logo-container{min-height:190px;}



.vtrain-practice .header-banner-vtrain:after{
	background:url(../../public_image/light-rays.svg) no-repeat;
	position:absolute;width:100%;height:100%;
	top:0;left:0;z-index:0;
	pointer-events:none;content:''}


.vtrain-practice .header-banner-vtrain .bottom-sea:before{background:url(../../public_image/sand-foreground.svg) no-repeat;background-position:bottom;background-size:100% auto;bottom:0;width:100%;height:400px;content:"";position:absolute;z-index:20}



.vtrain-practice  .header-banner-vtrain .bottom-sea:after{background:url(../../public_image/sand-background-f.svg) no-repeat;background-position:bottom;width:100%;height:400px;content:"";bottom:0;position:absolute;z-index:10}


.speech-bubble {
	position: absolute;
	top: 25px !important;
	left: -120px;

}

.text-animiated-self{animation: bubbles ease-in-out infinite;
	animation-duration: 2s; color:#fff !important; font-size:16px !important;}

.speech-bubble {
	padding: 10px;
	font-size: 0.95em;
	background: rgba(0,104,175,0.5);
	border-radius: 8px;
	width: 140px;
	color: #fff !important;
	line-height: 1.3;
	transition: all 0.2s ease;
	visibility: hidden;
	opacity: 0;
}

.speech-bubble.left:after {
	content: "";
	display: block;
	width: 0;
	position: absolute;
	right: -15px;
	bottom: 15px;
	border-width: 15px 0 0 15px;
	border-style: solid;
	border-color: transparent rgba(0,104,175,0.5);
}


.live-test-info {

	border-radius: 8px;
	background: rgba(0,84,140,0.5);
	text-align: center;
	color: #fff;
	margin: 70px auto 0;
	padding: 15px 15px 15px 15px;
	font-size:17px;

}


.left-text-new {
	width: 30%;
	position: relative;
	z-index: 22;

}


.vtrain-practice .header-banner-vtrain .bottom-sea:before{height: 500px;}

.vtrain-practice .header-banner-vtrain .bottom-sea {
	bottom: -120px;
}

.vtrain-practice .header-banner-vtrain .bottom-sea {
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
	overflow: hidden;
	height: 100%;
	z-index: 0;
}


.vtrain-practice .splash-content .main-center {
	padding-top: 0;
	margin-top: -80px;
	height: auto;
	position: relative;
	z-index: 1;
}


.vtrain-practice .splash-content h1 {
	color: #fff;
}


.vtrain-practice .splash-content p {
	color: rgba(255,255,255,0.75);
}

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

.main-padding-top-vtrain{padding-top:170px !important;}

.vtrain-practice .three-boxes .third img{width:175px;}

/*StartFishSection-15-6-2018*/


.left-side-fish-section:after {
	background: url(../../public_image/sub-bubbles2.svg) top no-repeat;
	background-position: bottom;
	top: -50px;
	right: 80px;
	width: 60px;
	height: 90px;
	content: "";
	position: absolute;
	z-index: 20;
	animation: bubbles ease-in-out infinite;
	animation-duration: 3s;
}


.right-side-fish-section:after {
	background: url(../../public_image/sub-bubbles1.svg) top no-repeat;
	background-position: bottom;
	top: 0px;
	left: 0px;
	width: 60px;
	height: 80px;
	content: "";
	position: absolute;
	z-index: 20;
	animation: bubbles ease-in-out infinite;
	animation-duration: 2s;
}



.fish-hover *{
	transition:transform 0.15s ease-in-out
}
.fish-hover *:hover .sub-wrap{
	transform:scale(1.05)
}
.fish-hover *:hover .speech-bubble{
	visibility:visible;
	opacity:1
}
.main-two-fish-section{
	max-width:850px;
	padding:0 30px;
	margin:0 auto;
	position:relative;
	z-index:100;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	-webkit-flex-flow:row wrap;
	justify-content:space-between
}

@media (max-width: 767px){

	.live-test-info{margin-top:0px;}

}


@media (max-width: 767px){
	.main-two-fish-section{
		padding:0 15px
	}
}

.main-two-fish-section .left-side-fish-section{
	width:42%;
	position:relative;
	z-index:22;
	animation:floating 8s infinite;
	animation-timing-function:ease-in-out
}
@media (max-width: 599px){
	.main-two-fish-section .left-side-fish-section{
		width:65%;
		margin:0 auto
	}
}
.main-two-fish-section .left-side-fish-section img{
	width:100%
}
.main-two-fish-section .right-side-fish-section{
	width:35%;
	position:relative;
	z-index:22;
	animation:floating 10s infinite;
	animation-timing-function:ease-in-out;
	margin-left:auto;
	margin-right:100px;
}



.fish-hover a:hover{text-decoration:none !important;}

.main-two-fish-section p{color:#777 !important; text-align:center;}

.main-two-fish-section h2{text-align:center; color:#777 !important; }

@media (max-width: 599px){
	.main-two-fish-section .right-side-fish-section{
		width:30%;
		margin:0 auto
	}

	.main-two-fish-section .left-side-fish-section{
		width:30%;
		margin:0 auto
	}
}


.main-two-fish-section .right-side-fish-section img{
	width:100%
}



.speech-bubble span:first-child{
	margin-bottom:3px
}
.left-side-fish-section .speech-bubble{
	position:absolute;
	top:0;
	left:20px
}
.left-side-fish-section .speech-bubble strong{
	color:#FFE8C2
}
.right-side-fish-section .speech-bubble{
	position:absolute;
	top:0;
	right:20px
}
.right-side-fish-section .speech-bubble strong{
	color:#F2D7FD
}
@-webkit-keyframes image-animate1{
	80%{
		transform:translateY(calc(-100% + 150px))
	}
	100%{
		transform:translateY(calc(-100% + 150px))
	}
}
@-webkit-keyframes image-animate2{
	60%{
		transform:translateY(calc(-50% + 150px))
	}
	80%{
		transform:translateY(calc(-100% + 150px))
	}
	100%{
		transform:translateY(calc(-100% + 150px))
	}
}




@keyframes rocking{
	50%{
		transform:rotate(5deg)
	}
}





@keyframes slow-rotate{
	from{
		transform:rotate(0deg)
	}
	to{
		transform:rotate(360deg)
	}
}
.astronaut-wrap{
	display:inline-block;
	position:relative
}
.astronaut-img{
	animation:floating 10s infinite;
	animation-timing-function:ease-in-out;
	position:relative
}
@keyframes floating{
	20%{
		transform:translate(-10px, 10px)
	}
	40%{
		transform:translate(10px, 10px)
	}
	60%{
		transform:translate(-10px, -10px)
	}
	80%{
		transform:translate(10px, -10px)
	}
	100%{
		transform:translate(0px, 0px)
	}
}
.animated{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both
}
@-webkit-keyframes fadeInDown{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0, -7%, 0);
		transform:translate3d(0, -7%, 0)
	}
	100%{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes fadeInDown{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0, -7%, 0);
		transform:translate3d(0, -7%, 0)
	}
	100%{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
.fadeInDown{
	-webkit-animation-name:fadeInDown;
	animation-name:fadeInDown
}
@-webkit-keyframes fadeInUp{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0, 7%, 0);
		transform:translate3d(0, 7%, 0)
	}
	100%{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
@keyframes fadeInUp{
	0%{
		opacity:0;
		-webkit-transform:translate3d(0, 7%, 0);
		transform:translate3d(0, 7%, 0)
	}
	100%{
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
.fadeInUp{
	-webkit-animation-name:fadeInUp;
	animation-name:fadeInUp
}
@-webkit-keyframes fadeOutDown{
	0%{
		opacity:1
	}
	100%{
		opacity:0;
		-webkit-transform:translate3d(0, 7%, 0);
		transform:translate3d(0, 7%, 0)
	}
}
@keyframes fadeOutDown{
	0%{
		opacity:1
	}
	100%{
		opacity:0;
		-webkit-transform:translate3d(0, 7%, 0);
		transform:translate3d(0, 7%, 0)
	}
}
.fadeOutDown{
	-webkit-animation-name:fadeOutDown;
	animation-name:fadeOutDown
}
@-webkit-keyframes fadeOutUp{
	0%{
		opacity:1
	}
	100%{
		opacity:0;
		-webkit-transform:translate3d(0, -7%, 0);
		transform:translate3d(0, -7%, 0)
	}
}
@keyframes fadeOutUp{
	0%{
		opacity:1
	}
	100%{
		opacity:0;
		-webkit-transform:translate3d(0, -7%, 0);
		transform:translate3d(0, -7%, 0)
	}
}
.fadeOutUp{
	-webkit-animation-name:fadeOutUp;
	animation-name:fadeOutUp
}
@-webkit-keyframes fish{
	0%{
		left:-100px
	}
	25%{
		bottom:35%
	}
	50%{
		bottom:20%
	}
	75%{
		bottom:35%
	}
	100%{
		left:100%;
		bottom:20%
	}
}
@-webkit-keyframes fish_revers{
	0%{
		right:-150px
	}
	25%{
		bottom:30%
	}
	50%{
		bottom:10%
	}
	75%{
		bottom:30%
	}
	100%{
		right:100%;
		bottom:0%
	}
}
@-webkit-keyframes bubbles{
	0%{
		top:-30px;
		opacity:0.1
	}
	25%{
		opacity:0.5
	}
	50%{
		opacity:1
	}
	75%{
		opacity:0.5
	}
	100%{
		top:-60px;
		opacity:0
	}
}
/*EndFishSection*/


/*StartOfferSection*/

.modal {
	display: none; /* Hidden by default */
	position:absolute; /* Stay in place */
	z-index: 99999; /* Sit on top */
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(94,175,204,0.8); /* Black w/ opacity */
}

/* Modal Content */
.offer-content {
	background-color:none !important;
	background:none !important;
	margin: auto;
	width: 100%;
	padding:1% 1% 1% 1%;
	background-color: rgba(0,0,0,1);

}

.offer-content  h2{text-align:center; margin-top:10%; color:#000;}

.main-content-offer-middle{margin-left:auto; margin-right:auto;
	max-width:600px; background:#fff;
	padding:2%;
	font-size:18px;
	border-top: 5px solid #2d88f3;
	border-radius:10px 10px 0px 0px;}

.main-content-offer-bottom{margin-left:auto; margin-right:auto;
	max-width:600px; background:#2d88f3;
	padding:10px 2% 10px 2%;
	font-size:18px;
	border-top: 3px solid #2d88f3;
	border-radius:0px 0px 10px 10px;
	text-align:center;}

.main-content-offer-bottom a{color:#fff; text-decoration:none;}
/* The Close Button */
.close {
	color: #666;
	float: right;
	font-size: 34px;
	font-weight: bold;
	opacity:1;
}

.close:hover,
.close:focus {
	color: #444;
	text-decoration: none;
	cursor: pointer;
}

.avtar-img{margin-top:20px;}

.avtar-img img{margin-right:15px;}


/*EndOfferSection*/



/*End-Vtrain-Practice-App*/


/*StartFooter*/

.academy-over-footer {
	padding-bottom: 80px
}

.academy-over-footer .footer-wrap {
	padding-top: 30px
}

.academy-over-footer .footer-wrap::after {
	clear: both;
	content: "";
	display: block
}

.academy-over-footer .footer-list {
	margin-left:50px;

}



.academy-over-footer .footer-logo-list {

	width: 135px;
	text-align:center;

}

.academy-over-footer .footer-logo-list,
.academy-over-footer .footer-list {
	float: left;
	padding-bottom: 20px;
	margin-bottom: 20px
}

.recordings-demo-wrap{margin-bottom:30px;}

@media (max-width: 900px) {
	.academy-over-footer .footer-logo-list,
	.academy-over-footer .footer-list {
		float: none;
		width: 100%;
		border-bottom: 1px solid #E1E6EF;
		text-align: center
	}
}

.academy-over-footer ul {
	padding: 0
}
.academy-over-footer ul li {
	display: block;
	padding: 0;
	text-align: left;
	font-weight: 400;
	margin: 0
}
.academy-over-footer ul a {
	opacity: 1;
	-webkit-transition: none;
	transition: none
}
.academy-over-footer h4 {
	text-transform: uppercase;
	color: #6d6d6d;
	font-weight: 600;
	font-size:14px;
	margin-bottom: 10px
}

@media (max-width: 900px) {
	.academy-over-footer h4 {
		text-align: center
	}
}

.academy-over-footer ul {
	width: 100%
}

.academy-over-footer ul li {
	font-size: 14px;
	margin-bottom: 4px;
	white-space: nowrap
}

@media (max-width: 900px) {
	.academy-over-footer ul li {
		text-align: center
	}
}

.academy-over-footer ul a {
	font-weight: 400;
	color: #79869f
}

.academy-over-footer ul a:hover {
	text-decoration: underline
}

.academy-over-footer .footer-logo {
	width: 100%
}

@media (max-width: 768px) {
	.academy-over-footer .footer-logo {
		margin: auto;
		display: block
	}

	.half {
		float: none;
		width: 100%;
		margin: 0 auto 40px !important;
	}

	.academy-overview .text-only-component {
		padding: 0 25px;
		text-align: center;
	}

	p.lead{font-size:16px !important;}



	.academy-over-footer .footer-list {
		margin-left:0px;

	}


}

.academy-over-footer .footer-logo img {
	width: 72%
}

@media (max-width: 900px) {
	.academy-over-footer .footer-logo img {
		width: 125px
	}
}


footer {
	background: #F4F9FD;
	width: 100%;
}


.outer-container {
	margin: auto;
	max-width: 65em
}

.outer-container:after {
	clear: both;
	content: "";
	display: table
}

@media screen and (max-width: 60em) {
	.outer-container {
		padding-left: 10%;
		padding-right: 10%
	}
}
.video-voice-lessons-nav .dropdown-list  li  a {
	color: #3A4145 !important;
}
.video-voice-lessons-nav .dropdown-list  li  a:hover {
	color: #FFFFFF !important;
}
.main-nav.video-voice-lessons-nav{
	z-index: 9999;
}



/*EndFooter*/


