/*!
* IE10 viewport hack for Surface/desktop Windows 8 bug
* Copyright 2014-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

/*
* See the Getting Started docs for more information:
* http://getbootstrap.com/getting-started/#support-ie10-width
*/
@-ms-viewport     { width: device-width; }
@-o-viewport      { width: device-width; }
@viewport         { width: device-width; }

@-webkit-keyframes pulse {
	0% {
    	-webkit-transform: scale(1.0,1.0);
    }

    10% {
    	-webkit-transform: scale(0.9,0.9);
    }

    20% {
    	-webkit-transform: scale(1.0,1.0);
    }
}

@-moz-keyframes pulse {
    0% {
    	-moz-transform: scale(1.0,1.0);
    }

    10% {
    	-moz-transform: scale(0.9,0.9);
    }

    20% {
    	-moz-transform: scale(1.0,1.0);
    }
}

@-o-keyframes pulse {
    0% {
    	-o-transform: scale(1.0,1.0);
    }

    10% {
    	-o-transform: scale(0.9,0.9);
    }

    20% {
    	-o-transform: scale(1.0,1.0);
    }
}

@-ms-keyframes pulse {
    0% {
    	-ms-transform: scale(1.0,1.0);
    }

    10% {
    	-ms-transform: scale(0.9,0.9);
    }

    20% {
    	-ms-transform: scale(1.0,1.0);
    }
}

@keyframes pulse { 
	0% {
    	transform: scale(1.0,1.0);
    }

    40% {
    	transform: scale(0.9,0.9);
    }

    80% {
    	transform: scale(1.0,1.0);
    }
}

@-webkit-keyframes slide {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70%);
	} 
	100% {
		opacity: 1;
		-webkit-transform: translateY(0%);
	}
}

@-moz-keyframes slide {
	0% {
		opacity: 0;
		-moz-transform: translateY(70%);
	} 
	100% {
		opacity: 1;
		-moz-transform: translateY(0%);
	}
}

@-o-keyframes slide {
	0% {
		opacity: 0;
		-o-transform: translateY(70%);
	} 
	100% {
		opacity: 1;
		-o-transform: translateY(0%);
	}
}

@-ms-keyframes slide {
	0% {
		opacity: 0;
		-ms-transform: translateY(70%);
	} 
	100% {
		opacity: 1;
		-ms-transform: translateY(0%);
	}
}

@keyframes slide {
	0% {
		opacity: 0;
		transform: translateY(70%);
	} 
	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}


@font-face {
    font-family: 'Montserrat-Black';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


* {
	font-family: 'Montserrat', sans-serif;
}

body {
	background-color: #ffffff;
}

.mainbody {
	background-color: #000000;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(164,104,41,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(164,104,41,0.3);
	background-color: #f72bb0;
}

.bumper {
	width: 100%;
	padding: 70px 0px;
	margin-bottom: 0px;
}

.bumper:nth-child(even) {
	background-color: #ffffff;
}

.bumper:nth-child(odd) {
	background-color: #f6f7fb;
}

.white-block {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 30px;
}

.black-block {
	background: none;
	padding: 10px;
}

.category-block {
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 30px;
}

.purple-block {
	background-color: #4f21ff!important;
	color: #ffffff;
}

/* ANIMATED X */
.navbar-toggler.x {
	border: none;
}

.navbar-toggler.x:focus {
	outline: none;
}

.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 10% 10%;
	-ms-transform-origin: 10% 10%;
	transform-origin: 10% 10%;
}

.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(2) {
	opacity: 0;
	filter: alpha(opacity=0);
}

.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 10% 90%;
	-ms-transform-origin: 10% 90%;
	transform-origin: 10% 90%;
}

.navbar-toggler.x .icon-bar {
	width: 26px;
	display: block;
	height: 2px;
	background-color: #fff;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.navbar-toggler.x .icon-bar + .icon-bar {
	margin-top: 4px;
}

