/* -- typography -- */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    color: #5a626e;
    background-color: #ebeff2;
    /*background: url('/static/images/agsquare.png');*/
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Medium', sans-serif;
    margin-top: 0px;
    margin-bottom: 20px;
}

.h0 {
    font-size: 64px;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

a {
    color: #7e57c2;
    text-decoration: none;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    opacity: 0.8;
    color: #7e57c2;
}

.main-color {
    color: #7e57c2;
}

.main-title {
    color: #FFF;
    text-align: left;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;

}

.white-text {
    color: #FFF;
}

::-moz-selection {
    background-color: #7e57c2;
    color: #FFF;
}

::selection {
    background-color: #7e57c2;
    color: #FFF;
}

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

/* -- section  -- */

.section {
    position: relative;
}

.md-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

/* --  background section  -- */

.bg-grey {
    background-color: #FAFAFA;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.bg-dark {
    background-color: #1C1D21;
}

/* --  background image section  -- */
.bg-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('/static/images/bg-desktop.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.bg-img2 {
    background-image: url('/static/images/banner.png');
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.card-logos {
    position: absolute;
    margin-bottom: 40px;
    bottom: 0;
    width: 100%;

}

/* --  section header  -- */

.section-header {
    position: relative;
    margin: 15px 15px 20px;
}

.title:after {
    content: "";
    display: block;
    height: 4px;
    width: 40px;
    background-color: #7e57c2;
    margin-top: 20px;
}

.text-center .title:after {
    margin: 20px auto 0px;
}

/* --  Buttons  -- */

.main-btn, .white-btn, .outline-btn {
    display: inline-block;
    padding: 12px 4px;
    margin: 3px;
    border: 2px solid transparent;
    border-radius: 5px;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.main-btn {
    background: #7e57c2;
    color: #FFF;
    margin-top: 20px;
    padding: 13px 30px;
    font-size: 18px;
    text-transform: uppercase;

}

.white-btn {
    background: #FFF;
    color: #10161A !important;
    padding: 12px 30px;
}

.outline-btn {
    background: transparent;
    color: #7e57c2 !important;
    border-color: #7e57c2;
}

.main-btn:hover, .white-btn:hover, .outline-btn:hover {
    opacity: 0.8;
    color: #fff
}

/*------------------------------------*\
	Logo
\*------------------------------------*/

.navbar-brand {
    padding: 6px;
    display: table;
}

.navbar-brand {
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    margin-bottom: -10px;

}

.navbar-brand img {
    width: 30px;
    height: 32px;
    margin-right: 6px;
    float: left
}

.logo {
    color: black !important;
}

.logo-alt {
    color: white !important;
    display: flex;
    align-items: center;
}
.logo span, .logo-alt span {
    font: 28px Magistral-B !important;
}

.logo img, .logo-alt img {
    width: 28px;
    height: 30px;
}

.navbar-brand .logo, .navbar-brand .logo-alt {
    max-height: 50px;
    display: block;
}

.navbar-brand-name {
    display: flex;
    align-items: center;
}

.navbar-brand-name h3 {
    margin-bottom: 0 !important;
}

.m-l-10 {
    margin-left: 10px;
}

.m-t-20 {
    margin-top: 20px;
}

#nav:not(.nav-transparent):not(.fixed-nav) .navbar-brand .logo-alt {
    display: none;
}

#nav.nav-transparent:not(.fixed-nav) .navbar-brand .logo {
    display: none;
}

#nav.fixed-nav .navbar-brand .logo-alt {
    display: none;
}

@media only screen and (max-width: 767px) {
    #nav.nav-transparent .navbar-brand .logo-alt {
        display: none !important;
    }

    #nav.nav-transparent .navbar-brand .logo {
        display: block !important;
    }
}

/*------------------------------------*\
	Navigation
\*------------------------------------*/

#nav {
    padding: 10px 0px;
    background: #FFF;
    -webkit-transition: 0.2s padding;
    transition: 0.2s padding;
    z-index: 999;
}

#nav.navbar {
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
}

#nav.fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    padding: 0px 0px;
    background-color: #FFF !important;
    border-bottom: 1px solid #EEE;
}

