/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/*  Colors  */
/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
@import '_sprite.css';
* {
  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;
     -moz-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;
}

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  background: #000636;
  font-family: "Bahnschrift", sans-serif;
  font-size: 20px;
  line-height: 1.78;
  color: #111;
}

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

h1, h2 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.075em;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */
@font-face {
  font-family: "Bahnschrift";
  src: url("fonts/Bahnschrift.woff");
  src: url("fonts/Bahnschrift.woff") format("woff"), url("fonts/Bahnschrift.woff2") format("woff2"), url("fonts/Bahnschrift.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

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

@media (max-width: 1023px) {
  .hidden-tablet-max {
    display: none !important;
  }
}

.hidden-desktop {
  display: none !important;
}
@media (max-width: 1023px) {
  .hidden-desktop {
    display: block !important;
  }
}

/*  Clear  */
.clear {
  @util clearfix;
}

/*  Notext  */
.notext {
  @util text-hide;
}

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

/*  Alignleft  */
.alignleft {
  float: left;
}

/*  Alignright  */
.alignright {
  float: right;
}

/*  Disabled  */
[disabled],
.disabled {
  cursor: default;
}

/*  Grid  */
.col {
  max-width: 100%;
  flex: 1;
}
.cols {
  display: flex;
  flex-flow: row wrap;
}
.col--1of2 {
  max-width: 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: 1500px) {
  .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: 1501px) {
  .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;
  }
}
/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  overflow: hidden;
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: 940px;
  padding-right: 20px;
  padding-left: 20px;
  margin: auto;
}
.shell--fluid {
  max-width: none;
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  max-width: 360px;
  pointer-events: none;
}
.header .header__inner {
  display: flex;
  width: 100%;
  height: calc(100% + 40px);
  margin-top: -20px;
  padding: 82px 0 82px 60px;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url(images/nav-background.png);
  background-size: 8px 8px;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #f2e8d0;
  transform-origin: 100% 0;
  transform: translate3d(0, 0, 0) translateX(-100%);
  visibility: hidden;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), visibility 0.5s;
  pointer-events: auto;
}
.header .header__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  padding-right: 60px;
  z-index: 10;
  text-align: center;
  transform: translate3d(0, 0, 0) translateY(40px);
  transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), width 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62);
}
@media (max-width: 1023px) {
  .header .header__top {
    transform: translate3d(0, 0, 0) translate(-18px, 17px);
  }
}
.header .header__middle {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 0;
  opacity: 0;
  transform: translate3d(0, 0, 0) translate(50%, -50%);
  transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), opacity 0.5s;
}
.header .header__bottom {
  opacity: 0;
  transform: translate3d(0, 0, 0) translateX(50%);
  transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), opacity 0.5s;
}
.header.active .header__top {
  transform: translate3d(0, 0, 0) translateY(82px);
  width: 100%;
}
.header.active .header__inner {
  transform: translate3d(0, 0, 0) translateX(-60px);
  visibility: visible;
}
.header.active .header__middle {
  transform: translate3d(0, 0, 0) translate(0, -50%);
  opacity: 1;
}
.header.active .header__bottom {
  transform: translate3d(0, 0, 0) translateX(0);
  opacity: 1;
}
.header.scrolled .header__inner {
  background-color: rgba(17, 17, 17, 0.95);
}

