.white-text,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text p,
.white-text a {
  color: #fff!important;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.white-text a:hover {
  color: #c32228!important;
}
.red-text,
.red-text h1,
.red-text h2,
.red-text h3,
.red-text h4,
.red-text p,
.red-text a {
  color: #c32228;
}
.text-center,
.text-center h1,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center p,
.text-center a {
  text-align: center;
}
.bold p{
  font-weight: bold; 
  text-transform: uppercase;
}
.width-container {
  float: none;
  max-width: 1200px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
#faq-tab {
  padding: 1rem;
  background-color: #000;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.list-unstyled li {
  cursor: pointer;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 24px;
  line-height: 35px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.00px;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.list-unstyled li:hover,
.list-unstyled li.active {
  color: #dd3333;
}
/*--------------------------------------------------------------
# Acccordion
--------------------------------------------------------------*/
.accordion {
  cursor: pointer;
  padding: 15px 35px 15px 0px;
  width: 100%;
  border: none;
  border-radius: 0!important;
  text-transform: uppercase;
  text-align: left;
  outline: none;
  transition: 0.4s;
  position: relative;
  background-color: #fff;
}
.accordion h3 {
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.accordion:after {
  content: "\f067";
  color: #fff;
  background-color: #000;
  padding: 5px;
  font-family: FontAwesome;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  right: 0px;
  top: 15px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  height: 25px;
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.accordion.active:after {
  content: "\f068";
}
.accordion-wrap {
  border-bottom: 1px solid #000;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.accordion:focus h3,
.accordion.active h3,
.accordion:hover h3 {
  color: #c32228;
}
.panel {
  background-color: white;
  color: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p{
  padding-bottom: 15px;
}
/*--------------------------------------------------------------
# Gravity forms
--------------------------------------------------------------*/
.gform_wrapper,
#field_2_1 .ginput_container,
#field_2_1 select {
  margin-top: 0!important;
}
#contact {
  padding: 40px 0 !important;
}
form.contact-form-class .gform_footer {
  margin-top: 0 !important;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
@media only screen and (max-width: 768px){
  #contact-info {
    text-align: center;
    padding-bottom: 25px;
  }
  .faq-tabs{
    padding: 0!important;
  }
  .list-unstyled li {
    padding: .5rem 0;
    border-bottom: 1px #555 solid;
  }
  form.contact-form-class .gform_footer {
    float: right !important;
    margin-top: 10px !important;
    width: 50% !important;
  }
}
@media only screen and (min-width: 768px){
  .list-unstyled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .d-md-flex .full_section_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-md-flex .vc_col-sm-6 {
      width: auto;
      max-width: 100%;
  }
  #contact-info {
    padding-right: 3rem;
    min-width: 350px;
  }
}