/*
[Table of contents]

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Home
- 2.2 Listing
- 2.3 Detail page
- 2.4 Write a review page
- 2.5 Login/register
- 2.6 Company landing
- 2.7 Pricing page
- 2.8 Faq/help
- 2.9 Contacts
- 2.10 Company categories
- 2.11 User Dashboard
- 2.12 About

3. COMMON
- 3.1 Misc
- 3.2 Spacing
- 3.3 Cookie bar
- 3.4 Sing In Modal

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
@font-face {
    font-family: 'Montserrat';
    src: url('../../fonts/montserrat/Montserrat-Regular.eot');
    src: url('../../fonts/montserrat/Montserrat-Regular.eot#iefix') format('embedded-opentype'),
        url('../../fonts/montserrat/Montserrat-Regular.woff') format('woff2'),
        url('../../fonts/montserrat/Montserrat-Regular.woff') format('woff'),
        url('../../fonts/montserrat/Montserrat-Regular.ttf') format('truetype'),
        url('../../fonts/montserrat/Montserrat-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto_slab';
    src: url('../../fonts/roboto_slab/RobotoSlab-Regular.eot');
    src: url('../../fonts/roboto_slab/RobotoSlab-Regular.eot#iefix') format('embedded-opentype'),
        url('../../fonts/roboto_slab/RobotoSlab-Regular.woff') format('woff2'),
        url('../../fonts/roboto_slab/RobotoSlab-Regular.woff') format('woff'),
        url('../../fonts/roboto_slab/RobotoSlab-Regular.ttf') format('truetype'),
        url('../../fonts/roboto_slab/RobotoSlab-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* MAIN NAVIGATION */
html {
    scroll-behavior: smooth;
}
/* All styles for screen size over 992px*/
@media only screen and (min-width: 992px) {
    nav#menu.main-menu {
        display: block !important;
    }

    #mm-menu.main-menu {
        display: none !important;
    }

    header .btn_mobile {
        display: none !important;
    }
    /* Menu */
    .main-menu {
        position: relative;
        z-index: 9;
        width: auto;
        top: 8px;
        right: 15px;
        float: right;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        color: #fff;
    }
    .main-menu ul,
    .main-menu ul li {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
    }
    .main-menu ul a,
    .main-menu ul li a {
        position: relative;
        margin: 0;
        padding: 0;
        display: block;
        padding: 5px 10px;
        white-space: nowrap;
    }

    /*First level styles */
    .main-menu > ul > li span > a {
        color: #fff;
        padding: 0 8px 15px 8px;
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 500;
    }
    .main-menu > ul > li span:hover > a {
        opacity: 0.7;
    }

    header.sticky .main-menu > ul > li span > a, header.header_in .main-menu > ul > li span > a {
        color: #444;
    }
    header.sticky .main-menu > ul > li span:hover > a, header.header_in .main-menu > ul > li span:hover > a {
        opacity: 1;
        color: #3578fa;
    }

    /* Submenu*/
    .main-menu ul ul {
        position: absolute;
        z-index: 1;
        visibility: hidden;
        left: 3px;
        top: 93%;
        margin: 0;
        display: block;
        padding: 0;
        background: #fff;
        min-width: 200px;
        -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
        -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
        transform: scale(0.4);
        transform-origin: 10% top;
        transition: 0.15s linear, 0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1), 0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
        opacity: 0;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }
    .main-menu ul ul:before {
        bottom: 100%;
        left: 15%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: #fff;
        border-width: 7px;
        margin-left: -7px;
    }
    .main-menu ul ul li {
        display: block;
        height: auto;
        padding: 0;
    }
    .main-menu ul ul li a {
        font-size: 15px;
        color: #555;
        border-bottom: 1px solid #ededed;
        display: block;
        padding: 15px 10px;
        line-height: 1;
    }

    .main-menu ul li:hover > ul {
        padding: 0;
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        -webkit-transition-duration: 0s, 0.2s, 0.2s;
        transition-duration: 0s, 0.2s, 0.2s;
    }

    .main-menu ul ul li:first-child a:hover {
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        -ms-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }
    .main-menu ul ul li:last-child a {
        border-bottom: none;
    }
    .main-menu ul ul li:last-child a:hover {
        -webkit-border-radius: 0 0 3px 3px;
        -moz-border-radius: 0 0 3px 3px;
        -ms-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
    }
    .main-menu ul ul li:hover > a {
        background-color: #f9f9f9;
        color: #3578fa;
        padding-left: 15px;
    }
}
/* Submenu 2nd level right */
.main-menu ul ul.second_level_right {
    left: auto;
    right: 3px;
}
.main-menu ul ul.second_level_right:before {
    right: 15%;
    left: auto;
}

/* Submenu 3rd level */
.main-menu ul ul li span a {
    font-weight: normal !important;
}
.main-menu ul ul li span a:hover {
    background-color: #f9f9f9;
    color: #3578fa;
    padding-left: 18px;
    opacity: 1;
}
.main-menu ul ul li span a:after {
    font-family: 'ElegantIcons';
    content: "\35";
    float: right;
    font-size: 16px;
    font-size: 1rem;
    margin-top: -2px;
}

.main-menu ul ul ul {
    position: absolute;
    border-top: 0;
    z-index: 1;
    height: auto;
    left: 100%;
    top: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    min-width: 190px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.main-menu ul ul ul.third_level_left {
    right: 100%;
    left: auto;
}
.main-menu ul ul ul li a {
    border-bottom: 1px solid #ededed !important;
}

/* Arrows top 3rd level*/
.main-menu ul ul ul:before {
    border-width: 0;
    margin-left: 0;
}

/* All styles for screen size under 991px */
@media only screen and (max-width: 991px) {
    nav#menu {
        display: none !important;
    }

    .mm-menu {
        background: #fff;
    }

    .main-menu {
        top: 0;
        right: 0;
        float: none;
    }

    ul.mm-listview {
        line-height: 25px;
    }
    ul.mm-listview li a {
        color: #ccc;
        display: block;
    }
}
#menu.fake_menu {
    display: none !important;
    visibility: hidden !important;
}

/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #eef3f7;
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: "Roboto", Arial, sans-serif;
    color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
}

p {
    margin-bottom: 30px;
}

strong {
    font-weight: 600;
}

label {
    font-weight: 500;
    margin-bottom: 3px;
    color: #222;
}

hr {
    margin: 30px 0 30px 0;
    border-color: #ddd;
}

ul, ol {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.main_title_3 {
    position: relative;
}
.main_title_3 h2, .main_title_3 h3 {
    /*    font-size: 32px;*/
    font-size: 42px;
    margin: -5px 0 0 0;
    display: inline-block;
}
@media (max-width: 767px) {
    .main_title_3 h2, .main_title_3 h3 {
        font-size: 24px;
        font-size: 1.5rem;
    }
}
.main_title_3 p {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .main_title_3 p {
        font-size: 16px;
        font-size: 1rem;
    }
}
.main_title_3 a {
    display: inline-block;
    right: 0;
    bottom: 0;
    position: absolute;
}
@media (max-width: 767px) {
    .main_title_3 a {
        top: -8px;
    }
}
.main_title_3 a:after {
    font-family: 'ElegantIcons';
    content: "\24";
    font-size: 21px;
    font-size: 1.3125rem;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 5px;
    margin-left: 4px;
}

.main_title_2 {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}
@media (max-width: 767px) {
    .main_title_2 {
        margin-bottom: 10px;
    }
}
.main_title_2 h2, .main_title_2 h1 {
    margin: 0;
}
@media (max-width: 767px) {
    .main_title_2 h2, .main_title_2 h1 {
        font-size: 32px;
        font-size: 2rem;
    }
}
.main_title_2 p {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .main_title_2 p {
        font-size: 21px;
        font-size: 1.3125rem;
    }
}

/*General links color*/
a {
    color: #3578fa;
    text-decoration: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}
a:hover, a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
    border: none;
    color: #fff;
    background: #3578fa;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-size: 0.875rem;
}
a.btn_1:hover,
.btn_1:hover {
    background-color: #FFC107;
    color: #222 !important;
}
a.btn_1.full-width,
.btn_1.full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
}
a.btn_1.full-width.purchase,
.btn_1.full-width.purchase {
    background-color: #3578fa;
}
a.btn_1.full-width.purchase:hover,
.btn_1.full-width.purchase:hover {
    background-color: #32a067;
    color: #fff !important;
}
a.btn_1.full-width.wishlist,
.btn_1.full-width.wishlist {
    border-color: #555;
    color: #555;
}
a.btn_1.full-width.wishlist:hover,
.btn_1.full-width.wishlist:hover {
    color: #fff !important;
    background-color: #555;
    border-color: #555;
}
a.btn_1.small,
.btn_1.small {
    padding: 7px 10px;
    font-size: 13px;
    font-size: 0.8125rem;
}
a.btn_1.medium,
.btn_1.medium {
    font-size: 16px;
    font-size: 1rem;
    padding: 18px 30px;
}
a.btn_1.rounded,
.btn_1.rounded {
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    -ms-border-radius: 25px !important;
    border-radius: 25px !important;
}

a.btn_top,
.btn_top {
    border: none;
    color: #fff;
    background: #3578fa;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    line-height: 1 !important;
    padding: 10px 15px !important;
    position: relative;
    top: 2px;
}
@media (max-width: 991px) {
    a.btn_top,
    .btn_top {
        display: none;
    }
}
a.btn_top:hover,
.btn_top:hover {
    background-color: #FFC107;
    color: #222 !important;
    opacity: 1 !important;
}
a.btn_top.company,
.btn_top.company {
    background-color: #051d4d;
    color: #fff !important;
    opacity: 1 !important;
}
a.btn_top.company:hover,
.btn_top.company:hover {
    background-color: #FFC107;
    color: #222 !important;
    opacity: 1 !important;
}

.closebt {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: absolute;
    font-size: 24px;
    font-size: 1.5rem;
    top: 10px;
    right: 15px;
    color: #fff;
    opacity: 0.6;
    width: 30px;
    height: 30px;
}
.closebt:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
}

.btn_home_align {
    text-align: right;
}
@media (max-width: 767px) {
    .btn_home_align {
        text-align: center;
        margin-bottom: 15px;
    }
}

/*-------- 1.3 Structure --------*/
/* Header */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 30px;
    z-index: 99999999;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media (max-width: 767px) {
    header.header {
        padding: 15px 15px 6px 15px;
    }
}
header.header .logo_sticky {
    display: none;
}
header.header.sticky {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #ededed;
    background-color: #fff;
    padding: 10px 20px;
}

@media (max-width: 991px) {
    header.header.sticky {
        padding: 15px 15px 6px 15px;
    }
}
header.header.sticky .logo_normal {
    display: none;
}
header.header.sticky .logo_sticky {
    display: inline-block;
}
header.header_in {
    padding: 10px 0;
    background-color: #fff;
    position: relative;
}
header.header_in.is_fixed {
    border-bottom: 1px solid #ededed;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
header.header_in.is_sticky.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
header.header_in ul#top_menu li a {
    color: #444;
}
@media (max-width: 991px) {
    header.header_in {
        padding: 10px 0 5px 0;
    }
    header.header_in ul#top_menu {
        position: absolute;
        right: 15px;
        float: none;
    }
    header.header_in #logo a {
        z-index: 9;
        position: relative;
    }
}

.sub_header_in {
    background-color: #3578fa;
    padding: 20px 0;
}
.sub_header_in h1 {
    color: #fff;
    margin: 0;
    font-size: 26px;
    font-size: 1.625rem;
}
@media (max-width: 575px) {
    .sub_header_in h1 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

ul#top_menu {
    float: right;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-size: 0.8125rem;
}
@media (max-width: 991px) {
    ul#top_menu {
        margin: -2px 0 0 10px;
    }
}
ul#top_menu li {
    float: left;
    margin: 0;
    line-height: 1;
    margin-right: 10px;
}
ul#top_menu li:last-child {
    margin-right: 0;
    position: relative;
    top: 0;
}
@media (max-width: 991px) {
    ul#top_menu li {
        margin: 2px 0 0 10px;
    }
}
ul#top_menu li a {
    color: #fff;
}
ul#top_menu li a:hover {
    color: #fff;
    opacity: 0.7;
}
ul#top_menu li a.login, ul#top_menu li a.wishlist_bt_top {
    display: block;
    width: 22px;
    height: 23px;
    position: relative;
    top: 8px;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
@media (max-width: 991px) {
    ul#top_menu li a.login, ul#top_menu li a.wishlist_bt_top {
        top: 2px;
    }
}
ul#top_menu li a.login:before, ul#top_menu li a.wishlist_bt_top:before {
    font-family: 'Glyphter';
    font-size: 21px;
    font-size: 1.3125rem;
    text-indent: 0;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: normal;
    line-height: 1;
}
.sticky ul#top_menu li a.login:before, .sticky ul#top_menu li a.wishlist_bt_top:before {
    color: #444;
}
ul#top_menu li a.wishlist_bt_top {
    text-indent: -9999px;
    overflow: hidden;
}
ul#top_menu li a.wishlist_bt_top:before {
    content: '\0043';
}
ul#top_menu li a.login {
    text-indent: -9999px;
    overflow: hidden;
}
ul#top_menu li a.login:before {
    content: '\0042';
}
ul#top_menu li a.logged {
    display: block;
    width: 34px;
    height: 34px;
    position: relative;
    overflow: hidden;
    top: 1px;
    margin-left: 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
ul#top_menu li a.logged img {
    width: 35px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
    ul#top_menu li a.logged {
        top: -5px;
    }
}

header.sticky .hamburger-inner, header.sticky .hamburger-inner::before, header.sticky .hamburger-inner::after, header.header_in .hamburger-inner, header.header_in .hamburger-inner::before, header.header_in .hamburger-inner::after {
    background-color: #444;
}

#logo {
    float: left;
}
@media (max-width: 991px) {
    #logo {
        float: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }
    #logo img {
        width: auto;
        height: 28px;
        margin: 12px 0 0 0;
    }
    .header_in #logo img {
        margin: 0;
    }
}

/* Main */
main {
    background-color: #eef3f7;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    padding: 60px 0 35px 0;
    border-top: 1px solid #ededed;
    background-color: #fff;
}
@media (max-width: 767px) {
    footer {
        padding: 45px 0 35px 0;
    }
}
footer h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-size: 1.125rem;
}
@media (max-width: 575px) {
    footer h3 {
        font-size: 16px;
        font-size: 1rem;
        margin: 0;
    }
}
footer a.collapse_bt_mobile {
    position: relative;
    display: block;
    cursor: default;
}
@media (max-width: 575px) {
    footer a.collapse_bt_mobile {
        border-bottom: 1px solid #ededed;
        padding: 12px 0;
    }
}
footer a.collapse_bt_mobile .circle-plus {
    display: none;
}
@media (max-width: 575px) {
    footer a.collapse_bt_mobile .circle-plus {
        display: block;
        position: absolute;
        top: 8px;
        right: 0;
    }
}
@media (max-width: 575px) {
    footer hr {
        display: none;
    }
}
@media (max-width: 575px) {
    footer ul {
        padding-top: 15px;
    }
}
footer ul li {
    margin-bottom: 5px;
}
footer ul li a {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    position: relative;
    color: #555;
}
footer ul li a:hover {
    color: #5db634;
    opacity: 1;
}
footer ul li a i {
    margin-right: 10px;
    color: #fff;
}
footer ul.links li a:hover {
    -webkit-transform: translate(5px, 0);
    -moz-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    transform: translate(5px, 0);
}
footer ul.links li a:hover:after {
    opacity: 1;
    color: #5db634;
}
footer ul.links li a:after {
    font-family: 'ElegantIcons';
    content: "\24";
    position: absolute;
    margin-left: 5px;
    top: 1px;
    opacity: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
footer ul.contacts li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
footer ul.contacts li:last-child {
    margin-bottom: 0;
}
footer ul.contacts li i {
    position: absolute;
    top: 2px;
    left: 0;
    color: #5db634;
    line-height: 1;
    font-size: 18px;
    font-size: 1.125rem;
}
.row.new_label img {
    max-width: 200px;
}
@media (max-width: 575px) {
    footer #newsletter {
        padding-top: 15px;
    }
}

/* Newsletter footer*/
#newsletter .form-group {
    position: relative;
}
#newsletter .loader {
    position: absolute;
    right: -20px;
    top: 11px;
    color: #444;
    font-size: 12px;
    font-size: 0.75rem;
}
#newsletter h6 {
    margin: 15px 0 15px 0;
}
#newsletter .form-group {
    position: relative;
}
#newsletter input[type='email'] {
    border: 0;
    height: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 15px;
    font-size: 14px;
    font-size: 0.875rem;
    background-color: #eef3f7;
}
#newsletter input[type='email']:focus {
    border: 0;
    box-shadow: none;
}
#newsletter input[type='submit'] {
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    top: 0;
    border: 0;
    padding: 0 12px;
    height: 40px;
    line-height: 42px;
    cursor: pointer;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #3578fa;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}
#newsletter input[type='submit']:hover {
    background-color: #FFC107;
    color: #222;
}

.follow_us {
    animation-delay: 1.1s;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
}
.follow_us h5 {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 35px;
}
.follow_us ul li {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    font-size: 1.25rem;
}
.follow_us ul li a i {
    color: #555;
    opacity: 0.6;
}
.follow_us ul li a i:hover {
    opacity: 1;
    color: #3578fa;
}

ul#footer-selector {
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
}
@media (max-width: 575px) {
    ul#footer-selector {
        margin-top: 30px;
    }
}
ul#footer-selector li {
    float: left;
    margin-right: 10px;
}
@media (max-width: 575px) {
    ul#footer-selector li:last-child {
        margin-top: 5px;
    }
}

/* Addtional links Footer */
ul#additional_links {
    margin: 0;
    padding: 8px 0 0 0;
    color: #555;
    font-size: 13px;
    font-size: 0.8125rem;
    /*    float: right;*/
}
@media (max-width: 991px) {
    ul#additional_links {
        float: none;
        margin-top: 10px;
    }
}
ul#additional_links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
}
ul#additional_links li:first-child {
    margin-right: 20px;
}
ul#additional_links li:last-child {
    margin-right: 0;
}
ul#additional_links li:last-child:after {
    content: "";
}
ul#additional_links li span {
    color: #555;
    opacity: 0.8;
}
ul#additional_links li a {
    color: #555;
    opacity: 0.8;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul#additional_links li a:hover {
    opacity: 1;
}
ul#additional_links li:after {
    content: "|";
    font-weight: 300;
    position: relative;
    left: 10px;
}

.styled-select {
    width: 100%;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    border: none;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding-right: 35px;
    position: relative;
}
.styled-select#lang-selector {
    color: #555;
}
.styled-select#lang-selector:after {
    font-family: 'ElegantIcons';
    content: "\e0e2";
    color: #555;
    position: absolute;
    right: 10px;
    top: 0;
}
.styled-select#currency-selector:after {
    font-family: 'ElegantIcons';
    content: "\33";
    color: #555;
    position: absolute;
    right: 10px;
    top: 0;
}
.styled-select select {
    background: transparent;
    width: 110%;
    padding-left: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 30px;
    color: #555;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0;
    font-weight: 500;
    -moz-appearance: window;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}
.styled-select select:focus {
    color: #555;
    outline: none;
    box-shadow: none;
}
.styled-select select::-ms-expand {
    display: none;
}

/* Wow on scroll event */
.wow {
    visibility: hidden;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Home/front page--------*/
/* Home single hero */
.hero_single {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0;
    color: #fff;
}
.hero_single .wrapper {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.8);
}
.hero_single .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hero_single .wrapper h3 {
    font-family: "Roboto", Arial, sans-serif;
    color: #444444;
    margin: 0;
}
.hero_single .wrapper p {
    font-weight: 300;
    margin: 10px 0 0 0;
    padding: 0 20%;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
}
.hero_single .wrapper p strong {
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero_single .wrapper p {
        padding: 0;
        font-size: 18px;
        font-size: 1.125rem;
    }
}
.hero_single.version_1 {
    height: 620px;
    background: url(../img/home_section_1.jpg) top center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
@media (max-width: 767px) {
    .hero_single.version_1 {
        background: url(../img/home_section_1.jpg) -300px top no-repeat fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}
.hero_single.version_1 .wrapper {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero_single.version_1 .wrapper h3 {
    font-size: 52px;
    font-size: 3.25rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .hero_single.version_1 .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 30px;
    }
}
.hero_single.version_1 .wrapper p {
    font-weight: 400;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 20px;
    font-size: 1.25rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}
.hero_single.version_1 .wrapper p strong {
    font-weight: 500;
}
@media (max-width: 767px) {
    .hero_single.version_1 .wrapper p {
        padding: 0;
        font-size: 16px;
        font-size: 1rem;
    }
}
.hero_single.version_2 {
    height: 640px;
    background: url(../img/home-bg.svg) top right no-repeat;
}
@media (max-width: 767px) {
    .hero_single.version_2 {
        height: 550px;
    }
}
.hero_single.version_2 .wrapper {
    background: #fff;

    text-align: left;
}
.hero_single.version_2 .wrapper h3 {
    font-size: 40px;
    font-size: 2.5rem;
    text-shadow: none;
    font-weight: bold;
}
@media (max-width: 767px) {
    .hero_single.version_2 .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 20px;
    }
}
.hero_single.version_2 .wrapper p {
    font-weight: 400;
    margin: 5px 0 20px 0;
    padding: 0;
    font-size: 19px;
    font-size: 1.1875rem;
    text-shadow: none;
    color: #444444;
}
.hero_single.version_2 .wrapper p strong {
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero_single.version_2 .wrapper p {
        padding: 0;
        font-size: 16px;
        font-size: 1rem;
    }
}
.hero_single.version_2 .wrapper .custom-search-input-2 {
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.hero_single.version_2 .wrapper .form-group {
    margin-bottom: 10px;
}
.hero_single.version_2 .wrapper input[type='submit'] {
    color: #222;
    margin-top: 10px;
    background-color: #FFC107;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}
@media (max-width: 991px) {
    .hero_single.version_2 .wrapper input[type='submit'] {
        margin: 20px 0 0 0;
    }
}
.hero_single.version_2 .wrapper input[type='submit']:hover {
    background-color: #3578fa;
    color: #fff;
}
.hero_single.version_3 {
    height: 620px;
    background: #222 url(../img/home_section_2.jpg) center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.hero_single.version_3 .wrapper {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero_single.version_3 .wrapper h3 {
    font-size: 52px;
    font-size: 3.25rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .hero_single.version_3 .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 30px;
    }
}
.hero_single.version_3 .wrapper p {
    font-weight: 400;
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 20px;
    font-size: 1.25rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}
.hero_single.version_3 .wrapper p strong {
    font-weight: 500;
}
@media (max-width: 767px) {
    .hero_single.version_3 .wrapper p {
        padding: 0;
        font-size: 16px;
        font-size: 1rem;
    }
}
.hero_single.version_company {
    height: 600px;
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
@media (max-width: 767px) {
    .hero_single.version_company {
        height: 550px;
        background-size: auto 550px;
    }
}
.hero_single.version_company .wrapper {
    background-color: black;
    background-color: rgba(0, 0, 0, 0);
    text-align: left;
}
.hero_single.version_company .wrapper h3 {
    font-size: 46px;
    font-size: 2.875rem;
    text-shadow: none;
}
@media (max-width: 767px) {
    .hero_single.version_company .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 20px;
    }
}
.hero_single.version_company .wrapper p {
    font-weight: 400;
    margin: 5px 0 20px 0;
    padding: 0;
    font-size: 21px;
    font-size: 1.3125rem;
    text-shadow: none;
}
.hero_single.version_company .wrapper p strong {
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero_single.version_company .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }
}
.hero_single.general {
    height: 500px;
    background: #051d4d url('../../img/company/user_login.jpg') top center repeat;
    display: none;
}
.container.margin_tabs.reg_mar {
    margin-top: 170px;
    margin-bottom: 60px;
}
.container.margin_tabs.reg_mar.user_rel {
    position: relative;
    padding: 0;
}
.bg_color_1.comp_bgs {
    background: #f6f7fb;
}
.comp_subs input.btn_1.rounded.btn-block {
    width: 100%;
    border-radius: 0px !important;
    font-size: 18px;
    letter-spacing: 0.5px;
    height: 48px;
    font-weight: normal;
    padding: 0;
    background: #37a000;
    color: #fff !important;
}
.comp_subs.reg2_btn input.btn_1.rounded.btn-block {
    max-width: 400px;
}
.form-group.add_top_30.text-center.col-md-8.comp_subs {
    margin-top: 0;
}
section.content-current.logs_forms input.form-control, section.content-current.logs_forms select.form-control,section.content-current.logs_forms textarea.form-control {
    font-size: 15px !important;
    font-weight: lighter;
    border: 1px solid #ddd;
    border-radius: 0;
    height: 46px;
    font-family: Arial;
    letter-spacing: 0.3px;
}
section.content-current.logs_forms .form-group.required small {
    font-weight: 500;
    font-size: 16px;
    padding-top: 4px;
    display: block;
    color: #37a000;
    letter-spacing: 0.3px;
}
.container.margin_tabs.reg_mar div#tabs li.tab-current a {
    color: #37a000;
    border-radius: 0;
    padding-left: 0;
    text-align: center;
    padding-right: 0;
    padding-bottom: 21px;
    border: 0;
    border-bottom: 4px solid #37a000;
}
form.user_signin_check input.form-control,form.company_signin_check input.form-control,form.company_register_details input.form-control,div#forgot_pw form input.form-control,form.reg_company_otp input.form-control,form.reg_user_otp input.form-control,.container.margin_tabs.reg_mar .tabs.forgot_set input.form-control  {
    background: #EFEFEF;
    box-shadow: 0px 2px 1px #EBEBEB;
    border-radius: 0;
    border: 1px solid #eee;
    padding-right: 44px;
}
form.user_signin_check .form-group img,form.company_signin_check .form-group img,form.company_register_details .form-group img {
    position: absolute;
    right: 10px;
    width: 27px;
    top: 8px;
}

button.my-toggle.hideShowPassword-toggle-show {
    z-index: 999;
}
button.my-toggle.hideShowPassword-toggle-hide {
    z-index: 999;
}
.container.margin_tabs.reg_mar .tabs nav ul li a em {
    color: #333;
    font-size: 14px;
    position: relative;
    top: 8px;
}
.container.margin_tabs.reg_mar div#tabs li a {
    border: 1px solid #EDEDED;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
.container.margin_tabs.reg_mar div#tabs {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0px 0px 3px #ccc;
}
.container.margin_tabs.reg_mar .tabs nav ul li {
    width: 50%;
    margin: 0;
    float: left;
    border: 0;
}
.container.margin_tabs.reg_mar.comp_reg2 div#tabs {
    max-width: 100%;
    box-shadow: none;
}
.container.margin_tabs.reg_mar.comp_reg2 {
    margin-top: 100px;
}
.container.margin_tabs.reg_mar .tabs.forgot_set {
    box-shadow: none !important;
}
.container.margin_tabs.reg_mar .tabs.forgot_set li {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
.container.margin_tabs.reg_mar .tabs.forgot_set li a {
    color: #555 !important;
}
.container.margin_tabs.reg_mar .tabs.forgot_set li a {
    border: 0 !important;
    font-size: 26px;
    padding-bottom: 0 !important;
}
section.content-current.logs_forms textarea.form-control {
    height: 110px;
    resize: none;
}
.comp_info.comp_top span.select2.select2-container.select2-container--default {
    width: 100% !important;
}
h3.break_line {
    padding-bottom: 30px;
}
h4.det_head {
    padding-bottom: 10px;
    font-size: 22px;
    color: #3578fa;
}
nav.next_form {
    margin: 0 auto;
    display: table;
}
nav.next_form a {
    display: block;
    float: left;
    text-align: center;
    width: auto;
    border: 1px solid #908e8e;
    padding: 6px 27px;
    margin: 0 10px;
    font-size: 16px;
    color: #333;
}
nav.next_form a:first-child,nav.next_form a:last-child {
    margin: 0;
}
nav.next_form a span {
    display: block;
    font-weight: bold;
    font-size: 16px;
}
nav.next_form a:hover {
    background: #3578fa;
    color: #fff;
    border-color: #3578fa;
}
label.lab_list {
    font-size: 18px;
    color: #495057;
    font-weight: 500;
    text-indent: 4px;
}
nav.next_form.nextrial a:last-child {
    margin: 0;
}
nav.next_form.nextrial a {
    margin: 0 0px 0 0;
    padding: 6px 30px;
    border-right: 0;
}
nav.next_form.nextrial a:last-child {
    border-right: 1px solid #908e8e;
}
nav.next_form {
    padding-bottom: 10px;
}

.container.margin_tabs.reg_mar div#tabs nav.tell_more li a {
    padding: 2px 0;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    font-size: 30px;
    border-bottom: 3px solid #333;
}
.container.margin_tabs.reg_mar div#tabs nav.tell_more li {
    border:0;
}
.container.margin_tabs.reg_mar div#tabs nav.tell_more ul li {
    font-size: 18px;
    width: 100%;
    color: #37a000;
    text-align: left;
    border-left: 2px solid #37a000;
    padding-left: 23px;
    background: #fff;
    font-weight: bold;
    font-family: roboto;
    padding: 12px 18px;
}
nav.tell_more {
    padding-bottom: 40px;
}
.skip_btn {
    text-align: center;
    width: 229px;
    padding-bottom: 23px;
    display: table;
    margin: 0 auto;
    position: absolute;
    right: 33px;
    z-index: 99;
}
.skip_btn button {
    font-size: 17px;
    padding: 10px 13px;
    background: #fff;
    border: 1px solid #e7e8ec;
    cursor: pointer;
    color: #48A717;
    width: 100%;
    margin-top: 22px;
    box-shadow: 0px 0px 7px #e9eaee;
}
.skip_btn button:hover {
    background: #48A717;
    color: #fff;
    border-color: #48A717;
}
.skip_btn p {
    margin-top: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 16px;
    position: relative;
    text-align: center;
}
.skip_btn p span {
    position: relative;
    background: #F6F7FB;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 9px;
    font-size: 17px;
    top: 14px;
    font-weight: bold;
}
.skip_btn button i {
    font-size: 21px;
    margin-left: 2px;
    position: relative;
    top: 2px;
}
.container.margin_tabs.reg_mar.comp_reg2 div.skip_btn {
    position: unset;
    width: 100%;
}
nav.next_form.pric a {
    margin: 0;
    padding: 6px 32px;
    border-right: 0;
}
nav.next_form.pric a:last-child {
    border-right:1px solid #908e8e;
}
h4.det_head.det_inf {
    color: #333;
    text-align: left;
    font-family: Arial;
    background: #ededed;
    text-indent: 30px;
    padding: 14px 0;
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 20px;
}
h4.det_head.det_inf i {
    color: #333;
    margin: 0 15px;
    font-size: 27px;
}
div.comp_info {
    background: #fff;
    padding: 40px 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 7px #e9eaee;
}
div.comp_info label {
    color: #707070;
    font-size: 16px;
    padding-top: 10px;
}
input.btn_1.rounded.btn-block.price_update {
    background: #5db634;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 16px !important;
    letter-spacing: 0.3px;
}
#save_all_btn {
    max-width: 100%;
}
.btn_1.rounded.btn-block.price_update {
    padding-left: 0;
    padding-right: 0;
}
.form-group.pricing_labs {
    background: #F7F7F7;
    padding: 10px;
    border: 1px solid #eee;
}
.form-group.pricing_labs p {
    margin: 0;
    padding-left: 15px;
    font-size: 16px;
}
.form-group.pricing_labs a i {
    font-family: FontAwesome;
    font-style: normal;
    background: red;
    color: #fff;
    width: 24px;
    border-radius: 100%;
    font-size: 15px;
    height: 24px;
    display: inline-block;
    padding-left: 6px;
    padding-top: 0px;
}
.comp_table td a img {
    width: 12px;
    margin-right: 5px;
}
.comp_table td a {
    color: #333;
}
.comp_table tr {
    background: #F4F4F4;
    border: 1px solid #ccc;
    margin-bottom: 15px !important;
    float: left;
    width: 100%;
    border-radius: 4px;
}
.comp_table tr td:first-child {
    width: 13%;
    text-align: center;
}
.comp_table tr td:nth-child(2) {
    width: 32%;
}
.comp_table tr td {
    width: 25%;
    float: left;
}
.top_green {
    background: #5db634;
    text-align: center;
    font-size: 26px;
    color: #fff;
    padding: 23px 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 109px;
    width: 100%;
    line-height: 39px;
}
.top_num {
    text-align: center;
    background: #F2F2F2;
    padding: 27px 0;
    font-size: 50px;
    font-weight: bold;
}
.top_num small {
    font-size: 33px;
    font-weight: bold;
}
.top_num span {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: normal;
}
.comp_pack div.green_container {
    box-shadow: 0px 0px 4px #ccc;
    padding: 0;
    border-radius: 8px;
    width: 100%;
    float: left;
}
.green_points {
    width: 100%;
    float: left;
    padding-top: 30px;
    padding-bottom: 50px;
}
.green_points ul li {
    font-size: 16px;
    line-height: 29px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: left;
}
.green_points ul li span {
    background: #5db634;
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    top: 0px;
    margin-right: 8px;
}
.comp_pack h4 {
    text-align: center;
    padding-bottom: 40px;
    padding-top: 20px;
}
.form-group.pricing_labs a {
    float: right;
    margin-right: 10px;

}
.comp_info input.form-control,.comp_info textarea.form-control  {
    background: #ededed;
    border: 0;
}
section.content-current.logs_forms input.form-control:focus, section.content-current.logs_forms textarea.form-control:focus {
    border-color: #37a000;
}
@media (max-width: 767px) {
    .hero_single.general {
        height: 450px;
    }
}
.hero_single.general .wrapper {
    background: rgba(0, 0, 0, 0.6);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    text-align: center;
}
@media (max-width: 767px) {
    .hero_single.general .wrapper {
        padding-top: 20px;
    }
}
.hero_single.general .wrapper i {
    font-size: 46px;
    font-size: 2.875rem;
    text-shadow: none;
}
.hero_single.general .wrapper h1 {
    color: #fff;
    font-size: 46px;
    font-size: 2.875rem;
    text-shadow: none;
    margin: 0;
}
@media (max-width: 767px) {
    .hero_single.general .wrapper h1 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}
