/* ========== Main Styles ========== */

html,
body {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Nunito', sans-serif;
	-webkit-font-smoothing: antialiased;
	background-color: #fff;
	color: rgba(0, 0, 0, 0.87);
}

h1,
h2,
h3,
h4,
title {
	font-family: 'Open Sans', sans-serif;
}

/* Disable selection with class "noMouseSelect" */
.noMouseSelect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Preload images */
body:after{
	position: absolute;
	z-index: -99;
	visibility: hidden;
	content: url(../img/drones/mavic2.png) url(../img/drones/phantom2.png) url(../img/drones/inspire2.png);
	height: 0;
	overflow: hidden;
}


/* ========== Header ========== */

header.header-main {
	width: 100%;
	height: 64px;
	background: transparent;
	position: fixed;
	top: 0;
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	z-index: 99;
	-webkit-transition: background 150ms ease-in-out;
	-moz-transition: background 150ms ease-in-out;
	-ms-transition: background 150ms ease-in-out;
	-o-transition: background 150ms ease-in-out;
	transition: background 150ms ease-in-out;
}

@media screen and (max-width: 640px) {

	header.header-main {
		height: 112px;
		background: #fff;
	}

}

@media screen and (max-width: 580px) {

	header.header-main {
		height: 64px;
	}

}

header.header-main:hover {
	background: #fff;
}

header.header-main.notTop {
	background: #fff;
}

.header-container {
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: flex-end;
	flex-direction: row;
	position: relative;
}

@media screen and (max-width: 1200px) {

	.header-container {
		padding: 0 16px;
		box-sizing: border-box;
	}

}

@media screen and (max-width: 580px) {

	.header-container {
		align-self: flex-start;
		padding-top: 2px;
	}

}

@media screen and (max-width: 640px) {

	.header-container {
		flex-direction: column;
	}

}

.resp-menu-trigger {	
	height: 36px;
	position: absolute;
	width: 36px;
	top: 14px;
	left: 10px;
	border-radius: 40px;

	display: none;
}

.resp-menu-trigger.resp-menu-open > div {
	transform: rotate(45deg);
	width: 16px;
	margin-left: 10px;
	height: 2px;
}

.resp-menu-trigger.resp-menu-open > div:before {
	transform: rotate(90deg);
	top: 0;
}

.resp-menu-trigger.resp-menu-open > div:after {
	opacity: 0
}


@media screen and (max-width: 580px) {

	.resp-menu-trigger {
		display: block;
	}

}

.resp-menu-trigger:hover,
.resp-menu-trigger:active {
	background: #eee;
}