#nav.nav-transparent {
    background: transparent;
}

.nav-lang {
    position: relative;
    float: right;
    color: #10161a;
    font-weight: 500;
    margin: 12px 10px 5px;
    z-index: 99999;
}

/* -- default nav -- */

@media only screen and (min-width: 768px) {
    .home-content .main-btn {
        position: absolute;
        right: 0;
    }

    .bg-img .overlay, .bg-img2 .overlay {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: .5;
        background: #1C1D21;
    }

    .main-nav li {
        padding: 0px 15px;
    }

    .main-nav li a {
        font-size: 14px;
        -webkit-transition: 0.2s color;
        transition: 0.2s color;
    }

    .main-nav > li > a {
        color: #10161A;
        padding: 15px 0px;
    }

    #nav.nav-transparent:not(.fixed-nav) .main-nav > li > a {
        color: #fff;
    }

    .main-nav > li > a:hover, .main-nav > li > a:focus, .main-nav > li.active > a {
        background: transparent;
        color: #7e57c2;
    }

    .main-nav > li > a:after {
        content: "";
        display: block;
        background-color: #7e57c2;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.2s width;
        transition: 0.2s width;
    }

    .main-nav > li > a:hover:after, .main-nav > li.active > a:after {
        width: 100%;
    }

    /* dropdown */
    .has-dropdown {
        position: relative;
    }

    .has-dropdown > a:before {
        font-family: 'FontAwesome';
        content: "\f054";
        font-size: 6px;
        margin-left: 6px;
        float: right;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: 0.2s transform;
        transition: 0.2s transform;
    }

    .dropdown {
        position: absolute;
        right: -50%;
        top: 0;
        background-color: #7e57c2;
        width: 200px;
        -webkit-box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        -webkit-transform: translateY(15px) translateX(50%);
        -ms-transform: translateY(15px) translateX(50%);
        transform: translateY(15px) translateX(50%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .main-nav > .has-dropdown > .dropdown {
        top: 100%;
        right: 50%;
    }

    .main-nav > .has-dropdown > .dropdown .dropdown.dropdown-left {
        right: 150%;
    }

    .dropdown li a {
        display: block;
        color: #FFF;
        border-top: 1px solid rgba(250, 250, 250, 0.1);
        padding: 10px 0px;
    }

    .dropdown li:nth-child(1) a {
        border-top: none;
    }

    .has-dropdown:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px) translateX(50%);
        -ms-transform: translateY(0px) translateX(50%);
        transform: translateY(0px) translateX(50%);
    }

    .has-dropdown:hover > a:before {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .nav-collapse {
        display: none;
    }
}

/* -- mobile nav -- */

@media only screen and (max-width: 767px) {
    #nav {
        padding: 0px 0px;
    }

    .modal-dialog {
        width: 90%;
        margin: 0 auto;
    }

    #nav.nav-transparent {
        background: #FFF;
    }

    .main-nav {
        position: fixed;
        right: 0;
        height: calc(100vh - 80px);
        -webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
        box-shadow: 0px 80px 0px 0px #1C1D21;
        max-width: 250px;
        width: 0%;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        margin: 0;
        overflow-y: auto;
        background: #1C1D21;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    #nav.open .main-nav {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }

    .main-nav li {
        border-top: 1px solid rgba(250, 250, 250, 0.1);
    }

    .main-nav li a {
        display: block;
        color: #FFF;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .main-nav > li.active {
        border-left: 6px solid #7e57c2;
    }

    .main-nav li a:hover, .main-nav li a:focus {
        background-color: #7e57c2;
        color: #FFF;
        opacity: 1;
    }

    .has-dropdown > a:after {
        content: "\f054";
        font-family: 'FontAwesome';
        float: right;
        -webkit-transition: 0.2s -webkit-transform;
        transition: 0.2s -webkit-transform;
        transition: 0.2s transform;
        transition: 0.2s transform, 0.2s -webkit-transform;
    }

    .dropdown {
        opacity: 0;
        visibility: hidden;
        height: 0;
        background: rgba(250, 250, 250, 0.1);
    }

    .dropdown li a {
        padding: 6px 10px;
    }

    .has-dropdown.open-drop > a:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .has-dropdown.open-drop > .dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
}

