

/**
 * Banner
 */

.brands-banner-container    {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 60px;
}

.brands-banner-container .mask     {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.brand-banner   {
    min-height: 310px;
    position: relative;
    display: flex;
    align-items: center;
}

.brand-banner h1    {
    color: #fff;
    font-size: 42px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .brand-banner h1    {
        font-size: 68px;
    }
}


/**
   * Questions
   */

.brand-question     {
  background: #376cab;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 10px;
}

.brand-question h4  {
    font-size: 44px;
    font-weight: 400;
    margin: 0 0 40px;
}

.brand-question h4 strong   {
    font-weight: 700;
}

.brand-question .action.primary     {
    background: #fff;
    color: #376cab;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-question .action.primary:hover,
.brand-question .action.primary:focus,
.brand-question .action.primary:active  {
    background: #f5f5f5;
    color: #376cab;
}


/**
 * Partners
 */

.partners-container     {
    background: #eee;
    padding: 40px 0;
    margin-bottom: 60px;
}

.partners-container .brand-image    {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
}

.partners-cta:not(.slick-initialized)    {
    height: 150px;
    overflow: hidden;
    opacity: 0;
}

.partners-container .brand-image img {
    max-height: 80px;
}

.partners-container .container  {
    position: relative;
}

.partner-arrow  {
    background: #002E60;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.partner-arrow.partner-right    {
    left: auto;
    right: 0;
}

.partner-arrow:hover,
.partner-arrow:active   {
    background: #002956;
}

/**
 * Intro
 */

.brand-introduction     {
    margin-bottom: 60px;
}

.brand-introduction h2  {
    padding: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.brand-introduction h2 + p  {
    font-size: 26px;
    font-weight: 500;
}

.brand-introduction p   {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.brand-introduction .aside  {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .brand-introduction     {
        display: grid;
        grid-template-columns: 1fr 250px;
        grid-gap: 40px;
        align-items: center;
    }
    .brand-introduction .aside  {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .brand-introduction     {
        grid-template-columns: 1fr 450px;
        grid-gap: 80px;
    }
}


/**
 * CTA
 */

.brand-cta-container    {
    background: #eee;
    padding: 40px 0;
    margin-bottom: 80px;
}

.brand-cta-container h3     {
    font-size: 32px;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 40px;
    text-align: center;
}

.brand-cta  {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.brand-cta li    {
    margin: 0;
    background: #fff;
    padding: 60px 40px 60px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    line-height: 1.25;
}

.brand-cta h3   {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 26px;
    margin: 0;
}

.brand-cta .brand-image     {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-cta .brand-image img     {
    max-height: 60px;
}

.brand-cta .action.primary  {
    text-transform: uppercase;
    display: block;
    max-width: 320px;
    margin: 30px auto 0;
    width: 100%;
}


@media (min-width: 768px) {
    .brand-cta  {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {

    .brand-cta  {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px;
    }

}

