/* Common CSS */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3 {
    font-family: 'Hind Siliguri', cursive;
}


.display-3 {
    font-weight: 100;
    font-size: 112px;
}

.display-2 {
    font-weight: 400;
    font-size: 56px;
}

.display-1 {
    font-weight: 500;
    font-size: 45px;
}

@media (max-width: 767px) {

    h1 {
        font-size: 28px; /* Desltop: 36px */
    }
    h2 {
        font-size: 24px; /* Desltop: 30px */
    }
    h3 {
        font-size: 20px; /* Desltop: 24px */
    }
    h4 {
        font-size: 16px; /* Desltop: 18px */
    }
    h5 {
        font-size: 14px; /* Desltop: 14px */
    }
    h6 {
        font-size: 12px; /* Desltop: 12px */
    }

    .display-3 {
        font-weight: 100;
        font-size: 56px;/* Desltop: 112px */
    }

    .display-2 {
        font-weight: 400;
        font-size: 42px;/* Desltop: 56px */
    }

    .display-1 {
        font-weight: 500;
        font-size: 34px;/* Desltop: 45px */
    }
}

code {
    background: #f9f2f4;
    color: #9c1d3d;
}

code, kbd, pre, samp {
    font-family: "Menlo", monospace;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 15px;
}

.dropdown-menu>li>a {
    font-weight: 300;
}

a {
    color: #009688;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 767px) {
    .navbar-toggle {
        margin-right: 0px;
    }
}

a.button-primary {
    background: #dcaf1b;
    border-radius: 8px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
}

a.button-primary:hover {
    text-decoration: none;
    background: #eee;
    border:solid 1px #009688;
    color: #009688;
}

a.button-default {
    background: #FFF;
    border-radius: 8px;
    border: solid 1px #009688;
    text-transform: uppercase;
    color: #009688;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
}

a.button-default:hover {
    text-decoration: none;
    background: #eee;
    border:solid 1px #212121;
    color: #212121;
}

.btn-primary {
    background: #009688;
    border: #009688;
}


.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Back to top */
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;

    border-radius: 25px;
    background: rgba(0,0,0,0.2);
    width: 50px;
    height: 50px;
    padding: 15px 0px 0px 18px;
    color: #212121;
}


.back-to-top:hover {
    background: #009688;
    color: #fff;
}


a img:hover{
    opacity: 0.8;
}

.caret-up {
    width: 0; 
    height: 0; 
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid;

    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
}

.dropcaps {
    color: #009688;
    float: left;
    font-family: Georgia;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
}

.dropcaps-small {
    color: #aaa;
    float: left;
    font-family: Georgia;
    font-size: 50px;
    line-height: 50px;
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 5px;
}


.carousel .carousel-indicators li {
    border-radius: 8px;
    width: 40px;
}

.item-covert:hover .item-hover {
    cursor: pointer;
    visibility: visible;
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.9)";
}

.item-covert .item-hover {
    background-color: #009688;
    padding: 30px;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(100% - 30px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: visible;
    z-index: 10;
    border-radius: 8px;
    margin-left: 15px;
    padding-right: 30px;
    color: #FFF;
    height: 100%;
}

.item-covert .item-hover .description {
    padding-top: 10px;
    padding-bottom: 40px;
}

.item-covert .item-hover .button a{
    border-radius: 8px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border: solid 1px #fff;
}   

.item-covert .item-hover .button a:hover {
    text-decoration: none;
    background: #fff;
    color: #009688;
    cursor: pointer;
}

@media (max-width: 767px) {
    .item-covert .item-hover {
        margin-left: 0px;
        width: 100%;
    }
}



.panel-toparrow {
    position: relative;
}

.panel-toparrow::after {
    content: url(../images/letstry-toparrow.png);
    position: absolute;
    left: 50%;
    top: -40px;
    margin-left: -42px;
}

@media (max-width: 767px) {
    .panel-toparrow::after {    
        transform: scale(.5);
    }
}

.faqs-group .panel h4{
    font-family: 'Roboto', sans-serif;    
}

.faqs-group .panel h4 a:hover, .faqs-group .panel h4 a:focus {
    color: #009688;
    text-decoration: none;
}

.faqs-group .panel-body img {
    width: 100%;
    border-radius: 3px;
}

.faqs-group .right-arrow {
    font-size: 14px;
    color: #666;
    margin-top: 1px;
}

.faqs-group .panel-default>.panel-heading {
    background-color: #fff;
    padding: 4px 15px 5px 0px;
}

.faqs-group .panel {
    border-color: #fff;
    box-shadow: none;
}

.faqs-group .panel .panel-body {
    border: solid 1px rgba( 0,0,0, 0.1);
    border-radius: 8px 8px 0px 0px;
}

.faqs-group .panel .panel-footer {
    border: solid 1px rgba( 0,0,0, 0.1);
    border-top: 0px;
    border-radius: 0px 0px 8px 8px;    
}

.faqs-group .panel-title a {
    font-size: 14px;
    font-weight: normal;
}


/* Tab + panel BEG ****/

.panel.with-nav-tabs .panel-heading{
    padding: 5px 5px 0 5px;
}
.panel.with-nav-tabs .nav-tabs{
    border-bottom: none;
}
.panel.with-nav-tabs .nav-justified{
    margin-bottom: -1px;
}
/********************************************************************/
/*** PANEL DEFAULT ***/
.with-nav-tabs.panel-default .nav-tabs > li > a,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
    color: #777;
}
.with-nav-tabs.panel-default .nav-tabs > .open > a,
.with-nav-tabs.panel-default .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-default .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
    color: #777;
    background-color: #ddd;
    border-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.active > a,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #fff;
    border-color: #ddd;
    border-bottom-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f5f5f5;
    border-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #777;   
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #555;
}
/********************************************************************/
/*** PANEL PRIMARY ***/
.with-nav-tabs.panel-primary .nav-tabs > li > a,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff;
}
.with-nav-tabs.panel-primary .nav-tabs > .open > a,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff;
    background-color: #3071a9;
    border-color: transparent;
}
.with-nav-tabs.panel-primary .nav-tabs > li.active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:focus {
    color: #428bca;
    background-color: #fff;
    border-color: #428bca;
    border-bottom-color: transparent;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #428bca;
    border-color: #3071a9;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #fff;   
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #3071a9;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    background-color: #4a9fe9;
}
/********************************************************************/
/*** PANEL SUCCESS ***/
.with-nav-tabs.panel-success .nav-tabs > li > a,
.with-nav-tabs.panel-success .nav-tabs > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li > a:focus {
    color: #3c763d;
}
.with-nav-tabs.panel-success .nav-tabs > .open > a,
.with-nav-tabs.panel-success .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-success .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-success .nav-tabs > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li > a:focus {
    color: #3c763d;
    background-color: #d6e9c6;
    border-color: transparent;
}
.with-nav-tabs.panel-success .nav-tabs > li.active > a,
.with-nav-tabs.panel-success .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.active > a:focus {
    color: #3c763d;
    background-color: #fff;
    border-color: #d6e9c6;
    border-bottom-color: transparent;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #3c763d;   
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #d6e9c6;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #3c763d;
}
/********************************************************************/
/*** PANEL INFO ***/
.with-nav-tabs.panel-info .nav-tabs > li > a,
.with-nav-tabs.panel-info .nav-tabs > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li > a:focus {
    color: #31708f;
}
.with-nav-tabs.panel-info .nav-tabs > .open > a,
.with-nav-tabs.panel-info .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-info .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-info .nav-tabs > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li > a:focus {
    color: #31708f;
    background-color: #bce8f1;
    border-color: transparent;
}
.with-nav-tabs.panel-info .nav-tabs > li.active > a,
.with-nav-tabs.panel-info .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.active > a:focus {
    color: #31708f;
    background-color: #fff;
    border-color: #bce8f1;
    border-bottom-color: transparent;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #31708f;   
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #bce8f1;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #31708f;
}
/********************************************************************/
/*** PANEL WARNING ***/
.with-nav-tabs.panel-warning .nav-tabs > li > a,
.with-nav-tabs.panel-warning .nav-tabs > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li > a:focus {
    color: #8a6d3b;
}
.with-nav-tabs.panel-warning .nav-tabs > .open > a,
.with-nav-tabs.panel-warning .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-warning .nav-tabs > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li > a:focus {
    color: #8a6d3b;
    background-color: #faebcc;
    border-color: transparent;
}
.with-nav-tabs.panel-warning .nav-tabs > li.active > a,
.with-nav-tabs.panel-warning .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.active > a:focus {
    color: #8a6d3b;
    background-color: #fff;
    border-color: #faebcc;
    border-bottom-color: transparent;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #8a6d3b; 
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #faebcc;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #8a6d3b;
}
/********************************************************************/
/*** PANEL DANGER ***/
.with-nav-tabs.panel-danger .nav-tabs > li > a,
.with-nav-tabs.panel-danger .nav-tabs > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li > a:focus {
    color: #a94442;
}
.with-nav-tabs.panel-danger .nav-tabs > .open > a,
.with-nav-tabs.panel-danger .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-danger .nav-tabs > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li > a:focus {
    color: #a94442;
    background-color: #ebccd1;
    border-color: transparent;
}
.with-nav-tabs.panel-danger .nav-tabs > li.active > a,
.with-nav-tabs.panel-danger .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.active > a:focus {
    color: #a94442;
    background-color: #fff;
    border-color: #ebccd1;
    border-bottom-color: transparent;
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f2dede; /* bg color */
    border-color: #ebccd1; /* border color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #a94442; /* normal text color */  
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ebccd1; /* hover bg color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff; /* active text color */
    background-color: #a94442; /* active bg color */
}

/* Tab + panel END ****/


.tagcloud
{

}
.tagcloud .tag-1
{
    font-size: 12px; 
    color: #aaa;
}
.tagcloud .tag-2
{
    font-size: 14px; 
    color: #31708f;
}
.tagcloud .tag-3
{
    font-size: 16px; 
    color: #4a9fe9;
}
.tagcloud .tag-4
{
    font-size: 22px; 
    color: #8a6d3b;
}
.tagcloud .tag-5
{
    font-size: 26px; 
    color: #009688;
}

.tagcloud a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.pagination>li>a, .pagination>li>span {
    color: #009688;
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover, .pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #009688;
    border-color: #009688;
    color: #fff;
}

