/*----------------------------------------------------------------

	Created on: Dash Randoms - Adam R
	Version: 1.0

-------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */

@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700&display=swap');

@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap');

@font-face {
	font-family: 'Gotham Book';
	src: url('../fonts/GothamBook.eot');
	src: url('../fonts/GothamBook.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamBook.woff2') format('woff2'),
		url('../fonts/GothamBook.woff') format('woff'),
		url('../fonts/GothamBook.ttf') format('truetype'),
		url('../fonts/GothamBook.svg#GothamBook') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham Medium';
	src: url('../fonts/Gotham-Medium.eot');
	src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Medium.woff2') format('woff2'),
		url('../fonts/Gotham-Medium.woff') format('woff'),
		url('../fonts/Gotham-Medium.ttf') format('truetype'),
		url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'GothamPro';
	src: url('../fonts/GothamPro-Light.eot');
	src: url('../fonts/GothamPro-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamPro-Light.woff2') format('woff2'),
		url('../fonts/GothamPro-Light.woff') format('woff'),
		url('../fonts/GothamPro-Light.ttf') format('truetype'),
		url('../fonts/GothamPro-Light.svg#GothamPro-Light') format('svg');
	font-weight: 100;
	font-style: normal;
}

html {
	font-size: 12px;
	scroll-behavior: smooth;
	
}

body {
	font-family: 'Gotham Book';
	color: #1f2044;
}

html,
body {
	width: 100%;
	height: 100%;
}

::selection {
	background-color: #fcf1e7;
	color: #1f2044;
	text-shadow: none;
}

-webkit-::selection {
	background-color: #fcf1e7;
	color: #1f2044;
	text-shadow: none;
}

::-moz-selection {
	background-color: #fcf1e7;
	color: #1f2044;
	text-shadow: none;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #2e2e2e;
}

img {
	max-width: 100%;
}



/* 1.2 Typography */

.font-custom {
	font-family: 'Gotham Medium';
}

.text-primary {
	color: #f79784 !important;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

@media (min-width: 1600px) {
	.container-fluid {
		padding-left: 4.375rem;
		padding-right: 4.375rem;
	}
}



/* 1.3 Animation */

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 160px, 0);
		transform: translate3d(0, 160px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 160px, 0);
		transform: translate3d(0, 160px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}



/* 1.4 Icons */

[class^="icon-"] {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -.05em;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	letter-spacing: 0;
}

[class^="icon-"]:before {
	content: "W";
	opacity: 0;
	display: block;
	height: 0;
	padding-bottom: 100%;
	font-style: normal;
	font-weight: normal;
	font-family: Verdana, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 1.5 Buttons */

button:focus,
input:focus {
	outline: none;
}

.btn {
	/* padding: 1rem 2.625rem; */
	border-radius: 5px;
	font-weight: bold;
	font-size: 1rem;
	text-transform: uppercase;
}

.btn-dark {

	background-color: #1b2f4f;
	border: 0px !important;
	color: #FFF;
}

.btn-pad {
	padding: 1rem 2.625rem;
}



/* 1.6 Forms */

#success,
#error {
	display: none;
}

.form-group-message {
	display: none;
}

label.error {
	margin-top: .5rem;
	margin-bottom: 0;
	color: #555555;
}

.form-group {
	margin-bottom: 2rem;
}

.form-control {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: .875rem;
	padding-bottom: .9375rem;
	height: calc(1.5em + 1.8125rem + 2px);
}



/* ------------------------------------------------------------------------------- */
/*  Preloader
/* ------------------------------------------------------------------------------- */

.preloader {
	position: fixed;
	overflow: hidden;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	text-align: center;
}

.three-bounce {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.three-bounce>div {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #f79784;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
	animation: bouncedelay 1.4s infinite ease-in-out both;
}

.three-bounce .one {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.three-bounce .two {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1)
	}
}

@keyframes bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}



/*-------------------------------------------------------------------------------
  3. Header
-------------------------------------------------------------------------------*/

.header {
	padding-top: 3.875rem;
}

.body-piling .header {
	padding-top: 0;
}

.header .container-fluid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.body-piling .brand {
	position: fixed;
	z-index: 500;
	left: 15px;
	top: 15px;
}

.brand-name {
	color: #234969;
	text-decoration: none;
	font-size: 1.375rem;
	letter-spacing: -.06em;
}

.brand-name:hover {
	text-decoration: none;
	color: #234969;
}

.brand-name-s {
	font-weight: 600;
	color: #464989;
}

@media (min-width: 668px) {
	.body-piling .brand {
		top: 3.875rem;
	}
}

@media (min-width: 1400px) {
	.body-piling .brand {
		left: 4.375rem;
	}
}



.nav-toggle-btn {
	margin: 0;
	border: none;
	padding: 0;
	background-color: transparent;
	z-index: 995;
	color: #FFF;
	text-shadow: 2px 2px 2px #777777;
}



.body-piling .nav-toggle-btn {
	position: fixed;

	top: 20px;
}

.nav-toggle-btn-get {
	position: fixed;
	right: 170px;
	z-index: 99999;
	text-shadow: 2px 2px 2px #777777;
}

.nav-toggle-btn-ser {
	position: fixed;
	right: 120px;
	z-index: 99999;
	text-shadow: 2px 2px 2px#777777;
}

.nav-toggle-btn-but {
	position: fixed;
	right: 120px;
	z-index: 99999;
	background: rgb(221, 221, 3);
	background: linear-gradient(90deg, rgba(221, 221, 3, 1) 83%, rgba(95, 154, 46, 0.8) 100%);
	color: #FFF !important;
	padding: 7px 15px 7px 15px;
}

.font-menu {
	font-size: 1.7rem;
	font-weight: 100;
}

@media (min-width: 668px) {
	.body-piling .nav-toggle-btn {
		top: 3.7rem;
		right: 45px;
	}

	.nav-toggle-btn-get {
		top: 3.7rem;
		right: 125px;

	}

	.nav-toggle-btn-ser {
		top: 3.8rem;
		right: 85px;
	}

	.nav-toggle-btn-but {
		top: 3.7rem;
		right: 170px;
	}

}

