
body {
    font-size: 14px;
    font-weight: 300;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

html,
body {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

img {
   width: 100%;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 28px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-padding {
    padding: 70px 0px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title h2 {
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 600;
    margin-top: 0;
}

a.read-more {
    display: inline-block;
    color: #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid #fafafa;
    font-weight: 600;
    margin: 0px 10px;
    background: transparent;
}

a.read-more:hover {
    background: #fff;
    color: #333;
    border: 1px solid #fafafa;
    -webkit-transition: .3s;
    transition: .3s;
}

a.read-more.theme-cl {
    display: inline-block;
    color: #ffa800;
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid #ffa800;
    font-weight: 600;
    margin: 0px 10px;
    background: transparent;
}

a.read-more.theme-cl:hover {
    background: #ffa800;
    color: #fff;
    border: 2px solid #ffa800;
    -webkit-transition: .3s;
    transition: .3s;
}

.scrollup {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 40px;
    cursor: pointer;
    display: none;
    z-index: 2;
    background: #333;
}

.scrollup:hover {
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader-area {
    position: fixed;
    background: #fff;
    z-index: 11000;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.preloader-area h2 {
    margin: auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -80px;
    top: 42%;
    font-size: 50px;
}

.spinner {
    margin: auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -20px;
    top: 50%;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #000;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot1 {
    background-color: #000;
}

.dot2 {
    top: auto;
    background-color: #000;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.header-text .home-arrow-down {
    text-align: center;
    position: absolute;
    bottom: -150px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-text .home-arrow-down .btn {
    font-size: 14px;
    height: 35px;
    width: 25px;
    text-align: center;
    border: 1px solid #fafafa;
    border-radius: 30px;
}

.home-arrow-down i {
    margin-left: -4px;
}

.header-text .home-arrow-down .fa {
    color: #CACBCD;
    display: inline-block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation-name: home-arrow-down;
    animation-name: home-arrow-down;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes home-arrow-down {
    from {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    10% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
        filter: alpha(opacity=100);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    to {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes home-arrow-down {
    from {
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    10% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
        filter: alpha(opacity=100);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    to {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
    height: 100%;
}

.welcome-image-area {
    position: relative;
    height: 100%;
    background: url('../img/landing.jpg') no-repeat;
    background-size: cover;
    z-index: 1;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: url('../img/landing.jpg') no-repeat;
    background-size: cover;
    transition: 1s opacity;
    width: 100%;
}

.welcome-image-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .2);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.with-pan p a {
    color: #000;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.header-text h1 {
    color: #42c423;
    font-size: 32px;
    margin-top: 0px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}

.header-text p {
    color: #fff;
    font-size: 14px;
    margin: auto;
    margin-bottom: 25px;
    font-weight: 500;
    /*max-width: 500px;*/
	max-width: 555px;
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(255, 255, 255, 0.34);
}

.logo {
    padding-top: 25px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo a p {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 700;
    color: #242424;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-left: 15px;
}

img.logo-icon {
    max-width: 40px;
    display: inline-block;
}

.mainmenu .navbar-nav li {
    margin-right: 25px;
}

.mainmenu .navbar-nav li a {
    text-transform: uppercase;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 0;
    padding-left: 0;
    color: #242424;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.mainmenu .navbar-nav li a:hover {
    background: none;
    color: #242424;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
    background: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.menu-bg {
    -webkit-transition: .3s;
    transition: .3s;
    background: #fff;
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    border: none;
}

.menu-bg .logo {
    padding-top: 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.menu-bg .logo a p {
    color: #fff;
    font-size: 20px;
    -webkit-transition: .3s;
    transition: .3s;
}

.menu-bg .mainmenu .navbar-nav li a {
    color: #fff;
    padding-top: 22px;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 13px;
    padding-bottom: 22px;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
    color: #42c423;
}

/*
* ----------------------------------------------------------------------------------------
* 04.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
}

.single-service {
    padding: 30px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    margin-top: 30px;
    border: 2px solid #f9f9f9;
    border-radius: 5px;
}

.single-service h4 {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    letter-spacing: 4px;
}

.service-icon i {
    font-size: 40px;
    color: #000;

}

.single-service p {
    margin-bottom: 0;
    color: #868689;

}

/*
* ----------------------------------------------------------------------------------------
* 05.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {
    background: #F7F7F7;
}

.work-inner .mix {
    display: none;
}

ul.work {
    padding: 0;
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
}

ul.work li {
    display: inline-block;
    padding-bottom: 4px;
    margin: 0 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #938d8d;
    border: none;
    cursor: pointer;
    font-size: 12px;
    border-bottom: 2px solid transparent;
}

ul.work li:hover {
    color: #000;
    -webkit-transition: .3s;
    transition: .3s;
}

ul.work li.active {
    color: #000;
}

.work .item {
    padding: 0;
    margin: 0;
}

.work .col-md-4 {
    padding: 0;
    margin: 0;
}

.work figure.effect-ruby img {
    height: auto;
    width: 100%;
}

.work .grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    min-width: 320px;
    max-width: 480px;
    max-height: 360px;
    width: 100%;
    height: auto;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.work .grid figure:hover {
    background: #fff;
}

.work figure.effect-ruby h2 {
    margin-top: 40%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    color: #000;
}

.work figure.effect-ruby p {
    font-size: 16px;
    text-transform: capitalize;
    border: none;
    padding: 0;
    margin: 5px 0px;
    color: #000;
}

.work figure.effect-ruby p strong {
    font-size: 16px;
    text-transform: uppercase;
    margin-right: 5px;
}

.work .item:hover figure.effect-ruby h2 {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: .3s;
    transition: .3s;
}

/*
* ----------------------------------------------------------------------------------------
* 06.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: url(../images/bg/testimonial.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.testimonial-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.testimonial-list {
}

.color-title h2 {
    color: #fff;
}

.single-testimonial h2 {
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 700;
}

.single-testimonial h3 {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 300;
    margin-top: 0;
    color: #fff;
}

.single-testimonial p {
    line-height: 25px;
    color: #fff;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 5px;
    height: 5px;
    margin: 5px 7px;
    border-radius: 20px;
    background: #ccc;
}

/*
* ----------------------------------------------------------------------------------------
* 07.TEAM CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.team-area {
}

.team-image {
    position: relative;
    margin-top: 30px;
}

.team-description {
    padding: 20px 30px;
    position: absolute;
    left: auto;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    bottom: -90px;
    width: 100%;
    text-align: center;
    display: block;
}

.team-image img {
    width: 100%;
}

.single-team:hover .team-description,
.single-team:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.single-team:hover .team-description {
    bottom: 0px;
}

.team-description h4 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    margin-bottom: 0px;
    font-weight: 600;
}

.team-description h3 {
    font-size: 16px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
}

.team-description p {
    color: #fff;
}

.single-team,
.team-description {
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    overflow: hidden;
}

.team-social {
}

.team-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.team-social ul li {
    display: inline-block;
    margin: 0px 5px;
}

.team-social ul li a {
    font-size: 14px;
    color: #fafafa;
}

/*
* ----------------------------------------------------------------------------------------
* 13.NEWS LETTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.our-news-letter {
    padding: 100px 0px;
    background: #F7F7F7;
}

.our-news-letter h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.our-news-letter input[type='text'] {
    display: block;
    width: 35%;
    text-align: center;
    margin: 0px auto;
    border-radius: 5px;
    border: none;
    height: 50px;
    background: none;
    border-bottom: 1px solid #ccc;
}

.our-news-letter input[type='submit'] {
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    background: #000;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    border: 1px solid #000;
    border-radius: 30px;
}

.our-news-letter input[type='submit']:hover {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    -webkit-transition: .3s;
    transition: .3s;
}

/*
* ----------------------------------------------------------------------------------------
* 10.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-area {
}

.contact-form-design-area {
    margin-top: 30px;
}

.contact-details-list h2 {
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 40px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
}

.contact-details-list h2:before {
    position: absolute;
    left: 0;
    top: 56px;
    height: 10px;
    width: 74px;
    background: #000;
    content: "";
    z-index: 1;
}

.contact-details-list p {
    margin-bottom: 30px;
}

.single-contact {
    margin-bottom: 22px;
}

.single-contact h3 {
    font-size: 18px;
    margin-top: 20px;
    text-transform: capitalize;
    font-weight: 400;
    -webkit-transition: .3s;
    transition: .3s;
}

.single-contact h3 i {
    margin-right: 20px;
}

.contact-social {
    margin-top: 40px;
}

.contact-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-social ul li {
    display: inline-block;
    margin-right: 10px;
}

.contact-social ul li a {
    font-size: 20px;
    color: #333;
}

.footer-socail {
    text-align: right;
    margin-top: 0;
}

.footer-socail ul li {
    margin: 0px 15px;
}

.footer-socail ul li a {
    font-size: 30px;
    color: #fafafa;
}

.form-control {
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    background-color: #F7F7F7;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.contact-form button.btn {
    display: inline-block;
    color: #fff;
    background: none;
    padding: 15px 25px;
    border: 1px solid #000;
    font-size: 14px;
    border-radius: 0px;
    font-weight: 300;
    -webkit-transition: .3s;
    transition: .3s;
    background: #000;
    text-transform: capitalize;
    border-radius: 30px;
    margin-left: 12px;
}

.contact-form button.btn:hover {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-success,
.input-error {
    margin-bottom: 0;
    margin-top: 10px;
    border-radius: 4px;
    display: none;
}

.input-success {
    border: 1px solid #01B500;
}

.input-error {
    border: 1px solid #ff0000;
}

/*
* ----------------------------------------------------------------------------------------
* 15.CONTACT DETAILS CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-details-area {
    padding-bottom: 60px;
}

.contact-details-list {
    background: #fff;
    margin-top: 30px;
    padding: 30px;
}

.contact-icon {
    float: left;
    margin-bottom: 30px;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 20px;
    color: #000;
    height: 50px;
    width: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
}

.single-contact:hover .contact-icon i {
    color: #fff;
    border: 1px solid #000;
    background: #000;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 25px;
}

.single-contact {
}

.single-contact h2 {
    font-size: 18px;
    margin-top: 20px;
    text-transform: capitalize;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
}

/*
* ----------------------------------------------------------------------------------------
* 11.MAP CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.gmap {
    height: 400px;
    width: 100%;
}

/*
* ----------------------------------------------------------------------------------------
* 12.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    background: #000;
    padding: 30px 0px;
}

.footer-text h6 {
    text-transform: capitalize;
    color: #fff;
    line-height: 25px;
    font-weight: 300;
    font-size: 16px;
}

section.about-us-area {
    background: url("../img/home_about.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0px;
}

section.comunity-sec {
    background: url("../img/slide-03.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 0px 0px;
    overflow-x: hidden;
}

section.introduce-biz {
    background: url("../img/slide-04.jpg") no-repeat;
    background-position: bottom center;
    background-size: cover;
    padding: 150px 0px;
    overflow-x: hidden;
}

section.abut-sc {
    background: url("../img/home_bizcontract.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
    overflow-x: hidden;
}

.about-us-area h2 {
    color: #42c423;
    font-weight: 600;
    margin-bottom: 7px;
}

a {
    cursor: pointer;
}

.about-us-area h4 {
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 32px;
    margin: 0;
}

.over-bg {
    background: rgba(3, 3, 3, 0.67);
    padding: 150px 80px;
}

.col-sm-6.over-bg h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 25px;
}

.col-sm-6.over-bg p, .abut-sc p {
    color: #fff;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
}

.col-sm-6.over-bg h3 .theme-color {
    color: #ffa800;
}

.introduce-biz h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 28px;
}

.introduce-biz h2 {
    color: #ffa800;
    font-weight: 600;
    margin: 0;
}

.abut-sc p {
    margin-bottom: 20px;
}

.abut-sc a {
    color: #ffa800;
    margin-bottom: 0;
    font-weight: 600;
}

.footer-area a, .footer-area h6 {
    font-size: 13px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 0;
}

.trc-sale-splash {
    background: url("../img/trvc-sale.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.trc-sale-splash h3 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    line-height:  1.5;
    letter-spacing: 1px;
}

.trc-sale-splash:before {
    height: 180px;
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -90px;
    left: 0;
    content: "";
}

section.comunity-sec.what-tiv {
    background: url("../img/trc-01.jpg") no-repeat;
    background-position: left top;
    /*background-size: 100%;*/
    padding: 0px 0px;
    overflow-x: hidden;
}

.what-tiv .over-bg {
    background: #2b2b2b;
    padding: 108px 80px;
}

.what-tiv .col-sm-6.over-bg h3 {
    text-transform: uppercase;
    font-weight: 400;
}

.what-tiv .col-sm-6.over-bg p {
    margin-bottom: 20px;
}

.what-tiv .col-sm-6.over-bg p:last-child {
    margin-bottom: 0px;
}

.about-us-area.section-padding.count-sec-trc {
    background: url("../img/trc-03.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0px;
}

.section-register {
    background: url("../img/action-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 40px 0px;
}


.section-roadmap {
    padding: 160px 0;
    background-color: #2b2b2b;

}

.section-register a,
.section-roadmap a {
    min-width: 200px;
    text-align: center;
}


.section-roadmap a {
    background: white;
    color: #2b2b2b;
    border: 2px solid white;
}

.section-roadmap a:hover {
    background: #2b2b2b;
    color: white;
}


.section-roadmap h4 {
    color: #ffa800;
    font-weight: 600;
    font-size: 22px;
    margin-top: 0;
    letter-spacing: 1px;
}


section.section-register h4 {
    color: #fff;
    font-weight: 100;
    font-size: 22px;
    margin-top: 0;
}

.section-roadmap p,
section.section-register p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    margin-top: 15px;
    opacity: 0.8;
}

.count-sec-trc-border {
    border-right: 1px solid #fff;
}

.about-us-area.section-padding.count-sec-trc h2 {
    font-weight: 400;
}

.about-us-area.section-padding.count-sec-trc h4 {
    font-size: 16px;
    font-weight: 400;
}

.white-bg-pvt {
    background: #fff;
}

.white-bg-pvt h2 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffa800;
}

.white-bg-pvt h6 {
    color: #000;
    font-size: 16px;
    margin-bottom: 50px;
}

h2.service-title {
    color: #292c33;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 6px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

p.service-desc {
    margin-bottom: 0;
    color: #424242;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.8;
}

p.large-p {
    font-size: 17px;
    font-weight: 600;
}

.with-pan p {
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .flex-sm {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        min-height: inherit;
    }
}

.icon-large.text-theme img {
    max-width: 50px;
    display: inline-block;
    vertical-align: middle;
}

.right-con-dis-in {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}
@media only screen and (min-width: 200px) and (max-width: 600px) {
    .with-pan.nav.nav-pills {
        display: none;
    }

    .menu-bg .logo a p {
        font-size: 14px;
    }

    .menu-bg .logo{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .logo {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .logo a p {
        font-size: 16px;
        margin-left: 7px;
    }

    .header-text p {
        color: #fff;
        font-size: 12px;
       line-height: 1.5;
    }

    p{
        font-size: 13px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    video {
        width: auto;
        height: 100%;
        display: none;
    }

    .pos-rel-med{
        background: url("../img/videobg.jpg") no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .right-con-dis-in{
        display: block;
        margin: auto;
        margin-top: 20px;
    }
}
@media only screen and (min-width: 200px) and (max-width: 400px) {
    .header-text p {
        font-size: 11px;
        margin-bottom: 15px;
    }
}


.mainmenu .navbar-nav li.active a{
    color: #429a2d;
}

.menu-bg .mainmenu .navbar-nav li.active a{
    color: #308c1a;
}

.icon-large.text-theme {
    display: inline-block;
}


/******************************new css*****************************/
.bl-o h3 {
  padding: 70px 0 0;
}
p.large-p {
  font-size: 17px;
  font-weight: 600;
  padding-top: 60px;
}

/*
* ----------------------------------------------------------------------------------------
* KY ADDITIONAL CSS - READ MORE
* ----------------------------------------------------------------------------------------
*/

.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  display: none;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
  display: initial;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Show more';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Show less';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
  margin-top: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* KY ADDITIONAL CSS - TEAM
* ----------------------------------------------------------------------------------------
*/
.hero-team {
    position: relative;
    height: 100%;
    background: url('../img/hero_team.jpg') no-repeat;
    background-size: cover;
	background-position: center;
    z-index: 1;
}


.section-team {
    padding: 5% 10%;
    letter-spacing: 0.5px;
}


.section-team .row-flex {
  display: flex;
  flex-wrap: wrap;
}

.section-team p {
    line-height: 1.5;
}

.section-team .team-content h3 {
    color: #ffa800;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 38px;
    padding-left: 5%;
}

.section-team .team-content h3 span.heading-color {
    color: #222222;
}


.section-team .team-content p {
    padding-left: 15%;
}

.section-team .team-profile {
    background-color:#222222;
	padding: 0;
}

.section-team hr.team-separator {
    margin: 68px 0;
	border: 0;
}


.section-team p.team-position {
    color: #333333;
    font-weight: bold;
    margin: 0 0 38px 5%;
    padding: 0 0 10px 0;
    border-bottom:  1px solid #999999;
    line-height:  2;
}


.section-team .small-team {
    text-align: center;
}
.section-team .small-team .small-team-image {
    margin: 0 auto;
    padding:  68px 0;
}
.section-team .small-team .small-team-image img {
    width: 80%;
    height: 80%;
}


.section-team .small-team .custom-ratio {
    width: 75.5%!important;
}

.section-team .small-team .custom-ratio-2 {
    width: 87.5%!important;
}

.section-team .small-team p.small-team-position {
    font-weight: bold;
    height: 38px;
}


.section-team .small-team h3.small-team-name {
    color: #ffa700;
    height: 68px;
}

.section-team .team-heading {
    background: #333333;
    width: 100%;
    color: #ffa700;
    margin: 0 auto 5% auto;
    text-align: center;
    bottom: 0;
    height: 68px;
    line-height: 60px;
}
