/*--------------------------------------- custom ---------------------------------------*/

/*
colors
    greeen: #41B797
    light-green: #00ffba
    white-background: #ffffff 
    light-black: #3C3E4A
    full-black: #242529
    link-inactive, dark-grey: #7D7D7D
    light-grey: #EDEFEF
    font-grey: #B5B5B5
    link-active: #E0E0E2
*/



* {
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #efefef;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 300;
}

a {
    color: #41B797;
    text-decoration: none;
}

.greenBox a {
    color: #ffffff;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    text-decoration: none;
    color: #00ffba;
}

/*for header and navigation only*/
.imgBg {
    background-image: url("../images/main-bg.jpg");
    background-size: cover;
}

.logo {
    display: block;
    margin: 0 auto;
    padding: 30px;
}

.topStripe {
    color: #fff;
    padding: 10px;
    border-bottom: 1px solid #41B797;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000100+0,000000+100&1+0,0.26+100 */
    background: -moz-linear-gradient(top,  rgba(0,1,0,1) 0%, rgba(0,0,0,0.26) 100%); /* FF3.6-15 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,1,0,1)), color-stop(100%,rgba(0,0,0,0.26))); /* Chrome4-9,Safari4-5 */
    background: -webkit-linear-gradient(top,  rgba(0,1,0,1) 0%,rgba(0,0,0,0.26) 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(top,  rgba(0,1,0,1) 0%,rgba(0,0,0,0.26) 100%); /* Opera 11.10-11.50 */
    background: -ms-linear-gradient(top,  rgba(0,1,0,1) 0%,rgba(0,0,0,0.26) 100%); /* IE10 preview */
    background: linear-gradient(to bottom,  rgba(0,1,0,1) 0%,rgba(0,0,0,0.26) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000100', endColorstr='#42000000',GradientType=0 ); /* IE6-9 */

}


.tag {
    color: #00ffba;
}

@media screen and (max-width:768px) {
    .toBlock {
        display: block;
        text-align: center;
    }
    
}

@media screen and (min-width:768px) {
    .toBlock {
        margin-left: 10px;
    }
    
}

@media screen and (min-width: 768px) {
    .navbar-nav {
        float: none;
        display: table;
        margin: 0 auto;
    }
    
    .navbar-nav > li > a {
        padding-left: 25px;
        padding-right: 25px;
    }
}

hr.styled {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    width: 80%;
}

.navbar-default {
    background-color: #242529;
    border-color: #242529;
    border-radius: 0;
}

.navbar-nav .active > a {
    background-color: #3C3E4A !important;
    color: #EDEFEF !important;
    border-bottom: 3px solid #41B797 !important;
}

.navbar-default .navbar-nav > li > a {
    color: #7D7D7D;
    font-size: 18px;
    border-bottom: 3px solid transparent;
}

.navbar-default .navbar-nav > li > a > i {
    color: #00ffba;
    margin-right: 20px;
    width: 20px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .navbar-default .navbar-nav > li > a > i {
        display: none;
    }
    
}

.navbar {
        margin-bottom: 0;
    }

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #EDEFEF;
    background-color: transparent;
    border-bottom: 3px solid #3C3E4A;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-toggle .icon-bar {
    width: 30px;
    height: 3px;
    border-radius: 2px;
}

.navbar-collapse {
    border-top: 0px solid transparent; 
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #41B797;
}

.whiteBox {
    background-color: #ffffff;
    padding: 20px;
}

.greenBox {
    background-color: #41B797;
    padding: 30px;
    text-align: center;
    color: #fff;
    position: relative;
}

.greenBox .img-circle {
    border: 3px solid #ffffff;
    width: 180px;
}

.greenBox .fa {
    padding: 10px;
}

.greyBox {
    background-color: #efefef;
    padding: 30px;
    text-align: center;
}

.greyBox i {
    color: #41B797;
}

.arrow-after-green::after {
    content: '';
    position: absolute;
    left: 49%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #41B797;
    clear: both;
}

.btn-doerit {
    display: inline-block;
    padding: 0 0 0 20px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    border: 2px solid transparent;
    border-radius: 80px;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.btn-green {
    color: #fff;
    background-color: #41B797;
    border-color: #ffffff;
}

.btn-green i {
    padding: 10px;
    border-radius: 50%;
    margin-right: 4px;
}

.btn-green:hover i, .btn-green:active i, .btn-green:focus i {
    background-color: #41B797;
    color: #fff;
}

.btn-green:hover, .btn-green:active, .btn-green:focus {
    box-shadow: inset 250px 0 0 0 #ffffff;
    color: #41B797;
}

.toCenter {
    margin: 0 auto;
    display: block;
    text-align: center;
}

.textCenter {
    text-align: center;
}

.contentBox h4 {
    color: #41B797;
    padding-top: 10px;
}

.contentBox p {
    color: #B5B5B5;
    padding: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

footer {
    display: block;
    text-align: center;
    padding: 5px;
    color: #41B797;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #efefef;
}

.toTop {
    position: fixed;
    right: 60px;
    bottom: 60px;
}

.green {
    color: #41B797;
}

.styled {
    font-size: 16px;
    color: #B5B5B5;
    font-weight: 400;
    line-height: 1.6;
}

.styled span {
    display: block;
    color: #41B797;
}

.styled li {
    padding: 10px;
}

@media screen and (min-width:768px) {
    .styled li {
        height: 95px;
    }
}

.thumbBox {
    padding: 30px;
}

.whiteBox .thumbBox h4 {
    color: #41B797;
    text-align: center;
}

.whiteBox .thumbBox p {
    font-size: 16px;
    color: #B5B5B5;
    font-weight: 400;
    line-height: 1.6;
}

.whiteBox .thumbBox li {
    font-size: 16px;
    color: #7D7D7D;
    font-weight: 400;
    line-height: 1.6;
}

.greenBox .thumbBox h4 {
    color: #ffffff;
    text-align: center;
}

.greenBox .thumbBox p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
}

.greenBox .thumbBox li {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
}

.thumbBox2 {
    background-color: #ffffff;
    padding: 5px;
    margin: 10px;
}

.thumbBox2 img {
    display: block;
    margin: 0 auto;
    max-height: 240px;
}

.thumbBox2 .thumbTag {
    text-align: center;
    font-weight: 400;
    font-size: 80%;
    margin-bottom: 0;
    color: #41B797;
}

.thumbBox2 h4 {
    text-align: center;
    color: #41B797;
}

.thumbBox2 p {
    color: #B5B5B5;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.cntBox {
    text-align: center;
    border-radius: 6px;
}

.cntBox .fa {
    font-size: 7em;
    color: #41B797;
}

.cntBox p {
    color: #B5B5B5;
    padding: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.main {
    padding: 20px;
}
/*

#phone {
    max-height: 425px;
}


@media screen and (max-width:768px) {
    #phone {
       display: none;
    }
}
*/

@media screen and (max-width:480px) {
    .ux {
        font-size: 20px;
    }
}

@media screen and (max-width:992px) {
    .polyImage {
        display: block;
        margin: 0 auto;
    }
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    margin: 0 auto;
    height: auto;
}

.carousel-caption {
    color: #41B797;
    font-size: 16px;
    font-weight: 300;
    text-shadow: none;
}

.sliderBox {
    background-color: #ffffff;
    background-image: url(../images/slider_background.jpg);
}

@media screen and (min-width:992px) {
    .sliderBox {
        background-size: contain;
    }
}

@media screen and (max-width:992px) {
    .sliderBox {
        background-size: contain;
    }
}

.carousel-control {
    display: none;
}