@media (min-width: 1400px) {
	.body-piling .nav-toggle-btn {
		top: 3.99rem;
		right: 4.375rem;
	}

	.nav-toggle-btn-get {
		top: 3.99rem;
		right: 150px;

	}

	.nav-toggle-btn-ser {
		top: 3.99rem;
		right: 110px;
	}

	.nav-toggle-btn-but {
		top: 4.1rem;
		right: 190px;
	}
	
}

.hamburger {
	display: flex;
	align-self: center;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 24px;
	cursor: pointer;
	padding-top: 5px;
	padding-bottom: 5px;
}

.hamburger span {
	align-self: flex-end;
	height: 2px;
	width: 83.33333333%;
	background: #3E4651;
	transition: all 400ms ease-in-out;
}

.hamburger .meat {
	width: 100%;
	transition: all 200ms ease-in-out;
}

.hamburger .bottom-bun {
	width: 58.33333333%;
	transition: all 400ms ease-in-out;
}

.hamburger:hover span {
	width: 100%;
}

html:not(.body-menu-opened) .hamburger:hover .top-bun {
	-webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
	animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}

html:not(.body-menu-opened) .hamburger:hover .meat {
	-webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
	animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}

html:not(.body-menu-opened) .hamburger:hover .bottom-bun {
	-webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
	animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}

@-webkit-keyframes burger-hover {
	0% {
		width: 100%;
	}

	50% {
		width: 50%;
	}

	100% {
		width: 100%;
	}
}

@keyframes burger-hover {
	0% {
		width: 100%;
	}

	50% {
		width: 50%;
	}

	100% {
		width: 100%;
	}
}

.body-menu-opened .hamburger .top-bun {
	transform: rotate(-45deg) translate(-4.5px, 4px);
	width: 100%;
}

.body-menu-opened .hamburger .bottom-bun {
	transform: rotate(45deg) translate(-4.5px, -4px);
	width: 100%;
}

.body-menu-opened .hamburger .meat {
	width: 0;
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	background: #ffffff;
	max-width: 100%;
	width: 100%;
	padding: 4.25rem 4.375rem 4.1875rem;
	display: flex;
	flex-direction: column;
	transition: transform .4s ease-in-out;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.body-menu-opened .menu {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.hide-menu {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 100%;
	background: rgba(0, 0, 0, .65);
	z-index: 980;
}

.body-menu-opened .hide-menu {
	bottom: 0;
}

@media (min-width: 576px) {
	.menu {
		width: 34rem;
	}
}

.menu .menu-lang,
.menu .menu-main,
.menu .social,
.menu .menu-footer {
	opacity: 0;
	transform: translateY(3rem);
	transition: all .5s ease-in-out;
}

.menu .menu-lang {
	transition-delay: .2s;
}

.menu .menu-main {
	transition-delay: .4s;
}

.menu .social {
	transition-delay: .6s;
}

.menu .menu-footer {
	transition-delay: .8s;
}

.body-menu-opened .menu .menu-lang,
.body-menu-opened .menu .menu-main,
.body-menu-opened .menu .social,
.body-menu-opened .menu .menu-footer {
	opacity: 1;
	transform: translateY(0);
}

.menu .menu-lang {
	padding-bottom: 5.875rem;
}

.menu-lang {
	font-size: .875rem;
	text-transform: uppercase;
	font-weight: 600;
}

.menu-lang-item {
	display: inline-block;
	margin-right: 1.5rem;
	color: #a3a4a8;
	text-decoration: none;
}

.menu-lang-item.active,
.menu-lang-item:hover {
	color: #1f2044;
	text-decoration: none;
}

.menu-main {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 1.375rem;
	font-weight: bold;
}

.menu-main>ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-main>ul>li {
	margin-bottom: 1.1875rem;
	padding-left: 2px;
}

.menu-main a,
.menu-main a:hover {
	color: #1f2044;
	text-decoration: none;
}

.menu-main .active a,
.menu-main a:hover {
	background: rgba(221, 221, 3, 0.162);
}

.menu-main a:after {
	content: ".";
	opacity: 0;
	display: inline-block;
	transform: translate(2rem, 0);
	transition: all .3s ease-in-out;
}

.menu-main .active a:after {
	transform: translate(0, 0);
	opacity: 1;
}

.menu-footer {
	padding-top: 3rem;
}

.menu-footer-contacts {
	margin-bottom: 51px;
}

.menu-footer-phone {
	margin-bottom: .25rem;
	font-size: 1.375rem;
	font-weight: 600;
}

.menu-footer-mail {
	color: #f79784;
	font-weight: 500;
	font-size: 1rem;
}

.menu-footer-copyright {
	font-size: .875rem;
	color: #234969;
}

.menu-ornament {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: .375rem;
	background: #78acd9;
}

.menu-ornament:before,
.menu-ornament:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 33.33333333%;
	height: 100%;
}

.menu-ornament:before {
	background: #464989;
	left: 0;
}

.menu-ornament:after {
	background: #f79784;
	right: 0;
}


/*-------------------------------------------------------------------------------
  4. Content
-------------------------------------------------------------------------------*/

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.wrapper #content {
	flex: 1 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.wrapper #footer {
	flex: 0 0 auto;
}


.full-page {
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.section {
	min-height: 100%;
	display: flex;
}

#pp-nav {
	display: none;
}

.progress-nav {
	width: 2px;
	position: fixed;
	z-index: 300;
	top: 50%;
	left: 10px;
	transform: translate(0, -50%);
}

.progress-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.progress-nav li {
	width: 2px;
	height: 1.625rem;
	background: #464a8a;
	overflow: hidden;
	transition: background .5s ease-in-out;
	position: relative;
}

.progress-nav li:before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #464a8a;
}

.progress-nav li.active:before {
	animation: navHeight .5s ease-in-out forwards;
}

@-webkit-keyframes navHeight {
	0% {
		height: 0;
	}

	100% {
		height: 100%;
	}
}

@keyframes navHeight {
	0% {
		height: 0;
	}

	100% {
		height: 100%;
	}
}


