/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a {
  text-decoration: none;
}
a:hover {
  color: #a4350f;
}
body {
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  min-width: 320px;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.is-underlined {
  border-bottom: 2px solid #fff;
}
.slider {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.slider_item {
  position: relative;
  width: 100%;
  height: 100vh;
}
.slider_item--1 {
  background: url(../images/home2.jpg);
  background-size: cover;
}
.slider_item--2 {
  background: url(../images/trinity-nguyen-xQhqS7OWEqE-unsplash.jpg);
  background-size: cover;
}
.slider_item--3 {
  background: url(../images/home1.jpg);
  background-size: cover;
}
.slider_item--4 {
  background: url(../images/home3.jpg);
  background-size: cover;
}
.slider_item:after {
  position: absolute;
  content: '';
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page {
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  padding: 0 16px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.page__header {
  width: calc(100% - 32px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page__content {
  width: calc(100% - 32px);
  height: calc(100vh - 70px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page h1 {
  color: #fff;
  font-weight: bold;
  font-size: 70px;
  line-height: 1.4;
}
.page-header__logo {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
.page-content__intro {
  margin-bottom: 0;
  color: #fff;
  font-size: 36px;
  margin-top: 25px;
  line-height: 1.4;
}
.navbar-toggler-icon {
  background: url(../images/menu-hamburger-white.svg) left top no-repeat;
  width: 28px;
  height: 27px;
  display: none;
  cursor: pointer;
}
.navbar-toggler-close {
  background: url(../images/white-close.svg) left top no-repeat;
  width: 28px;
  height: 28px;
  display: none;
  cursor: pointer;
  position: absolute;
  z-index: 13;
  padding: 5px;
  box-sizing: border-box;
  top: 15px;
  right: 20px;
}
.header-menu {
  display: flex;
}
.header-menu:before {
  transition: opacity 2s ease-out;
  content: '';
  position: absolute;
  background: #fff;
  opacity: 0;
  width: 320px;
  height: 100%;
  right: 0;
  top: 0;
}
.header-menu__submenu {
  padding: 20px 0;
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.header-menu__submenu li {
  display: block;
  border-bottom: 1px solid #fff;
}
.header-menu__submenu li:first-child {
  border-top: 1px solid #fff;
}
.header-menu__submenu li a {
  padding: 15px 0;
}
.header-menu__submenu:before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-menu__item {
  display: inline-flex;
  color: #fff;
  margin-left: 25px;
  position: relative;
}
.header-menu__item:first-child {
  margin-left: 0;
}
.header-menu__item a {
  display: block;
  color: #fff;
}
.header-menu__item a:hover {
  color: #fff;
}
.header-menu__item > a {
  padding: 20px 0;
}
.header-menu__item.has-submenu > a {
  padding-right: 25px;
}
.header-menu__item.has-submenu > a:after {
  content: "";
  position: absolute;
  background: url(../images/chevron_down.svg) top left no-repeat;
  width: 20px;
  height: 15px;
  right: 0;
  top: 20px;
}
.header-menu__item.has-submenu:hover .header-menu__submenu {
  display: block;
}
.header-menu__item.has-submenu:hover a:after {
  transform: rotate(-180deg);
  right: 5px;
  top: 21px;
}
.header-menu__submenu {
  display: none;
}
@media (max-width: 1439.98px) {
  .header-menu__item {
    margin-left: 20px;
  }
}
@media (max-width: 1340.98px) {
  .header-menu__item {
    margin-left: 15px;
    font-size: 15px;
  }
  .header-menu__item.has-submenu > a {
    padding-right: 25px;
  }
  .header-menu__item.has-submenu > a:after {
    right: 0;
    top: 19px;
  }
  .header-menu__item.has-submenu:hover a:after {
    right: 5px;
    top: 21px;
  }
}
@media (min-width: 1250px) and (min-width: 1250px) {
  body.has-overlay .page-overlay {
    opacity: 0 !important;
  }
}
@media (max-width: 1249.98px) {
  body.has-overlay .page-overlay {
    position: absolute;
    content: '';
    background: #000;
    opacity: 0.5 !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .navbar-toggler-icon {
    display: block;
  }
  .header-menu {
    display: none;
  }
  .page-header__menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
  }
  .page-header__menu.is-open #js-navbar-toggler {
    display: none;
  }
  .page-header__menu.is-open .navbar-toggler-close {
    display: block;
  }
  .page-header__menu.is-open .header-menu {
    padding: 20px;
    box-sizing: border-box;
    z-index: 5;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    display: block;
  }
  .page-header__menu.is-open .header-menu:before {
    opacity: 0.9;
  }
  .page-header__menu.is-open .header-menu a {
    color: #000;
  }
  .page-header__menu.is-open .header-menu a:hover {
    color: #a4350f;
  }
  .page-header__menu.is-open .header-menu__item {
    margin-left: 0;
    font-size: 16px;
  }
  .page-header__menu.is-open .header-menu__item > a {
    padding: 0;
  }
  .page-header__menu.is-open .header-menu__item > a:after {
    display: none;
  }
  .page-header__menu.is-open .header-menu > li {
    border-bottom: 1px solid #000;
    padding: 20px 0;
  }
  .page-header__menu.is-open .header-menu > li:last-child {
    border-bottom: none;
  }
  .page-header__menu.is-open .header-menu__submenu {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0 0 0 20px;
  }
  .page-header__menu.is-open .header-menu__submenu li {
    border: none;
    padding: 20px 0 0;
  }
  .page-header__menu.is-open .header-menu__submenu li a {
    padding: 0;
  }
  .header-menu {
    width: 300px;
  }
  .header-menu__item {
    display: block;
  }
  .page h1 {
    font-size: 58px;
  }
  .page-content__intro {
    font-size: 31px;
  }
}
@media (max-width: 991.98px) {
  .page h1 {
    font-size: 48px;
    line-height: 1.2;
  }
  .page__content {
    align-items: flex-start;
  }
  .page-content__intro {
    font-size: 23px;
  }
}
@media (max-width: 599.98px) {
  .page-header__logo {
    font-size: 20px;
  }
  .page h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .page-content__intro {
    font-size: 18px;
  }
}
/*# sourceMappingURL=styles.css.map */