/* 
	Table of Contents

    01. Settings ----------------------------------
    02. Sprite ------------------------------------
    03. Generic -----------------------------------
    04. Base --------------------------------------
    05. Fonts -------------------------------------
    06. Helpers -----------------------------------
         Clear ------------------------------------
         Notext -----------------------------------
         Hidden -----------------------------------
         Alignleft --------------------------------
         Alignright -------------------------------
         Disabled ---------------------------------
         Grid -------------------------------------
         Responsive Helpers -----------------------
    07. Reset -------------------------------------
    08. Regions -----------------------------------
    09. Container ---------------------------------
    10. Content -----------------------------------
    11. Footer ------------------------------------
    12. Header ------------------------------------
    13. Main --------------------------------------
    14. Shell -------------------------------------
    15. Sidebar -----------------------------------
    16. Wrapper -----------------------------------
    17. Modules -----------------------------------
    18. Button ------------------------------------
         Button Block -----------------------------
    19. Form Elements -----------------------------
    20. Form --------------------------------------
    21. Gallery -----------------------------------
    22. Intro -------------------------------------
    23. List --------------------------------------
         List Contacts ----------------------------
    24. Logo --------------------------------------
    25. Nav ---------------------------------------
    26. Section -----------------------------------
    27. Slider ------------------------------------
    28. Table -------------------------------------
    29. Widget ------------------------------------
    30. Themes ------------------------------------
 */

/* ------------------------------------------------------------ *\
	Settings
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Sprite
\* ------------------------------------------------------------ */

.ico-arrow-up { background-image     : url(../images/src/assets/images/sprite.png); background-position     : 0% 0%; background-size     : 100% 100%; width     : 21px; height     : 11px; display     : inline-block; vertical-align     : middle; font-size     : 0px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.ico-arrow-up { background-image     : url(../images/src/assets/images/sprite.@2x.png); background-position     : 0% 0%; background-size     : 100% 100%; width     : 21px; height     : 11px; display     : inline-block; vertical-align     : middle; font-size     : 0px; }
}

/* ------------------------------------------------------------ *\
	Generic
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */

body { min-width: 320px; background: #fff; font-family: Museo, Arial, Helvetica, sans-serif; font-size: 21px; font-weight: 300; line-height: 1.71; color: #fff; }

a { color: inherit; text-decoration: none; }

a:hover,
a[href^="tel"] { text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 { margin-bottom: 0.855em; }

h1 { font-size: 82px; }

h4 { font-size: 24px; }

h5 { font-size: 21px; }

h6 { font-size: 16px; }

p,
ul,
ol,
dl,
hr,
table,
blockquote { margin-bottom: 1.71em; }

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child { margin-bottom: 0; }

@media (max-width: 1023px) {
	h1 { font-size: 50px; }
	h4 { font-size: 20px; }
}

@media (max-width: 767px) {
	
	h1 { font-size: 36px; }
	h4 { font-size: 12px; }
	h6 { font-size: 10px; }
}

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */

@font-face {
	font-family: "Museo";
	src: url("../fonts/Museo-300.eot");
	src: url("../fonts/Museo-300.eot?#iefix") format("embedded-opentype"),
		url("../images/src/assets/fonts/Museo-300.svg") format("svg"),
		url("../fonts/src/assets/fonts/Museo-300.woff") format("woff"),
		url("../fonts/Museo-300.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Museo";
	src: url("../fonts/Museo700-Regular.eot");
	src: url("../fonts/Museo700-Regular.eot?#iefix") format("embedded-opentype"),
		url("../images/src/assets/fonts/Museo700-Regular.svg") format("svg"),
		url("../fonts/src/assets/fonts/Museo700-Regular.woff") format("woff"),
		url("../fonts/Museo700-Regular.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */

/*  Clear  */

.clear:after { content     : ''; display     : block; clear     : both; }

/*  Notext  */

.notext { overflow     : hidden; text-indent     : 101%; white-space     : nowrap; }

/*  Hidden  */

[hidden],
.hidden { display: none !important; }

/*  Alignleft  */

.alignleft { float: left; }

/*  Alignright  */

.alignright { float: right; }

/*  Disabled  */

[disabled],
.disabled { cursor: default; }

/*  Grid  */

.cols { display: -ms-flexbox; display: flex; -ms-flex-flow: row wrap; flex-flow: row wrap; }

.col { max-width: 100%; -ms-flex: 1 1; flex: 1 1; }

.col--1of2 { max-width: 50%; -ms-flex: 0 0 50%; flex: 0 0 50%; }

/*  Responsive Helpers  */

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 767px) {
	.hidden-xs { display: none !important; }
	.visible-xs-block { display: block !important; }
	.visible-xs-inline { display: inline !important; }
	.visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
	.hidden-sm { display: none !important; }
	.visible-sm-block { display: block !important; }
	.visible-sm-inline { display: inline !important; }
	.visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1024px) and (max-width: 1200px) {
	.hidden-md { display: none !important; }
	.visible-md-block { display: block !important; }
	.visible-md-inline { display: inline !important; }
	.visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1201px) {
	.hidden-lg { display: none !important; }
	.visible-lg-block { display: block !important; }
	.visible-lg-inline { display: inline !important; }
	.visible-lg-inline-block { display: inline-block !important; }
}

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */

* { padding: 0; margin: 0; outline: 0; box-sizing: border-box; }

*:before,
*:after { box-sizing: inherit; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main { display: block; }

template { display: none; }

html { -webkit-tap-highlight-color: rgba(0,0,0,0); tap-highlight-color: rgba(0,0,0,0); }

body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; -webkit-text-size-adjust: none; -ms-text-size-adjust: none; text-size-adjust: none; }

img,
iframe,
video,
audio,
object { max-width: 100%; }

img,
iframe { border: 0 none; }

img { height: auto; display: inline-block; vertical-align: middle; }

b,
strong { font-weight: bold; }

address { font-style: normal; }

svg:not(:root) { overflow: hidden; }

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="image"],
label[for] { cursor: pointer; }

a[href^="tel"],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] { cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner { padding: 0; border: 0; }

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
a[href^="tel"] { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }

textarea { overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; }

button,
input,
optgroup,
select,
textarea { font-family: inherit; font-size: inherit; color: inherit; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; }

button,
select { text-transform: none; }

table { width: 100%; border-collapse: collapse; border-spacing: 0; }

nav ul,
nav ol { list-style: none outside none; }

/* ------------------------------------------------------------ *\
	Regions
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Container
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Content
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */

.footer { background: #1f1f1f; padding: 200px 0 55px; margin-top: -148px; }

.footer .shell { position: relative; z-index: 30; }

.footer .btn-scroll-top { position: fixed; right: 30px; bottom: 30px; z-index: 30; display: none; background: #1f1f1f; padding: 10px; width: 73px; height: 73px; }

.footer .btn-scroll-top i { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }

.footer .footer__content { margin-left: 83px; }

.footer .footer__content h5 { letter-spacing: 0.015em; line-height: 1.71; margin-bottom: 6px; }

@media (max-width: 1200px) {
	
	.footer .btn-scroll-top { right: 30px; }
}

@media (max-width: 1023px) {
	
	.footer .footer__content { margin-left: 0; }
	.footer .btn-scroll-top { width: 50px; height: 50px; }
}

@media (max-width: 767px) {
	.footer { margin-top: 0; padding: 22px 0; }
	.footer .btn-scroll-top { right: 5px; width: 40px; height: 40px; }
	.footer .footer__content h5 { font-size: 16px; }
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header { position: absolute; top: 0; left: 0; right: 0; padding-top: 30px; z-index: 20; }

@media (max-width: 1023px) {
	
	.header { padding-top: 30px; text-align: center; }
}

/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */

.shell { max-width: 1200px; padding-left: 15px; padding-right: 15px; margin: auto; }

.shell--fluid { max-width: none; }

/* ------------------------------------------------------------ *\
	Sidebar
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */

.wrapper { min-height: 100vh; }

/* ------------------------------------------------------------ *\
	Modules
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */

.btn { display: inline-block; vertical-align: middle; text-align: center; cursor: pointer; text-decoration: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; }

/*  Button Block  */

.btn--block { display: block; padding-left: 0; padding-right: 0; }

.btn-load { font-size: 24px; line-height: 1.3; letter-spacing: 0.075em; color: #fff; padding: 21px 65px; background: #c6b181; width: 100%; height: auto; border-radius: 0; text-align: center; transition: background .3s; }

.btn-load:hover { background: #978762; }

@media (max-width: 767px) {
	
	.btn-load { font-size: 16px; padding: 25px 65px; }
}

/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */

input::-webkit-input-placeholder { color: inherit; opacity: 1; }

input:-ms-input-placeholder { color: inherit; opacity: 1; }

input::placeholder { color: inherit; opacity: 1; }

textarea::-webkit-input-placeholder { color: inherit; opacity: 1; }

textarea:-ms-input-placeholder { color: inherit; opacity: 1; }

textarea::placeholder { color: inherit; opacity: 1; }

input:-webkit-autofill { -webkit-text-fill-color: inherit; -webkit-box-shadow: 0 0 0 1000px #fff inset; }

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Gallery
\* ------------------------------------------------------------ */

.gallery { max-width: 1110px; margin: 15px auto 0; }

.gallery:after { content: ''; clear: both; display: block; }

.gallery .gallery__actions,
.gallery .gallery__content,
.gallery .gallery__image { width: 47%; float: left; margin: 15px; }

.gallery .gallery__actions { height: auto; }

.gallery .gallery__image { position: relative; z-index: 20; overflow: hidden; }

/* .gallery .gallery__image--height1 { padding-top: 76.5%; } */

.gallery .gallery__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; background: rgba(31,31,31,0.8); text-align: center; display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity .3s, background .3s; }

.gallery .gallery__overlay h6,
.gallery .gallery__overlay h5 { margin-bottom: 0; }

.gallery .gallery__overlay p { margin-bottom: 10px; }

.gallery .gallery__content { margin-top: -78px; }

.gallery .gallery__inner { padding: 55px 55px; }

@media screen and (min-width: 1023px) {
	
	.gallery .gallery__image:hover .gallery__overlay { visibility: visible; opacity: 1; }
}

@media (max-width: 1200px) {
	
	.gallery { max-width: 100%; }
	.gallery .gallery__content { height: auto; }
}

@media (max-width: 1023px) {
	
	.gallery .gallery__actions,
	.gallery .gallery__image,
	.gallery .gallery__content { width: 47%; margin: 10px; }
	.gallery .gallery__content { margin-top: -40px; }
	.gallery .gallery__inner { padding: 25px 30px; }
	.gallery .gallery__image.active .gallery__overlay { visibility: visible; opacity: 1; }
	.gallery .gallery__image .gallery__overlay { visibility: hidden; opacity: 0; }
}

@media (max-width: 767px) {
	
	.gallery { margin-top: 0; }

	.gallery .gallery__actions,
	.gallery .gallery__image { width: 100%; }

	.gallery .gallery__actions,
	.gallery .gallery__image,
	.gallery .gallery__content { margin: 8px 0; }

	.gallery .gallery__overlay p,
	.gallery .gallery__overlay h5 { font-size: 14px; }
}

/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */

.intro { height: 100vh; overflow: hidden; position: relative; background-position: center center; background-repeat: no-repeat; }

.intro .shell { height: 100%; position: relative; }

.intro .intro__content { position: absolute; left: 80px; bottom: 210px; }

.intro .intro__content h1 { font-weight: 300; letter-spacing: 0.025em; margin-bottom: 0; line-height: 1.3; }

.intro .intro__content h4 { font-weight: 300; letter-spacing: 0.075em; }

@media (max-width: 1023px) {
	
	.intro { background-position: left 25px top;  }
	.intro .intro__content { margin-left: 0; position: absolute; bottom: 40px; left: 15px; right: 15px; text-align: center; }
}

@media (max-width: 767px) {
	
	.intro { padding: 150px 0 20px; background-image: url(../images/src/assets/images/temp/intro-bg-mobile.jpg) !important; }
	.intro .intro__content { bottom: 8px; }
	.intro .intro__content h1 { line-height: 1; margin-bottom: 10px; }
	.intro .intro__content h4 { padding: 0 55px; line-height: 1.3; }
}

/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */

[class^="list-"] { list-style: none outside none; }

/* List Contacts */

.list-contacts li { display: inline-block; font-size: 16px; letter-spacing: 0.015em; }

.list-contacts li a { transition: opacity .3s; }

.list-contacts li a:hover { opacity: .7; }

.list-contacts li + li { margin-left: 15px; }

@media (max-width: 767px) {
	
	.list-contacts li { display: block; font-size: 14px; }
	.list-contacts li + li  { margin-left: 0; margin-top: 6px; }
}

/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */

.logo { background: #fff; display: inline-block; padding: 35px 35px 25px; }

.logo svg { width: 202px; height: 170px; }

@media (max-width: 1023px) {
	
	.logo { padding: 10px; }
	.logo svg { width: 162px; height: 136px; }
}

@media (max-width: 767px) {
	.logo { padding: 23px 22px; }
	.logo svg { width: 127px; height: 107px; }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */

.section .section__content { margin-bottom: 10px; }

.section .section__inner { padding: 15px; }

.section .section__inner p { font-size: 14px; }

@media (max-width: 767px) {
	
	.section { margin-bottom: 7px; }
	.section .section__content { margin-top: 14px; margin-bottom: 8px; }
	.section .section__inner { padding: 25px 30px; }
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Widget
\* ------------------------------------------------------------ */

.widgets { list-style: none outside none; }

/* ------------------------------------------------------------ *\
	Themes
\* ------------------------------------------------------------ */