.progress-nav li.active,
.progress-nav li.active~li {
	background: #cccccc;
}

.progress-nav li:before {
	height: 100%;
}

.progress-nav li.active~li:before {
	height: 0%;
}

@media (min-width: 1400px) {
	.progress-nav {
		left: 4.5rem;
	}
}



.pp-scrollable {
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
}

.slide-dark {
	background: #fafafa;
}

.slide-container {
	width: 100%;

	display: flex;
	align-items: center;
	padding-top: 6.25rem;
	padding-bottom: 3.75rem; 
	position: relative;
}

.lines>div {
	display: block;
	width: 1px;
	height: 100%;
	background: #f5f5f5;
	position: absolute;
	left: 20%;
	top: 0;
}

.lines>div:nth-child(2) {
	left: 40%;
}

.lines>div:nth-child(3) {
	left: 60%;
}

.lines>div:nth-child(4) {
	left: 80%;
}

.slide-dark .lines>div {
	background: #eeeeee;
}

.parallax {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.shape {
	position: absolute !important;
	background-position: 0% 0%;
}

.shape>.inside {
	display: block;
	width: 100%;
	height: 0%;
	background-repeat: no-repeat;
	background-size: contain;
}

.shape1 {
	top: 26.9% !important;
	left: 9.89583333% !important;
	width: 8.64583333%;
}

.shape1>.inside {
	background-image: url("../img/shape1.png");
	padding-bottom: 106.02409639%;
}

.shape1-intro {
	top: 25.7% !important;
	left: 8.80208333% !important;
	width: 8.85416667%;
}

.shape1-intro>.inside {
	background-image: url("../img/shape1-intro.png");
	padding-bottom: 104.11764706%;
}

.shape2 {
	top: 41.3% !important;
	left: 16.875% !important;
	width: 6.66666667%;
}

.shape2>.inside {
	background-image: url("../img/shape2.png");
	padding-bottom: 99.21875%;
}

.shape3 {
	top: 55.1% !important;
	left: 80.3125% !important;
	width: 2.08333333%;
}

.shape3>.inside {
	background-image: url("../img/shape3.png");
	padding-bottom: 112.5%;
}

.shape3-intro {
	top: 44.9% !important;
	left: 85.72916667% !important;
	width: 1.97916667%;
}

.shape3-intro>.inside {
	background-image: url("../img/shape3-intro.png");
	padding-bottom: 115.78947368%;
}

.shape4 {
	top: 47.3% !important;
	left: 81.66666667% !important;
	width: 3.17708333%;
}

.shape4>.inside {
	background-image: url("../img/shape4.png");
	padding-bottom: 90.16393443%;
}

.shape4-intro {
	top: 36.1% !important;
	left: 85.57291667% !important;
	width: 3.17708333%;
}

.shape4-intro>.inside {
	background-image: url("../img/shape4-intro.png");
	padding-bottom: 91.80327869%;
}

.shape5 {
	top: 54.9% !important;
	left: 82.34375% !important;
	width: 6.77083333%;
}

.shape5>.inside {
	background-image: url("../img/shape5.png");
	padding-bottom: 115.38461538%;
}

.shape5-intro {
	top: 43.1% !important;
	left: 89.63541667% !important;
	width: 5.88541667%;
}

.shape5-intro>.inside {
	background-image: url("../img/shape5-intro.png");
	padding-bottom: 112.38938053%;
}

.shape6 {
	top: 52.1% !important;
	left: 54.0625% !important;
	width: 16.25%;
}

.shape6>.inside {
	background-image: url("../img/shape6.png");
	padding-bottom: 87.33974359%;
}

.shape7 {
	top: 51.2% !important;
	left: 56.51041667% !important;
	width: 19.0625%;
}

.shape7>.inside {
	background-image: url("../img/shape7.png");
	padding-bottom: 98.08743169%;
}

.shape7-intro {
	top: 44.9% !important;
	left: 62.96875% !important;
	width: 21.19791667%;
}

.shape7-intro>.inside {
	background-image: url("../img/shape7-intro.png");
	padding-bottom: 98.28009828%;
}

.shape8 {
	top: 47.9% !important;
	left: 63.95833333% !important;
	width: 3.33333333%;
}

.shape8>.inside {
	background-image: url("../img/shape8.png");
	padding-bottom: 100%;
}

.shape9 {
	top: 52% !important;
	left: 49.27083333% !important;
	width: .78125%;
}

.shape9>.inside {
	background-image: url("../img/shape9.png");
	padding-bottom: 120%;
}

.shape9-intro {
	top: 60.1% !important;
	left: 51.25% !important;
	width: .78125%;
}

.shape9-intro>.inside {
	background-image: url("../img/shape9-intro.png");
	padding-bottom: 120%;
}

.shape10 {
	top: 54.8% !important;
	left: 69.89583333% !important;
	width: .98958333%;
}

.shape10>.inside {
	background-image: url("../img/shape10.png");
	padding-bottom: 94.73684211%;
}

.shape10-intro {
	top: 62.1% !important;
	left: 86.14583333% !important;
	width: .5rem;
}

.shape10-intro>.inside {
	background-image: url("../img/shape10-intro.png");
	padding-bottom: 87.5%;
}

.shape11 {
	top: 58.8% !important;
	left: 22.86458333% !important;
	width: .98958333%;
}

.shape11>.inside {
	background-image: url("../img/shape11.png");
	padding-bottom: 89.47368421%;
}

.shape11-intro {
	top: 68.6% !important;
	left: 15% !important;
	width: .9375%;
}

.shape11-intro>.inside {
	background-image: url("../img/shape11-intro.png");
	padding-bottom: 83.33333333%;
}

.shape12 {
	top: 69.3% !important;
	left: 24.11458333% !important;
	width: 1.45833333%;
}

.shape12>.inside {
	background-image: url("../img/shape12.png");
	padding-bottom: 107.14285714%;
}

.shape12-intro {
	top: 79.9% !important;
	left: 43.4375% !important;
	width: 1.45833333%;
}

.shape12-intro>.inside {
	background-image: url("../img/shape12-intro.png");
	padding-bottom: 107.14285714%;
}

.shape13 {
	top: 46.7% !important;
	left: 28.38541667% !important;
	width: 1.25%;
}

.shape13>.inside {
	background-image: url("../img/shape13.png");
	padding-bottom: 100%;
}

.shape14,
.shape14-intro {
	top: 36.8% !important;
	left: 16.97916667% !important;
	width: .72916667%;
}

.shape14>.inside,
.shape14-intro>.inside {
	background-image: url("../img/shape14.png");
	padding-bottom: 114.285714289%;
}

.shape14-intro>.inside {
	background-image: url("../img/shape14-intro.png");
}

.shape15 {
	top: 38.6% !important;
	left: 82.8125% !important;
	width: .83333333%;
}

.shape15>.inside {
	background-image: url("../img/shape15.png");
	padding-bottom: 100%;
}

.shape16 {
	top: 71.2% !important;
	left: 32.29166667% !important;
	width: .72916667%;
}

.shape16>.inside {
	background-image: url("../img/shape16.png");
	padding-bottom: 114.28571429%;
}

.slide-ornament {
	display: block;
	width: 31.875%;
	background: url("../img/ornament.png") 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	left: 65.20833333%;
	top: 38.5%;
}

.slide-ornament>.inside {
	display: block;
	height: 0;
	padding-bottom: 82.35294118%;
}



/* 4.1 Slide About */

.title-mini {
	margin-bottom: .8125rem;
	font-size: .875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.title-mini-margin-lg {
	margin-bottom: 1.25rem;
}

.slide-title {
	font-weight: 400;
	font-size: 2.75rem;
	letter-spacing: -0.02em;
	line-height: 1;
	color: #575756;
}

@media (min-width: 668px) {
	.slide-title {
		margin-right: -3.125rem;
	}

	.slide-title.text-center,
	.text-center .slide-title {
		margin-right: 0;
	}
}

h3.slide-title {
	font-size: 2.5rem;
}

.slide-title-margin-md {
	margin-bottom: 2.25rem;
}

.slide-title-margin-lg {
	margin-bottom: 4rem;
}

.slide-title .text-typed {
	font-weight: 700;
	display: inline-block;
	min-height: .85em;
	line-height: .85;
	color: #1b2f4f;
}

.slide-descr {
	margin-top: 10vh !important;
	letter-spacing: -.01em;
	color: #1b2f4f;
	font-size: 2.75rem;
	font-family: "Gotham Medium";
}



.slide-photo {
	position: relative;
	margin-top: 4rem;
}

@media (min-width: 668px) {
	.slide-photo {
		margin-top: 0;
	}
}

.slide-photo-about {
	margin-top: 4.375rem;
	position: relative;
	max-width: 43.125rem;
	margin-left: auto;
	margin-right: auto;
}

.rounded-text {
	width: 8.625rem;
	height: 8.625rem;
	position: absolute;
	right: 50%;
	margin-right: 7.5rem;
	transform: rotate(-103deg);
}


/* 4.2 Slide Services */

.service-list {
	margin-top: 4.25rem;
}

.service-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-link {
	position: relative;
	font-size: 1.375rem;
	font-weight: bold;
}

.service-list li:not(:first-child) {
	margin-top: 1.3125rem;
}

.primary-link a,
.primary-link a:hover {
	color: inherit;
	text-decoration: none;
}

.primary-link a:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: .25rem;
	height: 3px;
	width: 0;
	background-color: #f69683;
	transition: all .3s ease-in-out;
}

.primary-link a:hover:before {
	width: 5rem;
}

.slide-photo-services>.inside {
	width: 67.19298246%;
	margin-left: 15%;
}

.image-card {
	position: absolute;
	border-radius: 1.125rem;
	background: #ffffff;
	box-shadow: rgba(18, 42, 78, .15) 3.75rem 3.75rem 3.75rem;
}

.image-card-body {
	display: block;
	height: 0;
	padding-bottom: 100%;
}

.image-card-body>.inside {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.image-card-dark {
	background: #1f2044;
	box-shadow: none;
}

.image-card-primary {
	background: #df5647;
	box-shadow: none;
}

.section:not(.active) .animate-element {
	animation-name: none;
}

.section.active .animate-element {
	animation-duration: .7s;
	animation-fill-mode: both;
}

.section.active .delay1 {
	animation-delay: .1s;
}

.section.active .delay2 {
	animation-delay: .2s;
}

.section.active .delay3 {
	animation-delay: .3s;
}

.section.active .delay4 {
	animation-delay: .4s;
}

.section.active .delay5 {
	animation-delay: .5s;
}

.section.active .delay6 {
	animation-delay: .6s;
}

.section.active .delay7 {
	animation-delay: .7s;
}

.section.active .delay8 {
	animation-delay: .8s;
}

.section.active .delay9 {
	animation-delay: .9s;
}

.section.active .delay10 {
	animation-delay: 1s;
}

.section.active .delay11 {
	animation-delay: 1.1s;
}

.section.active .delay12 {
	animation-delay: 1.2s;
}

.section.active .delay13 {
	animation-delay: 1.3s;
}

.section.active .delay14 {
	animation-delay: 1.4s;
}

.section.active .delay15 {
	animation-delay: 1.5s;
}

.section.active .delay16 {
	animation-delay: 1.6s;
}

.card2-1 {
	width: 22.63157895%;
	left: 6.31578947%;
	top: 13.09859155%;
}

.card2-1 .image-card-body>.inside {
	width: 57.36434109%;
}

.card2-2 {
	width: 38.59649123%;
	left: -9.64912281%;
	top: 60.56338028%;
}

.card2-2 .image-card-body>.inside {
	width: 65%;
}

.card2-3 {
	width: 29.82456140%;
	right: 0%;
	top: 12.81690141%;
}

.card2-3 .image-card-body>.inside {
	width: 52.94117647%;
}

.card2-4 {
	width: 17.54385965%;
	right: 6.66666667%;
	top: 71.12676056%;
}

.card2-4 .image-card-body>.inside {
	width: 71%;
}



/* 4.3 Slide Skills */

.bar-list {
	margin-top: 3rem;
}

.bar-item {
	margin-bottom: 1.125rem;
}

.bar-item-title,
.bar-item-value {
	margin-bottom: .6875rem;
}

.bar-item-title {
	font-size: 1rem;
	font-weight: bold;
}

.bar-item-value {
	padding-top: 2px;
	font-size: .875rem;
}

.progress {
	height: .875rem;
	border-radius: .4375rem;
}

.progress-bar {
	background-color: #75a9d6;
}

.progress-bar {
	position: relative;
	width: 0;
	transition: width 1s ease-in-out;
	transition-delay: 1.5s;
}

.card3-1 {
	position: relative;
	width: 77.89473684%;
}

.card3-1 .image-card-body>.inside {
	width: 86.71171171%;
}

.card3-2 {
	width: 18.42105263%;
	left: -3.50877193%;
	top: -4px;
}

.card3-2 .image-card-body>.inside {
	width: 65%;
}

.card3-3 {
	width: 35.08771930%;
	right: 8.07017544%;
	top: -12.16216216%;
	box-shadow: rgba(16, 39, 91, .1) 1.375rem 1.375rem 3.75rem;
}

.card3-3 .image-card-body>.inside {
	width: 52.5%;
}

.card3-4 {
	width: 20.87719298%;
	right: 4.91228070%;
	top: 82.88288288%;
	z-index: -1;
	box-shadow: rgba(11, 53, 92, .1) 1.875rem 1.875rem 3.75rem;
}

.card3-4 .image-card-body>.inside {
	width: 58.82352941%;
}



/* 4.4 Slide Resume */

.slide-photo-education,
.slide-photo-experience {
	margin-bottom: 2.1875rem;
}

.slide-photo-bg-rounded {
	padding: 14.59459459% 14.32432432% 2.70270270%;
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: contain;
}

.photo-bg-education {
	background-image: url("../img/slide4-1-bg.png");
}

.education-image {
	margin-top: 7.19696970%;
	margin-left: 4.16666667%;
	width: 81.43939394%;
}

.photo-bg-experience {
	background-image: url("../img/slide4-2-bg.png");
}

.experience-image {
	margin-top: 4.92424242%;
	margin-left: 12.5%;
	width: 82.57575758%;
}

.slide-photo-bg-rounded>.inside {
	display: block;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 100%;
	background-color: #ffffff;
}

.vacancy-item {
	margin-bottom: 1.75rem;
}

.vacancy-item-title {
	margin-bottom: .8125rem;
	font-size: 1.125rem;
	font-weight: bold;
	text-transform: uppercase;
}

.vacancy-item-title a {
	color: inherit;
}

.vacancy-item-place,
.vacancy-item-time {
	line-height: 1.625;
	font-size: 1rem;
}

.vacancy-item-place {
	font-weight: 600;
}

.vacancy-item-text {
	margin-top: .5rem;
	font-size: .875rem;
	line-height: 1.71428571;
}



/* 4.5 Slide Portfolio */

.portfolio-item-photo {
	margin-bottom: 1.75rem;
}

@media (min-width: 668px) {
	.portfolio-item-detail {
		min-height: 8.75rem;
	}
}

.portfolio-item-title {
	margin-bottom: .625rem;
}

.portfolio-item-descr {
	font-size: .875rem;
}

.portfolio-carousel.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 1.25rem;
}

.owl-theme .owl-dots .owl-dot span {
	width: .75rem;
	height: .75rem;
	margin: 5px .5rem;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #464989;
}



/* 4.6 Slide Awards */

.reward-list {
	margin-top: 4.0625rem;
}

.reward-item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-top: 2.5rem;
}

