/*
  This file contains all the base styling for sass files. Pulling in all the 
  necessary variables and mixins but does not actually output anything so is
  safe to use as a base for other css files without adding excessive weight
*/
/*********************
BREAKPOINTS
*********************/
/*
  screen-tiny: 321 - 320
  screen-xs: 480px - 767px
  screen-sm: 768px - 969px
  screen-md: 970px - 1199px
  screen-lg: 1200px
*/
/*********************
Placeholder
*********************/
/*********************
VENDOR PREFIX
*********************/
.group-callout-copy-div-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 27px;
  /*
    Min:  - 
    Max: screen-md - 969px
  */
}

@media screen and (max-width:969px) {
  .group-callout-copy-div-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.group-callout-copy-div-wrapper,.group-callout-copy-div-wrapper p {
  font-size: 18px;
  line-height: 1.4em;
  font-family: "Roboto Condensed",sans-serif;
  font-weight: 300;
}

@media screen and (min-width:768px) {
  .group-callout-copy-div-wrapper,.group-callout-copy-div-wrapper p {
    font-size: 22px;
    font-size: 26px;
  }
}

.group-callout-copy-div-wrapper a {
  color: #d92231;
  text-decoration: underline;
  font-weight: 300;
}

@media screen and (min-width:768px) {
  .group-callout-copy-div-wrapper {
    margin-top: 60px;
  }
}

.group-callout-copy-div-wrapper .field-body {
  display: block;
}

@media screen and (min-width:768px) {
  .group-callout-copy-div-wrapper .field-body {
    padding: 0 30px;
  }
}

.group-callout-copy-div-wrapper .field-down-arrow-callout-copy {
  display: block;
  margin-top: 27px;
}