.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.mega-dropdown .nav-list > li { 
    padding: 20px 15px 15px;
    border-left: 1px solid #eee; 
}
.mega-dropdown .nav-list > li:last-child { border-right: 1px solid #eee; }
.mega-dropdown .nav-list > li > a:hover { text-decoration: none; }
.mega-dropdown .nav-list > li > a > span {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

.mega-dropdown {     
}

.mega-dropdown-menu {
    padding: 20px 15px 15px;
    border-right: 0px;
    border-left: 0px;
    width: 600px;
}

.pagination-lg>li>a, .pagination-lg>li>span {
    margin-right: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}


.pagination-lg>li>a:hover, .pagination-lg>li>span:hover {
    color: #fff;
    background: #009688;
    border:solid 1px #009688;
}


.hovereffect {
    overflow:hidden;
    position:relative;
    cursor:pointer;
}

.hovereffect .overlay {
    width:100%;
    height:100%;
    position:absolute;
    overflow:hidden;
    top:0;
    left:0;
    opacity:0;
    background-color:rgba(255,255,255,0.2);
    -webkit-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out
}

.hovereffect img {
    display:block;
    position:relative;
    -webkit-transition:all .4s linear;
    transition:all .4s linear;
}

.hovereffect a.info {
    text-decoration:none;
    display:inline-block;
    color:#fff !important;
    background-color:#009688;
    opacity: 0.6;
    width: 100%;
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    padding:7px 14px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.hovereffect a.info:hover {
    box-shadow:0 0 5px #fff;
}

.hovereffect:hover img {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}

.hovereffect:hover .overlay {
    opacity:1;
    filter:alpha(opacity=100);
}

.hovereffect:hover a.info {
    opacity:1;
    filter:alpha(opacity=100);
    -ms-transform:translatey(0);
    -webkit-transform:translatey(0);
    transform:translatey(0);
}

.hovereffect:hover a.info {
    -webkit-transition-delay:.2s;
    transition-delay:.2s;
}

.hovereffect .overlay .full {
    text-decoration:none;
    display:inline-block;
    color:#fff !important;
    background-color:#009688;
    opacity: 0.8;
    width: 100%;
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    padding:0px 15px 7px 15px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 0px 0px 8px 8px;
    text-align: center;
}

.hovereffect .overlay .full h3{
    font-size: 18px;
}

.hovereffect .overlay .full .button {
    margin-top: 15px;
    margin-bottom: 20px;
}

.hovereffect .overlay .full .button a{
    color: #fff;
    padding-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border-bottom:solid 1px #fff;
}


.hovereffect .overlay .full .button a {
    color: #FFF;
    width: initial;
}

.hovereffect .overlay .full .button:hover a {
    color: #ffcfcf;
    text-decoration: none;
    cursor: pointer;
}

.hovereffect .name {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px;
    border-radius: 0px 0px 8px 8px;
    text-align: center;
}

@media (max-width: 767px) {
    .hovereffect .name {
        font-size: 12px;
        padding: 5px;
    }

    .hovereffect .overlay .full {
        font-size: 12px;
        padding: 5px;
    }

    .hovereffect .overlay .full .button {
        margin-bottom: 10px;
    }
}

.gray-background {
    background: #f6f6f4;
}

.under-line {
    padding-bottom: 10px;
    margin-bottom: 30px;    
    color: #009688;
    position: relative;
    padding-top: 10px;
}

.under-line .line {
    border-bottom: 3px solid #fff;
    position: absolute;
    bottom: 0px;
    left:0px;
    width: 50px;
}

.under-line .subtitle {
    font-size: 12px;
    color: #757575;
    font-weight: 300;
    padding-top: 5px;
    padding-bottom: 10px;
}

.table-default tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.table-default tr:last-child td:last-child {
    border-bottom-left-radius: 8px;
}


/* list styles */

ol.big-numbers {
    list-style: none;
    color: #ccc;
    padding-left: 0px;
    padding-top: 15px;
}

ol.big-numbers li {
    font: bold 24pt helvetica, arial, sans-serif;
    position: relative;
    margin-bottom: 20px;
}

ol.big-numbers li p {
    font-size: 14px;
    font-weight: 300;
    color: #555;
    padding-left: 60px;
}

ol.big-numbers span {
    position: absolute;
    line-height: 32px;
}


u.keyword {
    background: #fff4d0;   
}

.color-primary {
    color: #009688;
}

.content-begin {
    padding-top: 20px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .content-begin {  
        padding-bottom: 20px;
    }

    .content-begin img.demo {
        width: 100%;
        padding-bottom: 15px;

    }
}


/* Float action buttons */

.fab {
    background: #009688;
    width: 50px;
    height: 50px;
    padding-top: 5px;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5), 3px 3px 3px rgba(0, 0, 0, 0.25);
    position: fixed;
    bottom: 20px;
    right: 32px;
    font-size: 1.5em;
    display: inline-block;
    cursor: default;
    z-index: 1200;
}
.fab span {
    vertical-align: middle;
}
.fab.child {
    right: 35px;
    width: 45px;
    height: 45px;
    display: none;
    opacity: 0;
    font-size: 1.3em;
    background: #757575;

}

.fab.child .inner {
    position: relative;
}

.fab.child .inner .text {
    position: absolute;
    right: 55px;
    bottom: -4px;
    color: #212121;
    width: max-content;
    font-size: 14px;
    text-align: right;
    padding: 5px 15px 5px 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2), 3px 3px 3px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.fab-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    opacity: 0.9;
    display: none;
    z-index: 1199;
}




/* Configuration */
.textalign {
    text-align: justify;
}

/* LOGO */

.logo {
    margin-top: -8px;
    position: relative;
}

.logo img {
    height: 44px;
}

.logo img:hover {
    opacity: 1;
}

.logo .name {
    position: absolute;
    left: 50px;
    top: 2px;
    font-family: 'Hind Siliguri', cursive;
    color: #009688;
    font-size: 30px;
    font-weight: 700;
}

.logo .slogan {
    position: absolute;
    left: 50px;
    top: 35px;
    font-family: 'Roboto', sans-serif;
    color: #757575;
    width: 250px;
    font-size: 13px;
    font-weight: 300;
}

/* HEADER NAVBAR */

header .navbar {
    margin-bottom: 0px;
    background: #fff!important;
  padding: 10px 0px 10px 0px;
    border-bottom: solid 1px rgba( 0,0,0, 0.1);
    box-shadow: 8px -1px 3px 0px #888;
}

header .navbar-nav>li a {
    padding-top: 6px;
    padding-bottom: 6px;
    color: #212121;
}

header .navbar-nav>li.active a{
    color: #009688;

} 

header .navbar-nav>li.active ul li a{
    border: 0px;
    color: #212121;
} 

header .navbar-nav>li.menu-alert .badge{
    position: absolute;
    left: 23px;
    top:5px;
    font-size: 8px;
    font-weight: 300;
    padding: 3px 5px;
    background-color: #009688;
}

header .navbar-nav>li.menu-alert .dropdown-menu:before {
    right: -253px;
}

header .navbar-nav>li.menu-alert .mega-dropdown-menu {
    width: 300px;
}

header .navbar-nav>li.menu-alert .mega-dropdown-menu .media-body {
    padding-top: 0px;
}

header .navbar-nav>li.menu-alert .mega-dropdown-menu .media-body h4 {
    font-weight: 300;
}

header .navbar-nav>li.menu-alert .mega-dropdown-menu .media-left img {
    width: 40px;
    height: 40px;    
    border-radius: 30px;
}

header .navbar-nav>li.menu-alert .mega-dropdown-menu li.showalls {
    text-align: center;
}

header .navbar-nav>li.menu-alert .alert-label {
    display: none;
}

header .navbar-nav li.li-search form{
    width: 250px;

}

header .navbar-nav li.li-search form .btn-primary {
    background: #009688;
    border: solid 1px #009688;
}

header .nav .open>a, header .nav .open>a:focus, header .nav .open>a:hover {
    border: 0px;    
}

header .nav .open>a, header .nav .open>a:focus, header .nav .open>a:hover {
    background-color: transparent;
    color: #009688;
}

header .nav>li>a:focus, header .nav>li>a:hover {
    background-color: transparent;
    color: #009688;
}

header .navbar-nav>li>.dropdown-menu {
    border-radius: 0px 0px 8px 8px;
    top: 48px;
}

header .navbar-right {
    height: 37px;
}

header .navbar-nav>li>.dropdown-menu:before {
    content: url(../images/menu-toparrow.png);
    position: absolute;
    right: 0px;
    top: -28px;
    margin-left: -0px;
}

/* MEGA MENU */

.mega-dropdown-menu .widget-features ul li .media-body h4 a {
    font-size: 14px;
    font-weight: 400;
}

.mega-dropdown-menu .widget-features ul li.bigger .media-body h4 a {
    font-size: 16px;
    font-weight: 400;
}

.mega-dropdown-menu .blog-menu {
    padding-left: 0px;
    padding-right: 0px;
}

.mega-dropdown-menu .short-menu{

    padding-left: 0px;
}

.mega-dropdown-menu .short-menu li{
    list-style-type: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

.mega-dropdown-menu .short-menu li a:hover {
    color: #009688;
}

.mega-dropdown-menu .short-menu .short-menu-header{
    padding-top: 20px;
    font-size: 11px;
    color: #aaa;    
    border-bottom: solid 1px #eee;
	font-style: bold;
}

.mega-dropdown-menu .under-line {
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-top: 0px;
}


/* SLIDER */

.slider .carousel-inner>.item:after {
    display: block;
    position: relative;
    /*background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.8));*/
    margin-top: -400px;
    height: 400px;
    width: 100%;
    content: "";
}

.slider .carousel-inner>.item .slide-image {
    height: 750px;
    width: 100%;
    background-position: center center !important;
}

.slider .carousel-inner>.item img{
    min-height: 750px;
    width: auto;
}

.slider .carousel-inner>.item .welcome{
    position: absolute;
    top: 170px;
    width: 100%;
    text-align: right;
    font-family: 'Hind Siliguri', cursive;
    z-index: 100;
	padding:0px 50px 0px 0px;
}

.slider .carousel-inner>.item .welcome .title {
    font-size: 32px;    
    color: #009688;
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

.slider .carousel-inner>.item .welcome .subtitle {
    font-size: 18px;
    color: #212121;
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;

}

.slider .carousel-inner>.item .welcome .button {
    padding-top: 40px;
}

.slider .carousel-inner>.item .welcome .button a:first-child {
    margin-right: 10px;
}

.slider .carousel-inner .services {
    position: absolute;
    top: 520px;
    width: 100%;
    z-index: 10;
}
.slider .carousel-inner .services .service-item {
    border: solid 1px rgba( 255, 255, 255, 0.8 );
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    margin-left: 20px;
    text-align: center;   
}

.slider .carousel-inner .services .service-item:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #009688;
    cursor: pointer;
}

.slider .carousel-inner .services .service-item .title {
    font-size: 27px;
    font-family: 'Hind Siliguri', cursive;
}

.slider .carousel-indicators li.active {
    margin: 1px;
}

.carousel-control.right, .carousel-control.left {
    background-image: none;
}

.carousel-control {
    width: 4%;
}

/* Home WHY YOU SHOULD CHOOSE US */

.home-why {
    text-align: center;
    padding-bottom: 10px;
}

.home-why h3 {
    margin-top: 80px;    
    font-size: 27px;
}

.home-why .subtitle{
    margin-bottom: 50px;
}

.home-why .item .media {
    float: right;
    text-align: left;

}

.home-why .item a {
    color: #212121;
}

.home-why .item .media img {
    margin-right: 20px;
}

.home-why .item .media h4 {
    color: #009688;
    padding-top: 10px;    
}

.home-why .item .media h4:hover {
    color: #212121;
}

.home-why .item .media img {
    height: 75px;
    width: 75px;
}

.home-why .item:hover .media img {
    -ms-transform:scale(0.9);
    -webkit-transform:scale(0.9);
    transform:scale(0.9);
}

/* Home TRY FREE */
.home-letstry {
    background: #f6f6f4;
    position: relative;
    margin-top: 40px;
}

.home-letstry .toparrow {
    position: absolute;
    left: 50%;
    top:-40px;
    margin-left: -42px;
}

.home-letstry .col-left {
    padding-top: 50px;
}

.home-letstry .col-right {
    padding-top: 90px;
    padding-left: 40px;
}

.home-letstry .description {
    padding-bottom: 50px;
}

.home-letstry .button {
    padding-bottom: 30px;
}

.home-letstry img.mockup {
    width: 100%;
}

/* Home WHAT WE DID */

.home-whatwedid {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
}

.home-whatwedid .subtitle {
    padding-bottom: 40px;
}

.home-whatwedid .item {
    position: relative;
    margin-bottom: 30px;
}

.home-whatwedid .item img
{
    height: 260px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.home-whatwedid .item:hover .name {
    display: none;
}

/* Home TRY 30 DAYs */

.home-tryfree30 {
    background: #f6f6f4;
    position: relative;
    margin-top: 40px;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 80px;
}

.home-tryfree30 .toparrow {
    position: absolute;
    left: 50%;
    top:-40px;
    margin-left: -42px;
}

.home-tryfree30 .description {
    padding-top: 20px;
}

.home-tryfree30 .button {
    padding-top: 40px;
}
.home-tryfree30 .button a:first-child {
    margin-right: 10px;
}


/* Home TEAM */
.home-team {
    text-align: center;
    
    padding-bottom: 50px;
}

.home-team .home-team-slider {
    position: relative;
   
}

.home-team .home-team-slider .carousel-inner>.item .slide-image {
    height: 520px;
    width: 100%;
    background-position: center center !important;
}


.home-team .home-team-slider .carousel-inner>.item .welcome {
    position: relative;
}

.home-team .home-team-slider .carousel-inner>.item .welcome .inner {
    background: rgba(0,0,0,0.6);
    position: absolute;
    left: 0px;
    height: 520px;
    color: #fff;
    padding-top: 60px;
    text-align: left;
    padding-left: 40px;
}

.home-team .home-team-slider .carousel-inner>.item .welcome .inner .subtitle{
    margin-bottom: 60px;
} 

/* Home PARTNERS */

.home-partners {
    text-align: center;
    padding-top: 10px;
    

}
.home-partners h3 {
    padding-bottom: 30px;
}


.home-partners .partner {
    width: 132px;
    height: 89px;
    border-radius: 8px;
    border: solid 1px rgba(0,0,0,0.05);
    margin-right: 20px;
    display:inline-block;
    cursor: pointer;
    margin-bottom: 15px;
    background-position: center center !important;
}

.home-partners .partner:hover {
    border: solid 1px rgba(0,0,0,0.1);
    background-size: 110% 110% !important;    
}

/* Home numbers */

.home-numbers {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
}

.home-numbers .subtitle {
    padding-bottom: 40px;
}

.home-numbers .inner .item {

}

.home-numbers .inner .item .photo {
    width: 120px;
    height: 120px;
    text-align: center;
    display: inline-block;
}

.home-numbers .inner .item .photo img {
    height: 75px;
    margin-top: 20px;
}

.home-numbers .inner .item h5 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.home-numbers .inner .item:hover .photo img {
    -ms-transform:scale(0.9);
    -webkit-transform:scale(0.9);
    transform:scale(0.9);
}

.home-numbers .inner .item:hover h5 {
    color: #009688;
}

/* Home numbers2 */

.home-numbers2 {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
    background: #f6f6f4;
    padding-top: 100px;
}

.home-numbers2 .subtitle {
    padding-bottom: 40px;
}

.home-numbers2 .inner .item {

}

.home-numbers2 .inner .item:hover{
    color: #009688;
    cursor: pointer;
}

.home-numbers2 .inner .item .photo {
    width: 120px;
    height: 120px;
    text-align: center;
    display: inline-block;
}

.home-numbers2 .inner .item .photo img {
    height: 75px;
    margin-top: 20px;
}

.home-numbers2 .inner .item:hover .photo img {
    -ms-transform:scale(0.9);
    -webkit-transform:scale(0.9);
    transform:scale(0.9);
}

.home-numbers2 .inner .item h5 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

/* Home BLOGS */

.home-blogs {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
    background: #f6f6f4;
}

.home-blogs .menu {
    padding-top: 10px;
    padding-bottom: 40px;
}

.home-blogs .menu ul li{
    list-style-type: none;
    display:inline-block;
    margin-right: 20px;
}

.home-blogs .menu ul li a {
    color: #212121;
}

.home-blogs .menu ul li a:hover {
    color: #009688;
    text-decoration: none;
}

.home-blogs .menu ul li.active {
    border: solid 1px #ddd;
    border-radius: 8px;
    padding: 6px 10px;

}

.home-blogs .article {
    border-radius: 8px;
    border: solid 1px rgba(0,0,0,0.05);
    background: #fff;
}

.home-blogs .article:hover {
    border: solid 1px rgba(0,0,0,0.1);
}

.home-blogs .article a {
    color: #212121;
    font-weight: 400;
    color: #009688;
}

.home-blogs .article a:hover {
    color: #212121;
    text-decoration: none;
}

.home-blogs .article .article-img img{
    height: 220px;
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    object-fit: cover;
}

.home-blogs .article .article-content {
    padding: 5px 20px 15px 20px;
    text-align: left;
}

.home-blogs .article .article-content h5 {
    height: 40px;
}

.home-blogs .article .article-content h5 a{
    font-size: 18px;
    color: #212121;
}

.home-blogs .article .article-content h5 a:hover {
    color: #009688;
}

.home-blogs .article .article-content .date{
    font-size: 12px;
    color: #aaa;
    padding-top: 20px;
    padding-bottom: 15px;
}

.home-blogs .article {
    position: relative;
}

.sticky-feature, .sticky-new {
    position: relative;
}

.sticky-feature::before {
    content: 'Feature';
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 8px 0px 8px 0px;
    padding: 8px 15px;
    z-index: 100;
    color: #fff;
    background: #009688;
    width: 80px;
}


.sticky-new::before {
    content: 'New';
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 8px 0px 8px 0px;
    padding: 8px 15px;
    z-index: 100;
    color: #fff;
    background: #009688;
    width: 80px;
}

.home-blogs .carousel-indicators {
    bottom: -60px;
}

.home-blogs .carousel-indicators li {
    border: solid 1px #aaa;
}

.home-blogs .carousel-indicators li.active {
    background: #ddd;
}

/* Home PRICING */
.home-pricing {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
    background: #f6f6f4;
}

.home-pricing .inner{
    padding-top: 50px;
}

.home-pricing .pricing {
    border-radius: 8px;
    border: solid 1px rgba(0,0,0,0.05);
    background: #fff;

}

.home-pricing .pricing .inner {
    padding: 15px;
}

.home-pricing .pricing .pricing-head {
    background: rgba(0,0,0,0.1);
    padding: 10px 15px 10px 10px;
    border-radius: 8px 8px 0px 0px;
    border-bottom: solid 1px rgba(0,0,0,0.05);
}

.home-pricing .pricing h3{
    font-size: 22px;
    margin-top: 8px;
}

.home-pricing .pricing h5 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-top: 10px;
}

.home-pricing .pricing .price {
    padding-top: 20px;
    padding-bottom: 15px;
    color: #009688;
}

.home-pricing .pricing .description {
    padding-top: 30px;
}

.home-pricing .pricing .button {
    padding-top: 30px;
    padding-bottom: 20px;
}

.home-pricing .pricing-feature {
    margin-top: -20px;
    padding-bottom: 35px;
}
.home-pricing .pricing-feature .pricing-head {
    background: #009688;
    color: #fff;
}

.home-pricing .pricing-feature .button {
    padding-top: 50px;
}

.home-pricing .pricing:hover {
    border: solid 1px rgba(0,0,0,0.1);
}

/* Home Testimonial */

.home-testimonial {
    text-align: center;
    padding-top: 50px;
    
    position: relative;
  
}

.home-testimonial .avatar {
    padding-bottom: 0px;
    padding-top: 30px;
}

.home-testimonial .avatar img{
    height: 50px;
    width: 50px;
    object-fit: cover;

}

.home-testimonial h5 {
    font-size: 24px;
    color: #009688;
    margin-top: 15px;
}

.home-testimonial .info {
    color: #aaa;
}

.home-testimonial .quotes {
    width: 60%;
    margin-left: 20%;
    padding-top: 10px;
}

.home-testimonial .carousel-inner .item {
    height: 325px;
}

.home-testimonial .carousel-indicators {
    bottom: -50px;
}

.home-testimonial .carousel-indicators li {
    border:solid 1px #aaa;
}

.home-testimonial .carousel-indicators li.active {
    background: #ddd;
}

.home-testimonial a {
    color: #009688;
    cursor: pointer;

}
/* Home SUBCRIBE */

.home-subcribe {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f6f6f4;
    position: relative;
    margin-bottom: 30px;
}

.home-subcribe .background {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)), url(../images/bg-subcribe.jpg);
    background-size: cover; 
    background-position:  center center;
    position: absolute;  
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.home-subcribe form {
    max-width: 650px;
    display: inline-block;
    padding-top: 40px;
    padding-bottom: 50px;

}

.home-subcribe h3, .home-subcribe .subtitle{
    z-index: 100;
    position: inherit;
}


.home-subcribe form .btn-primary {
    background: #009688;
    border: solid 1px #009688;
}

/* Home Contact */

.home-contact {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;

}

.home-contact a {
    color: #212121;
}

.home-contact a:hover {
    text-decoration: none;
    color: #009688;
}

.home-contact h3 {
    margin-bottom: 30px;
    margin-top: 0px;
}

.home-contact .col-left {
    text-align: left;
}

.home-contact .col-left .media {
    padding-bottom: 20px;
}

.home-contact .col-right {
    text-align: left;
}

.home-contact .btn-primary {
    background: #009688;
    border: solid 1px #009688;
}

.home-contact .btn-primary:hover {
    background: #fff;
    color: #009688;
}

/* Footer */

footer {   
    background: linear-gradient(rgba(140, 140, 140, 0.88), rgb(130, 130, 130)),   url(../images/footer.jpg); /* BEST */
    color: #fff;
    position: relative;
}

footer .logo {
    margin-top: 5px;
}


footer .logo .name {
    color: #fff;
}

footer .col-footer {
    min-height: 330px;
    padding-top: 30px;
}

footer .col-footer:last-child {
    border-right: 0px;
}

footer a {
    color: #ddd;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

footer .col-about .logo{
    padding-bottom: 30px;
}

footer .col-about .about-us{
    padding-bottom: 20px;
}

footer .col-about .social img{
    margin-right: 10px;
}

footer .col-link {

    padding-left: 20px;
}

footer .col-link h3 {
    font-size: 18px;
    padding-bottom: 10px;
}

footer .col-link ul li {
    list-style-type: none;
}

footer .col-link ul {
    -webkit-padding-start: 0px;
}

footer .footer-under {
    border-top: solid 1px #444;
    padding: 20px 0px 20px 0px;
    text-align: center;
}

footer ul.tags li{
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 5px;
}

footer ul.tags li a {
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    margin-right: 5px;   
    color: #fff;
    font-size: 12px;
}

footer ul.tags li a:hover{
    color: #fff;
    text-decoration: none;
    background: #009688; 
}

footer .footer-row {
   
}

footer .col-posts {
    padding-bottom: 30px;
}

footer .col-posts h3 {
    font-size: 18px;
    padding-bottom: 15px;
}

footer .col-posts ul {
    padding-left: 0px;  
}

footer .col-posts ul li{
    list-style-type: none; 
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

footer .col-posts ul li:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

footer .col-posts ul li .media-left img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
    margin-top: 5px;
}

footer .col-posts ul li .media-body h4 a{
    font-family: 'Roboto', sans-serif;  
    color: #fff;
    font-size: 16px;
}

footer .col-posts ul li .media-body h4 a:hover {
    text-decoration: none;
    color: #ddd;
}

footer .col-posts ul li .media-body .date {
    color: #ccc;
    padding-top: 5px;
    font-size: 80%;
}

footer .col-posts ul li .media-body .date a {
    color: #212121;
}

footer .col-photos .photo img {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

footer .col-photos h3 {
    font-size: 18px;
    padding-bottom: 15px;
}

footer h3.under-line {
    color: #FFF;
    padding-top: 0px;
    margin-top: 0px;
}

@media (max-width: 767px) {
    footer h3.under-line {
        padding-top: 10px;
        margin-top: 0px;
        margin-bottom: 15px;
    }

    footer .under-line .line {
        bottom: -5px;
    }
}

/* Detail page */

.detail article {
    padding-top: 20px;
    padding-bottom: 50px;

}

.detail aside {
    padding-top: 20px;
} 

.detail aside .panel {
    margin-bottom: 40px;
}

.detail aside .panel-noborder {
    border-color: #fff;
    box-shadow: none;
}

.detail aside .panel-noborder .panel-heading{
    border-color: #fff;
    background-color: #fff;
    padding: 0px 0px 10px 0px;
    font-size: 16px;
    font-weight: bold;
}

.detail aside .panel-noborder .panel-body {
    padding: 0px;
}

.detail aside .panel-noborder .nav-tabs>li>a:hover {
    background: #fff;
    color: #009688;
    border-bottom: 1px solid #ddd;
}

.detail aside .panel-noborder .nav-tabs {
    border-bottom: 1px solid #ddd;
}

.detail aside .panel-noborder .nav-tabs>li:first-child {
    padding-left: 15px;
}


/* Detail page - header */

.detail-header {
    height: 300px;  
    position: relative;
}

.detail-header .container {
    padding-top: 150px;
    color: #212121;
    position: inherit;
    z-index: 100;    
}

.detail-header h1 {
    padding-left: 15px;
}

.detail-header .breadcrumb {
    background: transparent;
    color: #212121;
}

.detail-header .breadcrumb a {
    color: #009688;
}

.detail-header .breadcrumb .active, .detail-header .breadcrumb li+li:before {
    color: #212121;
}

.detail-header .background {
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .5;
    z-index: 0;
    height: 300px;
}

.detail-header-aboutus .background {
    background:url(../images/slides/slide3.jpg);
    background-position: center center !important;
}

.detail-header-aboutus .bg1 {
    background:url(../images/slides/slide7.jpg);
}
.detail-header-aboutus .bg2 {
    background:url(../images/slides/slide8.jpg);
}
.detail-header-aboutus .bg3 {
    background:url(../images/slides/slide9.jpg);
}



/* Detail page - content - welcome */
 

.detail-welcome {
    padding-top: 80px;
    padding-bottom: 100px;
	background:none repeat scroll 0% 0% rgba(239, 239, 239, 1);
}

.detail-welcome h3 {
    padding-bottom: 10px;
    margin-top: 0px;
}

.detail-welcome ul {
    padding-left: 15px;
}

.detail-welcome .col-1 img{
    width: 500px;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.detail-welcome .button {
    padding-top: 25px;
}
.detail-welcome .button a {
    margin-right: 10px;
}

.detail-welcome2 .col-1 img{
    width: 100%;
}


/* Detail title */
.detail-title {
    margin-top: 10px;
    margin-bottom: 0px;
}

.detail-info .info {
    padding-bottom: 20px;
    color: #aaa;
}

.detail-info .info .category {
    display: inline-block;
}

.detail-info a {
    color: #009688;
}

.blogs-content-detail .detail-mainphoto{
    padding-bottom: 20px;
}


.detail-sharing {
    padding-top: 15px;
    padding-bottom: 0px;
}

.detail-sharing .fa {
    padding: 6px;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 5px;
    margin-bottom: 10px;
}

/* Add a hover effect if you want */
.detail-sharing .fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

.detail-sharing .fa-facebook {
    background: #3B5998;
    color: white;
}

.detail-sharing .fa-twitter {
    background: #55ACEE;
    color: white;
}

.detail-sharing .fa-google {
    background: #dd4b39;
    color: white;
}
.detail-sharing .fa-pinterest {
    background: #cb2027;
    color: white;
}
.detail-sharing .fa-tumblr {
    background: #2c4762;
    color: white;
}
.detail-sharing .fa-reddit {
    background: #ff5700;
    color: white;
}

.detail-sharing .fa-rss {
    background: #ff5700;
    color: white;
}


/* Detail page - Skill - level */

.detail-skills-level {
    padding-bottom: 100px;
    background: #f6f6f4;
    padding-top: 50px;    
}

.detail-skills-level .col-right {
    padding-top: 60px;
}

.detail-skills-level .button {
    padding-top: 25px;
}

.detail-skills-level .progress {
    background: #fff;
}

.detail-skills-level h3 {
    padding-bottom: 10px;
    margin-top: 0px;
}


/* Detail page - members */
.detail-members {
    padding-bottom: 100px;
    padding-top: 50px;
    position: relative;
}

.detail-members .team-item .inner{
    border: solid 1px #eee;
    border-radius: 0px 0px 8px 8px;
    padding: 15px;
    text-align: center;
    background: #f6f6f4;
}

.detail-members .team-item {
    margin-bottom: 25px;

}

.detail-members .team-item .avatar img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
    height: 220px;
}

.detail-members .team-item h5 {
    font-size: 20px;
    color: #009688;
    margin-top: 15px;
}

.detail-members .team-item .info {
    font-size: 14px;
}

.detail-members .team-item .social-networks {
    font-size: 30px;
    padding-top: 30px;
}

.detail-members .team-item .social-networks a {
    color: #fff;
}

.detail-members h3 {
    padding-left: 15px;
    margin-top: 0px;
    padding-bottom: 20px;
}

.detail-members .info {
    font-weight: bold;
    padding-bottom: 10px;
}

.detail-members .carousel .carousel-indicators {
    position: absolute;
    bottom: -20px;
}

.detail-members .carousel .carousel-indicators li {
    border: solid 1px #aaa;
}

.detail-members .carousel .carousel-indicators li.active {
    background: #ddd;
}

.detail-members a {
    color: #212121;
}

.detail-members a:hover {
    color: #009688;
}

#sendMemberEmail .col-left .avatar img{
    object-fit: cover;
}

#sendMemberEmail .btn-primary {
    background: #009688;
    border: solid 1px #009688;
}

/* Detail page - faqs */
.detail-faqs h3 {
    padding-bottom: 10px;
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
}

.detail-faqs .panel-group {
    padding-bottom: 25px;
}

/* Widget search */

.widget-search {
    margin-bottom: 20px;
}


/* Widget Archives */

.widget-archives ul {
    padding-left: 0px;  
}

.widget-archives ul li{
    list-style-type: none;   
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.widget-archives ul li:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.widget-archives ul li a {
    color: #212121;
}

.widget-archives ul li a:hover {
    text-decoration: none;
    color: #009688;
}

.widget-archives ul li a .badge {
    float: right;
}

/* Widget Categories */

.widget-categories ul {
    padding-left: 0px;  
}

.widget-categories ul li{
    list-style-type: none;   
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.widget-categories ul li.active {
    font-weight: bold;
}

.widget-categories ul li.active a {
    color: #009688;
}

.widget-categories ul li:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.widget-categories ul li a {
    color: #212121;    
}

.widget-categories ul li a:hover {
    text-decoration: none;
    color: #009688;
}

.widget-categories ul li a .badge {
    float: right;
}

.widget-categories ul li> ul li {
    padding-left: 15px;
}

.widget-categories ul li> ul li::before {
    content: "- ";
}

.widget-categories ul li> ul li:first-child {
    margin-top: 10px;
    padding-top: 10px;
    border-top: dotted 1px rgba( 0,0,0, 0.1);
}

/* Widget TAB popular|Lastest */

.widget-tab-popular .tab-content ul {
    padding-left: 0px;  
}

.widget-tab-popular .tab-content ul li{
    list-style-type: none; 
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.widget-tab-popular .tab-content ul li:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.widget-tab-popular .tab-content ul li .media-left img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
    margin-top: 0px;
}

.widget-tab-popular .tab-content ul li .media-body h4 a{
    font-family: 'Roboto', sans-serif;  
    color: #212121;
    font-size: 16px;
}

.widget-tab-popular .tab-content ul li .media-body h4 a:hover {
    text-decoration: none;
    color: #009688;
}

.widget-tab-popular .tab-content ul li .media-body .date {
    color: #ccc;
    padding-top: 5px;
    font-size: 80%;
}

.widget-tab-popular .tab-content ul li .media-body .date a {
    color: #212121;
}

/* Detail more question */
.detail-more-question .description {
    padding-bottom: 15px;
}

.detail-more-question {
    background: #f6f6f4;
    padding: 1px 15px 10px 15px;
    border-radius: 4px;
}

/* Widget joinsus */

.widget-joinus {
    margin-top: 50px;
    background: #009688;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 50px;
    text-align: center;        

}

.widget-joinus .button {
    margin-top: 30px;
}


/* Widget features */

.widget-features ul {
    padding-left: 0px;  
}

.widget-features ul li{
    list-style-type: none; 
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.widget-features ul li:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.widget-features ul li .media-left img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
    margin-top: 0px;
}

.widget-features ul li .media-body h4 a{
    font-family: 'Roboto', sans-serif;  
    color: #212121;
    font-size: 16px;
}

.widget-features ul li .media-body h4 a:hover {
    text-decoration: none;
    color: #009688;
}

.widget-features ul li .media-body .date {
    color: #ccc;
    padding-top: 5px;
    font-size: 80%;
}

.widget-features ul li .media-body .date a {
    color: #212121;
}

.widget-features ul li.bigger .media-left {
    display: inline;

}

.widget-features ul li.bigger .media-left img {
    width: 100%;
    height: 180px;
    margin-top: -20px;
}

.widget-features ul li.bigger .media-body h4 {
    margin-bottom: 5px;
}


.widget-features ul li.bigger .media-body h4 a{
    font-size: 20px;
}

.detail-header-contact {
    height: 450px;
}

.blogs-content {
    margin-top: 10px;
}

.blogs-content p {
    margin-bottom: 15px;
    margin-top: 15px;
}

.blog-item-big {
    margin-bottom: 60px;
}

.blog-item-big h3 {
    margin-top: 10px;
}

.blog-item-big h3 a {
    color: #212121;
}

.blog-item-big h3 a:hover {
    color: #009688;
    text-decoration: none;
}

.blog-item-big .photo img {
    width: 100%;
    border-radius: 8px;
    height: 350px;
    max-height: 350px;
    object-fit: cover;
}

.blog-item-big .photo .media-video {
    height: 350px;
    border-radius: 8px;
}

.blog-item-big .info {
    padding-top: 0px;
    padding-bottom: 15px;
    color: #aaa;
}

.blog-item-big .info a {
    color: #009688;
}

.blog-item-big .info .category {
    display: inline-block;
}


.blog-item {
    margin-bottom: 30px;
    border: solid 1px rgba( 0,0,0, 0.1);
    padding-bottom: 15px;
    border-radius: 8px;
}

.blog-item:hover {
    background: #f6f6f4;
}

.blog-item h3 {
    margin-top: 10px;
    font-size: 22px;
}

.blog-item h3 a {
    color: #212121;
}

.blog-item h3 a:hover {
    color: #009688;
    text-decoration: none;
}

.blog-item .photo img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    height: 220px;
    max-height: 220px;
    object-fit: cover;
}

.blog-item .photo .media-video {
    height: 220px;
    border-radius: 8px;
}

.blog-item .info {
    padding-top: 0px;
    padding-bottom: 15px;
    color: #aaa;
}

.blog-item .info a {
    color: #009688;
}

.blog-item .info .category {
    display: inline-block;
}



.blogs-content-3cols .blog-item {
}


.pagination-lazyload{
    width: 100%;
    margin-bottom: 30px;
}
.pagination-lazyload a {
    width: 100%;
    text-align: center;
}

.pagination-lazyload a:hover {

}

.blogs-content-3cols .blog-item h3, .blogs-content-3cols .blog-item .info, .blogs-content-3cols .blog-item .description{
    padding-left: 15px;
    padding-right: 15px;
}

.detail-header-blog-category .background {
    background: #eee;
    height: 190px;
}

.detail-header-blog-category {
    height: 190px;
}

.detail-header-blog-category h1 {
    margin-top: -55px;
}


.detail-header-blogs-detail {
    height: 125px;
}

.detail-header-blogs-detail .background {
    height: 125px;
    background: #eee;
}


.detail-header-blogs-detail .container {
    padding-top: 80px;
}


.detail-header-blogs-detail-full {
    height: 500px;
    margin-bottom: 20px;
}

.detail-header-blogs-detail-full .background {
    height: 500px;
    opacity: 1;
    background-size: cover !important;
}

.detail-header-blogs-detail-full .breadcrumb-item a {
    color: #fff;
}

.detail-header-blogs-detail-full .breadcrumb-item, .detail-header-blogs-detail-full .breadcrumb-item::before {
    color: #ddd !important;
}

.detail-header-blogs-detail-full .container {
    padding-top: 380px;
}

.detail-header-blogs-detail-full .detail-title {
    color: #fff;
}

.blogs-content h1 {
    margin-top: 0px;
    margin-bottom: 30px;
}

.detail-mainphoto img{
    width: 100%;
    border-radius: 8px;
    height: 350px;
    max-height: 350px;
    object-fit: cover;
}


.detail-description {
    font-size: 18px;
    padding-top: 0px;
}

.detail-content {
    padding-top: 15px;
    font-size: 16px;
    color: #212121;
}

.detail-content img{
    width: 100%;
}

.detail-author {
    clear: both;
    padding-top: 20px;
}

.detail-author .avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 8px;
}

.detail-author .avatar {
    display: inline-block;
    float: left;
}

.detail-author .social-networks {
    padding-top: 7px;
}

.detail-author .social-networks a {
    font-size: 30px;
    color: #ddd;
    margin-right: 5px;
}

.detail-author .social-networks a:hover {
    color: #009688;
}

.detail-author legend a {
    color: #009688;
    font-weight: bold;
}

.detail-author fieldset {
    padding-bottom: 10px;
}

.image-box {
    border: 1px dotted rgba(0,0,0,0.05);

}

.image-box:hover {
    background: #f6f6f4;
}

.image-box img {
    width: 100%;
    height: auto;
}

.image-box .desc {
    padding: 10px;
    text-align: center;
    color: #757575;
}

.image-box-50-left {
    width: 50%;
    float: left;
    margin-right: 20px;
}

.image-box-50-right {
    width: 50%;
    float: right;
    margin-left: 20px;
}


/* Ralated post */
.related-blogs {
    padding-left: 0px;
    padding-top: 30px;
}

.related-blogs .posts {
    padding-top: 10px;
}
@media (max-width: 767px) {
    .related-blogs .posts {
        padding-left: 15px;
        padding-right: 15px;
    }

    .related-blogs {
        padding-top: 10px;
    }

}

.related-blogs .posts h3 {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.related-blogs h3 a {
    color: #212121;
}

.related-blogs .posts .info a {
    color: #009688;
}

.related-blogs .posts .info {
    padding-bottom: 10px;
    color: #aaa;
}

.related-blogs a:hover {
    color: #009688;
    text-decoration: none;
}

.related-blogs .item .description{
    padding-bottom: 20px;
}

.related-blogs .item img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* detail-quote */

blockquote {
    font-size: 16px;
    font-style: italic;
    border-left: solid 5px #009688;
    color: #212121;
    padding: 0px 20px;
}

blockquote p{
    margin-top: 0px;
}

blockquote small {
    display: block;
    font-size: 12px;
    padding-top: 20px;
    color: #757575;
}

blockquote a {
    color: #009688;
    text-decoration: underline;
}

blockquote a:hover {
    color: #212121;
}

blockquote .quotemarks::before {
    content: '\f10d';
    font: normal normal normal 16px/1 FontAwesome;
}

blockquote .quotemarks::after {
    content: "\f10e";
    font: normal normal normal 16px/1 FontAwesome;

}


blockquote.border {
    border:solid 1px rgba(0,0,0,0.1);
    border-left: solid 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* detail-comments */

.detail-comments .comments-list {
    padding-left: 0px;
    padding-top: 15px;
}

.detail-comments .comments-list li{
    list-style-type: none;
    border-bottom: dotted 1px rgba( 0,0,0, 0.1);
    margin-bottom: 15px;
    padding-bottom: 20px;
}

.detail-comments .comments-list li:last-child {
    border-bottom: 0px;
}

.detail-comments .comments-list li .media-left img{
    width: 85px;
    height: 85px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
    margin-top: 5px;

}

.detail-comments .comments-list li.item-reply {
    margin-left: 105px;
}

.detail-comments .comments-list li.item-reply img {
    width: 60px;
    height: 60px;
}

.detail-comments .comments-list li .media-body .content .author a{
    font-weight: bold;
    font-size: 16px;
    color: #212121;
}

.detail-comments .comments-list li .media-body .content .text {
    padding-top: 7px;
    padding-bottom: 15px;
}

.detail-comments .comments-list li .media-body .date {
    color: #ccc;
    padding-top: 5px;
    font-size: 80%;
}

.animation-delay-1 {
    -webkit-animation-delay: 0.6s; /* Safari 4.0 - 8.0 */
    animation-delay: 0.6s;
}

.animation-delay-2 {
    -webkit-animation-delay: 0.8s; /* Safari 4.0 - 8.0 */
    animation-delay: 0.8s;
}


.detail-welcome3 {
    padding-top: 30px;
    padding-bottom: 50px;
}

.detail-timeline {
    background: #f6f6f4;

}

/* -----------------------------------------------
 * Timeline
 * --------------------------------------------- */
.timeline {
    list-style: none;
    padding: 40px 15px;
    position: relative;
}
.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content:" ";
    width: 2px;
    background: #ddd;
    left: 50%;
    margin-left: -1.5px;
}
.timeline > li {
    margin-bottom: 20px;
    position: relative;
    width: 50%;
    float: left;
    clear: left;
}
.timeline > li:before, .timeline > li:after {
    content:" ";
    display: table;
}
.timeline > li:after {
    clear: both;
}
.timeline > li:before, .timeline > li:after {
    content:" ";
    display: table;
}
.timeline > li:after {
    clear: both;
}
.timeline > li > .timeline-panel {
    width: calc(100% - 25px);
    width: -moz-calc(100% - 25px);
    width: -webkit-calc(100% - 25px);
    float: left;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    position: relative;
    border-radius: 8px;
}
.timeline > li > .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #dcdcdc;
    border-right: 0 solid #dcdcdc;
    border-bottom: 15px solid transparent;
    content:" ";
}
.timeline > li > .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #ffffff;
    border-right: 0 solid #ffffff;
    border-bottom: 14px solid transparent;
    content:" ";
}
.timeline > li > .timeline-badge {
    color: #ffffff;
    width: 24px;
    height: 24px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 16px;
    right: -12px;
    z-index: 100;
}