.hero_single.general .wrapper p {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 21px;
    font-size: 1.3125rem;
    text-shadow: none;
}
.hero_single.general .wrapper p strong {
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero_single.general .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }
}
.hero_single.office {
    height: 500px;
    background: #222 url(../img/office_1.jpg) center bottom no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
@media (max-width: 767px) {
    .hero_single.office {
        height: 450px;
    }
}
.hero_single.office .wrapper {
    background: rgba(0, 0, 0, 0.9);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    text-align: center;
}
@media (max-width: 767px) {
    .hero_single.office .wrapper {
        padding-top: 20px;
    }
}
.hero_single.office .wrapper i {
    font-size: 46px;
    font-size: 2.875rem;
    text-shadow: none;
}
.hero_single.office .wrapper h1 {
    color: #fff;
    font-size: 46px;
    font-size: 2.875rem;
    text-shadow: none;
    margin: 0;
}
@media (max-width: 767px) {
    .hero_single.office .wrapper h1 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}
.hero_single.office .wrapper p {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 21px;
    font-size: 1.3125rem;
    text-shadow: none;
}
.hero_single.office .wrapper p strong {
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero_single.office .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.custom-search-input-2 {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-top: 10px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
    .custom-search-input-2 {
        background: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}
.custom-search-input-2 input {
    border: 0;
    height: 50px;
    padding-left: 15px;
    border: 1.2px solid #d2d8dd;
    font-weight: 500;
}
@media (max-width: 991px) {
    /*    .custom-search-input-2 input {
            border: none;
        }*/
}
.custom-search-input-2 input:focus {
    box-shadow: none;
    border: 1.2px solid #009CFF;
}
@media (max-width: 991px) {
    .custom-search-input-2 input:focus {
        border-right: none;
    }
}
.custom-search-input-2 select {
    display: none;
}
.custom-search-input-2 .nice-select .current {
    font-weight: 500;
    color: #6f787f;
}
.custom-search-input-2 .form-group {
    margin: 0;
}
@media (max-width: 991px) {
    .custom-search-input-2 .form-group {
        margin-bottom: 5px;
    }
}
.custom-search-input-2 i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 18px;
    font-size: 1.125rem;
    position: absolute;
    background-color: #fff;
    line-height: 50px;
    top: 1px;
    right: 1px;
    padding-right: 15px;
    display: block;
    width: 20px;
    box-sizing: content-box;
    height: 48px;
    z-index: 9;
    color: #999;
}
@media (max-width: 991px) {
    .custom-search-input-2 i {
        padding-right: 10px;
    }
}
.custom-search-input-2 input[type='submit'],.custom-search-input-2 .searchbtn {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-size: 0.875rem;
    border: 0;
    padding: 0 25px;
    height: 50px;
    cursor: pointer;
    outline: none;
    width: 100%;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #3578fa;
    margin-right: -1px;
}
@media (max-width: 991px) {
    .custom-search-input-2 input[type='submit'],.custom-search-input-2 .searchbtn {
        margin: 20px 0 0 0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }
}
.custom-search-input-2 input[type='submit']:hover,.custom-search-input-2 .searchbtn:hover {
    background-color: #FFC107;
    color: #222;
}
.custom-search-input-2.inner {
    margin-top: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
@media (max-width: 991px) {
    .custom-search-input-2.inner {
        display: none;
    }
}
.custom-search-input-2.inner input {
    border: 0;
    height: 40px;
    padding-left: 15px;
    border-right: 1px solid #d2d8dd;
    font-weight: 500;
}
@media (max-width: 991px) {
    .custom-search-input-2.inner input {
        border: none;
    }
}
.custom-search-input-2.inner input:focus {
    box-shadow: none;
    border-right: 1px solid #d2d8dd;
}
@media (max-width: 991px) {
    .custom-search-input-2.inner input:focus {
        border-right: none;
    }
}
.custom-search-input-2.inner .nice-select {
    height: 40px;
    line-height: 38px;
}
.custom-search-input-2.inner .nice-select:after {
    right: 15px;
}
.custom-search-input-2.inner i {
    height: 38px;
    line-height: 38px;
    padding-right: 10px;
}
.custom-search-input-2.inner input[type='submit'] {
    position: absolute;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    right: -1px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-size: 0.875rem;
    top: 0;
    border: 0;
    height: 40px;
    cursor: pointer;
    outline: none;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    text-indent: -999px;
    background: #FFC107 url(../img/search.svg) no-repeat center center;
}
.custom-search-input-2.inner input[type='submit']:hover {
    background-color: #3578fa;
}
@media (max-width: 575px) {
    .custom-search-input-2.inner input[type='submit'] {
        text-indent: -999px;
        background: #3578fa url(../img/search.svg) no-repeat center center;
    }
}
@media (max-width: 991px) {
    .custom-search-input-2.inner {
        margin: 0 0 20px 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

a.grid_item {
    display: block;
    margin-bottom: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    height: 200px;
}
@media (max-width: 991px) {
    a.grid_item {
        height: 180px;
    }
}
@media (max-width: 767px) {
    a.grid_item {
        height: 150px;
    }
}
@media (max-width: 575px) {
    a.grid_item {
        height: 180px;
    }
}
a.grid_item .info {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: block;
    padding: 25px 25px 10px 25px;
    color: #fff;
    left: 0;
    bottom: 0;
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, #000);
    background: linear-gradient(to bottom, transparent, #000);
    box-sizing: border-box;
}
@media (max-width: 767px) {
    a.grid_item .info {
        padding: 15px 15px 0 15px;
    }
}
a.grid_item .info small {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 11px;
    font-size: 0.6875rem;
    background-color: #3578fa;
    line-height: 1;
    padding: 3px 5px 2px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
}
a.grid_item .info em {
    position: absolute;
    right: 25px;
    bottom: 17px;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    font-size: 0.8125rem;
}
@media (max-width: 767px) {
    a.grid_item .info em {
        right: 15px;
        bottom: 8px;
    }
}
a.grid_item .info h3 {
    color: #fff;
    font-size: 21px;
    font-size: 1.3125rem;
}
@media (max-width: 767px) {
    a.grid_item .info h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}
a.grid_item .info p {
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
    font-size: 0.9375rem;
}
a.grid_item figure {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    a.grid_item figure {
        height: 150px;
    }
}
@media (max-width: 575px) {
    a.grid_item figure {
        height: 180px;
    }
}
a.grid_item figure img {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767px) {
    a.grid_item figure img {
        width: 100%;
    }
}
a.grid_item:hover figure img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

a.box_cat_home {
    background-color: #fff;
    display: block;
    padding: 35px 15px 25px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    color: #999;
}
a.box_cat_home h3 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #3578fa;
    padding: 4px 0;
    margin: 5px 0 15px 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
}
a.box_cat_home:hover {
    -webkit-box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
    -moz-box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
    box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
}
a.box_cat_home:hover i {
    opacity: 1;
}
a.box_cat_home ul {
    margin: 0 -10px -25px -10px;
    padding: 10px;
    text-align: center;
}
a.box_cat_home ul li {
    display: inline-block;
}
a.box_cat_home ul li:first-child {
    float: left;
}
@media (max-width: 575px) {
    a.box_cat_home ul li:first-child {
        float: none;
        display: block;
    }
}
a.box_cat_home ul li:last-child {
    float: right;
}
@media (max-width: 575px) {
    a.box_cat_home ul li:last-child {
        float: none;
    }
}
a.box_cat_home ul li strong {
    margin-right: 5px;
    font-weight: 600;
    color: #777;
}

.list_home ul {
    text-align: left;
}
.list_home ul li a {
    background-color: #fff;
    padding: 10px;
    display: block;
    margin-bottom: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    font-weight: 500;
    color: #555;
}
.list_home ul li a strong {
    background-color: #f8f8f8;
    color: #999;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    padding: 6px;
    display: inline-block;
    margin-right: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}
.list_home ul li a:after {
    font-family: 'ElegantIcons';
    content: "\24";
    right: 15px;
    top: 15px;
    position: absolute;
    color: #FFC107;
}
.list_home ul li a:hover {
    background-color: #FFC107;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    color: #fff;
}
.list_home ul li a:hover:after {
    color: #fff;
}

/*Carousel home page*/
#reccomended {
    margin-top: 40px;
}
@media (max-width: 767px) {
    #reccomended {
        margin-top: 0;
    }
}
#reccomended .item {
    margin: 10px;
}
#reccomended .item .review_listing {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(3, 27, 78, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(3, 27, 78, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(3, 27, 78, 0.1);
}

#reccomended .owl-item {
    opacity: 0.5;
    transform: scale(0.85);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(0.85, 0.85);
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
}

#reccomended .owl-item.active.center {
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
    transform: scale(1);
}

#reccomended .owl-item.active.center .item .title h4,
#reccomended .owl-item.active.center .item .views {
    opacity: 1;
}

.owl-theme .owl-dots {
    margin-top: 15px !important;
    outline: none;
}
@media (max-width: 767px) {
    .owl-theme .owl-dots {
        margin-top: 0 !important;
        margin-bottom: 0;
    }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #3578fa !important;
    outline: none !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px !important;
    height: 13px !important;
}

/*.call_section {
    background: url(../img/call_section_bg.svg) bottom right no-repeat;
}*/
.call_section h3 {
    font-weight: 300;
    font-size: 36px;
    font-size: 2.25rem;
}
.call_section p {
    font-size: 16px;
    font-size: 1rem;
}

.call_section_2 {
    background: #051d4d url(../img/waves.svg) center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
}
.call_section_2 .wrapper {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.6);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}
.call_section_2 h3 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}
.call_section_2 .btn_1 {
    background-color: #fff;
    color: #3578fa !important;
}

.call_section_3 {
    background: #051d4d url(../img/bg_call_section.jpg) center center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.call_section_3 .wrapper {
    padding: 75px 0 50px 0;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
    .call_section_3 .wrapper {
        background-color: black;
        background-color: transparent;
        padding: 60px 0 35px 0;
    }
}
@media (max-width: 767px) {
    .call_section_3 {
        background: #051d4d;
    }
}
.call_section_3 h3 {
    font-weight: 300;
    font-size: 36px;
    font-size: 2.25rem;
    color: #fff;
}
.call_section_3 p {
    font-size: 16px;
    font-size: 1rem;
    color: #fff;
}

/*-------- 2.2 Listing --------*/
#results {
    padding: 20px 0;
    color: #fff;
    background: #051d4d;
    position: relative;
    z-index: 999 !important;
}
@media (max-width: 767px) {
    #results {
        padding: 12px 0;
    }
}
#results.is_stuck {
    z-index: 99;
    padding: 10px 0;
}
#results h1 {
    color: #fff;
    margin: 12px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
    font-size: 1rem;
}
@media (max-width: 991px) {
    #results h1 {
        margin: 5px 0 0 0;
    }
}
@media (max-width: 767px) {
    #results h1 {
        margin: 3px 0 0 0;
    }
}

.search_mob a {
    display: none;
    width: 22px;
    height: 24px;
    text-indent: -9999px;
    position: relative;
    color: #051d4d;
}
@media (max-width: 991px) {
    .search_mob a {
        display: block;
    }
}
.search_mob a:hover {
    color: #3578fa;
}
.search_mob a:before {
    font-family: 'themify';
    content: "\e610";
    text-indent: 0;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: 600;
    font-size: 21px;
    font-size: 1.3125rem;
}

a.btn_search_mobile {
    background: url(../img/search.svg) no-repeat center center;
    width: 21px;
    height: 21px;
    float: right;
    display: none;
}
@media (max-width: 991px) {
    a.btn_search_mobile {
        display: block;
    }
}

.search_mob_wp {
    padding: 10px 0 10px 0;
    display: none;
    width: 100%;
}
.search_mob_wp .nice-select {
    margin-bottom: 5px;
    border: none;
}
.search_mob_wp .form-control {
    margin-bottom: 10px;
}
.search_mob_wp input[type='submit'] {
    background-color: #FFC107;
    color: #222;
}
.search_mob_wp input[type='submit']:hover {
    background-color: #32a067;
    color: #fff;
}

.filters_listing {
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #ededed;
    z-index: 99 !important;
    position: relative;
}
.filters_listing ul {
    margin: 0;
}
.filters_listing ul li {
    margin-right: 10px;
}
.filters_listing ul li:first-child {
    float: left;
}
.filters_listing ul li:nth-child(2) {
    float: right;
    margin-right: 0;
}

.switch-field {
    overflow: hidden;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .switch-field {
        margin-top: 10px;
    }
}
.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}
.switch-field input:checked + label {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.9);
}
.switch-field label {
    float: left;
    display: inline-block;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
    text-shadow: none;
    line-height: 1;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0;
}
.switch-field label:last-of-type {
    border-right: 0;
}
.switch-field label:hover {
    cursor: pointer;
    color: #3578fa;
}

a.btn_filt {
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    position: relative;
}
@media (max-width: 767px) {
    a.btn_filt {
        text-indent: -999px;
        display: block;
        width: 28px;
        height: 32px;
        padding: 0;
        right: 0;
    }
}
a.btn_filt:hover {
    color: #3578fa;
}
a.btn_filt:before {
    font-family: 'ElegantIcons';
    content: "\67";
    display: inline-block;
    margin-right: 5px;
    font-size: 18px;
    font-size: 1.125rem;
    position: relative;
    top: 3px;
    left: 0;
}
@media (max-width: 767px) {
    a.btn_filt:before {
        position: absolute;
        text-indent: 1px;
        right: 0;
        top: 4px;
        font-size: 24px;
        font-size: 1.5rem;
        font-weight: normal;
    }
}

#filters {
    background-color: #fff;
    border-bottom: 1px solid #ededed;
}
#filters h6 {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
}
#filters label {
    color: #555;
}
#filters ul li small {
    font-weight: 600;
    float: right;
    position: relative;
    top: 4px;
}

/* Checkbox style */
.container_check {
    display: block;
    position: relative;
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container_check input:checked ~ .checkmark {
    background-color: #3578fa;
    border: 1px solid transparent;
}
.container_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #d2d8dd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.container_check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
    display: block;
}

/* Radio buttons */
.container_radio {
    display: block;
    position: relative;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 30px;
    line-height: 1.3;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container_radio input {
    position: absolute;
    opacity: 0;
}
.container_radio input:checked ~ .checkmark:after {
    opacity: 1;
}
.container_radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.container_radio .checkmark:after {
    display: block;
    content: "";
    position: absolute;
    opacity: 0;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3578fa;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.distance {
    margin-bottom: 15px;
}
.distance span {
    font-weight: 600;
    color: #3578fa;
}

.rangeslider__handle {
    border: 2px solid #3578fa !important;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.rangeslider__fill {
    background: #3578fa !important;
}

.review_listing {
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 25px;
    box-sizing: content-box;
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    margin-bottom: 30px;
}
.review_listing figure {
    width: 40px;
    height: 40px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    float: left;
    margin-right: 15px;
}
.review_listing figure img {
    width: 40px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.review_listing small {
    display: block;
    font-weight: 500;
    margin-top: 3px;
    font-size: 13px;
    font-size: 0.8125rem;
}
.review_listing h3 {
    font-size: 14px;
    font-size: 0.875rem;
    color: #999;
    margin: 8px 0 3px 0;
}
.review_listing h3 strong {
    color: #222;
    font-weight: 500;
}
.review_listing h4 {
    font-size: 17px !important;
    margin-top: 10px;
    line-height: 25px;
}
.review_listing ul {
    margin: 0;
    text-align: center;
    color: #999;
}
.review_listing ul li {
    display: inline-block;
}
.review_listing ul li:first-child {
    float: left;
}
.review_listing ul li:last-child {
    float: right;
}
.review_listing ul li strong {
    margin-right: 3px;
    font-weight: 600;
}

.rating {
    color: #999;
    font-size: 12px;
    font-size: 0.75rem;
}
.rating i {
    width: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: 20px;
    font-size: 12px;
    font-size: 0.75rem;
    display: inline-block;
    background-color: #FEE227;
    color: #fff;
    line-height: 20px;
    text-align: center;
    margin-right: 2px;
}
.rating i.empty {
    background-color: #ccc;
}
.rating em {
    display: inline-block;
    margin-left: 10px;
}
#filters_col {
    background-color: #fff;
    padding: 0;
    margin-bottom: 25px;
    border: 1px solid #ededed;
}
#filters_col label {
    color: #222;
    font-weight: normal;
}
a#filters_col_bt {
    color: #222;
    position: relative;
    font-size: 20px;
    font-weight: normal;
    padding: 10px 15px;
    display: block;
    width: 100%;
    background: #EFEFEF;
}
a#filters_col_bt:before {
    font-family: "ElegantIcons";
    content: "\66";
    font-size: 26px;
    font-size: 1.625rem;
    position: absolute;
    right: 10px;
    top: 14px;
    line-height: 1;
    font-weight: normal;
}
div#collapseFilters {
    padding: 15px;
}
.filter_type h6 {
    /*    border-top: 1px solid #ededed;*/
    margin: 0 0 15px;
    padding: 15px 0 0 0;
    font-size: 0.8125rem;
    font-size: 19px;
    font-weight: normal;
}
.filter_type ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.filter_type ul li {
    margin-bottom: 5px;
}
.filter_type ul li small {
    float: right;
    position: relative;
    top: 4px;
}
.filter_type ul li:last-child {
    margin-bottom: 0;
}
.simple-rating.star-rating.home_rate {
    text-align: left;
}
.simple-rating.star-rating.home_rate i {
    background-size: 28px !important;
    padding: 7px 2px!important;
    margin: 0 !important;
    float: left;
    font-size: 26px;
}
div#filters_col select.form-control {
    background: #EFEFEF;
    font-size: 17px;
    border: 0;
}
#filters_col label.container {
    font-size: 17px;
    margin-bottom: 13px;
    padding-left: 0;
    padding-right: 0;
}
div#filters_col input[type="checkbox"] {
    width: 22px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}
.filter_type > div {
    margin-left: 8px;
}
div#collapseFilters div.filter_type {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    width: 100%;
    overflow: hidden;
}
div#filters_col .filter_type.form-group.filt_last {
    border-bottom: 0;
    margin-bottom: 0;
}
.record_btns i {
    margin-right: 6px;
    font-size: 17px;
}
.audio_head h4[data-toggle="collapse"] .fa:before {
    content: " \f13a";
}

.audio_head h4[data-toggle="collapse"].collapsed .fa:before {
    content: "\f139";
}
.indust {
    background: #fff;
    padding: 13px 14px;
}
.track_list ul li {
    font-size: 19px;
    padding-bottom: 12px;
    color: #000;
}
.track_list ul li span {
    float: right;
}
/*-------- 2.3 Detail page --------*/
.reviews_summary {
    margin-top: 58px;
    background-color: #051d4d;
    border-bottom: 1px solid #ededed;
}
@media (max-width: 991px) {
    .reviews_summary {
        margin-top: 45px;
    }
}
@media (max-width: 767px) {
    .reviews_summary {
        text-align: center;
    }
}
.reviews_summary .wrapper {
    background: rgba(0, 0, 0, 0.4);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    padding: 60px 0 55px 0;
}
.reviews_summary figure {
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: block;
    position: relative;
    float: left;
    margin-right: 20px;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .reviews_summary figure {
        float: none;
        margin: 0 auto 10px auto;
    }
}
.reviews_summary figure img {
    width: 120px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.reviews_summary small {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #999;
    margin-top: 5px;
    display: inline-block;
}
.reviews_summary h1 {
    font-weight: 500;
    color: #fff;
    margin-top: 5px;
    font-size: 36px;
    font-size: 2.25rem;
}
@media (max-width: 767px) {
    .reviews_summary h1 {
        font-size: 32px;
        font-size: 2rem;
    }
}
.reviews_summary .rating {
    font-size: 14px;
    font-size: 0.875rem;
}
@media (max-width: 767px) {
    .reviews_summary .rating {
        margin: 0 0 15px 0;
        display: inline-block;
    }
}
@media (max-width: 767px) {
    .reviews_summary .rating em {
        margin: 10px 0 0 0;
        display: block;
    }
}
.reviews_summary .rating i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .review_detail {
        margin-top: 30px;
    }
}
@media (max-width: 991px) {
    .review_detail {
        margin-top: 15px;
    }
}
.review_detail strong {
    font-size: 12px;
    font-size: 0.75rem;
    color: #999;
    position: relative;
    top: -3px;
}
.review_detail .progress {
    margin-bottom: 11px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: 15px;
}
.review_detail .progress.last {
    margin-bottom: 0;
}
.review_detail .progress-bar {
    background-color: #3578fa;
}

.review_card {
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 25px 25px 0 25px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}
@media (max-width: 767px) {
    .review_card .user_info {
        margin-bottom: 10px;
    }
}
.review_card .user_info figure {
    width: 50px;
    height: 50px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .review_card .user_info figure {
        float: left;
    }
}
.review_card .user_info figure img {
    width: 50px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.review_card .user_info h5 {
    font-size: 13px;
    font-size: 0.8125rem;
}
@media (max-width: 767px) {
    .review_card .user_info h5 {
        float: left;
        margin: 18px 0 0 15px;
    }
}
.review_card .review_content h4 {
    font-size: 18px;
    font-size: 1.125rem;
}
.review_card .review_content .rating {
    float: left;
}
@media (max-width: 575px) {
    .review_card .review_content .rating {
        float: none;
        display: block;
    }
}
@media (max-width: 575px) {
    .review_card .review_content .rating em {
        float: none;
        display: inline-block;
        margin-left: 10px;
    }
}
.review_card .review_content em {
    color: #999;
    float: right;
}
@media (max-width: 575px) {
    .review_card .review_content em {
        float: none;
        display: block;
        margin-top: 10px;
        margin-left: 0;
    }
}
.review_card .review_content ul {
    margin: 0 0 25px 0;
    padding: 0;
}
.review_card .review_content ul li {
    display: inline-block;
    font-size: 13px;
    font-size: 0.8125rem;
    margin-right: 0;
}
@media (max-width: 575px) {
    .review_card .review_content ul li span {
        display: none;
    }
}
.review_card .review_content ul li a {
    background-color: #ededed;
    padding: 5px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #555;
}
.review_card .review_content ul li a:hover {
    background-color: #ccc;
}
.review_card .review_content ul li a i {
    margin-right: 5px;
}
@media (max-width: 575px) {
    .review_card .review_content ul li a i {
        margin-right: 0;
    }
}
.review_card .review_content ul li:last-child {
    float: right;
    margin-right: 0;
}
.review_card .review_content ul li:last-child a {
    padding: 5px 7px;
    text-align: center;
}
.review_card .review_content ul li:last-child a i {
    margin: 0;
    text-align: center;
}
.review_card .reply {
    padding-top: 30px;
}
@media (max-width: 767px) {
    .review_card .reply .user_info {
        display: none;
    }
}
.review_card .reply .user_info figure {
    width: 50px;
    height: 50px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
.review_card .reply .user_info figure img {
    width: 50px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.review_card .reply .user_info h5 {
    font-size: 14px;
    font-size: 0.875rem;
}
.review_card .reply .review_content {
    border-left: 5px solid #ededed;
    padding-left: 20px;
}
@media (max-width: 575px) {
    .review_card .reply .review_content strong {
        display: block;
    }
}
.review_card .reply .review_content em {
    color: #999;
    font-style: italic;
    float: right;
}
@media (max-width: 575px) {
    .review_card .reply .review_content em {
        float: none;
        display: block;
        margin-top: 10px;
    }
}

.box_general.company_info {
    padding-bottom: 1px;
}
.box_general.company_info h3, .box_general.company_info h4 {
    font-weight: 500;
}
.box_general.company_info p {
    margin-bottom: 15px;
}
.box_general.company_info .follow_company a {
    font-size: 21px;
    font-size: 1.3125rem;
    color: #999;
    display: inline-block;
    margin-right: 5px;
}
.box_general.company_info .follow_company a:hover {
    color: #3578fa;
}

/*-------- 2.4 Write a review page --------*/
.box_general.write_review h1 {
    font-weight: 500;
    font-size: 32px;
    font-size: 2rem;
}

.rating {
    display: inline-block;
    position: relative;
}

.rating-input {
    display: none;
}

.rating:hover .rating-star:hover,
.rating:hover .rating-star:hover ~ .rating-star,
.rating-input:checked ~ .rating-star {
    background-position: 0 0;
}

.rating-star,
.rating:hover .rating-star {
    cursor: pointer;
    float: right;
    display: block;
    margin-right: 3px;
    width: 37px;
    height: 37px;
    background: url(../img/stars.svg) 0 -38px;
}

.fileupload {
    position: relative;
    width: 320px;
}

input[type=file] {
    background-color: #fff;
    border: 1px solid #ededed;
    padding: 5px;
    height: auto;
    color: #999;
    border-radius: 3px;
}

input[type=file]::-webkit-file-upload-button, input[type=file].invalid::-webkit-file-upload-button, input[type=file].valid::-webkit-file-upload-button {
    color: #fff;
    font-size: 13px;
    border: 0;
    border-radius: 3px;
    padding: 8px 10px 8px 38px;
    background: #3578fa url(../img/camera.svg) 8px center no-repeat;
    outline: none;
}

.latest_review > h4 {
    font-weight: 500;
    font-size: 21px;
    font-size: 1.3125rem;
    margin-bottom: 20px;
}
.latest_review .review_listing {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#confirm {
    text-align: center;
    padding: 60px 15px;
}

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }
    100% {
        stroke-dashoffset: 480px;
    }
}
@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }
    100% {
        stroke-dashoffset: 480px;
    }
}
@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }
    100% {
        stroke-dashoffset: 480px;
    }
}
.inlinesvg .svg svg {
    display: inline;
}

.icon--order-success svg path {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}

a.boxed_list {
    text-align: center;
    padding: 30px;
    border: 1px solid #ededed;
    display: block;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 25px;
}
a.boxed_list i {
    font-size: 60px;
    font-size: 3.75rem;
    margin-bottom: 15px;
}
a.boxed_list h4 {
    font-size: 18px;
    font-size: 1.125rem;
    color: #222;
}
a.boxed_list p {
    color: #777;
    margin-bottom: 0;
}
a.boxed_list:hover i {
    color: #FFC107;
}

/*-------- 2.5 Login/register --------*/
#login_bg, #register_bg {
    background: #ccc url(../img/access_bg.jpg) center center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
}

#login figure, #register figure {
    text-align: center;
    border-bottom: 1px solid #ededed;
    margin: -45px -60px 0 -60px;
    padding: 20px 60px 30px 60px;
}
@media (max-width: 767px) {
    #login figure, #register figure {
        margin: -30px -30px 20px -30px;
        padding: 15px 60px 20px 60px;
    }
}
#login aside, #register aside {
    -webkit-box-shadow: 3px 0 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 0 30px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 0 30px rgba(0, 0, 0, 0.2);
    width: 430px;
    padding: 45px;
    position: absolute;
    left: 0;
    top: 0;
    overflow-y: auto;
    background-color: #fff;
    min-height: 100vh;
}
@media (max-width: 767px) {
    #login aside, #register aside {
        width: 100%;
        padding: 30px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}
#login aside form, #register aside form {
    margin-bottom: 30px;
    display: block;
}
#login aside form .form-group input, #register aside form .form-group input {
    padding-left: 40px;
}
#login aside form .form-group i, #register aside form .form-group i {
    font-size: 21px;
    font-size: 1.3125rem;
    position: absolute;
    left: 12px;
    top: 10px;
    color: #ccc;
    width: 25px;
    height: 25px;
    display: block;
    font-weight: 400 !important;
}
#login aside .copy, #register aside .copy {
    text-align: center;
    position: absolute;
    height: 30px;
    left: 0;
    bottom: 30px;
    width: 100%;
    color: #999;
    font-weight: 500;
}

.access_social {
    margin-top: 45px;
}
@media (max-width: 767px) {
    .access_social {
        margin-top: 30px;
    }
}

.divider {
    text-align: center;
    height: 1px;
    margin: 30px 0 15px 0;
    background-color: #ededed;
}
.divider span {
    position: relative;
    top: -20px;
    background-color: #fff;
    display: inline-block;
    padding: 10px;
    font-style: italic;
}

a.social_bt {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    min-width: 200px;
    margin-bottom: 5px;
    display: block;
    padding: 12px;
    line-height: 1;
    position: relative;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
a.social_bt:hover {
    -webkit-filter: brightness(115%);
    filter: brightness(115%);
}
a.social_bt.facebook:before, a.social_bt.google:before, a.social_bt.linkedin:before {
    font-family: 'ElegantIcons';
    position: absolute;
    left: 12px;
    top: 10px;
    font-size: 16px;
    font-size: 1rem;
    color: #fff;
}
a.social_bt.facebook {
    background-color: #3B5998;
}
a.social_bt.facebook:before {
    content: "\e093";
}
a.social_bt.google {
    background-color: #DC4E41;
}
a.social_bt.google:before {
    content: "\e096";
    top: 12px;
}
a.social_bt.linkedin {
    background-color: #0077B5;
}
a.social_bt.linkedin:before {
    content: "\e09d";
}

/*Password strength */
#pass-info {
    width: 100%;
    margin-bottom: 15px;
    color: #555;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    padding: 5px 3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}
#pass-info.weakpass {
    border: 1px solid #FF9191;
    background: #FFC7C7;
    color: #94546E;
}
#pass-info.stillweakpass {
    border: 1px solid #FBB;
    background: #FDD;
    color: #945870;
}
#pass-info.goodpass {
    border: 1px solid #C4EEC8;
    background: #E4FFE4;
    color: #51926E;
}
#pass-info.strongpass {
    border: 1px solid #6ED66E;
    background: #79F079;
    color: #348F34;
}
#pass-info.vrystrongpass {
    border: 1px solid #379137;
    background: #48B448;
    color: #CDFFCD;
}

