@import url('https://fonts.googleapis.com/css?family=Open+Sans:300&subset=latin-ext');
:root {
  --white: #fff;
  --gray-dark: #343a40;
  --text: #707070;
  --gold: #e6c45f;
  --light: #f7f7f7;
  --gray: #393939;
}
html {
  height: 100%;
  width: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: url("../images/bg.png") no-repeat right top;
  background-size: cover;
  position: relative;
  height: 100%;
}
a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.inline_list li {
  display: inline-block;
  list-style: none;
  margin-left: 20px;
}
.info {
  position: relative;
  width: 500px;
  top: calc(50% - 134px);
}
@media (max-width: 520px) {
  .info {
    width: 100%;
  }
}
.info h1 {
  color: var(--white);
  padding-left: 90px;
  font-size: 40px;
}
@media (max-width: 520px) {
  .info h1 {
    padding-left: 20px;
    font-size: 25px;
  }
}
.info .split_line {
  background: var(--gold);
  height: 5px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.info ul {
  padding: 0 0 0 90px;
  margin: 0;
}
@media (max-width: 520px) {
  .info ul {
    padding: 0 0 0 20px;
  }
}
.info ul li {
  position: relative;
  margin-bottom: 10px;
  list-style: none;
}
.info ul li .icon {
  width: 26px;
  height: 25px;
}
.info ul li a {
  color: var(--white);
  font-size: 19px;
  letter-spacing: 1px;
  margin-left: 10px;
}
.info ul li a:hover {
  color: var(--gold);
  text-decoration: none;
}
.logo {
  position: absolute;
  top: 90px;
  right: 70px;
  max-width: 250px;
}
.logo img {
  max-width: 100%;
}
@media (max-width: 860px) {
  .logo {
    display: none;
  }
}
