﻿/*--
	Author: 
	Author URL: 
	License: 
	License URL: 
--*/

html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    /*font-family: 'Poppins', sans-serif;*/
    /*font-family: 'Myriad Pro';*/
    scroll-behavior: smooth;
    /*letter-spacing: 1px;*/
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 1px;
    font-weight: 400;
}

p {
    margin: 0;
    /*font-size: 15px;*/
    /*color: #777;*/
    line-height: inherit;
    font-family: inherit;
}

ul {
    /*margin: 0;
    padding: 0;*/
    list-style: none;
}
/*-- header --*/
header {
    position: inherit;
    width: 100%;
    /* padding: 15px 0; */
    z-index: 9;
    top: 0;
    background-color: #f8f9fa;
}

    header.inner-page {
        position: initial;
    }

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    height: 50px;
}

@media (max-width:1024px) {
    .navbar-brand img {
        height: 40px;
    }
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
    /* Positioning the navigation items inline */
    nav ul li {
        margin: 0px;
        display: inline-block;
        float: left;
    }

/* Styling the links */
nav a, .nav-link {
    color: black;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    padding: 10px 13px;
    font-weight: 400;
    /*font-size: 15px;*/
    vertical-align: middle;
}

@media (max-width:1024px) and (min-width:992px) {
    .navbar-expand-lg .navbar-nav .nav-link, nav a, .nav-link {
        font-size: 15px;
        padding-right: .3rem;
        padding-left: .3rem;
    }
}

.inner-page .navbar {
    background-color: #f8f9fa !important;
}

.inner-page nav a, .inner-page .nav-link, .bg-light nav a, .bg-light .nav-link, .nav.navtabs a, .nav.nav-tabs .nav-link {
    /*color: #8c8c8c;*/
}

    .nav.navtabs a.active, .nav.nav-tabs .nav-link.active {
        color: #0056b3;
    }

nav li.last-grid a {
    background: #0056b3;
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 10px 25px;
    display: inline-block;
    margin-top: -10px;
    border-radius: 5px;
}

nav ul li ul li:hover {
    background: #f8f9fa;
}

/* Background color change on Hover */
nav a:hover, .nav-link:hover {
    color: #0056b3;
}

.menu li.active a {
    color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 30px;
    background: #fff;
    padding: 10px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

    nav ul ul li a {
        color: #333;
        padding: 5px 10px;
        display: block;
    }
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 991px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    .menu li.active a {
        color: #00aeff;
    }

    nav li.last-grid a {
        border: 2px solid #00aeff;
        color: #00aeff;
        font-size: 15px;
        letter-spacing: 1px;
        padding: 10px 25px;
        margin-top: 1px;
    }

    nav ul li span {
        color: #333;
    }

    nav {
        margin: 0;
    }

        nav a {
            color: #333;
        }

        nav a {
            color: #eaeaea
        }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 5px 15px;
        font-size: 20px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #0056b3;
        color: #fff;
        margin-bottom: 0;
        margin-top: 0em;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 30%;
        padding: 5px;
        font-weight: normal;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #333;
        background-color: #fff;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 7px 0;
    }

    nav a {
        padding: 5px 0;
    }

        nav a:hover {
            color: #333;
        }

    .login-icon {
        text-align: center;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 15px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #fff;
    }

    nav ul ul li a {
        font-size: 15px;
    }

    ul.inner-ul {
        padding: 0 !important;
    }
    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

        /* Hide menus on hover */
        nav ul ul li:hover > ul,
        nav ul li:hover > ul {
            display: none;
        }

        /* Fisrt Tier Dropdown */
        nav ul ul li {
            display: block;
            width: 100%;
            padding: 0;
        }

        nav ul ul ul li {
            position: static;
            /* has to be the same number as the "width" of "nav ul ul li" */
        }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }
}

/*@media all and (max-width:750px) {
    div.authornew {
        display:none;
    }
}
@media all and (min-width:750px) {
    div.authornew {
        display:block;
    }
}*/

.user span.fa {
    font-size: 25px;
    color: #fff;
}
/*-- //header --*/

