* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #e9e9e9;
    font-weight: 300;
    font-size: 16px;
    color: #2e2e2e;
}

p, a {
    text-decoration: none;
    color: #2e2e2e;
    transition: color .3s ease-in-out;
}

a:hover {
    color: #c8aa57;
}

.main__container .outer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 8;
    padding: 5vw;
}

.main__container .outer .one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
    flex: 2;
    text-align: center;
}

.main__container .outer .one h2 {
    font-weight: 500;
    font-size: 64px;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
}

.main__container .outer .two {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 2;
    row-gap: 25px;
    text-align: center;
}

.main__container .outer .two .logo {
    padding-right: 50px;
    border-right: 1px solid #00000057;
    width: 300px;
}

.main__container .outer .two .address {
    padding-left: 50px;
}

.main__container .outer .three {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    text-align: center;
}
.bg {
position: fixed;
top: -50%;
left: -50%;
right: -50%;
bottom: -50%;
width: 200%;
height: 200vh;
background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
background-repeat: repeat;
animation: bg-animation .2s infinite;
opacity: .9;
visibility: visible;
z-index: -1;
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

button {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 1px solid #00000057;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
  }
  
  button:after {
    content: "";
    background-color: #c8aa57;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
  }
  
  button:hover:after {
    top: 0px;
    left: 0px;
  }
  
  @media screen and (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .main__container .outer .one {
        justify-content: center;
    }

    .main__container .outer .one h2 {
        font-size: 32px;
    }

    .main__container .outer .two {
        flex-direction: column;
        justify-content: center;
    }

    .main__container .outer .two .logo {
        border: none;
        padding-right: 0;
    }

    .main__container .outer .two .address {
        padding-left: 0;
    }
  }