/*-------- 2.6 Company landing --------*/
.box_feat {
    position: relative;
    padding-left: 90px;
}
.box_feat h3 {
    font-size: 24px;
    font-size: 1.5rem;
}
.box_feat h3 strong {
    font-size: 32px;
    font-size: 2rem;
}
.box_feat h3 em {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    font-size: 1.3125rem;
}
.box_feat p {
    font-size: 16px;
    font-size: 1rem;
}
.box_feat i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 60px;
    font-size: 3.75rem;
    color: #3578fa;
}

.feat_blocks {
    height: 450px;
}
@media (max-width: 991px) {
    .feat_blocks {
        height: auto;
    }
}
.feat_blocks .block_1 {
    padding: 48px;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
@media (max-width: 991px) {
    .feat_blocks .block_1 {
        display: none;
    }
}
.feat_blocks .block_2 {
    padding: 60px;
    background-color: #051d4d;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
@media (max-width: 991px) {
    .feat_blocks .block_2 {
        height: auto;
    }
}
@media (max-width: 767px) {
    .feat_blocks .block_2 {
        padding: 60px 15px;
    }
}
.feat_blocks .block_2 h3 {
    color: #fff;
}
.feat_blocks .block_2 p {
    font-size: 16px;
    font-size: 1rem;
}
.feat_blocks .block_2 a.btn_1,
.feat_blocks .block_2 .btn_1 {
    border: none;
    color: #fff;
    width: 180px;
    background: #3578fa;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-size: 0.875rem;
}
.feat_blocks .block_2 a.btn_1:hover,
.feat_blocks .block_2 .btn_1:hover {
    background-color: #FFC107;
    color: #222 !important;
}

.box_feat_2 {
    padding: 30px 30px 1px 30px;
    margin-bottom: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ededed;
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}
.box_feat_2 h3 {
    font-weight: 500;
    font-size: 21px;
    font-size: 1.3125rem;
    position: relative;
    padding-left: 40px;
}
.box_feat_2 h3 i {
    font-weight: bold;
    margin-right: 8px;
    color: #3578fa;
    font-size: 28px;
    font-size: 1.75rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/*-------- 2.7 Pricing page --------*/
.margin_tabs {
    margin-top: -97px;
}
@media (max-width: 991px) {
    .margin_tabs {
        margin-top: -70px;
    }
}
@media (max-width: 767px) {
    .margin_tabs {
        margin-top: -50px;
    }
}

.tabs {
    position: relative;
    width: 100%;
    overflow: visible;
    padding-bottom: 35px;
}
.tabs nav {
    text-align: center;
    overflow: hidden;
}
.tabs nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.tabs nav ul li {
    margin: 0 -4px 0 0;
    display: block;
    display: inline-block;
    background-color: #ededed;
    width: 33%;
    text-align: left;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .tabs nav ul li {
        text-align: center;
    }
}
.tabs nav ul li a {
    padding: 25px 35px 25px 90px;
    color: #555;
    display: block;
    font-size: 21px;
    font-size: 1.3125rem;
    white-space: nowrap;
    position: relative;
    font-weight: 500;
}
@media (max-width: 991px) {
    .tabs nav ul li a {
        padding: 15px;
        font-size: 16px;
        font-size: 1rem;
    }
}
.tabs nav ul li a i {
    position: absolute;
    left: 35px;
    top: 25px;
    font-size: 38px;
    font-size: 2.375rem;
}
@media (max-width: 991px) {
    .tabs nav ul li a i {
        display: none;
    }
}
.tabs nav ul li a em {
    display: block;
    font-size: 16px;
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
}
@media (max-width: 767px) {
    .tabs nav ul li a em {
        display: none;
    }
}
.tabs nav ul li:first-child {
    -webkit-border-radius: 3px 0 0 0;
    -moz-border-radius: 3px 0 0 0;
    -ms-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
    border-right: 2px solid #ddd;
}
.tabs nav ul li:last-child {
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    -ms-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
    border-left: 2px solid #ddd;
}
.tabs nav ul li.tab-current {
    background-color: #fff;
    z-index: 100;
    text-align: center;
}
.tabs nav ul li.tab-current:after {
    right: auto;
    left: 100%;
    width: 4000px;
}
.tabs nav ul li.tab-current a {
    color: #222;
}
.tabs nav ul li.tab-current a i {
    color: #3578fa;
}

/* Content */
.content section {
    padding: 60px 0 0 0;
    display: none;
    max-width: 1230px;
    margin: 0 auto;
}
.content section:before, .content section:after {
    content: '';
    display: table;
}
.content section.content-current {
    display: block;
}

.content section:after {
    clear: both;
}

.no-js .content section {
    display: block;
    padding-bottom: 2em;
    border-bottom: 1px solid #e2e2e2;
}

.box_pricing {
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #d2d8dd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    position: relative;
}
@media (max-width: 767px) {
    .box_pricing {
        padding: 15px;
    }
}
.box_pricing hr {
    margin: 25px -30px;
    border-color: #d2d8dd;
}
@media (max-width: 767px) {
    .box_pricing hr {
        margin: 25px -15px;
    }
}
.box_pricing ul {
    list-style: disc;
    padding: 0 0 0 20px;
    margin: 0 0 30px 0;
}
.box_pricing a {
    background-color: #3578fa;
    display: block;
    color: #fff;
    padding: 10px;
    font-weight: 500;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
.box_pricing a:hover {
    background-color: #FFC107;
    color: #051d4d;
}
.box_pricing .price {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #3578fa;
}
.box_pricing .price sup {
    font-size: 16px;
    font-size: 1rem;
}
.box_pricing .price em {
    font-size: 16px;
    font-size: 1rem;
    color: #555;
    font-weight: 400;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}
.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    position: absolute;
    top: 19px;
    right: -21px;
}
.ribbon span.top_selling {
    background: #00dfaa;
}
.ribbon span.top_selling::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #008a69;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #008a69;
}
.ribbon span.top_selling::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #008a69;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #008a69;
}

/*-------- 2.8 Faq/help --------*/
#custom-search-input {
    padding: 0;
    width: 600px;
    margin: 20px auto 0;
    position: relative;
}
@media (max-width: 991px) {
    #custom-search-input {
        width: auto;
    }
}
#custom-search-input .search-query {
    width: 100%;
    height: 50px;
    padding-left: 20px;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 16px;
    font-size: 1rem;
    color: #333;
}
#custom-search-input .search-query:focus {
    outline: none;
}
@media (max-width: 575px) {
    #custom-search-input .search-query {
        padding-left: 15px;
    }
}
#custom-search-input input[type='submit'] {
    position: absolute;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    right: -1px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-size: 0.875rem;
    top: 0;
    border: 0;
    padding: 0 25px;
    height: 50px;
    cursor: pointer;
    outline: none;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #3578fa;
}
#custom-search-input input[type='submit']:hover {
    background-color: #FFC107;
    color: #222;
}
@media (max-width: 575px) {
    #custom-search-input input[type='submit'] {
        text-indent: -999px;
        background: #3578fa url(../img/search.svg) no-repeat center center;
    }
}

.box_style_cat {
    background: #fff;
    margin-bottom: 25px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}
@media (max-width: 991px) {
    .box_style_cat {
        display: none;
    }
}

ul#cat_nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#cat_nav li {
    border-bottom: 1px solid #ededed;
}
ul#cat_nav li i {
    font-size: 16px;
    font-size: 1rem;
    margin: 2px 10px 0 0;
    float: left;
}
ul#cat_nav li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
ul#cat_nav li a {
    position: relative;
    color: #555;
    display: block;
    padding: 15px 10px;
}
ul#cat_nav li a:after {
    font-family: "fontello";
    content: "\e89b";
    position: absolute;
    right: 15px;
    top: 15px;
}
ul#cat_nav li a span {
    font-size: 11px;
    font-size: 0.6875rem;
    color: #999;
}
ul#cat_nav li a:hover, ul#cat_nav li a#active, ul#cat_nav li a.active {
    color: #3578fa;
}

.hero_in form {
    animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
}

a.box_topic {
    text-align: center;
    background: #fff;
    padding: 30px 30px 5px 30px;
    display: block;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    color: #555;
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}
@media (max-width: 767px) {
    a.box_topic {
        padding: 20px 20px 0 20px;
    }
}
a.box_topic:hover {
    -webkit-box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
    -moz-box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
    box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
}
a.box_topic i {
    font-size: 60px;
    font-size: 3.75rem;
    color: #32a067;
    margin-bottom: 10px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    background-color: #2c8e5b;
    background-color: rgba(50, 160, 103, 0.05);
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 15px;
}
a.box_topic h3 {
    font-size: 18px;
    font-size: 1.125rem;
}


.list_articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list_articles ul li {
    float: left;
    width: 45%;
    margin-right: 45px;
    padding: 15px 0;
    border-bottom: 1px solid #ededed;
}
.list_articles ul li a {
    color: #555;
    display: block;
}
.list_articles ul li a:hover {
    color: #3578fa;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}
.list_articles ul li i {
    margin-right: 10px;
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    top: 2px;
}
@media (max-width: 991px) {
    .list_articles ul li {
        float: none;
        width: 100%;
        margin-right: 0;
    }
}

ul.list_3 {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.list_3 li {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}
ul.list_3 li strong {
    font-weight: 500;
}
ul.list_3 li:before {
    font-family: "fontello";
    content: "\ea3e";
    position: absolute;
    left: 0;
    top: 0;
}

/*-------- 2.9 Contacts --------*/
#contactform .form-group, #support .form-group {
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    #contactform .form-group, #support .form-group {
        margin-bottom: 15px;
    }
}

.box_faq {
    position: relative;
    padding-left: 50px;
}
.box_faq h4 {
    font-size: 18px;
    font-size: 1.125rem;
}
.box_faq i {
    font-size: 36px;
    font-size: 2.25rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
}

a.btn_support {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #3578fa;
    position: relative;
    padding: 15px 15px 15px 55px;
    display: block;
    margin-bottom: 30px;
    font-size: 16px;
    font-size: 1rem;
}
a.btn_support:hover {
    background-color: #3578fa;
    color: #fff;
}
a.btn_support:before {
    font-family: "Pe-icon-7-stroke";
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1;
    position: absolute;
    left: 15px;
    top: 10px;
    content: "\e649";
}

.error_message {
    font-weight: 500;
    color: #d41f00;
    padding-bottom: 5px;
}

.loader {
    margin-left: 5px;
    position: absolute;
    top: 11px;
    color: #444;
    font-size: 12px;
    font-size: 0.75rem;
}

/*-------- 2.10 Company categories --------*/
.all_categories ul {
    list-style: none;
    margin: 30px 0 0 0;
    padding: 0;
}
@media (max-width: 991px) {
    .all_categories ul {
        margin: 0;
    }
}
.all_categories ul li {
    float: left;
    width: 45%;
    margin: 0 15px;
}
.all_categories ul li a {
    background-color: #f8f8f8;
    padding: 10px;
    display: block;
    margin-bottom: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    font-weight: 500;
    color: #555;
}
.all_categories ul li a strong {
    min-width: 35px;
    background-color: #fff;
    color: #999;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    padding: 6px;
    display: inline-block;
    margin-right: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}
.all_categories ul li a:after {
    font-family: 'ElegantIcons';
    content: "\24";
    right: 15px;
    top: 15px;
    position: absolute;
    color: #3578fa;
}
.all_categories ul li a:hover {
    background-color: #3578fa;
    color: #fff;
}
.all_categories ul li a:hover:after {
    color: #fff;
}
@media (max-width: 991px) {
    .all_categories ul li {
        float: none;
        width: 100%;
        margin: 0;
    }
}

.company_listing {
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    margin-bottom: 30px;
    min-height: 160px;
}
.company_listing .company_info {
    position: relative;
    padding-left: 190px;
}
@media (max-width: 767px) {
    .company_listing .company_info {
        padding-left: 0;
        text-align: center;
    }
}
.company_listing .company_info h3 {
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 500;
}
.company_listing .company_info p {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .company_listing .company_info p {
        margin-bottom: 25px;
    }
}
.company_listing .company_info figure {
    width: 170px;
    height: 110px;
    overflow: hidden;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 20px;
    border: 1px solid #ededed;
}
@media (max-width: 767px) {
    .company_listing .company_info figure {
        position: relative;
        margin: 0 auto 15px auto;
    }
}
.company_listing .company_info figure img {
    width: 98px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.company_listing .rating {
    margin: auto;
    display: block;
    margin-bottom: 25px;
}
.company_listing .rating strong {
    display: block;
    margin-bottom: 5px;
}

/*-------- 2.11 User Dashboard --------*/
/* Dropdown user logged */
.dropdown-user .dropdown-menu {
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    min-width: 0;
    padding: 0;
    width: 150px;
    top: 105%;
    margin-left: -95px;
    font-weight: normal;
    text-shadow: none;
    text-transform: none !important;
    border: none;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 0;
}
.dropdown-user .dropdown-menu:before {
    bottom: 100%;
    right: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 7px;
    margin-left: -7px;
}
.dropdown-user .dropdown-menu ul {
    padding: 0;
    margin: 0 !important;
    list-style: none;
}
.dropdown-user .dropdown-menu ul li {
    border-bottom: 1px solid #ededed;
    margin: 0;
    width: 100%;
    margin-bottom: 15px;
    display: inline-block;
    font-size: 13px;
    font-size: 0.8125rem;
}
@media (max-width: 991px) {
    .dropdown-user .dropdown-menu ul li {
        margin: 0 !important;
    }
}
.dropdown-user .dropdown-menu ul li a {
    color: #444 !important;
    padding: 15px 8px 15px 8px;
    display: block;
}
.dropdown-user .dropdown-menu ul li a:hover {
    color: #3578fa !important;
    opacity: 1 !important;
    padding-left: 15px;
}
.dropdown-user .dropdown-menu ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .dropdown-user .dropdown-menu ul li:first-child {
        display: block !important;
    }
}

.user_summary {
    margin-top: 58px;
    background-color: #051d4d;
    border-bottom: 1px solid #ededed;
}
@media (max-width: 991px) {
    .user_summary {
        margin-top: 45px;
    }
}
@media (max-width: 767px) {
    .user_summary {
        text-align: center;
    }
}
.user_summary .wrapper {
    background: rgba(0, 0, 0, 0.4);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    padding: 60px 0 55px 0;
}
.user_summary figure {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: block;
    position: relative;
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .user_summary figure {
        float: none;
        margin: 0 auto 10px auto;
    }
}
.user_summary figure img {
    width: 120px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.user_summary h1 {
    font-weight: 500;
    font-size: 32px;
    font-size: 2rem;
    margin: 30px 0 0 0;
    color: #fff;
}
@media (max-width: 991px) {
    .user_summary h1 {
        font-size: 28px;
        font-size: 1.75rem;
        margin: 15px 0 0 0;
    }
}
.user_summary span {
    color: #999;
}
.user_summary ul {
    margin: 10px 0 0 0;
    padding: 0;
    float: right;
}
@media (max-width: 767px) {
    .user_summary ul {
        float: none;
        text-align: center;
    }
}
.user_summary ul li {
    display: inline-block;
    margin-left: 25px;
    text-align: center;
}
.user_summary ul li:first-child {
    margin-left: 0;
}
.user_summary ul li a {
    color: #fff;
}
.user_summary ul li strong {
    margin-bottom: 8px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #3578fa;
    color: #fff;
    white-space: nowrap;
    font-size: 32px;
    font-size: 2rem;
    display: block;
    font-weight: 500;
}

.review_card .review_content ul li a.btn_delete {
    background-color: #e04040 !important;
    color: #fff !important;
}
.review_card .review_content ul li a.btn_delete:hover {
    background-color: #b41a1a !important;
}

.settings_panel {
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 25px 25px 1px 25px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}
.settings_panel h3 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.settings_panel hr {
    margin: 20px -25px;
    border-color: rgba(3, 27, 78, 0.08);
}

.general_info {
    padding: 25px 25px 1px 25px;
    margin-bottom: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ededed;
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}
.general_info hr {
    margin-left: -25px;
    margin-right: -25px;
    border-color: rgba(3, 27, 78, 0.06);
}
.general_info h3 {
    font-weight: 500;
    font-size: 21px;
    font-size: 1.3125rem;
    position: relative;
    padding-right: 40px;
}
.general_info h3 i {
    font-weight: bold;
    color: #3578fa;
    font-size: 28px;
    font-size: 1.75rem;
    position: absolute;
    right: 0;
    top: -2px;
}

/*-------- 2.12 About --------*/
.values {
    background: #051d4d url(../img/pattern_2.svg) center repeat fixed;
}
.values .main_title_2 h2, .values .main_title_2 p {
    color: #fff !important;
}
.values .wrapper {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
@media (max-width: 991px) {
    .values .wrapper {
        padding: 60px 0;
    }
}
.values .nav {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
}
@media (max-width: 991px) {
    .values .nav {
        margin-bottom: 30px;
    }
}
.values .nav a.nav-link {
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
    padding: .9rem 1rem;
}
.values .nav a.nav-link.active {
    color: white;
    border-left: 2px solid white;
}
.values .nav a.nav-link:hover {
    color: white;
}
.values .tab-content {
    color: #fff;
}
.values .tab-content p {
    margin-bottom: 0;
}

#carousel {
    margin-top: 40px;
}
@media (max-width: 767px) {
    #carousel {
        margin-bottom: 30px;
    }
}
#carousel .item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 9;
}
#carousel .item .title h4 {
    background-color: #051d4d;
    background-color: #051d4d;
    display: inline-block;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    color: #fff;
    padding: 10px 15px;
    margin: 0;
    font-size: 16px;
    font-size: 1rem;
    opacity: 0;
}
#carousel .item .title h4 em {
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 300;
    margin-top: 3px;
}
#carousel .item a {
    position: relative;
    display: block;
}

#carousel .owl-item {
    opacity: 0.5;
    transform: scale(0.85);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(0.85, 0.85);
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
}

#carousel .owl-item.active.center {
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
    transform: scale(1);
}

#carousel .owl-item.active.center .item .title h4,
#carousel .owl-item.active.center .item .views {
    opacity: 1;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.rotate-x {
    animation-duration: .5s;
    animation-name: rotate-x;
}

@keyframes rotate-x {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
.tooltip {
    line-height: 1.3;
    font-size: 12px;
    font-size: 0.75rem;
}

.box_general {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}

.opened {
    opacity: 1;
}
.opened .vertical {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
}
.opened .horizontal {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
    opacity: 0;
}

.circle-plus {
    height: 14px;
    width: 14px;
    display: block;
    position: relative;
    float: right;
    margin-top: 5px;
}

.circle-plus .horizontal {
    position: absolute;
    background-color: #999;
    width: 14px;
    height: 2px;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: 0;
}

.circle-plus .vertical {
    position: absolute;
    background-color: #999;
    width: 2px;
    height: 14px;
    left: 50%;
    margin-left: -2px;
    top: 50%;
    margin-top: -6px;
}

.form-control {
    height: calc(2.55rem + 2px);
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #d2d8dd;
}
.form-control:focus {
    box-shadow: none;
}

.form-group {
    position: relative;
}
.form-group.required:after {
    width: 5px;
    height: 5px;
    content: '*';
    display: inline-block;
    color: #3578fa;
    position: absolute;
    top: 3px;
    right: 10px;
}

.bg_color_1 {
    background-color: #fff;
}
section.content-current.logs_forms span.select2-selection.select2-selection--multiple {
    height: 46px !important ;
}
/* Jquery select */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 3px;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 50px;
    line-height: 48px;
    outline: none;
    padding-left: 15px;
    padding-right: 27px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    color: #555;
    padding-top: 2px;
}
.nice-select:hover {
    border-color: #8c8c8c;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
}
.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 8px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 8px;
}
.nice-select.open:after {
    transform: rotate(-135deg);
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}
.nice-select.disabled {
    border-color: #9e9e9e;
    color: #999;
    pointer-events: none;
}
.nice-select.disabled:after {
    border-color: #cccccc;
}
.nice-select.wide {
    width: 100%;
}
.nice-select.wide .list {
    left: -1px !important;
    right: -1px !important;
}
.nice-select.right {
    float: right;
}
.nice-select.right .list {
    left: auto;
    right: 0;
}
.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}
.nice-select.small:after {
    height: 4px;
    width: 4px;
}
.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}
.nice-select .list {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(-25px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9999;
    height: 23vh;
    overflow: auto;
}
.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
.nice-select .list::-webkit-scrollbar {
    width: 14px;
    height: 18px;
}
.nice-select .list::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    -webkit-border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
.nice-select .list::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
.nice-select .list::-webkit-scrollbar-corner {
    background-color: transparent;
}
.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 38px;
    list-style: none;
    min-height: 38px;
    outline: none;
    padding-left: 15px;
    padding-right: 26px;
    text-align: left;
    transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6;
}
.nice-select .option.selected {
    font-weight: 500;
}
.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}
.no-csspointerevents .nice-select.open .list {
    display: block;
}

/* Pagination */
.clear:after, .pagination:after, .clear:before, .pagination:before {
    content: "";
    display: table;
}
.clear:after, .pagination:after {
    clear: both;
}

.pagination__wrapper {
    height: 50px;
    padding-top: 0;
    margin-bottom: 0;
    position: relative;
    text-align: center;
    width: 100%;
}
@media (max-width: 991px) {
    .pagination__wrapper {
        margin-bottom: 30px;
    }
}
.pagination__wrapper:before {
    top: -1px;
}
.pagination__wrapper:after {
    bottom: -1px;
}

@keyframes hoverAnimation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.pagination {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination li {
    display: block;
    float: left;
    padding: 5px;
}
.pagination li:first-child {
    border: none;
}
.pagination a,
.pagination span {
    background: none;
    border: none;
    border-radius: 50%;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.6);
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    min-width: 40px;
    padding: 0;
}
.pagination a {
    outline: none;
    position: relative;
    transition: all 170ms linear;
}
.pagination a:before {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    content: "";
    cursor: pointer;
    height: 0;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 170ms linear;
    top: 50%;
    width: 0;
}
.pagination a:hover:not(.active) {
    color: black;
}
.pagination a:hover:not(.active):before {
    animation: hoverAnimation 510ms linear forwards;
    height: 40px;
    width: 40px;
}
.pagination a.active {
    background: #3578fa;
    color: white;
    cursor: default;
}
.pagination .prev,
.pagination .next {
    font-size: 14px;
}

/* Scroll top button */
#toTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
    border-radius: 50%;
    text-align: center;
    font-size: 21px;
    color: #fff;
    cursor: pointer;
}
@media (max-width: 767px) {
    #toTop {
        display: none !important;
    }
}
#toTop:after {
    content: "\e899";
    font-family: "fontello";
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-55%);
    transform: translateY(-55%);
}
#toTop:hover {
    background-color: #3578fa;
}

/* Accordion */
.accordion_2 .card {
    border: 0;
    margin-bottom: 5px;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}
.accordion_2 .card .card-header {
    background-color: #fff;
    border-bottom: 1px solid #ededed;
    padding: 20px;
}
.accordion_2 .card-body {
    padding: 30px 30px 0 30px;
}
.accordion_2 .card-header h5 {
    font-size: 16px;
    font-size: 1rem;
}
.accordion_2 .card-header h5 a {
    border: 0;
    display: block;
    color: #999;
}
.accordion_2 .card-header h5 a i.indicator {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: normal;
    float: right;
    color: #3578fa;
}

.card {
    border-radius: 0;
    border: 0;
    margin-bottom: 5px;
}

/*-------- 3.2 Spacing --------*/
.margin_main_container {
    margin-top: 58px;
}
@media (max-width: 991px) {
    .margin_main_container {
        margin-top: 45px;
    }
}

.add_bottom_10 {
    margin-bottom: 10px;
}

.add_bottom_15 {
    margin-bottom: 15px;
}

.add_bottom_30 {
    margin-bottom: 30px;
}

.add_bottom_45 {
    margin-bottom: 45px;
}

.add_bottom_60 {
    margin-bottom: 60px;
}

.add_bottom_75 {
    margin-bottom: 75px;
}

.add_top_10 {
    margin-top: 10px;
}

.add_top_15 {
    margin-top: 15px;
}

.add_top_20 {
    margin-top: 20px;
}

.add_top_30 {
    margin-top: 30px;
}

.add_top_60 {
    margin-top: 60px;
}

.more_padding_left {
    padding-left: 40px;
}

.nomargin_top {
    margin-top: 0;
}

.nopadding {
    margin: 0 !important;
    padding: 0 !important;
}

.nomargin {
    margin: 0 !important;
}

.margin_30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.margin_30_5 {
    padding-top: 30px;
    padding-bottom: 5px;
}

.margin_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.margin_60_35 {
    padding-top: 60px;
    padding-bottom: 35px;
}

.margin_80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 991px) {
    .margin_80 {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

.margin_80_55 {
    padding-top: 80px;
    padding-bottom: 55px;
}
@media (max-width: 991px) {
    .margin_80_55 {
        padding-top: 60px;
        padding-bottom: 35px;
    }
}

.margin_80_0 {
    padding-top: 80px;
}
@media (max-width: 991px) {
    .margin_80_0 {
        padding-top: 60px;
    }
}
@media (max-width: 575px) {
    .margin_80_0 {
        padding-top: 30px;
    }
}

.margin_30_95 {
    padding-top: 30px;
    padding-bottom: 95px;
}
@media (max-width: 991px) {
    .margin_30_95 {
        padding-top: 15px;
        padding-bottom: 35px;
    }
}
@media (max-width: 575px) {
    .margin_30_95 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (max-width: 991px) {
    .hidden_tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden_mobile {
        display: none !important;
    }
}

/*-------- 3.3 Cookie bar --------*/
#cookie-bar {
    background: rgba(0, 0, 0, 0.8);
    height: auto;
    line-height: 24px;
    color: #eeeeee;
    text-align: center;
    padding: 15px 0;
    font-weight: 400;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
}
#cookie-bar p {
    margin: 0;
    padding: 0;
}
#cookie-bar a {
    color: #fff;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
    padding: 2px 10px;
    margin-left: 8px;
}
@media (max-width: 767px) {
    #cookie-bar a {
        display: block;
        max-width: 150px;
        margin: auto;
        margin-bottom: 5px;
    }
}
#cookie-bar .cb-enable {
    background: #32a067;
}
#cookie-bar .cb-enable:hover {
    background: #fff;
    color: #051d4d;
}
#cookie-bar .cb-disable {
    background: #990000;
}
#cookie-bar .cb-disable:hover {
    background: #bb0000;
}
#cookie-bar .cb-policy {
    background: #3578fa;
}
#cookie-bar .cb-policy:hover {
    background: #fff;
    color: #051d4d;
}
#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}
#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}
@media (max-width: 767px) {
    #cookie-bar {
        padding: 5px 0;
    }
}

/*-------- 3.4 Sing In Modal --------*/
#sign-in-dialog {
    background: #fff;
    padding: 30px;
    padding-top: 0;
    text-align: left;
    max-width: 400px;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

/* Popup close button*/
#sign-in-dialog .mfp-close,
#lang-dialog .mfp-close {
    color: #666;
    background-color: #e4e4e4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    top: 12px;
    right: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

#sign-in-dialog .mfp-close:hover,
#lang-dialog .mfp-close:hover {
    color: #fff;
    background-color: #66676b;
}

#sign-in-dialog .mfp-close:before {
    font-size: 24px;
    font-family: 'ElegantIcons';
    content: "\4d";
}

.small-dialog-header {
    font-size: 18px;
    width: calc(100% + 60px);
    position: relative;
    left: -30px;
    top: 0;
    -webkit-border-radius: 4px 4px;
    -moz-border-radius: 4px 4px;
    -ms-border-radius: 4px 4px;
    border-radius: 4px 4px;
    display: inline-block;
    background-color: #f6f6f6;
    padding: 18px 20px 15px 20px;
    margin-bottom: 30px;
}
.small-dialog-header h3 {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
}

#sign-in-dialog .form-group {
    position: relative;
}

#sign-in-dialog .form-group input.form-control {
    padding-left: 40px;
}

#sign-in-dialog .form-group i {
    font-size: 21px;
    font-size: 1.3125rem;
    position: absolute;
    left: 12px;
    top: 34px;
    color: #ccc;
    width: 25px;
    height: 25px;
    display: block;
    font-weight: 400 !important;
}

#sign-in-dialog .form-group i.icon_lock_alt {
    top: 36px;
}

.my-toggle {
    background: transparent;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #888;
    cursor: pointer;
    font-size: 10px;
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: bold;
    margin-right: 5px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    text-transform: uppercase;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
}
.my-toggle:hover, .my-toggle:focus {
    background-color: #eee;
    color: #555;
    outline: transparent;
}

.hideShowPassword-wrapper {
    width: 100% !important;
}

.checkboxes label {
    color: #999;
    margin-top: 5px;
}

a#forgot {
    color: #999;
    font-weight: 500;
    font-size: 14px;
    font-size: 0.875rem;
}
a#forgot:hover {
    color: #3578fa;
}
#forgot_pw {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: -2px;
    width: 100%;
    z-index: 999;
    min-height: 405px;
    display: none;
    padding: 25px;
    margin: auto;
    right: 0;
    height: 102%;
}
#forgot_pw > form {
    width: 604px;
    margin: 0 auto;
}
div#forgot_pw form {
    padding: 25px;
}
div#forgot_pw form input.btn_1,div#forgot_pw form button.btn_1.full-width {
    background: #37a000;
    color: #fff !important;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
}
div#forgot_pw form .text-center a {
    margin-top: 28px;
    display: block;
}
@media (max-width: 767px) {
    #forgot_pw {
        padding: 0;
    }
}
#forgot_pw label {
    font-weight: 500;
}
div#forgot_pw .form-group label {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.2px;
    padding-bottom: 15px !important;
}
.sign-in-wrapper {
    position: relative;
    height: 100%;
}

.divider {
    text-align: center;
    height: 1px;
    margin: 30px 0 20px 0;
    background-color: #e1e8ed;
}
.divider span {
    position: relative;
    top: -20px;
    background-color: #fff;
    display: inline-block;
    padding: 10px;
    font-style: italic;
}

/* Magnific popup */
.mfp-bottom-bar {
    padding: 0 10px !important;
}

.mfp-counter {
    right: 10px !important;
    color: #fff !important;
}

.mfp-bg {
    opacity: 0.8 !important;
}
.shadow{
    -webkit-box-shadow: 15px 15px 50px -10px rgba(255,33,255,1);
    -moz-box-shadow: 15px 15px 50px -10px rgba(255,33,255,1);
    box-shadow: 15px 15px 50px -10px rgba(255,33,255,1);
}


