﻿/*********************Font Family***************************/
@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato/lato-black-webfont.woff2') format('woff2'), url('../fonts/Lato/lato-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato/lato-bold-webfont.woff2') format('woff2'), url('../fonts/Lato/lato-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato/lato-light-webfont.woff2') format('woff2'), url('../fonts/Lato/lato-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato/lato-medium-webfont.woff2') format('woff2'), url('../fonts/Lato/lato-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato/lato-regular-webfont.woff2') format('woff2'), url('../fonts/Lato/lato-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato/lato-semibold-webfont.woff2') format('woff2'), url('../fonts/Lato/lato-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}


/********common css**********/
.fd-inner-container {
    width: 1440px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.fd-container {
    width: 1720px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

body {
    font-family: 'lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.mt-15{
    margin-top: 15px;
}

.fedpipeline-main {
    position: relative;
}

.btnLink {
    display: inline-block;
}

.btn-common {
    background: #561c7a;
    color: #fff;
    font-size: 18px;
    border-radius: 55px;
    padding: 6px 22px;
    letter-spacing: 0.6px;
    border: 1px solid #561c7a;
}
    .btn-common i {
        font-size: 14px;
        padding-left: 5px;
    }
    .btn-common:hover {
        background: #fff;
        color: #561c7a;
    }
/********common css End**********/
/*header css start*/
.navbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem;
    /*        background-color: #f2f2f2;*/
    /*    overflow: hidden;*/
}

.brand img {
    width: 242px;
}

.navbar .nav-list {
    padding: 2rem 0;
    list-style-type: none;
    text-align: center;
    /*    overflow: hidden;*/
    margin-bottom: 0;
}

.nav-list li {
    margin: 1rem 0;
    letter-spacing: 0.1rem;
}

    .nav-list li a {
        display: block;
        text-decoration: none;
        padding: 0.4rem;
        color: #000000;
        font-weight: 600;
        font-size: 18px;
    }

.nav-item.signin-btn {
    background: #30bf2a;
    border-radius: 45px;
    padding: 0 21px;
}

    .nav-item.signin-btn a {
        color: #ffff;
        font-size: 18px;
    }

/*toggler button*/
.navbar .toggler {
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 3;
    outline: none;
}

/*hamburger*/
.toggler .line {
    display: block;
    width: 23px;
    height: 3px;
    background-color: #222;
    margin-bottom: 6px;
    /*from hamburger to cross*/
    transition: 0.4s;
}

/*close icon*/
.cross .line:nth-child(1) {
    transform: rotate(-45deg) translate(-9px, 6px);
}

.cross .line:nth-child(2) {
    opacity: 0;
}

.cross .line:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -5px);
}

/*only for mobile and tablets devices*/
@media (max-width: 991px) {
    /*hide nav by transform*/
    .nav-list-container {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: inherit;
        z-index: 2;
        transform: translateX(-100%);
        /*nav sidebar speed*/
        transition: all 0.5s linear;
        opacity: 0.5;
    }
}

/*make nav visible by transform*/
.nav-active {
    transform: translateX(0%);
    opacity: 1;
    background: #fff;
}

/*navigation for tablet and desktops*/
@media (min-width: 991px) {
    .navbar {
        /*justify-content: space-around;*/
        padding: 0.9rem 0;
    }

        /*make nav-list horizontal on big screens*/
        .navbar .nav-list {
            display: flex;
            flex-direction: row;
            padding: 0;
        }

    .nav-list li {
        margin: 0 0.4rem;
    }

    /*hide toggler button on big screens*/
    .navbar .toggler {
        display: none;
    }
}


/* - BOOTSTRAP 4 - SOUS-MENU - */

li .dropdown-toggle:after {
    transition: all 0.5s;
}

li.show > .dropdown-toggle:after {
    transform: rotate(180deg);
}
/* sous-Niveaux suivants */
li li.show > .dropdown-toggle:after {
    transform: rotate(90deg);
}
/* --------------------- */