.reward-item:first-child {
	margin-top: 0;
}

.reward-item-photo {
	width: 10.5rem;
	flex: 0 0 auto;
	padding-right: 1.875rem;
	text-align: center;
}

.reward-item-title {
	margin-bottom: 3px;
	margin-right: -1rem;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.125rem;
}

.reward-item-descr {
	font-size: .875rem;
	color: #234969;
}

.slide-photo6 {
	padding-top: 1.875rem;
}

.slide-photo6>.inside {
	width: 93.50877193%;
	margin-left: 3.50877193%;
}

.card6-1 {
	width: 14.03508772%;
	left: 6.31578947%;
	top: 0;
}

.card6-1 .image-card-body>.inside {
	width: 45%;
}

.card6-2 {
	width: 26.31578947%;
	left: 2.63157895%;
	top: 62.59259259%;
	top: 64.34697855%;
}

.card6-2 .image-card-body>.inside {
	width: 56%;
}



/* 4.7 Slide Testimonials */

.testimonial-carousel {
	margin-top: 2rem;
}

.testimonial-item {
	min-height: 18.75rem;
}

.testimonial-item-text {
	margin-top: 0;
}

.testimonial-item-author {
	margin-top: 3.25rem;
}

.testimonial-avatar {
	width: 3.4375rem;
}

