@import url('https://fonts.googleapis.com/css?family=Pacifico|Rock+Salt');

html, body, section {
    height: 100%;
}

body {
    color: #fff;
    text-align: center;
}

.xop-container {
    display: flex;
}

div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.xop-left {
    background: linear-gradient(rgba(18, 116, 172, 0.4), rgba(255,255,255,0.5)),         url(../images/contact_packaging-1.jpg);
    background-size: contain;
    background-position: center;
    flex: 1;
    padding: 1rem;
    transition: all .2s ease-in;
        background-repeat: no-repeat;
}

.xop-right {

    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(30, 185, 168,0.4)),         url(../images/contact-1.jpg);
        background-size: contain;
        background-position: center;
    flex: 1;
        background-repeat: no-repeat;
    padding: 1rem;
    transition: all .2s ease-in;
}

.xop-left:hover, .xop-right:hover {
    transform: scale(0.95);
}

.xop-left h1 {
    font-family: 'Rock Salt', cursive;
    font-size: 6rem;
}

.xop-right h1 {
    font-family: 'Pacifico', cursive;
    font-size: 6rem;
}

.xop-button {
    border-radius: 30px;
    color: #fff;
    background-color: #fcad26;
    padding: 1.5%;
    margin: 0 2%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 150px;
}

.xop-button:hover {
    background: #fcc567;
    color: #fff;
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/


@media (min-width: 481px) {
  
  .hide1 {
    display: flex;
  }
  .hide3 , .hide4 {
    display: none !important;
  }

  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  .hide1 {
    display: none;
  }
  section
  {
    height: 50%;
  }
  
}