/**************custom styles starts ***********************/
.row.no-gutters.custom-search-input-2.home_search {
    box-shadow: 0px 0px 5px #ccc;
}
.row.no-gutters.custom-search-input-2.home_search input.form-control {
    border: 0;
    border-right: 1px solid #d2d8dd;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
.main_title_3.home_view {
    width: 100%;
    float: left;
    padding-bottom: 25px;
    padding-top: 20px;
}
.main_title_3.home_view a {
    position: relative;
    float: right;
}
.hero_single.version_company .wrapper h3.comp_head {
    padding-top: 20px;
    font-size: 56px;
    font-family: roboto;
    font-weight: bold;
    line-height: 78px;
    text-align: left;
    display: inline-block;
    float: left;
}
.row.land_row {
    padding-top: 150px;
}
section.hero_single.version_company {
    background: #fcfaf9;
    border-bottom: 1px solid #eee;
}
.icon_view .row.justify-content-center {
    width: 100%;
}
.mm-listview li span a {
    color: #fff !important;
}
.form-group.required::after {
    display: none;
}
/*form.company_register_details {
    margin-top: 30px;
}*/
a.watbtn {
    background: #FFC107;
    display: inline-block;
    font-size: 0.875rem;
    color: #222;
    padding: 12px 48px;
    margin-top: 20px;
    font-weight: 600;
    border-radius: 25px;
    width: 300px;
    text-align: center;
}
a.watbtn i {
    margin-right: 8px;
    font-size: 12px;
    position: relative;
    border: 1px solid;
    padding: 5px 6px;
    border-radius: 100%;
}
a.watbtn:hover {
    background: #3578fa;
    color: #fff;
}
.men_img img {
    width: auto;
    max-height: 400px;
}
.men_img {
    width: 100%;
    text-align: center;
}
.pop_vid video {
    width: 100%;
}

.pop_vid {
    width: 100%;
}
body#comp_land .mm-page.mm-slideout {
    z-index: inherit;
}
#myModal1 button.close {
    position: absolute;
    z-index: 99999;
    right: -2px;
    top: -28px;
    opacity: 1;
    box-shadow: none;
    border: 0;
    text-shadow: none;
    font-size: 35px;
    color: #fff;
}
.cat_menu {
    padding-top: 11px;
}
a.comp_logo {
    display: none;
}
.home_tab {
    text-align: center;
    padding-top: 30px;
}
.home_tab li.nav-item a {
    font-size: 18px;
    color: #7b7c82;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    border-right: 0;
    padding: 25px 49px;
    font-weight: bold;
}
.home_tab li.nav-item:first-child a {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.home_tab li.nav-item:last-child a {
    border-right: 1px solid #e2e2e2;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.home_tab ul.clearfix {
    display: none;
}
h3.hm_head {
    font-size: 16px !important;
    line-height: 23px;
    color: #181818 !important;
}
.catelist .company_listing.isotope-item.high {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.catelist .company_listing.isotope-item.high .company_info {
    padding-left: 0;
    width: 100%;
}
.simple-rating.star-rating.home_rate.star1 {
    text-align: left;
    padding-bottom: 12px;
    overflow: hidden;
    float: left;
    margin-bottom: 12px;
}
.simple-rating.star-rating.home_rate.star1 i {
    font-size: 20px;
}
.exp_drop {
    width: 87%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
}
.exp_drop select {
    font-size: 20px;
    padding: 0px 13px 0 38px;
    font-weight: bold;
}
.exp_drop .dropdown button.btn.btn-default.dropdown-toggle {
    background: #fff;
    padding: 10px 33px;
    font-size: 18px;
    border: 1px solid #ddd;
}
.exp_drop .dropdown-menu.show a {
    padding: 6px 40px;
}
.exp_drop .dropdown button.btn.btn-default.dropdown-toggle:focus {
    -webkit-highlight: none;
    box-shadow: none;
}
h3.hm_head:hover {
    color: #4CA846 !important;
}
.home_tab li.nav-item a.nav-link.active {
    background: #4CA846 !important;
    border-color: #4CA846;
}
.main_title_3.pop_cat {
    text-align: center;
    padding-bottom: 40px;
    padding-top: 20px;
}
a.box_topic.homebox p {
    margin-bottom: 8px;
}
a.box_topic.homebox {
    padding-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 2px 1px rgba(0,0,0,0.12), 0 -1px 1px rgba(0,0,0,0.08);
}
.topi_line {
    border-top: 1px solid #cbcbcd;
    padding-top: 25px;
    margin-top: 25px;
}
/*.topi_line button {
    background: #37a000;
}*/
.main_title_3.pop_exp.popleft {
    text-align: right;
}
.main_title_3.pop_exp.poprite {
    text-align: left;
    text-indent: -6px;
}
.main_title_3.pop_exp.popleft h2 {
    position: relative;
    right: -14px;
}
.main_title_3.home_view.homecat_view a {
    float: none;
}
nav.main-menu.newmain a {
    font-size: 16px;
    margin-right: 13px;
}
.main_title_3.home_view.homecat_view {
    text-align: center;
}
header.header.mm-slideout {
    border-bottom: solid #a7a7ac 1px;
}
nav.main-menu.newmain {
    /*    padding-top: 7px;*/
    /*top: inherit;*/
}
header.header.mm-slideout ul#top_menu {
    padding-top: 8px;
}
.main_title_3.pop_exp.poprite h2, .main_title_3.pop_exp.popleft h2 {
    font-size: 42px;
}
a.box_topic.homebox span {
    padding-bottom: 10px;
    display: block;
}
a.box_topic.homebox h3 {
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 193px;
    white-space: nowrap;
}
.main_title_3.pop_exp {
    text-align: center;
    padding-bottom: 62px;
}
.home_tab .tab-content {
    padding-top: 25px;
}
.home_tab li.nav-item a.nav-link:hover {
    background: #4CA846;
    color: #fff;
    border-color: #4CA846;
}
p.cat_desc {
    text-align: justify;
}
p.reqst_btn {
    border-top: 3px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
}
p.reqst_btn a {
    background: #fff;
    width: 260px;
    color: #333;
    border: 2px solid #333;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.3px;
    padding: 12px 30px;
}
p.reqst_btn a:hover {
    background: #fff;
    /*    border-color: #007bff;
        color: #fff !important;*/
}
a.btn_1.gobtn {
    width: 190px;
    background: #FB5876;
    border: 2px solid #FB5876;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 12px 0;
}
a.btn_1.gobtn:hover {
    background: #fff;
    color: #333;
    border: 2px solid #333;
}
a.revnum {
    font-size: 12px;
    /*    position: absolute;*/
    float: left;
    margin-top: 8px;
    margin-left: 7px;
    color: #7a7979;
}
.row.no-gutters.custom-search-input-2.home_search.hometops .form-group {
    margin-bottom: 0;
}
.row.no-gutters.custom-search-input-2.home_search.hometops input {
    height: 50px;
}
.row.no-gutters.custom-search-input-2.home_search.hometops input {
    height: 63px;
    font-size: 20px;
    background: #EEEEEE;
    border-bottom: 1px solid #ccc;
}
header.sticky nav.main-menu.newmain {
    top: 0;
}
button#search_form_submit1,button#search_form_submit1:hover  {
    background: #051B4C;
    font-size: 20px;
    width: 133px;
    color: #fff;
    height: 63px;
}
.read_cont h2 {
    font-size: 51px;
    font-weight: bold;
    padding-bottom: 18px;
    line-height: 64px;
    color: #051B4C;
    padding-top: 6px;
}
.top_con {
    width: 671px;
    margin: 0 auto;
}
.round_rev.fem {
    position: relative;
    top: 100px;
    right: 40px;
}
.round_rev.fem .rd_img {
    right: 0;
}
.read_cont {
    text-align: center;
    position: relative;
    bottom: 35px;
}
p.cat_desc {
    width: 100%;
    float: left;
    font-size: 15px;
}
.round_rev {
    text-align: center;
    background: #EEEEEE;
    border-radius: 100%;
    width: 200px;
    height: 200px;
    padding-top: 34px;
    box-shadow: 0px 0px 9px #ccc;
}
.round_rev h3 {
    font-size: 18px !important;
    margin: 0 !important;
}
.round_rev small {
    color: #000;
    font-size: 14px;
    padding-top: 5px;
    display: block;
}
.round_rev p {
    font-size: 14px !important;
    text-align: center;
    line-height: 22px !important;
    padding-top: 4px !important;
}
.rd_img {
    position: absolute;
    right: 64px;
    bottom: -67px;
}
.rd_img img {
    width: 100px;
    bottom: 100px;
}
.round_rev.mal {
    float: right;
    position: relative;
    bottom: 100px;
    left: 40px;
}
.round_rev.mal .rd_img {
    left: 0;
    right: inherit;
}
span.revnum {
    font-size: 13px;
    font-weight: 600;
}
.loc_ver p i {
    font-size: 20px;
}
.loc_ver p {
    margin: 3px 0 0px;
    font-size: 15px;
    font-weight: 500;
}
.loc_ver {
    position: absolute;
    right: 43px;
    top: 30px;
}
.loc_ver p:first-child {
    color: #FB5876;
}
.loc_ver p:nth-child(2) {
    color: #505252;
}
/*.post_content.rev_active .simple-rating.star-rating.fa-large i {
    margin-right: 23px;
}*/
.post_content.rev_active .simple-rating.star-rating.fa-large i b {
    padding-left: 5px;
    font-family: roboto;
    font-size: 20px;
    font-weight: normal;
    position: relative;
    top: -3px;
}
.nav.flex-column a.nav-link {
    font-size: 18px;
    font-weight: 500;
    word-spacing: 3px;
    padding: 17px 24px;
    color: #4f5156;
}
.nav.flex-column a.nav-link:hover, .nav.flex-column a.nav-link.active {
    background: #fff;
    color: #3a7af3;
}
.nav.flex-column a.nav-link:hover i, .nav.flex-column a.nav-link.active i {
    display: inherit;
}
.nav.flex-column a.nav-link i {
    float: right;
    display: none;
}
.tab-content.howtab {
    padding-left: 86px;
}
.howtab p.lead video {
    box-shadow: 0 2px 12px 0 rgba(225,225,225,.5);
}
div.main_title_2.howtit h2 {
    font-size: 28px;
    color: #007BFF;
    font-weight: bold;
}
.main_title_2.howtit {
    margin-bottom: 80px;
    text-align: center;
}
div.main_title_2.howtit p {
    font-size: 43px;
    text-transform: capitalize;
    font-weight: bold;
}
.category_footer {
    width: 100%;
    float: left;
}
.container.margin_tabs.mar_otp {
    margin-top: 200px;
    margin-bottom: 70px;
}
.container.margin_tabs.mar_otp div#tabs li.tab-current {
    border:0 none;
}
.container.margin_tabs.mar_otp div#tabs li.tab-current a {
    padding: 0;
    border: 0;
    font-size: 24px;
}
.footer_text {
    width: 100%;
    float: left;
}
.footer_text p {
    font-size: 16px;
    line-height: 26px;
    padding-top: 12px;
    letter-spacing: 0.3px;
}
.follow_us ul li a i {
    margin: 0;
}
.follow_us ul li:first-child a {
    background: #1877F2;
    padding: 4px 9px 2px 9px;
    border-radius: 100%;
}
.follow_us ul li:first-child a i {
    color: #fff;
    opacity: 1;
    margin: 0;
}
.follow_us ul li:nth-child(2) a {
    background: #04afef;
    padding: 4px 9px 2px 9px;
    border-radius: 100%;
}
.follow_us ul li:nth-child(2) a i {
    color: #fff;
    opacity: 1;
}
.follow_us ul li {
    margin-right: 12px;
}
footer.category_footer li {
    font-size: 15px;
}
.row.new_label h3 {
    font-size: 26px;
    line-height: 43px;
    padding-top: 16px;
}
.row.new_label.white_label h3 {
    color: #fff;
}
form.user_forms {
    text-align: center;
    padding: 10px 20px;
}
form.user_forms h3 {
    font-size: 25px;
    line-height: 36px;
}
form.user_forms p {
    font-size: 17px;
}
form.user_forms button {
    background: #48A717;
    border: 0;
    padding: 9px 0;
    width: 100%;
    border-radius: 0;
}
form.user_forms input[type="text"]:focus {
    border-color: #48A717;
}
form.user_forms input {
    border-radius: 0;
}
div#std_user .modal-header button {
    font-size: 32px;
    padding: 0;
    position: relative;
    right: 17px;
    top: 8px;
    z-index: 999;
}
.rep_icons a.delete {
    position: relative;
    top: 1px;
}
div#std_user .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}
/*.rep_icons a.rep_Btn {
    position: relative;
    top: 1px;
    font-size: 24px;
}*/
/*footer .row.new_label.white_label h3 {
    color: #bbb;
}*/
.take_tour {
    margin-top: 100px;
    background: #c9e5be;
    padding: 60px 0 60px 0;
    text-align: center;
}
.take_tour h3 {
    font-size: 40px;
    padding-bottom: 42px;
}
.take_tour video {
    width: 100%;
}
.share_social_media {
    width: 100%;
    float: left;
    padding-bottom: 70px;
}
.share_video video {
    width: 100%;
}
.share_divs i {
    font-size: 45px;
    color: #5db634;
}
.share_divs {
    width: 100%;
    float: left;
    padding-top: 74px;
    padding-left: 25px;
}
.share_divs h1 {
    font-size: 54px;
    padding-bottom: 28px;
    color: #6b6969;
}
.share_divs p {
    font-size: 25px;
}
.share_social_media.share_green {
    background: #c9e5be;
    padding-bottom: 50px;
}
.share_social_media.share_green .share_divs {
    padding-left: 0;
}
body.tut_body {
    background: #fff;
}
.demo-output {
    padding: 22px 0 30px;
}
.filter_rating span i {
    display: block;
    margin: 10px 0 !important;
    width: 100%;
    float: left;
}
.simple-rating.star-rating i span {
    padding-left: 16px;
    font-size: 22px;
    font-family: Roboto;
}
.record_btns .recd_btn button {
    background: #051d4d;
    border-radius: 0;
    padding: 7px 0;
    width: 138px;
}
.recd_btn button:nth-child(2) {
    background: #fff;
    color: #051d4d;
    border: 1px solid #051d4d;
}
.record_btns .recd_btn button:hover {
    color: #fff;
}
.recd_btn button:nth-child(2):hover {
    background: #051d4d;
    color: #fff;
    border: 1px solid #051d4d;
}
ol#recordingsList li audio {
    width: 100%;
}
div#formats {
    visibility: hidden;
}
.revw_column label a {
    color: #333;
}
div#controls canvas {
    width: 100%;
    height: 35px;
}
.form-group.audio_head h4 {
    border-bottom: 1px solid #f1efef;
}
.form-group.audio_head h4 i {
    float: right;
    color: #48A717;
}
div#controls audio:focus {
    border: 0;
    outline: 0;
}
.share_rev button {
    font-size: 16px;
}
.share_rev button i {
    margin-right: 8px;
    font-size: 19px;
}
ul.color_list {
    padding-bottom: 20px;
}
ul.color_list li {
    padding-left: 66px;
    font-size: 19px;
    padding-bottom: 11px;
    letter-spacing: 0.3px;
}
ul.color_list li span {
    display: inline-block;
    width: 19px;
    height: 19px;
    border-radius: 0;
    position: relative;
    top: 2px;
    margin-right: 17px;
    border-radius: 100%;
}
ul.color_list li:first-child span {
    background: #3366CC;
}
ul.color_list li:nth-child(2) span {
    background: #DC3912;
}
ul.color_list li:nth-child(3) span {
    background: #FF9900;
}
ul.color_list li:nth-child(4) span {
    background: #109618;
}
ul.color_list li:nth-child(5) span {
    background: #990099;
}
.row.tempo_label select {
    font-size: 20px;
    border: 0;
    border-radius: 0;
}
.row.tempo_label label {
    font-size: 22px;
    font-weight: 400;
    padding-top: 10px;
}
body.compfull_rev .row.new_label.white_label h3 {
    color: #333;
}
section.verify_template.temp_dash .mail_container {
    width: 100%;
    overflow: hidden;
}
section.verify_template.temp_dash .mail_container p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
}
section.verify_template.temp_dash h5 {
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
    line-height: 25px;
}
section.verify_template.temp_dash .verify_content h3 {
    font-size: 24px;
    margin-top: 0;
}
section.verify_template.temp_dash .verify_content a {
    padding: 8px 0;
    width: 68%;
    font-size: 17px;
}
section.verify_template.temp_dash .mail_social p {
    margin: 0;
}
.dash_inbtn {
    width: 100%;
    text-align: center;
    padding: 30px 0 10px;
    float: left;
}
.dash_inbtn button {
    background: #48A717;
    border-radius: 0;
    width: 350px;
    color: #fff !important;
    font-size: 20px;
    padding: 6px 0;
}
section.verify_template.temp_dash h2 {
    font-size: 22px;
    text-align: center;
    padding: 6px 0 12px;
}
.dash_boxes.dash_stat p {
    font-size: 20px;
    line-height: 25px;
    padding-top: 9px;

}
.InputSliderRange {
    width: 100%;
}
.InputSliderRange-WrapInput input {
    visibility: hidden;
}
/*div#donut_single2 svg > g > text {
    display: none;
}*/

/*.share_rev.wid_share a p,.share_rev.wid_share1 a p {
    font-size: 22px;
    color: #333;
}
.share_rev.wid_share a,.share_rev.wid_share1 a {
    border: 2px solid #5db634;
    display: block;
    text-align: center;
    padding: 13px 0;
}
.share_rev.wid_share a img,.share_rev.wid_share1 a img {
    width: 164px;
    margin: 0;
    padding-left: 10px;
}
.share_rev.wid_share a p,.share_rev.wid_share1 a p {
    margin: 0;
}
.share_rev.wid_share ul li button,.share_rev.wid_share1 ul li button {
    border: 1px solid #ccc;
}
.share_rev.wid_share ul li,.share_rev.wid_share1 ul li {
    width: 33%;
    text-align: center;
    float: left;
}
.share_rev.wid_share ul li button,.share_rev.wid_share1 ul li button {
    border: 1px solid #a7a4a4;
    width: 100px;
    padding: 5px 0;
}
.form-group.revmsg ul {
    overflow: hidden;
        padding-top: 14px;
}
.form-group.revmsg p {
    font-size: 19px;
}
.form-group.revmsg h3 {
    padding-top: 12px;
    padding-bottom: 7px;
    color: #555;
}
.form-group.revmsg ul li button:hover {
    border: 1px solid #5db634;
    color: #5db634;
}
.wihead .rev_int.revurl {
    background: #F5F5F5;
}
.inv_prev.wihead h3.inv_cust {
    margin: 0;
}
.share_rev.wid_share,.share_rev.wid_share1 {
    background: #fff;
    border: 1px solid #eee;
}
.wishad {
    padding: 60px 10px 60px 10px;
    box-shadow: 0px 0px 8px #ccc;
    overflow: hidden;
    height: 191px;
}
.witext {
    float: left;
    padding-left: 14px;
    width: 100%;
}
.form-group.copcod button {
    width: 240px;
    margin: 0 auto;
    display: block;
    border-radius: 4px !important;
}
.form-group.copcod {
    padding-bottom: 17px;
}
.form-group.wishad.wish2 a {
    border: 0 none !important;
}
.form-group.wishad.wish2 {
    padding-bottom: 38px;
    padding-top: 38px;
}
.share_rev.wid_share1 .form-group.wishad.wish2 a img {
    width: 200px;
    margin: 0;
    padding-left: 0;
}
.form-group.copcod button {
    background: #5db634 !important;
    border-color: #5db634 !important;
}
.share_rev.wid_share.small_wid a p {
    font-size: 17px;
}
.share_rev.wid_share.small_wid a p img {
    width: 110px;
}
.share_rev.wid_share.small_wid .wishad a {
    width: 70%;
    margin: 0 auto;
}
.share_rev.wid_share.med_wid .wishad a {
    width: 90%;
    margin: 0 auto;
}
.share_rev.wid_share.med_wid a p {
    font-size: 18px;
}
.share_rev.wid_share {
    min-height: 191px;
}
.green_btn {
    color: #5db634;
    border-color: #5db634 !important;
}
.share_rev.wid_share1.small_wid1 .form-group.wishad.wish2 a p {
    font-size: 18px;
}
.share_rev.wid_share1.small_wid1 .form-group.wishad.wish2 a p img {
    width: 100px;
    display: block;
    margin: 0 auto;
}
.share_rev.wid_share1.med_wid1 .form-group.wishad.wish2 a p {
    font-size: 20px;
}
.share_rev.wid_share1.med_wid1 .form-group.wishad.wish2 a p img {
    width: 130px;
    display: block;
    margin: 0 auto;
}*/
.post_content.rev_active h2.header select {
    border: 1px solid #ccc;
    font-size: 17px;
    padding: 6px 33px 8px;
    margin: 0 12px 0 0;
}
button#start_recording {
    border-radius: 0;
    width: 200px;
    padding: 8px 0 8px;
}
.post_content.rev_active h2.header {
    margin-bottom: 30px;
    padding-top: 5px;
    text-align: center;
}
.post_content.rev_active > video {
    width: 100%;
    height: 84px;
}
.post_content.rev_active audio {
    width: 100%;
    margin-bottom: 14px;
}
button#upload-to-server {
    padding: 8px 56px;
    border-radius: 0;
    width: 300px;
    font-size: 20px;
}
.post_content.rev_active > h1 {
    font-size: 26px !important;
    padding-left: 15px;
    padding-top: 21px;
    padding-bottom: 14px;
}
button#reset_recording {
    width: 200px;
    border-radius: 0;
    padding: 8px 0;
    margin-left: 13px;
}
section.recordrtc.post_review .post_content.rev_active {
    padding-bottom: 15px;
}
.is_company {
    width: 100%;
    float: left;
    text-align: center;
}
.is_company h4 {
    font-size: 18px;
    /*    float: right;*/
}
.is_company a {
    font-size: 18px;
    font-weight: bold;
    color: #5db634;
    margin-left: 4px;
}
.is_company a:hover {
    color: #5db634;
}
.comp_roundimg {
    width: 270px;
    border: 1px solid #e6e2e2;
    margin: 0 auto 8px;
    overflow: hidden;
    padding: 25px 0 0;
}
.similar_profile {
    width: 100%;
    float: left;
}
.similar_profile .bx-wrapper {
    border: 0;
    box-shadow: none;
}
.similar_profile h2 {
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 25px;
}
.similar_profile .bx-pager.bx-default-pager {
    display: none;
}
/*.similar_profile .media img {
    border: 1px solid #ccc;
    padding: 10px;
}*/
.similar_profile .media-body a {
    color: #333;
    font-weight: bold;
    font-size: 22px;
}
.similar_cat span {
    color: #5991CA;
    padding: 2px 0px;
    font-size: 15px;
    display: inline-block;
    word-spacing: 3px;
    letter-spacing: 0.5px;
    float: left;
    font-weight: 600;
}
.similar_profile .bx-viewport {
    overflow: visible !important;
}
.similar_smiley span.simple-rating.star-rating i {
    font-size: 40px;
}
.similar_smiley {
    position: absolute;
    right: 28px;
    top: -24px;
    z-index: 9999;
}
.similar_cat {
    width: 100%;
    float: left;
}
.sim_revs p {
    padding-top: 7px;
    margin: 0;
    padding-bottom: 8px;
    font-size: 18px;
    color: #6f6d6d;
    font-weight: 600;
}
.sim_revs p span {
    background: #5db634;
    color: #fff;
    padding: 4px 13px;
    letter-spacing: 2px;
    margin-right: 8px;
    font-size: 18px;
}
div#similar_div .media-body > p {
    margin: 0 0 6px;
    font-size: 15px;
    letter-spacing: 0.3px;
}
.similar_smiley i.fas.fa-frown {
    color: #FF8C00 !important;
}
.similar_smiley i.fas.fa-laugh  {
    color: #008000 !important;
}
.similar_smiley i.fas.fa-meh {
    color: #ffd300 !important;
}
.similar_profile h2 {
    font-weight: normal;
    font-size: 23px;
    padding-bottom: 54px;
    padding-top: 16px;
}
.similar_profile h2 b {
    color: #5db634;
    font-weight: 600;
}
.sim_score {
    width: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}
.sim_score p {
    background: #0056b3;
    width: 67px;
    padding: 4px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.compose_tabs .tab-content > div {
    padding: 0;
}
.compose_tabs ul.nav.nav-tabs li.nav-item a {
    background: #EBEBEB;
    font-size: 22px;
    font-weight: 500;
    border-radius: 0;
    border: 0;
    letter-spacing: 0.4px;
    color: #333;
    border-bottom: 3px solid #EBEBEB;
}
.compose_tabs ul.nav.nav-tabs li.nav-item {
    width: 50%;
    border: 0;
}
.compose_tabs ul.nav.nav-tabs li.nav-item a.nav-link.active {
    background: #fff;
    border-bottom: 3px solid green;
    color: green;
}
div#audioreview video {
    width: 100%;
    height: 75px;
}
.compose_tabs ul.nav.nav-tabs {
    margin-bottom: 13px;
}
div#audioreview h1 {
    padding-top: 25px;
    font-size: 26px;
    padding-bottom: 20px;
}
.claim_form {
    text-align: center;
    padding: 10px 27px;
}
.claim_form h3 {
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 26px;
    padding-top: 12px;
}
.claim_form button {
    width: 100%;
    border-radius: 0;
    padding: 7px 0;
    font-size: 20px;
}
.claim_form input.form-control {
    background: #eae8e8;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 1px 3px #ccc;
}
.claim_form button {
    background: #5db634;
    border: 1px solid #5db634;
}
.claim_form button:hover {
    background: #5db634;
}
.claim_form form > button,.claim_form form > button:hover {
    background: #fff;
    border: 0;
    width: 32px;
    position: absolute;
    right: -14px;
    top: -15px;
    opacity: 1 !important;
    border-radius: 100%;
    box-shadow: 0px 0px 5px #ccc;
    height: 32px;
    font-size: 30px;
    color: brown;
    padding-top: 0;
}
div#demo > audio {
    height: 64px;
    width: 100%;
}
.indust h3 {
    padding-top: 10px;
    padding-bottom: 33px;
    padding-left: 15px;
    font-size: 24px !important;
    text-align: center;
    font-weight: bold;
}
.track_list ul li span.dot_col {
    background: #000;
    width: 13px;
    height: 13px;
    float: left;
    border-radius: 100%;
    margin-right: 20px;
    margin-top: 9px;
}
svg.radial-progress {
    height: auto;
    max-width: 158px;
    padding: 1em;
    transform: rotate(-90deg);
    width: 100%;
    /*    margin: 1em;*/
}

svg.radial-progress circle {
    fill: rgba(0,0,0,0);
    stroke: #fff;
    stroke-dashoffset: 219.91148575129; /* Circumference */
    stroke-width: 10;
}

svg.radial-progress circle.incomplete { opacity: 0.25; }

svg.radial-progress circle.complete { stroke-dasharray: 219.91148575129; /* Circumference */ }

svg.radial-progress text {
    fill: #000;
    text-anchor: middle;
    font-weight: bold;
    font-size: 21px;
}
/*** COLORS ***/
/* Primary */

ul.row.circle_bar li:first-child svg.radial-progress circle {
    stroke: #a2ed56;
}

/* Secondary */