.timeline > li > .timeline-badge .fa-circle:before{
    color: #ddd;
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}
.timeline-badge > a {
    color: #ffffff !important;
}
.timeline-badge a:hover {
    color: #dcdcdc !important;
}
.timeline-title {
    margin-top: 0;
    color: inherit;
}
.timeline-heading h4 {
    font-weight: 400;
    padding: 10px 15px 0px 15px;
    color: #009688;
}
.timeline-body > p, .timeline-body > ul {
    padding: 10px 15px;
    margin-bottom: 0;
}
.timeline-footer {
    padding: 5px 15px;
    background-color:#FFF;
    border-top: dotted 1px rgba(0,0,0,0.1);
    border-radius: 0px 0px 8px 8px;
    font-size: 12px;
}
.timeline-footer p { margin-bottom: 0; }
.timeline-footer > a {
    cursor: pointer;
    text-decoration: none;
}
.timeline > li.timeline-inverted {
    float: right;
    clear: right;
}
.timeline > li:nth-child(2) {
    margin-top: 60px;
}
.timeline > li.timeline-inverted > .timeline-badge {
    left: -12px;
}
.no-float {
    float: none !important;
}
@media (max-width: 767px) {
    .timeline {
        padding: 25px 0px 0px 0px;
    }

    ul.timeline:before {
        left: 0px;
        display: none;
    }
    ul.timeline > li {
        margin-bottom: 0px;
        position: relative;
        width:100%;
        float: left;
        clear: left;
    }
    ul.timeline > li > .timeline-panel {
        width: 100%;
    }
    ul.timeline > li > .timeline-badge {
        left: -27px;
        margin-left: 0;
        top: 16px;
        display: none;
    }
    ul.timeline > li > .timeline-panel {
        float: right;
    }
    ul.timeline > li > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
        display: none;
    }
    ul.timeline > li > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
        display: none;
    }
    .timeline > li.timeline-inverted {
        float: left;
        clear: left;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .timeline > li.timeline-inverted > .timeline-badge {
        left: 28px;
    }
}