.navbar-toggler.x .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.navbar-toggler.x .icon-bar:nth-of-type(2) {
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-toggler.x .icon-bar:nth-of-type(3) {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

footer {
	background-color: #1c0764;
	padding: 40px 10px;
	color: #ffffff;
	font-size: 9pt;
	line-height: 1.5;
	vertical-align: middle;
}

footer > ul {
	margin-bottom: 0;
}

footer > ul > li > a {
	color: #ffffff;
	text-decoration: none;
}

.list-inline {
	margin: 0;
}

.list-inline > li {
	padding-left: 2px;
	padding-right: 2px;
	margin: 0;
}

.icon-svg {
	vertical-align: middle;
	height: 22px;
}

.icons-social {
	margin-right: 10px;
	margin-bottom: 15px; 
}

.icons-social:hover {
	color: #43c7f1;
}

.bullets {
	margin-top: 15px;
	margin-bottom: 20px;
}

.bullets li {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 5px;
}

.videocontainer {
	margin: 15px 0 15px 0;
}

.youtube-player {
	position: relative;
    padding-bottom: 46.23%;
    height: 0;
    overflow: hidden;
    max-width: 85%;
    background: none;
    margin: 5px auto;
    box-shadow: 13px 13px 0 #f72bb0;
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}

.youtube-player img {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: .4s all;
	-moz-transition: .4s all;
	transition: .4s all;
}

.youtube-player img:hover {
	-webkit-filter: brightness(75%);
}

.youtube-player .play {
	height: 72px;
	width: 72px;
	left: 50%;
	top: 50%;
	margin-left: -36px;
	margin-top: -36px;
	position: absolute;
	background: url("../img/play-btn.png") no-repeat;
	cursor: pointer;
}

.resize {
	width: auto;
	max-width: 100%;
}

a {
	color: #f72bb0;
	text-decoration: none;
	font-weight: bold;
	-webkit-transition: color 0.1s linear;
	-moz-transition: color 0.1s linear;
	-o-transition: color 0.1s linear;
	-ms-transition: color 0.1s linear;
	transition: color 0.1s linear;
}

a:hover, a:focus, a:active {
	color: #a5a5a5;
	text-decoration: underline;
	-webkit-transition: color 0.1s linear;
	-moz-transition: color 0.1s linear;
	-o-transition: color 0.1s linear;
	-ms-transition: color 0.1s linear;
	transition: color 0.1s linear;
}

li a {
	color: #ffffff;
	text-decoration: none;
	font-weight:normal;
}

.center {
	text-align: center;
}

.left-text {
	text-align: left;
}

.jumbotron {
	padding: 0%;
	margin-bottom: 0;
	background: none;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
}

.jumbotron h1 {
	font-size: 90px;
	line-height: 1.0;
	color: white;
}

.technology-hero {
	background-image: url("../img/technology-hero.jpg");
	padding: 10% 0 8% 0;
	background-size: cover;
}

.projects-hero {
	background-image: url("../img/projects-hero.jpg");
	padding: 10% 0 8% 0;
	background-size: cover;
}

.events-hero {
	background-image: url("../img/events-hero.jpg");
	padding: 10% 0 8% 0;
	background-size: cover;
}

.about-hero {
	background-image: url("../img/about-hero.jpg");
	padding: 10% 0 8% 0;
	background-size: cover;
}

.book-hero {
	background-image: url("../img/book-hero.jpg");
	padding: 10% 0 8% 0;
	background-size: cover;
}

.contact-hero {
	background-color: #222223;
	background-image: url("../img/contact-hero.jpg");
	padding: 5% 0 5% 0;
	background-position: top center;
	background-size: contain;
}

.contact-hero h1 {
	font-size: 63px;
}

.splash1 {
	background-image: url("../img/splash1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash10 {
	background-image: url("../img/splash10.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash2 {
	background-image: url("../img/splash2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;pla
	padding: 30vh 0;
}

.splash3 {
	background-image: url("../img/splash3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash4 {
	background-image: url("../img/splash4.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash5 {
	background-image: url("../img/splash5.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash6 {
	background-image: url("../img/splash6.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash7 {
	background-image: url("../img/splash7.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash8 {
	background-image: url("../img/splash8.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.splash9 {
	background-image: url("../img/splash9.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 30vh 0;
}

.nav-consideration {
	margin-top: 100px;
}

p {
	padding: 5px;
	font-size: 11pt;
	line-height: 1.6;
}

.navbar {
	min-height: 100px;
	transition: all 0.5s ease 0s;
}

.navbar-brand {
	height: 100px;
	transition: all 0.5s ease 0s;
}

.navbar-default .navbar-toggle {
	background: none;
	margin-top: 28px;
	padding: 14px 10px !important;
	border-radius: 0;
}

.navbar-default .navbar-toggle:hover, 
.navbar-default .navbar-toggle:active, 
.navbar-default .navbar-toggle:focus {
	background: none;
}

.navbar-default .navbar-toggle:hover .icon-bar, 
.navbar-default .navbar-toggle:active .icon-bar, 
.navbar-default .navbar-toggle:focus .icon-bar {
	background-color: #f72bb0;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #aaaaaa;
	height: 3px;
}

.navbar-default {
	background: rgba(255, 255, 255, 1);
	border: 0;
	padding: 0px 0;
	box-shadow: 0px 0px 10px #000000;
}

.navbar-fixed-top { 
	background-color: rgba(255, 255, 255, 1);
}

.navbar-fixed-top #mainlogo {
	background-image: url("../img/logo.png");
}

.navbar-default .navbar-nav > li > a, 
.navbar-fixed-top .navbar-nav > li > a {
	color: #aaaaaa;
	border: 3px solid #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 800;
	margin: 22px 0 5px 5px;
	text-align: center;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-default .navbar-nav > li > a {
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar-default .navbar-nav > li > a:focus, 
.navbar-default .navbar-nav > li > a:hover {
	color: #ffffff;
	background-color: #f72bb0;
	border: 3px solid #f72bb0;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:focus, 
.navbar-default .navbar-nav > .active > a:hover, 
.navbar-fixed-top .navbar-nav > .active > a, 
.navbar-fixed-top .navbar-nav > .active > a:focus, 
.navbar-fixed-top .navbar-nav > .active > a:hover {
	color: #f72bb0;
	background-color: transparent;
	border: 3px solid #f72bb0;
}

.navbar-default .navbar-toggle {
	border: none;
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
	max-height: 540px;
}

.book-btn {
	color: #ffffff!important;
	background-color: #f72bb0!important;
	border: 3px solid #f72bb0!important;
	margin-left: 10px!important;
	cursor: pointer;
}

.book-btn:focus,
.book-btn:hover {
	color: #f72bb0!important;
	background-color: rgba(0,0,0,0)!important;
	border: 3px solid #f72bb0!important;
}

ul.post-grid {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ul.post-grid li {
	padding: 18px;
	margin-bottom: 2px;
	outline: 3px solid #ffffff;
	cursor: pointer;
	-webkit-transition: background linear 0.5s;
	transition: background linear 0.5s;
}

ul.post-grid li:hover {
	background: #18005c;
	color: white;
}

ul.post-grid li:hover h3 {
	color: white;
}

.content {
	width: 100%;
	position: relative;
	padding: 20px 40px 20px;
}

.post {
	-webkit-transition: 0.5s linear all;
	transition: 0.5s linear all;
	opacity: 1;
	padding-bottom: 30px;
}

.post cite {
	display: inline-block;
	padding: 10px 0;
}

.comments ul {
	margin: 0;
	padding: 0;
}

.comments ul li {
	list-style-type: none;
	padding: 20px 5px;
	border-bottom: 1px #79B9D2 solid;
}

.post.ng-hide {
	opacity: 0;
}

.post.ng-hide-add,
.post.ng-hide-remove {
	display: block!important;
}

.ng-invalid.ng-dirty {
	border-color: red;
}

.ng-valid.ng-dirty {
	border-color: green;
}

#mainlogo {
	background-image: url("../img/logo.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 190px;
	height: 0;
	padding-top: 30%;
	transition: all 0.5s ease 0s;
}

.opaque #mainlogo {
	width: 330px;
	transition: all 0.5s ease 0s;
}

.opaque .navbar-brand {
	height: 130px;
	transition: all 0.5s ease 0s;
}

.opaque li a {
	margin-top: 40px!important;
	transition: all 0.5s ease 0s;
}

.tab-content {
	padding: 50px;
	background-color: #ffffff;
}

.nav-tabs {
	margin-top: 40px;
}

.nav-tabs > li > a {
	font-weight: bold;
	color: #aaaaaa;
}

.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover,
.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:focus, 
.nav-tabs > li.active > a:hover {
    color: #f72bb0;
}

.mobilehide {
	visibility: visible;
	display: inline-block;
}

.mobileshow {
	visibility: hidden;
	display: none;
}

form {
	width: 100%;
	max-width: 560px;
}

fieldset {
  padding: 10px 10px;
  border: none;
  margin-bottom: 5px;
}

div#contact_form {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  padding: 0;
}

div.input-box {
  display: flex;
  margin: 10px 20px 10px 0;
  flex-wrap: wrap;
}

div.input-box label {
  display: inline-block;
  margin: 0 10px 10px 0;
  width: 100%;
}

label {
  font-size: 14px;
}

div.input-box input {
  font-size: 1.5rem;
  border: 1px solid #ccc;
  padding: 8px;
  flex: 1;
  color: #000;
}

div.input-box input.error {
  border: 2px dashed red;
  background: #fee;
}

div.input-box label.error {
  color: red;
  font-size: 1rem;
  text-align: right;
  width: 100%;
  margin: 10px 0;
}

input[type=radio],
input[type=checkbox] {
  margin: 12px 9px 15px 30px;
}

.nowrapblock {
  white-space: nowrap;
}

textarea {
  resize: none;
  border: 1px solid #ccc;
  width: 100%;
  padding: 15px;
  color: #000;
}

.dropdown-menu {
  background-color: #f72bb0;
  text-align: center;
  top: 80px;
  border-radius: 25px;
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown .dropdown-menu {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  border: 0;
}

.dropdown.open .dropdown-menu {
  max-height: 400px;
  opacity: 1;
}

.dropdown-menu li {
	margin: 0px 0px;
	color: #ffffff;
}

.dropdown-menu > li > a {
	display: block;
	padding: 10px 10px;
	clear: both;
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	background-color: #f72bb0;
	color: #ffffff!important;
	white-space: break-spaces;
}

.dropdown-menu .dd-two {
	background-color: #4da57c;
	border-top:0px solid rgba(255, 255, 255,0.5);;
}

.dropdown-menu .dd-three {
	background-color: #409a70;
	border-top:0px solid rgba(255, 255, 255,0.5);;
}

.dropdown-menu > li > a:hover {
	background-color: #5edea4;
}

.dropdown-menu > .active > a, 
.dropdown-menu > .active > a:focus, 
.dropdown-menu > .active > a:hover {
    background-color: #f72bb0;
}

hr {
	margin-top: 30px;
	margin-bottom: 30px;
}

h1 {
	font-weight: 800;
	margin-top: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
	line-height: 1.2;
	color: white;
}

h2 {
	font-weight: 800;
	text-transform: uppercase;
	font-size: 30pt;
	margin-bottom: 20px;
}

h3 {
	font-weight: 400;
	font-size: 15pt;
	line-height: 1.4;
	margin-bottom: 20px;
}

h4 {
	font-weight: 800;
	font-size: 14pt;
	text-transform: uppercase;
	line-height: 1.4;
	margin-top: 15px;
	margin-bottom: 15px;
}

h5 {
	font-size: 15pt;
	margin-top: 0px;
	margin-bottom: 20px;
	line-height: 1.3;
}

h6 {
	font-weight: 600;
	line-height: 1.5;
	font-size: 14pt;
	margin-bottom: 30px;
}

text {
	font-family: 'Montserrat-Black';
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
}

.hero-svg1, .hero-svg2, .hero-svg3 {
	overflow: initial;
}

.text1 {
	fill: none;
	-webkit-animation: draw1 6s forwards linear;
	animation: draw1 6s forwards linear;
}

.text2 {
	fill: none;
	-webkit-animation: draw2 6s forwards linear;
	animation: draw2 6s forwards;
}

.text3 {
	fill: none;
	-webkit-animation: draw3 6s forwards;
	animation: draw3 6s forwards;
}


@keyframes draw1 {
	0% {
		stroke-dashoffset: 1000;
	}
	10% {
		stroke-dashoffset: 1000;
	}
	50% {
		stroke-dashoffset: 0;
		fill: rgba(255, 255, 255, 0);
		stroke: #f72bb0;
	}
	60% {
		fill: #ffffff;
		stroke: none;
	}
	100% {
		fill: #ffffff;
		stroke: none;
	}
}

@keyframes draw2 {
	0% {
		stroke-dashoffset: 1000;
	}
	20% {
		stroke-dashoffset: 1000;
	}
	50% {
		stroke-dashoffset: 0;
		fill: rgba(255, 255, 255, 0);
		stroke: #4f21ff;
	}
	60% {
		fill: #ffffff;
		stroke: none;
	}
	100% {
		fill: #ffffff;
		stroke: none;
	}
}

@keyframes draw3 {
	0% {
		stroke-dashoffset: 1000;
	}
	30% {
		stroke-dashoffset: 1000;
	}
	50% {
		stroke-dashoffset: 0;
		fill: rgba(255, 255, 255, 0);
		stroke: #ffffff;
	}
	60% {
		fill: #ffffff;
		stroke: none;
	}
	100% {
		fill: #ffffff;
		stroke: none;
	}
}

.slideanim {
	visibility: hidden;
}

.slide {
	visibility: visible;
	-webkit-animation-name: slide;
	-webkit-animation-duration: 0.5s;
	-moz-animation-name: slide;
	-moz-animation-duration: 0.5s;
	-o-animation-name: slide;
	-o-animation-duration: 0.5s;
	-ms-animation-name: slide;
	-ms-animation-duration: 0.5s;
	animation-name: slide;
	animation-duration: 0.5s;
}

.feature {
	box-shadow: 12px 12px #18005c;
	margin: 10px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.feature:hover {
	box-shadow: 30px 30px #18005c;
	margin: 0 20px 20px 0;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

#myVideo {
	position: fixed;
	top: 50%;
	left: 50%;
	height: auto;
	z-index: -1;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: #000000;
	background-size: cover;
}

.stats {
	margin: 10px;
	padding: 0; 
	display: block;
	background-color: transparent;
	font-size: 38pt;
	font-weight: 800;
}

#counter, .counter-value {
	display: inline;
}

.counter-value {
	font-size: 43pt;
	letter-spacing: -3px;
	padding: 0;
}

.specialists h3 {
	margin-top: 30px;
	margin-bottom: 5px;
}

.specialists h4 {
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 12pt;
}

.specialists .feature {
	outline: 1px solid #eeeeee;
}

.carousel-inner .item {
    padding-bottom: 80px;
}

.carousel-indicators li {
	border: none;
	background-color: #efefef;
	border-radius: 0;
	width: 50px;
	height: 5px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.carousel-indicators li:hover {
	background-color: #f72bb0;
}

.carousel-indicators .active {
	border: none;
	background-color: #f72bb0;
	width: 50px;
	height: 8px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.sr-only {
	border: 0;
	clip: rect(0,0,0,0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  opacity: 1;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: transparent no-repeat center center;
  background-image: none;
  background-size: auto;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23efefef' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23efefef' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-control-prev-icon:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f72bb0' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f72bb0' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.top-button {
	bottom: 25px;
	left: 25px;
	z-index: 100;
	padding: 0px;
	position: fixed;
	width: 45px;
	height: 45px;
}

.btn {
	margin: 5px;
	border-radius: 0;
	padding: 15px 20px;
	display: inline-block;
	font-weight: 800;
	text-transform: uppercase;
}

.wifo-btn, .wifo-btn:active, .wifo-btn:focus {
	background-color: #f72bb0;
	color: #ffffff;
	border: 3px solid #f72bb0;
	-webkit-transition: background-color 0.1s linear;
	-moz-transition: background-color 0.1s linear;
	-o-transition: background-color 0.1s linear;
	-ms-transition: background-color 0.1s linear;
	transition: background-color 0.1s linear;
}

.wifo-btn:hover {
	background-color: rgba(0,0,0,0);
	border: 3px solid #f72bb0;
	color: #f72bb0;
	-webkit-transition: background-color 0.1s linear;
	-moz-transition: background-color 0.1s linear;
	-o-transition: background-color 0.1s linear;
	-ms-transition: background-color 0.1s linear;
	transition: background-color 0.1s linear;
}

.wifo-btn-inverse, .wifo-btn-inverse:active, .wifo-btn-inverse:focus {
	background-color: #ffffff;
	color: #f72bb0;
	border: 3px solid #ffffff;
}

.wifo-btn-inverse:hover {
	background-color: #f72bb0;
	color: #ffffff;
	border: 3px solid #f72bb0;
}

.nopadding {
	padding: 0px;
	background-color: #ffffff!important;
}

.fullwidth {
	width: 98%;
}

.pulse:hover {
	-webkit-animation-name: pulse;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-iteration-count: infinite;
  	-webkit-animation-timing-function: ease-in-out, ease-in-out;
  	-moz-animation-name: pulse;
	-moz-animation-duration: 0.5s;
	-moz-animation-iteration-count: infinite;
  	-moz-animation-timing-function: ease-in-out, ease-in-out;
  	-o-animation-name: pulse;
	-o-animation-duration: 0.5s;
	-o-animation-iteration-count: infinite;
  	-o-animation-timing-function: ease-in-out, ease-in-out;
  	-ms-animation-name: pulse;
	-ms-animation-duration: 0.5s;
	-ms-animation-iteration-count: infinite;
  	-ms-animation-timing-function: ease-in-out, ease-in-out;
	animation-name: pulse;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
  	animation-timing-function: ease-in-out, ease-in-out;
}

.hero-box {
	padding: 20px 40px 40px 40px;
	background-color: #18005c;
	color: #ffffff;
	box-shadow: 13px 13px 0 #ffffff;
}

.pink-outline-jumbo {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #f72bb0;
}

.white-outline {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #ffffff;
}

.pink-outline {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #f72bb0;
}

.blue-outline {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #18005c;
}

.purple-outline {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #4f21ff;
}

.orange-outline {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #ffa25e;
}

.violet-outline {
	font-family: 'Montserrat-Black';
	-webkit-text-fill-color: transparent;
  	-webkit-text-stroke: 1px #896aff;
}

.modal-content {
	background: rgba(255, 255, 255, 1);
	color: #000000;
	border-radius: 0;
	padding: 15px 30px;
} 

.modal-header h2 {
	color: #f72bb0;
	font-size: 24px;
	margin: 0;
}

.modal-header .close {
	margin-top: -16px;
	font-size: 45px;
	margin-bottom: -5px;
}

.modal-dialog {
    width: 90%;
    max-width: 1000px;
    margin: 5% auto;
}

.btn-secondary, .btn-secondary:active, .btn-secondary:focus {
	background-color: #efefef;
	color: #000000;
	border: 3px solid #efefef;
	-webkit-transition: border-bottom 0.1s linear;
	-moz-transition: border-bottom 0.1s linear;
	-o-transition: border-bottom 0.1s linear;
	-ms-transition: border-bottom 0.1s linear;
	transition: border-bottom 0.1s linear;
}

.btn-secondary:hover {
	background-color: #f72bb0;
	color: #ffffff;
	border: 3px solid #f72bb0;
	-webkit-transition: border-bottom 0.1s linear;
	-moz-transition: border-bottom 0.1s linear;
	-o-transition: border-bottom 0.1s linear;
	-ms-transition: border-bottom 0.1s linear;
	transition: border-bottom 0.1s linear;
}

.noscriptmsg {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@-webkit-keyframes scroll-led {
	0% {transform: translateX(0);}
	100% {transform: translateX(calc(-250px * 7));}
}

@keyframes scroll-led {
	0% {transform: translateX(0);}
	100% {transform: translateX(calc(-250px * 7));}
}


#slider-led {
	-webkit-animation: scroll-led 15s linear infinite;
	animation: scroll-led 15s linear infinite;
	width: calc(250px * 14);
}


.slider {
	background: transparent;
	height: 100px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.slider::before, .slider::after {
	background: linear-gradient(to right, #4f21ff 0%, rgba(79, 33, 255, 0) 100%);
	content: "";
	height: 100px;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.slider::before {
	left: 0;
	top: 0;
}

.slider .slide-track {
	display: flex;
	
}

.slider .slide {
	height: 100px;
	width: 250px;
	text-align: center;
}

@media (min-width: 1920px) {
	#myVideo {
		width: 100vw;
	}
}

@media (max-width: 1200px) {
	.hero-svg1, .hero-svg2 {
		margin-bottom: -40px;
	}

	.opaque #mainlogo {
		width: 190px;
		transition: all 0.5s ease 0s;
	}

	.opaque .navbar-brand {
		height: 100px;
		transition: all 0.5s ease 0s;
	}

	.opaque li a {
		margin-top: 22px!important;
		transition: all 0.5s ease 0s;
	}
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 13px;
	}

	.forcewidth {
		width: 97%;
	}

	.modal-dialog {
		width: 90%;
	}

	.white-block {
		display: inline-block;
	}

	.feature {
		margin-top: 30px;
	}

	.feature:hover {
		margin-top: 20px;
	}

	.jumbotron h1 {
		font-size: 60px;
		color: white;
	}

	.contact-hero {
		background-image: none;
	}

	.black-block {
		background-color: #222223;
	}

	.mobileshow {
		visibility: visible;
		display: inline-block;
	}

	.mobilehide {
		visibility: hidden;
		display: none;
	}

	.opaque #mainlogo {
		width: 190px;
		transition: all 0.5s ease 0s;
	}

	.opaque .navbar-brand {
		height: 100px;
		transition: all 0.5s ease 0s;
	}

	.opaque li a {
		margin-top: 22px!important;
		transition: all 0.5s ease 0s;
	}
}

@media (max-width: 930px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 12px;
		padding: 10px 10px;
		margin: 26px 0 10px 5px;
	}
}

@media (max-width: 820px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 11.5px;
		padding: 10px 8px;
	}
}

@media (max-width: 767px) {
	.navbar-default .navbar-nav > li > a {
		margin: auto 30px 5px 30px;
		font-size: 14px;
	}

	.jumbotron h1 {
		font-size: 50px;
	}

	.modal-content {
		padding: 15px 10px;
	}

	.modal-dialog {
		width: 90%!important;
	}

	.book-btn {
		margin-left: 30px!important;
	}

	.tab-content {
		padding: 10px;
	}

	.mobpadding {
	 	padding-left: 30px;
	 	padding-right: 30px;
	}
}

@media (max-width: 600px) {
	.container {
		padding-right: 0px;
		padding-left: 0px; 
	}

	.btn {
		margin: 10px auto;
	}

	.nav-pills > li {
		float: none;
	}

	h2 {
		font-size: 25pt;
	}

	h3 {
		font-size: 14pt;
	}

	.row {
		margin-right: 0px;
		margin-left: 0px;
	}

	.feature, .feature:hover {
		margin: 20px 0 0 0;
	}

	.feature:hover {
		box-shadow: 12px 12px #18005c;
	}
}

@media (max-width: 450px) {
	text {
		font-size: 40px;
	}

	h2 {
		font-size: 22pt;
	}

	.white-block {
		padding: 40px;
	}

	.hero-svg1, .hero-svg2 {
		margin-bottom: -60px;
	}

	.hero-svg1, .hero-svg2, .hero-svg3 {
		width: 250px;
		text-align: center;
	}

	.hero-box {
		padding: 20px 20px 40px 20px;
	}

	.jumbotron h1 {
		font-size: 36px;
	}

	.slider::before, .slider::after {
		width: 50px;
	}
}


@media (max-width: 400px) {
	.modal-header .close {
        visibility: hidden;
        display: none;
    }

    .btn-secondary {
    	visibility: visible;
    	display: inline-block;
    }

    .btn {
    	font-size: 12px;
    }

    .white-block {
		padding: 20px;
	}

	h1 {
		font-size: 30px;
	}

    h2 {
		font-size: 20pt;
	}

	h3 {
		font-size: 13pt;
	}
}

@media (max-width: 350px) {
	.white-block {
		padding: 10px;
	}
}