@charset "utf-8";
/* CSS Document
Project Name: Coders
Version:  1.0
Created Date: May 1, 2018
Author Name: xcodesolution (https://themeforest.net/user/xcodesolution)
*/

/*****-----*****-----*****-----*****
01. Imported Fonts
02. General CSS
        * Common CSS
        * Form CSS
        * Btn CSS
        * Background Over Layer CSS
        * Default Title CSS
        * Preloader CSS
        * Scroll To Top CSS
        * Pagination CSS
03. Header CSS
        * NavBar Fixed CSS
04. Welcome CSS
05. Slider CSS
06. About CSS
        * About Two
        * About Three
07. Video CSS
08. Service CSS
09. Skill CSS
10. Team CSS
        * Team Two CSS
        * Team Details CSS
11. Counter CSS
12. Portfolio CSS
        * Item Hover CSS
        * Portfolio Two CSS
13. Testimonial CSS
14. Blog CSS
        * Blog Two CSS
        * Blog Single CSS
        * Sidebar CSS
15. FAQ CSS
16. Contact CSS
17. Page Title
18. Error CSS
19. Account CSS
20. Footer CSS
21. Copyright CSS
22. Demo List Page CSS

*****-----*****-----*****-----*****/


/*****-----*****-----*****-----*****
    01. Imported Fonts
*****-----*****-----*****-----*****/

/* Google Fonts */
@import url('//fonts.googleapis.com/css?family=Oxygen:400,700');


/*****-----*****-----*****-----*****
    02. General CSS
*****-----*****-----*****-----*****/