ul.row.circle_bar li:nth-child(2) circle { stroke: #83e4e2; }

/* Tertiary */

ul.row.circle_bar li:nth-child(3) circle { stroke: #fd6470; }

/* Quaternary */

ul.row.circle_bar li:nth-child(4) circle { stroke: #fca858; }

/* Quinary */

ul.row.circle_bar li:nth-child(5) circle { stroke: #fddc32; }

ul.row.circle_bar li {
    text-align: center;
}
ul.row.circle_bar li span {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 1em;
    margin: 0;
    font-size: 19px;
}
ul.row.circle_bar li span a {
    color: #000;
}
.bars > div img {
    width: 35px;
    position: absolute;
    bottom: -63px;
    left: 0;
    right: 0;
    margin: auto;
}
.bars span.bar-percent {
    display: none !important;
}
.bars > div p {
    margin: 0;
    position: absolute;
    top: -17px;
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #000;
}
.track_list ul li:first-child span.dot_col {
    background: #990099;
}
.track_list ul li:nth-child(2) span.dot_col {
    background: #109618;
}
.track_list ul li:nth-child(3) span.dot_col {
    background: #FF9900;
}
.track_list ul li:nth-child(4) span.dot_col {
    background: #DC3912;
}
div#research {
    width: 100%;
    float: left;
}
li.nav-item.research_btn a.nav-link {
    background: #5db634 !important;
    border: 1px solid #5db634 !important;
    color: #fff !important;
}
.invsec.research_but .switch_box.box_1 {
    position: absolute;
    right: 22px;
    top: 9px;
    min-width: auto;
}
section.home_awards {
    width: 100%;
    float: left;
    padding-bottom: 130px;
    background: #fff;
    padding-top: 40px;
}
section.home_awards h3, section.record_review h3 {
    text-align: center;
    font-size: 42px;
    padding-bottom: 88px;
    padding-top: 20px;
}
.awrd_line li img {
    max-width: 132px;
    position: absolute;
    bottom: 0;
}
.awrd_line {
    margin: 0 auto;
    overflow: hidden;
    display: table;
}
.awrd_line ul li {
    float: left;
    width: 150px;
    position: relative;
    display: block;
    min-height: 131px;
    margin: 0 70px 0 0;
}
section.record_review {
    background: #f5f5f5;
    width: 100%;
    float: left;
    padding-bottom: 65px;
    padding-top: 60px;
}
.awrd_line ul li:last-child {
    margin-right: 0;
}
.recrev_img img {
    width: 100%;
}
.recrev_img {
    width: 100%;
    margin: 0 auto;
}
section.record_review h3 {
    font-size: 42px;
    /*    padding-bottom: 50px;*/
    padding-bottom: 0px;
    padding-top: 25px;
    text-align: left;
}
.bxslider1 {
    margin-left: 50px !important;
}
.home_ltrevs {
    padding-top: 0;
    width: 100%;
}
.home_ltrevs h2 {
    font-size: 42px;
    padding-bottom: 95px;
    width: 100%;
    text-align: center;
}
.home_ltrevs p {
    font-size: 23px;
    line-height: 39px;
}
.last_slid .media-body h4 {
    width: 100%;
    float: left;
}
.home_ltrevs .bx-wrapper {
    border: 0;
    box-shadow: none;
    margin-bottom: 45px;
}
.home_ltrevs .bxslider > div div.last_slid,.home_ltrevs .bxslider1 > div div.last_slid {
    border: 1px solid #008000;
}
.home_ltrevs .bx-viewport {
    overflow: visible !important;
}
.lat_text h5 {
    font-size: 17px;
}
.last_slid {
    border: 1px solid #008000;
    padding: 12px 13px 12px;
    border-radius: 4px;
    margin-right: 30px;
}
div#carousel1 {
    padding-left: 50px;
    padding-bottom:50px;
}
.home_ltrevs .bx-controls.bx-has-controls-direction.bx-has-pager {
    display: none;
}
.lat_text {
    padding-top: 9px;
}
.lat_text p {
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
.lat_text h5 a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    display: inline-block;
}
.last_slid .media-body h4 {
    font-size: 18px;
    padding-top: 8px;
    line-height: 25px;
}
.last_slid .media-body h4 b a {
    color: #4CA846;
    font-weight: normal;
    font-size: 18px;
}
.last_slid .media {
    position: relative;
}
.last_slid .media-body span {
    position: absolute;
    right: 0;
    top: 9px;
    font-size: 12px;
    word-spacing: -1px;
}
.home_ltrevs .bxslider > div div.last_slid h4 b,.home_ltrevs .bxslider1 > div div.last_slid h4 b {
    color: #32CD32;
    font-weight: normal;
}
section.latest_reviws {
    background: #fff;
    width: 100%;
    float: left;
    padding: 0px 80px 50px;
}
ul.demo2 {
    height: 400px !important;
}
ul.demo2 li p {
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 0;
}
ul.demo2 li > div {
    background: #fff;
    box-shadow: 0px 1px 4px #ccc;
    border-radius: 4px;
    border:0 none;
}
ul.demo2 li.news-item {
    border-bottom: 0 none;
    margin-bottom: 13px;
}
ul.demo2 li.news-item div h4 {
    font-size: 20px;
}
.client_logo .logo_item img {
    width: 150px;
}
.client_logo {
    padding-top: 80px;
}
.logo_item {
    padding-bottom: 50px;
    text-align: center;
}
.social_logos {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 40px;
}
.social_logos ul {
    margin: 0 auto;
    display: table;
}
.social_logos ul li {
    float: left;
    margin-right: 50px;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
}
.social_logos ul li:first-child img {
    width: 120px;
}
.social_logos ul li:nth-child(2) img {
    width: 150px;
}
.social_logos ul li:nth-child(3) img {
    width: 82px;
}
.social_logos ul li:nth-child(4) img {
    width: 120px;
}
.social_logos ul li:nth-child(5) img {
    width: 92px;
}
.social_logos ul li:nth-child(6) img {
    width: 83px;
}
.social_logos ul li:first-child {
    margin-top: 24px;
}
.social_logos ul li:nth-child(2) {
    margin-top: 100px;
}
.social_logos ul li:nth-child(4) {
    margin-top: 100px;
}
.social_logos ul li:nth-child(6) {
    margin-top: 85px;
    margin-right: 0;
}
.social_import {
    text-align: center;
    padding-bottom: 50px;
}
.social_import h4 {
    font-weight: 600;
    font-size: 25px;
    padding-bottom: 10px;
}
.social_import p {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 23px;
    font-size: 16px;
}
.social_import button {
    background: #3578fa;
    padding: 7px 36px;
    color: #fff;
    font-weight: 500;
    font-size: 19px;
    border: 0;
    border-radius: 27px;
    cursor: pointer;
}
.social_import button a {
    color: inherit;
}
.bounce-1 {
    animation-name: bounce-1;
    animation-timing-function: linear;
}
@keyframes bounce-1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-13px); }
    100% { transform: translateY(0); }
}
div#page main > div.bg_color_2, div#page main > div.bg_color_1 {
    width: 100%;
    float: left;
}
html.homepage {
    overflow-x: hidden;
}
.home_ltrevs .last_slid div.media img {
    width: 65px !important;
}
.new_similar {
    width: 100%;
    float: left;
    padding-bottom: 30px;
}
.new_simprof {
    text-align: center;
}
.new_simprof {
    text-align: center;
    padding: 10px 10px;
    border-radius: 4px;
    border: 1px solid #e3e7f3;
    margin-bottom: 30px;
}
.new_simprof img {
    margin-bottom: 12px;
}
.new_simprof ul.nav li a img {
    width: 43px;
    border: 2px solid #eee;
    border-radius: 100%;
    padding: 5px;
}
.new_simprof ul.nav li {
    float: left;
}
.new_simprof ul.nav li a {
    margin-right: 10px;
}
.new_simprof ul.nav li:last-child a {
    margin-right: 0;
}
.new_simprof > img {
    width: 63px;
    border: 1px solid #e3e7f3;
    padding: 6px;
    margin-top: 18px;
    margin-bottom: 18px;
}
.new_simprof h3 {
    font-size: 20px;
    font-weight: bold;
    color: #696868;
    margin-bottom: 0;
    font-family: roboto;
    padding-bottom: 8px;
}
.new_simprof h3 a {
    color: inherit;
}
.new_simprof ul.nav {
    margin: 0 auto;
    display: table;
    padding-bottom: 11px;
}
.new_simprof p {
    color: #b7b6b6;
    font-size: 16px;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 0.3px;
}
.comp_tooltip h4 {
    margin: 0;
    font-size: 16px;
}
.comp_tooltip {
    position: absolute;
    top: -44px;
    background: #000;
    padding: 0 13px;
    border-radius: 7px;
}
section.home_awards h3 {
    color: #051B4C;
    font-size: 44px;
    text-transform: capitalize;
    font-weight: bold;
}
.slick-list {
    overflow: visible !important;
}
div#carousel1 > button, div#carousel2 > button {
    display: none !important;
}
.trust_research {
    padding-top: 48px;
}
.trust_research p {
    font-size: 21px;
    color: #333;
    letter-spacing: 0.3px;
    text-align: center;
    padding-top: 28px;
    font-family: opensans;
    word-spacing: 1px;
}
.trust_research .switch_box.box_1 {
    margin-top: 4px;
}
.pop_data {
    min-width: 176px;
    padding: 10px;
}
.pop_data p {
    margin: 0;
    padding: 5px 0;
    font-size: 15px;
}
.pop_data p span{
    color: #5db634;
    font-weight: 500;
}
.trust_research .switch_box.box_1 {
    margin: 0 auto;
    min-width: inherit !important;
    display: table;
}
.res_text {
    padding: 16px 22px 0;
    background: #fff;
}
.res_text p {
    font-size: 17px;
    background: #fff;
    padding: 10px 10px;
    text-align: center;
    line-height: 30px;
    margin: 0;
    letter-spacing: 0.3px;
    font-weight: normal;
}
.comp_awards ul li {
    float: left;
    padding: 0 0px 23px 0px;
    position: relative;
    width: 33%;
}
.comp_awards ul li span {
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    margin: auto;
    color: #fff;
    font-weight: bold;
    font-size: 7px;
    letter-spacing: 1px;
}
.comp_awards ul li:first-child span {
    top: 9px;
    font-size: 5px;
}
.comp_awards ul li:nth-child(2) span {
    top: 5px;
    font-size: 5px;
}
.comp_awards ul li:nth-child(3) span {
    top: 16px;
    font-size: 5px;
}
.comp_awards {
    padding: 0 36px;
}
.comp_awards ul li img {
    width: 50px;
    border: 0;
    border-radius: 0;
}
.fund_details {
    padding-top: 14px;
}
.fund_details p {
    margin: 0 0 14px 0;
    text-align: left;
    font-size: 19px;
}
.fund_details p span {
    display: inline-block !important;
    width: 157px !important;
    text-align: left !important;
}
/******* research input start *******/
.indust.res_indust {
    background: none;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 20px 30px;
}
form.res_input button {
    width: 100%;
    background: #32CD32;
    border-color: #32CD32;
    padding: 10px 0;
    border: 0;
}
.res_preview p {
    margin: 0;
}
.res_preview button.btn.btn-primary {
    border-radius: 100%;
    width: 28px;
    height: 27px;
    text-align: center;
    padding: 0;
    line-height: 11px;
    font-weight: lighter;
    background: #FF0000 !important;
    border: 1px solid #FF0000 !important;
    font-size: 16px !important;
    margin: 0 !important;
}
.res_preview > div {
    border: 1px solid #cccc;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 19px;
    margin-bottom: 20px;
    background: #f3f3f3;
}
.res_upd {
    text-align: center;
    width: 100%;
    padding-top: 30px;
}
.res_upd button.btn.btn-primary {
    width: 220px;
    padding: 10px 0;
    font-size: 20px;
    background: #32CD32;
    border-color: #32CD32;
}
form.res_input input.form-control, form.res_input select.custom-select {
    height: 44px !important;
}
/******* research input end *******/
.yu_list p {
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0.3px;
    text-align: justify;
    padding-right: 50px;
}
.yu_list button.btn {
    border: 1px solid #5db634;
    color: #5db634;
    background: none;
    padding: 13px 0px;
    width: 100%;
    font-size: 26px;
    font-weight: 500;
}
.all_cateries {
    width: 100%;
    padding: 50px 30px 10px;
    background: #F5F5F5;
}
.newcat_list .card-body {
    padding: 0 10px;
}
.newcat_list .card {
    margin: 0;
}
.newcat_list .card-header {
    background: #fff !important;
    padding: 0 10px !important;
    border: 0;
    box-shadow: none;
}
.newcat_list a.card-link {
    display: block;
}
ul.nav.nav-tabs.subcat_list1 {
    max-height: 450px;
    overflow-y: auto;
}
.newcat_list ul.nav.nav-tabs li {
    width: 100%;
}
.newcat_list ul.nav.nav-tabs li img,.newcat_list a.card-link img {
    width: 30px;
    margin-right: 10px;
}
.newcat_list ul.nav.nav-tabs li a,.newcat_list a.card-link {
    color: #000;
    font-size: 18px;
    padding: 14px 0px 14px 10px;
    border-bottom: 1px solid #ccc;
}
.newcat_list a.card-link {
    border: 1px solid transparent;
}
ul.nav.nav-tabs.subcat_list2 li a {
    font-size: 16px;
    letter-spacing: 0.3px;
}
.newcat_list a.card-link img {
    width: 23px;
}
.newcat_list ul.nav.nav-tabs li:first-child a img {
    width: 23px;
}
.newcat_list ul.nav.nav-tabs li a img.col_img {
    filter: grayscale(100%);
    display: inline-block;
    float: left;
}
.newcat_list ul.nav.nav-tabs li a.nav-link:hover img.col_img {
    filter: grayscale(0);
}
.cat_Search button.btn {
    background: #5db634;
    width: 100%;
    padding:10px 0;
    color: #fff;
    font-size: 18px;
}
.cat_Search input.form-control, .cat_Search select.form-control {
    font-size: 17px;
    height: 48px;
    border-radius: 5PX;
}
.cat_Search input.form-control:focus, .cat_Search select.form-control:focus {
    border-color: #5db634;
}
.top_sec {
    position: relative;
}
ul.nav.nav-tabs.subcat_list1 li a {
    padding-left: 15px;
}
ul.nav.nav-tabs.subcat_list2 li.nav-item a i {
    margin-right: 6px;
    float: left;
    margin-top: 4px;
}
ul.nav.nav-tabs.subcat_list2 li.nav-item a {
    padding-left: 20px;
}
ul.nav.nav-tabs.subcat_list2 {
    background: #eae7e7;
}
ul.nav.nav-tabs.subcat_list2.hide_sub {
    display: none;
}
ul.nav.nav-tabs.subcat_list2.show_sub {
    display: inherit;
}
ul.nav.nav-tabs.subcat_list2.collapse li a span {
    display: inline-block;
    max-width: 207px;
    line-height: 20px;
}
form.social_form.soc_welcome textarea {
    height: 102px;
    border-radius: 8px;
    background: #EDEDED;
    resize: none;
    border: 0;
    padding-top: 15px;
    font-size: 20px;
    padding-left: 16px;
}
form.social_form.soc_welcome select.custom-select,form.social_form.soc_welcome .input-group input.form-control {
    background: #ededed;
    border: 0;
    font-size: 19px;
    height: 54px;
    padding-left: 29px;
    color: #adabab;
}
form.social_form.soc_welcome span.input-group-text img {
    width: 40px;
}
form.social_form.soc_welcome p {
    font-size: 22px;
}
form.social_form.soc_welcome .input-group span.input-group-text {
    border: 0;
    padding: 0px 20px;
    background: #e4e1e1;
    display: none;
}
form#welcome_form_detail .select2-container {
    width: 100% !important;
}
form.social_form.soc_welcome .input-group input.form-control {
    color: #adabab;
    border-radius: 6px;
    height: 54px;
}
.container.margin_tabs.reg_mar.great_social {
    margin-top: 50px;
}
.container.margin_tabs.reg_mar.great_social h1 {
    padding-bottom: 34px;
}
.container.margin_tabs.reg_mar.welldone {
    max-width: 100%;
    padding: 0;
}
.well_head {
    background: #37A000;
    height: 100%;
    padding-top: 70px;
    padding-left: 60px;
    min-height: 600px;
}
.well_head h1 {
    color: #fff;
    font-weight: lighter;
    font-size: 58px;
    margin-bottom: 85px;
}
.well_head p {
    color: #fff;
    font-size: 24px;
    text-align: left;
    font-weight: lighter;
    width: 81%;
    letter-spacing: 0.5px;
    line-height: 36px;
    padding-bottom: 50px;
}
.well_head button.btn {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    display: block;
    width: 287px;
    padding: 12px 0;
    border-radius: 100px;
    font-size: 22px;
    margin-bottom: 20px;
}
.well_head a {
    color: #fff;
    font-size: 18px;
    text-decoration: underline;
    position: absolute;
    bottom: 0;
}
.well_head button.btn:hover {
    background: #fff;
    color: #5db634;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont {
    padding-top: 20px;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont .review_section.msg_section {
    border: 0;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont div.comp_info {
    box-shadow: none;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont .form-group.pricing_labs a i {
    padding-top: 5px;
    padding-left: 7px;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont .comp_table {
    font-size: 17px;
}
.container.margin_tabs.reg_mar.welldone {
    margin-top: 0;
    height: 100%;
    margin: 0;
}
p.comp_im {
    position: absolute;
    bottom: -36px;
    margin: 0;
    left: 20px;
}
div#accordion {
    padding-top: 15px;
    background: #fff;
}
.newcat_list ul.nav.nav-tabs li a.nav-link.active,.newcat_list ul.nav.nav-tabs li a.nav-link:hover,.newcat_list a.card-link.active,.newcat_list a.card-link:hover {
    color: #5db634;
    border: 1px solid #5db634;
    border-radius: 5px;
    background: #fff;
}
/*img.col_img {
    display: none;
}*/
.newcat_list ul.nav.nav-tabs li a:hover .nor_img, .newcat_list ul.nav.nav-tabs li a.nav-link.active .nor_img  {
    display: none;
}
.newcat_list ul.nav.nav-tabs li a:hover .col_img, .newcat_list ul.nav.nav-tabs li a.nav-link.active .col_img  {
    display: inline-block;
}
p.comp_im img {
    border-radius: 100%;
    width: 70px;
}
.cat_banner {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.top_sec, .top_sec > img {
    width: 100%;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.bot_sec p {
    font-size: 14px;
    text-align: justify;
}
.top_sec > img {
    border-radius: 0;
    padding: 0px 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.top_sec {
    height: 150px;
    border: 1px solid #5db634;
    border-radius: 0;
}
p.comp_im img {
    box-shadow: 0px 0px 3px #cccbcb;
}
.bot_sec {
    width: 100%;
    float: left;
    background: #fff;
    padding: 50px 15px 10px 15px;
    border: 1px solid #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.bot_sec h3 {
    font-size: 22px;
}
.bot_sec h3 a {
    color: #333;
    display: block;
    position: relative;
    padding-right: 19px;
    line-height: 34px;
    max-width: 194px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 19px;
}
.mm-navbars-bottom {
    display: none;
}
p.promap_loc.probus {
    width: auto;
    float: left;
    font-size: 13px;
    padding: 4px 5px;
    background: #EEEEEE;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
    text-align: center;
    margin-right: 7px;
    color: #585757;
    margin-bottom: 13px;
    line-height: 18px;
}
.bot_sec h3.companyname {
    position: relative;
}
.bot_sec p {
    margin: 0 0 10px;
}
.bot_sec > p {
    min-height: 67px;
}
.bot_sec h3 span {
    font-size: 14px;
    color: #5db634;
    /*    margin-left: 2px;
        position: absolute;
        top: 8px;
        right: 0;*/
}
p.promap_loc.probus span a {
    color: inherit;
    font-weight: 500;
}
p.promap_loc.probus:hover {
    background: #4CA846;
    color: #fff;
    border-color: #4CA846;
}
p.bot_loc {
    position: absolute;
    bottom: 0;
    font-size: 13px;
    color: #9c9c9c;
}
p.bot_loc img {
    width: 14px;
}
p.top_smile {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: -48px;
}
p.top_smile span.simple-rating.star-rating i {
    margin-right: 0;
    font-size: 19px;
    margin: 0 -4px 0 0;
}
p.top_smile span.simple-rating.star-rating {
    margin-right: 15px;
}
.dropdown-menu.cat_rating span.simple-rating.star-rating i {
    display: block;
    width: 100%;
    padding: 10px 10px;
}
.dropdown-menu.cat_rating span.simple-rating.star-rating i b {
    font-weight: normal;
    margin-left: 21px;
    font-size: 20px;
    font-family: Roboto;
}
.dropdown-menu.cat_rating.show {
    width: 100%;
}
.dropdown-menu.cat_rating span.simple-rating.star-rating {
    padding-left: 20px;
    display: block;
}
.dropdown.rating_btn button {
    background: #fff;
    border: 1px solid #ccc;
    color: #495057;
    text-align: left;
    padding-left: 20px;
}
.dropdown.rating_btn button i {
    float: right;
    font-size: 11px;
    margin-top: 8px;
    margin-right: 4px;
}
.dropdown.rating_btn button:focus {
    box-shadow: none;
}
.dropdown.rating_btn button.btn.btn-primary.dropdown-toggle:after {
    display: none;
}
.dropdown.rating_btn.show button.btn.btn-primary.dropdown-toggle {
    background: #fff;
    color: inherit !important;
}
.dropdown.rating_btn.show button.btn.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
    border-color: #5db634;
}
button.btn.select_all {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    text-align: center;
}
.cat_Search button.btn:focus {
    box-shadow: none;
}
button.btn.select_all:hover {
    background: #5db634;
    color: #fff;
    border-color: #5db634;
}
.top_sec > label {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    padding: 4px 17px 2px;
    border-radius: 6px;
    font-size: 13px;
}
.top_sec > label input:checked ~ .checkmark {
    background-color: #5db634;
}
.top_sec > label:hover input ~ .checkmark {
    background-color: #5db634;
}
.top_sec span.checkmark {
    margin-right: 4px;
}
.top_sec > label input {
    width: 12px;
    position: relative;
    top: 2px;
    left: 1px;
}
.pricing_container {
    padding: 30px;
}
.pricing_container h3 a {
    font-size: 22px;
    float: right;
    border: 1px solid #5db634;
    padding: 15px 26px;
    border-radius: 7px;
    color: #5db634;
}
.pricing_container h3 {
    font-weight: bold;
    padding-top: 30px;
    text-indent: 15px;
}
.pricing_container h3 a:hover {
    background: #5db634;
    color: #fff;
}
.comp_pack.prof_pack {
    width: 100%;
    float: left;
    padding-top: 20px;
}
.comp_pack.prof_pack .green_points {
    max-height: 300px;
    min-height: 300px;
}
.green_points ul {
    padding-left: 45px;
}
.pricing_container p {
    width: 100%;
    float: left;
    text-align: right;
    font-size: 20px;
    margin: 0;
    padding-top: 20px;
}
form.comp_register_form.pricing_form.dash_price .green_points ul {
    padding-left: 25px;
}
.pricing_container p i {
    font-size: 22px;
    margin-right: 6px;
    position: relative;
    top: 3px;
    color: #5db634;
}
.compare_green {
    background: #37A000;
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 17px;
    padding-bottom: 13px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.compare_green img {
    width: 70px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-bottom: 12px;
}
.compare_green p {
    text-align: center;
    margin: 0;
}
.compare_green p a {
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #fff;
    letter-spacing: 0.5px;
}
.compare_green p {
    padding-top: 8px;
    padding-bottom: 5px;
    font-size: 15px;
    color: #fff;
}
.compare_green p i {
    color: #fff;
    font-size: 15px;
    position: relative;
    top: 1px;
}
.comp_pack.prof_pack .cols {
    width: 23%;
    margin: 0 1%;
    float: left;
}
.compare_comp {
    width: 100%;
    float: left;
    padding-top: 15px;
}
.compare_comp h3 {
    font-size: 22px;
    border-bottom: 2px solid #333;
    display: inline-block;
    margin-bottom: 40px;
    line-height: 31px;
    text-indent: 0;
}
.compare_table td {
    text-align: center;
    vertical-align: middle;
}
.compare_table table p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Roboto;
}
.compare_table td p span {
    display: block;
    font-size: 13px;
    font-weight: normal;
    color: #333;
}
.compare_table table p {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 44px;
    font-weight: bold;
}
.compare_table table p small {
    font-size: 23px;
    font-weight: bold;
    position: relative;
    top: -2px;
    margin-right: 3px;
}
.compare_table td b {
    font-size: 23px;
}
.compare_table table tr:nth-child(odd) {
    background: #F2F2F2;
}
.compare_table table tr:nth-child(even) {
    background: #B9D9A9;
}
.compare_table.comp3 table td {
    line-height: 27px;
}
form.social_form {
    width: 70%;
    margin: 0 auto;
}
form.social_form label img {
    width: 100px;
    position: relative;
    top: -27px;
}
form.social_form input.form-control {
    border-radius: 32px;
    background: #E6E6E6;
    border: 0;
    height: 50px;
    padding-left: 40px;
}
form#welcome_form_detail input.form-control {
    background: #fff;
    border: 1px solid #e1e6f1;
    border-radius: 0;
    color: #99a6b7;
    padding-left: 0;
    text-align: center;
}
form#welcome_form_detail .form-control::-webkit-input-placeholder { color: #99a6b7; }  /* WebKit, Blink, Edge */
form#welcome_form_detail .form-control:-moz-placeholder { color: #99a6b7; }  /* Mozilla Firefox 4 to 18 */
form#welcome_form_detail .form-control::-moz-placeholder { color: #99a6b7; }  /* Mozilla Firefox 19+ */
form#welcome_form_detail .form-control:-ms-input-placeholder {  color: #99a6b7; }  /* Internet Explorer 10-11 */
form#welcome_form_detail .form-control::-ms-input-placeholder {  color: #99a6b7; }

.great_social {
    text-align: center;
}
.great_social h1 {
    font-weight: lighter;
    color: #636161;
    font-size: 46px;
    padding-bottom: 18px;
}
.great_social p {
    font-size: 21px;
    font-weight: lighter;
    text-align: center;
    margin-bottom: 36px;
}
.form-group.text-center.social_save button.btn {
    background: #5db634;
    width: 50%;
    font-size: 22px;
    color: #fff;
    border-radius: 100px;
    margin: 0 auto;
}
.form-group.text-center.social_save.med_save button.btn {
    display: inline-block;
    float: left;
}
.welldone.wel_social {
    padding-left: 60px;
    text-align: left;
    padding-top: 30px;
}
.welldone.wel_social button.btn {
    text-decoration: underline;
}
.form-group.text-center.social_save button.btn i {
    margin-left: 9px;
    font-size: 19px;
}
form.social_form label img {
    width: 53px;
    position: relative;
    top: -1px;
    background: #fff;
    box-shadow: 0px 0px 7px #ccc;
    border-radius: 100%;
    padding: 7px;
}
form#new_company_profile {
    padding-top: 50px;
    padding-left: 50px;
}
.form-group.user_upload.thanks_upload p {
    margin-bottom: 60px;
    font-size: 20px;
}
.form-group.user_upload.thanks_upload span {
    display: block;
    text-align: center;
    padding-top: 15px;
    font-weight: lighter;
}
.form-group.user_upload.thanks_upload input[type="file"] {
    padding: 0 !important;
    border: 0 !important;
    max-width: inherit;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont button.btn.upload_btn {
    background: #5db634;
    color: #fff;
    border-color: #5db634;
    padding: 7px 0;
    width: 72%;
    font-size: 18px;
}

.form-group.text-center.up_div {
    min-height: 100px;
    position: relative;
}
/*.dash_rev_cont.trust_reviews.trust_msg.well_cont .form-group.text-center.up_div {
    min-height: 50px;
    position: absolute;
    width: 97%;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}*/
.dash_rev_cont.trust_reviews.trust_msg.well_cont .img_preview {
    box-shadow: none;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont .preview_img {
    margin-bottom: 50px;
}
.form-group.user_upload.thanks_upload input[type="file"]::-webkit-file-upload-button {
    background-color: #5db634;
    width: 100%;
    text-align: center;
    padding-left: 36px;
    background-position: 61px 17px;
    height: 58px;
    border-radius: 100px;
    font-size: 20px;
}
.dash_rev_cont.trust_reviews.trust_msg.well_cont .form-group.text-center.social_save button.btn {
    padding: 12px 0;
}
form#welcome_form_detail span.select2-selection.select2-selection--single {
    padding: 6px 0;
}
form#welcome_form_detail label.error {
    position: absolute;
    bottom: -30px;
    width: 100%;
    z-index: 999;
    text-align: center !important;
    left: 0;
}
form#welcome_form_detail .year_found label.error {
    bottom: -6px;
}
.container.margin_tabs.reg_mar.welldone .well_head a {
    position: relative;
    display: block;
    float: left;
    margin-top: 15px;
}
.prof_chart {
    padding-left: 0;
}
#donut_single1 > div > div {
    margin: 0 auto;
}
.prof_graph {
    padding-right: 0;
}
.dash_body.userprof_body .row.new_label.white_label h3 {
    color:
        #333;
}
.container.margin_tabs.reg_mar.great_social h1.welcome_head img {
    width: 27%;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.container.margin_tabs.reg_mar.great_social.welmarg {
    margin-top: 35px;
}
.media.bot_loc img {
    width: 15px;
    margin-top: 5px;
}
.media.bot_loc .media-body {
    font-size: 12px;
    padding-left: 3px;
    text-align: left;
    line-height: 22px;
}
.comp_progressbar {
    display: block;
    position: relative;
    z-index: 9999;
    width: 29px;
    margin-top: 7px;
    margin-left: 5px;
    top: 14px;
}
div#comp_popover img {
    width: 30px;
    height: auto;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
}
.comp_progressbar .progress {
    float: left;
    width: 100%;
    border-radius: 0;
    height: 18px;
}
.comp_progressbar .progress .progress-bar {
    width: 25%;
    display: block;
    flex: none;
}
.comp_progressbar .progress .progress-bar.bg-orange {
    background: #FF7F50;
}
.pop_points {
    background: #F2F2F2;
    padding: 10px 10px 10px 10px;
    min-width: 262px;
    float: left;
    position: absolute;
    top: 38px;
    z-index: 9999;
    display: none;
}
div#comp_popover:hover .pop_points {
    display: block;
}
.pop_points i {
    font-size: 20px;
    margin-left: 10px;
}
.pop_points i.fas.fa-check-square {
    color: #5db634;
}
.pop_points i.fas.fa-window-close {
    color: #dc3545 ;
}
.pop_points p {
    margin: 0;
    padding: 5px 0;
    font-size: 15px;
    color: #333;
}
.pop_points .popover-body {
    padding: 0;
    border-radius: 0;
}
.set_info.dash_info .toast {
    background-color: #98D027;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
}
.bg_color_1.allrev_cont {
    background: #E8F0FE;
}
ul.grid.effect-2.all_grid {
    max-width: 100%;
}
ul.grid.effect-2.all_grid .last_slid {
    background: #fff;
    border: 0;
    margin: 10px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px #e0e0e0;
}
ul.grid.effect-2.all_grid .last_slid .lat_text h4 {
    font-size: 18px;
    line-height: 28px;
    color:  #757575;
}
ul.grid.effect-2.all_grid .last_slid .lat_text h4 b {
    color: #333;
}
ul.grid.effect-2.all_grid .lat_text h4 a {
    color: #4CA846;
    display: inline-block;
}
ul.grid.effect-2.all_grid .media-body h5 {
    width: 100%;
    float: left;
}
ul.grid.effect-2.all_grid .last_slid .media-body span {
    position: inherit;
    float: left;
}
ul.grid.effect-2.all_grid .last_slid .media-body span {
    position: relative;
    float: left;
    background: #4CA846;
    color: #fff;
    padding: 2px 5px;
    border-radius: 8px;
    margin-left: 10px;
}
ul.grid.effect-2.all_grid .simple-rating.star-rating.home_rate span.sr-only {
    display: none;
}
ul.grid.effect-2.all_grid .last_slid .lat_text span {
    width: 100%;
    overflow: hidden;
    display: block;
    text-align: right;
}
ul.grid.effect-2.all_grid .last_slid .lat_text p {
    font-size: 17px;
    line-height: 28px;
    padding-bottom: 20px;
}
div.all_revpage header {
    background: #fff;
    border-bottom: 1px solid #e6e2e2;
}
ul.grid.effect-2.all_grid li {
    border-radius: 4px;
}
.all_revpage nav.main-menu.newmain a {
    color: #444444;
}
section.faqs {
    width: 100%;
    float: left;
    text-align: center;
    background: #F4F4F4;
    padding-bottom: 50px;
    padding-top: 50px;
}
.read_cont.faq_head h2 {
    color: #333;
    font-size: 50px;
    font-weight: 500;
}
.read_cont.faq_head p {
    font-size: 23px !important;
    letter-spacing: 0.3px;
    line-height: 35px;
}
.faq_tabs {
    width: 100%;
    float: left;
    padding: 30px 30px;
}
.faq_tabs .card-header {
    background: none;
    text-align: left;
}
.faq_tabs .card-header {
    background: none;
    text-align: left;
    border: 0;
    padding: 7px 0;
}
.faq_tabs .card-header h5 button {
    color: #333;
    font-size: 25px;
    width: 100%;
    text-align: left;
}
.faq_tabs .card-body {
    text-align: left;
    font-size: 17px;
}
.faq_tabs .card-header h5 button:hover {
    text-decoration: none;
}
.faq_tabs .card {
    border-bottom: 1px solid #e8e3e3;
    margin: 0;
}
.cant_find {
    text-align: center;
    width: 100%;
    float: left;
    padding: 60px 0 60px;
    background: #fff;
}
.cant_find p {
    font-size: 20px;
    width: 51%;
    margin: 0 auto;
    padding-top: 45px;
    padding-bottom: 30px;
}
.cant_find button.btn {
    background: #37a000;
    color: #fff;
    width: 250px;
    text-align: center;
    padding: 13px 0;
    border-radius: 100px;
    font-size: 20px;
}
.left_faq img,.right_faq img {
    width: 100px;
    display: block;
}
.right_faq {
    right: 0;
    position: absolute;
    top: 0;
    min-height: 300px;
}
.left_faq {
    min-height: 400px;
    float: left;
    display: block;
    min-width: 100px;
    position: relative;
}
.wrapper.faq_wrap {
    padding-top: 170px;
}
.left_faq img.img2 {
    width: 150px;
    bottom: 0;
}
.left_faq img {
    position: absolute;
}
.left_faq img.img1 {
    top: -74px;
    left: 150px;
}
.right_faq {
    float: right;
    min-height: 400px;
    min-width: 100px;
}
.right_faq img {
    position: absolute;
}
.right_faq .img1 {
    left: -160px;
    width: 120px;
    top: 24px;
}
.right_faq .img2 {
    bottom: 0;
    width: 160px;
    left: -42px;
}
.wrapper.faq_wrap input.form-control {
    border-radius: 100px;
    border: 1px solid #949393;
    width: 80%;
    margin: 0 auto;
}
.faq_tabs .card-header h5 button i {
    float: right;
}
i.toggles {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.faq_tabs .card-header h5 button i.fas.fa-chevron-right.rotate {
    transform: rotate(90deg);
}
.bg_color_1.allrev_cont.all_bg {
    background: #EEE;
}
ul.grid.effect-2.all_grid .last_slid .media-body h5 p a {
    color: #1975b6;
    margin-top: 7px;
}
ul.grid.effect-2.all_grid .last_slid .media-body h5 p {
    margin-bottom: 8px;
}
ul.grid.effect-2.all_grid .last_slid .lat_text {
    padding-top: 9px;
    padding-left: 6px;
    padding-right: 6px;
}
.user_social {
    text-align: center;
    padding-top: 8px;
}
.user_social p {
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0.3px;
}
.user_social nav a {
    font-size: 20px;
    padding: 6px 30px;
    margin: 0 0px 0 36px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
}
.user_social nav a:first-child {
    background: #3b5998 ;
    margin-left: 0;
}
.user_social nav a:nth-child(2) {
    background: #1da1f2;
}
.user_social nav a:nth-child(3) {
    background: #DB4437;
}
.user_social nav a:nth-child(4) {
    background: #007bb5;
}
.user_social nav.nav {
    margin: 0 auto;
    display: block;
    padding-bottom: 40px;
}
section.content-current.user_signup {
    padding-top: 20px;
}
.or_line {
    text-align: center;
    border-bottom: 1px solid #ccc;
    width: 100%;
    float: left;
    margin-bottom: 40px;
    position: relative;
}
.or_line span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    display: inline;
    width: 44px;
    top: -15px;
    font-size: 18px;
}
.port_used {
    width: 100%;
    float: left;
    padding: 30px 20px 0 25px;
}
.port_used label.custom-control-label {
    font-size: 20px;
    font-weight: 400;
    padding-left: 15px;
}
.port_used .custom-control.custom-radio {
    padding-bottom: 15px;
    text-align: left;
    padding-left: 22%;
}
.port_used h4 {
    text-align: left;
    padding-bottom: 28px;
}
.port_used label.custom-control-label::after {
    top: 10px;
}
.port_used label.custom-control-label::before {
    top: 10px;
}
.port_used .custom-control-input:checked ~ .custom-control-label::before, .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    border-color: #5db634;
    background-color: #5db634;
}
.port_form {
    width: 100%;
    /*    border-top: 1px solid #ccc;
        padding-top: 40px;*/
    /*    margin-top: 36px;*/
    margin-left: 20px;
    margin-right: 20px;
}
.port_form form label {
    font-size: 16px;
    color: #797777;
}
.port_form form textarea {
    height: 100px;
    resize: none;
    background: #ededed !important;
    border: 0;
}
.port_form form input.form-control {
    background: #ededed !important;
    border: 0 none;
}
.port_form .form-group.row {
    padding-bottom: 20px;
}
.port_form .form-group.user_upload.form_title label {
    padding-left: 0;
}
.port_form .log_upload button {
    margin-top: 47px;
}
.port_form .update_btn button {
    background: #37a000 !important;
    border: 0;
    width: 52%;
    padding: 10px 0;
}
.port_form .form-group.user_upload.form_title label span {
    width: 100%;
    text-align: left;
}
.port_form .comp_table tr td:first-child {
    width: 10%;
}
.port_form .comp_table tr td:nth-child(3), .port_form .comp_table tr td:nth-child(4) {
    width: 16%;
    text-align: center;
}
.port_form .comp_table tr td:nth-child(2) {
    width: 58%;
}
.port_form.team_form .form-group.row {
    padding-bottom: 10px;
}
.port_form.team_form {
    border-top: 0;
    padding-top: 0;
}
.port_form .form-group.user_upload label {
    font-size: 16px !important;
}
ul.row.port_grid li {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding: 20px;
}
ul.row.port_grid li a span {
    color: #333;
    padding-bottom: 20px;
    display: block;
    font-size: 22px;
}
ul.row.port_grid li a {
    padding: 20px;
    box-shadow: 0px 0px 4px #ccc;
    display: block;
    width: 100%;
}
ul.row.port_grid li img {
    width: 100%;
}
ul.row.port_grid {
    padding: 30px 10px;
}
ul.row.port_grid li a p {
    font-size: 15px;
    text-align: justify;
    font-weight: normal;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    color: #fff;
    display: none;
}
ul.row.port_grid li a {
    position: relative;
}
ul.row.port_grid li a:hover .port_msg {
    display: block;
}
ul.row.port_grid.team_grid nav.nav a {
    float: left;
    display: inline-block;
    width: auto;
    border: 0;
    padding: 0;
    box-shadow: none;
}
ul.row.port_grid.team_grid nav.nav a, .trust_staff nav.nav a  {
    float: left;
    display: inline-block;
    width: auto;
    border: 0;
    padding: 0;
    box-shadow: none;
    margin: 0 22px;
}
ul.row.port_grid.team_grid nav.nav a {
    margin: 0 27px 0 0;
    font-size: 22px;
}
ul.row.port_grid.team_grid nav.nav a:last-child {
    margin-right: 0;
}
ul.row.port_grid.team_grid {
    padding: 30px 20px;
}
ul.row.port_grid.team_grid p {
    margin: 0;
}
ul.row.port_grid.team_grid li h4 {
    padding-top: 18px;
    font-weight: bold;
}
ul.row.port_grid.team_grid li p {
    font-size: 22px;
    color: #adacac;
    padding-bottom: 14px;
    font-weight: normal;
}
ul.row.port_grid.team_grid li div {
    width: 100%;
    float: left;
    box-shadow: 0px 0px 7px #c3c2c2;
    border-radius: 7px;
    padding-bottom: 12px;
}
ul.row.port_grid.team_grid nav a:first-child:hover, .trust_staff nav.nav a:first-child:hover {
    color: #3b5998;
}
ul.row.port_grid.team_grid nav a:nth-child(2):hover, .trust_staff nav.nav a:nth-child(2):hover {
    color: #1da1f2;
}
ul.row.port_grid.team_grid nav a:nth-child(3):hover, .trust_staff nav.nav a:nth-child(3):hover {
    color: #F56040;
}
ul.row.port_grid.team_grid nav a:nth-child(4):hover, .trust_staff nav.nav a:nth-child(4):hover {
    color: #007bb5;
}
ul.row.port_grid.team_grid nav, .trust_staff nav.nav {
    padding: 0 15px;
    width: auto;
    margin: 0 auto;
    display: inline-block;
}
.set_info.upload_section div.form-group .input-group-prepend {
    width: 64px;
    padding: 0px 4px;
    background: #ccc;
}
.row.cust_mob_num .input-group-prepend select {
    width: 100% !important;
    border: 0;
    padding: 0;
    background: none;
}
.trust_staff p {
    margin: 0;
}
.row.cust_mob_num input.form-control {
    /*    background: #fff;*/
    border: 1px solid #eae9e9;
}
.set_info.upload_section div.form-group .row.cust_mob_num .input-group-prepend {
    width: 66px;
    padding: 0px 6px;
    background: #EFEFEF;
}
.row.cust_mob_num .input-group-prepend select:focus {
    border: 0 none !important;
    outline: none;
}
div#invite_form_contents button.btn.sms_add {
    background: #48A717 !important;
    color: #fff !important;
}
.inv_bg.sms_cont {
    width: 100%;
    float: left;
}
.send_sms ul li {
    background: #EFEFEF;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 27px;
    position: relative;
}
.send_sms {
    width: 100%;
    float: left;
    padding: 0 30px;
    margin-top: 20px;
}
.send_sms > div {
    border-top: 1px solid #e0dddd;
    padding-top: 30px;
}
.send_sms h4 {
    font-size: 20px;
    color: #949292;
    margin-bottom: 25px;
}
.mob_img img {
    width: 100%;
}
.mob_img {
    width: 100%;
}
.mob_img select {
    background: #EFEFEF;
    font-size: 18px;
    margin-bottom: 28px;
}
.blue_text {
    background: #1091D5;
    padding: 25px 15px;
    width: 70%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 250px;
    color: #fff;
    border-radius: 6px;
}
.blue_text h4 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding-bottom: 9px;
}
.blue_text p {
    margin: 0;
}
.sms_button {
    width: 100%;
    float: left;
    text-align: center;
    padding: 40px 0 50px;
}
.sms_button a {
    padding: 10px 0px;
    background: #ccc;
    display: inline-block;
    margin: 0 14px;
    width: 150px;
    color: #fff;
    font-size: 18px;
}
.sms_button a:first-child {
    background: #48A717;
    color: #fff;
}
.sms_button a {
    background: #F2F2F2;
    color: #333;
    box-shadow: 0px 0px 3px #bdb9b9;
}
.send_sms ul li a i {
    font-family: FontAwesome;
    font-style: normal;
}
.send_sms ul li a {
    position: absolute;
    right: 14px;
    color: #333;
}
ul.nav.flex-column.dash_submenu,ul.nav.flex-column.dash_submenu1,ul.nav.flex-column.dash_submenu2, ul.nav.flex-column.dash_submenu3 {
    display: none;
    padding: 0 !important;
    border: 0 !important;
}
ul.nav.flex-column.dash_submenu li, ul.nav.flex-column.dash_submenu1 li, ul.nav.flex-column.dash_submenu2 li, ul.nav.flex-column.dash_submenu3 li {
    border-left: 0 !important;
    border-right: 0 !important;
    /*    padding-left: 48px !important;*/
}
.port_form .port_used h4 {
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    padding-bottom: 15px;
}
.port_form.team_form .toggle_form {
    width: 100%;
}
.new_dash_menu ul.nav.flex-column li > ul li a {
    padding: 15px 0 15px 74px;
}
li.dash_main ul.nav.flex-column.dash_submenu li, li.dash_main1 ul.nav.flex-column.dash_submenu1 li, li.dash_main2 ul.nav.flex-column.dash_submenu2 li, li.dash_main3 ul.nav.flex-column.dash_submenu3 li {
    /*    padding-left: 15px;*/
    /*    border-top: 1px solid#ccc;*/
    border-bottom: 0;
}
li.dash_main ul.nav.flex-column.dash_submenu, li.dash_main1 ul.nav.flex-column.dash_submenu1, li.dash_main2 ul.nav.flex-column.dash_submenu2, li.dash_main3 ul.nav.flex-column.dash_submenu3 {
    /*    margin-top: 17px;*/
}
li.dash_main ul.nav.flex-column.dash_submenu li:last-child, li.dash_main1 ul.nav.flex-column.dash_submenu1 li:last-child, li.dash_main2 ul.nav.flex-column.dash_submenu2 li:last-child, li.dash_main3 ul.nav.flex-column.dash_submenu3 li:last-child {
    padding-bottom: 0;
}
.port_used label#customRadio-error {
    color: red;
    margin: auto;
    width: 100%;
    float: left;
    padding-bottom: 10px;
    padding-left: 14px;
    font-size: 16px !important;
}
form#portfolio_image_form .port_used {
    padding-bottom: 20px;
}
form#portfolio_image_form {
    padding: 0 20px;
}
.port_form.team_form .log_upload label span {
    display: block;
    font-size: 15px;
    padding-top: 11px;
    font-weight: normal;
}
.port_form.team_form .log_upload label input {
    border: 0;
    width: 124px;
}
.comp_scroller {
    width: 100%;
    float: left;
    position: relative;
    min-height: 100px;
}
.comp_scroller .jq-scroller-wrapper {
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
}
.comp_scroller .jq-scroller {
    box-shadow: none;
    border: 0;
    max-width: 100%;
    height: auto;
}
.comp_scroller .jq-scroller .jq-scroller-item {
    min-width: 80px;
    height: 60px;
}
.comp_scroller .jq-scroller a.jq-scroller-preview {
    border: 0 none;
}
.comp_scroller .jq-scroller-wrapper > i {
    font-size: 20px;
}
.comp_scroller .jq-overlay-content img {
    width: auto;
    border-radius: 0;
    border: 0;
}
.comp_scroller .jq-overlay-content p {
    display: none;
}
.comp_scroller .jq-scroller-wrapper > i {
    font-size: 20px;
}
.comp_scroller .jq-overlay-item .fa-chevron-left:before {
    content: "\f053";
    top: 11px;
    position: relative;
    left: -5px;
}
.comp_scroller .jq-overlay-item .fa-chevron-right:before {
    content: "\f054";
    position: relative;
    top: 11px;
    right: -5px;
}
.comp_scroller .jq-overlay-item i {
    font-size: 20px;
}
.comp_scroller .jq-scroller-caption {
    display: none;
}
.comp_scroller i.jq-overlay-close.fa.fa-times-circle {
    font-size: 34px;
    z-index: 999;
}
.comp_scroller .jq-scroller-overlay.active {
    z-index: 999;
}
.row.cust_mob_num .iti.iti--allow-dropdown {
    width: 100%;
}
.row.cust_mob_num .iti__selected-flag:focus {
    border: 0 none;
    outline: none;
}
.dash_awards_new {
    background: #fff;
    padding: 25px 20px;
    box-shadow: 0px 0px 5px #ccc;
    width: 100%;
    float: left;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 6px;
    border: 0;
}
.dash_awards_new ul li {
    float: left;
}