/* Detail page - content - welcome */
/*
.detail-case-studies {
    padding-top: 60px;
    padding-bottom: 60px;
}*/

.detail-case-studies h3 {
    padding-bottom: 10px;
    margin-top: 0px;
}

.detail-case-studies ul {
    padding-left: 15px;
}

/*.detail-case-studies .col-1 img{
    width: 500px;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}*/

.detail-case-studies .button {
    padding-top: 25px;
}
.detail-case-studies .button a {
    margin-right: 10px;
}

.detail-case-studies .customer {
    padding-top: 15px;
}

.detail-case-studies .customer b, .detail-case-studies .description b {
    color: #009688;
}

.detail-typography .header-title, .detail-typography .google-font, .detail-typography .block-quote, .detail-typography .drop-caps,  .detail-typography .list-big-numbers {
    padding-bottom: 40px;
}

.detail-typography .header-title .inner{
    border: solid 1px rgba(0,0,0,0.1);
    padding: 15px;
    background: #f6f6f4;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #212121;
}

.detail-typography .google-font .item{
    padding-bottom: 15px;
}
.detail-typography .google-font .item .inner {
    border: solid 1px rgba(0,0,0,0.1);
    padding: 15px;
    background: #f6f6f4;
    border-radius: 8px;
    height: 90px;
}


