/*
Theme Name: Sprung-Total
Theme URI:
Description:
Author: Sprung Interactive
Author URI: http://madebysprung.com
Template: Total
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


/* TYPOGRAPHY */
body {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
    box-sizing: border-box;
}

h1 {
    color: #e2168f;
    font-weight: normal;
    font-size: 40px;
    line-height: 1.1;
}

.large-body {
    font-size: 30px;
}

.text-center {
    text-align: center;
}


/* BUTTONS AND LINKS */
button {
    border: 2px solid #e2168f;
    border-radius: 8px;
    background: #e2168f;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 24px;
    transition: all ease .15s;
    cursor: pointer;
}

button:hover {
    background: #ffffff;
    color: #e2168f;
}

button.orange {
    border-color: #fc7e1c;
    background: #fc7e1c;
}

button.orange:hover {
    background: #ffffff;
    color: #fc7e1c;
}

button.blue {
    border-color: #208dd8;
    background: #208dd8;
}

button.blue:hover {
    background: #ffffff;
    color: #208dd8;
}

button.purple {
    border-color: #a849ae;
    background: #a849ae;
}

button.purple:hover {
    background: #ffffff;
    color: #a849ae;
}





/* SITE STYLES */
.banner {
    background-image: url("img/cans-with-contails.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 66vw;
    max-height: 900px;
    min-height: 525px;
    padding-top: 50px;
    position: relative;
}

.banner>.overlay {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .1) 100%);    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.banner img {
    margin: auto;
}

.banner .container {
    position: relative;
    z-index: 1;
}

.container {
    width: 90vw;
    max-width: 980px;
    margin: auto;
}

.container.row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.container.row>.column-6 {
    width: calc(50% - 25px);
}

.can-item {
    display: flex;
    gap: 30px;
}

.can-item .can-img,
.can-item .can-details {
    width: calc(50% - 15px);
}

.can-item .can-img img {
    width: 100%;
    height: auto;
}

.can-item .can-details {
    display: flex;
    flex-direction: column;
}


/* All Devices under 900px
--------------------------------------------------------------*/
@media only screen and (max-width: 880px) {
  .container.row {
      justify-content: center;
  }

  .container.row>.column-6 {
      width: 80%;
  }


}


/* Phone Portrait and Landscape
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  h1 {
      font-size: 30px;
  }

  body {
      font-size: 18px;
  }

  .large-body {
      font-size: 25px;
  }

  button {
      font-size: 16px;
  }

  .container.row>.column-6 {
      width: 100%;
  }

  .can-item .can-img {
      width: calc(40% - 15px);
  }

  .can-item .can-details {
      width: calc(60% - 15px);
  }

  .can-item .can-details p:first-child {
      margin-top: 0;
  }



}
