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

html, body { margin: 0;  padding: 0; }

body {
  font-size: 14px;
  line-height: 1.8;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}

.page-home {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  /* background-image: url('../img/page_bg.jpg'); */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home:before {
  content: '';
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .1;
}


.line { margin: 0; text-align: center; display: block;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
img {
  width: 600px;
  max-width: 90%;

}
.line:after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 8px;
  background-color: #a48a7a;
  content:"";
  border-radius: 4px;
}



section {
  color: #000;
  bottom: 0;
  right: 0;
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 30px;
}

.logo img {
  display: block;
  max-width: 600px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

h1 { font-size: 18px; letter-spacing: .1em; line-height: 1; margin-bottom: 15px;}
h2 { font-size: 34px; letter-spacing: .1em; line-height: 1; margin: 50px 0 75px; }
a { color: #000; }



iframe {
  width: 600;
  height: 250px;
  margin-left:auto;
  margin-right: auto;
  display: block;
}


@media screen and ( max-width: 1024px ) {}
@media screen and ( max-width: 768px ) {}
@media screen and ( max-width: 540px ) {
  .logo svg { max-width: 200px; }
  h2 { font-size: 50px; margin: 25px 0 45px;}
  h1 { font-size: 16px; }
  span { display: block; }
  span.hide { display: none !important; }
}