.resp-menu-trigger > div {	
	background: #777;
	height: 3px;
	width: 22px;
	position: relative;
	border-radius: 40px;
	margin-top: 17px;
	margin-left: 7px;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.resp-menu-trigger > div:before {
	content: '';
	background: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
	top: -6px;
	border-radius: 40px;
}

.resp-menu-trigger > div:after {
	content: '';
	background: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
	top: 6px;
	border-radius: 40px;
}

.logo-container {
	align-self: center;
	height: 116px;
	width: 140px;
	position: absolute;
	left: 0;
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	background-image: url(../img/Aerostar_Productions_Logo_white.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

@media screen and (max-width: 1200px) {

	.logo-container {
		left: 16px;
	}

}

@media screen and (max-width: 640px) {

	.logo-container {
		top: 4px;
		position: inherit;
		left: 0;
		background-image: url(../img/Aerostar_Productions_Logo_black.png);
		opacity: .72;
	}

}

@media screen and (max-width: 580px) {

	.logo-container {
		transition: none;
		margin-top: -32px;
	}

}

header.header-main:hover .logo-container,
header.header-main.notTop .logo-container {
	background-image: url(../img/Aerostar_Productions_Logo_black.png);
	opacity: .72;
}

.main-navigation {
	align-self: center;
	list-style: none;
	display: inline-flex;
	margin-right: 30px;
	vertical-align: center
}

@media screen and (max-width: 640px) {

	.main-navigation {
		width: 100%;
		justify-content: space-around;
		margin-right: 0;
	}

}

@media screen and (max-width: 580px) {

	.main-navigation {
		background: #fff;
		position: absolute;
		overflow: hidden;
		width: 130px;
		left: 12px;
		top: 72px;
		flex-wrap: wrap;
		justify-content: flex-start;
		-webkit-transition: all 100ms ease-in-out;
		-moz-transition: all 100ms ease-in-out;
		-ms-transition: all 100ms ease-in-out;
		-o-transition: all 100ms ease-in-out;
		transition: all 100ms ease-in-out;
	}

	.main-navigation.resp-menu-closed {
		height: 0;
	}

	.main-navigation.resp-menu-open {
		height: 147px;
		box-shadow: 0 0 4px rgba(0,0,0,.15);
		padding: 8px 16px;
	}

}

@media screen and (max-width: 460px) {

	.main-navigation {
		font-size: 15px;
	}

}

.main-navigation a {
	text-decoration: none;
	display: block;
	color: rgba(0, 0, 0, 0.87);
	color: #fff;
	padding: 23px 16px;
	font-weight: 600;
	box-sizing: border-box;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

@media screen and (max-width: 640px) {

	.main-navigation a {
		color: rgba(0, 0, 0, 0.87);
	}

}

@media screen and (max-width: 580px) {

	.main-navigation a {
		padding: 16px 8px;
	}

}

header.header-main:hover .main-navigation a,
header.header-main.notTop .main-navigation a {
	color: rgba(0, 0, 0, 0.87);
}

header.header-main:hover .main-navigation:hover li>a {
	color: #919699;
}

@media screen and (max-width: 640px) {

	.main-navigation:hover li>a {
		color: #919699;
	}

}

header.header-main:hover .main-navigation:hover li:hover>a {
	color: #303233;
}

.language-selector-container {
	align-self: center;
	height:48px;
	width: 68px;
}

@media screen and (max-width: 640px) {

	.language-selector-container {
		position: absolute;
		top: 6px;
		right: 16px;
	}

}

@media screen and (max-width: 380px) {

	.language-selector-container {
		top: 8px;
	}

}

.language-selector-container .lang-flag img {
	width: 26px;
	height: 26px;
	border: 2px solid #eee;
	border-radius: 50%;
	float: left;
	margin-top: 8px;
}

.language-selector-container .lang-toggle-main {
	float: right;
	color: #eee;
	border-radius: 50px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 48px;
	margin-top: 8px;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

@media screen and (max-width: 640px) {

	.language-selector-container .lang-toggle-main {
		color: #777;
	}

}

header.header-main:hover .language-selector-container .lang-toggle-main,
header.header-main.notTop .language-selector-container .lang-toggle-main {
	color: #777;
}

.language-selector-container .lang-toggle-main:hover {
	background: #eee;
	cursor: pointer;
}

.lang-menu-container {
	background: #fff;
	box-shadow: 0 0 4px rgba(0,0,0,.15);
	transition: all .3s ease-out;
	position: absolute;
	top: 64px;
	padding: 6px 0;
}

@media screen and (max-width: 1200px) {

	.lang-menu-container {
		right: 16px;
	}

}

@media screen and (max-width: 640px) {

	.lang-menu-container {
		right: -6px;
	}

}

.lang-menu-container.lang-menu-closed {
	display: none;
}

.lang-menu-container a {
	text-decoration: none;
}

.lang-menu-container .lang-item {
	width: 87px;
	padding: 10px 12px;
	color: rgba(0, 0, 0, 0.64);
	font-weight: 600;
}

.lang-menu-container .lang-item:hover,
.lang-menu-container .lang-item:focus {
	background: #eee;
}


/* ========== Main top section ========== */

section.main-top-container {
	background-image: url(../img/bg0.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 720px;
	position: relative;
	margin-top: -74px;
	text-align: center;
}

@media screen and (max-width: 999px) {

	section.main-top-container {
		height: 540px;
	}

}

@media screen and (max-width: 580px) {

	section.main-top-container {
		height: 440px;
		background: #fff;
	}

}

@media screen and (max-width: 380px) {

	section.main-top-container {
		height: 404px;
	}

}

section.main-top-container .banner-overlay {
	background: linear-gradient(118deg, rgb(59 155 255 / 42%) 5%,rgb(255 116 34 / 42%) 98%);
	height: 100%;
	width: 100%;
	position: absolute;
}

@media screen and (max-width: 580px) {

	section.main-top-container .banner-overlay {
		height: 100%;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) -8%,rgba(255, 255, 255, 0) 100%,rgba(255, 255, 255,1) 100%);
	}

}

section.main-top-container h1,
section.main-top-container h3 {
	position: relative;
	color: #fff;
}

section.main-top-container h1 {
	padding-top: 274px;
	font-size: 72px;
	margin-bottom: 0;
	opacity: .52;
}

@media screen and (max-width: 999px) {

	section.main-top-container h1 {
		padding-top: 196px;
		font-size: 80px;
		padding-left: 16px;
		padding-right: 16px;
	}	

}

@media screen and (max-width: 910px) {

	section.main-top-container h1 {
		padding-top: 136px;
		padding-left: 42px;
		padding-right: 42px;
	}

}

@media screen and (max-width: 640px) {

	section.main-top-container h1 {
		padding-top: 176px;
		font-size: 60px;
		padding-left: 24px;
		padding-right: 24px;
	}

}

@media screen and (max-width: 580px) {

	section.main-top-container h1 {
		padding-top: 212px;
		font-size: 42px;
		color: rgba(0, 0, 0, 0.87);
		opacity: 1;
	}

}

@media screen and (max-width: 493px) {

	section.main-top-container h1 {
		padding-top: 152px;
		color: #fff;
		background: linear-gradient(-45deg, #425fff 0%, #c644fd 100%);
		-webkit-background-clip: text;
		-moz-background-clip: text;
		-o-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		font-size: 52px;
	}

}

@media screen and (max-width: 410px) {

	section.main-top-container h1 {
		font-size: 36px;
	}

}

@media screen and (max-width: 380px) {

	section.main-top-container h1 {
		padding-top: 164px;
	}

}

@media screen and (max-width: 320px) {

	section.main-top-container h1 {
		font-size: 32px;
		padding-left: 16px;
		padding-right: 16px;
	}

}

section.main-top-container h3 {
	font-weight: 600;
	margin-bottom: 42px;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: rgb(255 255 255 / 92%);
}

@media screen and (max-width: 820px) {

	section.main-top-container h3 {
		letter-spacing: 0.28em;
		font-size: 18px;
		padding-top: 12px;
	}

}

@media screen and (max-width: 580px) {

	section.main-top-container h3 {
		font-size: 17px;
		margin-bottom: 32px;
		color: rgba(0, 0, 0, 0.64);
		line-height: 20px;
		padding: 6px 16px;
		padding-bottom: 0;
	}

}

@media screen and (max-width: 320px) {

	section.main-top-container h3 {
		padding: 0 16px;
		line-height: 20px;
		margin-bottom: 32px;
	}

}

section.main-top-container a.reel-modal-btn {
	position: relative;
	text-align: center;
	background: linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%);
	line-height: 52px;
	padding: 10px 18px;
	border-radius: 37px;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
}

@media screen and (max-width: 493px) {
	
	section.main-top-container a.reel-modal-btn {
		background: linear-gradient(-45deg, #425fff 0%, #c644fd 100%);
		color: #fff;
	}
	
}

section.main-top-container a.reel-modal-btn:hover {
	cursor: pointer; /* ? */
}

section.main-top-container a.reel-modal-btn:active {
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.26);
}

.cta-arrow-container {
	position: absolute;
	width: 300px;
	height: 100px;
	display: inline-flex;
	align-items: flex-end;
	margin-top: 26px;
	margin-left: 16px;
}

@media screen and (max-width: 880px) {

	.cta-arrow-container {
		display: none;
	}

}

.cta-arrow-container .arrow {
	background-image: url(../img/arrow.png);
    height: 100px;
    width: 100px;
    background-size: cover;
    transform: rotate(246deg);
}

.cta-arrow-container span {
	font-family: 'Indie Flower', cursive;
    color: #fff;
    font-size: 26px;
	transform: rotate(-4deg);
	margin-bottom: 15px;
	margin-left: 10px;
}


/* ========== Services section ========== */

section.services-secion {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding-top: 72px;
	margin-top: -62px;
}

@media screen and (max-width: 640px) and (min-width: 580px) {

	section.services-secion {
		padding-top: 90px;
		margin-top: -90px;
	}

}

section.services-secion h3 {
	display: block;
	width: 100%;
	max-width: 1200px;
	align-self: center;
	background: #eee;
	margin-top: 44px;
}

@media screen and (max-width: 1200px) {

	section.services-secion h3 {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

section.services-secion h3 span {
	background: #fff;
	padding-right: 8px;
}


/* Grid structure */

section.services-secion .grid-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 30px 0;
	margin-top: 15px;
	height: 390px;
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	position: relative;
	align-self: center;
}

@media screen and (max-width: 1200px) {

	section.services-secion .grid-1200 {
		padding: 0 16px;
		box-sizing: border-box;
		margin-bottom: 40px;
	}

}

@media screen and (max-width: 640px) {

	section.services-secion .grid-1200 {
		display: flex;
		flex-direction: column;
		height: 624px;
	}

}

section.services-secion .left-card,
section.services-secion .center-card,
section.services-secion .right-card {
	height: 100%;
	width: calc(100% / 3 - 7px);
	position: relative;
}

section.services-secion .center-card {
	margin: 0 14px;
}

@media screen and (max-width: 640px) {
	
	section.services-secion .left-card,
	section.services-secion .center-card,
	section.services-secion .right-card {
		height: 100%;
		width: 100%;
		position: relative;
		margin-bottom: 8px;
	}

	section.services-secion .center-card {
		margin: 0;
		margin-bottom: 8px;
	}

}

section.services-secion .card-service-1,
section.services-secion .card-service-2,
section.services-secion .card-service-3 {
	width: 100%;
	height: 100%;
	background: #eee;
	-webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	border-radius: 20px;
}

section.services-secion .card-service-1::after,
section.services-secion .card-service-2::after,
section.services-secion .card-service-3::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	opacity: 0;
	transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	border-radius: 20px;
}

@media screen and (max-width: 490px){
	
	section.services-secion .card-service-1,
	section.services-secion .card-service-2,
	section.services-secion .card-service-3 {
		border-radius: 8px;
	}
	
	section.services-secion .card-service-1::after,
	section.services-secion .card-service-2::after,
	section.services-secion .card-service-3::after {
		border-radius: 8px;
	}
	
}

section.services-secion .card-service-1:hover::after,
section.services-secion .card-service-2:hover::after,
section.services-secion .card-service-3:hover::after {
	opacity: 1;
}

section.services-secion .card-service-1:hover,
section.services-secion .card-service-2:hover,
section.services-secion .card-service-3:hover {
	cursor: pointer;
	-webkit-transform: scale(1.02, 1.02);
	transform: scale(1.02, 1.02);
}

section.services-secion .card-service-1 h4,
section.services-secion .card-service-2 h4,
section.services-secion .card-service-3 h4 {
	position: absolute;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	bottom: 0;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 42px;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.52) 100%);
	border-radius: 20px;
}

@media screen and (max-width: 490px){
	
	section.services-secion .card-service-1 h4,
	section.services-secion .card-service-2 h4,
	section.services-secion .card-service-3 h4 {
		border-radius: 8px;
	}
	
}


/* Service card 1 */

section.services-secion .card-service-1 {
	*background-image: -webkit-linear-gradient(left top, rgba(42, 181, 200, 0) 0%, rgb(42, 181, 200) 100%), -webkit-linear-gradient(right top, rgba(221, 219, 230, 0) 0%, rgb(221, 219, 230) 100%), -webkit-linear-gradient(left bottom, rgba(134, 126, 112, 0) 0%, rgb(134, 126, 112) 100%), -webkit-linear-gradient(right bottom, rgba(62, 59, 40, 0) 0%, rgb(62, 59, 40) 100%);
	background-image: linear-gradient(78deg, rgba(32,38,33,1) 0%, rgba(68,65,26,1) 100%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}


/* Service card 2 */

section.services-secion .card-service-2 {
	*background-image: -webkit-linear-gradient(left bottom, rgba(169, 183, 192, 0) 0%, rgb(169, 183, 192) 100%), -webkit-linear-gradient(left top, rgba(104, 121, 152, 0) 0%, rgb(104, 121, 152) 100%), -webkit-linear-gradient(right bottom, rgba(241, 218, 169, 0) 0%, rgb(241, 218, 169) 100%), -webkit-linear-gradient(right top, rgba(59, 92, 128, 0) 0%, rgb(59, 92, 128) 100%);
	background-image: linear-gradient(7deg, rgba(26,26,34,1) 0%, rgba(219,156,88,1) 96%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}


/* Service card 3 */

section.services-secion .card-service-3 {
	*background-image: -webkit-linear-gradient(left top, rgba(70, 48, 43, 0) 0%, rgb(70, 48, 43) 100%), -webkit-linear-gradient(left bottom, rgba(125, 88, 70, 0) 0%, rgb(125, 88, 70) 100%), -webkit-linear-gradient(right bottom, rgba(158, 120, 95, 0) 0%, rgb(158, 120, 95) 100%), -webkit-linear-gradient(right top, rgba(183, 156, 146, 0) 0%, rgb(183, 156, 146) 100%);
	background-image: radial-gradient(circle, rgba(222,214,188,1) 0%, rgba(47,194,194,1) 93%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}


/**/

.modal {
	will-change: visibility, opacity;
	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;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal--active {
	visibility: visible;
	opacity: 1;
}

.modal__bg {
	*background: rgba(0, 0, 0, 0.32);
}

.modal__dialog {
	max-width: 600px;
	padding: 30px;
}

@media screen and (max-height: 600px) {

	.modal__dialog {
		max-height: 96%;
	}

}

@media screen and (max-width: 640px) {

	.modal__dialog {
		padding: 8px;
	}

}

@media screen and (max-width: 410px) {

	.modal__dialog {
		height: calc(100% - 120px);
		align-items: center;
		display: flex;
	}

}

.modal__content {
	will-change: transform, opacity;
	position: relative;
	padding: 30px;
	*height: 600px;
	padding-bottom: 82px;
	background: #fafafa;
	background-clip: padding-box;
	-webkit-box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
	box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
	opacity: 0;
	-webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 999999;
	overflow: auto;
	border-radius: 5%;
}

@media screen and (max-width: 580px) {

	.modal__content {
		padding-left: 8px;
		padding-right: 8px;
	}

}

@media screen and (max-width: 490px) {

	.modal__content {
		border-radius: 8px;
	}

}

@media screen and (max-width: 460px) {

	.modal__content {
		padding-left: 0;
		padding-right: 0;
		
		max-height: 580px;
	}

}

@media screen and (max-width: 410px) {

	.modal__content {
		max-height: calc(100% - 114px);
	}

}

.modal__content--active {
	opacity: 1;
}

.modal__close {
	z-index: 1100;
	cursor: pointer;
}

.modal__trigger {
	cursor: pointer;
	z-index: 98;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal__trigger--active {
	z-index: 100;
}

#modal__temp {
	will-change: transform, opacity;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;

	background: #fafafa;

	-webkit-transform: none;
	transform: none;
	opacity: 1;
	-webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 5%;
}

@media screen and (max-width: 490px) {

	#modal__temp {
		border-radius: 2%;
	}

}

#modal__temp.closing-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

@media screen and (max-width: 999px) {

	#modal__temp.closing-bg {
		background-position: bottom center;
	}

}

@media screen and (max-width: 640px) {

	#modal__temp.closing-bg {
		background-position: center center;
	}

}



/* Close btn */
.demo-close {
	position: absolute;
	top: 0;
	right: 0;
	margin: 12px;
	padding: 8px;
	border-radius: 50%;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close svg {
	width: 24px;
	fill: rgba(0,0,0,0.42);
	pointer-events: none;
	vertical-align: top;
}

.demo-close:hover {
	background: rgba(0,0,0,0.2);
}


.modal-overlay {
	background: rgba(0,0,0,0.32);
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 99;
	pointer-events: none;
	-webkit-transition: opacity 150ms ease-out, -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 150ms ease-out, -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 150ms ease-out, transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 150ms ease-out, transform 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition-delay: 40ms;
	transition-delay: 40ms;
}


/* Modal content */

.modal__content {
	text-align: center;
}

.modal__content h1 {
	text-align: center;
	max-width: 80%;
	margin: 8px auto;
	padding-bottom: 20px;
	padding-top: 8px;
	line-height: 38px;
	font-weight: 600;
}

@media screen and (max-width: 460px) {

	.modal__content h1 {
		font-size: 26px;
		line-height: 34px;
	}

}

.modal__content p {
	line-height: 23px;
	font-size: 17px;
	padding: 0 22px;
	text-align: left;
}

.modal__content a.modal-cta {
	background: linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%);
	background: linear-gradient(45deg, #00fe9e 30%, #acff3d );
	padding: 10px 20px;
	border-radius: 37px;
	color: #494949;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
	*line-height: 84px;
	cursor: pointer;
	text-decoration: none;
}

#modal2 .modal__content a.modal-cta {
	background: linear-gradient(45deg, #ff4455 30%, #dc0d76);
	color: #fff;
}

.modal__content .gallery-widget {
	height: 104px;
	border-radius: 12px;
	border: 1px solid #d0d0d0;
	margin: 32px 22px 0 22px;
	display: inline-flex;
	width: calc(100% - 46px);
	flex-wrap: nowrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	position: relative;
	cursor: pointer;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
}

.modal__content .gallery-widget:active {
	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 26%);
}

.modal__content .gallery-widget img {
	object-fit: cover;
	width: 94px;
	height: 94px;
	padding: 6px 12px 6px 0;
	box-sizing: border-box;
	margin-top: 4px;
}

.modal__content .gallery-widget .img-container {
	padding-left: 12px;
}

@media screen and (max-width: 460px) {
	
	.modal__content .gallery-widget {
		width: calc(100% - 52px);
		height: 84px;
	}

	.modal__content .gallery-widget .img-container {
		display: flex;
		padding-left: 8px;
	}
	
	.modal__content .gallery-widget img {
		height: 84px;
		width: 84px;
		margin-top: 0;
		padding: 6px 8px 6px 0;
	}
	
	.modal__content .gallery-widget img:last-child {
		display: none;
	}

}

.modal__content .gallery-widget .viewmore-text {
	padding: 0 24px;
	background: linear-gradient(90deg, rgba(250,250,250,0) 0%, rgb(250 250 250) 22%);
	height: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	position: absolute;
	right: 0;
	padding-left: 52px;
	font-weight: 700;
	color: #888;
	font-size: 14px;
}










/* ========== Drones section ========== */

section.drones-secion {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding-top: 62px;
	margin-top: -62px;
}

@media screen and (max-width: 640px) and (min-width: 580px) {

	section.drones-secion {
		padding-top: 110px;
		margin-top: -110px;
	}

}

/* Grid structure */

section.drones-secion h3 {
	display: block;
	width: 100%;
	max-width: 1200px;
	align-self: center;
	background: #eee;
}

@media screen and (max-width: 1200px) {

	section.drones-secion h3 {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

section.drones-secion h3 span {
	background: #fff;
	padding-right: 8px;
}

section.drones-secion .grid-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 30px 0;
	min-height: 300px;
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	position: relative;
	align-self: center;
}

@media screen and (max-width: 842px) {

	section.drones-secion .grid-1200 {
		flex-wrap: wrap;
	}

}

@media screen and (max-width: 580px) {

	section.drones-secion .grid-1200 {
		flex-direction: column;
	}

}

section.drones-secion .drone-card {
	height: 100%;
	width: calc(100% / 3);
	text-align: center;
}

@media screen and (max-width: 842px) {

	section.drones-secion .drone-card {
		min-width: calc(50% - 16px);
		margin-bottom: 18px;
	}

}

@media screen and (max-width: 580px) {

	section.drones-secion .drone-card {
		width: 100%;
	}

}

section.drones-secion .drone-card:nth-child(2) {
	margin: 0 15px;
}

@media screen and (max-width: 580px) {

	section.drones-secion .drone-card:nth-child(2) {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 18px;
	}

}

section.drones-secion .drone-card .droneImg {
	margin-bottom: 12px;
	height: 150px;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

section.drones-secion .drone-card .drone1 {
	background-image: url(../img/drones/mavic.png);
}

section.drones-secion .drone-card .drone1:hover {
	background-image: url(../img/drones/mavic2.png);
}

section.drones-secion .drone-card .drone2 {
	background-image: url(../img/drones/phantom.png);
}

section.drones-secion .drone-card .drone2:hover {
	background-image: url(../img/drones/phantom2.png);
}

section.drones-secion .drone-card .drone3 {
	background-image: url(../img/drones/inspire.png);
}

section.drones-secion .drone-card .drone3:hover {
	background-image: url(../img/drones/inspire2.png);
}

section.drones-secion .drone-card .drone-name {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 8px 0;
}

section.drones-secion .drone-card .drone-description {
	font-size: 16px;
	line-height: 22px;
	max-width: 72%;
	margin: 0 auto;
	color: rgba(0, 0, 0, 0.52);
	padding: 4px 8px;
}

section.drones-secion .drones-info {
	width: 100%;
	max-width: 1200px;
	align-self: center;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.64);
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	z-index: 9;
	background: #f7f8f9;
	padding: 42px 0;
	margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {

	section.drones-secion .drones-info {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

@media screen and (max-width: 842px) {

	section.drones-secion .drones-info {
		padding: 42px 24px;
		box-sizing: border-box;
		font-size: 13px;
	}

}

section.drones-secion .drones-info i {
	font-size: 22px;
	padding-right: 6px;
}

section.drones-secion .drones-info span {
	padding-top: 4px;
}

@media screen and (max-width: 842px) {

	section.drones-secion .drones-info span {
		line-height: 20px;
		padding-top: 1px;
	}

}

@media screen and (max-width: 640px) {

	section.drones-secion .drones-info span {
		text-align: left;
		padding-left: 16px;
	}

}

section.drones-secion .drones-info a {
	text-decoration: none;
	color: #2196F3;
	font-weight: 700;
	border-bottom: 1px dashed;
}

section.drones-secion .drones-info a:hover {
	border-bottom-style: solid;
	border-bottom-color: transparent;
}

section.drones-secion .drones-info a:active {
	color: #1976D2;
	border-bottom-style: solid;
	border-bottom-color: transparent;
}


/* ========== About section ========== */

section.about-section {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;

	padding-top: 90px;
	margin-top: -62px;
}

@media screen and (max-width: 640px) and (min-width: 580px) {

	section.about-section {
		padding-top: 110px;
		margin-top: -110px;
	}

}

section.about-section h3 {
	display: block;
	width: 100%;
	max-width: 1200px;
	align-self: center;
	background: #eee;
	margin-bottom: 8px;
}

@media screen and (max-width: 1200px) {

	section.about-section h3 {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

section.about-section h3 span {
	background: #fff;
	padding-right: 8px;
	text-transform: uppercase;
}

section.about-section .grid-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 30px 0;
	min-height: 200px;
	display: inline-flex;
	flex-direction: column;
	position: relative;
	align-self: center;
}

@media screen and (max-width: 1200px) {

	section.about-section .grid-1200 {
		box-sizing: border-box;
		padding: 0 16px;
	}

}

section.about-section .about-text {
	max-width: 840px;
	font-size: 17px;
	line-height: 24px;
	margin: 0 auto;
	color: rgba(0, 0, 0, 0.87);
	padding: 4px 8px;
}

section.about-section .about-info-container {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 12px 0 0 0;
}

.about-info-container .info-item {
	text-align: center;
	background: #f7f8f9;
	padding: 42px 0;
	box-sizing: border-box;
	flex-grow: 1;
	margin: 0 4px;
}

@media screen and (max-width: 410px) {

	.about-info-container .info-item {
		margin-left: 0;
		padding: 32px 2px;
	}

}


.about-info-container .info-item:first-child {
	margin-left: 0;
}

@media screen and (max-width: 410px) {

	.about-info-container .info-item:first-child {
		margin-bottom: 8px;
	}

}


.about-info-container .info-item:last-child {
	margin-right: 0;
}

@media screen and (max-width: 842px) {

	.about-info-container .info-item:last-child {
		margin-top: 8px;
		margin-left: 0;
		margin-right: 4px;
	}

}

@media screen and (max-width: 580px) {

	.about-info-container .info-item:nth-child(3) {
		margin-top: 8px;
		order: 4;
	}

	.about-info-container .info-item:last-child {
		margin-left: 0;
		order: 3;
	}

}

@media screen and (max-width: 460px) {

	.about-info-container .info-item:nth-child(3) {
		margin-left: 0;
	}

}

.about-info-container .info-item-number {
	font-size: 42px;
	color: rgba(0, 0, 0, 0.64);
	font-family: 'Open Sans', sans-serif;
}

.about-info-container .info-item-number small {
	font-weight: 600;
	vertical-align: top;
	padding-right: 4px;
	line-height: 48px;
}

.about-info-container .info-item-text {
	padding-top: 4px;
	font-weight: 700;
	font-size: 15px;
	color: rgba(0, 0, 0, 0.32);
	padding-left: 12px;
	padding-right: 12px;
}


/* ========== Clients section ========== */

section.clients-section {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;

	padding-top: 62px;
	margin-top: -62px;
}

@media screen and (max-width: 640px) and (min-width: 580px) {

	section.clients-section {
		padding-top: 110px;
		margin-top: -110px;
	}

}

section.clients-section h3 {
	display: block;
	width: 100%;
	max-width: 1200px;
	align-self: center;
	background: #eee;
}

@media screen and (max-width: 1200px) {

	section.clients-section h3 {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}


section.clients-section h3 span {
	background: #fff;
	padding-right: 8px;
	text-transform: uppercase;
}

section.clients-section .grid-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 32px 0;
	min-height: 200px;
	display: inline-flex;
	flex-direction: column;
	position: relative;
	align-self: center;
	margin-bottom: 0;
}

@media screen and (max-width: 1200px) {

	section.clients-section .grid-1200 {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

section.clients-section h4 {
	font-size: 17px;
	font-weight: normal;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.87);
	margin-top: 0;
	margin-bottom: 14px;
}

@media screen and (max-width: 640px) {

	section.clients-section h4 {
		font-size: 16px;
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

section.clients-section .logosContainer {
	width: 100%;
    height: 240px;
    display: inline-flex;
    justify-content: center;
    flex-direction: row;
    position: relative;
	align-items: center;
}

section.clients-section .logosContainer .clientLogo {
	width: calc(100% / 5);
}

section.clients-section .logosContainer .clientLogo img {
    width: calc(100% - 80px);
    padding: 40px
}

section.clients-section .logosContainer .clientLogo#client1 img,
section.clients-section .logosContainer .clientLogo#client5 img {
    opacity: .52;
}

.logoSlider{
	width: 100%;
}

.logoSlider.slick-initialized .logo {
	height: 240px;
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	position: relative;
	align-items: center;
	outline: none;
}

.logo img{
	width: calc(100% - 80px);
	padding: 40px;
}

@media screen and (max-width: 640px) {

	.logoSlider.slick-initialized .logo {
		height: 160px;
	}
	
	.logo img{
	width: calc(100% - 40px);
	padding: 20px;
	}

}



/* ========== Contact section ========== */

section.contact-section {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;

	padding-top: 62px;
	margin-top: -62px;
}

@media screen and (max-width: 640px) and (min-width: 580px) {

	section.contact-section {
		padding-top: 110px;
		margin-top: -110px;
	}

}

section.contact-section h3 {
	display: block;
	width: 100%;
	max-width: 1200px;
	align-self: center;
	background: #eee;
}

@media screen and (max-width: 1200px) {

	section.contact-section h3 {
		margin-left: 16px;
		margin-right: 16px;
		width: calc(100% - 32px);
	}

}

section.contact-section h3 span {
	background: #fff;
	padding-right: 8px;
	text-transform: uppercase;
}

section.contact-section .grid-1200 {
	width: 100%;
	max-width: 1200px;
	margin: 32px 0;
	min-height: 300px;
	display: inline-flex;
	flex-direction: column;
	position: relative;
	align-self: center;
}

@media screen and (max-width: 842px) {

	section.contact-section .grid-1200 {
		box-sizing: border-box;
		padding: 0 16px;
	}

}

section.contact-section h4 {
	text-align: center;
	width: 100%;
	max-width: 480px;
	font-size: 18px;
	margin: 0 auto;
	margin-bottom: 8px;
	color: rgba(0, 0, 0, 0.87);
	padding: 8px;
	font-weight: 600;
}

@media screen and (max-width: 460px) {

	section.contact-section h4 {
		max-width: 100%;
		width: initial;
	}

}

section.contact-section p {
	text-align: center;
	width: 100%;
	max-width: 840px;
	font-size: 16px;
	line-height: 22px;
	margin: 0 auto;
	color: rgba(0, 0, 0, 0.87);
	padding: 4px 8px;
}

@media screen and (max-width: 460px) {

	section.contact-section p {
		max-width: 100%;
		width: initial;
	}

}

section.contact-section .contact-info {
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	position: relative;
	align-items: center;
}

@media screen and (max-width: 580px) {

	section.contact-section .contact-info {
		justify-content: space-around;
	}

}

@media screen and (max-width: 425px) {

	section.contact-section .contact-info {
		flex-direction: column;
	}

}

section.contact-section .contact-info > div {
	margin: 50px 40px 30px 40px;
	display: inline-flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.42);
}

@media screen and (max-width: 580px) {

	section.contact-section .contact-info > div {
		margin: 40px 16px 30px 16px;
	}

}

@media screen and (max-width: 460px) {

	section.contact-section .contact-info > div {
		margin: 40px 8px 30px 8px;
	}

}

@media screen and (max-width: 425px) {

	section.contact-section .contact-info > div:first-child {
		margin-bottom: 0;
	}

	section.contact-section .contact-info > div:last-child {
		margin-top: 24px;
	}

}

@media screen and (max-width: 425px) {

	section.contact-section .contact-info .phone {
		background: #2196F3;
		background: linear-gradient(45deg,#2196F3,#03A9F4);
		padding: 4px 8px;
		border-radius: 20px;
	}

}

section.contact-section .contact-info > div a {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.42);
}

@media screen and (max-width: 425px) {

	section.contact-section .contact-info .phone a {
		color: #fff;
		padding-right: 8px;
		padding-left: 4px;
	}

}

section.contact-section .contact-info > div > i {
	padding-right: 8px;
	color: rgba(0, 0, 0, 0.42);
}

@media screen and (max-width: 425px) {

	section.contact-section .contact-info .phone i {
		color: rgba(255, 255, 255, 0.52);
	}

}

section.contact-section .contact-form {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
	margin-top: 15px;
}

section.contact-section .contact-form label {
	margin-top: 15px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.87);
	font-weight: 600;
}

section.contact-section .contact-form label span {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.42);
	padding-left: 4px;
	float: right;
	margin-top: 2px;
}

section.contact-section .contact-form input,
section.contact-section .contact-form textarea {
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-top: 3px;
}

section.contact-section .contact-form input {
	height: 38px;
	padding: 4px 8px;
}

section.contact-section .contact-form textarea {
	height: 142px;
	padding: 8px;
	max-width: 840px;
	box-sizing: border-box;
}


section.contact-section .contact-form .submit-button {
	margin: 0 auto;
	margin-top: 30px;
	position: relative;
	border: none;
	text-align: center;
	background: linear-gradient(45deg, #00fe9e 30%, #acff3d );
	line-height: 52px;
	border-radius: 37px;
	color: #494949;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
	width: fit-content;
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
}

section.contact-section .contact-form .submit-button:active {
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.26);
}


/* ========== Footer ========== */

footer {
	margin-top: 30px;
	background: #272727;
	width: 100%;
	min-height: 100px;
	position: relative;
}

@media screen and (max-width: 1080px) {

	footer {
		min-height: 120px;
	}

}

@media screen and (max-width: 860px) {

	footer {
		min-height: 150px;
	}

}

section.main-footer-container {
	color: #616466;
	font-size: 14px;
	font-weight: 600;
}

@media screen and (max-width: 460px) {

	footer {
		min-height: 150px;
	}
	
	section.main-footer-container {
		height: 164px;
	}

}

section.main-footer-container #footer-line-sep {
	display: none;
}

@media screen and (max-width: 460px) {

	section.main-footer-container #footer-line-sep {
		display: block;
	}

}

section.main-footer-container .copiright {
	height: 100%;
	max-width: calc(100% - 216px);
	position: absolute;
	line-height: 102px;
	padding: 0 42px;
	box-sizing: border-box;
}

@media screen and (max-width: 1280px) {

	section.main-footer-container .copiright {
		padding: 0 30px;
		font-size: 13px;
	}

}

@media screen and (max-width: 1080px) {

	section.main-footer-container .copiright {
		width: 100%;
		max-width: 100%;
		text-align: center;
		bottom: 0;
		height: 42px;
		line-height: normal;
	}

}

@media screen and (max-width: 860px) {

	section.main-footer-container .copiright {
		height: 62px;
	}

}

section.main-footer-container .copiright span a {
	color: #616466;
	text-decoration: none;
}

section.main-footer-container .copiright span a:hover {
	color: #898a8b;
	text-decoration: underline;
}

section.main-footer-container .copiright b {
	color: #808284;
	padding-right: 16px;
}

@media screen and (max-width: 460px) {

	section.main-footer-container .copiright {
		height: 78px;
		font-size: 13px;
		padding: 0 16px;
		display: block;
		line-height: 20px;
	}
	
	section.main-footer-container .copiright b {
		padding: 10px;
		font-size: 12px;
	}
	
	section.main-footer-container .copiright span {
		display: block;
		padding-left: 0 !important;
	}

}

section.footer-links {
	height: 34px;
	line-height: 34px;
	padding-left: 42px;
	background: #131313;
}

section.footer-links b {
	padding-right: 16px;
	font-size: 14px;
}

@media screen and (max-width: 460px) {
	
	section.footer-links {
		height: 84px;
		line-height: 26px;
		padding: 10px 20px;
		background: #131313;
	}
	
	section.footer-links b {
		padding-right: 14px;
	}
	
	section.footer-links b:after {
		content: "•";
		color: #272727;
		padding-left: 14px;
	}
	
	section.footer-links b:last-child:after {
		content: "";
	}

}

section.footer-links b a {
	text-decoration: none;
	color: #616466;
	font-weight: 500;
}

section.footer-links b a:hover {
	color: #808284;
}

section.main-footer-container .social {
    height: 100%;
    width: 216px;
    position: absolute;
    padding: 0 42px;
    box-sizing: border-box;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (max-width: 1080px) {

	section.main-footer-container .social {
		width: 100%;
		position: relative;
		justify-content: center;
		height: 52px;
		align-items: flex-end;
	}

}

section.main-footer-container .social span {
    margin-left: 24px;
	display: inline-block;
}

section.main-footer-container .social span:first-child {
    margin-left: 0;
}

section.main-footer-container .social span a {
    display: block;
    vertical-align: middle;
}

section.main-footer-container .social span img {
    vertical-align: middle;
    height: 18px;
    display: block;
}



/* ========== Legal docs ========== */


h1.legalTitle {
	background: linear-gradient(45deg, #131313 30%, #272727);
	height: 92px;
	padding-top: 120px;
	margin-top: 0;
	text-align: center;
	font-weight: 300;
	color: #fff;
	font-size: 28px;
}

@media screen and (max-width: 580px) {

	h1.legalTitle {
		line-height: 1.3;
		font-size: 24px;
		padding-left: 16px;
		padding-right: 16px;
		height: 100px;
		padding-top: 100px;
	}

}

.fixed-info {
	background: linear-gradient(45deg,#2196F3,#03A9F4);
	color: white;
	height: 32px;
	width: 100%;
	text-align: center;
	line-height: 32px;
	font-weight: 600;
	margin-top: -1.2em;
}

.fixed-info span:nth-child(even) {
	opacity: 0.32;
	font-size: 14px;
}

.fixed-info.stickyBar {
	position: fixed;
    top: 64px;
    margin-top: 0;
}

section.legalText-main {
	margin: 0 auto;
	max-width: 1200px;
	padding-top: 24px;
	line-height: 1.2;
}

@media screen and (max-width: 1280px) {

	section.legalText-main {
		padding: 16px;
	}

}

section.legalText-main h1 {
	margin-top: 32px;
	font-size: 26px;
	text-align: center;
	font-weight: 600;
}

section.legalText-main h2 {
    display: block;
    width: 100%;
    max-width: 1200px;
    align-self: center;
    background: #eee;
    margin-bottom: 8px;
	font-size: 1.17em;
	margin: 32px 0;
}

@media screen and (max-width: 1280px) {

	section.legalText-main h2 {
		line-height: 1.3;
	}

}

section.legalText-main h2 span {
    background: #fff;
    padding-right: 8px;
    text-transform: uppercase;
}

section.legalText-main h3 {
    font-size: 18px;
	padding-top: 8px;
}

section.legalText-main h4 {
	margin-bottom: 10px;
	margin-top: 28px;
}

section.legalText-main a {
	text-decoration: none;
	color: #277cbf;
	font-weight: 600;
}

section.legalText-main a:hover {
	color: #2196F3;
}


/* Table */

section.legalText-main table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

section.legalText-main table tr {
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: .35em;
}

section.legalText-main table th,
section.legalText-main table td {
  padding: .625em;
  text-align: center;
}

section.legalText-main table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  section.legalText-main table {
    border: 0;
  }

  section.legalText-main table caption {
    font-size: 1.3em;
  }
  
  section.legalText-main table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  section.legalText-main table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  section.legalText-main table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  section.legalText-main table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  section.legalText-main table td:last-child {
    border-bottom: 0;
  }
}