
/* base.scss (START) */
/* variables.scss */
/* General colors */
/* functions.scss */
/* helpers.scss */
/* TODO.scss */
* {
	margin: 0; 
	padding: 0;
}

body,
html {
	font-family: "GillSansC";
	font-size: 10px;
	font-weight: 300;
	line-height: 1rem;

	position: relative;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	        flex-direction: column;

	width: 100%;
	min-width: 320px;
	height: 100vh;
	margin: 0;

	letter-spacing: .1px;

	background-color: #fff;

	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

h1 {
	font-family: "GillSansC";
	font-size: 30pt;
	font-weight: 300; 
	line-height: 36pt;

	color: #52b6e7;
}
h1.title {
	color: inherit;
	padding-bottom: 30px;
}
h1.title-h3 {
	color: inherit;
}
h2 {
	font-family: "GillSansC";
	font-size: 14.41pt;
	font-weight: 300; 
	line-height: 17.29pt;
}

h3 {
	font-family: "GillSansC";
	font-size: 12.01pt;
	line-height: 14.41pt;
}

h4 {
	font-family: "GillSansC";
	font-size: 2rem;

	letter-spacing: -.2px;
}

h5 {
	font-family: "GillSansC";
	font-size: 2rem;
	font-weight: 300;
}

h6 {
	font-family: "GillSansC";
	font-size: 1rem;
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: lighter;
	line-height: 1em;

	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}

.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}

.transparent-background {
	position: fixed;
	z-index: 1;
	top: 0;

	display: none; 

	width: 100%;
	height: 100%;

	background: rgba(0, 0, 0, .5);
}

p {
	font-family: "GillSansC";
	font-size: 8.41pt;
	font-weight: 400;
	line-height: 1rem;

	margin-bottom: .4rem; 

	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}

img {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box; 

	vertical-align: top;

	border: 0;
}

blockquote {
	font-family: "GillSansC";
	font-size: 14px;
	font-weight: 100; 

	padding-left: 10px;

	border-left: 3px solid #afafaf;
}

.small-text {
	font-family: "GillSansC";
	font-size: 12px;
	font-weight: 100;
}

div {
	vertical-align: top;
}

ul,
ol {
	margin: 0; 
	padding: 0;

	list-style: none;
}

.clearfix:after {
	display: table;
	clear: both; 

	content: "";
}

.section {
	padding: 30px 0 30px 16px;
}

.section__nopadding {
	padding: 0 0 16px 0;
}

:focus {
	outline: 1px solid transparent;
}

a:link,
a:visited,
a:active {
	line-height: 1em;

	-webkit-transition: all .2s cubic-bezier(0, .01, 1, .28);
	        transition: all .2s cubic-bezier(0, .01, 1, .28);
	text-decoration: none; 

	color: #fff;
}
a:link:focus,
a:visited:focus,
a:active:focus {
	outline: 1px transparent;
	outline-style: none; 
	outline-color: transparent;
}

a[href^="mailto:"] {
	background: url("") no-repeat center right;
}

a[href$=".pdf"] {
	background: url("") no-repeat center right;
}

.btn-block {
	font-family: "GillRegularC";
	font-weight: bold;
}
.btn-block .btn {
	font-size: 14.4pt;
	line-height: 17.28pt;

	display: inline-block;

	width: 92px;
	padding: 4px 0;

	text-align: center;

	color: #52b6e7; 
	border: 2px solid #52b6e7;
	-webkit-border-radius: 18px;
	        border-radius: 18px;
}
.btn-block .btn-header {
	font-size: 13pt;
	line-height: 17.28pt;

	display: inline-block;

	padding: 7px 16px;

	color: #fff; 
	border: 3px solid #fff;
	-webkit-border-radius: 16px;
	        border-radius: 16px;
}
.btn-block .btn-header:hover {
	color: #52b6e7; 
	background: #fff;
}

/* base.scss (END) */

/* common.scss (START) */
/* variables.scss */
/* General colors */
/* functions.scss */
/* helpers.scss */
/* TODO.scss */
/* Scrollbar disabling */
html::-webkit-scrollbar {
	width: 0;
}

html::-moz-scrollbar {
	width: 0;
}

/* SEO friendly hiding */
.hidden {
	position: absolute;
	top: -9999;
	left: -9999;
}

.visible {
	position: static;
	top: inherit;
	left: inherit;
}