/*-- banner --*/
.banner {
    height: 50vh;
    background: url(../images/banner.png)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.inner-banner {
    /*min-height: 40vh;*/
    background-color: honeydew;
    /*background: url(https://www.trendsmarketresearch.com/images/banner.jpg)no-repeat center;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    margin-bottom: 1rem;
}

.layer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    background: rgba(72, 71, 76, 0.5);
}

.inner-banner .layer {
    /*min-height: 40vh;*/
}

.sample .layer-sample {
    background: rgb(41, 41, 41);
}

.w3ls_banner_txt p {
    color: #ccc;
    text-transform: capitalize;
}

.banner-text-w3pvt {
    /*     padding:14vw 0 14vw;
    box-sizing: border-box; */
}

.banner-form-w3pvt {
    padding: 12vw 0 0vw;
    box-sizing: border-box;
}

h2.b-w3ltxt, h3.b-w3ltxt {
    font-size: 4em;
    color: #fff;
    text-shadow: 1px 1px 0px #333;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

    h2.b-w3ltxt span, h3.b-w3ltxt span {
        color: #00aeff;
    }

h4.b-w3ltxt {
    font-size: 3em;
    letter-spacing: 3px;
    font-weight: 200;
    color: #fff;
}

.btn-banner {
    background: #0056b3;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 30px;
    display: inline-block;
}

.btn-banner1 {
    background: #00aeff;
    border: 2px solid #00aeff;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 30px;
    display: inline-block;
}

    .btn-banner:hover, .btn-banner1:hover {
        color: #fff;
    }


/*-- //banner --*/

/*-- //heading --*/
/*-- banner bottom --*/
/*-- services --*/
.services {
    background: #f6f6f6;
}

.feature-grids h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 18px;
}

.feature-grids p {
    max-width: 310px;
}

.feature-grids span {
    font-weight: 800;
    color: #0056b3;
    font-size: 24px;
    transition: all 0.3s ease 0s;
    background: rgba(94,44,237,0.15);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
}
/*-- //services --*/
/*-- banner bottom --*/
/*-- about bottom --*/
.inner-heading h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 30px;
    text-transform: uppercase;
}

.inner-heading span.fa {
    height: 50px;
    width: 50px;
    line-height: 52px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-right: 15px;
    color: #0056b3;
    font-size: 22px;
    transition: all 0.3s ease 0s;
    background: rgba(94,44,237,0.15);
}

.inner-heading a.btn {
    background: #0056b3;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 7px 15px;
    display: inline-block;
    margin-top: 1em;
}

.banner-about {
    padding-left: 17em;
}
/*-- //about bottom --*/
/*-- projects --*/

.gal-img {
    margin-bottom: 1em;
    padding-right: 0px;
}
/* popup */
.pop-overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

    .pop-overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
    background: #fff;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    max-width: 500px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em 2em;
}

    .popup .close {
        position: absolute;
        top: 5px;
        right: 15px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #000;
    }

/* //popup */
/*-- //projects --*/

/*-- statictics --*/
.statistics {
    background: #222;
}

    .statistics p {
        color: #aaa;
    }

    .statistics a {
        background: transparent;
        border: 2px solid #eee;
        border-radius: 5px;
        color: #eee;
        font-size: 16px;
        letter-spacing: 1px;
        padding: 10px 30px;
        display: inline-block;
        text-transform: capitalize;
    }

h4.progress-tittle {
    color: #bbb;
    font-size: 0.85em;
    text-transform: uppercase;
    margin-bottom: 1em;
    letter-spacing: 1px;
}

.progress-one .progress {
    height: 0.5rem;
    background: #eee;
}

.progress-bar-striped {
    background-image: none;
    background-size: 1rem 1rem;
}

.statistics h3.heading {
    font-size: 40px;
    text-transform: capitalize;
    color: #eee;
    font-weight: 100;
    letter-spacing: 3px;
}
/*-- //statictics --*/

/*-- team --*/

h3.heading, h2.heading {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center;
}

h5.heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

section#team {
    background-color: #f3f3f3;
}
/*********************** Demo - 13 *******************/
.box13 {
    position: relative;
    transition: all .2s ease-out 0s;
    text-align: center;
}

    .box13 .box-content,
    .box13:after {
        position: absolute;
        left: 20px;
        right: 20px;
    }

    .box13:after {
        content: "";
        display: block;
        background: #696b6875;
        top: 20px;
        bottom: 20px;
        opacity: 0;
        transform: rotate3d(-1, 1, 0, 100deg);
        transition: all .4s ease-in-out 0s;
    }

    .box13:hover:after {
        opacity: .9;
        transform: rotate3d(0, 0, 0, 0deg);
    }

    .box13 img {
        width: 100%;
        height: auto;
    }

    .box13 .box-content {
        top: 45%;
        opacity: 0;
        z-index: 1;
        -webkit-transform: translate(10%, -30%);
        transform: translate(10%, -30%);
        transition: all .2s ease-out 0s;
    }

    .box13:hover .box-content {
        opacity: 1;
        transform: translate(0, -50%);
        transition-delay: .2s;
    }

    .box13 .title {
        display: block;
        font-size: 22px;
        color: #fff;
        margin: 0 0 10px;
        text-transform: uppercase;
    }

    .box13 .post {
        display: block;
        font-size: 15px;
        color: #ffffff;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .box13 .social {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .box13 .social li {
            display: inline-block;
        }

            .box13 .social li a {
                display: block;
                width: 35px;
                height: 35px;
                background: #000000;
                border-radius: 50%;
                font-size: 15px;
                color: #fff;
                line-height: 35px;
                margin-right: 5px;
                transition: all .4s ease-in-out 0s;
            }

.box14 .icon li,
.box14 .post {
    display: inline-block;
}

@media only screen and (max-width:990px) {
    .box13 {
        margin-bottom: 30px;
    }
}

/*-- //team  --*/
/*--  text --*/
.text {
    background: url(../images/bc.png) no-repeat center;
    background-size: cover;
    position: relative;
}

    .text:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.6;
        background: #000;
    }

    .text h2.heading {
        color: #fff;
    }

    .text p {
        color: #ccc;
        width: 80%;
        margin: auto;
    }

    .text a.btn {
        font-size: 17px;
        letter-spacing: 2px;
        color: #fff;
        padding: 12px 25px;
        border: 2px solid #fff;
        margin-top: 30px;
        border-radius: 4px;
        display: inline-block;
    }
