@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800|Open+Sans:300,300i,400,400i,700,700i&display=swap');

:root {
    color-scheme: light dark;
    --loader-background: url("../img/loading.gif") center no-repeat #fff;
    --header-background: linear-gradient(to bottom right, rgba(22,45,105, 0.8),rgba(12,25,59, 0.9));
    --header-h1: #F9D423;
    --header-text: #FFFFFF;
    --header-text-logo-color: #0C193B;
    --header-text-logo-background: #FFFFFF;
    --nav-background: #FFFFFF;
    --nav-brand-color: #0C193B;
    --nav-links: #0C193B;
    --nav-toggler: #0C193B;
    --heading-text-color: #0C193B;
    --paragraph-text-color: #1F1F1F;
    --dark1-background-color: transparent;
    --demo-box-shadow: 0 16px 12px #939999;
    --about-background: #0C193B;
    --about-background-before: transparent #0C193B #0C193B transparent;
    --about-background-after: #0C193B transparent transparent #0C193B;
    --about-heading-text-color: #FFFFFF;
    --about-p-text-color: #E9E9E9;
    --about-btn-background-color: linear-gradient(to right, #F9D423 0%, #EFC704 100%), radial-gradient(circle at top left, #F9D423, #EFC704);
    --about-btn-text-color: #FFFFFF;
    --about-btn-background-color-hover: linear-gradient(#0C193B, #0C193B), radial-gradient(circle at top left, #0C193B, #0C193B);
    --portfolio-img-filter: none;
    --portfolio-vid-overlay: #0C193B;
    --portfolio-vid-overlay-2: rgba(12, 25, 59, 0.9);
    --contact-background: #F9D423;
    --contact-background-before: transparent #F9D423 #F9D423 transparent;
    --contact-heading-text-color: #0C193B;
    --contact-p-text-color: #1F1F1F;
    --contact-input-background: #EFC704;
    --contact-input-border: 2px solid #FFFFFF;
    --contact-input-placeholder: #EFC704;
    --dark1-p-text-color: #FFFFFF;
    --contact-btn-color: #162D69;
    --contact-btn-border-color: 2px solid #162D69;
    --footer1-background: #3A3F46;
    --footer2-background: #1F1F1F;
}

@media (prefers-color-scheme: dark) {
    :root {
        --loader-background: url("../img/loading.gif") center no-repeat #1E1E1E;
    	--header-background: linear-gradient(to bottom right, rgba(37, 37, 37, 0.8),rgba(37, 37, 37, 0.9));
    	--header-h1: #F9D423;
    	--header-text: #D4D4D4;
    	--header-text-logo-color: #D4D4D4;
    	--header-text-logo-background: #252525;
    	--nav-background: #333333;
    	--nav-brand-color: #D4D4D4;
    	--nav-links: #D4D4D4;
    	--nav-toggler: #F9D423;
    	--heading-text-color: #F9D423;
    	--paragraph-text-color: #D4D4D4;
        --dark1-background-color: #1E1E1E;
        --demo-box-shadow: 0 16px 12px #252525;
        --about-background: #333333;
    	--about-background-before: transparent #333333 #333333 transparent;
    	--about-background-after: #333333 transparent transparent #333333;
    	--about-heading-text-color: #D4D4D4;
    	--about-p-text-color: #D4D4D4;
    	--about-btn-background-color: linear-gradient(to right, #1E1E1E 0%, #1E1E1E 100%), radial-gradient(circle at top left, #1E1E1E, #1E1E1E);
    	--about-btn-text-color: #D4D4D4;
    	--about-btn-background-color-hover: linear-gradient(#333333, #333333), radial-gradient(circle at top left, #333333, #333333);
    	--portfolio-img-filter: grayscale(100%);
    	--portfolio-vid-overlay: #1e1e1e;
    	--portfolio-vid-overlay-2: rgba(30, 30, 30, 0.9);
    	--contact-background: #333333;
    	--contact-background-before: transparent #333333 #333333 transparent;
    	--contact-heading-text-color: #D4D4D4;
    	--contact-p-text-color: #D4D4D4;
    	--contact-input-background: #333333;
    	--contact-input-border: 2px solid #D4D4D4;
    	--contact-input-placeholder: #333333;
    	--dark1-p-text-color: #D4D4D4;
    	--contact-btn-color: #D4D4D4;
    	--contact-btn-border-color: 2px solid #D4D4D4;
    	--footer1-background: #1E1E1E;
    	--footer2-background: #000000;
    }
}

body  {
    line-height: 26px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #1F1F1F;
    background: url(../img/body-bg.png) no-repeat center;
    position: relative;
}

*::selection {
    background-color: rgba(31, 31, 31, 0.5);
    color: white;
}

h1, h2, h3, h4, h5, h6  {
  font-family: 'Dosis', sans-serif;
  font-weight: 500;
  color: #0C193B;
}

p {
	font-weight: 400;
	font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}
  
a  {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover, a:focus  {
    text-decoration: none;
    outline: none;
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: var(--loader-background);
}

body .loading .animated {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  -webkit-animation-duration: 60s !important;
  animation-duration: 60s !important;
  -webkit-animation-delay: 60s !important;
  animation-delay: 60s !important;
}

/* Header */

.home  {
	height:100vh;
	min-height: 500px;
	background-image: url(../img/home-banner.png);
    background-position: center;
    background-size: cover;
    -webkit-transition: background .4s ease-in-out;
 	transition: background .4s ease-in-out;
}

#home-bg::after {
	height:100vh;
	min-height: 500px;
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: var(--header-background);
}
  
.home .container {
	z-index:1;
} 

.home .navbar {
	padding-top: 0;
}

.home .navbar-brand {
	font-family: 'Dosis', sans-serif;
	color: var(--header-text-logo-color);
    font-weight: 400;
    font-size: 2em;
    letter-spacing: 0.03em;
	margin: 0px 0px 15px;
}

.text-logo {
 	transform: translateX(-50%) translateY(-50%);
  	list-style: none;
  	padding: 10px 15px 20px;
    background: var(--header-text-logo-background);
    border-radius: 0 0 10px 10px ;
    box-shadow: 0 1px 50px 2px #1F1F1F;
}

.text-logo.hidden-2 {
	padding: 10px 15px 20px;
    box-shadow: 0 1px 50px 2px #1F1F1F;
}

.text-logo span {
	position: relative;
  	display: inline-block;
  	float: left;
  	opacity: 1;
  	transition: all 0.5s ease-in-out;
  	max-width: 2em;
}

.text-logo.hidden-2 span.ghost-logo {
  	opacity: 0;
  	max-width: 0;
 	transition: all 0.5s ease-in-out;
}

.banner  {
	height: 90vh;
	background: transparent;
	margin-bottom: 0px;
}

.banner .title {
	font-family: 'Dosis', sans-serif;
	font-weight: 400;
	font-size: 60px;
	text-transform: uppercase;
	color: var(--header-h1);
	line-height: 60px;
	text-align:center;
	margin: 10px 0 5px;
}

.sub-title {
	font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: lighter;
    color: var(--header-text);
    text-align:center;
}

.button {
	display:flex;
	position: relative;
	overflow: hidden;
    width: 130px;
    margin: 120px 0 0;
    padding: 0.7em 1em;
    border: none;
    background: none;
    color: #F9D423;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991.98px) { .button { margin: 105px auto 0;} }

.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #F9D423;
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.button::before,
.button .b-icon {
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button .b-icon {
	position: absolute;
	top: 110%;
	left: 50%;
	padding: 20px;
	font-size: 1.5em;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}

.button > span {
	display: block;
	padding: 0px;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.button:hover::before {
	-webkit-transform: translate3d(0, -100%, 0) translate3d(0, 2px, 0);
	transform: translate3d(0, -100%, 0) translate3d(0, 2px, 0);
}

.button:hover .b-icon {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
}

.button:hover > span {
	opacity: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.button:focus {
	outline: none;
}

.button:hover > .slide-top {
	-webkit-animation: slide-top 0.5s 0.5s infinite alternate-reverse;
	        animation: slide-top 0.5s 0.5s infinite alternate-reverse;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-8-4 16:57:32
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translate3d(-50%, -80%, 0);
	transform: translate3d(-50%, -80%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translate3d(-50%, -80%, 0);
	transform: translate3d(-50%, -80%, 0);
  }
  100% {
    --webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
  }
}

@media (max-width: 575.98px) {
	.banner .title {
		font-size: 50px;
	}
	.sub-title {
		font-size: 20px;
	}
}


/* Navigation */

.navigation {
	background: var(--nav-background);
	padding: 15px 1rem;
	transition: all 0.5s ease-in-out;
}

@media (max-width: 767.98px) {
	.navigation {
		transition: all 0.5s ease-in-out;
		border-bottom: 0.5px solid rgba(12, 25, 59, 0.4);
	}
}

.navigation.shadownav {
	box-shadow: 0px 0px 10px 1px #1f1f1f4a;
}

.navigation .navbar-brand {
	font-family: 'Dosis', sans-serif;
	color: var(--nav-brand-color);
    font-weight: 400;
    font-size: 2.5em;
    letter-spacing: 0.03em;
    padding: 0 0 5px;
    margin: 0 0 0 15px;
}

.text-logo2 {
 	transform: translateX(0%) translateY(0%);
  	list-style: none;
  	position: absolute;
  	top: 17px;
}

.text-logo2.hidden-3 {
	color: #EFC704;
}

.text-logo2 span {
	position: relative;
  	display: inline-block;
  	float: left;
  	opacity: 1;
  	transition: all 0.5s ease-in-out;
  	max-width: 2em;
}

.text-logo2.hidden-3 span.ghost-logo2 {
  	opacity: 0;
  	max-width: 0;
 	transition: all 0.5s ease-in-out;
}

.navigation .navbar-nav .nav-item {
	margin-right: 35px;
}

.navigation .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

.navigation .navbar-nav .nav-item .nav-link {
	font: 18px 'Dosis', sans-serif;
    text-transform: uppercase;
    color: var(--nav-links);
    transition: all 0.3s ease-in-out;
}

.navigation .navbar-nav .nav-item.active .nav-link, 
.navigation .navbar-nav .nav-link:hover {
    color: #F9D423;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
}

.navbar-toggler span {
	display: block;
    width: 25px;
    height: 3px;
    background: var(--nav-toggler);
    margin: auto;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}
  
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    transition: all 0.1s ease;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);      
}

.navbar-toggler.collapsed .middle-bar {
	opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
} 


/* Demo Reel */

.demo-reel {
 	padding: 5em 0 10em;
 	background: var(--dark1-background-color);
}

.text-demo {
	margin-bottom: 30px;
}

.text-demo h1 {
	color: var(--heading-text-color);
	font-size: 54px;
	line-height: 0.9;
	margin-bottom: 10px;
}

.text-demo p {
	color: var(--paragraph-text-color);
	font-size: 18px;
	font-weight: 100;
	margin-bottom: 2em;
}

.demo-reel .embed-responsive {
	box-shadow: var(--demo-box-shadow)
}


/* About */

.about {
	background: var(--about-background);
}

.about:before {
    position: absolute;
    margin-top: -39px;
    content: "";
    border-style: solid;
    border-width: 0 0 2.5rem 100vw;
    border-color: var(--about-background-before);
}

.about:after {
    position: absolute;
    margin-top: -0.5px;
    content: "";
    border-style: solid;
    border-width: 0 0 2.9rem 100vw;
    border-color: var(--about-background-after);
}

.about .container {
	padding-top: 5em;
	padding-bottom: 5em;
}

.main_title h1 {
	color: var(--about-heading-text-color);
    margin-bottom: 1rem;
}

.main_title p {
	color: var(--about-p-text-color);
}

.about_img img {
	max-width: 100%;
}

@media (max-width: 991px) {
	.about .about_img {
		max-width:300px;
		margin: 0 auto 3em;
		padding: 0 10px;
	}
}

.btn-me {
    margin: 4em 0 ;
}

.btn-about {
    padding: 1em 1.5em;
    border: 2px solid rgba(0,0,0,0);
    background-image: var(--about-btn-background-color);
    color: var(--about-btn-text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    transition: all 0.4s ease;
}

.btn-about:hover {
	color: #F9D423;
	border: 2px solid #F9D423;
	background-image: var(--about-btn-background-color-hover);
}

/* Portfolio */

.portfolio {
	background: var(--dark1-background-color);
}

.portfolio .container {
	padding-top: 7em;
	padding-bottom: 7em;
}

.port-title {
	margin-bottom: 50px;
}

.port-title h1 {
	color: var(--heading-text-color);
	font-size: 54px;
	margin-bottom: 10px;
}

.port-title p {
	color: var(--paragraph-text-color);
	font-size: 18px;
	font-weight: 100;
}

.grid {
	max-width: 69em;
	list-style: none;
	margin: 30px auto;
	padding: 0;
}

.grid li {
	display: block;
	float: left;
	padding: 7px;
	width: 33%;
	opacity: 0;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
	opacity: 1;
}

.grid li a,
.grid li img {
	filter: var(--portfolio-img-filter);
	outline: none;
	border: none;
	display: block;
	max-width: 100%;
	border-radius: 3px;
}

.grid.effects li.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); opacity: 1; }
}

@keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

@media (max-width: 575.98px) {
	.grid li {
		width: 100%;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.grid li {
		width: 100%;
		padding: 7px 20px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.grid li {
		width: 50%;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.grid li {
		width: 50%;
	}
}

.poptrox-overlay {
	position: fixed;
    left: 0px;
    top: 0px;
    z-index: 3000;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: zoom-out;
    display: block;
    opacity: 1;
    background: var(--portfolio-vid-overlay-2); 
}

.poptrox-popup {
	background: transparent;
    color: #FFFFFF;
    padding: 0px 0px 10px;
}

.poptrox-popup .pic {
	position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.poptrox-popup .pic::before {
    padding-top: 56.25%;
    display: block;
    content: "";
}

.poptrox-popup .pic .port-vid {
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.poptrox-overlay .loader {
}

.poptrox-overlay .closer {
	font-size: 0;
    background: transparent;
    color: #FFFFF;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 1.5;
    text-align: center;
    position: absolute;
    text-decoration: none;
    outline: 0px;
    top: -40px;
    right: 0;
    cursor: pointer;
    z-index: 4000;
    border-radius: 50px;
    clear: both;
}

.poptrox-overlay .closer::before {
	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	position: absolute;
  	top: 30%;
  	right: 10px;
  	font-style: normal;
  	font-variant: normal;
  	text-rendering: auto;
  	color: #EFC704;
  	font-family: "Font Awesome 5 Free";
  	font-size: 20px;
	font-weight: 200; 
  	content: "\f00d";
}

.poptrox-overlay .caption {
	background: rgba(233, 233, 233, 0);
	position: absolute;
    left: 0px;
    width: 100%;
    height: 20px;
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 100;
    text-align: right;
    line-height: 1.2;
    padding-top: 15px;
}

.poptrox-overlay .nav-previous {
    text-align: center;
    color: #EFC704;
    text-shadow: none;
    height: 50px;
    top: 50%;
    margin-top: -50px;
    position: absolute;
    bottom: 0px;
    opacity: 1;
    cursor: pointer;
    user-select: none;
    left: -20px;
    width: 20px;
    display: block;
}

.poptrox-overlay .nav-previous::before {
	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	position: absolute;
  	top: 50%;
  	right: 5px;
  	font-style: normal;
  	font-variant: normal;
  	text-rendering: auto;
  	line-height: 1;
  	vertical-align: middle;
  	font-family: "Font Awesome 5 Free";
  	font-size: 40px;
	font-weight: 400; 
  	content: "\f104";
}

.poptrox-overlay .nav-next {
    text-align: center;
    color: #EFC704;
    text-shadow: none;
    height: 50px;
    top: 50%;
    margin-top: -50px;
    position: absolute;
    bottom: 0px;
    opacity: 1;
    cursor: pointer;
    user-select: none;
    right: -20px;
    width: 20px;
    display: block;
}

.poptrox-overlay .nav-next::before {
	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	position: absolute;
  	top: 50%;
  	left: 5px;
  	font-style: normal;
  	font-variant: normal;
  	text-rendering: auto;
  	line-height: 1;
  	vertical-align: middle;
  	font-family: "Font Awesome 5 Free";
  	font-size: 40px;
	font-weight: 400; 
  	content: "\f105";
}


/* Contact form ================================== */

.contact-form {
	background: var(--contact-background);
}

.contact-form:before {
    position: absolute;
    margin-top: -40px;
    content: "";
    border-style: solid;
    border-width: 0 0 2.5rem 100vw;
    border-color: var(--contact-background-before);
}

.contact-form .container {
 	padding-top: 5em;
 	padding-bottom: 5em;
}

.title-contact {
	margin-bottom: 30px;
}

.title-contact h1 {
	color: var(--contact-heading-text-color);
	font-size: 54px;
	line-height: 0.9;
	margin-bottom: 10px;
}

.title-contact p {
	color: var(--contact-p-text-color);
	font-size: 18px;
	font-weight: 100;
	margin-bottom: 3em;
}

.group {
    position: relative;
    margin-bottom: 40px;
}

input, textarea {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 100;
	padding: 10px 10px 5px 5px;
	display: block;
	width: 100%;
	border: none;
	border-bottom: var(--contact-input-border);
	background: var(--contact-input-background);
}

textarea {
	resize: none;
}

    input:focus, textarea:focus {
        outline: none;
    }

label {
    color: var(--dark1-p-text-color);
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    pointer-events: none;
    left: 5px;
    bottom: 5px;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label {
    top: -25px;
    font-size: 18px;
    color: var(--dark1-p-text-color);
}

input::placeholder, textarea::placeholder{
	color: var(--contact-input-placeholder);
}



.bar {
    position: relative;
    display: block;
    width: 100%;
}

    .bar:before, .bar:after {
        content: '';
        height: 3px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: var(--dark1-p-text-color);
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    .bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }

input:focus ~ .bar:before, input:focus ~ .bar:after, textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
    width: 50%;
}

.contact-form .btn-me {
    margin: 4em 0 0;
}

.btn-contact {
	display:flex;
	position: relative;
	overflow: hidden;
    width: 130px;
    padding: 0.7em 1em;
    border: none;
    background: none;
    color: var(--contact-btn-color);
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.btn-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: var(--contact-btn-border-color);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.btn-contact::before,
.btn-contact .b-icon {
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-contact .b-icon {
	position: absolute;
	top: 110%;
	left: 50%;
	padding: 20px;
	font-size: 1.5em;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}

.btn-contact > span {
	display: block;
	padding: 0px;
	margin: 0 auto;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.btn-contact:hover::before {
	-webkit-transform: translate3d(0, -100%, 0) translate3d(0, 1px, 0);
	transform: translate3d(0, -100%, 0) translate3d(0, 1px, 0);
}

.btn-contact:hover .b-icon {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
}

.btn-contact:hover > span {
	opacity: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.btn-contact:focus {
	outline: none;
}

.btn-contact:hover > .slide-top2 {
	-webkit-animation: slide-top2 0.5s 0.5s infinite alternate-reverse;
	        animation: slide-top2 0.5s 0.5s infinite alternate-reverse;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-8-4 16:57:32
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top2 {
  0% {
    -webkit-transform: translate3d(-50%, -80%, 0);
	transform: translate3d(-50%, -80%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
  }
}
@keyframes slide-top2 {
  0% {
    -webkit-transform: translate3d(-50%, -80%, 0);
	transform: translate3d(-50%, -80%, 0);
  }
  100% {
    --webkit-transform: translate3d(-50%, -100%, 0);
	transform: translate3d(-50%, -100%, 0);
  }
}

/* Footer ================================== */

.footer {
    background: var(--footer1-background);
    color: var(--dark1-p-text-color);
}

.footer .info {
    text-align: justify; 
    color: #afb0b1;
}

.footer ul {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.7;
}

.footer h5 {
    font-size: 18px;
    color: var(--dark1-p-text-color);
    font-weight: bold;
    margin-top: 30px;
}

.info address {
    margin-top: 28px;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.info address .name {
	font-family: 'Dosis', sans-serif;
    font-size: 18px;
    color: var(--dark1-p-text-color);
    font-weight: bold;
    padding-bottom: 10px;
}

.info .copyright {
	font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #d2d1d1;
    font-weight: 100;
}

.footer a {
    color: #d2d1d1;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus {
    text-decoration: none;
    color: #EFC704;
}

.btm-footer {
    text-align: center;
    background: var(--footer2-background);
    padding: 0 12px;
}

.btm-footer .logo {
    margin-top: 10px;
}

.btm-footer .logo a {
    font-family: 'Dosis', sans-serif;
    color: #9FA3A9;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.03em;
    float: left;
    line-height: 68px;
    margin: 0;
    padding: 0;
}

.btm-footer a:hover {
	color: #EFC704;
    text-decoration: none;
}

.social-icons a {
    float:right;
    font-size: 20px;
    color: #9FA3A9;
    padding: 10px;
    transition: 0.2s;
    line-height: 68px;
}

.social-icons a:hover {
	color: #EFC704;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .up-footer {
        text-align: center;
    }

    .up-footer .info {
        text-align: center;
    }
}

/* 404 Page ================================== */

.page-404 {
	width: 100vw;
	height:100vh;
	background-image: url(https://media.giphy.com/media/iF3M9gPPCdulq/source.gif);
    background-position: center;
    background-size: cover;
}

.page-404::before {
	height:100vh;
	min-height: 500px;
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.6),rgba(233, 233, 233, 0.7));
}

.page-404 .container {
	max-width: 700px;
}

.not-found-items {
	height: 100vh;
	padding-left: 10px;
	padding-right: 10px;
}

 .title404 {
	font-family: 'Dosis', sans-serif;
	font-weight: 600;
	font-size: 40px;
	text-transform: uppercase;
	color: #162D69;
	margin: 10px 0 5px;
}

.sub404 {
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #1F1F1F;
}

.btn-404 {
    margin-top: 3em;
}

.btn-notfound {
	display:block;
	width:130px;
	min-height: 50px;
    padding: .7em 1em;
    border: 2px solid rgba(249, 212, 35, 0);
    background: rgba(249, 212, 35, 1);
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    transition: all 0.4s ease;
    text-align:center;
}

.btn-notfound:hover {
	color: #F9D423;
	border: 2px solid rgba(249, 212, 35, 1);
	background: rgba(249, 212, 35, 0);
}

.icon-notfound {
	text-align: left;
	margin-bottom: 2em;
}

.icon-notfound img {
	width: 100%;
	max-width: 100px;
}

.page-404 .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    overflow: hidden;
    width: 1px;
}

.page-404 input.search-field {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: #1F1F1F;
	float: left;
	font-size: 14px;
	height: 40px;
	line-height: 1.571;
	margin: 0;
	outline: medium none;
	padding: 6px 8px;
	width: 80%; /* fallback if needed */
	width: calc(100% - 50px);
	border: 1px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.7);
    color: #1F1F1F;
}

.page-404 input.search-field::placeholder {
	color: #A4A9B1;
}

.page-404 .search-submit {
	background-color: #162D69;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	height: 40px;
	margin-left: -1px;
	outline: medium none;
	right: 0;
	width: 50px;
	-webkit-transition: all 300ms ease-out 0s;
	-moz-transition: all 300ms ease-out 0s;
	-o-transition: all 300ms ease-out 0s;
	-ms-transition: all 300ms ease-out 0s;
	transition: all 300ms ease-out 0s;
}

.page-404 .search-submit:hover {
	background-color: #EFC704;
}

@media (max-width: 991.98px) {
	.title404 {
		text-align: center;
	}
	.sub404 {
		text-align: center;
	}
	.icon-notfound {
		text-align: center;
	}
	.btn-notfound {
		margin: 0 auto;
	}
}


/* 403 Page ================================== */

.page-403 {
	width: 100vw;
	height:100vh;
	background-image: url(https://media.giphy.com/media/kC7xPjxYo7ubH5a5lT/giphy.gif);
    background-position: center;
    background-size: cover;
}

.page-403::before {
	height:100vh;
	min-height: 500px;
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.6),rgba(233, 233, 233, 0.7));
}

.page-403 .container {
	max-width: 700px;
}

.not-found3-items {
	height: 100vh;
	padding-left: 10px;
	padding-right: 10px;
}

.title403 {
	font-family: 'Dosis', sans-serif;
	font-weight: 600;
	font-size: 40px;
	text-transform: uppercase;
	color: #162D69;
	margin: 10px 0 5px;
}

.sub403 {
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #1F1F1F;
}

.btn-403 {
    margin-top: 3em;
}

.btn-notfound3 {
	display:block;
	width:130px;
	min-height: 50px;
    padding: .7em 1em;
    border: 2px solid rgba(249, 212, 35, 0);
    background: rgba(249, 212, 35, 1);
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    transition: all 0.4s ease;
    text-align:center;
}

.btn-notfound3:hover {
	color: #F9D423;
	border: 2px solid rgba(249, 212, 35, 1);
	background: rgba(249, 212, 35, 0);
}

.icon-notfound3 {
	text-align: left;
	margin-bottom: 2em;
}

.icon-notfound3 img {
	width: 100%;
	max-width: 100px;
}

@media (max-width: 991.98px) {
	.title403 {
		text-align: center;
	}
	.sub403 {
		text-align: center;
	}
	.icon-notfound3 {
		text-align: center;
	}
	.btn-notfound3 {
		margin: 0 auto;
	}
}


/* Portfolio Page ================================== */

.head-projects {
    padding: 5rem 1rem;
    margin-bottom: 0;
    background: linear-gradient(to bottom right, rgba(233, 233, 233, 0.8),rgba(151, 151, 151, 0.9)), url(https://media.giphy.com/media/SsNDVuWzgoA1AAbswY/source.gif); 
	background-position: top;
	background-size: cover;
    border-radius: 0;
}

.video-list {
    background: #0C193B;
}

.video-list .sticky-top {
	top: 40px;
}

.video-list  .list-group {
    padding-left: 0;
    margin-bottom: 40px;
}

.video-list  .list-group-item {
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #0B1737;
    border: 1px solid #0A1532;
}

.video-list .list-group-item-action {
    width: 100%;
    color: #fff;
    text-align: inherit;
}

.video-list .list-group-item:hover, .video-list .active {
    background-color: #EFC704;
    border: 1px solid #EFC704;
}

.feed {
    max-width:700px;
    margin: 0 auto;
    padding-bottom: 5em;
}

.feed-title {
	padding-bottom: 10px;
}

.feed-title h2 {
	color:#fff;
	font-size: 40px;
	padding-top: 20px;
}

.feed-title .first-text {
	padding-top: 0px;
}

.feed-title p {
	color: #E9E9E9;
    font-size: 16px;
    font-weight: 100;
}

.video-list a {
    outline:none;
    text-decoration:none;
    transition: all 0.3s ease-in-out;
}

.card {
    border: 0px solid rgba(0,0,0, 0.0);
}

.card-img {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.card-title {
    font-family: 'Dosis', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #162D69;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.card:hover .card-title {
	color: #EFC704;
}

.card-text .text-muted {
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 80%;
    color: #F1F1F1;
}

 .card:hover .card-text .text-muted {
            color: #F1F1F1;
}

@media print {
	body {
		background: transparent;
	}
    .video-list {
        background: transparent;
    }
    .feed-list {
    	width: 100%;
    }
    .feed {
        max-width: 100%;
        padding-bottom: 15px;
    }
    .feed-title {
    	padding-bottom: 20px;
    }
    .feed-title h2 {
		color:#0C193B;
		font-size: 34px;
		padding-top: 0px;
		margin-bottom: 0;
	}
	.feed-title p {
		color: #1F1F1F;
    	font-size: 12px;
    	margin-bottom:0;
	}
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        width: auto;
    }
    .card-body {
        padding: 0 0 1rem;
        page-break-inside: avoid;
    }
    .card-title {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .card-text .text-muted {
        font-size: 12px;
    }
}

/* Thanks Page ================================== */

.page-thanks {
	width: 100vw;
	min-height: 300px;
	height: auto;
	background-image: linear-gradient(to bottom right, rgba(22, 45, 105, 0.7),rgba(12, 25, 59, 0.9)), url(https://media.giphy.com/media/S3cRvOypCs5Wbt7xpL/source.gif);
    background-position: bottom center;
    background-size: cover;
}

.page-thanks .message {
	max-width: 700px;
}

.thanks-items {
	min-height: 400px;
	height: 100%;
	padding-left: 10px;
	padding-right: 10px;
}

 .titlethanks {
	font-family: 'Dosis', sans-serif;
	font-weight: 600;
	font-size: 40px;
	text-transform: uppercase;
	color: #FFF;
	margin: 10px 0 5px;
	text-align: center;
}

.subthanks {
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: #E9E9E9;
    text-align: center;
}

.subthanks a {
 	color: #EFC704;
 }
 
.subthanks a:hover {
 	text-decoration: underline;
 }

.icon-thanksc {
	text-align: center;
	margin-bottom: 2em;
}
.icon-thanksc img {
	filter: brightness(100);
	width: 100%;
	max-width: 100px;
}

.thanks-cards {
	background: #E9E9E9;
	padding: 60px 0;
}

.thanks-title-cards {
	font-size: 45px;
	text-align: center;
    margin-bottom: 50px;
}

.thanks-card {
	box-shadow: 5px 10px 10px rgba(58, 63, 70, 0.2);
}

.thanks-card .image-box {
	overflow: hidden;
	border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.thanks-card .card-img-top {
	-webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .8s ease-in-out;
    transition: .8s ease-in-out;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.thanks-card .card-body h5 {
	color: #162D69;
}

.thanks-card .card-body p {
	color: #1F1F1F;
	font-weight: 100;	
}

.thanks-card:hover {
	cursor: pointer;
}

.thanks-card:hover .card-img-top {
	-webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.thanks-card:hover .card-body h5 {
	color: #162D69;
}

.btn-thanks {
    margin-top: 3em;
}

.btn-thanksc {
	display:block;
	width:130px;
	min-height: 50px;
	margin: 0 auto;
    padding: .7em 1em;
    border: 2px solid rgba(249, 212, 35, 0);
    background: rgba(249, 212, 35, 1);
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    transition: all 0.4s ease;
    text-align:center;
}

.thanks-card:hover .btn-thanksc {
	color: #F9D423;
	border: 2px solid rgba(249, 212, 35, 1);
	background: rgba(249, 212, 35, 0);
}

.btn-thanks2 {
    margin-top: 3em;
}

.btn-thanksc2 {
	display:block;
	width:130px;
	min-height: 50px;
	margin: 0 auto;
    padding: .7em 1em;
    border: 2px solid rgba(22, 45, 105, 0);
    background: rgba(22, 45, 105, 1);
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    transition: all 0.4s ease;
    text-align:center;
}

.btn-thanksc2:hover {
	color: #162D69;
	border: 2px solid rgba(22, 45, 105, 1);
	background: rgba(22, 45, 105, 0);
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.page-thanks {
    background-position: top left;
    }
	.titlethanks {
		font-size: 30px;
	}
	.subthanks {
		font-size: 14px;
	}
	.card-deck {
		flex-direction: column;
	}
	.card-deck .card {
    	display: -ms-flexbox;
    	flex-wrap: wrap;
    	-ms-flex-wrap: wrap;
    	-ms-flex-direction: row;
    	flex-direction: row;
    	margin: 15px 0;
		max-height: 255px;
	}
	.thanks-card .image-box {
    	overflow: hidden;
    	flex: 0 0 33.333333%;
    	max-width: 33.333333%;
    	border-top-left-radius: calc(.25rem - 1px);
    	border-bottom-left-radius: calc(.25rem - 1px);
    	border-top-right-radius: 0;
	}
	.card-img-top {
		width: auto;
		max-height: 255px;
    	border-top-left-radius: 0;
    	border-top-right-radius: 0;
	}
	.card-body {
    	flex: 0 0 66.666667%;
    	max-width: 66.666667%;
    	padding: 1.25rem;
	}
	.btn-thanks {
    	display: none;
	}
}

@media (max-width: 576px) {
	.card-deck {
		padding: 0 10px;
	}
	.page-thanks {
    background-position: top left;
    }
	.thanks-items {
    	min-height: 100vh;
    }
}