/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */
.main {
  position: relative;
  background-color: #fff;
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
  position: relative;
  padding: 50px 0 0;
  background: hsl(235, 100%, 13%);
  background: linear-gradient(335deg, hsl(235, 100%, 13%) 0%, rgb(0, 54, 99) 100%);
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}
.footer__columns {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__columns {
    display: block;
  }
}
.footer__col {
  width: 33.33%;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__col + .footer__col {
    margin-top: 30px;
  }
}
.footer__col:first-child {
  text-align: left;
}
@media (max-width: 767px) {
  .footer__col:first-child {
    text-align: center;
  }
}
.footer__col:last-child {
  text-align: right;
}
@media (max-width: 767px) {
  .footer__col:last-child {
    text-align: center;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__nav {
  font-weight: 300;
}
.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer__nav ul + ul {
  margin-top: 30px;
}
.footer__nav li + li {
  margin-top: 15px;
}
.footer__nav a {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: letter-spacing 0.3s;
}
.footer__nav a:hover {
  letter-spacing: 0.3em;
}
.footer__nav a.active {
  text-decoration: underline;
}
.footer__bar {
  margin-top: 50px;
  height: 43px;
  line-height: 43px;
  background-color: #000636;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 767px) {
  .footer__bar {
    margin-top: 20px;
  }
}
.footer .socials {
  margin-top: 50px;
}

/* ------------------------------------------------------------ *\
	Btn
\* ------------------------------------------------------------ */
.btn {
  text-align: center;
  min-height: 45px;
  border: 0;
  max-width: 240px;
  padding: 20px 32px;
  border-radius: 45px;
  font-size: 18px;
  background-color: #000636;
  box-shadow: 0 5px 5px rgba(0, 6, 66, 0.2);
  color: #fff;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.btn--right {
  margin-left: auto;
}
.btn--hidden-desktop {
  display: none;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .btn--hidden-desktop {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .btn--hidden-mobile {
    display: none;
  }
}
.btn img {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 1023px) {
  .btn img {
    margin-right: 5px;
  }
}
.btn span {
  display: inline-block;
  padding-top: 2px;
}
.btn:hover {
  background-color: rgb(0, 54, 99);
}
.btn--small {
  font-size: 16px;
  padding: 16px 24px;
}
@media (max-width: 1023px) {
  .btn--small {
    padding: 20px;
  }
}
.btn--small img {
  margin-right: 6px;
}
@media (max-width: 1023px) {
  .btn--small img {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .btn--small span {
    display: none;
  }
}

/* ------------------------------------------------------------ *\
	Btn Small
\* ------------------------------------------------------------ */
.btn-small {
  text-align: center;
  min-height: 45px;
  border: 0;
  max-width: 220px;
  padding: 20px 32px;
  border-radius: 40px;
  font-size: 18px;
  letter-spacing: 0.05em;
  background-color: rgb(0, 54, 99);
  box-shadow: 0 5px 5px rgba(0, 6, 66, 0.2);
  color: #fff;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
@media (max-width: 767px) {
  .btn-small {
    padding: 16px 28px;
    font-size: 16px;
  }
}
.btn-small--right {
  margin-left: auto;
}
.btn-small--hidden-desktop {
  display: none;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .btn-small--hidden-desktop {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .btn-small--hidden-mobile {
    display: none;
  }
}
.btn-small img {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 1023px) {
  .btn-small img {
    margin-right: 5px;
  }
}
.btn-small span {
  display: inline-block;
  padding-top: 2px;
}
.btn-small:hover {
  background-color: #fff;
  color: rgb(0, 54, 99);
  box-shadow: 0 0 40px rgba(0, 6, 54, 0.4);
}
.btn-small--small {
  font-size: 14px;
  padding: 12px 20px;
}
@media (max-width: 1023px) {
  .btn-small--small {
    padding: 20px;
  }
}
.btn-small--small img {
  margin-right: 6px;
}
@media (max-width: 1023px) {
  .btn-small--small img {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .btn-small--small span {
    display: none;
  }
}

/* ------------------------------------------------------------ *\
	Btn White
\* ------------------------------------------------------------ */
.btn-white {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  max-width: 260px;
  border: 0;
  padding: 20px 30px;
  border-radius: 42px;
  font-size: 22px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 #111;
  color: #000636;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
@media (max-width: 767px) {
  .btn-white {
    padding: 15px 22px;
    text-align: center;
    font-size: 20px;
  }
}
.btn-white img {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 1023px) {
  .btn-white img {
    margin-right: 5px;
  }
}
.btn-white span {
  display: inline-block;
  padding-top: 2px;
}
.btn-white:hover {
  background-color: #ccc;
}

/* ------------------------------------------------------------ *\
	Btn Link
\* ------------------------------------------------------------ */
.btn-link {
  display: inline-block;
  padding: 15px 0;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  transition: text-shadow 0.25s;
}
.btn-link span {
  position: relative;
  display: inline-block;
  transform: scaleX(0.9);
  letter-spacing: 0.1em;
  margin-right: -0.15em;
  transition: transform 0.5s, letter-spacing 0.25s;
}
.btn-link span:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  display: inline-block;
  width: 14px;
  height: 3px;
  transform: translate3d(0, 0, 0) translateX(-50%);
  margin-left: -0.15em;
  background-color: #fff;
  transition: width 0.4s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), box-shadow 0.5s;
}
.btn-link:hover {
  text-shadow: 0 0 30px white;
  transition: text-shadow 0.5s;
}
.btn-link:hover span {
  transform: translate3d(0, 0, 0) scaleX(1);
  letter-spacing: 0.3em;
  transition: transform 0.25s, letter-spacing 0.25s;
}
.btn-link:hover span:after {
  width: calc(100% - 32px);
  box-shadow: 0 0 30px white;
  transition: width 0.3s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), box-shadow 0.25s;
}

/* ------------------------------------------------------------ *\
	Btn Menu
\* ------------------------------------------------------------ */
.btn-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate3d(0, 0, 0) scale(2);
  transition: border-color 0.5s, transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62);
  pointer-events: auto;
}
.btn-menu span {
  display: block;
  background-color: #fff;
  width: 16px;
  height: 3px;
  transition: background-color 0.5s, width 0.5s, transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), opacity 0.5s;
}
.btn-menu span + span {
  margin-top: 2px;
}
@media (min-width: 1024px) {
  .btn-menu:hover span {
    transform: translate3d(0, 0, 0) scaleX(0.8);
  }
  .btn-menu:hover span:nth-child(1) {
    transform: translate3d(0, 0, 0) translateY(-2px) scaleX(1.2);
  }
  .btn-menu:hover span:nth-child(3) {
    transform: translate3d(0, 0, 0) translateY(2px) scaleX(1.2);
  }
}
.btn-menu.active {
  transform: scale(1);
  border-color: #111;
}
.btn-menu.active span {
  width: 13px;
  background-color: #111;
}
.btn-menu.active span:nth-child(1) {
  transform: translate3d(0, 0, 0) translateY(5px) rotate(45deg);
}
.btn-menu.active span:nth-child(2) {
  opacity: 0;
}
.btn-menu.active span:nth-child(3) {
  transform: translate3d(0, 0, 0) translateY(-5px) rotate(-45deg);
}
.btn-menu.active:hover {
  transform: scale(1.5);
}
.btn-menu.active:hover span:nth-child(1) {
  transform: translate3d(0, 0, 0) translateY(5px) rotate(45deg) scale(0.75);
}
.btn-menu.active:hover span:nth-child(3) {
  transform: translate3d(0, 0, 0) translateY(-5px) rotate(-45deg) scale(0.75);
}
.btn-menu.scrolled span {
  background-color: #111;
}
.btn-menu.extended span {
  transform: translate3d(0, 0, 0) scaleX(0.8);
}
.btn-menu.extended span:nth-child(1) {
  transform: translate3d(0, 0, 0) translate(-4px, 1px) rotate(-45deg);
}
.btn-menu.extended span:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateX(1px) scaleX(1.2);
}
.btn-menu.extended span:nth-child(3) {
  transform: translate3d(0, 0, 0) translate(-4px, -1px) rotate(45deg);
}
.btn-menu.extended:hover span:nth-child(1) {
  transform: translate3d(0, 0, 0) translate(-4px, 2px) rotate(-45deg) scaleX(0.75);
}
.btn-menu.extended:hover span:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateX(1px) scaleX(1.2);
}
.btn-menu.extended:hover span:nth-child(3) {
  transform: translate3d(0, 0, 0) translate(-4px, -2px) rotate(45deg) scaleX(0.75);
}