/*--  //text --*/
/*-- registration form --*/
.padding {
    padding: 2.5em;
    background: #fff;
}

nav ul li span {
    color: #ffc107c7;
}

.form-style-w3ls input[type="text"], .form-style-w3ls input[type="email"], .form-style-w3ls input[type="password"], select {
    outline: none;
    font-size: 14px;
    border: none;
    color: #666;
    background: #f1f1f1;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    width: 49.5%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

select {
    -webkit-appearance: none;
    outline: none;
    font-size: 14px;
    border: none;
    color: #666;
    background: #f1f1f1;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    width: 49.5%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.form-style-w3ls button.btn {
    color: #fff;
    background-color: #0056b3;
    border: none;
    padding: 14px 0;
    outline: none;
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.form-style-w3ls input[type="submit"]:hover {
    background: #dc3545;
}

.padding {
    background: rgba(0, 0, 0, 0.36);
    margin: 2em auto 0;
}

    .padding h5 {
        color: #fff;
        letter-spacing: 2px;
        font-weight: 500;
    }

.form-style-w3ls span {
    font-size: 13px;
    color: #ffffffb5;
}

    .form-style-w3ls span a {
        color: #3369e7;
    }

.banner-form-w3 h5 {
    font-weight: 700;
    letter-spacing: 2px;
    color: #6ad59a;
}
/*-- //registration form --*/
/*--/price--*/
.plans-sec {
    background: #ffffff;
}

h5.card-title.pricing-card-title {
    font-size: 2em;
    font-weight: bold;
    color: #6f6f6f;
}

.card-header {
    color: #fff;
    background-color: #0056b3;
    border: none;
}

    .card-header h4 {
        text-align: center;
        margin-bottom: 10px;
    }

.publisher .card-header .card-header-1 .card-header-2 {
    background-color: #fff;
}


.card-header-1 {
    color: #fff;
    background-color: #2b5797;
    border: none;
    padding: .75rem 1.25rem;
    margin-bottom: 0;
}

    .card-header-1 h4 {
        text-align: center;
        margin-bottom: 10px;
    }


.card-header-2 {
    color: #fff;
    background-color: #7e3878;
    border: none;
    padding: .75rem 1.25rem;
    margin-bottom: 0;
}

    .card-header-2 h4 {
        text-align: center;
        margin-bottom: 10px;
    }

.pricing-grid span {
    font-size: .5em;
    display: inline-block;
    color: #000;
    font-weight: 300;
}

.pricing-grid.active ul.list-unstyled li,
.pricing-grid.active h5.card-title,
.pricing-grid.activea {
    color: #fff;
}

ul.price-in li {
    font-size: 15px;
    color: #7d7d7d;
    line-height: 2.5em;
    border: 1px dotted #baa3cd52;
}

.pricing-grid.card {
    padding: 1em 0;
}

    .pricing-grid.card h4 {
        padding: 9px;
        margin: 0;
        color: #000;
        font-weight: 600;
        font-size: 18px;
    }

.price-button a {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
    padding: 0.8em 2em;
    border-radius: 4px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    display: inline-block;
    border: none;
    transition: all 500ms ease;
    text-align: justify;
    text-transform: uppercase;
    font-weight: 700;
    outline: none;
    letter-spacing: 2px;
}

    .price-button a.active {
        background: #212529;
        color: #fff;
    }

.pricing-grid span.fa {
    background: rgba(94,44,237,0.15);
    color: #0056b3;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
    border-radius: 50%;
}

ul.price-in {
    padding-top: 1em;
}

/*--//price--*/
/* testimonials */
.testi {
    background: #f6f6f6;
}

h6.b-w3ltxt {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000e6;
}

    h6.b-w3ltxt span {
        font-weight: normal;
        color: #dedcdc;
        text-transform: capitalize;
        font-size: 16px;
    }

.testi-cgrid p {
    line-height: 1.8em;
}

    .testi-cgrid p span.fa {
        color: #000000;
    }

.testi-icon img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 5px solid #f6f6f6;
    background: #eee;
}

.testi-icon span.fa {
    font-size: 1.4em;
}

.testi-cgrid {
    background: #0056b3;
    padding: 2em 1em;
}

.border-right-grid {
    border-right: 8px solid #f6f6f6;
}

.testi-cgrid p {
    color: #fff;
}

.border-left-grid {
    border-left: 8px solid #f6f6f6;
}
/* //testimonials */
/*-- Contact page --*/
.contact_right input[type="text"], .contact_right input[type="email"], .contact_right textarea {
    outline: none;
    padding: 12px;
    background-color: #0056b312;
    color: #212121;
    font-size: 15px;
    width: 100%;
    letter-spacing: 1px;
    border: none;
}

.contact_right input[type="email"] {
    margin: 1em 0;
}

.contact_right textarea {
    min-height: 145px;
    resize: none;
    margin-top: 1em;
}

.contact_right button {
    outline: none;
    padding: 15px 0;
    background: #0056b3;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.contact_left iframe {
    width: 100%;
    outline: none;
    border: none;
    min-height: 495px;
}

.information h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    position: relative;
}

