﻿ 
/*@import url(http://fonts.googleapis.com/css?family=Inconsolata:400,700&subset=latin,latin-ext);*/
 
/*$primary-color: #F5A623;
$secondary-color: #2D2E31;*/
 
/*body {
  font-family: 'Inconsolata';
  background-color: #D8D8D8;
  font-weight: 400;
  font-size: 14px;
  padding: 0;
  margin: 0;
}*/
 
/*p {
  line-height: 22px;
}
 
h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}
 
h3, h4 {
  margin: 0;
 
}*/

.title {
    background-color: #057eb3;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 1px;
    padding-bottom: 1px;
    border-bottom: 1px solid white;
    -webkit-transition: background 800ms ease;
    -o-transition: background 800ms ease;
    transition: background 800ms ease;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
    h3{
    -webkit-transition: color 800ms ease;
    -o-transition: color 800ms ease;
    transition: color 800ms ease;
  }
  &:after {
    position: absolute;
    content: "\f107";
    font-family:FontAwesome;
    font-size: 24px;
    right: 10px;
    top: 50%;
    -webkit-transition: all 800ms ease;
    -o-transition:  all 800ms ease;
    transition: all 800ms ease;
    -ms-transform: translate(0, -50%); /* IE 9 */
    -webkit-transform: translate(0, -50%); /* Safari */
    transform: translate(0, -50%);
 
  }
  &:hover {
    background-color: #2D2E31;
    color: white;
  }
  &.active {
    background-color: #2D2E31;
    color: white;
    &:after{
 
      ms-transform: rotate(180deg) translate(0, 50%); /* IE 9 */
      -webkit-transform: rotate(180deg) translate(0, 50%); /* Chrome, Safari, Opera */
      transform: rotate(180deg) translate(0, 50%);
    }
  }
}

.content {
  /*background-color: #f9f9f9;*/
  color: #2D2E31;
  padding: 15px 15px;
  display: none;
  line-height:30px;
}
 
article {
  width: 92%;
  position: relative;
  padding-left: -15px;
  padding-right: -15px;
}
 
.mc-accordion{
  article {
    &:last-child {
      .title{
        border-bottom: none;
      }
    }
 
  }
}
 
.lg-cont{
  width: 100%;
  text-align: center;
  h1{
    span{
      color: #F5A623;
    }
  }
}
.container {
  &:before {
    display: table;
    content: "";
  }
  &:after {
    clear: both;
  }
}
 
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}
h3 {
    color: #FFFFFF;
    margin-top: 10px;
}
p{
    padding-right: 15px;
    padding-top: 10px;
}
/** Responsive **/
@media (min-width: 768px) {
  .container {
    width: 750px
  }
}
 
@media (min-width: 992px) {
  .container {
    width: 970px
  }
}
 
@media (min-width: 1200px) {
  .container {
    width: 1170px
  }
}