/* Simple hiding */
.show {
	display: inherit !important;
}

.hide {
	display: none;
}

/* Fixed */
.fixed {
	position: fixed;
	z-index: 1000;
}

.container {
	position: relative;

	width: 950px;
	min-width: 950px;
	max-width: 1920px;
	margin: 0 auto; 
	padding: 0 15px;
}

.title-page {
	position: relative;

	margin-bottom: 30px; 

	text-transform: uppercase;
}
.title-page:before {
	font-family: "GillSansC-Bold";
	font-size: 55.04pt;
	line-height: 37.85pt;

	position: absolute;
	top: -52px; 

	text-transform: uppercase;

	opacity: .25;
	color: #52b6e7;
}

.content-block {
	padding: 60px 0 20px 0;
}
.content-block .breadcrumbs {
	font-family: "FuturaLightC";
	font-weight: bold; 

	display: inline-block;

	margin-bottom: 70px;
}
.content-block .breadcrumbs .main {
	font-size: 10.81pt;
	line-height: 12.97pt;

	margin-right: 5px; 

	color: #000;
}
.content-block .breadcrumbs .current {
	font-size: 10.81pt;
	line-height: 12.97pt; 

	color: #000;
}

.header {
	position: relative;
}
.header .container {
	width: 100%;
	min-width: 100%;
	padding: 0; 

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}
.header .container .left {
	padding-left: 10vw;
}
.header .container .left .logo a {
	display: block;

	width: 40px; 
	height: 40px;

	background: url(../img/icons/i.header.svg) no-repeat;
}
.header .container .right {
	width: auto;
	padding-right: 10vw;

	background: #52b6e7;
}
.header .container .right .menu-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}
.header .container .right .menu-list .item {
	font-size: 14.4pt;
	line-height: 17.28pt;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	padding: 0 25px;

	color: #52b6e7;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}
.header .container .right .menu-list .item:nth-child(1n) {
	color: #52b6e7; 
	background: #fff;
}
.header .container .right .menu-list .item:nth-child(2n) {
	color: #52b6e7; 
	background: #fff;
}
.header .container .right .menu-list .item:nth-child(3n) {
	color: #fff; 
	background: #52b6e7;
}
.header .container .right .menu-list .item:nth-child(4n) {
	color: #fff; 
	background: #52b6e7;
}
.header .container .right .btn-block {
	padding: 20px 25px; 

	background: #52b6e7;
}
.header .container .right .btn-block .btn-header {
	-webkit-border-radius: 18px;
	        border-radius: 18px;
}

.footer {
	background: #52b6e7;
}
.footer .container {
	width: 750px;
	min-width: 750px;
	max-width: 100%;
	margin: 0 auto;
	padding: 10px 15px; 

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}
.footer .container .logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}
.footer .container .logo a {
	display: block;

	width: 170px;
	height: 50px; 
	margin-right: 5px;

	background: url(../img/icons/i.footer-icon.svg) no-repeat;
}
.footer .container .telephone {
	font-family: "GillRegularC";
	font-size: 15.6pt;
	line-height: 18.72pt;
}
.footer .container .logo-instagram a {
	display: block;

	width: 30px; 
	height: 30px;

	background: url(../img/icons/i.footer-insta.svg) no-repeat;
}

/* common.scss (END) */

/* forms.scss (START) */
/* variables.scss */
/* General colors */
/* functions.scss */
/* helpers.scss */
/* TODO.scss */
input,
textarea,
select {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: auto;

	resize: none;
	-webkit-transition: all .2s cubic-bezier(0, .01, 1, .28);
	        transition: all .2s cubic-bezier(0, .01, 1, .28);

	border: 0;
	outline: none;
}
input:focus,
textarea:focus,
select:focus {
	border: 1px solid transparent; 
	outline: 1px solid transparent;
}
input[disabled],
textarea[disabled],
select[disabled] {
	resize: none;
	cursor: default; 

	opacity: .5;
}

label {
	cursor: pointer;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: auto;

	-webkit-transition: all .2s cubic-bezier(0, .01, 1, .28);
	        transition: all .2s cubic-bezier(0, .01, 1, .28); 

	outline: 1px transparent;
}

input:required {
	border: 1px solid #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	-webkit-transition: all .2s cubic-bezier(0, .01, 1, .28);
	        transition: all .2s cubic-bezier(0, .01, 1, .28); 

	border: 1px solid #cb5a5a;
}