.information p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #666;
    line-height: 28px;
}

    .information p a, .information p span {
        color: #b84592;
    }

        .information p a:hover {
            color: #333;
        }

.information span.fa {
    font-size: 30px;
    color: #b84592;
}

/*-- //Contact page --*/


/*-- footer --*/
footer, .copyright {
    background: #1f1f1f;
}

.copyright {
    border-top: 1px solid #555;
}

.footer-grids h4 {
    color: #eee;
    font-size: 22px;
}

.footer-grids h5 {
    color: #666;
}

    .footer-grids h5 span {
        color: #f85a40;
    }

.footer-grids p, .footer-grids p a, .copyright p, .copyright p a, .footer-grids .list {
    /*font-size: 14px;*/
    color: #777;
    font-weight: normal;
    letter-spacing: .5px;
}

.footer-grids ul li a {
    /*font-size: 14px;*/
    color: #777;
    font-weight: normal;
    letter-spacing: 1px;
}

.footer-grids ul li {
    list-style-type: none;
}

.footer-grids input[type="email"] {
    background: #fff;
    box-shadow: none !important;
    padding: 12px 15px;
    color: #777;
    font-size: 14px;
    width: 65% !important;
    border: none;
    letter-spacing: 1px;
    outline: none;
}

.footer-grids button.btn {
    background: #0056b3;
    color: #fff;
    font-size: 14px;
    width: 34% !important;
    letter-spacing: 1px;
    padding: 12px;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

span.fa.mr-2.fa-envelope, span.fa.mr-2.fa-phone, span.fa.mr-2.fa-map-marker {
    color: #0056b3;
}
/*-- //footer --*/
/*-- move top --*/
.move-top {
    position: relative;
}

a.move-top {
    text-align: center;
    position: absolute;
    right: 1%;
    bottom: 0%;
}

    a.move-top span {
        color: #fff;
        width: 36px;
        height: 36px;
        border: transparent;
        line-height: 2em;
        background: #333;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -o-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
    }

/*-- //move top --*/
/*-- Responsive design --*/
@media (max-width:1080px) {
    h2.b-w3ltxt, h3.b-w3ltxt {
        font-size: 4em;
    }
}

@media (max-width:991px) {
    h2.b-w3ltxt, h3.b-w3ltxt {
        font-size: 3.5em;
    }

    .form-style-w3ls input[type="text"], .form-style-w3ls input[type="email"], .form-style-w3ls input[type="password"], select {
        width: 100%;
    }

    .banner-text-w3pvt {
        padding: 0vw 0 0vw;
        box-sizing: border-box;
        width: 100%;
    }

    .border-right-grid {
        border-right: 0px solid #f6f6f6;
    }

    .border-left-grid {
        border-left: 0px solid #f6f6f6;
    }
}

@media (max-width:800px) {
    h2 .b-w3ltxt, h3.b-w3ltxt {
        font-size: 3em;
    }

    .banner, .layer {
        /*min-height: 550px;*/
        /*padding-top: 100px;*/
    }

    .banner-text-w3pvt {
        width: 90%;
    }
}

@media (min-width:900px) {
    .inner-banner .layer {
        /*min-height: 550px;*/
        /*padding-top: 100px;*/
    }
}

@media (max-width:768px) {
    h3 .heading, h2.heading {
        font-size: 35px;
    }
}

@media (max-width:736px) {
    .banner-text-w3pvt {
        width: 100%;
    }

    .price-main1 {
        margin: 2em 0;
    }

    .footer-grids button.btn {
        width: 39% !important;
    }

    .footer-grids input[type="email"] {
        width: 62% !important;
    }
}

@media (max-width:667px) {
    .banner-text-w3pvt {
        padding: 24vw 0 11vw;
    }
}

@media (max-width:640px) {
    h3 .heading, h2.heading {
        font-size: 30px;
    }
}

@media (max-width:600px) {
    h2 .b-w3ltxt, h3.b-w3ltxt {
        font-size: 2.8em;
    }

    h3.heading, h2.heading {
        letter-spacing: 1px;
    }
}

@media (max-width:568px) {
    h2 .b-w3ltxt, h3.b-w3ltxt {
        font-size: 2.5em;
    }

    .banner-text-w3pvt {
        padding: 30vw 0 2vw;
    }

    .med {
        text-align: center;
    }

    .feature-grids p {
        max-width: 95%;
        margin: 0 auto;
    }

    .btn-banner {
        margin: 1em 0;
    }

    .padding {
        padding: 1em;
    }

    .w3_agileits_contact_left h3 {
        font-size: 1.5em;
    }

    .box13 {
        margin-bottom: 5px;
    }

    .team-grid {
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width:480px) {
    .banner, .layer {
        /*min-height: 450px;*/
    }

    h2.b-w3ltxt, h3.b-w3ltxt {
        font-size: 2em;
    }

    h3.heading, h2.heading {
        font-size: 25px;
    }

    h5.card-title.pricing-card-title {
        font-size: 1.5em;
    }

    .contact_left iframe {
        min-height: 400px;
    }

    nav ul li {
        padding: 2px 0;
    }
}

@media (max-width:414px) {
    .btn-banner {
        font-size: 15px;
        letter-spacing: 1px;
        padding: 7px 10px;
    }

    h3.heading, h2.heading {
        font-size: 25px;
        line-height: 36px;
    }

    .team-grid {
        width: 85%;
        margin: 0 auto;
    }

    [id^=drop]:checked + ul {
        padding: 5px 0;
    }

    .text a.btn {
        font-size: 15px;
        letter-spacing: 1px;
    }
}

@media (max-width:384px) {
    h2 .b-w3ltxt, h3.b-w3ltxt {
        font-size: 1.8em;
    }

    .banner, .layer {
        /*min-height: 400px;*/
    }

    div#logo h1 {
        font-size: 2em;
    }

    h3.heading, h2.heading {
        font-size: 23px;
        line-height: 36px;
    }

    .text a.btn {
        padding: 12px 7px;
    }

    .footer-grids h4 {
        font-size: 20px;
    }

    .text p {
        width: 100%;
    }

    nav li.last-grid a {
        padding: 4px 10px;
    }
}

@media (max-width:320px) {
    h2 .b-w3ltxt, h3.b-w3ltxt {
        font-size: 1.5em;
    }

    .banner-text-w3pvt {
        padding: 38vw 0 2vw;
    }

    .team-grid {
        width: 85%;
    }
}
/*-- //Responsive design --*/



.navbar-light {
    color: #fff;
    background-color: #ccc6c6;
    border-color: #aca1a2;
}

    .navbar-light .navbar-nav > li > a {
        color: #fff;
    }

    .navbar-light .navbar-nav > .dropdown > a .caret {
        border-top-color: #fff;
        border-bottom-color: #fff;
    }

    .navbar-light .navbar-brand {
        color: #fff;
    }

.menu-large {
    position: static !important;
}

.megamenu {
    padding: 20px 20px;
    width: 100%;
}

    .megamenu > div > li > ul {
        padding: 0;
        margin: 0;
    }

        .megamenu > div > li > ul > li {
            list-style: none;
        }

    .megamenu .card {
        outline: none;
    }

        .megamenu .card:hover,
        .megamenu .card:focus {
            outline: 1px solid #000;
        }

    .megamenu > div > li > ul > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.428571429;
        color: #212529;
        white-space: normal;
    }

        .megamenu > div > li > ul > li > a:hover,
        .megamenu > div > li > ul > li > a:focus {
            text-decoration: none;
            color: #0056b3;
        }

    .megamenu.disabled > a,
    .megamenu.disabled > a:hover,
    .megamenu.disabled > a:focus {
        color: #999999;
    }

        .megamenu.disabled > a:hover,
        .megamenu.disabled > a:focus {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
            cursor: not-allowed;
        }

    .megamenu.dropdown-header {
        color: #428bca;
        font-size: 18px;
    }