.fd-header.fixed-top {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 8px #eee;
}

.dropdown-menu.show li {
    margin: 0 !important;
}

    .dropdown-menu.show li a {
        padding: 12px 16px;
        color: #571C7A;
        letter-spacing: 0.5px;
        font-size: 18px;
        font-weight: 600;
    }

.dropdown-menu {
    padding: 0;
    margin: 4px 0 0 0;
    border-radius: 4px;
    border: none;
}

.dropdown-item:hover {
    background: #571C7A;
    color: #ffffff !important;
}

.nav-list li.nav-item.btn-subscribe {
    background: #561c7a;
    color: #fff;
    font-size: 18px;
    border-radius: 55px;
    padding: 0 19px;
    letter-spacing: 0.6px;
    border: 1px solid #561c7a;
}

.btn-subscribe a {
    color: #ffff !important;
    font-weight: 400 !important;
}

    .btn-subscribe a i {
        font-size: 14px;
        padding-left: 8px;
    }


/*header css end*/
/**********Banner Start**************/
.home-banner {
    position: relative;
}

.banner-bg-img img {
    width: 100%;
}

.fd-header {
    /*position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;*/
    background: linear-gradient(0deg, #ffffff,#ffffff);
}

/*.left-banner-sec {
    padding-left: 170px;
}*/


.banner-inner-content {
    /* position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding-top: 70px;
    transform: translate(-50%, -55%);*/
    padding-top: 25px;
    background: url('../Images/Home-Banner.png') no-repeat;
    /*    padding: 25px 0 115px 0;*/
    padding: 25px 0 165px 0;
    background-size: cover;
}
.fed-info-sec {
    padding-top: 66px;
}
.banner-bg-img {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    padding-top: 0;
    z-index: -1;
}

.fedpipeline-main {
    position: relative;
}

/*.left-banner-sec {
    padding-left: 170px;
}*/

.left-banner-sec h2 {
    color: #571C7A;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 18px;
}

.left-banner-sec h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.left-banner-sec p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 16px;
    font-weight: 500;
}

.cmi-banner-sec{
    padding-top: 75px;
    padding-bottom: 75px;
}

.cmi-banner-sec h2 {
    color: #571C7A;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 18px;
}

.cmi-banner-sec h4 {
    color: #30bf2a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.what-is-cmi .inner-title-sec h3{
    text-align: start;
}

.what-is-cmi .bottom-line{
    text-align: start;
}

.why-fed-sec {
    padding-left: 19px;
    position: relative;
}

    .why-fed-sec li {
        list-style: none;
        position: relative;
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 10px;
    }

        .why-fed-sec li:before {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 12px solid #AA37EE;
            position: absolute;
            left: -20px;
            top: 4px;
        }
/***********End**********/


/*****************Fedpipeline Info Section********************/
.info-line-content-holder {
    position: relative;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
}

.img-left {
    width: 50%;
    text-align: center;
    padding-right: 86px;
}

.dot {
    position: absolute;
    top: 0;
    left: -8px;
    right: 0;
    margin: auto;
}

.info-line-content-right {
    width: 50%;
    padding-left: 126px;
}

.info-line-content-holder h2 {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 11px;
}

.info-line-content-holder p {
    font-size: 17px;
    color: #333333;
    line-height: 28px;
}

.info-line-sec {
    background: url('../Images/info-vert-line.png') repeat-y 49.75%;
    background-position: 49.75% 0;
    padding: 0 115px 0 115px;
}

.img-right {
    width: 50%;
    text-align: center;
}

.info-line-content-left {
    width: 50%;
    padding-right: 126px;
}


/*.inner-title-sec {
    text-align: center;
    margin-bottom: 26px;
}*/
.right-data-search .inner-title-sec {
    text-align: left;
    margin-bottom: 0;
}
.right-data-search .inner-title-sec h3{
    text-align:center;
}
.home-banner .right-data-search .inner-title-sec h3 {
    text-align: left;
}

    .inner-title-sec h3 {
        font-size: 50px;
        color: #571C7A;
        font-weight: 600;
        margin-bottom: 14px;
        text-align: left;
    }