body {
    font-family: 'Oxygen', sans-serif;
    background: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #424242;
    overflow-x: hidden;
}
/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oxygen', sans-serif;
    color: #1d1d1d;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    text-transform: capitalize;
}
p {
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    text-align: justify;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:focus,
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.director img{width: 30% !important;float: left!important;padding: 20px!important;}
/* Form CSS */
.form-control {
    height: 40px;
    margin-bottom: 30px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}
.form-control:focus {
    border-color: #999999;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
::-webkit-input-placeholder {
    color: #676767 !important;
}
::-moz-placeholder {
    color: #676767 !important;
}
::-o-placeholder {
    color: #676767 !important;
}
:-ms-input-placeholder {
    color: #676767 !important;
}
input:-moz-placeholder {
    color: #676767 !important;
}

.newsletter-col ::-webkit-input-placeholder {
    color: #ffffff !important;
}
.newsletter-col ::-moz-placeholder {
    color: #ffffff !important;
}
.newsletter-col ::-o-placeholder {
    color: #ffffff !important;
}
.newsletter-col :-ms-input-placeholder {
    color: #ffffff !important;
}
.newsletter-col input:-moz-placeholder {
    color: #ffffff !important;
}

.section-default {
    padding: 20px 0 20px;
    position: relative;
}
.col-default {
    margin-bottom: 30px;
}

/* Btn CSS */
.simple-default-btn {
    border: none;
    border-radius: 0;
    color: #ffffff;
    background: #fd9c55;
    padding: 12px 30px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-black {
    background: #111111;
}
.simple-default-btn:before {
    content: '';
    width: 30px;
    height: 200px;
    background: #ffffff;
    position: absolute;
    left: -30px;
    top: -100px;
    z-index: 0;
    opacity: 0.2;
    -ms-transform: rotate(20deg); /* IE 9 */
    -webkit-transform: rotate(20deg); /* Safari */
    transform: rotate(20deg);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.simple-default-btn:hover:before {
    left: 300px;
    z-index: -1;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.simple-default-btn:hover {
    color: #ffffff;
    background: #111111;
    z-index: 1;
    border-color: #6AB4FF;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}



/* Background Over Layer CSS */
.over-layer-black {
    position: relative;
}
.over-layer-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.7);
}
.over-layer-white {
    position: relative;
}
.over-layer-white:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Default Title CSS */
.default-title {
    margin-bottom: 60px;
}
.default-title h2 {
    font-size: 36px;
    line-height: 28px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.default-title p {
    letter-spacing: 1px;
    font-weight: bold;
    font-style: italic;
}


/* Preloader CSS */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #ffffff url('../images/preloader.gif') no-repeat center center;
}


/* Scroll To Top CSS Start */
#dyscrollup-btn {
    z-index: 999999;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    color: #ffffff;
    text-align: center;
}
#dyscrollup-btn:before {
    content: "\f0a6";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    bottom: 10px;
    color: #fd9c55;
    font-size: 45px;
}

/* Pagination CSS Start */
.pagination {
    margin-bottom: 30px;
    z-index: 0;
}
.pagination.mb40{
    margin-bottom: 40px;
}
.pagination.mb20 {
    margin-bottom: 20px;
}
.pagination.mb0{
    margin-bottom: 0;
}
.pagination>li:first-child>a, .pagination>li:last-child>a {
    border-radius: 0;
}
.pagination>li>a, .pagination>li>span {

}
.pagination>.active>a {
    color: #ffffff;
    background: #FD9C55;
    border-color: #FD9C55;
}
.pagination>.active>a:hover {
    color: #ffffff;
    background: #FD9C55;
    border-color: #FD9C55;
}


/*****-----*****-----*****-----*****
    03. Header CSS
*****-----*****-----*****-----*****/
.main-header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
}
.main-nav {
    background: transparent;
    border-bottom: none;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.main-nav .navbar-nav {
    text-align: right;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
.top-nav-collapse {
    background: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.top-nav-collapse .navbar-nav {
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.main-nav .navbar-nav>li {
    float: none;
    display: inline-block;
}
.main-nav.top-nav-collapse {
    background: #ffffff;
    -webkit-box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.6);
}
.main-nav .navbar-brand {
    height: auto;
    padding: 0;
    margin-left: 0 !important;
    margin-top: 5px;
}
.logo-white {
    display: block;
}
.logo-black {
    display: none;
}
.main-nav.top-nav-collapse .logo-white {
    display: none;
}
.main-nav.top-nav-collapse .logo-black {
    display: block;
}
.main-nav .navbar-brand>a img {
    width: 230px;
    height: auto;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.main-nav .navbar-nav>li>a {
    text-transform: uppercase;
    color: #ffffff;
    padding: 15px 0;
    margin-left: 22px;
    letter-spacing: 1px;
}
.main-nav.top-nav-collapse .navbar-nav>li>a {
    color: #111111;
}
.main-nav .navbar-nav>li>a:hover {
    color: #fd9c55;
}
.main-nav .navbar-nav>.active>a,
.main-nav .navbar-nav>.active>a:focus,
.main-nav .navbar-nav>.active>a:hover {
    background: transparent;
    color: #fd9c55;
}
.navbar-nav>.active>a {
    color: #fd9c55 !important;
}
.main-nav .navbar-right {
    margin-right: 0;
}

/* Navbar Two CSS start */
.main-header-two {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}
.header-navbar {

}
.header-navbar .navbar-brand {
    padding: 0;
    /*margin-top: 22px;*/
}
.header-navbar .navbar-brand img {
    width: 220px;
    height: auto;
}
.header-navbar .navbar {
    margin-bottom: 0;
}
.header-navbar .navbar-nav {
    margin-top: 0;
}
.header-navbar .navbar-default {
    border: none;
    padding: 0;
    background-color: #fff;
}
.header-navbar .navbar-default .navbar-nav>li>a {
    text-transform: uppercase;
    color: #000;
    padding: 35px 0;
    margin-left: 20px;
    letter-spacing: 1px;
}
.header-navbar .navbar-default .navbar-nav>.active>a,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    color: #FD9C55;
    background-color: transparent;
}
.header-navbar .navbar-default .navbar-nav>li>a:focus,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    background: transparent;
}
.header-navbar .dropdown-menu {
  min-width: 310px;
}
.header-navbar .navbar-right .dropdown-menu {
    right: auto;
}
.header-navbar .navbar-nav .dropdown-menu {
    padding: 0;
    border: none;
    border-top: 3px solid #FD9C55;
    border-radius: 0;
    margin-left: 20px;
}
.header-navbar .navbar-nav .dropdown-menu>li>a {
    padding: 15px 10px;
    color: #333333;
    font-size: 15px;
    border-top: 1px solid #eeeeee;
}
.header-navbar .navbar-nav .dropdown-menu>li>a:hover {
    padding-left: 15px;
    color: #fff;
    background-color:#F7941D;
}
.header-navbar .navbar-default .navbar-nav>.open>a,
.header-navbar .navbar-default .navbar-nav>.open>a:focus,
.header-navbar .navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
}


/* NavBar Fixed CSS */
.scroll-to-fixed-fixed {
    background: #ffffff;
    top: 0;
    width: 100% !important;
    z-index:9;
    -webkit-box-shadow: 0px 8px 12px -10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 8px 12px -10px rgba(0,0,0,0.2);
    box-shadow: 0px 8px 12px -10px rgba(0,0,0,0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-navbar .logo-1 {
    display: none !important;
}
.header-navbar .scroll-to-fixed-fixed .logo-1 {
    display: block !important;
}
.header-navbar .logo-2 {
    display: block;
}
.header-navbar .scroll-to-fixed-fixed .logo-2 {
    display: none !important;
}
.header-navbar .main-nav.top-nav-collapse .navbar-nav>li>a {
    color: #111111;
}


/*****-----*****-----*****-----*****
    04. Welcome CSS
*****-----*****-----*****-----*****/
.welcome-section {
    position: relative;
    background: url(../images/bg/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}
.welcome-section.over-layer-black:before {
    background: rgba(0,0,0,0.6);
}
.welcome-col {
    text-align: center;
}
.welcome-col h5 {
    color: #ffffff;
    letter-spacing: 15px;
    font-weight: normal;
}
.welcome-section.sec-btm-style:after {
    height: 200;
}
.welcome-col h1 {
    font-size: 50px;
    color: #f9f9f9;
    margin-bottom: 20px;
}
.welcome-col h1 span {
    color: #fd9c55;
}
.welcome-col .cd-headline {
    color: #f9f9f9;
    font-size: 18px;
}
.welcome-col ul {
    margin-top: 20px;
}
.welcome-col ul li {
    display: inline-block;
    margin: 0 3px;
}
.welcome-col ul li a i {
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
    color: #f9f9f9;
    border: 1px solid #f9f9f9;
    -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     border-radius: 50%;
}
.welcome-col ul li a i:hover {
    border-color: #fd9c55;
    background: #fd9c55;
    color: #ffffff;
}
.section-style {

}
.section-style:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -65px;
    z-index: 99;
    width: 50%;
    height: 20%;
    background: #ffffff;
    -ms-transform: skewY(10deg);
    -webkit-transform: skewY(10deg);
    transform: skewY(10deg);
}
.section-style:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -65px;
    z-index: 99;
    width: 50%;
    height: 20%;
    background: #ffffff;
    -ms-transform: skewY(-10deg);
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
}
.welcome-table {
    width: 100%;
    height: 100%;
    display: table;
}
 .welcome-cell {
    vertical-align: middle;
    display: table-cell;
 }


/*****-----*****-----*****-----*****
    05. Slider CSS
*****-----*****-----*****-----*****/
.main-slider-area {
    overflow: hidden;
}

/* Fade Effect start */
.carousel-fade .carousel-inner .item {
    height: 100vh;
  opacity: 0.6;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  margin-top:100px;
}
.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: 99;
}
.main-slider-area .carousel-control .glyphicon-chevron-right {
    right: 20px;
}
.main-slider-area .carousel-control .glyphicon-chevron-left {
    left: 10px;
}
.main-slider-area .carousel-control.right,
.main-slider-area .carousel-control.left {
    width: 0;
}
.glyphicon-chevron-right:before {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    background: #000000;
    padding: 10px 15px;;
}
.glyphicon-chevron-left:before {
    content: "\f104";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    background: #000000;
    padding: 10px 15px;;
}
.slide-1:before, .slide-2:before, .slide-3:before,.slide-4:before,.slide-5:before, .slide-newone:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.3);
}
.carousel-indicators {
    bottom: 0;
}
.carousel-control.right,
.carousel-control.left {
    background-image: none;
}
.carousel .item {
    /*height: 75vh;*/
    width:100%;
}
.carousel-caption p {
    letter-spacing: 1px;
    font-size: 16px;
    text-align: center;
}
.carousel-caption h3 {
    color: #ffffff;
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.carousel-caption h3 span {
    color: #d10003;
}
.carousel-caption .btn {
    font-size: 14px;
    padding: 10px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.carousel-caption .btn:hover {
    background: #FD9C55;
    border-color: #FD9C55;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.carousel-caption {
    position: absolute;
    right: 0;
    left: 0;
    top: 52%;
    text-align: inherit;
    padding: 0 60px;
    text-shadow: none;
    -moz-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    -o-transform: translateY(-25%);
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}
/* Animation delays */
.carousel-caption h3:nth-child(2) {
    animation-delay: 1s;
}
.carousel-caption a {
    animation-delay: 2s;
}
.p {
  padding-top: 125px;
  text-align: center;
}

.p a {
  text-decoration: underline;
}




/*****-----*****-----*****-----*****
    06. About CSS
*****-----*****-----*****-----*****/
.about-section.section-default {
    padding: 30px 0 0px;
}
.about-col {

}
.about-col h2 {
    font-size: 35px;
    margin-bottom: 20px;
}
.about-col h2 span {
    color: #d10003;
}
.about-col h5 {
    margin-bottom: 20px;
    color: #666666;
}
.about-col p {
}
.mb20 {
    margin-bottom: 20px;
    text-align: justify;
}
.about-col button {
    margin-right: 10px;
}
.about-col ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.about-col ul li i {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    line-height: 25px;
    color: #FD9C55;
    /*font-size: 30px;*/
}
.coders-img {

}
.coders-img h1 {
    font-size: 40px;
    margin-bottom: 30px;
}
.coders-img h1 span {
    color: #FD9C55;
}
.signature-col {

}
.signature-col h1 {
    font-size: 40px;
    margin-bottom: 20px;
}
.signature-col h1 span {
    color: #FD9C55;
}
.signature-col img {
    margin-top: 20px;
    width: 150px;
}

/* About Two Start */
.about-two-area {
    padding: 120px 0 90px;
}
.about-two-col {
    margin-bottom: 30px;
}
.about-two-col h3 {
    font-size: 36px;
    line-height: 1.2;
}
.about-two-col h3 span {
    color: #FD9C55;
}
.title-box {
    padding: 50px 20px;
    background: url(../images/bg/brick.png);
    background-repeat: repeat;
}

/* About Three CSS */
.about-area-three {
    padding: 120px 0 70px;
}
.about-three-col {
    margin-bottom: 50px;
}
.about-three-col h3 {
    font-size: 24px;
    position: relative;
    margin-bottom: 20px;
}
.about-three-col h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: #FD9C55;
}




/*****-----*****-----*****-----*****
    07. Video CSS
*****-----*****-----*****-----*****/
.video-section.section-default {
    padding: 120px 0;
    background: url(../images/bg/2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.video-col {
    text-align: center;
}
.video-col h2 {
    color: #FD9C55;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.video-col h4 {
    color: #ffffff;
    margin-bottom: 30px;
}
.video-col i {
    font-size: 80px;
    color: #FD9C55;
}


/*****-----*****-----*****-----*****
    08. Service CSS
*****-----*****-----*****-----*****/
.service-section.section-default {
    padding: 120px 0 70px;
    background-image:url(../images/bg.jpg);
    margin-bottom: 20px;
}
.serviceBox{
    text-align: center;
    padding: 0 15px;
    margin-bottom: 50px;
}
.serviceBox .service-icon{
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    font-size: 35px;
    color: #fd9c55;
    border: 1px solid #dddddd;
    background: #dddddd;
    margin-bottom: 35px;
    position: relative;
    transform: rotate(-45deg);
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon{
    background: #fd9c55;
    color: #ffffff;
    border-color: #fd9c55;
}
.serviceBox .service-icon:after{
    content: "";
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 3px #fd9c55;
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
    padding: 5px;
    transform: scale(1.2);
    box-sizing: content-box;
    transition: all 0.2s ease 0s;
}
.serviceBox:hover .service-icon:after{
    transform: scale(1);
    opacity: 1;
}
.serviceBox .service-icon i{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.serviceBox .title{
    font-size: 22px;
    color: #000;
    margin: 0 0 15px;
}
.serviceBox .description{
    margin-bottom: 20px;
}



/*****-----*****-----*****-----*****
    09. Skill CSS
*****-----*****-----*****-----*****/
.skill-section.section-default {
    padding: 120px 0;
    background: url(../images/bg/3.jpg);
    background-size: 60%;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.skill-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 1500%;
    background: #FD9C55;
    -ms-transform: skewY(70deg);
    -webkit-transform: skewY(70deg);
    transform: skewY(70deg);
}
.skill-col h2 {
    font-size: 36px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}
.progress-box h5 {
   color: #eeeeee;
}
.progress {
    height: 5px;
    border-radius: 0;
}
.mb-none {
    margin-bottom: 0;
}
.progress-bar {
    background-color: #111111;
    height: 5px;
    border-radius: 0;
}



/*****-----*****-----*****-----*****
    10. Team CSS
*****-----*****-----*****-----*****/
.team-area {
    padding: 120px 0;
}
.team-area .owl-theme .owl-nav [class*=owl-] {
    background: #111111;
    padding: 4px 20px;
    font-size: 20px;
    border-radius: 0;
}
.our-team{
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team .pic{
    overflow: hidden;
    position: relative;
}
.our-team .pic:before,
.our-team .pic:after{
    content: "";
    width: 200%;
    height: 80%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: -100%;
    left: -4%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team .pic:after{
    background: rgba(0,0,0,0.5);
    top: auto;
    left: auto;
    bottom: -100%;
    right: -4%;
}
.our-team:hover .pic:before{ top: 50%; }
.our-team:hover .pic:after{ bottom: 50%; }
.our-team .pic img{
    width: 100%;
    height: auto;
}
.our-team .social{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 5%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team:hover .social{ opacity: 1; }
.our-team .social li{
    display: inline-block;
    margin: 0 5px;
}
.our-team .social li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #ffffff;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team .social li a:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #D10003;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team .social li a:hover:after{ transform: rotate(180deg); }
.our-team .team-content{
    padding: 20px;
    background: #f3f3f3;
}
.our-team .title{
    font-size: 19px;
    margin-bottom: 10px;
}
.our-team .title a {
    color: #D10003;
}
.our-team .title a:hover {
    color: #D10003;
}
.our-team .post{
}

/* Team Two CSS */
.team-two-area {
    padding: 20px 0 20px;
}
.team-col {
    margin-bottom: 30px;
}


/* Team Details CSS */
.team-details-area {
    padding: 120px 0 70px;
}
.team-details-img {
    margin-bottom: 50px;
    border: 1px solid #dddddd;
    position: relative;
}
.team-details-social {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    padding: 20px;
    background: rgba(60, 71, 103, 0.7);
    text-align: center;
}
.team-details-social li {
    display: inline-block;
    margin: 0 10px;
}
.team-details-social li a i {
    font-size: 20px;
    color: #ffffff;
}
.team-details-social li a i:hover {
    color: #FD9C55;
}
.team-details-col {
    margin-bottom: 50px;
}
.team-details-col h3 {
    font-size: 36px;
}
.team-details-col span {
    font-style: italic;
    color: #FD9C55;
    font-weight: bold;
    margin-right: 10px;
}
.team-details-col i {
    color: #F8C12C;
}
.team-details-col p {
    margin-top: 10px;
}
.team-info-box {
    margin-top: 30px;
    background: #f1f1f1;
}
.team-info-box ul li {
    border: 1px solid #dddddd;
    padding: 10px 10px;
}
.team-info-box ul li span {
    color: #424242;
    font-weight: normal;
    font-style: normal;
}
.team-info-box p {
    margin-top: 0;
}



/*****-----*****-----*****-----*****
    11. Counter CSS
*****-----*****-----*****-----*****/
.counter-sec {
    background: url(../images/lab.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.counter-sec .counter-box {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #111111;
}
.counter-sec .counter-box .counter {
    position: relative;
    z-index: 2;
    color: #fd9c55;
    font-size: 36px;
    margin-bottom: 10px;
}
.counter-sec .counter-box p {
    position: relative;
    z-index: 2;
    color: #ffffff;
   /* text-transform: uppercase;*/
}
.counter-sec .counter-box i {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    margin-left: -40px;
    font-size: 50px;
    color: #ffffff;
    opacity: 0.2;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;

}



/*****-----*****-----*****-----*****
    12. Portfolio CSS
*****-----*****-----*****-----*****/
.portfolio-section {
    padding: 120px 0 90px;
}
.portfolio-nav {
    float: none;
    text-align: center;
    margin-bottom: 30px;
}
.filtr-container {

}
.portfolio-nav li {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
    text-transform: capitalize;
    font-weight: bold;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-nav li:hover {
    color: #fd9c55;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.filtr-item {
    width: 33.25%;
    /*padding: 0;*/
}


/* Item Hover CSS */
.box{
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
.box img{
    width: 100%;
    height: auto;
    transform: scale3d(1, 1, 1);
    transition: all 0.3s ease 0s;
}
.box:hover img{ transform: scale3d(1.15, 1.15, 1); }
.box .box-content{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    padding-top: 25%;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    transition: all 0.3s ease 0s;
}
.box:hover .box-content{ opacity: 1; }
.box .box-content:before,
.box .box-content:after{
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0;
    z-index: -1;
    transform: scale(1.5);
    transition: all 0.6s ease 0.2s;
}
.box .box-content:before{
    border-top: none;
    border-bottom: none;
    left: 30px;
    right: 30px;
}
.box .box-content:after{
    border-left: none;
    border-right: none;
    top: 30px;
    bottom: 30px;
}
.box:hover .box-content:before,
.box:hover .box-content:after{
    opacity: 1;
    transform: scale(1);
}
.box .content-inner{
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0s;
}
.box:hover .content-inner{
    opacity: 1;
    transform: scale(1);
}
.box .title{
    font-size: 16px;
    color: #FD9C55;
    margin: 0 0 20px;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 2;
}
.box .icon li{ display: inline-block; }
.box .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
    position: relative;
    transition: all 0.3s ease 0s;
}
.box .icon li a:hover{ color: #000; }
.box .icon li a:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(0);
    transition: all 0.3s ease 0s;
}
.box .icon li a:hover:before{ transform: scale(1); }



/* Portfolio Two CSS */
.portfolio-two-section {

}
.portfolio-two-section .filtr-item {
    width: 25%;
}

/* Portfolio Three CSS */
.portfolio-three-section {

}
.portfolio-three-section .box {
    margin-bottom: 0;
}
.portfolio-title-box {
    background: #FD9C55;
    padding: 20px 10px;
    margin-bottom: 30px;
}
.portfolio-title-box h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.portfolio-three-section .box .box-content {
    padding-top: 32%;
}




/*****-----*****-----*****-----*****
    13. Testimonial CSS
*****-----*****-----*****-----*****/
.testimonial-section {
    background: #f5f5f5;
    padding: 40px 0;
    background: url(../images/t.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.testimonial-section .default-title h2,
.testimonial-section .default-title p {
    color: #eeeeee;
}
.testimonial{
    padding: 20px;
    margin: 0;
}
.testimonial .pic{
    width: 120px;
    height: 120px;
    float: left;
    margin-right: 40px;
    position: relative;
}
.testimonial .pic:before,
.testimonial .pic:after{
    content: "";
    display: block;
    height: 50%;
    width: 50%;
    position: absolute;
}
.testimonial .pic:before{
    bottom: -10%;
    left: -10%;
    border-bottom: 3px solid #FD9C55;
    border-left: 3px solid #FD9C55;
}
.testimonial .pic:after{
    top: -10%;
    right: -10%;
    border-top: 3px solid #FD9C55;
    border-right: 3px solid #FD9C55;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .testimonial-content{
    display: table;
    position: relative;
}
.testimonial .testimonial-content:before{
    content: "\f10d";
    font-family: fontawesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 60px;
    color: #d8dad6;
    z-index: -1;
    opacity: 0.1;
}
.testimonial .testimonial-title{
    font-size: 24px;
    color: #FD9C55;
    text-transform: capitalize;
}
.testimonial .post{
    font-size: 14px;
    color: #969696;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 5px;
    padding-left: 5px;
}
.testimonial .description{
    color: #dddddd;
    margin-top: 12px;
    font-style: italic;
}
.testimonial-section .owl-theme .owl-controls .owl-page.active span,
.testimonial-section .owl-theme .owl-controls.clickable .owl-page:hover span{
    background-color: #FD9C55;
}
.testimonial-section .owl-theme .owl-dots .owl-dot.active span,
.testimonial-section .owl-theme .owl-dots .owl-dot:hover span {
    background: #FD9C55;
}




/*****-----*****-----*****-----*****
    14. Blog CSS
*****-----*****-----*****-----*****/
.blog-section {
    padding: 120px 0;
}
.post-box{
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}
.post-box > img{
    width: 100%;
    height: auto;
}
.post-box .post-title{
    margin-top: 20px;
    margin-bottom: 10px;
    /*padding-left: 20px;*/
    padding-bottom: 20px;
}
.post-box .post-title > a{
    font-size: 20px;
    color: #111111;
    display: inline-block;
    transition: all 0.3s ease 0s;
}
.post-box .post-title > a:hover{
    text-decoration: none;
    color:#FD9C55;
}
.post-box .post-description{
    padding: 0 20px;
    margin: 0 0 20px 0;
}
.post-bar{
    list-style: none;
    padding:10px 20px;
    background: #333333;
}
.post-bar > li{
    display: inline-block;
    margin: 5px;
    color:#aaaaaa;
}
.post-bar > li > a{
    color:#aaaaaa;
    transition:0.3s ease;
}
.post-bar > li > a:hover{
    text-decoration: none;
    color:#FD9C55;
}
.post-bar > li i{
    margin-right: 7px;
}
.blog-section .owl-theme .owl-nav {
    margin-top: 0;
}
.blog-section .owl-theme .owl-nav [class*=owl-] {
    padding: 5px 15px;
    border-radius: 0;
    color: #FD9C55;
    font-size: 40px;
}
.blog-section .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: 40%;
    background: rgba(0,0,0,0.7);
}
.blog-section .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    top: 40%;
    background: rgba(0,0,0,0.7);
}


/* Blog Two CSS */
.blog-two-section {
    padding: 20px 0 20px;
}
.blog-two-section .post-box {
    margin-bottom: 30px;
}




/* Blog Single CSS */
.blog-details-area {
    padding: 120px 0 90px;
    text-align: left;
    background: #ffffff;
}
.blog-details-area .blog-box {
    background: transparent;
}
.blog-details-area .blog-date {
    margin-bottom: 30px;
    padding: 10px 20px;
    background: #777777;
}
.blog-details-area .blog-date ul li {
    margin-right: 20px;
    display: inline-block;
}
.blog-details-area .blog-date ul li i {
    margin-right: 5px;
    color: #fd9c55;
}
.blog-details-area .blog-date ul li a {
    color: #ffffff;
}
.blog-details-area .blog-content h2 {
    margin-top: 30px;
}
.blog-details-area .blog-content p {
    margin-bottom: 0;
}
.highlight-text {
    padding: 20px;
    background: #F5F5F5;
    margin-bottom: 30px;
    margin-top: 30px;
    border-left: 3px solid #fd9c55;
}
.highlight-text p {
    font-weight: bold;
    margin-bottom: 0;
    color: #353535;
    font-style: italic;
}
.comment-row {
    margin-bottom: 60px;
}
.comment-row h3 {
    margin-bottom: 50px;
    margin-top: 20px;
}
.comment-row h3 a {
    font-size: 18px;
    color: #111111;
}
.comment-item {
    margin-bottom: 50px;
    position: relative;
    padding-left: 100px;
}
.comment-item img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.comment-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
}
.comment-item a i {
    color: #fd9c55;
}

.form-area .hvr-bounce-to-right {
    margin-top: 0;
    margin-bottom: 0;
}
.middel-item {
    margin-left: 50px;
}
.form-area .btn {
    margin-bottom: 30px;
}






/* Sidebar CSS start */
.sidebar {
    margin-bottom: 30px;
}
.sedebar-title {
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E6E6E6;
}
.sidebar-search {
    margin-bottom: 50px;
}
.sidebar-search .form-control {
    color: #666666;
    background: #e6e6e6;
    border: none;
    height: 50px;
    box-shadow: none;
    font-size: 14px;
    text-transform: uppercase;
}
.sidebar-search .input-group-btn .btn {
    border-radius: 0;
    height: 50px;
    width: 60px;
    background: #fd9c55;
}
.sidebar-search .input-group-btn .btn i {
    font-size: 28px;
    color: #ffffff;
}
.sidebar-search .input-group-btn .btn:hover {
    background: #111111;
}
.categories {
    margin-bottom: 50px;
}
.categories ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #E6E6E6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories ul li:last-child {
    border-bottom: none;
}
.categories ul li:hover {
    border-color: #fd9c55;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories ul li a {
    color: #676767;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories ul li:hover a {
    color: #fd9c55;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories ul li:hover span {
    color: #fd9c55;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.latest-news {
    margin-bottom: 50px;
}
.latest-news ul li {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
    padding-bottom: 20px
}
.latest-news ul li:last-child {
    border-bottom: none;
}
.news-item {
    position: relative;
    padding-left: 100px;
}
.news-item p {
    margin-bottom: 30px;
}
.news-item img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
}
.news-item h4 {
    margin-bottom: 5px;
}
.news-item h4 a {
    color: #fd9c55;
    font-size: 15px;
}
.sidebar-tags {
    margin-bottom: 50px;
}
.sidebar-tags ul li {
    float: left;
    margin-bottom: 25px;
    margin-right: 10px;

}
.sidebar-tags ul li a {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #E6E6E6;
    text-transform: uppercase;
    color: #676767;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.sidebar-tags ul li a:hover {
    border-color: #fd9c55;
    background: #fd9c55;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.preview {
    margin-bottom: 50px;
}




/*****-----*****-----*****-----*****
    15. FAQ CSS
*****-----*****-----*****-----*****/
.faq-section {
    padding: 120px 0;
    background: url(../images/bg/brick.png);
    background-repeat: repeat;
}
#accordion .panel{
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 6px;
}
#accordion .panel-heading{
    padding: 0;
}
#accordion .panel-title a{
    display: block;
    padding: 25px 25px;
    background: #fff;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #eaeaea;
    border-left: 3px solid #FD9C55;
    position: relative;
    transition: all 0.3s ease 0s;
}
#accordion .panel-title a.collapsed{
    color: #333;
}
#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before{
    content: "\f107";
    font-family: FontAwesome;
    font-size: 14px;
    color: #333;
    line-height: 24px;
    position: absolute;
    top: 23px;
    right: 25px;
}
#accordion .panel-title a.collapsed:before{
    content: "\f106";
}
#accordion .panel-title a:hover,
#accordion .panel-title a.collapsed:hover,
#accordion .panel-title a:before,
#accordion .panel-title a:hover:before{
    color: #FD9C55;
}
#accordion .panel-body{
    padding: 15px 27px;
    font-size: 14px;
    color: #808080;
    line-height: 23px;
    border: 1px solid #eaeaea;
    border-top: none;
    border-left: 3px solid #eaeaea;
}
#accordion .panel-body p{
    margin-bottom: 0;
}