@media (max-width: 768px) {
    .megamenu {
        margin-left: 0;
        margin-right: 0;
    }

        .megamenu > li {
            margin-bottom: 30px;
        }

            .megamenu > li:last-child {
                margin-bottom: 0;
            }

        .megamenu.dropdown-header {
            padding: 3px 15px !important;
        }

    .navbar-nav .open .dropdown-menu .dropdown-header {
        color: #fff;
    }
}

.search {
    padding: 0 .5rem;
    width: 180px;
    background: none;
    border: none;
    border-bottom: 1px solid #eaeaea;
    color: #f7f7f7;
}

.inner-page .search {
    color: #8c8c8c;
}

    .inner-page .search:focus, .inner-page .search:hover {
        outline: none;
        border-bottom: 1px solid #8c8c8c;
    }

.search:focus, .search:hover {
    outline: none;
    border-bottom: 1px solid #f7f7f7;
}

::-webkit-input-placeholder { /* Edge */
    color: #eaeaea;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #eaeaea;
}

::placeholder {
    color: #eaeaea;
}

@media (min-width: 768px) {
    .megamenu {
        width: 80%;
        left: 10%;
    }
}

.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    background-color: #ffffff;
    color: #0056b3;
}

.w3ls_banner_txt {
    color: #f7f7f7;
}

.h5, h5 {
    font-size: inherit;
}

.featured-reports .list-group-item .dropdown-item {
    white-space: initial;
    padding: 0;
    font-size: 14px;
}

.featured-reports .list-group-item {
    padding: .5rem 1rem;
}

#reports .card {
    height: 100%;
    padding: 0.5rem;
}

#reports .list .col-sm-12 {
    margin-bottom: 1.5rem;
}

.h6, h6 {
    color: #0056b3;
    font-size: .8rem;
    font-weight: 500;
}

.author {
    /*font-size: .75rem;*/
    color: #8c8c8c;
    line-height: 3;
    font-weight: 400;
}

.inner-banner .author {
    color: #f7f7f7;
}

.info-heading strong {
    font-weight: 500;
}