@keyframes arrowmoving {
  0% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(21px) scale(1.5);
    opacity: 1;
  }
  50% {
    transform: translateY(42px) scale(1);
    opacity: 0;
  }
  51% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(21px) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translateY(42px) scale(1);
    opacity: 0;
  }
}
/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */
input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
input::placeholder {
  color: inherit;
  opacity: 1;
}

textarea::-moz-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;
}

.field {
  display: block;
  width: 100%;
  resize: none;
  min-height: 60px;
  max-height: 100px;
  padding: 18px;
  background-color: rgb(236, 239, 247);
  border: 0;
  outline: 0 solid rgb(236, 239, 247);
  color: hsl(235, 100%, 13%);
  border-radius: 10px;
  transition: outline 0.3s, background-color 0.3s;
}
.field::-moz-placeholder {
  color: rgb(95, 135, 180);
  font-style: italic;
}
.field::placeholder {
  color: rgb(95, 135, 180);
  font-style: italic;
}
.field--textarea {
  min-height: 200px;
}
.field:focus {
  background-color: #fff;
  outline: 4px solid hsl(235, 100%, 13%);
}

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */
.form-contacts {
  margin-top: 30px;
}
.form-contacts label {
  color: hsl(235, 100%, 13%);
}
.form-contacts__row {
  position: relative;
}
.form-contacts__row + .form-contacts__row {
  margin-top: 30px;
}
.form-contacts__actions {
  text-align: center;
  padding-top: 30px;
}