.dash_awards_new ul li img {
    width: 100%;
}


/*.comp_scroller .jq-scroller .jq-scroller-preview {
    height: 34%;
}*/
.comp_table {
    padding-top: 20px;
}
.home_tru_img img {
    width: 100%;
}
.home_tru_img {
    width: 100%;
}
.home_tru_research p {
    font-size: 20px;
    width: 100%;
    line-height: 38px;
    padding-top: 8px;
}
.home_res {
    padding-top: 15px;
    padding-bottom: 115px;
}
.home_tru_research {
    padding-top: 12px;
}
.home_tru_research h3 {
    font-weight: bold;
    font-size: 42px;
}
.congs {
    text-align: center;
}
.congs label i {
    font-size: 80px;
    color: #008000;
}
.user_social.cong_icons p {
    font-weight: normal;
}
.congs p {
    font-size: 17px;
}
.bg_color_1.cong_bg {
    background: #CACACA;
}
.congs_cont {
    background: #fff;
    padding: 50px 0;
}
.blu_bg {
    background: #5375E2;
    padding: 60px 0;
    width: 100%;
    float: left;
}
.blu_slid {
    width: 100%;
    text-align: center;
}
.blu_slid img {
    width: 70%;
}
.elem_school h2 {
    font-size: 46px;
}
.elem_school p, .elem_school label {
    font-size: 28px;
    margin-bottom: 0;
    margin-top: 15px;
    width: 100%;
    font-weight: normal;
    color: #222;
}
.elem_school button {
    padding: 11px 65px;
    font-size: 28px;
    margin-top: 30px;
    color: #fff;
    background: #5375E2;
    border-radius: 7px;
}
.elem_school .simple-rating.star-rating.home_rate i {
    margin-right: 30px !important;
    display: inline-block;
}
.elem_school .simple-rating.star-rating.home_rate {
    width: auto;
    float: left;
    padding-bottom: 12px;
    padding-top: 10px;
}
.school_smile {
    display: table;
    margin: 0 auto;
}
.school_smile .simple-rating.star-rating.home_rate i {
    font-size: 35px;
    margin-right: 10px !important;
}
.school_smile > span {
    float: left;
    background: #008000;
    padding: 5px 16px;
    border-radius: 4px;
    margin-top: 14px;
    font-size: 16px;
    color: #fff;
    position: relative;
    top: 3px;
    left: 8px;
    z-index: 999;
}
.white_bg {
    width: 100%;
    float: left;
    padding: 50px 0;
}
.school_info p {
    font-size: 19px;
    line-height: 34px;
}
.school_info ul li {
    font-size: 19px;
    margin-bottom: 22px;
}
.school_info ul li img {
    margin-right: 20px;
}
.blu_slid.info_slid img {
    width: 83%;
}
.school_tab {
    margin: 0 auto;
    padding-bottom: 40px;
    overflow: hidden;
    padding-top: 20px;
}
.school_tab ul li {
    float: left;
    font-size: 23px;
    margin-right: 40px;
}
.school_tab ul li a {
    color: #000;
}
.school_tab ul li a.active {
    color: #5375E2;
    border-bottom: 3px solid #5375E2;
}
.school_banner, .school_banner > img {
    width: 100%;
}
.school_banner {
    margin-top: 101px;
    position: relative;
}
.school_logo {
    position: absolute;
    bottom: -111px;
    left: 0;
    background: #fff;
    padding: 6px;
    border-radius: 100%;
    z-index: 999;
    right: 0;
    margin: auto;
    max-width: 220px;
    box-shadow: 0px 0px 5px #888787;
}
.school_logo img {
    width: 100%;
    border-radius: 100%;
}
.school_banner > img {
    height: 400px;
}
.school_programs ul li {
    padding-bottom: 12px;
    font-size: 16px;
    color: #000;
}
.school_programs ul {
    margin: 0;
}
.school_programs .media img {
    width: 35px;
}
.school_programs h6 {
    padding-bottom: 8px;
}
.school_programs ul li span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: green;
    border-radius: 100%;
    margin-right: 10px;
}
h2.prog_head {
    font-size: 44px;
    padding-bottom: 40px;
}
.grey_bg {
    width: 100%;
    float: left;
    background: #E2E2E2;
    padding: 40px 0 20px;
}
.trust_staff img {
    width: 100%;
}
.trust_staff {
    width: 100%;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 5px #dadada;
}
.staff_slid .bx-wrapper {
    background: no-repeat;
    border: 0;
    box-shadow: none;
}
.trust_staff nav.nav a {
    color: #aaa;
    font-size: 25px;
}
.trust_staff h4 {
    padding-top: 13px;
    margin-bottom: 4px;
}
.trust_staff p {
    font-size: 19px;
    padding-bottom: 10px;
}
.staff_slid .bx-controls.bx-has-controls-direction.bx-has-pager .bx-pager.bx-default-pager {
    display: none;
}
.school_gal img {
    width: 100%;
    margin-bottom: 30px;
}
.school_gal > div {
    margin-bottom: 30px;
}
.school_fac {
    text-align: center;
}
.school_fac label {
    background: #fff;
    padding: 22px;
    border-radius: 100%;
}
.school_fac div p {
    font-size: 24px;
    color: #fff;
    padding-top: 10px;
}
.school_fac > div {
    padding-bottom: 15px;
}
.blu_bg h2.prog_head {
    color: #fff;
    margin-bottom: 26px;
}
.review_section {
    display: table;
    width: 100%;
    border-radius: 3px;
    background: #fff;
    margin-bottom: 20px;
}
.rev_head {
    padding: 7px 15px;
    width: 100%;
    overflow: hidden;
}
div#home .rev_head {
    overflow: inherit;
}
.rev_body {
    padding: 0px 25px 11px 98px;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: -16px;
    float: left;
}
.blu_bg .simple-rating.star-rating {
    text-align: left;
    font-size: 47px;
    float: right;
    margin-right: 26px;
    position: relative;
    top: -8px;
}
.blu_bg .revw_column label a {
    color: #333;
    font-size: 28px;
}
.rev_body p {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 31px;
    text-align: justify;
    color: #222;
    letter-spacing: 0.2px;
    word-spacing: -0.6px;
}
.rev_body h3 {
    color: #272727;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-weight: bold;
}
.rev_head img {
    width: 70px;
    height: auto;
    margin-right: 11px;
    border-radius: 100%;
}
.rev_body h3 a {
    color: #1975b6;
    font-weight: normal;
    font-size: 18px;
    text-transform: capitalize;
}
.trust_reviews .simple-rating.star-rating i {
    color: #333;
    font-size: 29px;
    border-radius: 3px;
    margin: 0 -2px 0px 0;
}
.trust_reviews .dash_ratings .simple-rating.star-rating i {
    margin: 0 5px 0 0;
}
.rev_icons {
    width: 100%;
    /*     overflow: hidden; */
    padding:0 10px;
}
.rev_head p {
    margin: 0;
}
.rev_icons ul.nav {
    float: right;
}
.rev_icons ul.nav a {
    margin: 0 9px 6px;
    font-size: 21px;
    color: #333;
}
.rev_icons ul.nav button {
    color:#1975b6;
}
.rev_head p span {
    float: right;
    position: relative;
    top: 4px;
    color: #f5b50a;
    font-size: 22px;
}
ul.nav.ful_lef_icons {
    float: left;
}
ul.nav.ful_lef_icons a {
    background: none;
    font-size: 15px;
    margin: 0;
    border-radius: 100%;
    padding: 5px 9px;
    color: #272727;
    border: 0;
}
ul.nav.ful_lef_icons li:first-child {
    padding: 0;
}
ul.nav.ful_lef_icons li a {
    color: #fff;
    border-radius: 3px;
}
ul.nav.ful_lef_icons li a i.fa.fa-trash:before {
    content: "\f1f8" !important;
}
.school_banner > img {
    max-height: 350px;
}
.elem_school {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 71px;
}
.school_programs .card-header a {
    font-size: 21px;
    color: #333;
}
.school_programs > div {
    padding: 0 14px;
}
.school_programs .card-header {
    background: none;
    border-bottom: 1px solid #3a3838;
    padding-left: 0;
}
.school_programs {
    padding: 0 10px;
}
.school_programs .card-header a i {
    float: right;
}
.staff_slid .bx-wrapper .bx-next, .staff_slid .bx-wrapper .bx-next:hover, .staff_slid .bx-wrapper .bx-next:focus {
    right: 10px;
    background: url(../../images/controls.png) no-repeat -43px -32px;
}
.staff_slid .bx-wrapper .bx-prev, .staff_slid .bx-wrapper .bx-prev:hover, .staff_slid .bx-wrapper .bx-prev:focus {
    left: 10px;
    background: url(../../images/controls.png) no-repeat 0 -32px;
}
.school_gal {
    max-height: 450px;
}
.trustrev_scroll {
    max-height: 600px;
}
.school_light img {
    width: 100%;
}
.school_light {
    width: 100%;
}
.school_light button.close, .school_light button.close:hover,.school_light button.close:focus {
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0,0,0, 0.8) !important;
    font-size: 32px;
    padding: 2px 10px;
    color: #fff !important;
    border: 0;
    text-shadow: none;
    outline: none;
}
.dash_faci img {
    width: 35px;
}
.dash_faci label.custom-control-label {
    padding-top: 0;
    margin: 0 8px;
    font-size: 20px;
    font-weight: normal;
    color: #111;
}
.staff_table {
    background: #fff;
    width: 100%;
    padding: 20px;
}
.staff_table tr, .dash_gallery tr {
    background: #F4F4F4;
    border: 1px solid #ccc;
    margin-bottom: 15px !important;
    border-radius: 4px;
}
.staff_table tr td, .dash_gallery tr td {
    font-size: 17px;
}
.staff_table tr td a, .dash_gallery tr td a {
    color: #333;
}
.dash_gallery {
    width: 100%;
}
form#staff_details_form .comp_info, form#gallery_details_form .comp_info {
    margin-bottom: 0;
}
.dash_gallery {
    width: 100%;
    background: #fff;
    padding: 15px;
}
.dash_gallery tr td {
    vertical-align: middle;
    text-align: center;
    padding:10px;
}
.staff_slid .trust_staff img {
    max-height: 300px;
}

/**** School 2 ****/
.school_banner.banner2 > img {
    max-height: 700px;
    width: 100%;
    height: auto;
}
.school2_info {
    width: 440px;
    background: #fff;
    position: absolute;
    bottom: -80px;
    left: 70px;
    border-radius: 10px;
    box-shadow: 0px 0px 4px #a5a1a1;
    padding-bottom: 38px;
    z-index: 999;
}
.school_log {
    width: 27%;
    position: absolute;
    top: -62px;
    left: 0;
    right: 0;
    margin: auto;
}
.school_log img {
    width: 100%;
}
.school2_info .elem_school h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}
.school2_info .school_smile .simple-rating.star-rating.home_rate i {
    font-size: 28px;
    margin-right: 6px !important;
}
.school2_info .school_smile > span {
    font-size: 13px;
}
.school2_info .elem_school label {
    font-size: 22px;
    margin: 0;
}
.school2_info .elem_school p {
    font-size: 20px;
    padding: 0 10px;
}
.school2_info .elem_school button {
    font-size: 23px;
    padding: 10px 40px;
    background: #7B3C9F;
    letter-spacing: 0.3px;
}
.school2_info .elem_school button:focus, .school2_info .elem_school button:visited {
    outline: none;
    box-shadow: none;
}
.school2_info .school_log {
    box-shadow: 0px 0px 4px #ccc;
    border-radius: 100%;
}
.school2_info .elem_school {
    padding-top: 80px;
}
.white_bg.school_tab2 {
    margin-top: 70px;
}
.white_bg.school_tab2 .school_tab ul li a {
    color: #716f6f;
    padding: 10px 40px;
}
.white_bg.school_tab2 .school_tab ul li {
    margin-right: 0;
}
.white_bg.school_tab2 .school_tab ul li a.active, .white_bg.school_tab2 .school_tab ul li a:hover {
    color: #fff;
    border: 0;
    background: #7B3C9F;
    border-radius: 33px;
}
.white_bg.school_tab2 p.promap_loc img {
    width: 28px;
    margin-right: 20px;
}
.white_bg.school_tab2 p.promap_loc, .white_bg.school_tab2 p.promap_loc a {
    font-size: 20px;
    color: #000;
}
.white_bg.school_tab2 .loc_icons {
    padding-top: 20px;
}
.white_bg.school_tab2 p.promap_loc {
    padding-bottom: 10px;
}
.white_bg.school2_review h2.prog_head, .white_bg.school2_program h2.prog_head, .white_bg.school2_faci h2.prog_head, .white_bg.school2_gallery h2.prog_head  {
    text-align: center;
    font-size: 56px;
    font-weight: bold;
    width: 100%;
}
.white_bg.school2_review .revw_column label a {
    font-size: 24px;
}
.white_bg.school2_review .rev_body h3 a {
    color: #7B3C9F;
    font-weight: bold;
    display: inline-block;
    float: left;
}
.white_bg.school2_review .review_section.review_pagination {
    border-bottom: 1px solid #e8e7e7;
}
.white_bg.school2_review .review_section.review_pagination .simple-rating.star-rating {
    float: right;
    padding-top: 18px;
}
.white_bg.school2_review .review_section.review_pagination .simple-rating.star-rating i {
    font-size: 27px;
    margin-right: 4px;
    float: left;
}
.white_bg.school2_review .rev_body h3 {
    float: left;
    width: 100%;
}
.white_bg.school2_review .rev_body h3 span {
    float: right;
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
}
.white_bg.school2_review .rev_body {
    padding: 0px 6px 11px 98px;
}
.white_bg.school2_review  li.likes_but button, .white_bg.def_bg .rev_icons li.likes_but button {
    font-size: 16px;
    border: 1px solid #ccc ;
    border-radius: 63px;
    text-align: center;
    padding: 4px 6px ;
    min-width: 97px ;
    color: #333;
}
.white_bg.school2_review button.share_btns, .white_bg.def_bg .rev_icons button.share_btns {
    border: 1px solid #ccc;
    border-radius: 28px;
    padding: 2px 18px 5px;
    font-size: 16px;
    cursor: pointer;
    color: #000;
}
.white_bg.school2_review li button, .white_bg.def_bg .rev_icons li button {
    background: #fff;
}