.card {
    /*border: none;
    box-shadow: 0 4px 8px 0 rgba(94,44,237, 0.2);
    transition: 0.3s;*/
    border-radius: 0px;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(94,44,237,0.2);
    }

.breadcrumb {
    background: transparent;
    padding: .5rem 0.5rem;
    margin: 0;
}

.breadcrumb-item.active, .text-primary {
    color: #0056b3 !important;
}

.bg-primary {
    background: #0056b3 !important;
    color: #ffffff;
}

@media (max-width:991px) {
    .form-inline {
        display: block;
        width: inherit;
    }
}

.pagination {
    display: inline-block;
}

    .pagination a {
        color: #8c8c8c;
        float: left;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        text-decoration: none;
    }

        .pagination a.active {
            background-color: #0056b3;
            color: white;
            border-radius: 50%;
        }

.navbar-toggler .fa {
    color: #0056b3;
}

.megamenu.show {
    top: initial;
}

.breadcrumb a, .breadcrumb-item.active span {
    font-size: .8rem;
    padding: 10px 0px;
    text-transform: uppercase;
}

#insights a {
    color: #f3f3f3;
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: #ffffff !important;
    color: #0056b3;
    border: 1px solid;
}

@media (max-width: 991px) {
    .container {
        max-width: 100%;
    }
}

.fixed-btns {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-40%);
    z-index: 9;
}

@media (max-width:767px) {
    .fixed-btns {
        position: initial;
        top: initial;
        right: initial;
        padding: 1rem;
        transform: translateY(0%);
        display: none;
    }
}

.form-benifit-block {
    display: flex;
}

@media (max-width:575px) {
    .order1 {
        order: 2;
    }

    .order2 {
        order: 1;
    }

    .form-benifit-block {
        display: none;
    }
}

.fixed-btns .btn-sm {
    font-family: monospace;
}

/* Radio btn css */
@keyframes ripple {
    0% {
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    }

    50% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
    }
}

.md-radio.md-radio-inline {
    display: inline-block;
}

.md-radio input[type="radio"] {
    display: none;
}

    .md-radio input[type="radio"]:checked + label:before {
        border-color: #0056b3;
        animation: ripple 0.2s linear forwards;
    }

    .md-radio input[type="radio"]:checked + label:after {
        transform: scale(1);
    }

.md-radio label {
    display: inline-block;
    height: 18px;
    position: relative;
    padding: 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: super;
    font-size: 15px;
}

    .md-radio label:before, .md-radio label:after {
        position: absolute;
        content: '';
        border-radius: 50%;
        transition: all .3s ease;
        transition-property: transform, border-color;
    }

    .md-radio label:before {
        left: 0;
        top: 0;
        width: 18px;
        height: 18px;
        border: 1px solid rgba(0, 0, 0, 0.54);
    }

    .md-radio label:after {
        top: 5px;
        left: 5px;
        width: 8px;
        height: 8px;
        transform: scale(0);
        background: #0056b3;
    }

*, *:before, *:after {
    box-sizing: border-box;
}


h1, h2, h3, h4, h5, h6 {
    margin: 0;
    letter-spacing: 1px;
    font-weight: 400;
}


/* Radio CSS */

#about-us {  
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 17px;
    line-height: 1.8em;
}

#about-us p {
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (max-width:767px) {
    .navbar.navbar-expand-md .nav.navbar-nav {
        background-color: #f8f9fa !important;
        color: #8c8c8c;
    }

        .navbar.navbar-expand-md .nav.navbar-nav .nav-link {
            color: #8c8c8c;
            padding-left: 15px;
            padding-right: 15px;
        }
}

/* Hover effect */

.content {
    /* position: relative;
    width: 100%;   
    margin: auto;
    overflow: hidden; */
    display: flex;
    vertical-align: middle;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #0056b3;
    border-radius: 6px;
    padding: 5px;
}

    .content .content-overlay {
        background: rgba(94,44,237,0.8);
        position: absolute;
        border-radius: 6px;
        /* height: 99%;
    width: 100%; */
        left: 15px;
        top: 0;
        bottom: 0;
        right: 15px;
        opacity: 0;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
    }

    .content:hover .content-overlay {
        opacity: 1;
    }

.content-image {
    width: 100%;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details p {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-bottom {
    top: 80%;
}

.fadeIn-top {
    top: 20%;
}

.fadeIn-left {
    left: 20%;
}

.fadeIn-right {
    left: 80%;
}
/* end hover effect */


.steps span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border: 4px solid #dddd;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.steps .col::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ddd;
    left: 0;
    top: 43%;
    z-index: 1;
}

.steps .col.active::after {
    background: #0056b3;
}

.steps span i {
    color: #ddd;
    font-size: 1.5em;
}

.steps h5 {
    color: #ddd;
}

.steps .col.active span {
    border-color: #0056b3;
}

    .steps .col.active span i, .steps .col.active h5, #thankyou h4 {
        color: #0056b3;
    }

/*Dinesh*/
.bottom-gd {
    text-align: center;
}

.pagination li.active {
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
}

.pagination {
    display: flex;
}