/* -- nav btn collapse -- */

.nav-collapse {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
    z-index: 99999;
}

.nav-collapse span {
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
}

.nav-collapse span:before, .nav-collapse span:after {
    content: "";
    display: block;
}

.nav-collapse span, .nav-collapse span:before, .nav-collapse span:after {
    height: 4px;
    background: #10161A;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.nav-collapse span:before {
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px);
}

.nav-collapse span:after {
    -webkit-transform: translate(0%, -14px);
    -ms-transform: translate(0%, -14px);
    transform: translate(0%, -14px);
}

#nav.open .nav-collapse span {
    background: transparent;
}

#nav.open .nav-collapse span:before {
    -webkit-transform: translateY(0px) rotate(-135deg);
    -ms-transform: translateY(0px) rotate(-135deg);
    transform: translateY(0px) rotate(-135deg);
}

#nav.open .nav-collapse span:after {
    -webkit-transform: translateY(-4px) rotate(135deg);
    -ms-transform: translateY(-4px) rotate(135deg);
    transform: translateY(-4px) rotate(135deg);
}

/*------------------------------------*\
	Header
\*------------------------------------*/

header {
    position: relative;
}

#home {
    height: 100vh;
}

#home .home-wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 27%;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    text-align: center;
}

.home-content h1 {
    text-transform: uppercase;
}

.home-content button {
    margin-top: 20px;
}