.detail-signin .signin-form .button {
    padding-top: 15px;
}

.detail-signin .model-l {    
    padding-right: 0px;    
}

.detail-signin .model-r .o-r {
    bottom: 0;
    height: 40px;
    margin: auto;
    overflow: hidden;
    position: absolute;
    left: -22px;
    top: 0;
    width: 40px;
    z-index: 99999;
}
.detail-signin .model-r .o-r span {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #ccc;
    color: #666;
    display: block;
    height: 100%;
    padding: 8px 0 0;
    text-align: center;
    width: 100%;
    border-radius: 100%;
    display:block;
    position: relative;
}
.detail-signin .model-r {
    padding-left: 30px;
    position: relative;
    border-left: 3px dotted #cccccc;
}

.detail-signin .forgot {
    display: none;
    border-top: solid 1px rgba(0,0,0,0.1);
    padding-top: 25px;
    margin-top: 15px;
}

.detail-signin .col-explain {
    padding-top: 25px;
}

.detail-signin .col-explain .content {
    padding-bottom: 20px;
}


.search-item .media-object{
    height: 140px;
    width: 200px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 8px;
}

.search-item .description{
    padding-top: 15px;
}

.search-item .date {
    color: #ccc;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 80%;
}

.search-item {
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: dotted 1px rgba(0,0,0,0.1);
}

.search-item h4 {
    font-size: 22px;
}


.blogs-search .nothing-found-big {
    color: #ddd;
}

.blogs-search .nothing-found-big span {
    font-size: 60px;
}

.blogs-search .nothing-found-big div.nothing {
    font-size: 100px;
    font-weight: 700;
    margin-top: -40px;
    margin-left: -3px;
}

.blogs-search .nothing-found-big div.bottom {
    padding-top: 10px;
    color: #757575;
    padding-left: 0px;
    padding-bottom: 25px;
}

.error-webpage {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 150px;
}

.error-webpage h2 {
    font-size: 50px;
    color: #212121;
    font-weight: 100;
    margin-bottom: 20px;
}

.error-webpage .content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 30px;
}


/* Home TEAM */
.blogs-feature {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 50px;
}

.blogs-feature .blogs-feature-slider {
    position: relative;
    margin-top: 0px;
}

.blogs-feature .blogs-feature-slider .carousel-inner>.item .slide-image {
    height: 520px;
    width: 100%;
    background-position: center center !important;
    background-size: cover !important;
}


.blogs-feature .blogs-feature-slider .carousel-inner>.item .welcome {
    position: relative;
}

.blogs-feature .blogs-feature-slider .carousel-inner>.item .welcome .inner {
    background: rgba(0,0,0,0.6);
    position: absolute;
    height: 520px;
    color: #fff;
    padding-top: 60px;
    text-align: left;
    padding-left: 40px;
}

.blogs-feature .blogs-feature-slider .carousel-inner>.item .welcome .inner .subtitle{
    margin-bottom: 60px;
} 

.blogs-feature .detail-info {
    padding-bottom: 20px;
    color: #ddd;
    font-size: 80%;
}

.blogs-feature .detail-info a {
    color: #ddd;
}


/* porfolios beg */

.portfolios-isotope .portfolioFilter {
    padding-bottom: 40px;
}

