@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);
* {
  box-sizing: inherit;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
body {
    background-color: black;
    margin: auto;
    width: 30%;
    color: whitesmoke;
    overflow-x: hidden;
}

input {
    border-style: hidden;
    background-color: whitesmoke;
}

input:focus{
    background-color: whitesmoke;
}

input:hover{
    background-color: whitesmoke;
}

.tab {
    left: 47%;
    top: 5%;
}

.center {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
    width: 100%;
}

.logo {
    height: 148px;
    width: 190px;
    margin: auto;
    left: 44%;
}

.map1 {
    position: absolute;
    right: 72%;
}

.map12 {
    width: 474px;
    height: 555px;
}

.map2 {
    position: absolute;
    left: 72%;
}

.map22 {
    width: 474px;
    height:555px;
}

.joindis {
    text-align: center;
}

.p {
    font-weight: 35px;
    font-family: 'Roboto', sans-serif;
}
footer {
    text-align: center;
    font-size: 1.12em;
}
.buttons {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 1.5em;
    color: whitesmoke;
}

.container {
    -webkit-box-align: center;
            align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    padding: 1em;
    text-align: center;
}
@media (min-width: 600px) {
    .container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      -webkit-box-pack: justify;
              justify-content: space-between;
    }
}
  
h1 {
    color: whitesmoke;
    font-size: 1.25em;
    font-weight: 900;
    margin: 0 0 2em;
}
  
h2 {
    color: whitesmoke;
    font-size: 1.20em;
    font-weight: 800;
    margin: 0 0 2em;
}
  
@media (min-width: 450px) {
    h1 {
        font-size: 1.75em;
    }
}
@media (min-width: 760px) {
    h1 {
        font-size: 3.25em;
    }
}
@media (min-width: 900px) {
    h1 {
        font-size: 5.25em;
        margin: 0 0 1em;
    }
}
.btn {
    color: whitesmoke;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 275px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}
@media (min-width: 600px) {
    .btn {
      margin: 0 1em 2em;
    }
}
.btn:hover {
    text-decoration: none;
}
.btn-2 {
    letter-spacing: 0;
}
      
.btn-2:hover,
.btn-2:active {
    letter-spacing: 5px;
}
      
.btn-2:after,
.btn-2:before {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border: 1px solid whitesmoke;
    bottom: 0px;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 280ms ease-in-out;
    transition: all 280ms ease-in-out;
    width: 0;
}
      
.btn-2:hover:after,
.btn-2:hover:before {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-color: whitesmoke;
    -webkit-transition: width 350ms ease-in-out;
    transition: width 350ms ease-in-out;
    width: 70%;
}
      
.btn-2:hover:before {
    bottom: auto;
    top: 0;
    width: 70%;
}