.header-wrapper h2 {
    display: inline-block;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb {
    float: right;
    background: transparent;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb .breadcrumb-item.active {
    color: #868F9B;
}

.breadcrumb > li + li:before {
    color: #868F9B;
}

.banner-img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/*------------------------------------*\
	About
\*------------------------------------*/

.feature {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #EEE;
    margin: 15px 0px;
    background-color: #fff;
}

.feature i {
    font-size: 36px;
    color: #7e57c2;
    margin-bottom: 20px;
}

.feature h3 {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.feature:hover h3 {
    color: #fff;
}

/*------------------------------------*\
	Portfolio
\*------------------------------------*/

.work {
    position: relative;
    padding: 20px;
}

.work > img {
    width: 100%;
}

.work .overlay {
    background: #33353a;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .overlay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0.8;
}

.work .work-content {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.work .work-content h3, .work .work-content h4 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #FFF;
    margin-bottom: 10px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work:hover .work-content h3, .work:hover .work-content h4 {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work .work-content span {
    display: block;
    text-transform: uppercase;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #e8efff;
    margin-bottom: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .work-content span {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.work .work-link {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.work .work-link a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #7e57c2;
    color: #FFF;
    line-height: 50px;
    text-align: center;
}

.work:hover .work-link {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}

/*------------------------------------*\
	Services
\*------------------------------------*/

.service {
    position: relative;
    padding: 40px 20px 40px 70px;
    margin: 15px 0px;
    border: 1px solid #EEE;
}

.service i {
    position: absolute;
    left: 20px;
    text-align: center;
    font-size: 32px;
    color: #7e57c2;
    border-radius: 50%;
}

.service:after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    z-index: -1;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}

.service:hover:after {
    width: 100%;
}

.service h3 {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.service:hover h3 {
    color: #fff;
}

/* -- category sidebar -- */

.widget-category a {
    display: block;
    font-size: 14px;
    color: #354052;
    border-bottom: 1px solid #EEE;
    padding: 5px;
}

.widget-category a:nth-child(1) {
    border-top: 1px solid #EEE;
}

.widget-category a span {
    float: right;
    color: #7e57c2;
}

.widget-category a:hover {
    color: #7e57c2;
}

/* -- tags sidebar -- */

.widget-tags a {
    display: inline-block;
    padding: 6px 13px;
    font-size: 14px;
    margin: 2px 0px;
    background: #F4F4F4;
    color: #10161A;
}

.widget-tags a:hover {
    color: #FFF;
    background-color: #7e57c2;
}

/* -- posts sidebar -- */

.widget-post {
    min-height: 70px;
    margin-bottom: 25px;
}

.widget-post img {
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.widget-post a {
    display: block;
    color: #10161A;
}

.widget-post a:hover {
    color: #7e57c2;
}

.widget-post .blog-meta {
    display: inline-block;
}

.widget-post .blog-meta li {
    display: inline-block;
    margin-right: 5px;
    color: #7e57c2;
    font-size: 12px;
}

.widget-post li i {
    color: #7e57c2;
    margin-right: 5px;
}

/*------------------------------------*\
	Contact
\*------------------------------------*/

.contact {
    margin: 15px 0px;
    text-align: center;
}

.contact i {
    font-size: 36px;
    color: #7e57c2;
    margin-bottom: 20px;
}

.contact-form {
    text-align: center;
    margin-top: 40px;
}

.contact-form .input {
    margin-bottom: 20px;
}

.contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
    width: calc(50% - 10px);
}

.contact-form .input:nth-child(2) {
    margin-left: 15px;
}

/*------------------------------------*\
	Footer
\*------------------------------------*/

#footer, #footer h3 {
    position: relative;
    color: white;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo > a > img {
    max-height: 80px;
}

.footer-follow {
    text-align: center;
    margin-bottom: 20px;
}

.footer-follow li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 13px;
}

.footer-follow li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 3px;
    background-color: #7e57c2;
    color: #FFF;
}

.footer-copyright p {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

/*------------------------------------*\
	Responsive
\*------------------------------------*/

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
    .section-header h2.title {
        font-size: 31.5px;
    }

    .main-btn, .default-btn, .outline-btn, .white-btn {
        position: relative;
        padding: 8px 22px;
        font-size: 14px;
    }

    .home-content h1 {
        font-size: 30px;
    }

    .header-wrapper h2 {
        margin-bottom: 20px;
        text-align: center;
        display: block;
    }

    .header-wrapper .breadcrumb {
        float: none;
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .row-content {
        margin-top: 40px;
    }

    .main-title {
        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        line-height: 36px;

    }

    .bg-img {
        background-image: url('/static/images/bg-mobile.jpg');
    }

    .card-logos {
        margin-bottom: 60px
    }

    #portfolio [class*='col-xs'] {
        width: 100%;
    }

    #numbers [class*='col-xs'] {
        width: 100%;
    }

    .contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
        width: 100%;
    }

    .contact-form .input:nth-child(2) {
        margin-left: 0px;
    }

    .reply-form form .input, .reply-form form .input {
        width: 100%;
    }

    .reply-form form .input:nth-child(2) {
        margin-left: 0px;
    }

    .blog-author .media .media-left {
        display: block;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .blog-author .media {
        text-align: center;
    }

    .blog-author .media .media-heading .author-social {
        margin-top: 10px;
        float: none;
    }

    .blog-author .media .media-left img {
        margin: auto;
    }

    .blog-comments .media .media {
        margin: 0px -15px;
    }
}

/*------------------------------------*\
	Back to top
\*------------------------------------*/

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #7e57c2;
    border-radius: 3px;
    color: #FFF;
    z-index: 9999;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
    cursor: pointer;
}

#back-to-top:after {
    content: "\f106";
    font-family: 'FontAwesome';
}

#back-to-top:hover {
    opacity: 0.8;
}

/*------------------------------------*\
	Preloader
\*------------------------------------*/

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader span {
    display: inline-block;
    background-color: #7e57c2;
    width: 25px;
    height: 25px;
    -webkit-animation: 1s preload ease-in-out infinite;
    animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
}

.preloader span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.preloader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.preloader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.preloader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes preload {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes preload {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

.navbar-custom .navbar-nav li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin: 5px 0px;
}

.navbar-custom .nav > li > a:focus, .navbar-custom .nav > li > a:hover, .navbar-custom .navbar-nav li.active a {
    background-color: transparent;
    color: #ffffff;
}

.navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-btn {
    padding: 5px 20px !important;
    text-transform: none !important;
    font-weight: 400;
    margin-top: 8px !important;
}

#nav.nav-transparent:not(.fixed-nav) .main-nav > li .btn-white-bordered {
    /* padding: 8px 24px !important; */
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.75) !important;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

#nav.nav-transparent:not(.fixed-nav) .main-nav > li .btn-white-bordered:hover {
    background-color: #ffffff !important;
    color: #7e57c2 !important;
}

