/******************************************************************************
    $ Disclosure Links
******************************************************************************/
.disclosure-links > .item {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    /*
     * Across all sizes we have static/adaptive heights for these blocks
     * the formula for height is MEDIA QUERY LOWER LIMIT / 3 / (.678571429) <-- 380x560 image, width divided by height
     */
    height: 520px; /* we immediately ignore the aspect ratio from the design and use this value to keep all items the same height despite the large amount of copy */
    padding: 0;
}

.disclosure-links > .item > div {
    -webkit-transition: background-color 300ms 100ms;
    -moz-transition: background-color 300ms 100ms;
    -ms-transition: background-color 300ms 100ms;
    -o-transition: background-color 300ms 100ms;
    transition: background-color 300ms 100ms;
}

.disclosure-links > .item.expanded > div {
    background-color: rgba(255, 102, 0, .75);
}

.disclosure-links .voice-services {
    background-image: url('../images/voice-services-next-image.jpg');
}

.disclosure-links .data-services {
    background-image: url('../images/data-services-next-image.jpg');
}

.disclosure-links .managed-it-services {
    background-image: url('../images/data-services-next-image.jpg');
}

.disclosure-links .cloud-services {
    background-image: url('../images/cloud-services-next-image.jpg');
}

.disclosure-links .icon {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 90px 90px;
    height: 90px;
    padding-top: 120px;
}

.disclosure-links .cloud-services .icon {
    background-image: url('../images/cloudservices.png');
}

.disclosure-links .data-services .icon {
    background-image: url('../images/dataservices.png');
}

.disclosure-links .voice-services .icon {
    background-image: url('../images/voiceservices.png');
}

.disclosure-links .managed-it-services .icon {
    background-image: url('../images/dataservices.png');
}

.disclosure-links .disclosure {
    padding: 10%;
    position: relative;
}

.disclosure-links .disclosure-toggle {
    display: block;
}

.disclosure-links .disclosure-content {
    display: block;
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;

    /* transition block */
    transition: opacity 300ms 100ms ease, max-height 300ms 100ms ease;
    -webkit-transition: opacity 300ms 100ms ease, max-height 300ms 100ms ease;
    -moz-transition: opacity 300ms 100ms ease, max-height 300ms 100ms ease;
    -ms-transition: opacity 300ms 100ms ease, max-height 300ms 100ms ease;
    -o-transition: opacity 300ms 100ms ease, max-height 300ms 100ms ease;
    transition: opacity 300ms 100ms ease, max-height 300ms 100ms ease;
}

.disclosure-links > .expanded .disclosure-content {
    display: block;
    max-height: 481px;
    opacity: 1;
}

.disclosure-links h2 {
    color: #ffffff;
    font-size: 24px;
    font-family: 'ProximaNovaBold';
    text-align: center;
    text-transform: uppercase;
}

.disclosure-content {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.disclosure-links .more {
    border-color: #fff;
    color: #fff;
    margin: 25px auto 0px;
    max-width: 184px;
}

.disclosure .ss-icon {
    display: none;
}

.disclosure-links .more:hover,
.disclosure-links .more:active,
.disclosure-links .more:focus {
    background-color: #fff;
    border-color: #fff;
    color: #ed612a;
    text-decoration: none;
}

/* Large desktop */
@media (min-width: 1200px) {
    .disclosure-links > .item {
        height: 589px;
    }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 991px) {
    .disclosure-links > .item {
        height: 545px; /* this doesn't match the established aspect ratio, but it keeps all the items the same height in expanded mode */
    }
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

    body:not(.home) .disclosure-links .disclosure {
        padding: 5px;
    }

    body:not(.home) .disclosure-links h2 {
        font-size: 18px;
    }

    body.single-mg_service .disclosure-links {
        display: none;
    }

    body.home .disclosure-links > .item {
        border-bottom: 1px solid #ececec;
        background-image: none;
        height: auto;
    }

    body.home .disclosure-links .row {
        margin-left: 0;
    }

    body.home .disclosure-links h2 {
        color: #2980b9;
		font-size: 18px;
        padding-left: 10px;
        padding-top: 15px;
        text-align: left;
    }

    body.home .disclosure-links .more {
        border-color: #ed612a;
        color: #ed612a;
        margin: 25px 0px;
        padding-left: 0px
    }

    body.home .disclosure-links .more:hover, .disclosure-links .more:active, .disclosure-links .more:focus {
        border-color: #ed612a;
    }

    body.home .disclosure-links > .expanded .disclosure-content {
        color: #777777;
        padding-left: 10px;
    }

    body.home .disclosure-links .icon {
        height: auto;
        padding: 0 0 16.66666667% 0;
    }

    body.home .disclosure-links .disclosure {
        padding: 15px;
    }

    body.home .disclosure-links > .item.expanded > div {
        background-color: rgba(0, 0, 0, 0);
    }

    body.home .disclosure-links .cloud-services .icon {
        background-image: url('../images/icon/Cloud-Services-Blue.png');
        background-size: contain;
    }

    body.home .disclosure-links .data-services .icon {
        background-image: url('../images/icon/Data-Services-Blue.png');
        background-size: contain;
    }

    body.home .disclosure-links .voice-services .icon {
        background-image: url('../images/icon/Voice-Services-Blue.png');
        background-size: contain;
    }

    body.home .disclosure-links .ss-icon {
        display: block;
        float: right;

        -webkit-transition: transform .3s;
        -moz-transition: transform .3s;
        -ms-transition: transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
    }

    body.home .disclosure-links > .item.expanded .ss-icon {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

/* Landscape phones and down */
@media (max-width: 480px) {
}