.portfolios-isotope .portfolioFilter a { 
    margin-right: 10px; 
    color:#666;
    text-decoration:none;
    padding: 5px 10px;
    border:solid 1px rgba(0,0,0,0.1);
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.portfolios-isotope .portfolioFilter a.current { 
    font-weight:bold;
    background: #009688;
    color: #fff;
}

.portfolios-isotope  .isotope-item {
    z-index: 2;    
}

.portfolios-isotope  .isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.portfolios-isotope .isotope,
.portfolios-isotope .isotope .isotope-item {
    /* change duration value to whatever you like */

    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.portfolios-isotope  .isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}
.portfolios-isotope .isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

.portfolios-isotope .portfolioContainer img {
    height: 260px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.portfolios-isotope .portfolioContainer .item {    
    margin-bottom: 20px;
}

@media (max-width: 767px) { 
    .portfolios-isotope .portfolioFilter {
        padding-bottom: 5px;
    }

    .portfolios-isotope .portfolioContainer img {
        height: 100px;
    }
}

.detail-profile .avatar {
    height: 80px;
    margin-bottom: 10px;
}

.detail-profile .list-group-item {
    border: 0px;
    padding-left: 0px;
}

.detail-profile .list-group-item:hover {
    background: #fff;
    color: #009688;
}

.detail-profile .list-group-item.active, .detail-profile .list-group-item.active:focus, .detail-profile .list-group-item.active:hover {
    background: #fff;
    color: #009688;
    font-weight: 400;
    position: relative;
}

.detail-profile .list-group-item.active::after {
    content: url(../images/menu-leftarrow.png);
    position: absolute;
    right: -24px;
    top: 10px;
    z-index: 100;

}

.detail-profile .content {
    border-left: solid 1px rgba(0,0,0,0.1);
    padding-left: 40px;
}

.detail-profile .widget-features ul li .media-left img {
    border-radius: 100px;
    width: 55px;
    height: 55px;
}

.detail-profile .widget-features ul li .description {
    font-size: 80%;
}

.detail-profile .widget-features ul li.read h4{
    font-weight: 300;
}

.detail-profile .alert-content {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Bottom Nav Bar - Mobile only */
.bottom-navigation-bar-popup-overlay, .bottom-navigation-bar-popup {
    display: none;
}


/* The Modal (modalFullscreen) */
.modalFullscreen {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1050;
}

.modalFullscreen .modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: 1200px;
    min-height: 150px;
}

.modalFullscreen .closeX {
    color: #212121;
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 35px;
    width: 30px;
    height: 30px;
    text-align: center;
    z-index: 1051;
}

.modalFullscreen .closeX:hover,
.modalFullscreen .closeX:focus {
    color: #009688;
    text-decoration: none;
    cursor: pointer;
}

.modalFullscreen .left-img {
    border-radius: 8px 0px 0px 8px;
    object-fit: cover;
    width: 100%;
}

.modalFullscreen .description {
    padding-top: 10px;
}

.modalFullscreen .button {
    padding-top: 30px;
}

.modalFullscreen .col-right {
    padding-right: 30px;
}

.modalFullscreen .col-left img {
    height: 500px;
    width: 100%;
}

.modalFullscreen .team-face {
    padding-bottom: 20px;
}

.modalFullscreen .team-face img{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-right: 10px;
    object-fit: cover;
}

.modalFullscreen .modal-content{
    border-radius: 10px;
}


@media (max-width: 767px) {
    .modalFullscreen {
        padding-top: 0px;
    }

    .modalFullscreen .left-img {
        border-radius: 0px;
    }

    .modalFullscreen .description, .modalFullscreen h3, .modalFullscreen .button {
        padding-left: 15px;
        padding-right: 15px;
    }

    .modalFullscreen .button {
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .modalFullscreen .modal-content {
        border-radius: 0px;
    }

    .modalFullscreen .col-left img {
        height: 250px;
    }

    .modalFullscreen .closeX {
        position: fixed;
    }

}

.ads-full img{
    width: 100%;
    border-radius: 8px;
}


.navbar-right .dropdown-menu{left:0px;}
header .navbar-nav>li>.dropdown-menu:before{left:349px;}

header .navbar-nav>li>.dropdown-menu{width:1100px; left:-549px;}


.midalign{text-align:center!important;}

.media .button{text-align:center;     /* background: #FFF; */
    border-radius: 8px;
   margin:10px 0px 0px 0px;
    text-transform: uppercase;
    color: #009688;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400; }
	
	
.portfolio-item {
	height:60px;
    margin-bottom: 30px;
    padding-right: 5px;
    padding-left: 5px;
}
.portfoliorow{padding:0px 10px 30px 10px; }
.appboxes{width:100%; float:left; height:210px;}
.portfolio-item span{font-size:12px!important; line-height:10px!important;  }
.portfolio-item p{font-size:11px; color:#000;}


 /* Inner page*/

.innerpagehead{ width:100%;     float:left; padding:0px 0px 0px 0px; margin:0px;} 
.innerpagehead h3{font-size:24px; color:#000;}
.innerpagehead .row{padding:0px!important; margin:0px!important;}
.innerpagehead p{font-size:15px; color:#000;}
.headmenuinner{padding:50px 20px 10px 20px!important; width:100%; background:  rgba(194, 194, 194, 0.8) !important; position:absolute; color:#fff;  }
.headmenuinner h2{color:#fff; font-size:23px; font-weight:normal;}

.innerbanner{
  position: relative;
  background-color: white;
 
  min-height: 35rem;
  width: 100%;
  overflow: hidden;
 background: rgb(237,237,237);
background: rgb(239,239,239);
background: linear-gradient(0deg, rgba(239,239,239,1) 19%, rgba(155,223,238,1) 100%);

}

.innerbanner_ats{
  position: relative;
  background-color: white;
 
  min-height: 35rem;
  width: 100%;
  overflow: hidden;
  
  background: #f9f8ca; /* Old browsers */
background: -moz-linear-gradient(top, #f9f8ca 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #f9f8ca 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background:linear-gradient(to bottom, #b9edfd 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f8ca', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  

}
.innerbanner_oas{
  position: relative;
  background-color: white;
 
  min-height: 55rem;
  width: 100%;
  overflow: hidden;
 background:  #37abe8 url(../images/pages/oas.png) right no-repeat;
 background-size:contain;

}

.innerbanner_indus{
  position: relative;
  background-color: white;
 
  min-height: 50rem;
  width: 100%;
  overflow: hidden;
 background:   url(../images/industries.png) right no-repeat;
 background-size:contain;

}
.innerbanner_indus .bannercontent{position:absolute; top:200px; z-index:3; padding:0px 0px 0px 30px;}
.innerbanner_indus .bannercontent h3{font-size:23px; color:#fff; font-weight:lighter;}
.innerbanner_indus .bannercontent h4{font-size:19px; color:#fff; font-weight:lighter;}
.innerbanner_indus .bannercontent p{font-size:16px; color:#fff;}



.innerbanner_oas .bannercontent{position:absolute; top:200px; z-index:3; padding:0px 0px 0px 30px;}
.innerbanner_oas .bannercontent h3{font-size:23px; color:#fff; font-weight:lighter;}
.innerbanner_oas .bannercontent h4{font-size:19px; color:#fff; font-weight:lighter;}
.innerbanner_oas .bannercontent p{font-size:16px; color:#fff;}

.innerbanner_wpa{
  position: relative;
  background-color: white;
 
  min-height: 55rem;
  width: 100%;
  overflow: hidden;
 background:  #0ea9bb url(../images/pages/osas.png) right no-repeat;
 background-size:contain;

}

.innerbanner_wpa .bannercontent{position:absolute; top:200px; z-index:3; padding:0px 0px 0px 30px;}
.innerbanner_wpa .bannercontent h3{font-size:23px; color:#fff; font-weight:lighter;}
.innerbanner_wpa .bannercontent h4{font-size:19px; color:#fff; font-weight:lighter;}
.innerbanner_wpa .bannercontent p{font-size:16px; color:#fff;}


.innerbanner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
 
@media (pointer: coarse) and (hover: none) {
  .innerbanner {
    background: url(' ') white no-repeat center center scroll;
  }
  .innerbanner video {
    display: none;
  }
}

.page_calltoaction{ height:100px; width:100%; float:left; background:#9c9c9c;}
.bannercontent{position:absolute; top:200px; z-index:3; padding:0px 0px 0px 30px;}
.bannercontent h3{font-size:23px; color:#000; font-weight:lighter;}
.bannercontent h4{font-size:19px; color:#000; font-weight:lighter;}
.bannercontent p{font-size:16px; color:#000;}

.submenu {
    width: 100%;
    color:#fff;
	padding:25px 30px 25px 30px; 
	 
}

.submenu ul{float:left; padding:0px; margin:0px; }
.submenu li{float:left;  padding:0px; margin:0px 10px 0px 10px; list-style-type:none;}
.submenu li a{float:left;  padding:0px;  list-style-type:none; color:#000;}










 
 /*Flipper*/
 
 #team {
    background: #eee !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #108d6f;
    border-color: #108d6f;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #007b5e;
    border-color: #007b5e;
}
 

section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
 
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #007b5e !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #007b5e !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
 
 
 
 /*map*/
 
 .socialconnect {
  overflow: hidden;
  padding: 100px 0;
 }
  @media (max-width: 767px) {
    .socialconnect {
      padding: 40px 0; } }
  .socialconnect h2 {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 20px; }
    .socialconnect h2 span {
      color: #ff6c0f;
      display: block; }
  .socialconnect .featurelist {
    padding: 20px 0 30px; }
    .socialconnect .featurelist > li {
      color: #3f525f;
      line-height: 36px;
      font-size: 18px; }
      @media (max-width: 767px) {
        .socialconnect .featurelist > li {
          font-size: 16px;
          line-height: 26px; } }
      .socialconnect .featurelist > li:before {
        content: "\f105";
        font: normal normal normal 14px/1 FontAwesome;
        padding-right: 10px; }
  .socialconnect h4 {
    color: #ff6c0f;
    font-size: 18px;
    font-weight: bold;
    margin: 0; }
  .socialconnect list-inline li {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px; }
    
    .map-section {
  background: url("../images/pages/eee.png") no-repeat 80px 0px;
  background-size: contain;
  height: 100%; }
  .map-section .slider-bullets {
    position: relative;
    min-height: 500px; }
    @media (max-width: 767px) {
      .map-section .slider-bullets {
        min-height: auto; } }
    .map-section .slider-bullets li {
      position: absolute;
      cursor: pointer;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%;
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 0.3ms ease-in-out;
      -moz-transition: all 0.3ms ease-in-out;
      -ms-transition: all 0.3ms ease-in-out;
      -o-transition: all 0.3ms ease-in-out;
      transition: all 0.3ms ease-in-out; }
      .map-section .slider-bullets li img{max-width:90px;}
      @media (max-width: 992px) {
        .map-section .slider-bullets li img {
          max-width: 60px; } }
      @media (max-width: 767px) {
        .map-section .slider-bullets li img {
          max-width: 40px; } }
      @media (max-width: 767px) {
        .map-section .slider-bullets li {
          position: static;
          display: inline-block;
          margin: 0 2px; } }
      .map-section .slider-bullets li.active {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -moz-box-shadow: 0px 2px 6px 0px #777;
        -webkit-box-shadow: 0px 2px 6px 0px #777;
        box-shadow: 0px 2px 6px 0px #777; }
        
      .map-section .slider-bullets li:nth-child(1) {
        top: 12%;
        left: 18%; }
        @media (max-width: 992px) {
          .map-section .slider-bullets li:nth-child(1) {
            top: 8%; } }
      .map-section .slider-bullets li:nth-child(2) {
        top: 6px;
        right: 50%; }
      .map-section .slider-bullets li:nth-child(3) {
        top: 41%;
        left: 12%; }
        @media (max-width: 992px) {
          .map-section .slider-bullets li:nth-child(3) {
            top: 20%; } }
      .map-section .slider-bullets li:nth-child(4) {
        bottom: 40%;
        right: 25%; }
        @media (max-width: 992px) {
          .map-section .slider-bullets li:nth-child(4) {
            bottom: 55%; } }
      .map-section .slider-bullets li:nth-child(5) {
        top: 12%;
        right: 31%; }
        @media (max-width: 992px) {
          .map-section .slider-bullets li:nth-child(5) {
            top: 15%; } }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* test   */
  
 #myvideo{ 
  position: relative;
  top: 20%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index:  -100;
  transform: translate(-50%, -50%);
}
 #myvideo2{ 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -90;
  transform: translate(-50%, -50%);
}
 #myvideo3{ 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -80;
  transform: translate(-50%, -50%);
}
 #myvideo4{ 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translate(-50%, -50%);
}
 #myvideo5{ 
  position: fixed;
  top: 0%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translate(-50%, -50%);
}
  
  
  
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*main*/
#content-block{position: relative; overflow: hidden; left: 0;}
#content-block *:last-child:not(.empty-space){margin-bottom: 0;}
.container{max-width: 100%;}
@media (min-width: 992px) {
	body.min-height .page-height{height: 600px!important;}
}
.wide-container{margin: 0 auto; padding: 0 150px; height: 100%; position: relative;}
.wide-container-fluid{position: relative; padding: 0 50px;}
.wide-container-fluid.wide-paddings{padding: 0 115px;}
.toggle-visibility{opacity: 0; visibility: hidden;}
.toggle-visibility.active, body.mobile .toggle-visibility{opacity: 1; visibility: visible;}
body.mobile .toggle-visibility{display: none;}
body.mobile .toggle-visibility.active{display: block;}
.slide-title, .slide-description, .empty-space{display: block;}
.empty-space:after{content: ""; display: block; clear: both;}
.overflow-hidden{overflow: hidden;}
html.overflow-hidden body{overflow: hidden;}
/*table*/
.table-view{height: 100%; width: 100%; display: table;}
.row-view{display: table-row;}
.cell-view{display: table-cell; vertical-align: middle; width: 10000px;}
/*body selection*/
body ::selection {color: white; background: black;}
body ::-moz-selection {color: white; background: black;}
/*helper classes*/
.nopadding, .nopadding>*[class*="col"]{padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0;}
.line-through{display: inline-block; position: relative;}
.line-through:after{position: absolute; width: 100%; height: 1px; left: 0; top: 50%; background: currentColor; content: "";}
.clearfix:after{content: ""; display: block; clear: both;}
.valign-middle {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;

	align-items: center;
}
.page-height{position: relative;}
.full-size{position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.text-left{text-align: left;}
.text-center{text-align: center;}
.text-right{text-align: right;}
.hidden{display: none!important;}
.visible{display: block!important;}
.inline-indent{width: 10px; height: 1px; background: currentColor; display: inline-block; vertical-align: middle; margin-right: 10px; position: relative; top: -1px;}
.fixed-background{background-size: cover; background-position: center top; background-attachment: fixed;}
body.mobile .fixed-background{background-attachment: scroll;}
.label{white-space: normal;}
/*loader*/
#loader-wrapper{position: fixed; left: -100px; top: -100px; right: -100px; bottom: -100px; background: #fff; z-index: 12;}
/*arrow pagination*/
.slider-click{font-size: 12px; line-height: 30px; color: #989898; position: absolute; left: 0; top: 50%; margin-top: -16px; height: 30px; cursor: pointer;}
.slider-click.right{left: auto; right: 0;}
.slider-click .arrow{width: 10px; height: 10px; position: absolute; left: 3px; top: 50%; margin-top: -5px; border-left: 1px currentColor solid; border-bottom: 1px currentColor solid; transform: rotate(45deg); -webkit-transform: rotate(45deg);}
.slider-click.right .arrow{left: auto; right: 3px; transform: rotate(-135deg); -webkit-transform: rotate(-135deg);}
.slider-click .number{position: absolute; left: 10px; width: 53px;}
.slider-click.right .number{left: auto; right: 10px;}
.slider-click .left{text-align: right; float: left; width: 23px; height: 30px; position: relative; top: -8px;}
.slider-click .right{float: right; width: 23px; height: 30px; position: relative; top: 8px;}
.slider-click .middle{position: absolute; left: 50%; top: 50%; width: 1px; height: 20px; margin-top: -10px; background: currentColor; transform: rotate(22deg); -webkit-transform: rotate(22deg);}
.slider-click:hover{color: #000;}
.slider-click:hover .middle{height: 40px; margin-top: -20px;}
.slider-click:hover .left{top: -4px;}
.slider-click:hover .right{top: 4px;}
.slider-click.disabled{opacity: 0; cursor: default;}
.slider-click.light{color: rgba(255,255,255,.7);}
.slider-click.light:hover{color: rgba(255,255,255,1);}
.slider-click .preview-entry{position: absolute; left: 63px; top: 50%; margin-top: -60px; z-index: 2; background-size: cover; background-position: center center; opacity: 0; transform: perspective(500px) rotateY(90deg); -webkit-transform: perspective(500px) rotateY(90deg); transform-origin: 0 50%; -webkit-transform-origin: 0 50%; width: 160px; height: 120px;}
.slider-click.right .preview-entry{transform: perspective(500px) rotateY(-90deg); -webkit-transform: perspective(500px) rotateY(-90deg); transform-origin: 100% 50%; -webkit-transform-origin: 100% 50%; left: auto; right: 63px;}
.slider-click:hover .preview-entry.active{transform: perspective(1000px) rotateY(0deg); -webkit-transform: perspective(1000px) rotateY(0deg); opacity: 1;}
/*mouseover*/
.mouseover{overflow: hidden; background-size: cover; background-position: center top;}
.mouseover:after{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0); content: "";}
.mouseover:hover:after{background: rgba(0,0,0,.4);}
.mouseover:hover:before{transform: rotate(0deg); -webkit-transform: rotate(0deg); opacity: 1;}
.mouseover-helper-frame{z-index: 1; position: absolute; left: 40px; top: 40px; right: 40px; bottom: 40px; opacity: 0;}
.mouseover:hover .mouseover-helper-frame{opacity: 1;}
.mouseover-helper-frame:before, .mouseover-helper-frame:after{border: 1px rgba(255,255,255,.4) solid; content: ""; position: absolute; width: 0%; height: 0%;}
.mouseover:hover .mouseover-helper-frame:before, .mouseover:hover .mouseover-helper-frame:after{width: 100%; height: 100%;}
.mouseover-helper-frame:before{border-top-color: transparent; border-right-color: transparent; left: 0; bottom: 0;}
.mouseover-helper-frame:after{border-bottom-color: transparent; border-left-color: transparent; right: 0; top: 0;}
.mouseover-helper-icon{width: 69px; height: 69px; position: absolute; left: 50%; top: 50%; margin: -34.5px 0 0 -34.5px; z-index: 1; transform: rotate(45deg); -webkit-transform: rotate(45deg); opacity: 0;}
.mouseover-helper-icon:before{width: 100%; height: 1px; left: 50%; margin-left: -34.5px; top: 34px; content: ""; background: #fff; position: absolute;}
.mouseover-helper-icon:after{height: 100%; width: 1px; top: 50%; margin-top: -34.5px; left: 34px; content: ""; background: #fff; position: absolute;}
.mouseover:hover .mouseover-helper-icon{transform: rotate(0deg); -webkit-transform: rotate(0deg); opacity: 1;}
body.mobile .mouseover .mouseover-helper-frame, body.mobile .mouseover .mouseover-helper-icon, body.mobile .mouseover:after{display: none;}
.mouseover-simple{position: relative; display: inline-block; white-space: nowrap;}
.mouseover-simple:after, .mouseover-simple:before{content: ""; position: absolute; height: 1px; right: 50%; left: 50%; background: currentColor; top: 50%;}
.mouseover-simple.size-1:after, .mouseover-simple.size-1:before{height: 2px; margin-top: -2px;}
.mouseover-simple:before{left: 50%; right: 50%;}
.mouseover-simple:hover:after, .mouseover-simple.active:after{left: -5px;}
.mouseover-simple:hover:before, .mouseover-simple.active:before{right: -5px;}
.blog-mouseover-1{background: url(../img/blog-mouseover-pixel-1.png) repeat-y; background-size: 100000px 34px; background-position: -100000px 5px; -webkit-transition:all 0.3s ease-out; transition:all 0.3s ease-out;}
.blog-mouseover-1:hover{background-position: 0 5px; -webkit-transition:all 60s ease-out; transition:all 60s ease-out;}

.blog-mouseover-2{background: url(../img/blog-mouseover-pixel-2.png) repeat-y; background-size: 100000px 24px; background-position: -100000px -1px; -webkit-transition:all 0.3s ease-out; transition:all 0.3s ease-out;}
.blog-mouseover-2:hover{background-position: 0 -1px; -webkit-transition:all 60s ease-out; transition:all 60s ease-out;}
.h5.blog-mouseover-2{background-position: -100000px -2px;}
.h5.blog-mouseover-2:hover{background-position: 0 -2px;}

.blog-mouseover-3{background: url(../img/blog-mouseover-pixel-3.png) repeat-y; background-size: 100000px 30px; background-position: -100000px 2px; -webkit-transition:all 0.3s ease-out; transition:all 0.3s ease-out;}
.blog-mouseover-3:hover{background-position: 0 2px; -webkit-transition:all 60s ease-out; transition:all 60s ease-out;}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.blog-mouseover-1, .blog-mouseover-2{background: none;}
}
/*poster 3d*/
.poster-3d *, .poster-3d *:after, .poster-3d *:before, .poster-3d:after{transition-delay: 0s!important; -webkit-transition-delay: 0s!important;}
.poster-3d.mouseover:hover:after{background: rgba(0,0,0,.15);}
.poster-3d *[class*="layer-"]{z-index: 1;}
.poster-3d:not(.animation-disabled), .poster-3d:not(.animation-disabled) *[class*="layer-"]{-webkit-transition:all 0.15s ease-out; transition:all 0.15s ease-out;}
.poster-3d.shadow:hover{box-shadow: 0 45px 100px rgba(0, 0, 0, 0.4);}
.poster-3d .shine{opacity: 0; z-index: 1;}
.poster-3d:hover .shine{opacity: 1;}
/**/
.simple-article{font-size: 14px; line-height: 24px; color: #222;}
.simple-article.small{font-size: 13px; line-height: 24px;}
.simple-article.large{font-size: 15px; line-height: 24px;}
.simple-article.light{color: #fff;}
.simple-article.grey{color: #989898;}
.simple-article.transparent{color: rgba(34,34,34,.7);}
.simple-article.light.transparent{color: rgba(255,255,255,.7);}
.simple-article.grey.transparent{color: rgba(152,152,152,.7);}
.simple-article img{max-width: 100%; height: auto; display: block;}
.simple-article ol{counter-reset: number;}
.simple-article ol li{padding-left: 0; margin-bottom: 8px;}
.simple-article ol li:before{counter-increment: number; content: "#" counter(number); color: #10ace0; margin-right: 5px;}
.simple-article ul li{margin-bottom: 8px;}
.simple-article ul li:before{content: ""; width: 15px; height: 1px; background: currentColor; display: inline-block; margin: 0 6px 0 15px; vertical-align: middle; position: relative; top: -1px;}
.simple-article ul.no-dash li:before{display: none;}
.simple-article h1, .h1, .simple-article h2, .h2, .simple-article h3, .h3, .simple-article h4, .h4, .simple-article h5, .h5, .simple-article h6, .h6{color: #222; margin: 0; font-weight: 400;}
.simple-article.light h1, .simple-article.light .h1, .h1.light, .simple-article.light h2, .simple-article.light .h2, .h2.light, .simple-article.light h3, .simple-article.light .h3, .h3.light, .simple-article.light h4, .simple-article.light .h4, .h4.light, .simple-article.light h5, .simple-article.light .h5, .h5.light, .simple-article.light h6, .simple-article.light .h6, .h6.light{color: #fff;}
.simple-article h1, .h1{font-size: 90px; line-height: 1em;}
.simple-article h1.small, .h1.small{font-size: 80px; line-height: 1em;}
.simple-article h2, .h2{font-size: 60px; line-height: 1em;}
.simple-article h2.small, .h2.small{font-size: 20px; line-height: 1em;}
.simple-article h3, .h3{font-size: 34px; line-height: 1em;}
.simple-article h3.small, .h3.small{font-size: 28px; line-height: 30px;}
.simple-article h4, .h4{font-size: 24px; line-height: 30px;}
.simple-article h4.small, .h4.small{font-size: 18px; line-height: 24px;}
.simple-article h5, .h5{font-size: 16px; line-height: 24px;}
.simple-article h5.small, .h5.small{font-size: 15px; line-height: 24px; }
.simple-article h6, .h6{font-size: 14px; line-height: 24px;}
.simple-article h6.small, .h6.small{font-size: 12px; line-height: 24px;}
.simple-article a:hover{text-decoration: underline;}
.simple-article a.button:hover, .simple-article a.mouseover-simple:hover{text-decoration: none;}
.simple-article.border-left{padding-left: 30px; border-left: 3px #222 solid;}
.simple-article.light.border-left{border-left-color: #fff;}
.simple-article br{line-height: 30px;}
.title-line{margin-bottom: 30px;}
.title-line span{height: 5px; width: 30px; display: inline-block; vertical-align: bottom; background: currentColor;}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.simple-article h1, .h1{font-size: 34px;}
	.simple-article h1.small, .h1.small{font-size: 34px;}
	.simple-article h2, .h2{font-size: 30px;}
	.simple-article h2.small, .h2.small{font-size: 30px;}
	.simple-article h3, .h3{font-size: 28px;}
}
/**/
.button{display: inline-block; cursor: pointer; position: relative; text-align: center;}
.button input{opacity: 0;}
.button.type-1, .button.type-2{font-size: 13px; line-height: 18px; color: #989898; padding: 6px 0; position: relative; text-transform: uppercase;}
.button.type-2{color: rgba(34,34,34,.7);}
.button.type-1 span, .button.type-2 span{color: #222;}
.button.type-1:hover, .button.type-2:hover{color: #000;}
.button.type-1:after, .button.type-2:after{position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #a1a1a1; content: "";}
.button.type-2:after{background: #000;}
.button.type-1:hover:after, .button.type-2:hover:after{bottom: 100%; background: #000;}
.button.type-1.light, .button.type-2.light{color: rgba(255,255,255,.7);}
.button.type-1.light:hover, .button.type-2.light:hover{color: rgba(255,255,255,1)!important;}
.button.type-1.light span, .button.type-2.light span{color: #fff;}
.button.type-1.light:after, .button.type-2.light:after{background: #fff!important;}
.button.type-2:after{height: 2px;}
.button.type-3{color: #000; font-size: 12px; line-height: 18px; padding: 11px 30px; text-transform: uppercase; position: relative;}
.button.type-3:before{position: absolute; left: 0; top: 0; right: 11px; bottom: 0; border-left: 1px #000 solid; border-bottom: 1px #000 solid; content: "";}
.button.type-3:hover:before{left: 11px;}
.button.type-3:after{position: absolute; left: 11px; top: 0; right: 0; bottom: 0; border-right: 1px #000 solid; border-top: 1px #000 solid; content:"";}
.button.type-3:hover:after{right: 11px;}
.button.type-3.light{color: #fff;}
.button.type-3.light:before, .button.type-3.light:after{border-color: #fff;}
.button.type-3.grey{color: #222;}
.button.type-3.grey:before, .button.type-3.grey:after{border-color: #474645;}
.button-close{width: 46px; height: 46px; background: #151515; display: block; position: absolute; right: 0; top: 0; cursor: pointer;}
.button-close:before, .button-close:after{width: 14px; height: 2px; position: absolute; left: 50%; top: 50%; margin: -1px 0 0 -7px; content: ""; background: #fff; transform: rotate(45deg); -webkit-transform: rotate(45deg);}
.button-close:after{transform: rotate(-45deg); -webkit-transform: rotate(-45deg);}
.button-close:hover{background: #fff;}
.button-close:hover:before, .button-close:hover:after{background: #151515;}
.button-link{font-size: 12px; line-height: 30px; color: rgba(157,157,157,1); text-transform: uppercase; display: inline-block; position: relative; padding: 0 30px;}
.button-link.light{color: #fff;}
.button-link:before, .button-link:after{width: 16px; height: 1px; background: rgba(157,157,157,.5); content: ""; position: absolute; top: 50%; left: 0px;}
.button-link.light:before, .button-link.light:after{background: rgba(255,255,255,.5);}
.button-link:after{left: auto; right: 0px;}
.button-link:hover:before{left: 5px; background: currentColor;}
.button-link:hover:after{right: 5px; background: currentColor;}
.play-button{width: 76px; height: 76px; position: absolute; left: 50%; top: 50%; margin: -38px 0 0 -38px; cursor: pointer;}
.play-button:before{position: absolute; left: 0; top: 0; right: 0; bottom: 0; content: ""; border-radius: 50%; -webkit-border-radius: 50%; border: 2px #fff solid;}
.play-button:hover:before{left: -5px; top: -5px; right: -5px; bottom: -5px;}
.play-button:after{position: absolute; left: 50%; top: 50%; margin: -10px 0 0 -8px; content: ""; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 20px; border-color: transparent transparent transparent #fff;}
/**/
.input-wrapper{position: relative;}
.input-wrapper label{font-size: 14px; line-height: 12px; color: #989898; position: absolute; left: 0; width: 100%; top: 14px;}
.input-wrapper.light label{color: rgba(255,255,255,.5);}
.input-wrapper.invalid:after{content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: red;}
.input-wrapper .input{height: 40px; line-height: 40px; font-size: 14px; line-height: 40px; color: #fff; position: relative; z-index: 1; padding: 0 10px;}
.input-wrapper.light .input{color: #222;}
.input-wrapper textarea.input{height: 74px; line-height: 16px; padding: 5px 10px;}
.input-wrapper span{position: absolute; width: 100%; height: 1px; background: #989898; bottom: 0; left: 0; overflow: hidden;}
.input-wrapper.light span{background: rgba(255,255,255,.3);}
.input-wrapper span:after{content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 100px; background: #222;}
.input-wrapper.light span:after{background: #fff;}
.input-wrapper.focus .input+label{top: 48px; font-size: 11px; color: #222;}
.input-wrapper.light.focus .input+label{color: #fff;}
.input-wrapper.focus .input+label+span{height: 40px;}
.input-wrapper.focus .input+label+span:after{width: 100%;}
.input-wrapper.focus textarea.input+label{top: 82px;}
.input-wrapper.focus textarea.input+label+span{height: 74px;}

.input-wrapper label, .input-wrapper span, .input-wrapper span:after, .input-wrapper .icon{-webkit-transition:all 0.15s ease-out; transition:all 0.15s ease-out;}

.input-wrapper.focus span, .input-wrapper.focus label, .input-wrapper span:after, .input-wrapper.focus .icon{transition-delay: 0.3s; -webkit-transition-delay: 0.3s;}
.input-wrapper.focus span:after{transition-delay: 0s; -webkit-transition-delay: 0s;}
.input-wrapper.icon .input{padding-right: 40px;}
.input-wrapper.icon .icon{position: absolute; width: 40px; height: 40px; right: 0; top: 0; line-height: 40px; text-align: center; color: #aeaeae; font-size: 16px;}
.input-wrapper.icon .icon input{position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.input-wrapper.icon.focus .icon{color: #fff;}
.input-wrapper.light.icon .icon{color: #fff;}
.input-wrapper.light.icon.focus .icon{color: #aeaeae;}
/**/
.simple-slider{height: 750px; height: 80vh;}
.simple-slider .swiper-slide{background-size: cover; background-position: center top;}
.simple-slider.style-1{height: 600px;}
.simple-slider.style-1 .swiper-slide:before{content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.3);}
/**/
.video-popup .iframe-wrapper{position: absolute; left: 0; top: 46px; bottom: 46px; right: 0;}

@media (max-width: 1360px) {
	.wide-container{padding: 0 50px;}
}
/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.page-height.tablets-initial, body.min-height .page-height.tablets-initial{height: auto!important;}
	.simple-slider{height: 600px;}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.page-height.responsive-initial, body.min-height .page-height.responsive-initial{height: auto!important;}
	.wide-container-fluid, .wide-container-fluid.wide-paddings, .wide-container{padding: 0 15px;}
	.simple-slider, .simple-slider.style-1{height: 300px;}
}



/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 12 - HOMEPAGE 6 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.fonts-4{font-family: 'Droid Serif', serif;}
.fonts-4 .simple-article{font-family: 'Raleway', sans-serif; font-weight: 300;}
.fonts-4 .simple-article h1, .fonts-4 .h1, .fonts-4 .simple-article h2, .fonts-4 .h2, .fonts-4 .simple-article h3, .fonts-4 .h3, .fonts-4 .simple-article h4, .fonts-4 .h4, .fonts-4 .simple-article h5, .fonts-4 .h5, .fonts-4 .simple-article h6, .fonts-4 .h6{font-family: 'Droid Serif', serif;}
.fonts-4 .button, .fonts-4 .button-link, .fonts-4 .input-wrapper label{font-family: 'Raleway', sans-serif;}

.homepage-6-container, .homepage-6-slider{position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.homepage-6-slider .swiper-container{height: 100%; background: #1e1e1e;}
.homepage-6-slider .slider-click{z-index: 2;}
.homepage-6-slider .swiper-slide{overflow: hidden;}
.homepage-6-slider .entry{background-size: cover; background-position: center center; position: absolute; left: 0; top: 0; right: 0; bottom: 0;}
.homepage-6-slider .entry .text{text-align: center; left: 120px; right: 120px; top: 50%; position: absolute; transform: translateY(-50%); -webkit-transform: translateY(-50%); display: none;}
.homepage-6-slider .slider-click.left{left: 50px;}
.homepage-6-slider .slider-click.right{right: 50px;}
.homepage-6-slider .entry:before{position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; background: rgba(0,0,0,.8);}
.homepage-6-slider .swiper-slide-active .entry:before{background: rgba(0,0,0,.4);}
/*pagination slider*/
.homepage-6-pagination{position: absolute; z-index: 1; height: 90px; width: 250px; top: 50%; left: 50%; margin-left: -125px; margin-top: -45px; text-align: center;}
.pagination-slider-wrapper{position: relative; margin-top: -80px; left:-440px;}
.homepage-6-pagination .slider-click-label{height: 90px; position: relative; cursor: pointer;}
.homepage-6-pagination .slider-click-label:before, .homepage-6-pagination .slider-click-label:after{width: 1px; height: 20px; background: rgba(255,255,255,.3); position: absolute; left: 50%; top: -10px; content: "";}
.homepage-6-pagination .slider-click-label:after{top: auto; bottom: -10px;}
.homepage-6-pagination .slider-click-label:first-child:before{display: none;}
.homepage-6-pagination .slider-click-label:last-child:after{display: none;}
.homepage-6-pagination .slider-click-label.active{height: 250px;}
.homepage-6-pagination .slider-click-label .animation{position: absolute; left: 0; top: 50%; width: 100%; height: 0;}
.homepage-6-pagination .slider-click-label .align{position: absolute; left: 0; top: 0; width: 100%; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%);}
.homepage-6-pagination .slider-click-label .display{position: absolute; left: 0; top: 50%; transform: scale(1) translateY(-50%); -webkit-transform: scale(1) translateY(-50%); width: 100%; height: 100%;}
.homepage-6-pagination .slider-click-label .animation:first-child .display{height: 255px; width: 800px; left: 50%; margin-left: -400px;}
.homepage-6-pagination .slider-click-label .animation:last-child.display{height: 95px;}
.homepage-6-pagination .slider-click-label .animation:first-child{transform: scale(0); -webkit-transform: scale(0);}
.homepage-6-pagination .slider-click-label.active .animation:first-child{transform: scale(1); -webkit-transform: scale(1);}
.homepage-6-pagination .slider-click-label .animation:last-child{transform: scale(1); -webkit-transform: scale(1);}
.homepage-6-pagination .slider-click-label.active .animation:last-child{transform: scale(0); -webkit-transform: scale(0);}
body.loaded .homepage-6-pagination .slider-click-label, body.loaded .homepage-6-pagination .slider-click-label .animation, body.loaded .homepage-6-pagination .pagination-slider-wrapper{-webkit-transition:all 0.6s cubic-bezier(0.8, 0, 0.2, 1); transition:all 0.6s cubic-bezier(0.8, 0, 0.2, 1);}
/*titles*/
.homepage-6-pagination .slide-title-small{font-size: 16px; line-height: 30px; color: rgba(255,255,255,.7); font-weight: 700;}
.homepage-6-pagination .slider-click-label:hover .slide-title-small{color: rgba(255,255,255,1);}

/* Tablets (>=768px)*/
@media (max-width: 991px) {
	.homepage-6-slider .entry .text{display: block;}
	.homepage-6-pagination{display: none;}
	.homepage-6-slider .entry:before{background: rgba(17,17,17,.3);}
}
/*Phones (<768px)*/
@media (max-width: 767px) {
	.homepage-6-slider .entry .text{left: 15px; right: 15px;}
}
 
	 
 
 
 
 
 
 
 
 /**/
  




.lib-panel {
    margin-bottom: 0Px;
}
.lib-panel img {
    width: 100%;
    background-color: transparent;
}

.lib-panel .row,
.lib-panel .col-md-6 {
    padding: 0;
    background-color: #FFFFFF;
}


.lib-panel .lib-row {
    padding: 0 20px 0 20px;
}

.lib-panel .lib-row.lib-header {
    background-color: #FFFFFF;
    font-size: 20px;
    padding: 10px 20px 0 20px;
}

.lib-panel .lib-row.lib-header .lib-header-seperator {
    height: 2px;
    width: 26px;
    background-color: #d9d9d9;
    margin: 7px 0 7px 0;
}

.lib-panel .lib-row.lib-desc {
    position: relative;
    height: 100%;
    display: block;
    font-size: 13px;
}
.lib-panel .lib-row.lib-desc a{
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 20px;
}

.row-margin-bottom {
    margin-bottom: 20px;
}

.box-shadow {
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.10);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.10); 
	padding:0px!important;
	margin:0px!important;
}

.no-padding {
    padding: 0px!important;
	margin:0px!important;
}
 #cards_skills{padding:0px; margin:0px;}
#cards_skills .row{padding:0px!important; margin:5px!important;}

.detail-welcome .row{padding:0px!important; margin:0px!important;}

.sectionblocks{padding:80px 0px 80px 0px; width:100%; float:left; background:#fafafa;}
.videocall{color:#fff; font-size:19px;  }
.videocall h3{padding:10px 0px 10px 0px;}
.banner_callaction {  float:left; background:url(../images/pages/business.png ); height:99px;}

.quoteslider{position:relative; z-index:4; float:right; top:65px; right:200px; color:#fff;}
.quoteslider h2{font-size:50px!important;}

#nav-tabs{float:left;}
#nav-tabs img{width:30%!important;}

@media (min-width: 768px) {

    .brand-pills > li > a {
        border-top-right-radius: 0px;
    	border-bottom-right-radius: 0px;
    }
    
    li.brand-nav.active a:after{
    	content: " ";
    	display: block;
    	width: 0;
    	height: 0;
    	border-top: 20px solid transparent;
    	border-bottom: 20px solid transparent;
    	border-left: 9px solid #428bca;
    	position: absolute;
    	top: 50%;
    	margin-top: -20px;
    	left: 100%;
    	z-index: 2;
    }
}
 button:focus {outline:0;}
 *:focus {outline:none !important}
 
.boxes_eee{width:100%; float:left; height:200px; background:#ddd!important;}


.fleet_section .carousel {
  margin-top: 40px;
}
.fleet_section .pager li > a, .fleet_section .pager li > span {
  border-radius: 0;
  color: #000;
}
.pager li > a:focus, .pager li > a:hover {
  background: #dfa466 none repeat scroll 0 0;
  color: #fff;
}

.sectiongetintouch{width:100%; float:left; background:#e6be58; padding:20px 0px 20px 0px;}
.sectionindustries{width:100%; float:left; background:#fafafa; padding:40px 0px 40px 0px;}

.box_information{height:250px; padding:30px; margin:0px; background:#e3f3ee;}
.box_information1{height:250px; padding:30px; margin:0px; background:#d4efe6;}
.box_information2{height:250px; padding:30px; margin:0px; background:#f1f1f1;}

.footerinner{width:100%; float:left; padding:30px 0px 30px 0px;}
.footerinner ul{ float:left; padding:0px; margin:0px;}
.footerinner li{float:left; padding:0px 10px 0px 10px; list-style-type:none; color:#000;}

.nopad{padding:0px!important; margin:0px!important;}

.appssection{padding:50px 0px 50px 0px; background:#CECECE; color:#fff;}


















/*
***********icons
***********
*/



.soc {
  display: block;
  font-size: 0;
  list-style: none;
  margin: 0;
 
 
  text-align: center;
}
.soc li {
  display: inline-block;
  margin: 12px;
  margin: 1.2rem;
}
.soc a, .soc svg {
  display: block;
}
.soc a {
  position: relative;
  height: 66px;
  height: 5.6rem;
  width: 66px;
  width: 5.6rem;
  background:#92929278;
  border-radius:50px;
  padding:10px;
  border:1px solid #fff;
  margin:3px;
}
.soc svg {
  height: 100%;
  width: 100%;
}
.soc em {
  font-size: 14px;
  line-height: 1.5;
  margin-top: -0.75em;
  position: absolute;
  text-align: center;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
}
 
.icon-1 {
  color: #d94a26;
  fill: #ddd;
}
 
.icon-2 {
  color: #d96e26;
  fill: #ddd;
}
 

.icon-3 {
  color: #d99126;
  fill: #d99126;
}
.icon-3:hover {
  background: #ddd;
}

.icon-4 {
  color: #d9b526;
  fill: #d9b526;
}
.icon-4:hover {
  background: #ddd;
}

.icon-5 {
  color: #d9d926;
  fill: #d9d926;
}
.icon-5:hover {
  background: #ddd;
}

.icon-6 {
  color: #b5d926;
  fill: #b5d926;
}
.icon-6:hover {
  background: #ddd;
}

.icon-7 {
  color: #91d926;
  fill: #91d926;
}
.icon-7:hover {
  background: #ddd;
}

.icon-8 {
  color: #6ed926;
  fill: #6ed926;
}
.icon-8:hover {
  background: #ddd;
}

.icon-9 {
  color: #4ad926;
  fill: #4ad926;
}
.icon-9:hover {
  background: #ddd;
}

.icon-10 {
  color: #26d926;
  fill: #26d926;
}
.icon-10:hover {
  background: #ddd;
}

.icon-11 {
  color: #26d94a;
  fill: #26d94a;
}
.icon-11:hover {
  background: #ddd;
}

.icon-12 {
  color: #26d96e;
  fill: #26d96e;
}
.icon-12:hover {
  background: #ddd;
}

.icon-13 {
  color: #26d991;
  fill: #26d991;
}
.icon-13:hover {
  background: #ddd;
}

.icon-14 {
  color: #26d9b5;
  fill: #26d9b5;
}
.icon-14:hover {
  background: #ddd;
}

.icon-15 {
  color: #26d9d9;
  fill: #26d9d9;
}
.icon-15:hover {
  background: #ddd;
}

.icon-16 {
  color: #26b5d9;
  fill: #26b5d9;
}
.icon-16:hover {
  background: #ddd;
}

.icon-17 {
  color: #2691d9;
  fill: #2691d9;
}
.icon-17:hover {
  background: #ddd;
}

.icon-18 {
  color: #266ed9;
  fill: #266ed9;
}
.icon-18:hover {
  background: #ddd;
}

.icon-19 {
  color: #264ad9;
  fill: #264ad9;
}
.icon-19:hover {
  background: #ddd;
}

.icon-20 {
  color: #2626d9;
  fill: #2626d9;
}
.icon-20:hover {
  background: #ddd;
}

.icon-21 {
  color: #4a26d9;
  fill: #4a26d9;
}
.icon-21:hover {
  background: #ddd;
}

.icon-22 {
  color: #6e26d9;
  fill: #6e26d9;
}
.icon-22:hover {
  background: #ddd;
}

.icon-23 {
  color: #9126d9;
  fill: #9126d9;
}
.icon-23:hover {
  background: #ddd;
}

.icon-24 {
  color: #b526d9;
  fill: #b526d9;
}
.icon-24:hover {
  background: #ddd;
}

.icon-25 {
  color: #d926d9;
  fill: #d926d9;
}
.icon-25:hover {
  background: #ddd;
}

.icon-26 {
  color: #d926b5;
  fill: #d926b5;
}
.icon-26:hover {
  background: #ddd;
}

.icon-27 {
  color: #d92691;
  fill: #d92691;
}
.icon-27:hover {
  background: #ddd;
}

.icon-28 {
  color: #d9266e;
  fill: #d9266e;
}
.icon-28:hover {
  background: #ddd;
}

.icon-29 {
  color: #d9264a;
  fill: #d9264a;
}
.icon-29:hover {
  background: #ddd;
}

.icon-30 {
  color: #d92626;
  fill: #d92626;
}
.icon-30:hover {
  background: #ddd;
}


.boxbanner {padding:110px 0px 0px 0px;}


/*Cards*/

.box{background:none!important; } 
.box h3{text-align:center;}
.box .row{margin:10px 0px 10px 0px;}

.box .card{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 14px 80px 18px 36px;
  cursor: pointer;
  margin:10px 0px 10px 0px !important;
  height:200px;
}

.box .card:hover{
     transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.box .card h3{
  font-weight: 600;
}

.box .card img{
  position: absolute;
  top: 20px;
  right: 15px;
  max-height: 120px;
}

.box .card-1{
  background-image: url(https://ionicframework.com/img/getting-started/ionic-native-card.png);
      background-repeat: no-repeat;
    background-position: right;
    background-size: 80px;
}

.box .card-2{
   background-image: url(https://ionicframework.com/img/getting-started/components-card.png);
      background-repeat: no-repeat;
    background-position: right;
    background-size: 80px;
}

.box .card-3{
   background-image: url(https://ionicframework.com/img/getting-started/theming-card.png);
      background-repeat: no-repeat;
    background-position: right;
    background-size: 80px;
}

@media(max-width: 990px){
.box .card{
    margin: 20px;
  }
} 


/*benefits*/
.benefits{width:100%; background:none repeat scroll 0% 0% rgba(21, 151, 156, 1);  padding:40px 0px 40px 0px;   }
.benefits h3{ text-align:center; color:#fff; padding:30px 0px 0px 0px;}
.benefits p{ text-align:center; color:#fff; padding:0px 0px 20px 0px;}

.listbenefits{padding:25px 0px 25px 0px; color:#fff!important; }
.listbenefits .media-heading{ font-size:19px;}


.oas_about{padding:50px 35px 50px 35px; background:#ddd; margin:0px; }
.oaspart h2{ text-align:center;}
.oaspart p{ text-align:center;}

.benefits_oas{width:100%; background:none repeat scroll 0% 0% rgb(40, 130, 229);  padding:40px 0px 40px 0px;   }
.benefits_oas h3{ text-align:center; color:#fff; padding:30px 0px 0px 0px;}
.benefits_oas p{ text-align:center; color:#fff; padding:0px 0px 20px 0px;}

.listbenefits{padding:25px 0px 25px 0px; color:#fff!important; }
.listbenefits .media-heading{ font-size:19px;}


.tab-content h3{color:#29a2a4;}

.button_readmore{width:100%;   background:#009688; float:left; color:#fff!important; padding:10px 20px 10px 20px;}

/*ACTIONTRACKING*/
 .blocksaction{height:250px; background:#47b7f1; color:#fff; margin:5px;}
 .blocksactionb{height:250px; background:#47cff1; color:#fff; margin:5px;}
 .blocksactionc{height:250px; background:#47dff1; color:#fff; margin:5px; width:280px;}
 .blocksactiond{height:250px; background:#47eff1; color:#fff; margin:5px;}