/*=========================================== SERVICES SCETION ======================================================*/
.services-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}
.services-section:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #fff;
}
.services-section .cta {
    overflow: hidden;
    display: block;
    width: 50%;
    position: relative;
    padding-bottom: 23vw;
    opacity: 0;
}
.services-section.ready .cta {
    opacity: 1;
    animation: fadeInLeft 1.2s both;
}
.services-section.ready .cta:last-child {
    animation: fadeInRight 1.2s both;
}
.services-section .cta .bnn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transition: transform 1s ease;
    -webkit-transition: transform 1s ease;
    -moz-transition: transform 1s ease;
    -o-transition: transform 1s ease;
}
.services-section .cta:hover .bnn {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transition: transform 2s ease;
    -webkit-transition: transform 2s ease;
    -moz-transition: transform 2s ease;
    -o-transition: transform 2s ease;
}
.services-section .cta .bnn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
}
.services-section .cta .text {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 50%;
    text-align: center;
    transform: translate(0,-50%);
    color: #fff;
}
.services-section .cta .text span:not(.btn-layout, .bnn) {
    display: block;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.services-section .cta .text span.bnn-logo {
    display: inline-block;
    max-width: 220px;
    padding: 10px;
    /*background: #fff;*/
    border-radius: 4px;
}
.services-section .cta .text small:before {
    content: '';
    display: block;
    width: 61px;
    height: 3px;
    margin: 0 auto 20px;
    background-color: #016ae0;
}
.services-section .cta .text small {
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0;
    font-size: 18px;
    width: auto;
    margin: 16px auto ;
    position: relative;
}
.services-section .cta .text small .fal {
    position: absolute;
    top: 31px;
    font-size: .8em;
    left: 100%;
    margin-left: 15px;
    transition: all .4s ease, opacity .6s linear;
    -webkit-transition: all .4s ease, opacity .6s linear;
    -moz-transition: all .4s ease, opacity .6s linear;
    -o-transition: all .4s ease, opacity .6s linear;
}
.services-section .cta:hover .text small .fal {
    margin-left: 25px;
}
@media (max-width: 670px) {
    .services-section:after {
        left: 0;
        right: 0;
        bottom: unset;
        top: 50%;
        width: 100%;
        height: 1px;
        margin-top: -1px;
    }
    .services-section .cta {
        width: 100%;
        padding-bottom: 64vw;
    }
}
/*=========================================== Other Models to Consider SCETION ======================================================*/
.model-description p{
    color: white;!important;
}