/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */
[class^=list-] {
  list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
  width: 100%;
  text-transform: uppercase;
  font-size: 22px;
}
.nav a {
  display: block;
  padding: 15px 0;
  color: #111;
  transition: text-shadow 0.25s;
}
.nav a span {
  position: relative;
  display: inline-block;
  transform: scaleX(0.9);
  letter-spacing: 0.1em;
  margin-right: -0.15em;
  transition: transform 0.5s, letter-spacing 0.25s;
}
.nav a span:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  display: inline-block;
  width: 14px;
  height: 3px;
  transform: translate3d(0, 0, 0) translateX(-50%);
  margin-left: -0.15em;
  background-color: #111;
  transition: width 0.4s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), box-shadow 0.5s;
}
.nav a.active, .nav a:hover {
  text-shadow: 0 0 40px white;
  transition: text-shadow 0.5s;
}
.nav a.active span, .nav a:hover span {
  transform: translate3d(0, 0, 0) scaleX(1);
  letter-spacing: 0.3em;
  transition: transform 0.25s, letter-spacing 0.25s;
}
.nav a.active span:after, .nav a:hover span:after {
  width: calc(100% - 32px);
  box-shadow: 0 0 40px white;
  transition: width 0.3s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), box-shadow 0.25s;
}
.nav .has-dropdown ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(50%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.nav.extended li:not(.has-dropdown) {
  display: none;
}
.nav.extended .has-dropdown > a {
  display: none;
}
.nav.extended .has-dropdown ul {
  transform: translateY(-50%) scaleX(100%);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav.extended .has-dropdown li {
  display: block;
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
.section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}
.section--colour {
  background-color: #f2e8d0;
  background: linear-gradient(55deg, rgb(244, 218, 132) 0%, #f2e8d0 100%);
}
.section--slider {
  position: relative;
  padding-top: 50px;
  background: #eee;
  background: linear-gradient(180deg, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
}
.section--grey {
  position: relative;
  padding-top: 50px;
  background: #f3f3f3;
}
.section--white {
  position: relative;
  padding-top: 50px;
  background: #fff;
}
.section--medium {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section--medium {
    padding: 50px 0;
  }
}
.section--thin {
  padding: 30px 0;
}

/* ------------------------------------------------------------ *\
	Widgets
\* ------------------------------------------------------------ */
.widgets {
  list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	Widget
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */
.intro {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  text-align: center;
  color: #f2e8d0;
}
.intro__forground {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}
.intro__forground:not(.intro__forground--no-fade)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.4;
}
.intro--small {
  height: 480px !important;
  margin-bottom: 0;
}
.intro--small .intro__forground::before {
  opacity: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
@media (max-width: 1023px) {
  .intro--small {
    height: 360px !important;
  }
}
@media (max-width: 767px) {
  .intro--small {
    height: 180px !important;
  }
}
.intro__image {
  display: flex;
  align-items: center;
  min-height: 500px;
}
@media (max-width: 1023px) {
  .intro__image {
    min-height: 0;
  }
}
.intro__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .intro__content {
    flex-direction: column;
    left: 0;
    width: 100%;
    padding: 0 30px;
    transform: translate(0, -50%);
  }
}
.intro__title {
  position: relative;
  text-transform: uppercase;
  transform: scaleX(0.9);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.intro__title span {
  font-size: 36px;
  letter-spacing: 0.1em;
  margin-left: -0.1em;
}
.intro__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}
@media (max-width: 1023px) {
  .intro__actions {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .intro__actions {
    padding-top: 40px;
  }
}
.intro__actions > a + a {
  margin-left: 30px;
}
@media (max-width: 1023px) {
  .intro__actions > a + a {
    margin: 30px 0 0;
  }
}
.intro__foot {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .intro__foot {
    padding-top: 20px;
  }
}

/* ------------------------------------------------------------ *\
	Sky
\* ------------------------------------------------------------ */
.sky {
  position: relative;
  height: 100vh;
  width: 300vw;
  background-size: auto 100%;
  background-position: 0 0;
  background-color: #000;
}
.sky.active .sky__object {
  animation-play-state: paused;
}
.sky .sky__object {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-size: auto 100%;
  background-position: 0 0;
  transition: background-position 10s;
}
.sky .sky__object:nth-child(1) {
  animation-name: movement-1;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__object:nth-child(2) {
  animation-name: movement-2;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__object:nth-child(3) {
  animation-name: movement-3;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__object:nth-child(4) {
  animation-name: movement-4;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__object:nth-child(5) {
  animation-name: movement-5;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__object:nth-child(6) {
  animation-name: movement-6;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__object:nth-child(7) {
  animation-name: movement-7;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.sky .sky__special {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 40px;
  height: 1px;
  opacity: 0;
  background-color: #f2e8d0;
  box-shadow: 0 0 5px #f2e8d0;
  animation-name: falling-star-animation;
  animation-duration: 7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes movement-1 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-30vw);
  }
}
@keyframes movement-2 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-40vw);
  }
}
@keyframes movement-3 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-50vw);
  }
}
@keyframes movement-4 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-70vw);
  }
}
@keyframes movement-5 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-85vw);
  }
}
@keyframes movement-6 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-100vw);
  }
}
@keyframes movement-7 {
  from {
    transform: translate3d(0, 0, 0) translateX(0);
  }
  to {
    transform: translate3d(0, 0, 0) translateX(-130vw);
  }
}
@keyframes falling-star-animation {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(45deg) scale(1);
  }
  80% {
    opacity: 0;
    transform: translate(0, 0) rotate(45deg) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(45vw, 45vw) rotate(45deg) scale(0.5);
  }
}
/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article__head {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
@media (max-width: 767px) {
  .article__head {
    align-items: flex-start;
  }
}
.article__head.article__head--alt {
  margin-top: -172px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .article__head.article__head--alt {
    margin-top: -120px;
    padding-bottom: 30px;
  }
}
.article__title {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: 0.075em;
  line-height: 1.3;
}
.article__title-large {
  margin-bottom: 16px;
  font-size: 40px;
  letter-spacing: 0.075em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .article__title-large {
    margin-bottom: 10px;
    font-size: 28px;
  }
}
.article__subtitle-small {
  padding-top: 10px;
  margin-bottom: 30px;
}
.article__subtitle-large {
  font-size: 22px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .article__subtitle-large {
    font-size: 18px;
  }
}
.article:last-child:not(:first-child) .article__head {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.article__image {
  min-width: 96px;
  margin-right: 25px;
}
.article__image img {
  border-radius: 20px;
}
.article__image-large {
  min-width: 96px;
  margin-right: 32px;
}
@media (max-width: 767px) {
  .article__image-large {
    margin-right: 25px;
  }
}
.article__image-large img {
  box-shadow: 0 10px 10px 0 rgba(17, 17, 17, 0.3);
  border-radius: 40px;
}
@media (max-width: 767px) {
  .article__image-large img {
    border-radius: 20px;
  }
}
.article__image-news {
  margin-bottom: 50px;
}
.article__image-news img {
  border-radius: 40px;
}
.article__entry {
  text-align: justify;
}
.article__entry p {
  margin-bottom: 30px;
}
.article__entry p:last-child {
  margin-bottom: 0;
}
.article__entry ul {
  margin: 0 0 20px 17px;
}
.article__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}
@media (max-width: 1023px) {
  .article__actions {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .article__actions {
    padding-top: 32px;
  }
}
.article__actions > a + a {
  margin-left: 30px;
}
@media (max-width: 1023px) {
  .article__actions > a + a {
    margin: 30px 0 0;
  }
}
.article__actions-small {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}
.article__actions-small > a + a {
  margin-left: 30px;
}
@media (max-width: 1023px) {
  .article__actions-small {
    margin-bottom: -15px;
    flex-wrap: wrap;
  }
  .article__actions-small a {
    margin: 0 7px 15px !important;
  }
}
.article--center {
  text-align: center;
}

/* ------------------------------------------------------------ *\
	Article News
\* ------------------------------------------------------------ */
.article-news {
  display: flex;
  padding-top: 15px;
}
.article-news + .article-news {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  margin-top: 40px;
  padding-top: 40px;
}
.article-news__body {
  margin-bottom: 20px;
}
.article-news__title {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.075em;
  line-height: 1.3;
}
.article-news__date {
  color: #666;
}
.article-news__image {
  min-width: 256px;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .article-news__image {
    min-width: 96px;
  }
}
.article-news__image img {
  border-radius: 20px;
}

.subscribe {
  display: flex;
  margin-left: 100px;
}
.subscribe__field {
  width: 200px;
  padding: 15px 20px;
  border: 0;
  background-color: rgb(0, 54, 99);
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  transition: background-color 0.3s;
}
.subscribe__field:focus {
  background-color: #f2e8d0;
  color: #000636;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contacts__title {
  margin-bottom: 15px;
  font-size: 30px;
}
.contacts__entry {
  margin-bottom: 40px;
  font-size: 22px;
}

/* ------------------------------------------------------------ *\
	Swipper
\* ------------------------------------------------------------ */
.js-swiper-hor,
.js-swiper {
  position: relative;
  overflow: visible;
  margin: 160px 0;
}
@media (max-width: 1023px) {
  .js-swiper-hor,
  .js-swiper {
    margin: 40px 0 60px;
  }
}
@media (max-width: 767px) {
  .js-swiper-hor,
  .js-swiper {
    margin: 30px 0 35px;
  }
}
.js-swiper-hor .swiper-slide,
.js-swiper .swiper-slide {
  border-radius: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.5s, border-radius 0.5s, box-shadow 0.5s;
}
@media (max-width: 1023px) {
  .js-swiper-hor .swiper-slide,
  .js-swiper .swiper-slide {
    border-radius: 10px;
  }
}
.js-swiper-hor .swiper-slide.swiper-slide-active,
.js-swiper .swiper-slide.swiper-slide-active {
  transform: scale(1.5);
  z-index: 5;
  box-shadow: 0 0 20px 0 rgba(17, 17, 17, 0.6);
}
@media (max-width: 1023px) {
  .js-swiper-hor .swiper-slide.swiper-slide-active,
  .js-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
.js-swiper-hor .swiper-slide.swiper-slide-next, .js-swiper-hor .swiper-slide.swiper-slide-prev,
.js-swiper .swiper-slide.swiper-slide-next,
.js-swiper .swiper-slide.swiper-slide-prev {
  transform: scale(1.25);
  z-index: 4;
  box-shadow: 0 0 10px 0 rgba(17, 17, 17, 0.5);
}
@media (max-width: 1023px) {
  .js-swiper-hor .swiper-slide.swiper-slide-next, .js-swiper-hor .swiper-slide.swiper-slide-prev,
  .js-swiper .swiper-slide.swiper-slide-next,
  .js-swiper .swiper-slide.swiper-slide-prev {
    transform: scale(1);
  }
}
.js-swiper-hor:before,
.js-swiper:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 310px;
  height: 650px;
  transform: translate(-50%, -50%);
  background-color: black;
  border-radius: 42px;
}
@media (max-width: 1023px) {
  .js-swiper-hor:before,
  .js-swiper:before {
    display: none;
  }
}
.js-swiper-hor:after,
.js-swiper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 315px;
  height: 656px;
  transform: translate(-50%, -50%);
  background-image: url(images/phone.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 6;
  pointer-events: none;
  border-radius: 41px;
  box-shadow: 0 10px 14px 5px rgba(17, 17, 17, 0.25);
}
@media (max-width: 1023px) {
  .js-swiper-hor:after,
  .js-swiper:after {
    display: none;
  }
}
.js-swiper-hor--horizontal:before, .js-swiper-hor--horizontal:after,
.js-swiper--horizontal:before,
.js-swiper--horizontal:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.js-swiper-main .swiper-pagination {
  display: inline-flex;
  position: absolute;
  bottom: 40px !important;
  left: 50% !important;
  width: auto !important;
  transform: translateX(-50%);
  padding: 8px 5px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .js-swiper-main .swiper-pagination {
    bottom: 30px !important;
    padding: 6px 3px;
  }
}
.js-swiper-main .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 10px !important;
  background-color: #fff;
  opacity: 0.3;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 767px) {
  .js-swiper-main .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 5px !important;
  }
}
.js-swiper-main .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.5, 1.5);
}
@media (max-width: 767px) {
  .js-swiper-main .swiper-pagination-bullet-active {
    transform: scale(1.4, 1.4);
  }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  text-align: center;
}
@media (max-width: 1023px) {
  .socials > ul {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .socials > ul {
    flex-wrap: wrap;
    margin-bottom: -20px;
  }
}
.socials li + li {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .socials li + li {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .socials li {
    display: inline-block;
    margin-bottom: 20px;
    width: 25%;
  }
}
@media (max-width: 1023px) {
  .socials--small {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .socials--small li {
    width: 20%;
  }
}
.socials--small ul {
  justify-content: center;
}
.socials a {
  display: inline-block;
  transition: transform 0.3s;
}
.socials a:hover {
  transform: scale(1.5, 1.5);
}/*# sourceMappingURL=style.css.map */