.Pager span {
    text-align: center;
    color: white;
    display: inline-block;
    width: 40px;
    background-color: #0056b3;
    margin-right: 3px;
    line-height: 150%;
    border: 2px solid #0056b3;
}

.Pager a {
    text-align: center;
    display: inline-block;
    width: 40px;
    background-color: #fff;
    color: #0056b3 !important;
    border: 2px solid #0056b3;
    margin-right: 3px;
    line-height: 150%;
    text-decoration: none;
}

.list.list-icons {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}

.inner-banner-small {
    /*background: url(https://www.trendsmarketresearch.com/images/ban11.jpg)no-repeat center;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    /*margin-bottom: 1rem;*/
}

    .inner-banner-small .layer {
        /*min-height: 75px;*/
    }

@media (max-width: 480px) {
    inner-banner-small .layer {
        /*min-height: 120px;*/
    }
}

h1.report-title {
    font-size: 1.5rem;
}

h4.report-title {
    font-size: 1rem;
}

h2.report-title {
    font-size: inherit;
}

.tab-pane p {
    margin: 0 !important;
    margin-bottom: 1rem !important;
    font-size: inherit !important;
    color: #212529 !important;
    line-height: 1.5em !important;
    font-family: inherit !important;
    text-align: justify;
}

    .tab-pane p span {
        margin: 0 !important;
        margin-bottom: 1rem !important;
        font-size: inherit !important;
        color: #212529 !important;
        line-height: 1.5em !important;
        font-family: inherit !important;
        text-align: justify;
    }

    .tab-pane p strong {
        margin: 0 !important;
        margin-bottom: 1rem !important;
        font-size: inherit !important;
        color: #212529 !important;
        line-height: 1.5em !important;
        font-family: inherit !important;
        text-align: justify;
    }

p.mb-3 {
    text-align: justify;
}

a {
    color: #191919;
}

    a:hover {
        color: #0056b3;
    }

.pt-100 {
    padding-top: 110px;
}

#nav-profile-tab, #nav-askforanlyst-tab, #nav-description-tab {
    background: #fff;
    color: #0056b3;
    border-color: #dee2e6 #dee2e6 #dee2e6;
    border-radius: 0px;
}

.nav.navtabs a {
    color: #fbfbfb;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #0056b3 !important;
    color: #fbfafa !important;
    border: none !important;
}

/*
* Social Icons Styles
*/
.social-icons.custom-social-icons-style-1 li {
    box-shadow: none;
    margin: 3px;
}

    .social-icons.custom-social-icons-style-1 li:hover a {
        opacity: 0.7;
    }

    .social-icons.custom-social-icons-style-1 li a {
        background: transparent !important;
        height: auto;
        width: auto;
        line-height: 1;
        font-size: 18px;
        -webkit-transition: ease opacity 300ms;
        -moz-transition: ease opacity 300ms;
        transition: ease opacity 300ms;
    }

.social-icons.custom-social-icons-style-1._white li a {
    color: #FFF !important;
}

.social-icons.custom-social-icons-style-1._colored li.social-icons-facebook a {
    color: #3b5a9a !important;
}

.social-icons.custom-social-icons-style-1._colored li.social-icons-twitter a {
    color: #1aa9e1 !important;
}

.social-icons.custom-social-icons-style-1._colored li.social-icons-linkedin a {
    color: #0073b2 !important;
}

.sample-section {
    /*background-color: rgba(72, 71, 76, 0.5);*/
}

#buy-now {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.breadcrumb a {
    color: white;
}

.breadcrumb span {
    color: white;
}

.sample .layer {
    background-color: #444;
}

.layer {
    padding: 0px;
}

.covid-19-section {
    background-image: url(../images/covid-19.jpg);
    min-width: 100%;
    max-width: 100%;
    /*max-height: 100px;
    min-height: 100px;*/
    padding: 20px;
    text-align: -webkit-center;
}