.white_bg.school2_review button.share_btns img, .white_bg.def_bg .rev_icons button.share_btns img  {
    width: 12px;
    margin-right: 6px;
    position: relative;
    top: -1px;
}
.white_bg.school2_review img.wh_icon, .white_bg.theme3_review img.wh_icon, .white_bg.def_bg .rev_icons img.wh_icon {
    display: none;
}
.white_bg.school2_review button.share_btns:hover .bl_icon, .white_bg.theme3_review button.share_btns:hover .bl_icon, .white_bg.def_bg .rev_icons button.share_btns:hover .bl_icon  {
    display: none;
}
.white_bg.school2_review button.share_btns:hover .wh_icon,  .white_bg.theme3_review button.share_btns:hover .wh_icon, .white_bg.def_bg .rev_icons button.share_btns:hover .wh_icon  {
    display: inherit;
}
.white_bg.school2_review button.share_btns:hover {
    background: #7B3C9F ;
    color: #fff ;
    border-color: #7B3C9F ;
}
.white_bg.def_bg .rev_icons button.share_btns:hover {
    background: #5db634 ;
    color: #fff ;
    border-color: #5db634 ;
}
.dashboard_content .card-deck.new_card div.card:last-child {
    margin-right: 0;
}
.dashboard_content .card-deck.new_card div.card {
    margin-left: 0;
}
.white_bg.school2_review .rev_icons {
    width: 100%;
    float: left;
    padding-bottom: 20px;
}
.white_bg.school2_review .rev_icons ul.nav li.likes_but, .white_bg.rest_review .rev_icons ul.nav li.likes_but {
    margin-right: 14px;
}
.white_bg.school2_review ul.nav.hover_links, .white_bg.rest_review ul.nav.hover_links {
    position: absolute;
    bottom: 30px;
    left: -8px;
    display: none;
    text-align: center;
    width: 122px;
    text-align: center;
    padding: 4px 4px 16px;
    border-radius: 3px;
}
.white_bg.school2_review ul.nav.hover_links li, .white_bg.rest_review ul.nav.hover_links li  {
    float: left;
    padding: 0px 0 0 0;
    z-index: 999;
    margin: 0;
}
.white_bg.school2_review li.share_com, .white_bg.rest_review li.share_com {
    position: relative;
}
.white_bg.school2_review ul.nav.hover_links li:first-child a, .white_bg.rest_review ul.nav.hover_links li:first-child a {
    background: #fff;
    color: #3b5998;
    margin-right: 6px;
    box-shadow: 0px 0px 3px #bbb;
    border-radius: 7px;
}
.white_bg.school2_review ul.nav.hover_links li:nth-child(2) a, .white_bg.rest_review ul.nav.hover_links li:nth-child(2) a {
    background: #fff;
    color: #55acee;
    box-shadow: 0px 0px 3px #bbb;
    border-radius: 7px;
}
.white_bg.school2_program a.nav-link, .white_bg.rest_review a.nav-link {
    font-size: 20px;
}
.white_bg.school2_program a.nav-link img, .white_bg.rest_review a.nav-link img {
    width: 33px;
    margin-right: 20px;
}
.white_bg.school2_program a.nav-link, .white_bg.rest_review a.nav-link {
    font-size: 20px;
    border-bottom: 1px solid #e8e7e7;
    border-radius: 0;
    padding: 22px 0px 22px 21px;
}
.white_bg.school2_program a.nav-link.active, .white_bg.rest_review a.nav-link:hover {
    color: #7B3C9F;
    border: 2px solid #7B3C9F;
    border-radius: 5px;
}
.white_bg.school2_program a.nav-link:hover {
    color: #7B3C9F;
}
.white_bg.school2_program .school_programs {
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.white_bg.school2_program .school_programs ul li {
    font-size: 20px;
    line-height: 40px;
}
.white_bg.school2_program .school_programs ul li span {
    background: #7B3C9F;
    width: 9px;
    height: 9px;
}
.white_bg.school2_program .tab-pane.fade.show.active {
    border: 2px solid #7B3C9F;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}
.purple_bg .staff_slid .trust_staff img {
    max-height: 280px;
}
.purple_bg {
    background: #E4D7EB;
    width: 100%;
    float: left;
    padding: 40px 0 20px;
}
.school2_staff h2.prog_head {
    font-size: 48px;
    font-weight: bold;
}
.school2_staff {
    padding-top: 60px;
}
.white_bg.school2_faci .school_fac label {
    background: #E4D7EB;
}
.white_bg.school2_faci .school_fac div p {
    color: #333;
}
.white_bg.school2_faci .school_fac label img {
    width: 50px;
}
.gal_img {
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
}
.gal_img img {
    margin: 0;
    width: 100%;
}

/******* schoo theme 3 ********/
div.theme3_page {
    font-family: roboto_slab;
}
.school_banner.theme3_bg {
    width: 100%;
    height: 650px;
    background: url("../../images/school/theme3_bg.png");
    background-size: cover;
}
.theme3_about h2 {
    color: #ffff;
    font-size: 50px;
    line-height: 60px;
}
.top3_info .school_logo {
    position: unset;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: url(../img/curve_bg.png);
    padding-bottom: 20px;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 8px;
    padding-top: 17px;
    box-shadow: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 19%;
}
.top3_info .school_logo img {
    max-width: 150px;
    width: 150px;
    padding: 7px;
    background: #fff;
}
.top3_info {
    width: 100%;
    float: left;
    background: #fff;
}
.top3_info .elem_school {
    padding-top: 5px;
}
.theme3_about p {
    font-size: 21px;
    color: #fff;
    padding: 30px 0;
    line-height: 36px;
    letter-spacing: 0.3px;
}
.logo_conts {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: relative;
}
.logo_conts .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 40px;
}
.theme3_about button {
    background: #FFB606;
    padding: 10px 52px;
    font-size: 24px;
    font-weight: bold;
}
.top3_info .school_smile .simple-rating.star-rating.home_rate i {
    font-size: 30px;
    margin-right: 10px !important;
}
.top3_info .school_smile > span {
    padding: 3px 17px;
}
.top3_info label {
    font-size: 22px;
    margin-top: 6px;
    margin-bottom: 13px;
    color: #555;
}
.top3_info .school_info ul li img {
    float: left;
    width: 26px;
    margin-right: 50px;
}
.top3_info .school_info ul li {
    font-size: 22px;
    margin-bottom: 22px;
    text-align: justify;
    padding-left: 50px;
    line-height: 38px;
}
.top3_info .school_smile .simple-rating.star-rating.home_rate i.far {
    color: grey !important;
}
.white_bg.theme3_review .school_tab ul li a.active {
    background: #FFB606;
    padding: 10px 30px;
    color: #000;
    border: 0 none;
}
.white_bg.theme3_review .school_tab ul li a {
    font-weight: bold;
}
.white_bg.theme3_review h2.prog_head, .white_bg.theme3_program h2.prog_head, .grey_bg.theme3_staff h2.prog_head, .white_bg.theme3_staff h2.prog_head, .white_bg.theme3_faci h2.prog_head {
    position: relative;
    z-index: 999;
    font-weight: bold;
    font-size: 50px;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 3px;
}
.grey_bg.theme3_staff h2.prog_head {
    color: #fff;
    border-bottom: 2px solid #fff;
    margin-bottom: 50px;
}
.white_bg.theme3_review h2.prog_head span, .white_bg.theme3_program h2.prog_head span, .grey_bg.theme3_staff h2.prog_head span, .white_bg.theme3_staff h2.prog_head span,         .white_bg.theme3_faci h2.prog_head span  {
    background: #FFB606;
    display: block;
    position: absolute;
    width: 130px;
    height: 33px;
    top: 2px;
    z-index: -1;
    left: -14px;
}
.white_bg.theme3_review .revw_column label a {
    font-size: 25px;
    color: #000;
    font-weight: bold;
}
.white_bg.theme3_review .rev_body h3 a {
    color:#FFB606;
}
.white_bg.theme3_program .nav.flex-column a.nav-link {
    border-bottom: 1px solid #ccc;
    padding: 20px 0 20px 20px;
}
.white_bg.theme3_program .nav.flex-column a.nav-link img {
    width: 30px;
    margin-right: 30px;
}
.white_bg.theme3_program .nav.flex-column a.nav-link.active {
    background: #000;
    color: #fff;
    border-radius: 5px;
}
.white_bg.theme3_program h2.prog_head {
    margin-bottom: 50px;
}
.white_bg.theme3_program .school_programs {
    border: 1px solid #000;
    padding: 30px;
    border-radius: 10px;
}
.school_programs ul li {
    line-height: 34px;
}
.school_programs ul li span {
    background: #FFB606;
}
.grey_bg.theme3_staff {
    background: url(../../images/school/theme3_bg.png);
    background-size: cover;
    position: relative;
}
.theme3_overlay {
    width: 100%;
    background: rgba(0,0,0,0.7);
    height: 100%;
    position: absolute;
    top: 0;
}
.grey_bg.theme3_staff .trust_staff {
    background: rgba(0,0,0,0.7);
    color: #fff;
    box-shadow: none;
}
.grey_bg.theme3_staff .trust_staff h4 {
    background: #FFB606;
    padding: 5px 0;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    position: relative;
    top: -16px;
}
.theme_list ul li p {
    margin: 0;
    background: #f0f0f0;
    width: 100%;
    font-size: 15px;
    padding: 12px 0;
    font-weight: 500;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.theme_list ul li p input {
    margin-right: 10px;
    position: relative;
    top: 2px;
}
.theme_list ul li label img {
    width: 100%;
}
.theme_list ul li label span {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: none;
    z-index: 999;
}
.theme_list ul li label {
    width: 100%;
    display: block;
    position: relative;
}
.theme_list ul li label span a {
    background: #5db634;
    color: #fff !important;
    padding: 9px 0px;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: 4px;
    display: block;
    width: 190px;
    text-align: center;
    margin: 0 auto 25px;
}
/*ul#portfolio-list {
    overflow: auto !important;
    height: inherit !important;
}*/
.school_tab.theme3_tab ul li {
    margin: 0;
}
a.btn.bt_prev {
    background: #5db634;
    color: #fff !important;
    font-weight: 600;
}
a.btn.bt_sel {
    background: #FF324D;
    color: #fff !important;
    font-weight: 600;
}
.theme_list ul li:hover .prev_span {
    display: block;
    text-align: center;
    padding-top: 92px;
}
#portfolio-list li h3 {
    font-size: 21px;
    padding-top: 10px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    padding-bottom: 20px;
    font-weight: 500;
}
.school_tab.theme3_tab ul li a {
    font-size: 17px;
    color: #8e8b8b;
    padding: 6px 20px;
    margin: 0;
    border-radius: 4px;
}
#portfolio-list li, #portfolio-list li:hover {
    background: none;
    border: 0;
}
.school_tab.theme3_tab ul li a.active, .school_tab.theme3_tab ul li a:hover {
    background: #5db634;
    color: #fff;
    border: 0;
}
.container.margin_tabs.reg_mar.great_social.theme_container h1.welcome_head {
    font-size: 52px;
    padding-bottom: 0;
    font-weight: 500;
    margin-bottom: 10px;
}
.container.margin_tabs.reg_mar.great_social.theme_container button.btn.welsave {
    width: 290px;
    padding: 11px 0;
}
ul#portfolio-filter {
    display: table;
    margin: 0 auto;
}
#portfolio-filter li a:hover, #portfolio-filter li a.current {
    background: #5db634;
    color: #fff;
    border: 0;
}
#portfolio-filter li a {
    padding: 5px 10px;
}
#portfolio-list img {
    display: block !important;
    z-index: 1;
}
ul#portfolio-list {
    height: auto !important;
}
ul#portfolio-list li.isotope-hidden {
    z-index: -1 !important;
    display: none !important;
}
.school_gal.theme3_gal .gal_img {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 30px;
}
.school_gal.theme3_gal .gal_img div {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.7);
    height: 100%;
    padding-top: 100px;
}
.school_gal.theme3_gal .gal_img div {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.84);
    height: 100%;
}
.school_gal.theme3_gal .gal_img div span {
    color: #d2d0d0;
}
.school_gal.theme3_gal {
    margin-top: 40px;
}
.white_bg.theme3_faci .row.school_fac img {
    width: 30px;
    margin-right: 20px;
}
.white_bg.theme3_faci .row.school_fac label {
    font-size: 23px;
    font-weight: normal;
    width: 100%;
    background: #383838;
    border-radius: 0;
    padding: 15px 10px;
    text-align: left;
    margin-bottom: 15px;
}
.white_bg.theme3_faci .row.school_fac img {
    width: 30px;
    margin-right: 20px;
    float: left;
    margin-left: 10px;
}
.white_bg.theme3_faci .row.school_fac label span {
    color: #fff;
    font-weight: normal;
}
.white_bg.theme3_faci .row.school_fac {
    margin-top: 50px;
}
.white_bg.theme3_review .rev_icons ul.nav button {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 22px;
    border-radius: 100px;
    text-align: center;
    margin-left: 13px;
    color: #333;
}
.white_bg.theme3_review .rev_icons ul.nav button.share_btns {
    cursor: pointer;
}
.white_bg.theme3_review .rev_icons ul.nav button.share_btns:hover {
    background: #FFB606;
    color: #fff;
    border-color: #FFB606;
}
.theme3_about {
    width: 100%;
    padding: 50px 50px 0 0;
}
.white_bg.theme3_faci {
    padding-top: 0;
}
.white_bg.theme3_program {
    padding-bottom: 67px;
}

/****** ecommerce theme 1 ********/
.ecom_banner {
    width: 100%;
    margin-top: 100px;
}
.ecom_banner > img {
    width: 100%;
}
.elem_ecom {
    width: 50%;
    position: absolute;
    top: 0;
    background: rgba(0,0,0,0.5);
    height: 100%;
    text-align: center;
    padding-top: 85px;
}
.ecom_logo img {
    width: 130px;
}
.elem_ecom h2 {
    font-size: 40px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
}
.elem_ecom .school_smile i {
    font-size: 25px !important;
}
.elem_ecom p {
    font-size: 16px;
    color: #fff;
    width: 69%;
    margin: 0 auto;
    padding: 32px 0 20px;
    line-height: 29px;
}
.elem_ecom button.btn {
    background: #FF324D;
    color: #fff;
    padding: 11px 0px;
    width: 38%;
    font-size: 20px;
}
.elem_ecom .simple-rating.star-rating.home_rate, .elem_ecom .school_smile > span {
    float: left;
    margin-top: 0;
}
.elem_ecom .simple-rating.star-rating.home_rate i {
    color: #ccc !important;
}
.elem_ecom .school_smile > span {
    padding: 3px 10px;
    font-size: 15px;
}
.white_bg.ecom_tab .school_tab ul li {
    margin: 0 20px 0 0;
}
.white_bg.ecom_tab .school_tab ul li a {
    font-weight: 500;
    color: #868585;
    padding: 10px 30px;
}
.white_bg.ecom_tab .school_tab ul li a.active, .white_bg.ecom_tab .school_tab ul li a:hover {
    background: #FF324D;
    color: #fff;
    border: 0;
}
.white_bg.ecom_tab .school_info {
    box-shadow: 0px 0px 5px #ccc;
    padding: 40px 40px 16px;
}
.white_bg.ecom_tab .school_info ul.row {
    margin: 0;
}
.white_bg.ecom_tab .school_info ul li img {
    background: #eae8e8;
    padding: 16px 15px;
    width: 60px;
}
.white_bg.ecom_tab .school_info ul li {
    font-size: 19px;
    margin-bottom: 28px;
    margin-top: 14px;
}
.white_bg.theme3_review.ecom1_review h2.prog_head, .white_bg.ecom1_product h2.prog_head, .white_bg.ecom1_offers h2.prog_head {
    text-align: center;
    font-size: 54px;
    font-weight: bold;
    border: 0;
    width: 100%;
    margin-bottom: 30px;
}
.white_bg.theme3_review.ecom1_review .simple-rating.star-rating {
    text-align: left;
    font-size: 47px;
    float: right;
    margin-right: 11px;
}
.white_bg.theme3_review.ecom1_review h3 a {
    color: #FF324D;
    font-weight: bold;
}
.white_bg.theme3_review.ecom1_review h3 span, .white_bg.rest_review h3 span {
    font-weight: normal;
    font-size: 14px;
    float: right;
    margin-top: 7px;
}
.white_bg.theme3_review.ecom1_review {
    padding-top: 20px;
}
.white_bg.theme3_review.ecom1_review .rev_icons ul.nav button, .white_bg.rest_review .rev_icons ul.nav button {
    padding: 5px 22px;
}
.white_bg.theme3_review.ecom1_review .rev_icons ul.nav button:hover {
    background: #FF324D;
    border-color: #FF324D;
}
.white_bg.ecom1_product .nav.flex-column.nav-pills {
    box-shadow: 0px 0px 6px #ccc;
    padding: 10px 15px;
}
.white_bg.ecom1_product .nav.flex-column.nav-pills a {
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}
.white_bg.ecom1_product .nav.flex-column.nav-pills a i.fa.fa-chevron-right {
    display: inline-block;
}
.white_bg.ecom1_product .nav.flex-column.nav-pills a:last-child {
    border-bottom: 0;
}
.white_bg.ecom1_product .nav.flex-column.nav-pills a:hover, .white_bg.ecom1_product .nav.flex-column.nav-pills a.active {
    color: #FF324D;
}
.white_bg.ecom1_product .school_programs ul li {
    font-size: 19px;
    line-height: 35px;
}
.white_bg.ecom1_product .school_programs ul li span {
    background: #FF324D;
}
.white_bg.ecom1_product .school_programs {
    box-shadow: 0px 0px 4px #ccc;
    padding: 16px 20px 8px 40px;
    max-height: 461px;
    overflow-y: auto;
}
.white_bg.ecom1_product {
    padding-top: 0;
}
body.bg_color_1.school_temp2 header.header.mm-slideout {
    background: #fff;
}
.theme_select {
    text-align: center;
}
.theme_select {
    text-align: center;
    margin-top: 34px;
    margin-bottom: 60px;
}
.theme_select h3 {
    padding: 0px 0 30px;
}
.theme_select p {
    font-size: 20px;
    margin-top: 24px;
}
.theme_select a, .theme_select a button {
    display: block;
    width: 100%;
    border: 0;
}
.theme_select a button, .theme_select a button:hover {
    background: #37a000;
    border: 0;
    padding: 10px 0;
}
.theme_img {
    box-shadow: 0px 0px 8px #b0acac;
}
.theme_img, .theme_img img {
    width: 100%;
}
a.view_off {
    background: #FF324D;
    color: #fff;
    text-align: center;
    width: 135px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    line-height: 40px;
    display: none;
}
.bxslider.view_offer > div:hover a.view_off {
    display: block;
}
.code_gen div img {
    width: 100%;
}
.code_gen div img {
    width: 100%;
    margin-bottom: 20px;
}
.code_gen > div {
    padding-top: 15px;
}
.code_gen p {
    font-size: 16px;
}
.qr_box1 button,.qr_box2 button, .qr_box3 button, .qr_box4 button {
    width: 100%;
    background: #ccc;
    border: 0;
    border-radius: 0;
    padding: 11px 0;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}
.qr_box1, .qr_box2,.qr_box3, .qr_box4 {
    border: 1px solid #ccc;
    float: left;
    width: 100%;
    margin: 10px 0;
}
.frame_preview, .frame_preview iframe {
    width: 100%;
    float: left;
}
.frame_preview iframe {
    left: 0;
    width: 100%;
    height: auto;
    min-height: 500px;
}
/********** Restaurant ***********/
.school2_info.rest_info {
    position: unset;
    width: 84%;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    padding: 90px 0;
}
.rest_img {
    width: 100%;
}
.rest_img img {
    width: 90%;
}
.school_banner.rest_banner {
    background: url(../../images/restaurant/banner.png) top center no-repeat fixed;
}
.school2_info.rest_info .elem_school {
    text-align: left;
    color: #fff;
    padding-top: 14px;
}
.school2_info.rest_info .elem_school p {
    color: #fff;
    margin-bottom: 23px;
}
.school2_info.rest_info h2 {
    color: #F8BF64;
    font-size: 52px;
    letter-spacing: 2px;
}
.school2_info.rest_info .elem_school a button {
    background: #F8BF64;
}
.school2_info.rest_info .school_smile {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 50px;
}
.white_bg.school_tab2.rest1 ul li a.active, .white_bg.school_tab2.rest1 ul li a:hover {
    background: #F8BF64;
    border-radius: 0;
}
.white_bg.school_tab2.rest1 {
    margin-top: 0;
}
.white_bg.school_tab2.rest1 .loc_icons {
    position: absolute;
    background: #EFEFEF;
    width: 469px;
    top: 68px;
    right: -232px;
    padding-left: 50px;
    padding-top: 39px;
}
.white_bg.school_tab2.rest1 .school_tab {
    padding-bottom: 50px;
}
.white_bg.rest_serv .school_fac label img {
    width: 100px;
}
.white_bg.rest_serv .school_fac p {
    color: #333;
    font-weight: 500;
}
.white_bg.rest_menu {
    background: #F8BF64;
}
.row.food_menu button.btn.btn-link {
    font-size: 22px;
    color: #0e277e;
    font-weight: bold;
    text-decoration: none;
}
.row.food_menu div#accordion {
    background: none;
}
.row.food_menu div#accordion ul li {
    font-size: 18px;
}
.row.food_menu .school_programs ul li span {
    background: #0e277e;
    padding: 5px;
}
.white_bg.rest_review .trust_reviews {
    width: 100%;
}
.white_bg.rest_review .revw_column label a {
    font-size: 24px;
}
.white_bg.rest_review .rev_body h3 a {
    color: #F8BF64;
    font-weight: 600;
    font-size: 22px;
}
.white_bg.rest_review .rev_icons ul.nav li button {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    border-radius: 100px;
}
.white_bg.rest_review img.wh_icon {
    display: none;
}
.white_bg.rest_review .rev_icons ul.nav button:hover {
    background: #F8BF64;
    color: #fff;
    border-color: #F8BF64;
}
.rest_smile {
    text-align: right;
    width: 100%;
    float: left;
}
.rest_smile span.simple-rating.star-rating {
    margin-right: 18px;
}
.white_bg.rest_gal .gal_img {
    position: relative;
    padding: 0;
    margin-bottom: 20px;
}
.gal_text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 70%;
    margin: auto;
    bottom: 0;
    height: 200px;
    display: none;
}
.trans_bg {
    width: 100%;
    height: 176px;
    background: transparent;
    border: 12px solid #fff;
}
.gal_text p {
    background: #fff;
    padding: 0px 0 9px;
}
.white_bg.rest_gal .gal_img:hover .gal_text {
    display: block;
}
.gal_img.gal_first .trans_bg {
    height: 250px;
}
/******* Medical Theme ********/
.school_banner.med_info {
    background: url(../../images/medical/mainslider-bg.png) top center no-repeat fixed;
    background-size: cover;
}
.elem_school.med_details img {
    width: 140px;
}
.elem_school.med_details {
    text-align: center !important;
}
.elem_school.med_details h2 {
    font-size: 32px;
    padding-top: 20px;
    color: #00d6a3;
}
.elem_school.med_details .school_smile {
    width: auto;
    margin: 0 auto;
    float: none;
    display: table;
}
.school2_info.rest_info.med_cont {
    padding-top: 40px;
}
.elem_school.med_details label {
    color: #00d6a3;
}
.elem_school.med_details label {
    color: #00d6a3;
    font-size: 20px;
    padding-bottom: 20px;
}
.school2_info.rest_info.med_cont .elem_school.med_details a button {
    padding: 10px 22px;
    border-radius: 0;
    background: none;
    border: 2px solid #fff;
}
.elem_school.med_details > a button {
    background: none;
    margin: 0 8px;
}
.elem_school.med_details a.med_book button {
    background: #00d6a3 !important;
    border: 2px solid #00d6a3 !important;
}
.school2_info.rest_info.med_cont .elem_school.med_details a button:hover {
    background: #fff;
    color: #000;
}
.school2_info.rest_info.med_cont .elem_school.med_details a.med_book button:hover {
    background: #00d6a3;
    color: #fff;
}
.school_info.med_icons p img {
    background: #033b4a;
    width: 63px !important;
    padding: 13px 17px;
}
.school_tab.med_tab {
    width: 100%;
}
.white_bg.school_tab2.rest1 .school_tab.med_tab ul li a.active, .white_bg.school_tab2.rest1 .school_tab.med_tab ul li a:hover {
    background: #033b4a !important;
}
.white_bg.school_tab2.rest1  .school_info.med_icons {
    padding-top: 30px;
    padding-left: 30px;
}
.elem_school.med_details > p {
    width: 88%;
    margin: 0 auto;
}
.school_info.med_icons p.promap_loc {
    padding-bottom: 30px;
}
.white_bg.rest_review.med_review {
    padding-top: 0;
}
.white_bg.rest_review.med_review h2.prog_head, .white_bg.special_grid h2.prog_head, .white_bg.doct_slid h2.prog_head, .white_bg.rest_gal h2.prog_head, .white_bg.rest_faci h2.prog_head {
    text-align: center;
    font-size: 54px;
    font-weight: bold;
    color: #033b4a;
    width: auto;
    margin: 0 auto;
    position: relative;
}
.white_bg.rest_review.med_review h2.prog_head span, .white_bg.special_grid h2.prog_head span, .white_bg.doct_slid h2.prog_head span, .white_bg.rest_gal h2.prog_head span, .white_bg.rest_faci h2.prog_head span {
    background: #e4eaec;
    display: inline-block;
    width: 108px;
    height: 70px;
    position: relative;
    left: 84px;
    top: 15px;
    z-index: -1;
}
.white_bg.rest_review.med_review h2.prog_head label, .white_bg.special_grid h2.prog_head label, .white_bg.doct_slid h2.prog_head label, .white_bg.rest_gal h2.prog_head label, .white_bg.rest_faci h2.prog_head label {
    z-index: 9999;
}
.white_bg.rest_review.med_review .rev_body h3 a {
    color: #033b4a;
}
.white_bg.rest_review.med_review .rev_icons ul.nav button:hover {
    background: #033b4a ;
    border-color: #033b4a ;
}
.white_bg.special_grid div.card-header {
    padding: 0;
    border: 0;
}
.white_bg.special_grid div.card-header button.btn.btn-link {
    width: 100%;
    text-align: left;
    background: #033b4a;
    color: #00d6a3;
    font-weight: normal;
    padding: 13px 0 13px 26px;
    border-radius: 0;
}
.white_bg.special_grid div.card-header button.btn.btn-link.collapsed {
    background: rgba(0,0,0,.03);
    color: #033b4a;
}
.white_bg.special_grid div.card-header button.btn.btn-link span {
    float: right;
    position: relative;
    right: 20px;
    font-weight: lighter;
}
.white_bg.special_grid div.collapse.show {
    border: 1px solid #ccc;
}
.white_bg.special_grid .row.food_menu .school_programs ul li span {
    background: #00d6a3;
}
.staff_slid.doct_slider .trust_staff p {
    font-size: 17px;
    letter-spacing: 0.3px;
    padding: 10px 0 0;
}
.staff_slid.doct_slider .trust_staff h4 {
    margin: 0;
    padding: 6px 0px 13px;
    font-size: 22px;
    color: inherit;
}
.staff_slid.doct_slider .trust_staff {
    padding: 10px;
}
.staff_slid.doct_slider .trust_staff:hover {
    background: #00d6a3;
    color: #fff;
}
.white_bg.rest_gal {
    padding-top: 0;
}
.white_bg.rest_faci label img {
    width: 50px;
}
.white_bg.rest_faci p {
    color: #033b4a;
    font-weight: 600;
}
.white_bg.rest_faci {
    background: #00d6a3;
}
.white_bg.rest_faci label {
    background: none;
    padding: 0 0 10px 0;
}
.white_bg.rest_faci .row.school_fac {
    padding-top: 40px;
}
.white_bg.rest_gal .gal_img.gal_first > img {
    box-shadow: 0px 0px 5px #8b8888;
}
.white_bg.rest_gal .gal_text {
    height: 80%;
    width: 90%;
    top: 0;
    background: rgba(3, 59, 74, 0.8);
    padding-top: 27%;
    font-weight: 500;
}
.white_bg.rest_gal .gal_text p {
    background: none;
    color: #00d6a3;
}
.dash_green {
    background: #5db634;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}
.dash_green span {
    font-size: 20px;
}
.dash_green img {
    width: 20px;
    margin-right: 10px;
}
.card-deck.dash_card .card {
    background: none;
}
.dash_green a {
    color: #fff;
    display: block;
    width: 100%;
    padding: 12px 0;
}
.dash_awards_new ul li:nth-child(3) img {
    position: relative;
    top: 23px;
    width: 107%;
}
.dash_awards_new ul li:nth-child(5) img {
    position: relative;
    top: 31px;
}
.dash_awards_new ul li:nth-child(6) img {
    position: relative;
    top: 31px;
}
.dash_awards_new ul.row {
    margin-bottom: 0;
}
/********* default theme ***********/
section.default_prevs .container {
    max-width: 1400px;
}
.default_details > div {
    background: #fff;
    box-shadow: 0px 0px 6px #767474;
    position: relative;
    top: -256px;
    border-radius: 6px;
    width: 100%;
    display: block;
    float: left;
    padding: 0 20px;
}
.default_details .elem_school img {
    width: 120px;
}
.default_details .elem_school h2 {
    font-size: 37px;
    font-weight: 600;
    padding-top: 22px;
}
.default_details .simple-rating.star-rating.home_rate i {
    font-size: 26px;
    color: #ccc;
    margin: 0 5px 0 0!important;
    padding: 0;
}
.default_details a button img {
    width: 18px !important;
    margin-right: 3px;
}
.default_details .elem_school > a button {
    background: #5db634;
    width: 191px;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
}
.white_bg.def_bg {
    padding-top: 0;
    height: 100%;
    background: #fff;
    margin-top: 40px;
}
.school_tab.def_tab {
    padding-bottom: 5px;
    padding-top: 0;
    background: #EEF3F7;
}
.school_tab.def_tab ul {
    width: 100%;
    border-bottom: 1px solid #ccc;
    float: left;
    padding-bottom: 3px;
}
.default_details .elem_school > a.med_book button {
    margin-right: 11px;
}
.default_details .school_smile {
    margin-bottom: 20px;
    line-height: 19px;
}
.default_details .school_smile > label {
    font-size: 16px;
    float: left;
    width: inherit;
    position: relative;
    top: 12px;
    margin-left: 17px;
    display: inline-block;
}
.default_details .elem_school {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 35px;
}
.def_desc {
    width: 100%;
    display: block;
    padding: 20px 0 13px;
    float: left;
    border-bottom: 1px dashed #ccc;
}
.def_desc h3 {
    font-size: 19px;
    color: #8b8989;
}
.def_desc p {
    font-size: 16px;
    text-align: justify;
    padding-top: 10px;
}
.def_desc p.promap_loc img {
    width: 24px;
    margin-right: 15px;
}
.def_desc p.promap_loc {
    margin: 0 0 12px;
}
.def_desc p.promap_loc, .def_desc a {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
.def_desc p.promap_loc.probus span a {
    font-size: 15px;
    padding: 15px 9px;
    display: inline-block;
    line-height: 1px;
    margin: 0;
}
.trustrev_scroll_def {
    max-height:900px;
}
.def_desc h3 img {
    width: 22px;
    margin-right: 6px;
}
.def_desc > h4 {
    padding-top: 6px;
    padding-left: 35px;
}
.def_desc > div {
    padding-left: 33px;
}
.default_details .def_desc:last-child {
    border: 0;
    padding-bottom: 30px;
}
.def_banner {
    position: relative;
}
.def_banner, .def_banner > img {
    width: 100%;
}
.def_banner > img {
    height: 550px;
}
.def_soc {
    position: absolute;
    right: 100px;
    bottom: 40px;
    text-align: center;
}
.flag_score {
    position: relative;
    left: 0;
    top: 32px;
    width: auto;
    float: left;
    margin-left: -20px;
}
.flag_score span {
    position: absolute;
    display: inline-block;
    left: 4px;
    margin: auto;
    font-size: 19px;
    color: #fff;
    height: 26px;
    top: 10px;
    text-align: center;
    width: 154px;
}
.flag_score > img {
    width: 89%;
}
.def_banner nav a {
    background: rgba(255,255,255,0.5);
    display: inline-block;
    padding: 13px;
    border-radius: 100%;
    margin: 0 15px 0 0;
}
.def_soc > img {
    width: 168px;
    margin-bottom: 76px;
}
.def_banner nav a img {
    width: 25px;
}
.school_tab.def_tab ul li a.active, .school_tab.def_tab ul li a:hover {
    color: #000;
    border-color: #5db634;
    border-bottom: 5px solid #5db634;
}
.school_tab.def_tab ul li a {
    font-size: 22px;
    padding: 0 25px 5px;
}
.school_tab.def_tab ul li {
    margin: 0;
}
.white_bg.def_bg .revw_column label a {
    font-size: 22px;
}
.white_bg.def_bg .review_section {
    margin: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    padding-top: 20px;
}
.staff_table table {
    border-collapse: separate;
    border-spacing: 0 1rem;
    text-align: center;
}
.staff_table table.table.table-borderless td {
    border: 1px solid #ccc;
}
div#invite_form_contents button.btn.sms_add {
    width: 100%;
}
.dash_charts {
    padding-bottom: 20px;
}
.blog_banner, .blog_banner img {
    width: 100%;
}
.side_blog h3 span {
    background: #000;
    font-size: 14px;
    color: #fff;
    padding: 8px 18px;
    letter-spacing: 0.5px;
}
.side_blog h3 span {
    background: #000;
    font-size: 14px;
    color: #fff;
    padding: 8px 13px;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.side_blog > h3 {
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
}
.advt {
    text-align: center;
    width: 100%;
    float: left;
    padding-bottom: 30px;
}
.left_adv {
    padding-left: 30px;
}
.advt p {
    margin: 0;
}
.advt a img {
    width: 100%;
}
.paginate, .paginate ul {
    width: 100%;
    float: left;
}
.paginate li {
    font-size: 20px;
    float: left;
    margin: 0 15px 0 0;
}
.paginate li a {
    border: 1px solid #c0c0c0;
    padding: 7px 14px;
    font-size: 14px;
    color: #787777;
}
.paginate li.active a, .paginate li a:hover {
    background: #5db634;
    border-color: #5db634;
    color: #fff;
}
.blog_banner.bl_views h1 {
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 48px;
    letter-spacing: 0.2px;
    margin-top: 0;
}
.blog_mar {
    margin-top: 101px;
    padding: 0 0;
    background: #F2F2F2;
}
.side_blog h4 a {
    color: #5db634;
    font-size: 20px;
}
.side_blog h2 {
    font-size: 24px;
    font-weight: bolder;
    line-height: 28px;
    padding-top: 16px;
}
.side_blog {
    width: 100%;
    float: left;
}
.side_blog .blog_banner div h3 {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 4px;
}
.side_blog .blog_banner {
    border-bottom: 1px dashed #d5d2d2;
    padding-bottom: 20px;
}
.side_blog .blog_banner div p {
    margin: 0;
}
.side_blog .media img {
    width: 175px;
}
.search_art input {
    background: none;
    border: 0;
    border-bottom: 3px solid #ccc;
    font-size: 24px;
    color: #ccc;
}
.search_art {
    width: 100%;
    float: left;
    padding-top: 48px;
}
.side_blog .media-body {
    padding-left: 20px;
    padding-top: 26px;
}
.search_art input {
    background: none;
    border: 0;
    border-bottom: 3px solid #ccc;
    border-radius: 0;
}
.search_art i {
    position: absolute;
    right: 41px;
    bottom: 44px;
    font-size: 23px;
    color: #b2b1b1;
}
.blog_grid .blog_banner {
    margin-bottom: 30px;
    float: left;
    width: 100%;
    box-shadow: 0px 0px 12px #f6f6f6;
    border-radius: 8px;
}
.rec_blog > a {
    margin: 20px auto 0;
    display: block;
    width: 200px;
    text-align: center;
    background: #5db634;
    color: #fff;
    font-size: 22px;
    padding: 12px 0;
    border-radius: 5px;
    font-weight: 500;
}
.rec_blog h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}
.rec_blog .blog_banner > div p.blog_desc {
    color: #6e6d6d;
}
.container.margin_60.rec_blog {
    padding-left: 0;
    padding-right: 0;
}
.row.blog_grid {
    padding-top: 20px;
}
.row.blog_grid .blog_banner > div {
    padding-bottom: 0;
}
.blog_banner {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.blog_banner > div {
    width: 100%;
    float: left;
    position: relative;
}
.blog_banner > div p a {
    color: #5db634;
    font-size: 13px;
    font-weight: 500;
}
.blog_banner > div h3 {
    margin-top: 10px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 0;
}
.blog_banner > div p.blog_desc {
    font-size: 15px;
    color: #333;
    margin-top: 21px;
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}
/*.blog_banner.bl_views div h3 {
    font-size: 17px;
    margin: 0 auto;
    width: 80%;
    font-weight: 500;
}*/
.blog_banner > div p {
    color: #9f9e9e;
    font-size: 13px;
}
.blog_banner.viewlist > div span {
    position: absolute;
    top: -23px;
    background: #5db634;
    padding: 2px 9px;
    font-size: 12px;
    color: #fff;
}
.blog_banner.bl_views {
    padding-right: 15px;
}
.blog_mar h1 {
    font-size: 52px;
    font-weight: bold;
    margin: 30px 0;
}
p.view_title {
    font-size: 20px;
}
p.view_title a {
    color: #5db634;
}
.row.blog_grid.view_grid h2 {
    width: 100%;
    float: left;
    text-align: center;
    padding-bottom: 24px;
    padding-top: 20px;
}
.blog_banner.bl_views div {
    background: none;
    padding: 0;
}
.blog_use nav a {
    margin: 0 1px;
}
.blog_use {
    width: 100%;
    float: left;
    position: relative;
    padding-bottom: 20px !important;
}
.blog_banner > div p.view_title img {
    width: 21px;
    margin-right: 4px;
}
.blog_use nav a img {
    width: 60px;
}
.blog_banner.bl_views div {
    background: none;
}
.container.blog_mar.view_mar {
    padding-top: 40px;
    background: #fff;
}
.hide_lines p {
    background: #ededf2;
    height: 11px;
    width: 100%;
    margin-bottom: 13px;
}
.hide_lines {
    width: 100%;
    float: left;
    padding-top: 11px;
    padding-bottom: 10px;
}
.hide_lines p:nth-child(3) {
    width: 50%;
}
.blog_use nav a {
    padding: 10px 16px;
    color: #fff;
    font-size: 13px;
    display: inline-block;
}
.blog_use nav a:first-child {
    background: #3b5998;
    margin-left: 0;
}
.blog_use nav a:nth-child(2) {
    background: #00aced;
}
.blog_use nav a:nth-child(3) {
    background: #007bb6;
}
.blog_use nav a:nth-child(4) {
    background: #dd4b39;
}
.blog_use nav a span {
    position: inherit;
    background: none;
}
.blog_use h5 {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    margin: auto;
    width: 340px;
    background: #F2F2F2;
    display: inline-block;
    font-weight: normal;
}
.blog_media {
    width: 100%;
    float: left;
}
.blog_media img {
    width: 150px;
    margin-right: 40px;
}
.blog_media div {
    margin: 0 !important;
    padding: 0 !important;
}
.blog_banner.bl_views .blog_media p {
    font-size: 20px;
    color: #787373;
}
.blog_banner.bl_views div.blog_media {
    margin: 0;
    padding-bottom: 0;
}
.marg_head_block {
    margin-top: 110px;
}
ul.row.dash_points span {
    position: absolute;
    display: block;
    width: 20px;
    left: 0;
    right: 0;
    font-size: 15px;
    margin: auto;
    color: #fff;
}
ul.row.dash_points li {
    position: relative;
}
ul.row.dash_points li:first-child span {
    top: 25px;
}
ul.row.dash_points li:nth-child(2) span {
    top: 53px;
}
ul.row.dash_points li:nth-child(3) span {
    top: 42px;
}
.container-fluid.blog_mar.seo_comp {
    width: 100%;
    float: left;
}
.best_comp {
    background: #fff;
    padding: 25px 15px 15px 15px;
    margin-top: 30px;
    width: 100%;
    float: left;
    box-shadow: 0px 0px 3px #e5e5e5;
    border-radius: 4px;
}
.visit_web {
    border-left: 1px solid #ccc;
    padding-left: 25px;
}
.best_comp p {
    font-size: 20px;
    color: #646161;
    line-height: 36px;
}
.ask_quest {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}
.ask_quest p {
    margin: 0;
}
.ask_quest p span {
    float: right;
    color: #9d9a9a;
    font-size: 16px;
}
.best_comp.topcomp_list .media img {
    width: 90px;
}
.visit_web ul li {
    font-size: 20px;
    padding-bottom: 20px;
}
.visit_web button.btn.btn-primary {
    background: #2d700e !important;
    width: 100%;
    padding: 14px 0;
    border: 0;
}
.visit_web ul {
    margin: 0;
}
.best_comp.topcomp_list:last-child {
    margin-bottom: 30px;
}
.visit_web ul li span {
    font-size: 17px;
    color: #b0afaf;
}
.visit_web ul li span i {
    margin-right: 9px;
}
.visit_web button.btn.btn-primary i {
    font-size: 18px;
    margin-right: 12px;
    position: relative;
    top: 1px;
}
.best_comp.dest_desc {
    padding: 25px 30px 15px;
}
.visit_web ul li span.top_doll i {
    background: #9b9696;
    color: #fff;
    padding: 4px 7px;
    border-radius: 100%;
    font-size: 15px;
}
.topcomp_header .header.menu_fixed {
    background: #fff;
}
.m_top {
    margin-top: 101px;
}
.best_compny h1 {
    font-size: 28px;
    font-weight: normal;
}
.comp_white {
    background: #fff;
    padding: 30px 0 10px;
}
.best_compny h1, .tops_new h1 {
    font-size: 32px;
    font-weight: normal;
    padding-bottom: 12px;
}
.best_compny p {
    font-size: 16px;
    line-height: 29px;
    font-weight: lighter;
    color: #000;
}
.row.tops_list {
    background: #f3f3f3;
    padding: 20px 0;
}
ul.row.complist_grid li {
    background: #fff;
    margin: 0 9px;
    text-align: center;
    min-height: 200px;
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0px 0px 3px #cccaca;
    margin-bottom:20px;
}
ul.row.complist_grid li a {
    display: block;
}
ul.row.complist_grid li a img {
    margin: 20px 0 20px;
}
ul.row.complist_grid li a span {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 11px 0;
    display: inline-block;
    margin-top: 16px;
    color: #333;
}
ul.row.complist_grid {
    padding-top: 20px;
}
.tops_new {
    padding-top: 20px;
    padding-bottom: 12px;
}
.list_grid_comp {
    background: #fff;
    margin: 20px 0;
    padding: 10px 9px 8px;
    border-radius: 4px;
    box-shadow: 0px 0px 1px #b4b1b1;
}
.list_grid_comp .media img {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 3px;
}
.list_grid_comp .media p {
    font-size: 16px;
    font-weight: lighter;
    letter-spacing: 0.3px;
    margin: 0 0 5px;
}
.list_grid_comp .media-body {
    padding-left: 12px;
}
.list_grid_comp .media-body nav {
    float: right;
}
.list_grid_comp .media-body nav a {
    background: #f5f5f5;
    padding: 7px 27px;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #ccc;
    color: #333;
}
.list_grid_comp .media-body nav a i {
    margin-right: 6px;
    color: inherit;
}
.list_grid_comp .media-body nav a:hover {
    background: #5db634;
    color: #fff;
    border-color: #5db634;
}
.list_white {
    background: #fcfcfc;
    padding: 22px 0 22px;
}
.best_compny {
    padding-top: 15px;
    padding-bottom: 10px;
}
.bg_color_1.recent_revs header {
    background: #fff;
}
.invest_text {
    display: none;
    width: 100%;
    float: left;
    margin: 0 !important;
}
form.user_likes.invest_forms {
    width: 100%;
    float: left;
}
form.user_likes.invest_forms .rev_body {
    overflow: inherit;
}
p.invest_text {
    box-shadow: 0px 0px 4px #ccc;
    padding: 20px 36px;
    position: absolute;
    z-index: 999;
    background: #fff;
    width: 92%;
    left: 77px;
    right: 0;
    top: 86px;
    line-height: 29px;
}
p.invest_text a {
    color: #222 !important;
    font-size: 16px;
    letter-spacing: 0.4px;
}
.advertisement img {
    width: 100%;
    position: relative;
    top: -1px;
}
.advertisement {
    width: 100%;
    margin-top: 68px;
    border: 1px solid #e6e2e2;
    padding: 15px;
}
.adv_div {
    width: 100%;
    padding: 15px 15px 0px;
    text-align: justify;
    line-height: 27px;
    border: 1px solid #ccc;
    margin-top: 20px;
}
.advertisement > div {
    background: #f3f1f1;
    padding: 15px 15px 15px 15px;
    margin-bottom: 15px;
    text-align: center;
}
.advertisement > div.small_add {
    padding: 0;
}
.advertisement div h3 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto';
    margin-bottom: 12px;
}
.banner_cont {
    width: 100%;
    float: left;
    padding-left: 62px;
}
.inner_ad img {
    width: 100%;
}
form.top_form {
    width: 100%;
    float: left;
    padding-top: 41px;
    margin-bottom: 50px;
}
.blog_banner.viewlist h3 a {
    color: #333;
}
.blog_banner.viewlist div h3 {
    text-transform: capitalize;
}
.blog_banner.viewlist div p a {
    color: #5db634;
}
.row.bestcomp {
    padding-top: 38px;
    padding-bottom: 25px;
}
.row.bestcomp h1 {
    margin: 0;
    padding-bottom: 35px;
    color: #666363;
    font-size: 44px;
}
.row.bestcomp form {
    margin-top: 10px;
}
.row.bestcomp form select:focus {
    outline: none;
    box-shadow: none;
}
.blogview_lists .blog_banner.viewlist {
    box-shadow: 0px 0px 5px #ccc;
    position: relative;
    border-radius: 6px;
}
.blogview_lists .blog_banner.viewlist > div {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom,transparent, black);
    padding: 28px 20px 0 20px;
    border-radius: 6px;
}
.blogview_lists .blog_banner.viewlist h3 a {
    color: #fff;
    font-weight: 500;
}
.blogview_lists .blog_banner.viewlist p {
    color: #5db634;
    font-size: 14px !important;
}
.blogview_lists .blog_banner.viewlist p a {
    font-size: 14px !important;
}
.row.bestcomp_lists {
    padding-bottom: 30px;
}
.blogview_lists {
    margin-bottom: 20px;
}
.row.bestcomp form div:first-child {
    padding-left: 15px !important;
}
.row.bestcomp form div:nth-child(2) {
    padding-right: 15px !important;
}
div#chart-container svg > g:nth-child(4) {
    display: none;
}
/**************custom styles ends ***********************/
@media only screen and (max-width: 1230px) {
    .review_tabs ul#myTab li a {
        padding: 13px 13px !important;
        font-size: 17px !important;
        min-width: inherit !important;
    }
}
@media only screen and (max-width: 1199px) {
    ul.grid.effect-2.all_grid .last_slid .media-body.allrevs_list span {
        position: unset;
    }
    .user_cards .card-deck.new_card > div.card {
        width: 48%;
        float: left;
        flex: none;
    }
    .user_cards .card-deck.new_card > div.card:nth-child(2n+1) {
        margin-left: 0;
        margin-right: 2%;
    }
    .user_cards .card-deck.new_card > div.card:nth-child(2n) {
        margin-right: 0;
        margin-left: 2%;
    }
    .smileys ul.nav li {
        width: 20%;
        padding: 0 !important;
        text-align: center;
    }
    .top_con {
        width: 100%;
    }
    .round_rev.mal {
        left: 0;
        bottom: 74px;
    }
    .round_rev.fem {
        right: 0;
        top: 250px;
    }
    .home_tab .nav.nav-pills li {
        width: 25%;
    }
    .home_tab li.nav-item a {
        padding: 25px 0;
    }
    .last_slid {
        padding: 26px 13px 26px;
    }
    .last_slid .media-body span {
        position: absolute;
        right: 0;
        font-size: 15px;
        top: -21px;
    }
    .dash_chart.donuts {
        padding: 0 !important;
        margin-bottom: 20px !important
    }
    .dashing_table {
        padding-left: 0 !important;
    }
    .dashboard_content .card-deck.new_card div.card:nth-child(2n) {
        margin-right: 0;
        margin-left: 2%;
    }
    .dashboard_content .card-deck.new_card div.card {
        margin-left: 0;
        margin-right: 2%;
        width: 48%;
    }
    .marg_head_block {
        margin-top: 190px;
    }
}
@media only screen and (max-width: 1100px) {
    header {
        padding: 20px 10px;
    }
    nav.main-menu.newmain a {
        margin-right: 0px;
    }
}
@media only screen and (max-width: 1060px) {
    .well_head button.btn {
        width: 90%;
    }
    div#demo {
        position: relative;
        top: -17px;
        width: 220px !important;
        float: left;
    }
    .awrd_line ul li {
        width: 121px;
        margin: 0 36px 0 0;
    }
    .awrd_line li img {
        max-width: 110px;
    }
    section.home_awards h3, section.record_review h3 {
        font-size: 42px;
        padding-bottom: 40px;
        padding-top: 50px;
    }
    section.home_awards {
        padding-bottom: 100px;
    }
    .watch_tut_btn button.btn {
        width: 100% !important;
    }
}
@media only screen and (max-width: 991px) {
    .grid.effect-2.all_grid .simple-rating.star-rating.home_rate {
        margin: 0 auto 11px;
        display: table;
    }
    .grid.effect-2.all_grid .media {
        display: block;
        text-align: center;
    }
    .grid.effect-2.all_grid .media > img {
        margin: 0 auto !important;
    }
    ul.grid.effect-2.all_grid .last_slid .lat_text {
        overflow: hidden;
    }
    ul.grid.effect-2.all_grid .last_slid .media-body.allrevs_list span {
        position: unset;
        display: block;
        clear: both;
        margin: 0 auto;
        width: 42px;
        float: none;
    }
    .hero_single.version_2.home_compsearch .marg_head_block {
        margin-top: 20px;
    }
    .container-fluid.blog_mar.seo_comp {
        margin-top: 70px;
    }
    .topcomp_header #logo img {
        height: 50px;
    }
    .prof_graph {
        padding-right: 15px;
    }
    .prof_chart {
        padding-left: 15px !important;
    }
    .user_cards .card-deck.new_card > div.card {
        width: 47%;
        float: left;
        flex: none;
    }
    .user_cards .card-deck.new_card > div.card:nth-child(2n+1) {
        margin-left: 2%;
        margin-right: 1%;
    }
    .user_cards .card-deck.new_card > div.card:nth-child(2n) {
        margin-right: 2%;
        margin-left: 1%;
    }
    .watch_tut_btn {
        padding-left: 40px;
        margin-bottom: 30px;
    }
    .watch_tut_btn button.btn {
        width: 100% !important;
    }
    .yu_list p {
        padding-right: 0;
    }
    .yu_list button.btn {
        width: 60%;
        float: none;
        display: block;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .form-group.text-center.social_save button.btn {
        width: 65%;
    }
    .dash_rev_cont.trust_reviews.trust_msg.well_cont div.comp_info {
        padding:40px 20px 30px;
    }
    .well_head {
        padding-left: 30px;
    }
    form.social_form {
        width: 90%;
    }
    .hero_single.version_2 {
        height: 400px;
    }
    section.hero_single.version_company {
        height: auto;
        padding-bottom: 30px;
    }
    .hero_single.version_company .wrapper h3.comp_head {
        text-align: center;
        padding-bottom: 20px;
    }
    .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
        background-color: #444 !important;
    }
    .smileys i {
        font-size: 90px !important;
    }
    .smileys ul.nav li span {
        font-size: 26px !important;
    }
    .row.land_row {
        padding-top: 100px;
    }
    a.watbtn {
        margin: 20px auto 0;
        float: none;
        display: table;
    }
    .hero_single.version_2 {
        height: auto;
        padding-top: 140px;
        background: #fff;
    }
    .row.no-gutters.custom-search-input-2.home_search {
        box-shadow: none;
        text-align: center;
    }
    button#search_form_submit1, button#search_form_submit1:hover {
        width: 100%;
    }
    .home_tab .nav.nav-pills li {
        width: 50%;
    }
    .home_tab li.nav-item a {
        border-right: 1px solid #e2e2e2;
        border-radius: 0;
    }
    .home_tab li.nav-item a.nav-link.active {
        border-radius: 0;
    }
    .main_title_3.pop_exp.popleft h2 {
        right: inherit;
        text-align: center;
        width: 100%;
    }
    .main_title_3.pop_exp.poprite {
        text-align: center;
        text-indent: 0;
    }
    .home_tab li.nav-item:last-child a {
        border-radius: 0;
    }
    .trust_phone {
        text-align: center;
    }
    a.box_topic.homebox h3 {
        max-width: 268px;
    }
    .header.mm-slideout #logo img {
        height: 48px;
    }
    /*    .mm-menu.mm-offcanvas {
            position: inherit !important;
        }*/
    .row.new_label h3 {
        width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }
    .row.new_label h3 br {
        display: none;
    }
    .ft_label a {
        margin-bottom: 20px;
        display: inline-block;
    }
    .share_divs {
        text-align: center;
    }
    .comp_prof_smile {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 900px) {
    .well_head h1 {
        font-size: 50px;
    }
    .well_head p {
        width: 95%;
        font-size: 22px;
    }
}
@media only screen and (max-width: 767px) {
    .hero_single.version_2.home_compsearch .marg_head_block {
        margin-top: 0;
    }
    .hero_single.version_2.home_compsearch .read_cont h2 {
        font-size: 40px;
        line-height: 53px;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .topcomp_header #logo {
        position: absolute !important;
        left: 0;
        right: 0;
    }
    #forgot_pw {
        width: 100%;
    }
    .dash_rev_cont.trust_reviews.trust_msg.well_cont div.comp_info {
        padding: 40px 10px 30px;
    }
    form.social_form {
        width: 100%;
    }
    .form-group.text-center.social_save button.btn {
        width: 100%;
    }
    #features {
        text-align: center;
    }
    #features .block_2 a {
        margin: 0 auto;
    }
    .feat_blocks {
        text-align: center;
    }
    .feat_blocks .block_2 a {
        margin: 0 auto;
    }
    section.blue_bg {
        min-height: 200px !important;
    }
    .smileys {
        display: none !important;
    }
    .home_tab .nav.nav-pills li {
        width: 100%;
    }
    #logo {
        position: inherit;
        width: auto;
    }
    #logo img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    a.box_topic.homebox h3 {
        max-width: 461px;
    }
    .header.mm-slideout #logo {
        width: 100%;
        text-align: center;
    }
    .header.mm-slideout #logo img,.header.mm-slideout #logo img.logo_sticky {
        margin: 0;
    }
    section.home_awards h3, section.record_review h3 {
        font-size: 36px;
        padding-bottom: 40px;
        padding-top: 50px;
    }
    .awrd_line ul li {
        width: 32%;
        margin: 0;
        text-align: center;
        float: none;
        display: inline-block;
    }
    .awrd_line ul, .awrd_line ul li {
        text-align: center;
    }
    section.home_awards {
        padding-bottom: 30px;
    }
    .awrd_line ul li img {
        position: relative;
        max-width: 100px;
    }
    .social_logos ul {
        text-align: center;
    }
    .social_logos ul li {
        float: none;
        margin-right: 10%;
        display: inline-block;
        text-align: center;
        margin-top: 0 !important;
        width: 22%;

    }
    .social_logos ul li img {
        width: 100px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .dashboard_content {
        margin-top: 20px !important;
    }
}
@media only screen and (max-width: 600px) {
    .user_cards .card-deck.new_card > div.card {
        width: 94%;
        float: left;
        flex: none;
    }
    .user_cards .card-deck.new_card > div.card:nth-child(2n+1) {
        margin-left: 3%;
        margin-right: 3%;
    }
    .user_cards .card-deck.new_card > div.card:nth-child(2n) {
        margin-right: 3%;
        margin-left: 3%;
    }
}
@media only screen and (max-width: 575px) {
    .dashboard_content .card-deck.new_card div.card:nth-child(2n) {
        margin-right: 0;
        margin-left: 0;
    }
    .dashboard_content .card-deck.new_card div.card {
        margin-left: 0;
        margin-right: 0%;
        width: 100%;
    }
    .dashboard_content .card-deck.new_card div.card:nth-child(2n) {
        margin-right: 0;
        margin-left: 0%;
    }
}
@media only screen and (max-width: 500px) {
    .hero_single.version_company .wrapper h3.comp_head {
        font-size: 48px !important;
        line-height: 61px !important;
        margin-top: 0px !important;
    }
    div#demo {
        top: 0;
        width: 100% !important;
    }
    .home_ltrevs .last_slid div.media img {
        display: none;
    }
    .last_slid .media-body h4, .last_slid .media-body h4 a {
        font-size:14px;
        text-align: center;
        margin: 0;
    }
    .last_slid .media-body h4 b a {
        font-size: 15px;
        text-align: center;
    }
    .lat_text h5 a {
        font-size: 15px;
        text-align: center;
        display: block;
    }
    .simple-rating.star-rating.home_rate i {
        font-size: 18px;
    }

}
.name-link:hover{
    color: #008004;
    font-weight: 600;
}