.avatar>.inside {
	display: block;
	height: 0;
	padding-bottom: 100%;
	border-radius: 500px;
	overflow: hidden;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
}

.testimonial-item-author-name {
	margin-bottom: 3px;
	font-size: 1rem;
	font-weight: bold;
}

.testimonial-item-author-status {
	font-size: .875rem;
	color: #234969;
}

.testimonial-carousel.owl-theme .owl-dots {
	margin-left: -.5rem;
	text-align: left;
}

.slide-photo-testimonials {
	padding-top: 12.28070175%;
	margin-bottom: 1.25rem;
}

.slide-photo-testimonials>.inside {
	width: 108.77192982%;
	margin-left: -5.26315789%;
}

.card7-1 {
	width: 12.28070175%;
	right: -5.96491228%;
	top: 24.09177820%;
	z-index: -1;
}

.card7-1 .image-card-body>.inside {
	width: 48.57142857%;
	top: 46%;
}

.card7-2 {
	width: 36.84210526%;
	left: -3.50877193%;
	top: 0;
	box-shadow: rgba(18, 42, 78, .15) 2.5rem 2.5rem 3.75rem;
}

.card7-2 .image-card-body {
	padding-bottom: 71.42857143%;
}

.card7-2 .image-card-body>.inside {
	width: 66.66666667%;
}