/* FAQ Two CSS Start */
.faq-two-section {
    padding: 120px 0 115px;
    background: #f5f5f5
}


/*****-----*****-----*****-----*****
    16. Contact CSS
*****-----*****-----*****-----*****/
.contact-section {
    overflow: hidden;
}
.contact-section.section-default {

}
.contact-info-box {
    margin-bottom: 60px;
}
.info-box {
    text-align: center;
    position: relative;
    background: #f6f6f6;
    padding: 40px 50px;
    background: url(../images/bg/brick.png);
    background-repeat: repeat;
}
.info-box i {
    width: 70px;
    height: 70px;
    color: #FD9C55;
    background: #ffffff;
    text-align: center;
    font-size: 35px;
    line-height: 70px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: block;
    border: 1px solid #cccccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.contact-section form {
    padding-bottom: 0;
}
.contact-section form .form-control {
    height: 45px;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #dddddd;
    color: #676767;
    padding-left: 0;
}
.contact-section form .textarea-hight-full {
    height: 100%;
}



/*****-----*****-----*****-----*****
    17. Page Title CSS
*****-----*****-----*****-----*****/
.page-title-section {
    padding: 260px 0 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-title-section.over-layer-black::before {
    background: rgba(0,0,0,0.3);
}
.page-title-section h2 {
    font-size: 45px;
    color: #D10003;
}
.page-title-section p {
    color: #ffffff;
}
.page-title-section p a {
    color: #ffffff;
}
.page-title-section p a:hover {
    color: #fd9c55;
}



/*****-----*****-----*****-----*****
    18. Error CSS
*****-----*****-----*****-----*****/
.error-section {
    padding: 50px 0;
}
.error-col {
    text-align: center;
}
.error-col h1 {
    font-size: 100px;
    line-height: 1.1;
    letter-spacing: 15px;
    font-style: italic;
    color: #FD9C55;
}
.error-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}
.error-col img {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
    display: block;
}
.error-col a {
    font-size: 30px;
    color: #FD9C55;
    padding: 8px 20px;
}
.error-col a:hover {
    color: #ffffff;
    background: #FD9C55;
}



