/*
Theme Name:     Insights Leader
Theme URI:      https://www.insightsleader.com
Author:         Insights Leader
Author URI:     https://www.insightsleader.com
Description:    Insights Leader - WordPress Market Research Reports Theme
Requires at least: 5.3
Tested up to:   6.1.1
Requires PHP:   5.6
Text Domain:    insights-leader
Version:        1.0.0
Tags:           custom-background, custom-menu, featured-images, theme-options, custom-colors, translation-ready, threaded-comments, translation-ready
License:        Themeforest Licence
License URI:    https://themeforest.net/licenses/standard
*/
@font-face {
  font-family: 'Poppins';
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: optional;
}
@font-face {
  font-family: 'Poppins';
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: optional;
}
@font-face {
    font-family: 'Poppins';
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: optional;
}
html {
    max-width: 100%;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 1.5;
}
body, p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 20px;
}
ul, ol, li {
    list-style-position: inside;
}
.menuwrapper {
    z-index: 1000;
    background: #fff;
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 2px -1px gray;
}
.menuwrapper nav {
    position: relative;
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
    height: 60px;
    align-items: center;
    justify-content: space-between;
}
nav .menucontent {
    display: flex;
    align-items: center;
}
nav .menucontent .links {
    margin-left: 50px;
    display: flex;
}
.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.menucontent .links li {
    list-style: none;
}
.menucontent .links li a,
.menucontent .links li label {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 17px;
}
.menucontent .links li label {
    display: none;
}
.menucontent .links li a:hover,
.menucontent .links li label:hover {
    background: #dae0ed;
    border-radius: 5px;
}
.menuwrapper .search-icon,
.menuwrapper .menu-icon {
    cursor: pointer;
    width: 70px;
    text-align: center;
}
.menuwrapper .menu-icon {
    display: none;
}
.menuwrapper #show-search:checked~.search-icon i::before {
    content: url("assets/icons/close.svg");
}
.menuwrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.menuwrapper #show-search:checked~.search-box {
    opacity: 1;
    pointer-events: auto;
}
.search-box .search-filed {
    margin-top: 61px;
    width: 100%;
    height: 100%;
    border: 1px solid #cdcdcd;
    font-size: 17px;
    color: #000;
    background: #dae0ed;
    padding: 0 100px 0 15px;
}
.search-box .search-filed::placeholder {
    color: #000;
    opacity: 1;
    padding: 0 100px 0 15px;
}
.search-box .go-icon {
    margin-top: 61px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    background: #dae0ed;
    border: none;
    outline: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
}
.menuwrapper input[type="checkbox"] {
    display: none;
}
/* Dropdown Menu code start */
.menucontent .links ul {
    position: absolute;
    background: #efefef;
    top: 70px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
}
.menucontent .links li:hover>ul {
    top: 50px;
    opacity: 1;
    z-index: 10;
    visibility: visible;
    transition: all 0.3s ease;
}
.menucontent .links ul li a {
    font-size: 17px;
    display: block;
    width: 100%;
    line-height: 25px;
    border-radius: 0;
}
.menucontent .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 15px);
}
.menucontent .links ul li {
    position: relative;
    margin: 5px;
}
.menucontent .links ul li:hover ul {
    top: 0;
}
/* Mega Menu */
.mega-menu-list {
    column-count: 3;
    column-gap: 5px;
    list-style: none;
    padding: 0
}
.mega-menu-list li {
    display: inline-block;
    width: 100%
}
/* Icon styles */
.ri-search-icon:before {
    content: url("assets/icons/search.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-search-icon1:before {
    content: url("assets/icons/search1.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-close-icon:before {
    content: url("assets/icons/close.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-search-arrow-icon:before {
    content: url("assets/icons/search-arrow.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-menu-icon:before {
    content: url("assets/icons/menu.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-arrow-down:before {
    content: url("assets/icons/arrow-down.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-arrow-up:before {
    content: url("assets/icons/arrow-up.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-bookmark:before {
    content: url("assets/icons/bookmark.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-call:before {
    content: url("assets/icons/call.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-linkedin:before {
    content: url("assets/icons/linkedin.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-mail:before {
    content: url("assets/icons/mail.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-megaphone:before {
    content: url("assets/icons/megaphone.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-tags {
    content: url("assets/icons/tags.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-address:before {
    content: url("assets/icons/location.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-download {
    content: url("assets/icons/download.svg");
    display: inline-block;
    width: 16px;
    height: 16px;
}
.ri-facebook:before{
    content:url('assets/icons/facebook.svg');
    display:inline-block;
    width:56px;
    height:56px;
}
.ri-linkedin:before{
    content:url('assets/icons/linkedint.svg');
    display:inline-block;
    width:56px;
    height:56px;
}
.ri-twitter:before{
    content:url('assets/icons/twitter.svg');
    display:inline-block;
    width:56px;
    height:56px;
}
.backtotop {
    padding: 10px;
    position: fixed;
    bottom: 20px;
    right: 0;
}
.breadcrumb {
    padding-top: 61px;
    padding-left: 10px;
    background-color: #003366;
}
.breadcrumb .breadcrumb-con {
    font-size: 12px;
}
.breadcrumb a {
    color: #fff;
    font-size: 12px;

}
.breadcrumb{
    background:#fff;
    margin-left:1rem;
}
.breadcrumb a {
    color: #000;
    font-size: 12px;
    font-weight:500
}
table {
    margin: 10px 0px;
}
table, td, th {
    font-size: 15px;
    padding: 3px;
    border-collapse: collapse;
}
.colrow {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.colrow-12 {
    grid-column: auto/span 12;
}
.colrow-10 {
    grid-column: auto/span 10;
}
.colrow-9 {
    grid-column: auto/span 9;
}
.colrow-8 {
    grid-column: auto/span 8;
}
.colrow-5 {
    grid-column: auto/span 5;
}
.colrow-7 {
    grid-column: auto/span 7;
}
.colrow-6 {
    grid-column: auto/span 6;
}
.colrow-4 {
    grid-column: auto/span 4;
}
.colrow-3 {
    grid-column: auto/span 3;
}
.colrow-2 {
    grid-column: auto/span 2;
}
.colrow-10,
.colrow-9,
.colrow-8,
.colrow-6,
.colrow-4,
.colrow-3,
.colrow-2 {
    box-sizing: border-box;
}
.hide_mobile {
    display: block;
}
.show_mobile {
    display: none;
}
.search-icon {
    display: none;
}
.searchbar {
    display: flex;
    border: 1px solid #ced4da;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 5px;
    height: 40px;
    gap: 20px;
}
.searchbar input {
    all: unset;
}
.searchbar button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
}
.blue {
    color: #47c5fb;
}
.dark-blue {
    color: #00569e;

}
.bg-gray {
    background-color: #ECF6F5;
    background-color:#17bbf817;
}
.text-center {
    display: block;
    text-align: center;
}
.m-auto {
    margin: auto;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mt-5 {
    margin-top: 1rem;
}
.ai-c {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gp-1 {
    gap: 1rem;
}
.mt-3 {
    margin-top: 10px;
}
.main-page{
    width: 93%;
    margin: auto;
}
/* Responsive code start */
@media screen and (max-width: 1250px) {
    .main-page{
        width: 100%;
    }
    .menuwrapper nav {

        padding: 0 20px;
    }
    nav .menucontent .links {
        margin-left: 30px;
    }
    .menucontent .links li a {
        padding: 8px 13px;
    }
    .menuwrapper .search-box {
        margin-left: 25px;
        max-width: calc(100% - 100px);
    }
    .menuwrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

@media screen and (max-width: 900px) {
    .menuwrapper nav {
        max-width: 100%;
        padding: 0 20px;
    }
    .menuwrapper .menu-icon {
        display: block;
    }
    .menuwrapper #show-menu:checked~.menu-icon i::before {
        content: url("assets/icons/close.svg");
    }
    nav .menucontent .links {
        z-index: 1000;
        display: block;
        position: fixed;
        background: #cdcdcd;
        height: 100%;
        width: 100%;
        top: 60px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }
    nav #show-menu:checked~.menucontent .links {
        left: 0;
    }
    .menucontent .links li {
        margin: 15px 20px;
    }
    .menucontent .links li a,
    .menucontent .links li label {
        line-height: 25px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
    }
    .menucontent .links li a.desktop-link {
        display: none;
    }
    /* dropdown responsive code start */
    .menucontent .links ul,
    .menucontent .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0;
        overflow: hidden;
    }
    .menucontent .links #show-features:checked~ul,
    .menucontent .links #show-services:checked~ul,
    .menucontent .links #show-items:checked~ul {
        max-height: 100vh;
    }
    .menucontent .links ul li {
        margin: 7px 20px;
    }
    .menucontent .links ul li a {
        font-size: 18px;
        line-height: 25px;
        border-radius: 5px;
    }
    .mega-menu-list {
        column-count: 1;
        column-gap: 0
    }
    .breadcrumb-con,
    .categorysearchbar,
    .category-list-col {
        display: none;
    }
    .colrow-10,
    .colrow-9,
    .colrow-8,
    .colrow-6,
    .colrow-4,
    .colrow-3,
    .colrow-2 {
        grid-column: auto/span 12;
    }
    img {
        height: auto;
        max-width: 100%;
    }
    .hide_mobile {
        display: none;
    }
    .show_mobile {
        display: block;
    }
    .search-icon {
        display: block;
    }
    .searchbar {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .menuwrapper nav {
        padding: 0 10px;
    }
    .menuwrapper .search-box {
        max-width: calc(100% - 70px);
    }
    .menuwrapper .search-box .go-icon {
        width: 30px;
        right: 0;
    }
    .menuwrapper .search-box input {
        padding-right: 30px;
    }
    #trp-floater-ls {
        right: 0;
        left: 85%;
    }
}


/* Footer  */
.footer-col{
    width:100%;
    margin:auto;
    padding-left:2rem;
    height: fit-content;
    margin-top: 0;
}
footer {
    Background: #262338;
    padding: 10px;
}
footer a {
    color: #fff;
    display: block;
}
.footer-title {
    font-weight: 500;
    color: #fff;
    font-size: 20px;
}
footer input {
    padding: 10px;
    height: 36px;
    width: 60%
}
footer button {
    margin-left: -5px;
    display: inline-block;
    border-radius: 0 4px 4px 0;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
    background-color: #2179ad;
    height: 36px
}
footer input:focus {
    outline: 0
}
footer p {
    color: #fff;
    font-size: 14px;
}
footer .icons{
    margin-top:10px;
    height:25px;
}
.footer2 {
    font-size: 13px;
    text-align: center;
    background-color: #336699;
    height: 25px;
    display: flex;
    align-content: space-around;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    background: #f4f8f9;
    color: #000;
}
footer .newsletterwrapp {
    width: 90%;
}
.page-container{
   padding: 100px 50px 100px;
}
#trp-floater-ls{
    right: 5px;
    left: 90%;
}
@media (max-width:768px) {
    footer {
        display: none;
    }
    #trp-floater-ls{
        left: 80%;
    }
}