/* 4.8 Slide Clients */

.client-list {
	margin-top: 4.125rem;
}

.client-item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-top: 2.5rem;
}

.client-item:first-child {
	margin-top: 0;
}

.client-item-value {
	width: 10.5rem;
	padding-right: 1.875rem;
	font-size: 3.125rem;
	line-height: 1;
	font-weight: 600;
	color: #78acd9;
}

.client-item-title {
	margin-bottom: 3px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.125rem;
}

.client-item-descr {
	font-size: .875rem;
	color: #234969;
}



.slide-photo-clients {
	height: 0;
	padding-bottom: 92.10526316%;
	margin-top: 3.125;
}

.card8-1 {
	width: 37.19298246%;
	left: 29.82456140%;
	top: 27.04761905%;
	z-index: 100;
	box-shadow: rgba(11, 53, 92, .15) 4.375rem 4.375rem 3.75rem;
}

.card8-1 .image-card-body>.inside {
	width: 55.66037736%;
}

.card8-2 {
	width: 15.96491228%;
	left: 53.68421053%;
	top: 0%;
	box-shadow: rgba(11, 53, 92, .1) 1.375rem 1.375rem 3.75rem;
}

.card8-2 .image-card-body>.inside {
	width: 54.94505495%;
}

.card8-3 {
	width: 29.82456140%;
	left: 78.94736842%;
	top: 2.47619048%;
	box-shadow: rgba(11, 53, 92, .1) 1.375rem 1.375rem 3.75rem;
}

.card8-3 .image-card-body>.inside {
	width: 78.82352941%;
}

.card8-4 {
	width: 19.29824561%;
	left: 8.77192982%;
	top: 6.09523810%;
	box-shadow: rgba(11, 53, 92, .1) 2.5rem 2.5rem 3.75rem;
}

.card8-4 .image-card-body>.inside {
	width: 51.81818182%;
}

.card8-5 {
	width: 18.77192982%;
	left: 29.82456140%;
	top: 79.61904762%;
	box-shadow: rgba(11, 53, 92, .1) 1.875rem 1.875rem 3.75rem;
}

.card8-5 .image-card-body>.inside {
	width: 72.89719626%;
}

.card8-6 {
	width: 18.07017544%;
	left: 7.89473684%;
	top: 44.95238095%;
	box-shadow: rgba(11, 53, 92, .1) 1.875rem 1.875rem 3.75rem;
}

.card8-6 .image-card-body>.inside {
	width: 65.04854369%;
}

.card8-7 {
	width: 20.70175439%;
	left: 70.17543860%;
	top: 67.61904762%;
	box-shadow: rgba(11, 53, 92, .1) 1.875rem 1.875rem 3.75rem;
}

.card8-7 .image-card-body>.inside {
	width: 53.38983051%;
}



/* 4.9 Slide Contact */

.slide-btn {
	margin-top: 2.5rem;
}

.contacts {
	margin-top: 2rem;
}

.contact-item {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	font-weight: 500;
}

.contact-item-phone {
	font-size: 1.875rem;
	font-weight: 600;
}

.mail-link,
.phone-link,
.phone-link:hover {
	color: inherit;
	text-decoration: none;
}

.phone-link {
	cursor: default;
	white-space: nowrap;
}

.contact-ornament {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 0;
	padding-bottom: 14%;
	background: url("../img/contact-ornament.png") 50% 100% no-repeat;
	background-size: cover;
}

.slide-contacts .slide-container {
	padding-bottom: 7rem;
}



@media (min-width: 668px) {
	.contact-ornament {
		background-size: contain;
		padding-bottom: 7.03125%;
	}

	.slide-contacts .slide-container {
		padding-bottom: 13.75rem;
	}

	.contacts {
		margin-top: 4.25rem;
	}

	.contact-item {
		margin-top: 2.5rem;
	}

	.para-desc-emp {
		font-size: .75em !important;
	}


}



/*-------------------------------------------------------------------------------
  5. Footer
-------------------------------------------------------------------------------*/

.footer {
	padding-bottom: 4rem;
}

.body-piling .footer {
	padding-bottom: 0;
}

.footer .container-fluid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-end;
}

.copyright {
	font-size: .875rem;
	color: #234969;
}

.body-piling .copyright {
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 500;
}

.footer-social {
	position: absolute;
	background-color: #FFF;
	border-radius: 25px 0 0 25px;
	width: 75px;
	top: 60vh;
	right: 0;

}



.social {
	margin: 0;
	padding: 0 2rem 20px 20px;
	list-style: none;
	font-size: 3.125rem;
	text-align: right;
}

.social li {
	margin-bottom: -1.5rem;
}

.social li>a>i {
	color: #FFF;
	-webkit-text-stroke: 1px #dddd03 !important;
	-webkit-text-fill-color: white;

}

.chat {
	position: relative;
	margin-top: 7.75rem;
}

.chat-title {
	position: absolute;
	white-space: nowrap;
	right: 50%;
	bottom: 100%;
	margin-bottom: .3125rem;
	transform: rotate(90deg);
	transform-origin: right center;
	font-size: .875rem;
	color: #234969;
}

.chat-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 2.875rem;
	height: 2.875rem;
	border-radius: 2.875rem;
	background: #464989;
}

.chat-btn.has-new:before {
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	border-radius: 1rem;
	background: #5fc515;
	position: absolute;
	top: -3px;
	right: -2px;
}



@media (min-width: 768px) {
	.body-piling .copyright {
		bottom: 4rem;
	}

	.body-piling {
		bottom: 4.375rem;
	}
}

@media (min-width: 1400px) {
	.body-piling .copyright {
		left: 4.375rem;
	}


}



/*-------------------------------------------------------------------------------
  6. Modal
-------------------------------------------------------------------------------*/

.modal-content {
	border: none;
}

.modal .close {
	position: absolute;
	right: 0;
	top: 0;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.75rem;
}

.modal-body {
	padding: 2.5rem 2rem;
}



