html {
  min-height: 100%
}
html, body {
  height: 100%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  margin: 0;
}
a {
  text-decoration: none;
}
.container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 320px;
}
.left-column {
  display: flex;
  justify-content: center;
  /*align-items: center;*/
}
.right-column {
  background: url("../img/bg.jpg") no-repeat 0 50%/cover;
}
.content {
  display: grid;
  padding: 2em 1em 4em;
}
.title {
  font-size: 2.8em;
  font-weight: 400;
  padding-top: 2em;
}
.text {
  color: rgba(0, 0, 0, 0.44);
  line-height: 1.5em;
}
.logo {
  max-width: 12em;
  width: 100%;
}
.btn {
  /*display: block;*/
  max-width: 12em;
  width: 100%;
  height: auto;
}
.btn2 {
  background: #11e2ff;
  color: #fff;
  border-radius: 50em;
  padding: 1.2em 3em;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color .3s linear;
}
.btn2:hover {
  background: #0085ff;
}

.footer {
  display: grid;
  align-items: end;
}
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: rgba(0,0,0,.5);
  padding-top: 2em;
}
.info b {
  color: #000;
}
.info span {
  font-size: .9em;
}
.item1 {
  grid-column: 1;
  grid-row: 1;
}
.item1 p{
  padding-left: 2em;
  background: url("../img/mail_ico.svg") no-repeat 0 10px/1.2em;
}
.item2 {
  grid-column: 1;
  grid-row: 2;
}
.item2 p{
  padding-left: 2em;
  background: url("../img/phone_ico.svg") no-repeat 0 10px/1.2em;
}
.item3 {
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
  font-size: .9em;
  line-height: 1.4em;
  color: rgba(0,0,0,.7);
}
.item3 p{
  padding-left: 2em;
  background: url("../img/info_ico.svg") no-repeat 0 10px/1.2em;
}
.show_mob {
  display: none;
}
@media all and (min-width: 1920px) and (orientation:landscape) {
  html {
    font-size: 1.5vmin;
  }
}
@media all and (max-width: 900px) {
  html, body {
    height: auto;
  }
  header {
    position: absolute;
    top: 2em;
  }
  .title{
    padding-top: 0;
  }
  .info {
    display: block;
  }
  .item3 {
    white-space: normal;
    max-width: 24em;
  }
  .container {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }
  .right-column {
    background: url("../img/bg_mob.jpg") no-repeat 0 100%/cover;
    min-height: 34em;
    grid-column: 1;
    grid-row: 1;
  }
  .hidden {
    display: none;
  }
  .show_mob {
    display: block;
  }
}
@media all and (max-width: 600px) {
  .right-column {
    min-height: 22em;
  }
}
@media all and (max-width: 450px) {
  body {
    overflow-x: hidden;
  }
  .title {
    font-size: 2em;
  }
  .hidden_450 {
    display: none;
  }
}
@media all and (max-width: 330px) {
  .title {
    font-size: 1.9em;
  }
}
