/*======================================
Theme Name: USRBP Employer Theme 3
Theme URI: https://employer-theme-3.mybenfitsinfo.com
Description: Theme 3 for Employer Web Sites by USRBP. Requires ACF Pro
Version: 1.1
Author: Kevin Dunn
Author URI: 
Template: Divi
======================================*/

/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */

/* Styles for Copyright */

.copyright {
    font-size: 12px;
    color: white;
    font-variant: normal;
    font-weight: 700;
    text-align: center;
  }

/* Styles for homepage grid */

.benefits-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 600px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-cards {
    grid-template-columns: repeat(4, 24%);
  }
}

.benefits-card {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
}

.benefits-card-name {
  font-size: 20px;
  font-variant: normal;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}


/* Styles for Language Group */


.lg-row {
  display: flex;
  flex-direction: row;
  box-shadow: 20px 20px 10px grey;
  padding: 1em;
  margin-bottom: 30px;
  border-color: gray;
  border-width: 2px;
  border-style: solid;
  }


.lg-row .lg-infotext {
  width: 60%;
  margin-right: 1em;
}

.lg-row .lg-buttongroup {
  width: 40%;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .lg-row {
    display: flex;
    flex-direction: column;
    box-shadow: unset;
    padding: 1em;
    margin-bottom: 30px;
    border-color: gray;
    border-width: 2px;
    border-style: solid;
    }

    .lg-row .lg-infotext {
      margin-right: unset;
      width: 100%;
      padding: 1em;
      margin: unset;
    }
    
    .lg-row .lg-buttongroup {
      width: 100%;
      padding: 1em;
      margin: unset;
    }
    
  }

.lg-button {
  color: #FFFFFF!important;
  box-sizing: border-box;
  border-radius: 100px;
  background-color: #00549e;
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding: .3em 1em;
  line-height: 1.7em!important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid;
  transition-property: all!important;
  align-self: stretch;
  text-align: center;
  vertical-align: baseline;
  width: 100%;
  margin-bottom: 1em;
}