/*-------------------------------------------------------------------------------
  7. Dark Theme
-------------------------------------------------------------------------------*/

.is-dark::selection,
.is-dark ::selection {
	background-color: #78acd9;
	color: #ffffff;
}

.is-dark::-moz-selection,
.is-dark ::-moz-selection {
	background-color: #78acd9;
	color: #ffffff;
}

.is-dark,
.is-dark .pp-scrollable {
	background-color: #3c3c59;
}

.is-dark .slide-dark {
	background-color: #32324c;
}

.is-dark,
.is-dark .header,
.is-dark .footer,
.is-dark .brand-name,
.is-dark .brand-name-s,
.is-dark .copyright,
.is-dark .chat-title,
.is-dark .slide:not(.slide-about) .slide-descr strong,
.is-dark a:hover,
.is-dark .menu-main a,
.is-dark .menu-main a:hover,
.is-dark .menu-lang-item.active,
.is-dark .menu-lang-item:hover,
.is-dark .menu-footer-copyright {
	color: #ffffff;
}

.is-dark .hamburger span {
	background: #ffffff;
}

.is-dark .menu {
	background-color: #202044;
}

.is-dark .hide-menu {
	background-color: transparent;
}

.is-dark .menu-main .active a,
.is-dark .menu-main a:hover {
	background-color: #78acd9;
	box-shadow: #78acd9 0 0 0 2px
}

.is-dark a:not(:hover) .icon-behance {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3e%3cpath fill='%23b4b4d5' d='M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z'/%3e%3c/svg%3e");
}

.is-dark a:not(:hover) .icon-linkedin {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%23b4b4d5' d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3e%3c/svg%3e");
}

.is-dark a:not(:hover) .icon-dribbble {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%23b4b4d5' d='M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z'/%3e%3c/svg%3e");
}

.is-dark .chat-btn {
	background-color: #2b2b45;
}

.is-dark .slide-title .text-typed {
	background-color: #78acd9;
	box-shadow: #78acd9 0 0 0 5px;
}

.is-dark .slide-descr,
.is-dark .vacancy-item-place,
.is-dark .vacancy-item-text,
.is-dark .portfolio-item-descr,
.is-dark .reward-item-descr,
.is-dark .testimonial-item-author-status,
.is-dark .client-item-descr {
	color: #b4b4d5;
}

.is-dark .rounded-text textPath {
	fill: #b4b4d5;
}

.is-dark .lines>div {
	background-color: #51516d;
}

.is-dark .progress-nav li:before {
	background-color: #ffffff;
}

.is-dark .progress-nav li.active,
.is-dark .progress-nav li.active~li {
	background: #51516d;
}

.is-dark .image-card {
	background-color: #4d4d6c;
}

.is-dark .shape6>.inside {
	background-image: url("../img/shape6-dark.png");
}

.is-dark .image-card-dark {
	background-color: #1f2044;
}

.is-dark .card3-4 {
	background-color: #32324c;
}

.is-dark .card6-1,
.is-dark .card7-1 {
	background-color: #df5647;
}

.is-dark .slide-ornament {
	background-image: url("../img/ornament-dark.png");
}

.is-dark .owl-theme .owl-dots .owl-dot.active span,
.is-dark .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #e48b79;
}

.is-dark ::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: rgba(255, 255, 255, .1);
}



/*-------------------------------------------------------------------------------
  8. Intro
-------------------------------------------------------------------------------*/

.nav-toggle-btn .btn {
	position: relative;
	margin-top: -1rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

.btn .badge-purchase {
	display: block;
	position: absolute;
	left: -4px;
	top: -7px;
	width: 25px;
	height: 25px;
	border-radius: 25px;
	background: url("../img/icon-purchase.png") 50% 50% no-repeat;
	background-size: cover;
}

.intro .slide-container {
	padding-bottom: 1rem;
}

.screen-container {
	margin-top: 5.125rem;
}

@media (min-width: 768px) {
	.screen-container {
		margin-left: -5rem;
		margin-right: -5rem;
	}
}

.screen-content {
	margin-left: .625rem;
	margin-right: .625rem;
}

.slide-photo-intro {
	background-image: url("../img/bg-notebook.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0;
	height: 0;
	padding-bottom: 82.22222222%;
	margin-top: 0;
}

.slide-photo-intro a {
	display: inline-block;
	color: #1f2044;
	text-decoration: none;
}

.zoom {
	overflow: hidden;
}

.zoom img {
	transform: scale(1);
	transition: transform .5s ease-in-out;
}

.slide-photo-intro a:hover .zoom img {
	transform: scale(1.05);
}

.slide-photo-intro .inside {
	padding-left: 12.22222222%;
	padding-right: 12.22222222%;
	padding-top: 3.65079365%;
	padding-bottom: 10.47619048%;
	/*68*/
}

.screen-title {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1rem;
}

@media (min-width: 375px) {
	.title-jacker {
		margin: 10px 0px !important;
	}

	.margin-upper {
		margin-top: 5vh;
	}

	.mob-center {
		text-align: center;
	}

	.head-font {
		font-size: 2rem;
	}

	#logo-mob {
		float: left;
		top: 0;
		left: 0;
		z-index: 999;

	}

	#logo-mob>img {
		position: fixed;
		width: auto;
		height: 100px;
		z-index: 999;
	}

	#logo-wob {
		float: left;
		top: 0;
		left: 0;
		z-index: 999;

	}

	#logo-wob>img {
		position: fixed;
		width: auto;
		height: 100px;
		z-index: 999;
	}

	.font-manual-mob {
		font-size: .8em !important;
	}

	.contact-margin {
		text-align: center;
	}

	.footer-blink {
		margin-top: -45px;
		background-color:#1b2f4f;
		bottom: 0;
		padding-top: 10px;
	}
	.img-logo {
		margin-top: 7vh;
	}
}

