.api-banner-sec{
    background-image:url('../images/trawex-api-banner.jpg');
        background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding:50px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:500px;
    position:relative;
}

.api-banner-sec .api-banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
}

.api-banner-sec .banner-heading{
    position: relative;
    z-index: 9;
    text-align: center;
}

.api-banner-sec .banner-heading h1{
    color: #fff;
    font-size: 3em;
    font-family: 'Montserrat-Bold';
    margin: 0px;
}

.api-banner-sec .banner-heading p{
    font-size: 1.5em;
    color: #fff;
    margin: 10px 0 0;
    font-family: 'Montserrat-Medium';
}

.api-document-sec{
    background-color:#fff;
    padding:50px 0px;
}

.api-document-sec .header-icon{
    margin-bottom:5px;
}

.api-document-sec .header-icon h3{
    font-size: 24px;
    font-family: Montserrat-Bold;
    color: #333;
    line-height: 1.2;
    margin: 0px;
    text-align: center;
}

.api-document-sec .api-module-div{
    text-align:center;
    margin-top:20px;
}

.api-document-sec .api-module-div .icon{
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    display: block;
    margin: auto;
    background-color: #eee;
    box-shadow:0px 3px 3px #ccc;
    font-size:40px;
    color:#666;
}

.api-document-sec .api-module-div:hover .icon{
    background: #fff;
    box-shadow:none;
    color: #333;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.api-document-sec .api-module-div .icon:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms infinite;
    -moz-animation: sonarEffect 1.3s ease-out 75ms infinite;
    animation: sonarEffect 1.3s ease-out 75ms infinite;
}


   .api-document-sec .api-module-div .icon:after {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .1);
    opacity: 0;
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
}


.api-document-sec .api-module-div h4{
    font-size: 18px;
    font-family: 'Montserrat-Bold';
    color: #333;
    margin: 15px 0px 0px;
    text-align: center;
}

.api-document-sec .api-module-div h4 a{
    color:#333;
}

@-webkit-keyframes sonarEffect {
    0% {
    opacity: .3;
}
40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(12, 21, 210, .1), 0 0 10px 10px rgba(12, 21, 210, .8), 0 0 0 3px rgba(12, 21, 210, .5);
}
100% {
    box-shadow: 0 0 0 2px rgba(12, 21, 210, .1), 0 0 10px 10px rgba(12, 21, 210, .8), 0 0 0 3px rgba(12, 21, 210, .5);
    -webkit-transform: scale(1.3);
    opacity: 0;
}
}@-moz-keyframes sonarEffect {
    0% {
    opacity: .3;
}
40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(12, 21, 210, .1), 0 0 10px 10px rgba(12, 21, 210, .8), 0 0 0 3px rgba(12, 21, 210, .5);
}
100% {
    box-shadow: 0 0 0 2px rgba(12, 21, 210, .1), 0 0 10px 10px rgba(12, 21, 210, .8), 0 0 0 3px rgba(12, 21, 210, .5);
    -moz-transform: scale(1.3);
    opacity: 0;
}
}@keyframes sonarEffect {
    0% {
    opacity: .3;
}
40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(12, 21, 210, .1), 0 0 10px 10px rgba(12, 21, 210, .8), 0 0 0 3px rgba(12, 21, 210, .5);
}
100% {
    box-shadow: 0 0 0 2px rgba(12, 21, 210, .1), 0 0 10px 10px rgba(12, 21, 210, .8), 0 0 0 3px rgba(12, 21, 210, .5);
    transform: scale(1.3);
    opacity: 0;
}
}

.overview-sec{
    background-color:#f7f7f7;
    padding:50px 0px;
}

.overview-sec h3, .support-sec h3{
    font-size: 22px;
    font-family: Montserrat-Bold;
    color: #333;
    line-height: 1.2;
    margin: 0 0 10px;
    text-align: left;
}

.overview-sec p, .support-sec p{
    font-size:15px;
    margin-bottom:15px;
}

.overview-sec p:last-child{
    margin:0px;
}


.overview-sec h4{
    font-size: 22px;
    font-family: Montserrat-Bold;
    color: #333;
    line-height: 1.2;
    margin:0 0 10px;
    text-align:left;
}

.overview-sec ul{
    padding-left:15px;
    margin-bottom:15px;
}

.overview-sec ul li{
    font-size:15px;
    margin-bottom:5px;
}

.list-items-sec{
    background-color:#fff;
    padding:50px 0px;
}

.list-items-sec h3{
    font-size: 22px;
    font-family: Montserrat-Bold;
    color: #333;
    line-height: 1.2;
    margin: 0 0 25px;
    text-align: left;
    position:relative;
}

.list-items-sec h3:after{
    content: "";
    width: 75px;
    height: 3px;
    background: #14699e;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

.list-items-sec p{
    font-size:14px;
    margin-bottom:13px;
}

.list-items-sec ul{
    list-style-type:none;
    padding:0px;
    margin:0px;
}

.list-items-sec ul li{
    margin-bottom:5px;
    font-size:14px;
    position:relative;
    padding-left:0px;
}

.list-items-sec ul li:before{
    content: "\f058";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: 0;
    width: 1.2em;
    color: #0072cf;
    font-size: 20px;
    vertical-align: middle;
    text-indent: -2px;
}

.list-items-sec .last-point{
    margin-top: 25px;
    padding: 15px;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
}