.btn-white-bordered {
    /* padding: 8px 24px !important; */
    background-color: transparent !important;
    border: 2px solid rgba(126, 87, 194, 0.75) !important;
    color: #7e57c2;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-white-bordered:hover {
    background-color: #7e57c2 !important;
    color: #ffffff !important;
}

.btn-custom-bordered {
    background-color: #7e57c2 !important;
    border: 2px solid #7e57c2 !important;
    color: #ffffff !important;
    border-radius: 50px;
    margin-left: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-custom-bordered:hover {
    background-color: transparent !important;
    color: #7e57c2 !important;
}

body {
    padding-bottom: 0;
}

.fullwidth {
    width: 100% !important;
    min-width: 100% !important;
}

.table-responsive {
    overflow-x: visible;
}

table#datatable thead th {
    white-space: normal;
    vertical-align: top;
}

.wrapper {
    padding-top: 75px;
}

.top-menu {
    margin-left: 50px !important;
}

.modal-checkbox {
    margin-top: 32px;
}

.hideblock {
    display: none;
    z-index: 21;
    padding: 20px;
}

.showblock {
    display: block;
    z-index: 22;
    padding: 20px;
    margin: 0 auto;
}

.sign-in-page, .register-page, .confirm-page {
    border: none !important;
    background: none !important;
}

.account-pages {
    background: none;
}

.opport-box .member-info {
    width: 250px;
}

.animate {
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.5s;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: both;
    -o-animation-duration: 0.5s;
    -o-animation-timing-function: ease;
    -o-animation-fill-mode: both;
    -ms-animation-duration: 0.5s;
    -ms-animation-timing-function: ease;
    -ms-animation-fill-mode: both;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

#accordion {
    position: fixed;
    bottom: -20px;
    width: 100%;
}

.panel-default > .panel-heading {
    background: #36404a;
}

.panel-heading {
    padding: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-title a {
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
    outline: none;
}

.panel-title a:hover, .panel-title a:focus, .panel-title a:active {
    text-decoration: none;
    outline: none;
}

.console-body {
    max-height: 250px;
    overflow: scroll;
    padding-left: 15px;
}

.panel-group .panel-heading {
    padding: 0 !important;
}

.bootstrap-select-button,
.bootstrap-select-button:hover,
.bootstrap-select-button:focus,
.bootstrap-select-button:active,
.bootstrap-select-button.active,
.bootstrap-select-button.focus,
.bootstrap-select-button:active,
.bootstrap-select-button:focus,
.bootstrap-select-button:hover,
.open {
    color: #000 !important;
    background-color: #fff !important;
    border-color: #ccc !important;
}

.bootstrap-tagsinput {
    padding: 7px 12px;
    min-height: 38px;
    min-width: 100%;
}

.select2-parsley {
    margin-bottom: 0px;
}

table.dataTable tbody > tr.selected, table.dataTable tbody > tr > .selected {
    background-color: #dddee0 !important;
}

.wizard > .content {
    padding: 0 !important;
    background: none;
}

.wizard > .content > .body {
    padding: 10px !important;
}

.wizard .content .body {
    width: 100%;
}

.dataTables_length, .dataTables_filter {
    display: none;
}

.dt-info .dataTables_length, .dt-info .dataTables_filter {
    display: block;
}

td.actions {
    width: 10px;
}

td.actions a, .dtr-data a.action {
    padding: 5px;
}

.color-blue, .color-blue:hover, .color-blue:focus {
    color: #29b6f6;
}

.color-red, .color-red:hover, .color-red:focus {
    color: #f05050;
}

td.details-control {
    background: url('/static/images/details_open.png') no-repeat center center;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url('/static/images/details_close.png') no-repeat center center;
}