/*****-----*****-----*****-----*****
    19. Account CSS
*****-----*****-----*****-----*****/
.account-area {
    padding: 120px 0;
}
.tab{
    padding: 70px 50px 25px;
    margin-top: 40px;
    background: #666666;
    position: relative;
}
.tab:before{
    content: "\f007";
    font-family: fontawesome;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    background: #FD9C55;
    font-size: 40px;
    line-height: 100px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
}
.tab .nav-tabs{
    padding: 0 20px 15px;
    position: relative;
}
.tab .nav-tabs li a{
    padding: 0 20px 0;
    margin: 0;
    background: none;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    opacity: 0.5;
    position: relative;
    transition: all 0.5s ease 0s;
}
.tab .nav-tabs li a:hover{ border: none; }
.tab .nav-tabs li a:before{
    content: "";
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -16px;
    left: 0;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:focus,
.tab .nav-tabs li.active a:hover{
    border: none;
    background: none;
    opacity: 1;
    color: #fff;
}
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li.active a:hover:before{ width: 100%; }
.tab .tab-content{
    padding: 20px 0 0 0;
    margin-top: 15px;
    background: none;
    position: relative;
}
.form-horizontal .form-group{
    position: relative;
    margin-bottom: 0;
}
.form-horizontal .form-control{
    height: 45px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease 0s;
}
.form-horizontal .form-control:focus{
    box-shadow: none;
    outline: 0 none;
}
.form-horizontal .form-group label{
    color: #adadad;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.form-horizontal .btn{
    display: inline-block;
    width: 50%;
    background: #FD9C55;
    padding: 10px 20px;
    margin: 20px auto 0;
    border: none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
}
.form-horizontal .btn:focus{
    background: #FD9C55;
    color: #fff;
    outline: none;
    box-shadow: none;
}
.form-horizontal .forgot-pass{
    margin: 0;
    text-align: center;
}
.form-horizontal .forgot-pass a{
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0 0 0;
    border-bottom: 1px solid #615f6c;
    font-size: 14px;
    font-weight: bold;
    color: #adadad;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
}
.form-horizontal .forgot-pass a:hover{ color: #FD9C55; }



/*****-----*****-----*****-----*****
    20. Footer CSS
*****-----*****-----*****-----*****/
.main-footer {
    padding: 30px 0;
    background: url(../images/bg/brick.png);
    background-repeat: repeat;
}
.footer ul li {
    color: #fff;
}
ul.list-with-icon li {
    line-height: 20px;
    margin-bottom: 15px;
    position: relative;
    list-style: none;
    text-transform: capitalize;
    color: #000;
}
.footer-col h3 {
    margin-bottom: 20px;
}
.footer-col .form-control {
    color: #666666;
    background: #e6e6e6;
    border: none;
    height: 50px;
    box-shadow: none;
    font-size: 14px;
}
.footer-col .input-group-btn .btn {
    border-radius: 0;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    background: #FD9C55;
    color: #ffffff;
}
.footer-col .input-group-btn .btn:hover {
    background: #111111;
}
.social-group {
    margin-top: 20px;
}
.social-group li {
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}
.social-group li i {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    line-height: 40px;
    background: #FD9C55;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.social-group i:hover {
    background: #111111;
    color: #ffffff;
}




/*****-----*****-----*****-----*****
    21. Copyright CSS
*****-----*****-----*****-----*****/
.copyright {
    padding: 20px 20px;
    background: #111111;
    background: url(../images/bg/black.png);
    background-repeat: repeat;
    overflow: hidden;
}
.copyright-col {
    padding: 0 15px;
}
.copyright-col p {
    color: #848484;
}
.copyright p a {
    color: #fd9c55;
}
.social {

}
.social li {
    display: inline-block;
    margin-left: 15px;
}
.social li i {
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 18px;
    color: #fd9c55;
    line-height: 36px;
    background: #111111;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.social i:hover {
    background: #fd9c55;
    color: #ffffff;
}



/*****-----*****-----*****-----*****
    22. Demo List Page CSS
*****-----*****-----*****-----*****/
.main-demo-heading {
    padding: 120px 0;
    background: #f3f3f3;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main-demo-heading h1 {
    color: #fd9c55;
    font-size: 50px;
}
.main-demo-heading h2 {
    letter-spacing: 1px;
    margin-bottom: 50px;
}
.buy-btn {
    background: #fd9c55;
    color: #ffffff;
    border: 1px solid #fd9c55;
    padding: 10px 30px;
    border-radius: 0;
    text-transform: uppercase;
}
.buy-btn:hover {
    background: #fd9c55;
    color: #ffffff;
    border-color: #fd9c55;
}
.demo-list-page {
    padding: 100px 0 40px;
    text-align: center;
}
.demo-list-page h3 {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 1.4;
    margin-bottom: 60px;
}
.demo-list-page h3 a {
    color: #111111;
}
.demo-list-page h5 {
    margin-bottom: 80px;
    color: #fd9c55;
    font-size: 18px;
    text-transform: capitalize;
}
.demo-list-page h1 {
    font-size: 28px;
    margin-bottom: 50px;
}
.demo-list-page p {
    font-size: 14px;
}
.demo-list-page p a {
    color: #111111;
    text-transform: capitalize;
}
.demo-box {
    margin-bottom: 40px;
    position: relative;
    height: 350px;
    overflow: hidden;
    -webkit-box-shadow: -2px 3px 35px -5px rgba(74,74,74,1);
    -moz-box-shadow: -2px 3px 35px -5px rgba(74,74,74,1);
    box-shadow: -2px 3px 35px -5px rgba(74,74,74,1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.demo-box:hover {
    box-shadow: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.demo-over-layer {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.demo-box:hover .demo-over-layer {
    bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.demo-over-layer h4 a {
    position: absolute;
    color: #ffffff;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -10px;
    text-align: center;
}
.more-demo-link p {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddddd;
    display: inline-block;
}
.white{
  color: #fff!important;
}
.pro{text-align: center;}
.red{color: red!important;}
.team_columns_carousel_wrapper {
    padding: 25px;
    overflow: hidden
}
.team_columns_carousel_control_left,
.team_columns_carousel_control_right {
    top: 26px;
    z-index: 2;
    opacity: 1;
    width: 35px;
    height: 35px;
    border: 0;
    text-shadow: none;
    text-align: center;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s
}
.team_columns_carousel_control_icons {
    line-height: 35px;
    font-size: 20px!important;
    font-weight: normal!important;
    /*margin-top:8px;*/
}
.team_columns_carousel_control_left {
    left: 26px!important
}
.team_columns_carousel_control_right {
    left: 63px!important
}
.adv_left {
    left: 41px!important
}
.adv_right {
    left: 78px!important
}
.team_columns_item_image {
    padding-top: 60px;
    padding-bottom: 25px;
    text-align: center;
}
.team_columns_item_image img {
    width: 100%;
    -webkit-filter: grayscale(70%);
    -moz-filter: grayscale(70%);
    -ms-filter: grayscale(70%);
    -o-filter: grayscale(70%);
    filter: grayscale(70%);
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s
}
.team_columns_item_image:hover img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%)
}
.team_columns_item_caption {
    padding: 10px;
    text-align: center;
    padding-bottom: 30px
}
.team_columns_item_caption>hr {
    width: 15%
}
.team_columns_item_caption h4 {
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}
.team_columns_item_caption h5 {
    font-weight: 600;
    text-transform: uppercase;
}
.team_columns_item_caption p {
    font-weight: 400;
    margin-top: 20px;
}
.team_columns_item_caption p a,
.team_columns_item_caption p a:visited {
    text-decoration: none;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s
}
.team_columns_item_social a,
.team_columns_item_social a:visited {
    width: 25px;
    float: left;
    height: 25px;
    display: block;
    line-height: 25px;
    margin-right: 2px;
    text-decoration: none;
    -webkit-transition: background ease-in-out .3s;
    transition: background ease-in-out .3s
}
@media(min-width:768px) and (max-width:789px) {
    .adv_team_columns_item_social a, .adv_team_columns_item_social a:visited {
        margin-right: 0
    }
}
.team_columns_carousel_wrapper {
    background: #fff
}
.team_columns_carousel_control_left,
.team_columns_carousel_control_left:hover,
.team_columns_carousel_control_left:active,
.team_columns_carousel_control_left:focus,
.team_columns_carousel_control_right,
.team_columns_carousel_control_right:hover,
.team_columns_carousel_control_right:active,
.team_columns_carousel_control_right:focus {
    color: #fff;
    background: #feb600!important
}
.team_columns_item_caption {
    color: #fff;
    background: #171717
}
.team_columns_item_caption>hr {
    border-top: 2px solid #feb600
}
.team_columns_item_caption p a,
.team_columns_item_caption p a:visited {
    color: #feb600
}
.team_columns_item_caption p a:hover,
.team_columns_item_caption p a:active {
    color: #cb9200
}
.team_columns_item_social a,
.team_columns_item_social a:visited {
    color: #171717;
    background: #feb600
}
.team_columns_item_social a:hover,
.team_columns_item_social a:active {
    background: #cb9200
}
.four_shows_one_move .cloneditem-1,
.four_shows_one_move .cloneditem-2,
.four_shows_one_move .cloneditem-3 {
    display: none
}
@media all and (min-width: 768px) {
    .four_shows_one_move .carousel-inner>.active.left,
    .four_shows_one_move .carousel-inner>.prev {
        left: -50%
    }
    .four_shows_one_move .carousel-inner>.active.right,
    .four_shows_one_move .carousel-inner>.next {
        left: 50%
    }
    .four_shows_one_move .carousel-inner>.left,
    .four_shows_one_move .carousel-inner>.prev.right,
    .four_shows_one_move .carousel-inner>.active {
        left: 0
    }
    .four_shows_one_move .carousel-inner .cloneditem-1 {
        display: block
    }
}
@media all and (min-width: 768px) and (transform-3d),
all and (min-width: 768px) and (-webkit-transform-3d) {
    .four_shows_one_move .carousel-inner>.item.active.right,
    .four_shows_one_move .carousel-inner>.item.next {
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
        left: 0
    }
    .four_shows_one_move .carousel-inner>.item.active.left,
    .four_shows_one_move .carousel-inner>.item.prev {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        left: 0
    }
    .four_shows_one_move .carousel-inner>.item.left,
    .four_shows_one_move .carousel-inner>.item.prev.right,
    .four_shows_one_move .carousel-inner>.item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}
@media all and (min-width: 992px) {
    .four_shows_one_move .carousel-inner>.active.left,
    .four_shows_one_move .carousel-inner>.prev {
        left: -25%
    }
    .four_shows_one_move .carousel-inner>.active.right,
    .four_shows_one_move .carousel-inner>.next {
        left: 25%
    }
    .four_shows_one_move .carousel-inner>.left,
    .four_shows_one_move .carousel-inner>.prev.right,
    .four_shows_one_move .carousel-inner>.active {
        left: 0
    }
    .four_shows_one_move .carousel-inner .cloneditem-2,
    .four_shows_one_move .carousel-inner .cloneditem-3 {
        display: block
    }
}
@media all and (min-width: 992px) and (transform-3d),
all and (min-width: 992px) and (-webkit-transform-3d) {
    .four_shows_one_move .carousel-inner>.item.active.right,
    .four_shows_one_move .carousel-inner>.item.next {
        -webkit-transform: translate3d(25%, 0, 0);
        transform: translate3d(25%, 0, 0);
        left: 0
    }
    .four_shows_one_move .carousel-inner>.item.active.left,
    .four_shows_one_move .carousel-inner>.item.prev {
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
        left: 0
    }
    .four_shows_one_move .carousel-inner>.item.left,
    .four_shows_one_move .carousel-inner>.item.prev.right,
    .four_shows_one_move .carousel-inner>.item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}
.card {
  display: inline-block;
  width: 100%;
  padding: 4rem 1rem 7rem 1rem;
  background-color: teal;
  position: relative;
  border:0px !important;
}
.card:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  background-color: skyblue;
  top: 0px;
  right: 0px;
  border-bottom: 20px solid #006767;
  border-left: 20px solid #006767;
  border-right: 20px solid yellow;
  border-top: 20px solid yellow;
  position: absolute;
  -webkit-filter: drop-shadow(-5px 5px 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(-5px 5px 3px rgba(0, 0, 0, 0.5));
}
.card:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-top: 40px solid #006767;
  border-right: 40px solid #006767;
  border-left: 40px solid yellow;
  border-bottom: 40px solid yellow;
  bottom: 0px;
  left: 0px;
  position: absolute;
  -webkit-filter: drop-shadow(7px -7px 5px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(7px -7px 5px rgba(0, 0, 0, 0.5));
  margin-right: 10%;
}
.card:nth-of-type(1) {
  margin-right: 9%;
}
.card h3 {
  color: snow;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.card p {
  color: #fff;
  font-size: 16px;
  line-height: 140%;
}
.padd{padding: 20px;}
.white{color: #fff;text-align: center;}
.center{text-align: center;}
.paddingleft{margin-left: 310px!important;}

















.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
.navbar-header img{width: 38%;}
.teamborder{border: 1px #ccc solid;margin-bottom: 20px;}
.object-fit_scale-down { object-fit: scale-down; }
.pimg{height: 150px!important;}





















.navcarbox {
    padding-left:5px;
    display: block; 
    line-height: 1.42857143;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); 
    transition: box-shadow .25s; 
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #f7941d;
    
}
.navbar-brand img {
    float: left;
    transition: all .5s ease-out;
    margin: 0;
}

/* Slider CSS */
/* Carousel Styles */

/* Carousel Styles */

.carousel-control {color: #e2e2e2;}

.carousel-indicators .active {background-color: #ff5900;}
.carousel-inner img {width: 100%;height: auto;margin-top: 0px;}
.teamr img {width: 100%;height: 200px !important;margin-top: 0px;}
.carousel-control.left,
.carousel-control.right {
	opacity: 1;
	filter: alpha(opacity=100);
	background-image: none;
	background-repeat: no-repeat;
	text-shadow: none;
}
.carousel-control.left span {margin-left: 0px;}
.carousel-control.right span {margin-right: 0px;}
.carousel-control .glyphicon-chevron-left, 
.carousel-control .glyphicon-chevron-right, 
.carousel-control .icon-prev, 
.carousel-control .icon-next {
	position: absolute;
	top: 45%;
	z-index: 5;
	display: inline-block;
	
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
	left: 0;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
	right: 0;
	
}

.carousel-control.left span,
.carousel-control.right span {
	background-color: none;
	
}

.carousel-control.left span:hover,
.carousel-control.right span:hover {
	opacity: .7;
	filter: alpha(opacity=70);
}

/* Carousel Header Styles */
.header-text {
    position: absolute;
    top: 35%;
    left: 1.8%;
    right: auto;
    width: 96.66666666666666%;
    color: #fff;
    font-size:18px;
    letter-spacing:1px;
}

.header-text h2 {font-size: 60px;color:#D10003; font-weight:600;}
.header-text h2 span {padding: 10px; color:orange;}
.header-text h3 span {padding: 15px;}

.btn-min-block {min-width: 170px;line-height: 26px;}

.btn-theme {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    margin-right: 15px;
}

.btn-theme:hover {
    color: #000;
    background-color: #f7941d;
    border-color: #fff;
}
.navbar {
    margin-bottom:0px;
}
.company-fixed-banner {

    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;

}

.company-fixed-banner img {

    width: 100%;

}
.marginimg{
margin-top:100px;
}
.teamnew{text-align:center;}
.our-team .social{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 5%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team:hover .social{ opacity: 1; }
.our-team .social li{
    display: inline-block;
    margin: 0 5px;
}
.our-team .social li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #ffffff;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team .social li a:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #FD9C55;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.our-team .social li a:hover:after{ transform: rotate(180deg); }
.bannerheight img{height:600px !important;margin-top:100px;}








/*mobile menu*/

#cssmenu,#cssmenu ul,#cssmenu ul li,#cssmenu ul li a,#cssmenu #head-mobile{border:0;list-style:none;line-height:1;display:block;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
#cssmenu:after,#cssmenu > ul:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
#cssmenu #head-mobile{display:none}
/*#cssmenu{font-family:sans-serif;background:#333}*/
#cssmenu > ul > li{float:left}
#cssmenu > ul > li > a{padding:17px;font-size:12px;letter-spacing:1px;text-decoration:none;color:#000;font-weight:700;}
#cssmenu > ul > li:hover > a,#cssmenu ul li.active a{color:#fff}
#cssmenu > ul > li:hover,#cssmenu ul li.active:hover,#cssmenu ul li.active,#cssmenu ul li.has-sub.active:hover{background:#0020c0!important;-webkit-transition:background .3s ease;-ms-transition:background .3s ease;transition:background .3s ease;}
#cssmenu > ul > li.has-sub > a{padding-right:30px}
#cssmenu > ul > li.has-sub > a:after{position:absolute;top:22px;right:11px;width:8px;height:2px;display:block;background:#ddd;content:''}
#cssmenu > ul > li.has-sub > a:before{position:absolute;top:19px;right:14px;display:block;width:2px;height:8px;background:#ddd;content:'';-webkit-transition:all .25s ease;-ms-transition:all .25s ease;transition:all .25s ease}
#cssmenu > ul > li.has-sub:hover > a:before{top:23px;height:0}
#cssmenu ul ul{position:absolute;left:-9999px}
#cssmenu ul ul li{height:0;-webkit-transition:all .25s ease;-ms-transition:all .25s ease;background:#333;transition:all .25s ease}
#cssmenu ul ul li:hover{}
#cssmenu li:hover > ul{left:auto}
#cssmenu li:hover > ul > li{height:35px}
#cssmenu ul ul ul{margin-left:100%;top:0}
#cssmenu ul ul li a{border-bottom:1px solid rgba(150,150,150,0.15);padding:11px 15px;width:170px;font-size:12px;text-decoration:none;color:#ddd;font-weight:400;}
#cssmenu ul ul li:last-child > a,#cssmenu ul ul li.last-item > a{border-bottom:0}
#cssmenu ul ul li:hover > a,#cssmenu ul ul li a:hover{color:#fff}
#cssmenu ul ul li.has-sub > a:after{position:absolute;top:16px;right:11px;width:8px;height:2px;display:block;background:#ddd;content:''}
#cssmenu ul ul li.has-sub > a:before{position:absolute;top:13px;right:14px;display:block;width:2px;height:8px;background:#ddd;content:'';-webkit-transition:all .25s ease;-ms-transition:all .25s ease;transition:all .25s ease}
#cssmenu ul ul > li.has-sub:hover > a:before{top:17px;height:0}
#cssmenu ul ul li.has-sub:hover,#cssmenu ul li.has-sub ul li.has-sub ul li:hover{background:#363636;}
#cssmenu ul ul ul li.active a{border-left:1px solid #333}
#cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active> a{border-top:1px solid #333}

@media screen and (max-width:1000px){
.logo{position:absolute;top:0;left: 0;width:100%;height:46px;text-align:center;padding:10px 0 0 0 ;float:none}
.logo2{display:none}
nav{width:100%;}
#cssmenu{width:100%}
#cssmenu ul{width:100%;display:none}
#cssmenu ul li{width:100%;border-top:1px solid #fff}
#cssmenu ul li:hover{background:#363636;}
#cssmenu ul ul li,#cssmenu li:hover > ul > li{height:auto}
#cssmenu ul li a,#cssmenu ul ul li a{width:100%;border-bottom:0}
#cssmenu > ul > li{float:none}
#cssmenu ul ul li a{padding-left:25px}
#cssmenu ul ul li{background:#333!important;}
#cssmenu ul ul li:hover{background:#363636!important}
#cssmenu ul ul ul li a{padding-left:35px}
#cssmenu ul ul li a{color:#ddd;background:none}
#cssmenu ul ul li:hover > a,#cssmenu ul ul li.active > a{color:#fff}
#cssmenu ul ul,#cssmenu ul ul ul{position:relative;left:0;width:100%;margin:0;text-align:left}
#cssmenu > ul > li.has-sub > a:after,#cssmenu > ul > li.has-sub > a:before,#cssmenu ul ul > li.has-sub > a:after,#cssmenu ul ul > li.has-sub > a:before{display:none}
#cssmenu #head-mobile{display:block;padding:23px;color:#ddd;font-size:12px;font-weight:700}
.button{width:55px;height:46px;position:absolute;right:0;top:0;cursor:pointer;z-index: 12399994;}
.button:after{position:absolute;top:22px;right:20px;display:block;height:8px;width:20px;border-top:2px solid #000;border-bottom:2px solid #000;content:''}
.button:before{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;position:absolute;top:16px;right:20px;display:block;height:2px;width:20px;background:#000;content:''}
.button.menu-opened:after{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;top:23px;border:0;height:2px;width:19px;background:#000;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}
.button.menu-opened:before{top:23px;background:#000;width:19px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}
#cssmenu .submenu-button{position:absolute;z-index:99;right:0;top:0;display:block;border-left:1px solid #444;height:46px;width:46px;cursor:pointer}
#cssmenu .submenu-button.submenu-opened{background:#262626}
#cssmenu ul ul .submenu-button{height:34px;width:34px}
#cssmenu .submenu-button:after{position:absolute;top:22px;right:19px;width:8px;height:2px;display:block;background:#000;content:''}
#cssmenu ul ul .submenu-button:after{top:15px;right:13px}
#cssmenu .submenu-button.submenu-opened:after{background:#fff}
#cssmenu .submenu-button:before{position:absolute;top:19px;right:22px;display:block;width:2px;height:8px;background:#000;content:''}
#cssmenu ul ul .submenu-button:before{top:12px;right:16px}
#cssmenu .submenu-button.submenu-opened:before{display:none}
#cssmenu ul ul ul li.active a{border-left:none}
#cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active > a{border-top:none}
}
.height img{height:390px;}