@media (min-width: 668px) {
	html {
		font-size: 13px;
	}

	.img-logo {
		margin-top: 7vh;
	}

	.margin-upper {
		margin-top: 5vh;
	}

	.margin-contact {
		margin-top: 4em;
	}

	.contact-pull {
		margin-top: -100px;
	}

	.menu-task {
		margin-top: 15%;
	}

	.mob-center {
		text-align: justify;
	}

	.head-font {
		font-size: 2.25rem;
	}

	#logo-wob {
		float: left;
		top: 0;
		left: 0;
		z-index: 999;
	}

	#logo-wob>img {
		position: absolute;
		width: auto;
		height: 100px;
		z-index: 999;
	}

	#logo-mob>img {
		display: none;
	}

	.font-manual-mob {
		font-size: 1.3em !important;
	}

	.contact-margin {
		text-align: left;
	}
	.footer-blink {
		padding-top: 0px;
	}
}



@media (min-width: 992px) {
	html {
		font-size: 14px;
	}
	.main-sector,
	.main-offer,
	.main-reporteam,
	.the-records,
	.white-page {
		height: 100vh;
	}

}

@media (min-width: 1280px) {
	html {
		font-size: 15px;
	}

	.margin-contact {
		margin-top: 25vh;
	}

	.para-desc {
		font-size: .9rem;
		padding-right: 40px;
		font-family: 'GothamPro';
		font-weight: 100;
		color: #777777;
		margin-top: 15px;
		letter-spacing: -.2px;
	}

	.white-page {
		height: 100vh;
	}

	.main-sector,
	.main-offer,
	.main-reporteam,
	.the-records {
		height: 100vh;
	}

}

@media (min-width: 1920px) {
	html {
		font-size: 16px;
	}

	.margin-upper {
		margin-top: 10vh;
		
	}
	.pad-bottom {
		margin-bottom: 500px;
	}


	.contact-pull-max {
		height: 100px;
	}

	.contact-pull {
		margin-top: -50px;
	}

	.para-desc {
		font-size: 1.1rem;
		padding-right: 40px;
		font-family: 'GothamPro';
		font-weight: 100;
		color: #777777;
		margin-top: 15px;
		letter-spacing: -.2px;
	}

	.menu-task {
		margin-top: 21%;
	}

	.main-sector,
	.white-page,
	.main-offer,
	.main-reporteam,
	.the-records {
		height: 100vh;
	}

	.main-foots {
		height: 200px;
	}
}

.white-page {
	background-color: #FFF;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;

}

.main-page {
	background-image: url("../img/onex-bg-top.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

.main-sector {
	background-image: url("../img/onex-sector-top.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;

}

.main-reporteam {
	background-image: url("../img/onex-reporteam-top.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;

}

.the-records {
	background-image: url("../img/onex-record.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;

}

.main-offer {
	background-image: url("../img/onex-offer-top.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;

}

.main-contact {
	background-image: url("../img/onex-contact-top.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

.main-contact-flip {
	background-image: url("../img/onex-contact-flip.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

.main-foots {
	background-image: url("../img/onex-footer-top.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;


}

.footer-pull-up {
	z-index: 99999;
}





.margin-absorb {
	bottom: 35px !important;
	position: fixed;
}

.btn-dark:hover,
.btn:hover {
	background: rgb(221, 221, 3);
	background: linear-gradient(90deg, rgba(221, 221, 3, 1) 83%, rgba(95, 154, 46, 0.8) 100%);
}

.second-text {
	color: #dddd03;
	font-weight: 100 !important;
	font-family: "GothamPro";
}

.btn-conta {
	background: rgb(221, 221, 3);
	background: linear-gradient(90deg, rgba(221, 221, 3, 1) 83%, rgba(95, 154, 46, 0.8) 100%);
	color: #FFF;
	padding: 5px 12px;
}

.type-title {
	font-size: 1.3em;
}

.type-title-two {
	font-size: 1.3em;
	color: #FFF !important;
}

.the-gotham-book {
	font-family: 'Gotham Book' !important;
}

.sector-in {
	padding: 1em 12em;
}

.para-desc-alt {
	font-size: 1.2rem;
	font-family: 'GothamPro';
	font-weight: 100;
	color: #777777;
	letter-spacing: -.2px;
}

.text-onex-yellow {
	color: #dddd03 !important;
}

.text-onex-gray {
	color: #777777 !important;
}

.text-onex-blue {
	color: #1b2f4f !important;
}

.offer-mas {
	font-size: 30px !important;
}

.pad-offer {
	padding: 30px;
}

.form-control {
	border-radius: 0px;
}

.get-in-title {
	padding-top: 50px;
}

.get-icon {
	font-size: 35px;
	margin-top: -5px;
}

.social-foot {
	color: rgba(255, 255, 255, 0);
	-webkit-text-stroke: 1px #ffffff !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0);
	font-size: 3em;
}

.foot-next {
	font-size: 1.1em;
	font-family: "GothamPro";
	font-weight: 100;
}

.serv-title {
	font-size: 15px;
}

.serv-text {
	font-size: 12px;
}

#myBtn {
	/* Hidden by default */
	position: fixed;
	/* Fixed/sticky position */
	top: 20px;
	/* Place the button at the bottom of the page */
	right: 30px;
	/* Place the button 30px from the right */
	z-index: 99;
	/* Make sure it does not overlap */
	border: none;
	/* Remove borders */
	outline: none;
	/* Remove outline */

	cursor: pointer;
	/* Add a mouse pointer on hover */

	font-size: 18px;
	/* Increase font size */

}

#menu-gradient {
	position: fixed;
	z-index: 98;
	width: 200px;
	height: 200px;
	top: 0;
	right: 0;
	background: linear-gradient(45deg, rgba(34, 193, 195, 0) 50%, rgba(26, 26, 26, 0.5) 100%);
}

body {
	transition: background-color .5s;
}

#main {
	transition: margin-left .5s;

}



#myBtn>.row>.col-md-4>a {
	text-decoration: none;
	color: #FFF !important;
	/* Text color */
}

#myBtn>.row>.col-md-4 {
	text-decoration: none;
	color: #FFF !important;
	/* Text color */


}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	right: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	z-index: 99999;
}

.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 20px;
	color: #818181;
	display: block;
	transition: 0.3s;
}

.sidenav a:hover {
	color: #f1f1f1;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}