a.btn-covid-19 {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 0;
    font-weight: 600;
    width: 40%;
    display: block;
    padding: 6px 6px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    border-radius: .25rem;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

/*New Design*/
.report-heading-container {
    margin: 0 0 15px;
    display: flex;
    box-shadow: 0 0 3px 0 grey;
    padding: 10px !important;
}

    .report-heading-container .report_pic {
        padding-left: 10px;
        float: left;
    }

    .report-heading-container .report-heading-info {
        padding-left: 2%;
        width: 100%;
    }

    .report-heading-container .reported_title {
        font-size: 20px;
        line-height: 30px;
        font-family: inherit;
        color: #0056b3;
        margin-bottom: 10px;
    }

.report-heading-info .gr-report-meta-wrap {
    display: block;
    vertical-align: middle;
    margin-bottom: 10px;
}

    .report-heading-info .gr-report-meta-wrap span {
        font-size: 13px;
        border-right: 1px solid #999;
        padding: 0 5px;
        min-width: auto;
        display: inline-block;
        margin-bottom: 2px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .report-heading-info .gr-report-meta-wrap span:last-child {
            border-right: none;
        }

.report-heading-info .rept-btn-wrap {
    text-align: right;
}

.btn-rd-sample {
    background: #dc3545;
    border: 2px solid #dc3545;
    color: #fff;
    /* text-transform: uppercase; */
    border-radius: 0;
    /* font-weight: 600; */
    /*width: 100%;*/
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .btn-rd-sample:hover {
        background: #fff;
        color: #dc3545;
    }

.btn-rd-discount {
    background: #007bff;
    border: 2px solid #007bff;
    color: #fff;
    /* text-transform: uppercase; */
    border-radius: 0;
    /* font-weight: 600; */
    /*width: 100%;*/
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .btn-rd-discount:hover {
        background: #fff;
        color: #007bff;
    }

.btn-rd-inquiry {
    background: #8ba52b;
    border: 2px solid #8ba52b;
    color: #fff;
    /* text-transform: uppercase; */
    border-radius: 0;
    /* font-weight: 600; */
    /*width: 100%;*/
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .btn-rd-inquiry:hover {
        background: #fff;
        color: #8ba52b;
    }


.btn-rd-buynow {
    background: #fa3103;
    border: 2px solid #fa3103;
    color: #fff;
    /* text-transform: uppercase; */
    border-radius: 0;
    /* font-weight: 600; */
    width: 100%;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .btn-rd-buynow:hover {
        background: #fff;
        color: #fa3103;
    }

.btn-rd-customize {
    background: #0868ad;
    border: 2px solid #0868ad;
    color: #fff;
    /* text-transform: uppercase; */
    border-radius: 0;
    /* font-weight: 600; */
    /*width: 100%;*/
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .btn-rd-customize:hover {
        background: #fff;
        color: #0868ad;
    }


.report-header-display {
    position: fixed;
    top: 0;
    z-index: 10;
    background: #fff;
    width: 100%;
    padding: 5px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,.1);
    display: none;
}

    .report-header-display .report-fix-logo {
        float: left;
        width: 15%;
    }

    .report-header-display .report-fix-title {
        float: left;
        width: 35%;
        padding: 10px;
        font-size: 20px;
        line-height: 30px;
        font-family: inherit;
        color: #0072bb;
        margin-bottom: 10px;
    }

    .report-header-display .report-fix-btn {
        float: left;
        width: 45%;
        text-align: right;
        padding: 10px;
    }

.customize-report-section {
    background-color: #edf2f5;
    padding: 20px 0 50px;
    margin-bottom: 10px;
}

.customize-report-section-title {
    color: #115c9c;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    font-family: inherit;
    line-height: 32px;
    margin-bottom: 25px;
}

.related-report-section {
    background: #dcc64c;
    width: 100%;
    padding: 25px 0;
    text-align: center;
}

.site-heading-div {
    border-radius: 5px;
    background: #000;
    width: 8%;
    height: 3px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.related-report-section-heading {
    font-weight: 700;
    font-family: inherit;
    line-height: 32px;
    margin-bottom: 25px;
    font-size: 30px;
    color: #000;
}

ul.lSPager.lSpg {
    display: none;
}

.card-header:first-child {
    border-radius: 0px;
}

h5.choose-us-title {
    color: #000;
    float: left;
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0 5px;
    float: left;
    width: 100%;
}

p.choose-us-text {
    float: left;
    font-size: 15px;
    margin: 0px;
    float: left;
    width: 100%;
}

.report-img-cat {
    height: 130px;
    float: left;
    padding-right: 5px;
}

.input-group-text {
    color: #fff;
    background-color: #0056b3;
    border: 1px solid #0056b3;
    border-radius: 0px;
    width: 40px;
}

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
    border-radius: 0px;
}

.form-control {
    border-radius: 0px;
}

.captch-image {
    height: 33px;
    width: 70px;
}

.report-form {
    padding: 20px 30px;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 15px 30px rgba(5,166,240,.2);
    margin-bottom: 20px;
}

.alert-primary {
    background-color: #fff;
    border-color: #fff;
    font-size: 12px;
}

.alert {
    padding: 0.5rem 0.25rem;
    margin-bottom: 0px;
}

.submit-request-btn {
    background: #639d37;
    display: inline-block;
    border: 0 none;
    padding: 12px 0;
    color: #fff;
    width: 200px;
    border-radius: 0px;
}

.payment-request-btn {
    background: #ffc107;
    display: inline-block;
    border: 0 none;
    padding: 12px 0;
    color: #212529;
    width: 200px;
    border-radius: 0px;
}

.form-report-title-block {
    background: #f8f9f9;
    border-radius: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9f9;
    font-size: 16px;
    line-height: 1.7em;
    padding-top: 15px;
    margin-bottom: 20px;
}

    .form-report-title-block .lead {
        color: #555;
        font-size: 19px;
    }

.form-control:focus {
    box-shadow: 0 0 0 0.05rem rgba(0,123,255,.25);
}

.form-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto; 
    margin-left: auto;
}

@media (min-width: 576px) {
    .form-container {
        max-width: 500px;
    }
}

@media (min-width: 768px) {
    .form-container {
        max-width: 680px;
    }
}

@media (min-width: 992px) {
    .form-container {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .form-container {
        max-width: 1050px;
    }
}

ul.master{
    padding-left:0px;
}