.bottom-line-subtitle {
/*    font-size: 26px;*/
    font-size: 34px;
    text-align: center;
    padding-bottom: 76px;
    font-weight: 600;
}

.bottom-line {
    height: 5px;
    background: linear-gradient(45deg, #29BD22, #ffffff);
    width: 190px;
    text-align: center;
    margin: 0 auto;
}

.description p {
    color: #818181;
    font-size: 17px;
    text-align: center;
    padding: 0 86px;
    line-height: 28px;
    font-weight: 400;
}

.content-img {
    width: 240px;
}

.description {
    padding-bottom: 86px;
}

.startDotSection {
    top: -35px;
}

.info-line-content-wrap .info-line-content-holder:last-child {
    margin-bottom: 0;
}

/*.fed-info-sec .info-line-sec:after {
    content: '';
    border-left: 2px solid #a88eb8;
    height: 108px;
    position: absolute;
    left: 49.746%;
}*/
/*************Promises Section******************/
.promises-what-they-do-sec {
    padding-top: 106px;
}

.promises-section img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.promises-section {
    position: relative;
    padding: 36px 0 76px 0;
}

/*.promises-section .fd-inner-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }*/

.promises-left .inner-title-sec {
    text-align: left;
}

.promises-left .bottom-line {
    text-align: left;
    margin: initial;
}

.promises-left .row {
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.promises-section .row {
    align-items: center;
}

.promises-content ul li {
    list-style: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 14px;
    position: relative;
}

.promises-content ul {
    padding-left: 24px;
}

.promises-content p {
    font-size: 20px;
    font-weight: 600;
}

.promises-content ul li:before {
    content: '';
    border: 4px solid #29BD22;
    border-radius: 18px;
    box-shadow: 0 0 2px #888;
    height: 14px;
    width: 14px;
    display: block;
    position: absolute;
    background: #fff;
    top: 7px;
    left: -26px;
}

.promises-content .btnLink {
    margin-top: 9px;
}
/**************End*******************/

/***************what they do section************************/
.what-to-do-sec .info-line-content-holder ul li {
    list-style: none;
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    padding-bottom: 14px;
    position: relative;
}

.what-to-do-sec .info-line-content-holder ul {
    padding-left: 24px;
}

    .what-to-do-sec .info-line-content-holder ul li:before {
        content: '';
        border: 4px solid #29BD22;
        border-radius: 18px;
        box-shadow: 0 0 2px #888;
        height: 14px;
        width: 14px;
        display: block;
        position: absolute;
        background: #fff;
        top: 7px;
        left: -26px;
    }

.what-to-do-sec .info-line-content-wrap .info-line-content-holder:first-child {
    margin-bottom: 66px;
}

    .what-to-do-sec .info-line-content-wrap .info-line-content-holder:first-child .img-left {
        padding-top: 176px;
    }

    .what-to-do-sec .info-line-content-wrap .info-line-content-holder:first-child .info-line-content-right {
        padding-top: 176px;
    }

    /*.what-to-do-sec {
    margin-top: -67px;
}*/

    .what-to-do-sec .info-line-content-wrap .info-line-content-holder:first-child .startDotSection {
        top: 175px;
    }

.what-to-do-sec .content-img {
    width: 250px;
}

/*.what-to-do-sec .info-line-sec:after {
        content: '';
        border-left: 2px solid #a88eb8;
        height: 90px;
        position: absolute;
        left: 49.76%;
    }*/

/*****************data search sec**********************/
.data-search-content ul li {
    list-style: none;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 14px;
    position: relative;
}

.data-search-content ul {
    padding-left: 24px;
}

.data-search-content p {
    font-size: 20px;
    font-weight: 600;
/*    margin-bottom: 10px;*/
}

.data-search-content ul li:before {
    content: '';
    border: 4px solid #29BD22;
    border-radius: 18px;
    box-shadow: 0 0 2px #888;
    height: 14px;
    width: 14px;
    display: block;
    position: absolute;
    background: #fff;
    top: 7px;
    left: -26px;
}

.left-data-search img {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.fed-data-search .row {
    align-items: center;
}

.fed-data-search {
    padding: 20px 0 76px 0;
}

    .fed-data-search .right-data-search .inner-title-sec {
        text-align: left;
    }

    .fed-data-search .right-data-search .bottom-line {
        text-align: left;
        margin: inherit;
    }

/*****************What they not to do section*********************/
.what-not-do-sec .content-info-sec ul li {
    list-style: none;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 14px;
    position: relative;
}

.what-not-do-sec .content-info-sec ul {
    padding-left: 24px;
    margin-bottom: 0;
}

    .what-not-do-sec .content-info-sec ul li:before {
        content: '';
        border: 4px solid #29BD22;
        border-radius: 18px;
        box-shadow: 0 0 2px #888;
        height: 14px;
        width: 14px;
        display: block;
        position: absolute;
        background: #fff;
        top: 7px;
        left: -26px;
    }

/*.not-do-sec-img {
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -28%);
}*/

.what-not-do-sec {
    background-image: url('../Images/what-not-do.png');
    background-repeat: no-repeat;
    padding: 240px 0 50px 0;
    background-size: cover;
    background-position: bottom;
}

.not-bg-content-sec {
    position: relative;
    /* background-image: url('../Images/what-not-do.png');
    background-repeat: no-repeat;
    padding: 220px 0 50px 0;
    background-size: cover;*/
}

    .not-bg-content-sec .fd-inner-container {
        /*position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -28%);*/
    }

.not-do-title .inner-title-sec {
    text-align: left;
    margin-bottom: 0;
}

.not-do-title .bottom-line {
    margin: inherit;
}

.not-do-content {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 24px;
}

.content-header-sec p {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 31px;
    border-bottom: 1px solid #29BD22;
    padding: 18px 24px 18px 24px;
}

.content-info-sec {
    padding: 0 24px 18px 24px;
}

.not-bg-content-sec .fd-inner-container .row {
    align-items: center;
}

.what-not-do-sec .third-sec {
    margin-top: -66px;
}
/****************Footer*********************/
.footer-sec {
    background: #FBFBFB;
    padding: 75px 0;
}

.logo-info-sec img {
    width: 285px;
}

.logo-info-sec p {
    font-size: 18px;
    padding: 25px 60px 0 0;
    line-height: 28px;
    color: #000;
    font-weight: 500;
}

.footer-link-sec h5 {
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 16px;
    margin-bottom: 0;
}

.footer-link-sec ul {
    padding-left: 0;
    margin-bottom: 0;
}


    .footer-link-sec ul li a {
        color: #571C7A;
        text-decoration: underline;
        font-size: 17px;
    }

    .footer-link-sec ul li {
        padding-bottom: 10px;
        list-style-type: none;
    }

        .footer-link-sec ul li i {
            color: #29BD22;
            margin-right: 9px;
        }

            .footer-link-sec ul li i.fa.fa-phone {
                transform: rotate(94deg);
            }

.copyright-sec {
    display: flex;
    align-items: center;
    border-top: 1px solid #D9D9D9;
    padding-top: 19px;
}

.copyright-text p {
    margin-bottom: 0;
}

.copyright-text {
    margin-left: auto;
}

.copyright-sec {
}

.footer-top-content {
    padding-bottom: 16px;
}

.social-sec img {
    margin-right: 8px;
}

/*****************About us Section**********************/

.inner-content .row {
    align-items: center;
}

.inner-content .left-banner-sec {
    padding-left: 0;
}

.inner-banner {
    background: linear-gradient( 180deg, #edd0ff, #BC6AEC);
    padding-top: 15px;
}

.about-us-sec .right-banner-sec img {
    width: 450px;
    margin: 0 auto;
    display: block;
}

.about-fed {
    padding: 80px 0 0 0;
}

    .about-fed .inner-title-sec {
        text-align: left;
        margin-bottom: 22px;
    }

    .about-fed p.bottom-line {
        text-align: left;
        margin: inherit;
    }

.fed-about-content p {
    color: #5E5E5E;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.about-fed .left-data-search img {
    width: 100%;
}

.fed-question-content h4 {
    font-size: 23px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.question-sec {
    padding: 35px 0 0 0;
}

.fed-question-content ul li {
    list-style: none;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 14px;
    position: relative;
}

.fed-question-content ul {
    padding-left: 24px;
}

.fed-question-content p {
    font-size: 20px;
    font-weight: 600;
}

.fed-question-content ul li:before {
    content: '';
    border: 4px solid #29BD22;
    border-radius: 18px;
    box-shadow: 0 0 2px #888;
    height: 14px;
    width: 14px;
    display: block;
    position: absolute;
    background: #fff;
    top: 7px;
    left: -26px;
}

.fed-enquiry-content {
    background: rgb(41 189 34 / 6%);
    padding: 45px 85px;
    border-radius: 7px;
    margin: 60px 0;
}

    .fed-enquiry-content p {
        margin-bottom: 0;
        font-size: 18px;
        text-align: center;
        line-height: 30px;
        padding: 0 26px;
    }

/****************CMI Section***********************/
.cmi-fed {
    padding: 80px 0 0 0;
}

    .cmi-fed .left-data-search img {
        width: 100%;
        border-radius: 0px 100px;
    }

    .cmi-fed .inner-title-sec {
        text-align: left; 
        margin-bottom: 22px;
    }

    .cmi-fed p.bottom-line {
        text-align: left;
        margin: inherit;
    }
     
    .cmi-fed .right-data-search .inner-title-sec h3 {
        font-size: 36px;
    }

    .cmi-fed-content p { 
        color: #5E5E5E;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }

.deep-dive{
    margin-top: 24px;
}

    .deep-dive .left-data-search img {
        width: 100%;
        border-radius: 100px 0px; 
    }

    .deep-dive .right-data-search .inner-title-sec h3{
        font-size: 36px;
    }
    .deep-dive-content p {
        color: #5E5E5E;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }

    .deep-dive .bottom-line { 
        margin-left: 0px;
        margin-bottom: 24px;
    }

.govcon-business {
    margin-top: 24px;
}

    .govcon-business .right-data-search .inner-title-sec h3 {
        font-size: 36px;
    }

    .govcon-business .bottom-line {
        margin-left: 0px;
        margin-bottom: 24px;
    }

    .govcon-business .govcon-business-banner img{
        width: 100%;
    }

    #accordionGovConBusiness .btn-link {
        color: #30bf2a;
        font-weight: 600;
        font-size: 18px;
    }

    .govcon-business ul{
        padding-left: 24px; 
    }

    .govcon-business ul li {
        list-style: none;
        font-size: 17px;
        line-height: 24px;
        font-weight: 500;
        padding-bottom: 14px;
        position: relative;
    }

    .govcon-business ul li:before {
        content: '';
        border: 4px solid #29BD22;
        border-radius: 18px;
        box-shadow: 0 0 2px #888;
        height: 14px;
        width: 14px;
        display: block;
        position: absolute;
        background: #fff;
        top: 7px;
        left: -26px;
    }

.govcon-growth{
    margin-top: 50px;
    margin-bottom: 50px;
}

    .govcon-growth .right-data-search .inner-title-sec h3 {
        font-size: 36px;
    }

    .govcon-growth .bottom-line {
        margin-left: 0px;
        margin-bottom: 24px;
    }

    .govcon-growth .govcon-growth-banner{
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .govcon-growth .govcon-growth-banner img {
        width: 100%;
        border-radius: 0px 100px;
    }

    .govcon-growth-content h6 {
        color: #571C7A;
        font-weight: 700;
    }

/****************Govconn data feature**********************/
.govcon-data-fea {
    padding-top: 60px;
}

.features-content {
    padding-top: 30px;
}

.feature-title {
    background: #30bf2a;
    border-radius: 6px;
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
    margin-bottom: 24px;
}

.feature-title h4 {
    margin-bottom: 0;
    padding: 11px 16px;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    color:#ffffff;
}

.fetaure-list {
    border: 1px solid #571C7A;
    border-radius: 6px;
    margin-bottom: 20px;}

.fetaure-list p {
    margin-bottom: 0;
    padding: 6px 14px;
    text-align: center;
    font-size: 16.7px;
    font-weight: 400;
    line-height: 26px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
}
.fetaure-list a:hover {
    text-decoration:none;
}
.features-content .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
}
.support-sec .fed-enquiry-content h4 {
    margin-bottom: 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 16px;
}
.support-sec .fed-enquiry-content p {
    font-size: 19px;
    padding: 0 6px;
}

.feature-section {
/*    background: rgb(41 189 34 / 6%);*/
    margin: 20px 0;
    padding: 55px 0 55px 0;
}

.feature-section .right-data-search {
    padding-bottom: 36px;
}
.feature-section .feature-title {
    background: #30bf2a;
}
.feature-section .feature-title h4 {
    color: #fff;
}
.feature-section .fetaure-list {
    border: 1px solid #30bf2a;
}
.feature-section .fetaure-list p {
    font-weight: 600;
    font-size: 16.5px;
}

/*.data-feature-sec .left-banner-sec h2 {
    font-weight: 700;
    font-size: 36px;
}*/
.data-feature-sec .left-banner-sec p {
    font-size: 24px;
}

.data-feature-sec .right-banner-sec {
    text-align: right;
}

.first-col .fetaure-list {
    background: #a76867;
    border-color: #a76867;
}

.second-col .fetaure-list {
    background: #768155;
    border-color: #768155;
}

.first-col .fetaure-title {
    background: #cbdaf8;
}

.first-col .feature-title {
    background: #a76867;
}

.second-col .feature-title {
    background: #768155;
}

.third-col .feature-title {
    background: #028699;
}
.third-col .feataure-list {
    background: #004953;
}

.third-col .fetaure-list {
    background: #028699;
    border-color: #028699;
}

.forth-col .feature-title {
    background: #95637c;
}

.forth-col .fetaure-list {
    background: #95637c;
    border-color: #95637c;
}

.fifth-col .feature-title {
    background: #dd9947;
}

.fifth-col .fetaure-list {
    background: #dd9947;
    border-color: #dd9947;
}
.why-fedpipelin-sec {
    padding-top: 36px;
}

.promises-what-they-do-sec .inner-title-sec h3 {
    text-align: center;
}
.promises-content {
    padding-top: 26px;
}

/**************Subscribe*********************/
.sub-content {
    margin: 80px 336px;
    text-align: center;
    background: rgb(41 189 34 / 13%);
    border-radius: 16px;
}

.subsribe-img img {
    width: 170px;
    padding: 30px 0 30px 0;
}

.fed-sub-content p {
    font-size: 36px;
    font-weight: 700;
    padding: 16px 0px 26px 0;
}

.subsribe-img {
    background: hsl(117deg 48% 80%);
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.fed-sub-content {
    padding: 30px 70px 30px 70px;
}

.subscribe-form input {
    border: none;
    background: #fff;
    color: #000;
    padding: 22px 13px;
    font-size: 16px;
    font-weight: 400;
}

.subscribe-form button {
    background: #30bf29;
    border: #30bf29;
    border-radius: 66px;
    padding: 5px 32px;
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 0 0;
}
.subscribe-form button:hover {
    background: #561c7a;
    border: #561c7a;
}
.link_button_text {
    text-transform: capitalize;
    cursor: pointer;
}