input:required:valid,
textarea:required:valid {
	-webkit-transition: .3s;
	        transition: .3s; 

	border: 1px solid #5acb5a;
}

select,
option {
	width: auto;

	-webkit-transition: all .2s cubic-bezier(0, .01, 1, .28);
	        transition: all .2s cubic-bezier(0, .01, 1, .28);
}

/* forms.scss (END) */

/* normalize.scss (START) */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
	font-family: sans-serif;
	/* 1 */

	    -ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */

	vertical-align: baseline;
	/* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
	display: none;

	height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
	display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
	outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
	border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
	font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
	font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
	color: #000; 
	background: #ff0;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;

	position: relative;

	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
	border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
	overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
	margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
	overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
	/* 1 */
	font: inherit;
	/* 2 */

	margin: 0;

	color: inherit;
	/* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
	overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* 1 */
html input[type="button"],
button,
input[type="reset"],
input[type="submit"] {
	/* 2 */
	cursor: pointer;

	-webkit-appearance: button;
	/* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
	cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0; 

	border: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
	line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
	/* 1 */
	-webkit-box-sizing: content-box;
	/* 2 */
	        box-sizing: content-box; 

	-webkit-appearance: textfield;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
	margin: 0 2px;
	padding: .35em .625em .75em; 

	border: 1px solid #c0c0c0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
	/* 1 */
	padding: 0;

	border: 0;
	/* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
	font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
	border-spacing: 0; 
	border-collapse: collapse;
}

td,
th {
	padding: 0;
}

/* normalize.scss (END) */

/* popups.scss (START) */
/* variables.scss */
/* General colors */
/* functions.scss */
/* helpers.scss */
/* TODO.scss */
/* popups.scss (END) */

@font-face {
	font-family: "GillSansC";
	font-weight: normal;
	font-style: normal; 

	src: url("../fonts/GillSansC/GillSansC.eot");
	src: url("../fonts/GillSansC/GillSansC.woff2") format("woff2"), url("../fonts/GillSansC/GillSansC.woff") format("woff"), url("../fonts/GillSansC/GillSansC.ttf") format("truetype"), url("../fonts/GillSansC/GillSansC.svg#GillSansC") format("svg"), url("../fonts/GillSansC/GillSansC.eot?#iefix") format("embedded-opentype");
}

@font-face {
	font-family: "FuturaLightC";
	font-weight: normal;
	font-style: normal; 

	src: url("../fonts/FuturaLightC/FuturaLightC.eot");
	src: url("../fonts/FuturaLightC/FuturaLightC.woff2") format("woff2"), url("../fonts/FuturaLightC/FuturaLightC.woff") format("woff"), url("../fonts/FuturaLightC/FuturaLightC.ttf") format("truetype"), url("../fonts/FuturaLightC/FuturaLightC.svg#FuturaLightC") format("svg"), url("../fonts/FuturaLightC/FuturaLightC.eot?#iefix") format("embedded-opentype");
}

@font-face {
	font-family: "GillRegularC";
	font-weight: normal;
	font-style: normal; 

	src: url("../fonts/FuturaRegularC/GillSansLightC.eot");
	src: url("../fonts/FuturaRegularC/GillSansLightC.woff2") format("woff2"), url("../fonts/FuturaRegularC/GillSansLightC.woff") format("woff"), url("../fonts/FuturaRegularC/GillSansLightC.ttf") format("truetype"), url("../fonts/FuturaRegularC/GillSansLightC.svg#GillSansLightC") format("svg"), url("../fonts/FuturaRegularC/GillSansLightC.eot?#iefix") format("embedded-opentype");
}

@font-face {
	font-family: "GillSansC-Bold";
	font-weight: normal;
	font-style: normal; 

	src: url("../fonts/GillSansC-Bold/GillSansC-Bold.eot");
	src: url("../fonts/GillSansC-Bold/GillSansC-Bold.woff2") format("woff2"), url("../fonts/GillSansC-Bold/GillSansC-Bold.woff") format("woff"), url("../fonts/GillSansC-Bold/GillSansC-Bold.ttf") format("truetype"), url("../fonts/GillSansC-Bold/GillSansC-Bold.svg#GillSansC-Bold") format("svg"), url("../fonts/GillSansC-Bold/GillSansC-Bold.eot?#iefix") format("embedded-opentype");
}