.swal-title {
    font-size: 20px;
    color: #17313b;
}
.swal-modal {
    font-family: "Roboto", Arial, sans-serif;
}
.swal-text {
    font-size: 14px;
    color: #2e2d2d;
}
.swal-button-container {
    text-align: center;
}
.swal-button-container button {
    background: #17313b;
    margin: 0 auto;
    width: 100px;
    text-align: center;
    float: none;
    border-radius: 3px;
    padding: 7px 0;
}
.swal-button-container button:hover {
    background: #1975b6 !important;
}
.enter_mail.yel_align.pro_center {
    left: -55px;
}
.swal-icon.swal-icon--error,.swal-icon.swal-icon--info,.swal-icon.swal-icon--warning,.swal-icon.swal-icon--success {
    zoom: 0.6;
    /*    width: 40px;
        height: 40px;
        border-width: 4px;
        border-style: solid;
        border-radius: 50%;
        padding: 0;
        position: relative;
        box-sizing: content-box;
        margin: 20px auto 10px;*/

}
.swal-footer {
    text-align: center;
}
/*.swal-icon--error__line {
    height: 5px;
    width: 23px;
}
.swal-icon--error__line--right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 9px;
}
.swal-icon--error__line--left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 9px;
}
.swal-icon--error__line {
    top: 18px;
}*/
.swal-button:focus {
    box-shadow: none !important;
    outline: none !important;
}
.swal-footer {
    margin-bottom: 10px;
}
div#color_loader {
    width: 100%;
    display: table;
    position: fixed;
    z-index: 9999999;
    text-align: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0,0,0,0.5);
    height: 100%;
    vertical-align: middle;
    padding-top: 300px;
}
.swal-icon--error {
    border-color: #bd2130;
}
.swal-icon--error__line {
    background-color: #bd2130;
}
.swal-icon--info:before {
    /*    content: "";
        position: absolute;
        left: 50%;*/
    background-color: #17a2b8;
    /*    top: 5px;*/
}
.swal-icon--info:after {
    /*    width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: -3px;
        top: 26px;*/
    background-color: #17a2b8;
}
/*.swal-icon--info:before {
    height: 18px;

}*/
.swal-icon--info {
    border-color: #17a2b8;
}
.swal-icon--warning__body {
    /*    width: 5px;
        height: 18px;
        top: 6px;
        border-radius: 2px;
        margin-left: -2px;*/
    background-color: #ffc107;
}
.swal-icon.swal-icon--warning {
    animation: none;
    border-color: #ffc107;
}
.swal-icon--warning__dot {
    background-color: #ffc107;
}
.swal-icon--success__ring {
    border: 4px solid #28a745;
}
.swal-icon--success__line {
    background-color: #28a745;
}
.sublist {
    width: 100%;
    padding: 40px 100px 25px;
    background: #fff;
    float: left;
    margin-bottom: 40px;
    border-bottom: 1px solid #cbcbcd;
}
.sublist h3 {
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    float: left;
    padding-bottom: 16px;
    height: auto;
}
.sublist p {
    font-size: 18px;
    line-height: 38px;
    padding-top: 8px;
    color: #272727;
    text-align: justify;
    letter-spacing: 0.3px;
}
.sub_img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.sub_img img {
    width: 200px;
}
.watch_tut_btn {
    width: 100%;
    text-align: right;
    padding-right: 40px;
    padding-top: 24px;
    position: relative;
}
.watch_tut_btn button.btn {
    color: #48A717 !important;
    width: 300px;
    color: #fff;
    border-radius: 0;
    padding: 9px 0;
    border: 1px solid #48A717;
}
.watch_tut_btn button.btn:hover {
    background: #48A717 !important;
    color: #fff !important;
}
.share_video video:focus {
    border: 0;
    outline: none;
}
.watch_tut_btn button.btn a {
    color: inherit;
}
h1.comp_namelist a.btn {
    background: #FF5757;
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
    border-radius: 0;
    padding: 7px 18px;
    margin-left: 10px;
}
header.header.mm-slideout nav#menu li a {
    font-size: 16px;
    margin-top: 6px;
    margin-right: 10px;
    color: #444;
}
#results h1.comp_namelist {
    line-height: 3;
    margin-top: 0;
}
.cat_menu nav#menu ul li a {
    font-size: 16px;
    margin-right: 10px;
}
ul.chec-radio li.pz {
    display: inline;
    float: left;
}
.chec-radio label.radio-inline input[type="checkbox"] {
    display: none;
}
.chec-radio label.radio-inline input[type="checkbox"]:checked+div {
    color: #fff;
    background-color: #000;
}
.chec-radio .radio-inline .clab {
    cursor: pointer;
    padding: 7px 20px;
    text-align: center;
    color: #333;
    position: relative;
    float: left;
    margin: 0;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    width: 158px;
    border-right: 0;
    font-weight: normal;
    font-size: 16px;
}
.chec-radio label.radio-inline input[type="checkbox"]:checked+div:before {
    content: "\e013";
    margin-right: 5px;
    font-family: 'Glyphicons Halflings';
}
.chec-radio label.radio-inline input[type="radio"] {
    display: none;
}
.chec-radio label.radio-inline input[type="radio"]:checked+div {
    color: #fff;
    background-color: #3578fa;
    border-color: #3578fa;

}
.chec-radio .radio-inline .clab span {
    font-weight: bold;
    font-size: 16px;
    padding: 1px 0;
    display: inline-block;
}
ul.chec-radio li.pz:last-child div.clab {
    border-right: 1px solid #ddd;
}
ul.chec-radio.chec4 .clab {
    width: 119px;
}
li.top_button span a {
    border: 1px solid #37a000;
    border-radius: 5px;
    padding: 7px 16px 10px !important;
    color: #37a000 !important;
    font-weight: normal !important;
    font-size: 15px !important;
}
li.top_button span a:hover {
    background: #37a000;
    border-color: #37a000;
    color: #fff !important;
}
header.header.mm-slideout nav#menu li.top_button.top_last span a {
    margin-right: 0;
}
.cat_menu.topcat_menu {
    padding-right: 0;
    padding-top: 0;
}
.cat_menu.topcat_menu.top_list {
    padding-bottom: 12px;
}
li.top_button.comp_btn a, li.top_button.top_last.comp_btn a {
    margin-left: 0;
    margin-right: 0;
}
.right_links ul.nav.user_navs li a {
    font-weight: 500;
}


@media screen and (max-width: 991px) {
    .visit_web {
        text-align: center;
        border-left: 0;
    }
    .set_info.upload_section.invform.invupload {
        padding-right: 40px !important;
    }
    p.bot_loc {
        position: inherit;
    }
    .container.margin_tabs.reg_mar div#tabs li a {
        padding :25px 0px 25px 0px !important
    }
    .sub_img {
        text-align: center;
    }
    .sub_img img {
        max-width: 200px;
    }
    .sublist {
        padding: 40px 50px 25px;
    }
    .list_logo {
        text-align: center;
        padding-bottom: 35px;
    }
    .header_in.headlist {
        padding: 20px 0;
    }
    .header_in.headlist #logo img {
        height: 48px;
    }
    .header_in.headlist #logo a {
        z-index: 9;
        position: relative;
        top: -11px;
    }
    .container.margin_tabs.reg_mar.comp_reg2 {
        margin-top: 72px;
    }
    .homepage_body.compose_page .comp_logo {
        display: none;
    }
    .school_tab {
        width: 100%;
    }
    .school_tab ul li {
        font-size: 22px;
    }
    .trust_reviews .comp_prof_smile {
        margin-top: 0;
    }
    .blu_bg .simple-rating.star-rating {
        float: left;
        margin-right: 0;
        margin-left: 26px;
    }
    .trust_reviews .rev_body {
        padding: 0px 25px 11px 25px;
    }
    .school_banner {
        margin-top: 72px;
        position: relative;
    }
    .home_tru_research {
        text-align: center;
        padding-top: 0;
    }
    .home_tru_research p {
        width: 100%;
        text-align: center;
    }
    .home_tru_img {
        width: 100%;
        text-align: center;
    }
    .home_tru_img img {
        width: 80%;
        margin: 0 auto;
    }
    .bg_color_1.home_res {
        padding-bottom: 40px;
    }
    section.latest_reviws {
        padding: 0px 80px 20px;
    }
    section.record_review .home_tru_research h3 {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    section.record_review {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .recrev_img {
        text-align: center;
    }
    .recrev_img img {
        width: 80%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 767px) {

    .cat_Search {
        margin-top: 20px;
    }
    .cat_Search > div {
        padding: 0 !important;
    }
    .cat_Search div.row > div {
        padding-left: 0;
        padding-right: 0;
    }
    .user_signin_check,.company_signin_check,.company_register_details {
        padding: 0 30px;
    }
    .loc_ver {
        position: relative;
        right: inherit;
        text-align: center;
        top: 0;
        padding: 12px 0 0;
    }
    #results h1.comp_namelist {
        text-align: center;
        padding-bottom: 14px;
    }
    .cat_menu.topcat_menu.top_list {
        position: absolute;
        top: 23px;
        left: 0;
    }
    .header_in.headlist {
        padding: 20px 0 5px;
    }
    .header_in.headlist .cat_menu.topcat_menu {
        position: absolute;
        width: 100%;
        left: 0;
    }
    .container.margin_tabs.reg_mar.comp_reg2 {
        margin-top: 53px;
    }
    .school_tab ul li {
        width: 100%;
        padding-bottom: 13px;
        margin-right: 0;
    }
    .school_tab ul li a {
        display: block;
    }
    .school_banner {
        margin-top: 52px;
    }
    form#portfolio_image_form .port_used {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 714px) {

    .homepage_body.compose_page .post_content.rev_active .simple-rating.star-rating.fa-large i {
        font-size: 22px;
        padding: 9px 10px;
    }
}

@media screen and (max-width: 610px) {
    .homepage_body.compose_page .post_content.rev_active .simple-rating.star-rating.fa-large i {
        font-size: 22px;
        padding: 9px 10px 9px 15px;
        float: left;
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }
    .homepage_body.compose_page .post_content.rev_active .simple-rating.star-rating {
        overflow: hidden;
        padding-top: 12px;
    }
    .homepage_body.compose_page .post_content.rev_active .simple-rating.star-rating.fa-large i b {
        margin-left: 10px;
    }
    .homepage_body.compose_page .post_content.rev_active .media img {
        display: block;
        margin: 0 auto 14px;
        clear: both;
    }
    .homepage_body.compose_page .post_content.rev_active .media {
        display: block;
    }
    .homepage_body.compose_page .media-body.compose_names {
        display: block;
        overflow: hidden;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 680px) {
    .sublist h3 {
        text-align: center;
    }
}
@media screen and (max-width: 630px) {
    #forgot_pw {
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .dashboard_content.compset_forms .inv_cust.upd_revs {
        float: left;
        padding: 13px !important;
    }
    .cat_Search {
        padding-top: 20px;
    }
    .yu_list button.btn {
        width: 100%;
    }
    .comp_subs.reg2_btn input.btn_1.rounded.btn-block {
        max-width: inherit;
    }
    .btn_1.gobtn {
        margin-bottom: 20px;
    }
    .simple-rating.star-rating.home_rate.star1 {
        margin: 0 auto;
        float: none;
        display: table;
    }
    a.revnum {
        display: block;
        clear: both;
    }
    .sublist {
        padding: 40px 25px 25px;
    }
    .sublist h3 {
        text-align: center;
        font-size: 24px;
        line-height: 35px;
    }
    .comp_namelist .btn {
        display: inline-block;
        clear: both;
    }
    div#team, div#portfolio {
        padding: 0;
    }

}
@media screen and (max-width: 550px) {
    .elem_school h2 {
        font-size: 38px;
    }
    .school_smile .simple-rating.star-rating.home_rate i {
        font-size: 32px;
        margin-right: 8px !important;
    }
    .school_smile > span {
        padding: 4px 15px;
        font-size: 15px;
    }
    .elem_school p, .elem_school label {
        font-size: 26px;
    }
    .elem_school button {
        padding: 9px 55px;
        font-size: 26px;
        margin-top: 26px;
    }
}
@media screen and (max-width: 500px) {
    form#portfolio_image_form .custom-control.custom-radio {
        padding-left: 7%;
    }
    .port_form .port_used h4 {
        text-align: left;
        line-height: 28px;
    }
}
@media screen and (max-width: 400px) {
    .homepage_body.compose_page .post_rev_container {
        display: block;
    }
    .homepage_body.compose_page .post_button button.btn {
        width: 100%;
    }
}
@media screen and (max-width: 1150px) {
    .form-group.revmsg ul li {
        width: 100% !important;
    }    .share_rev.wid_share ul li button, .share_rev.wid_share1 ul li button {
        width: 100% !important;
    }
}