/* Resetovanie marginov, paddingov a box model */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Odstránenie štýlov zo základných elementov */
html, body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f9f9f9;
  color: #43515A;
}

/* Základné štýly odkazov */
a {
  color: inherit;
  text-decoration: none;
}

/* Obrázky automaticky responzívne */
img,
picture,
video,
canvas,
svg {

}

/* Odstránenie základného štýlu listov */
ul,
ol {
  list-style: none;
}

/* Odstránenie štýlu z buttonov */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Odstránenie špecifického štýlu pre formuláre */
input,
button,
textarea,
select {
  font: inherit;
}

/* Základné */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.no-gutters {
	margin-left: 0;
    margin-right: 0;
}

.col {
    flex: 1 0 0%;
    padding-left: 15px;
    padding-right: 15px;
}

.row.no-gutters > .col {
	padding-left: 0;
    padding-right: 0;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.row.no-gutters > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Breakpointy */
:root {
    --sm: 576px;
    --md: 768px;
    --lg: 992px;
    --xl: 1300px;
    --xxl: 1500px;
}

/* Základné stĺpce */
.col-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* sm breakpoint */
@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333%; max-width: 8.333%; }
    .col-sm-2 { flex: 0 0 16.666%; max-width: 16.666%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-sm-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-sm-8 { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-sm-11 { flex: 0 0 91.666%; max-width: 91.666%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* md breakpoint */
@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333%; max-width: 8.333%; }
    .col-md-2 { flex: 0 0 16.666%; max-width: 16.666%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-md-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-md-11 { flex: 0 0 91.666%; max-width: 91.666%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* lg breakpoint */
@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333%; max-width: 8.333%; }
    .col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-lg-11 { flex: 0 0 91.666%; max-width: 91.666%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* xl breakpoint */
@media (min-width: 1300px) {
    .col-xl-1 { flex: 0 0 8.333%; max-width: 8.333%; }
    .col-xl-2 { flex: 0 0 16.666%; max-width: 16.666%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-xl-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-xl-8 { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-xl-11 { flex: 0 0 91.666%; max-width: 91.666%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* xxl breakpoint */
@media (min-width: 1500px) {
    .col-xxl-1 { flex: 0 0 8.333%; max-width: 8.333%; }
    .col-xxl-2 { flex: 0 0 16.666%; max-width: 16.666%; }
    .col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xxl-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-xxl-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xxl-7 { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-xxl-8 { flex: 0 0 66.666%; max-width: 66.666%; }
    .col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xxl-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-xxl-11 { flex: 0 0 91.666%; max-width: 91.666%; }
    .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}

.container {
	width: 100%;
	max-width: 1640px;
	margin: 0 auto;
}

BODY {
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	line-height: 35px;
	color: #fff;
}

* {
	outline: none !important;
}

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

MAIN {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 150px);
  margin-top: 150px;
  z-index: 1;

  /* scroll kontajner */
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* iOS plynulé scrolovanie */

  /* vertikálne rozloženie */
  display: flex;
  flex-direction: column;

  /* dôležité pri fix výške, aby sa dieťa vedelo „zmestiť“ */
  min-height: 0;
}

ARTICLE {
  /* zrušiť absolútne poziciovanie a transform */
  position: relative;
  top: auto;
  transform: none;
  left: auto;
  width: 100%;

  /* Toto triky: ak je v MAIN voľné miesto, article sa vycentruje
     (auto na hornom aj spodnom okraji). Ak je dlhší, zarovná sa hore. */
  margin-block: auto;

  padding-bottom: 50px;
  z-index: 3;

  /* scrollbary ak sú potrebné priamo na article (inak stačí na MAIN) */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.45) transparent;
}

.main-bg {
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #060606;
}

.main-bg {
	background: transparent;
	/*background-image: url('../images/home_bg.jpg');*/
}

.main-bg {
	background-image: url('../images/o_nas.jpg');
}

.main-bg.team {
	background-image: url('../images/team.jpg');
}

.main-bg.kariera {
	background-image: url('../images/kariera.jpg');
}

.main-bg.kontakt {
	background-image: url('../images/kontakt.jpg');
}

@media screen and (max-width: 768px) {
	MAIN.home .main-bg {
		background: transparent;
		/*background-image: url('../images/home_bg.jpg');*/
	}

	MAIN.home2 .main-bg {
		background-image: url('../images/o_nas_mobile.jpg');
	}

	MAIN.team .main-bg {
		background-image: url('../images/team_mobile.jpg');
	}

	MAIN.kariera .main-bg {
		background-image: url('../images/kariera_mobile.jpg');
	}

	MAIN.kontakt .main-bg {
		background-image: url('../images/kontakt_mobile.jpg');
	}
}

.bg {
  position: fixed;        /* drží sa pod scrollom */
  inset: 0;               /* top/right/bottom/left = 0 */
  z-index: 1;             /* pod obsahom */
  overflow: hidden;
  background: #060606;    /* fallback farba */
}

.bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* vyplní celé pozadie bez deformácie */
  object-position: center center;
  pointer-events: none;   /* kliky prejdú na obsah */
}

.content {
  position: relative;
  z-index: 1;             /* nad videom */
  color: #fff;
}

/* voliteľné stmavenie videa pre čitateľnosť */
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

HEADER {
	position: fixed;
	left: 0px;
	top: 50px;
	display: block;
	width: 100%;
	z-index: 2;
}

HEADER NAV {
	text-align: right;
}

HEADER NAV UL {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

HEADER NAV UL LI {
	display: inline-block;
	padding-left: 50px;
}

HEADER NAV UL LI A {
	position: relative;
	display: inline-block;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1.5px;
	color: #fff;
	text-decoration: none !important;
	text-transform: uppercase;
	padding: 10px 0;
}

HEADER NAV UL LI A { border-bottom: none; }

HEADER NAV UL LI A::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;                    
	width: 100%;
	height: 2px;                    
	background: #fff;                
	transform: scaleX(0);           
	transform-origin: left;          
	transition: transform 280ms ease;
}

HEADER NAV UL LI A:hover::after,
HEADER NAV UL LI A.active::after {
	transform: scaleX(1);
}

HEADER .logo {
	display: block;
}

HEADER .logo IMG {
	display: block;
	width: auto;
	height: 100%;
}

ARTICLE::-webkit-scrollbar        { width: 2px; height: 2px; }
ARTICLE::-webkit-scrollbar-track  { background: transparent; }
ARTICLE::-webkit-scrollbar-thumb  { background: rgba(255,255,255,.45); border-radius: 2px; }
ARTICLE::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.85); }

H1 {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 400;
	color: #fff;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding-bottom: 30px;
}

H2 {
	font-size: 30px;
	line-height: 1.5;
	font-weight: 400;
	color: #fff;
	padding-bottom: 30px;
}

P {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	color: #fff;
	padding-bottom: 30px;
}

P STRONG {
	display: block;
	padding-bottom: 10px;
}

.form-group {
	padding-bottom: 35px;
}

.form-control {
  border-radius: 0 !important;      /* hranaté rohy */
  -webkit-border-radius: 0;         /* iOS */
  appearance: none;
  -webkit-appearance: none;         /* iOS Safari */
  background-clip: padding-box;     /* nech nepresvitá pozadie v rohoch */
}

/* iOS má špeciálny "search" input – treba mu vypnúť vzhľad zvlášť */
input[type="search"].form-control {
  -webkit-appearance: none;
  border-radius: 0 !important;
}

/* ak máš aj <textarea class="form-control">, isto */
textarea.form-control {
  border-radius: 0 !important;
  -webkit-appearance: none;
}

.form-control {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 35px;
	color: #fff !important;
	background: none !important;
	border: none !important;
	border-bottom: 2px solid #fff !important;
	box-shadow: none !important;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active{
  -webkit-text-fill-color:#fff;
  caret-color:#fff;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow:         0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-out, color 9999s ease-out;
}

/* Firefox */
.form-control:-moz-autofill{
  -moz-text-fill-color:#fff;
  box-shadow: 0 0 0 1000px transparent inset !important;
}

.form-control::placeholder {
	color: #fff;
}

.file-row{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}

/* natívny input – vizuálne skrytý, stále prístupný */
.file-input{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* tlačidlo podľa dizajnu */
.file-trigger{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 20px;
  padding:10px 14px;
  padding-left: 0px !important;
  color:#fff; background:transparent; cursor:pointer;
  line-height:1; user-select:none;
  transition:background .2s ease, box-shadow .2s ease, transform .05s;
}
.file-trigger:hover{ background: rgba(255,255,255,.12); }
.file-trigger:active{ transform: translateY(1px); }
.file-trigger:focus-visible{ outline:2px solid #fff; outline-offset:2px; }
.file-trigger svg{ width:35px; height:35px; flex:0 0 35px; }

/* text s názvami súborov */
.file-list{
  color: rgba(255,255,255,.85);
  max-width: 360px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

/* voliteľné: pri pretiahnutí súborov zvýrazniť */
.file-trigger.dragover{ background: rgba(255,255,255,.18); }

.btn {
	display: inline-block;
    font-size: 20px;
    line-height: 1;
	color: #fff;
    padding: 15px 20px;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 0px;
	margin-bottom: 25px;
	transition: all 280ms ease;
}

.btn:hover {
	color: #060606;
	background: #fff;
}

.bottom-logo {
	width: auto;
	height: 150px;
}

/*
 * Responsive
 */
@media screen and (max-width: 1700px) {
	.container {
		padding: 0px 55px;
	}
	
	H1 {
		font-size: 20px;
		padding-bottom: 20px;
	}

	H2 {
		font-size: 25px;
		padding-bottom: 20px;
	}

	P {
		font-size: 20px;
		padding-bottom: 20px;
	}
	
	.bottom-logo {
		height: 100px;
		margin-top: 0px;
	}
}

@media screen and (min-width: 1200px) and (max-height: 735px) {
	HEADER {
		top: 25px;
	}
	
	.container {
        padding: 0px 25px;
    }
	
    H1 {
        font-size: 16px;
        padding-bottom: 15px;
    }
	
	H2 {
        font-size: 20px;
        padding-bottom: 15px;
    }
	
    P {
        font-size: 16px;
        padding-bottom: 15px;
    }
	
	.bottom-logo {
		height: 90px;
		margin-top: 0px;
	}
}

@media screen and (max-width: 1024px) {
	/*!
	 * Hamburgers
	 * @description Tasty CSS-animated hamburgers
	 * @author Jonathan Suh @jonsuh
	 * @site https://jonsuh.com/hamburgers
	 * @link https://github.com/jonsuh/hamburgers
	 */
	
	.hamburger{	
				position: relative;
				font:inherit;
				display:inline-block;
				overflow:visible;
				margin:0px;
				margin-top: 15px;
				padding:0px;
				cursor:pointer;
				transition-timing-function:linear;
				transition-duration:.15s;
				transition-property:opacity,filter;
				text-transform:none;
				color:inherit;
				border:0;
				background-color:transparent;
				float: right;
				z-index: 10;
			}
	.hamburger.is-active:hover,.hamburger:hover{opacity:.7}
	
	.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner:after,.hamburger.is-active .hamburger-inner:before{background-color:#fff}
	
	.hamburger-box{position:relative;display:inline-block;width:40px;height:24px}
	
	.hamburger-inner{top:50%;display:block;margin-top:-2px}
	
	.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before{
			position:absolute;
			width:40px;
			height:2px;
			transition-timing-function:ease;
			transition-duration:.15s;
			transition-property:transform;
			border-radius:0px;
			background-color:#fff
		}
	.hamburger-inner:after,.hamburger-inner:before{display:block;content:""}.hamburger-inner:before{top:-10px}.hamburger-inner:after{bottom:-10px}.hamburger--3dx .hamburger-box{perspective:80px}.hamburger--3dx .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx .hamburger-inner:after,.hamburger--3dx .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx.is-active .hamburger-inner{transform:rotateY(180deg);background-color:transparent!important}.hamburger--3dx.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dx.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dx-r .hamburger-box{perspective:80px}.hamburger--3dx-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx-r .hamburger-inner:after,.hamburger--3dx-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx-r.is-active .hamburger-inner{transform:rotateY(-180deg);background-color:transparent!important}.hamburger--3dx-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dx-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dy .hamburger-box{perspective:80px}.hamburger--3dy .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy .hamburger-inner:after,.hamburger--3dy .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy.is-active .hamburger-inner{transform:rotateX(-180deg);background-color:transparent!important}.hamburger--3dy.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dy.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dy-r .hamburger-box{perspective:80px}.hamburger--3dy-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy-r .hamburger-inner:after,.hamburger--3dy-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy-r.is-active .hamburger-inner{transform:rotateX(180deg);background-color:transparent!important}.hamburger--3dy-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dy-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dxy .hamburger-box{perspective:80px}.hamburger--3dxy .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy .hamburger-inner:after,.hamburger--3dxy .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy.is-active .hamburger-inner{transform:rotateX(180deg) rotateY(180deg);background-color:transparent!important}.hamburger--3dxy.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dxy.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dxy-r .hamburger-box{perspective:80px}.hamburger--3dxy-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy-r .hamburger-inner:after,.hamburger--3dxy-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dxy-r.is-active .hamburger-inner{transform:rotateX(180deg) rotateY(180deg) rotate(-180deg);background-color:transparent!important}.hamburger--3dxy-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dxy-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--arrow.is-active .hamburger-inner:before{transform:translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrow.is-active .hamburger-inner:after{transform:translate3d(-8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrow-r.is-active .hamburger-inner:before{transform:translate3d(8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrow-r.is-active .hamburger-inner:after{transform:translate3d(8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowalt .hamburger-inner:before{transition:top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt .hamburger-inner:after{transition:bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt.is-active .hamburger-inner:before{top:0;transition:top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(-8px,-10px,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowalt.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(-8px,10px,0) rotate(45deg) scaleX(.7)}.hamburger--arrowalt-r .hamburger-inner:before{transition:top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt-r .hamburger-inner:after{transition:bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt-r.is-active .hamburger-inner:before{top:0;transition:top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(8px,-10px,0) rotate(45deg) scaleX(.7)}.hamburger--arrowalt-r.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(8px,10px,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowturn.is-active .hamburger-inner{transform:rotate(-180deg)}.hamburger--arrowturn.is-active .hamburger-inner:before{transform:translate3d(8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrowturn.is-active .hamburger-inner:after{transform:translate3d(8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowturn-r.is-active .hamburger-inner{transform:rotate(-180deg)}.hamburger--arrowturn-r.is-active .hamburger-inner:before{transform:translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowturn-r.is-active .hamburger-inner:after{transform:translate3d(-8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner:after,.hamburger--boring .hamburger-inner:before{transition-property:none}.hamburger--boring.is-active .hamburger-inner{transform:rotate(45deg)}.hamburger--boring.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--boring.is-active .hamburger-inner:after{bottom:0;transform:rotate(-90deg)}.hamburger--collapse .hamburger-inner{top:auto;bottom:0;transition-delay:.13s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--collapse .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear}.hamburger--collapse .hamburger-inner:before{transition:top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--collapse.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--collapse.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;opacity:0}.hamburger--collapse.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;transform:rotate(-90deg)}.hamburger--collapse-r .hamburger-inner{top:auto;bottom:0;transition-delay:.13s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--collapse-r .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear}.hamburger--collapse-r .hamburger-inner:before{transition:top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--collapse-r.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(45deg)}.hamburger--collapse-r.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;opacity:0}.hamburger--collapse-r.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;transform:rotate(90deg)}.hamburger--elastic .hamburger-inner{top:2px;transition-timing-function:cubic-bezier(.68,-.55,.265,1.55);transition-duration:.275s}.hamburger--elastic .hamburger-inner:before{top:10px;transition:opacity .125s ease .275s}.hamburger--elastic .hamburger-inner:after{top:20px;transition:transform .275s cubic-bezier(.68,-.55,.265,1.55)}.hamburger--elastic.is-active .hamburger-inner{transition-delay:75ms;transform:translate3d(0,10px,0) rotate(135deg)}.hamburger--elastic.is-active .hamburger-inner:before{transition-delay:0s;opacity:0}.hamburger--elastic.is-active .hamburger-inner:after{transition-delay:75ms;transform:translate3d(0,-20px,0) rotate(-270deg)}.hamburger--elastic-r .hamburger-inner{top:2px;transition-timing-function:cubic-bezier(.68,-.55,.265,1.55);transition-duration:.275s}.hamburger--elastic-r .hamburger-inner:before{top:10px;transition:opacity .125s ease .275s}.hamburger--elastic-r .hamburger-inner:after{top:20px;transition:transform .275s cubic-bezier(.68,-.55,.265,1.55)}.hamburger--elastic-r.is-active .hamburger-inner{transition-delay:75ms;transform:translate3d(0,10px,0) rotate(-135deg)}.hamburger--elastic-r.is-active .hamburger-inner:before{transition-delay:0s;opacity:0}.hamburger--elastic-r.is-active .hamburger-inner:after{transition-delay:75ms;transform:translate3d(0,-20px,0) rotate(270deg)}.hamburger--emphatic{overflow:hidden}.hamburger--emphatic .hamburger-inner{transition:background-color .125s ease-in .175s}.hamburger--emphatic .hamburger-inner:before{left:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s}.hamburger--emphatic .hamburger-inner:after{top:10px;right:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s}.hamburger--emphatic.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:transparent!important}.hamburger--emphatic.is-active .hamburger-inner:before{top:-80px;left:-80px;transition:left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(80px,80px,0) rotate(45deg)}.hamburger--emphatic.is-active .hamburger-inner:after{top:-80px;right:-80px;transition:right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(-80px,80px,0) rotate(-45deg)}.hamburger--emphatic-r{overflow:hidden}.hamburger--emphatic-r .hamburger-inner{transition:background-color .125s ease-in .175s}.hamburger--emphatic-r .hamburger-inner:before{left:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s}.hamburger--emphatic-r .hamburger-inner:after{top:10px;right:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s}.hamburger--emphatic-r.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:transparent!important}.hamburger--emphatic-r.is-active .hamburger-inner:before{top:80px;left:-80px;transition:left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(80px,-80px,0) rotate(-45deg)}.hamburger--emphatic-r.is-active .hamburger-inner:after{top:80px;right:-80px;transition:right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(-80px,-80px,0) rotate(45deg)}.hamburger--minus .hamburger-inner:after,.hamburger--minus .hamburger-inner:before{transition:bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear}.hamburger--minus.is-active .hamburger-inner:after,.hamburger--minus.is-active .hamburger-inner:before{transition:bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;opacity:0}.hamburger--minus.is-active .hamburger-inner:before{top:0}.hamburger--minus.is-active .hamburger-inner:after{bottom:0}.hamburger--slider .hamburger-inner{top:2px}.hamburger--slider .hamburger-inner:before{top:10px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform,opacity}.hamburger--slider .hamburger-inner:after{top:20px}.hamburger--slider.is-active .hamburger-inner{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--slider.is-active .hamburger-inner:before{transform:rotate(-45deg) translate3d(-5.71429px,-6px,0);opacity:0}.hamburger--slider.is-active .hamburger-inner:after{transform:translate3d(0,-20px,0) rotate(-90deg)}.hamburger--slider-r .hamburger-inner{top:2px}.hamburger--slider-r .hamburger-inner:before{top:10px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform,opacity}.hamburger--slider-r .hamburger-inner:after{top:20px}.hamburger--slider-r.is-active .hamburger-inner{transform:translate3d(0,10px,0) rotate(-45deg)}.hamburger--slider-r.is-active .hamburger-inner:before{transform:rotate(45deg) translate3d(5.71429px,-6px,0);opacity:0}.hamburger--slider-r.is-active .hamburger-inner:after{transform:translate3d(0,-20px,0) rotate(90deg)}.hamburger--spin .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.22s}.hamburger--spin .hamburger-inner:before{transition:top .1s ease-in .25s,opacity .1s ease-in}.hamburger--spin .hamburger-inner:after{transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(225deg)}.hamburger--spin.is-active .hamburger-inner:before{top:0;transition:top .1s ease-out,opacity .1s ease-out .12s;opacity:0}.hamburger--spin.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(-90deg)}.hamburger--spin-r .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.22s}.hamburger--spin-r .hamburger-inner:before{transition:top .1s ease-in .25s,opacity .1s ease-in}.hamburger--spin-r .hamburger-inner:after{transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin-r.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(-225deg)}.hamburger--spin-r.is-active .hamburger-inner:before{top:0;transition:top .1s ease-out,opacity .1s ease-out .12s;opacity:0}.hamburger--spin-r.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(90deg)}.hamburger--spring .hamburger-inner{top:2px;transition:background-color 0s linear .13s}.hamburger--spring .hamburger-inner:before{top:10px;transition:top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring .hamburger-inner:after{top:20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring.is-active .hamburger-inner{transition-delay:.22s;background-color:transparent!important}.hamburger--spring.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--spring.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(-45deg)}.hamburger--spring-r .hamburger-inner{top:auto;bottom:0;transition-delay:0s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--spring-r .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity 0s linear}.hamburger--spring-r .hamburger-inner:before{transition:top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring-r.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--spring-r.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s linear .22s;opacity:0}.hamburger--spring-r.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:rotate(90deg)}.hamburger--stand .hamburger-inner{transition:transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms}.hamburger--stand .hamburger-inner:before{transition:top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand .hamburger-inner:after{transition:bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand.is-active .hamburger-inner{transition:transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;transform:rotate(90deg);background-color:transparent!important}.hamburger--stand.is-active .hamburger-inner:before{top:0;transition:top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(-45deg)}.hamburger--stand.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(45deg)}.hamburger--stand-r .hamburger-inner{transition:transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms}.hamburger--stand-r .hamburger-inner:before{transition:top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand-r .hamburger-inner:after{transition:bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand-r.is-active .hamburger-inner{transition:transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;transform:rotate(-90deg);background-color:transparent!important}.hamburger--stand-r.is-active .hamburger-inner:before{top:0;transition:top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(-45deg)}.hamburger--stand-r.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(45deg)}.hamburger--squeeze .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:75ms}.hamburger--squeeze .hamburger-inner:before{transition:top 75ms ease .12s,opacity 75ms ease}.hamburger--squeeze .hamburger-inner:after{transition:bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)}.hamburger--squeeze.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(45deg)}.hamburger--squeeze.is-active .hamburger-inner:before{top:0;transition:top 75ms ease,opacity 75ms ease .12s;opacity:0}.hamburger--squeeze.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(-90deg)}.hamburger--vortex .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transition-duration:.2s}.hamburger--vortex .hamburger-inner:after,.hamburger--vortex .hamburger-inner:before{transition-delay:.1s;transition-timing-function:linear;transition-duration:0s}.hamburger--vortex .hamburger-inner:before{transition-property:top,opacity}.hamburger--vortex .hamburger-inner:after{transition-property:bottom,transform}.hamburger--vortex.is-active .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transform:rotate(765deg)}.hamburger--vortex.is-active .hamburger-inner:after,.hamburger--vortex.is-active .hamburger-inner:before{transition-delay:0s}.hamburger--vortex.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--vortex.is-active .hamburger-inner:after{bottom:0;transform:rotate(90deg)}.hamburger--vortex-r .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transition-duration:.2s}.hamburger--vortex-r .hamburger-inner:after,.hamburger--vortex-r .hamburger-inner:before{transition-delay:.1s;transition-timing-function:linear;transition-duration:0s}.hamburger--vortex-r .hamburger-inner:before{transition-property:top,opacity}.hamburger--vortex-r .hamburger-inner:after{transition-property:bottom,transform}.hamburger--vortex-r.is-active .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transform:rotate(-765deg)}.hamburger--vortex-r.is-active .hamburger-inner:after,.hamburger--vortex-r.is-active .hamburger-inner:before{transition-delay:0s}.hamburger--vortex-r.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--vortex-r.is-active .hamburger-inner:after{bottom:0;transform:rotate(-90deg)}
	
	.desktop-hide {
		display: block;
	}
	
	.container {
		padding-right: 50px;
		padding-left: 50px;
	}
	
	HEADER {
		top: 5px;
		-webkit-transition: all 0.3s linear;
		-moz-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
	}
	
	HEADER.fixed {
		top: 0px;
	}
	
	HEADER .logo {
		height: auto;
		padding-top: 10px;
		padding-bottom: 10px;
		-webkit-transition: all 0.3s linear;
		-moz-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
	}
	
	HEADER .logo IMG {
		width: auto;
		height: 51px;
	}
	
	HEADER NAV {
		position: fixed;
		display: none;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		text-align: left;
		background: rgba(7, 7, 7, 0.9);
		z-index: 5;
		overflow: auto;
	}
	
	HEADER NAV UL {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	HEADER NAV UL LI {
		position: relative;
		display: block;
		text-align: center;
		padding: 0px;
		padding-bottom: 10px;
	}
	
	HEADER NAV UL LI A {
		position: relative;
		display: block;
		font-size: 30px;
		line-height: 50px;
		font-weight: 400;
		color: #fff;
		text-align: center;
	}
	
	MAIN {
		height: calc(100% - 100px);
		margin-top: 100px;
	}
	
	H1 {
		font-size: 22px;
		padding-bottom: 30px;
	}

	H2 {
		font-size: 30px;
		padding-bottom: 30px;
	}

	P {
		font-size: 22px;
		padding-bottom: 30px;
	}
	
	.bottom-logo {
		width: auto;
		height: 100px;
		margin-top: 25px;
	}
}

@media screen and (max-width: 768px) {
	MAIN {
        height: calc(100% - 75px);
        margin-top: 75px;
    }
	
	.desktop {
		display: none;
	}

	.mobile {
		display: block;
	}

	.container {
		padding-right: 16px;
		padding-left: 16px;
	}
	
	HEADER {

	}
	
	HEADER .logo {
		height: auto;
		-webkit-transition: all 0.3s linear;
		-moz-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
	}
	
	HEADER .logo IMG {
		width: auto;
		max-width: unset;
		height: 46px;
	}
	
	HEADER NAV UL LI {
		display: block;
		text-align: left;
		padding-bottom: 10px;
	}
	
	H1 {
        font-size: 16px;
        padding-bottom: 20px;
    }
	
	P {
        font-size: 15px;
        padding-bottom: 20px;
    }
	
	H2 {
        font-size: 17px;
        padding-bottom: 0px;
    }
	
	.form-group {
		padding-bottom: 25px;
	}
	
	.form-control {
		font-size: 15px;
	}
	
	.btn {
		font-size: 15px;
	}
}

@media screen and (max-width: 400px) {
	.file-trigger {
		font-size: 16px;
		padding: 12px 14px;
	}
	
	.btn {
		font-size: 15px;
	}
}

@media screen and (max-width: 350px) {
	.file-trigger {
		font-size: 12px;
		padding: 5px 0px;
	}
	
	.btn {
		font-size: 12px;
		padding: 12px 10px;
	}
}