
/*[font Variables]*/
@import url('../../../css2');
@import url('../../../css2-1');

/*[debugging.css]*/
@import url('header.css');
@import url('page-css/about-page.css');
@import url('page-css/services-page-style.css');
@import url('page-css/gallery-style.css');
@import url('page-css/team-page-style.css');
@import url('page-css/testimonials-page-style.css');
@import url('page-css/faq-page-style.css');
@import url('page-css/blog-pages-style.css');
@import url('page-css/contact-page-style.css');
@import url('page-css/footer.css');
@import url('hover.css');
@import url('animate.css');

/*** 

====================================================================
  Global Settings
====================================================================

 ***/
body, p, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
}
a.navbar-brand {
    height:auto;
}
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
a:hover, a:focus {
    text-decoration: none;
    outline: none;
    font-family: 'Roboto', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto', sans-serif;
    /*font-family: "Poppins", sans-serif;*/
    color: #000;
    margin: 0;
    padding: 0;
}
p{
    font-size: 16px;
    color: #363636;
    line-height: 60px;
    font-family: 'Roboto', sans-serif;
}
.overlay {
    background:#000000a3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.5s ease;
}
.inline-panel {
    display: inline-block;
    position: relative;
}

.full-width {
    width: 100%;
}
/*** 

====================================================================
  Scroll To Top style
====================================================================

***/
#scroll {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #ede739;
    border: solid 2px #ede739;
    /*border-radius: 50px;*/
    /*box-shadow: 0px 0px 3px 4px rgb(123, 123, 123);*/
}
#scroll span {
    position: absolute;
    top: 50%;
    left: 44%;
    margin-left: -8px;
    margin-top: -17px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}
#scroll:hover {
    border: solid 2px #ede739;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}
/*** 

====================================================================
  End Scroll To Top style
====================================================================

***/

.row.m0 {
    margin: 0px;
}
.p0 {
    padding: 0px;
}
.padd-r-none{
    padding-right: 0;
}
.padd-l-none{
    padding-left: 0;
}
.pd-left-50{
    padding-left: 50px;
}
.mr-btm-0{
    margin-bottom: 0 !important;
}
.mb-60 {
    margin-bottom: 45px;
}
.brd-r-0 {
    border-right: 0 !important;
}
.spacer-50 {
    width: 100%;
    height: 20px;
    float: left;
}
.bg-gray-light{
    background-color: #f7f7f7;
}
/*** 

====================================================================
  image block style
====================================================================

***/
img{
    max-width: 100%;
}
.image_thumb {
    overflow: hidden;
    /*display: inline-block;*/
    position: relative;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 0px 17px #d2cfcf;
    background-color: #FFF;
    padding: 6px;
}

.image_thumb:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
    cursor: pointer;
}

.image_thumb img {
    max-width: 100%;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}

.image_thumb:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.image_thumb:hover:before {
    opacity: 1;
}
#success {
    display: none;
}

#error {
    display: none;
}

.display_table {
    display: table;
    width: 100%;
}

.display_table_row {
    display: table-row;
}

.display_table_cell {
    display: table-cell;
    float: none !important;
}

iframe {
    border: none;
}

i:before {
    margin-left: 0px !important;
}
/* Btn css*/
.btn-full {
    width: 100% !important;
    display: inline-block;
    text-align: center;
}
.btn-xlg {
    padding: 15px 50px
}
.btn-lg {
    padding: 12px 30px;
    display: inline-block;
}
.btn-md {
    padding: 11px 20px;
    display: inline-block;
}
.btn-xs {
    padding: 11px 15px 10px;
    display: inline-block;
}
.theme-btn{
    color: black;
    background-color: YELLOW;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    float: left;
    letter-spacing: 0.3px;
    font-family: 'Roboto', sans-serif;
    border: none;
}
.theme-btn:hover {
    background: #000;
    color: #FFF;
    text-decoration: none;
    transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -ms-transition:all 0.3s ease;
    -o-transition:all 0.3s ease;
}
.theme-btn:focus{
    color: #FFF;    
}
.theme-btn-second{
    color: #FFF;
    background-color:#4f5368;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 10px;
    float: left;
    letter-spacing: 0.3px;
}
.theme-btn-second:hover {
    background: #000;
    color: #FFF;
    text-decoration: none;
    transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -ms-transition:all 0.3s ease;
    -o-transition:all 0.3s ease;
}
.theme-btn-brd {
    color: #649a38;
    background-color:#FFF;
    border:2px solid #649a38;
    border-radius: 0px;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 30px;
    letter-spacing: 0.3px;
}
.theme-btn-brd:hover {
    background: #649a38;
    border:2px solid #649a38;
    color: #FFF;
    text-decoration: none;
    transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -ms-transition:all 0.3s ease;
    -o-transition:all 0.3s ease;
}
/* End btn css*/

/* Main title css
============================================================================================ */
.sec_middle_title {
    text-align: center;
    max-width: 1040px;
    margin: auto;
    padding-bottom: 40px;
}

.sec_middle_title h1 {
    font-size: 40px;
    color: #242424;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .90px;
    padding-bottom: 20px;
}
.sec_middle_title h1::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #000;
    display: block;
    position: relative;
    top: 10px;
    left: 0;
    margin: auto;
}
.sec_middle_title h1 span{
    font-size: 40px;
    color: #e6760c;
    font-weight: 300;
}
.sec_middle_title h2 span {
    color: #18ba60;
}
.sec_middle_title p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: .34px;
}
.common-btn {
    display: inline-block;
    padding: 14px 25px;
    background: #ede739;
    border: solid 1px #fff;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    transition: all 0.5s ease;
}
.common-btn:hover, .common-btn:focus {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/*** 

====================================================================
  Main Slider style
====================================================================

***/
.slider_area.mr_top{
    margin-top: 97px;
}
.slider_area{
    min-width: 0;
    min-height: 0;
    background-color: #000;
    overflow: hidden;
}
.slider_area .container-fluid {
    position: relative;
    padding-left: 0;
}
.slider_area .col-lg-12 {
    position: relative;
    padding: 0;
}
.slide{
    position: relative;
    width: 100%;
    height: 100%;
}
.slider_area .owl-carousel {
    padding: 0 ;
    position: relative;
}
.slider_area .slide-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color:rgba(0, 0, 0, 0.32);
}
.slider_area .carousel-captions {
    position: absolute;
    top: 50%;
    width: 500px;
    z-index: 250;
    -webkit-transform: translateY(-50%);
}
.slider_area .carousel-captions.caption-align-center {
    text-align: left;
    width: 68%;
}
.slider_area .carousel-captions .caption-align-center-wrap {
    margin: 0 auto;
}
.slider_area .carousel-captions .small-heading {
    /*display: block;*/
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 3px;
    background-color:#00000061;
    padding: 5px 15px;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    animation: fadeInleft 0.5s both 0.4s;
    width: auto;
    text-transform: uppercase;
}
.slider_area .carousel-captions .heading {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 46px;
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0,0,0,.2);
    font-weight: bold;
    line-height: 55px;
}
.slider_area .carousel-captions .heading.color{
    color: #FFF;
    font-weight: 900;
    font-size: 60px;
    line-height: 70px;
}
.slider_area .carousel-captions .btn {
   padding: 14px 25px;
   font-size: 18px;
}
.slider_area .btn-outline.lighter {
    color:#000;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    border-color: rgba(255,255,255,.2);
    background-color:#ede739;
}
.slider_area .owl-nav {
    text-align: center;
}
.slider_area .owl-nav [class*=owl-] {
    width: 37px;
    height: 37px;
    color: #242424;
    line-height: 35px;
    padding: 0;
    background: transparent;
    border: 1px solid #242424;
    text-align: center;
    border-radius: 0;
    font-size: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.slider_area .owl-nav [class*=owl-]:hover {
    /*opacity: .55;
    filter: alpha(opacity=55);*/
    background: rgba(0,0,0,0.5);
}
.slider_area .owl-nav .owl-next {
    margin-right: 10px;
    top: 40%;
    right: -10px;
    position: absolute;
    color: #FFF;
    font-size: 35px;
    margin: 5px;
    padding: 0px;
    background: rgba(255,255,255,0.3);
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 5px;
    width: 58px;
    height: 58px;
    border: none;
    line-height: 56px;
}
.slider_area .owl-nav .owl-prev {
    margin-right: 10px;
    top: 40%;
    left: 0px;
    position: absolute;
    color: #FFF;
    font-size: 35px;
    margin: 5px;
    padding: 0px;
    background: rgba(255,255,255,0.3);
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 5px;
    width: 58px;
    height: 58px;
    border: none;
    line-height: 56px;
}
/*End Slder*/


/*...................whatwedo-section-Start...................*/
.whatwedo-section {
    width: 100%;
    float: left;
    margin-top: -140px;
    position: relative;
    z-index: 2;
}
.whatwedo-main {
    width: 100%;
    float: left;
    overflow: hidden;
}
.page-heading {
    width: 100%;
    float: left;
    padding-bottom: 60px;
    text-align: center;
    color: #fff;
}
.page-heading h2 {
    font-size: 30px;
    color: #000;
    font-weight: 600;
}
.page-heading h5 {
    padding-bottom:10px;
    font-size:26px;
    color: #000;
    font-weight: 400;
}
.page-heading p {
    padding-top:10px;
    font-size:16px;
    color: #4b4b4b;
}
.whatwedo-panel {
    width: 100%;
    float: left;
    color: #fff;
    text-align: center;
}
.whatwedo-innerpanel {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}
.whatwedo-icon {
     width: 100%;
    float: left;
}
.whatwedo-icon span {
    display: inline-block;
    margin: auto;
}
.whatwedo-icon span img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.whatwedo-icon span img.after-img {
    display: none;
}
.whatwedo-panel h3 {
    width: 100%;
    float: left;
    padding-top: 20px;
    font-size: 23px;
    color: #fff;
    line-height: 28px;
}
.whatwedo-imgpanel {
    width: 280px;
    height: 280px;
    border-radius: 100px;
    position: relative;
    margin: auto;
}
.whatwedo-imgpanel .inline-panel > img {
   width: 100%;
   height: 100%;
}
.whatwedo-imgpanel .inline-panel {
    border-radius: 100%;
    border: solid 5px transparent;
    transition: all 0.5s ease-in;
}
.whatwedo-imgpanel .overlay{
   border-radius: 100%;
}
.whatwedo-contents {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}

.whatwedo-imgpanel:hover .inline-panel {
   border: solid 5px #ecd02f;
}
.whatwedo-imgpanel:hover h3 {
   color:#ecd02f;
}
.whatwedo-imgpanel:hover .after-img {
   display: inline-block;
}
.whatwedo-imgpanel:hover .before-img {
   display:none;
}
/*...................whatwedo-section-End...................*/


/*...................whoweare-section-Start...................*/
.whoweare-section {
    /* width: 100%; */
    /* float: left; */
    padding: 12px 0px;
    /* background: #f5f9fc; */
}
.whoweare-main {
    width: 100%;
    float: left;
}
.whoweare-imgpanel {
    width: 90%;
    float: left;
    border: solid 5px yellow;
}
.whoweare-imgpanel::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -15px;
    bottom: -25px;
    display: block;
    border: solid 5px #fbf9c0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    margin: auto;
    -webkit-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.whoweare-imgpanel:hover::before {
    opacity: 1;
    visibility: visible;
    border:solid 5px #fbf9c0;
}
.whoweare-imgpanel img {
   min-width: 100%; 
   position: relative;
   top: 15px;
   left: 15px;
}
.whoweare-imgpanel h3 {
    position: absolute;
    right: 1%;
    top: 15px;
    z-index: 3;
    padding: 2px 15px;
    font-size: 16px;
    color: #c8c8c8;
    font-weight: 400;
    text-transform: uppercase;
    writing-mode: tb-rl;
    transform: rotate(180deg);
}
.whoweare-imgpanel h3 span {
    float: right;
    padding-top: 7px;
}
.whoweare-imgpanel h3:after {
    content: "";
    height: 90px;
    width: 1px;
    background: #d9d9d9;
    display: block;
    float: left;
    position: relative;
    left: -8px;
}
.whoweare-group {
   width: 94%;
    float: right;
}
.whoweare-contents {
   width: 100%;
    float: left;
  
}
.whoweare-contents h2{
   font-family: 'Raleway', sans-serif;
   font-size: 25px;
   font-weight: bold;
}
.whoweare-contents h4{
    padding: 13px 0px 15px 0px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #33449E;
    line-height: 25px;
    font-weight: 600;
}
.whoweare-contents p{
   font-size: 15px;
   color: #242424;
   line-height: 23px;
}
.whoweare-contents a {
   display:
   inline-block;
   padding-top: 15px;
   font-size: 16px;
   color: #33449E;
   font-weight: bold;
}
.wesupport-listpanel {
    width: 100%;
    float: left;
    margin-top: 30px;
    border-top: solid 1px #eaeaea;
    border-bottom: solid 1px #eaeaea;
    list-style: none;
}
.wesupport-listpanel li {
    width: 33.33%;
    float: left;
    border-right: solid 1px #eaeaea;
}
.wesupport-listpanel li:last-child {
    border-right: none;
}
.wesupport-listpanel li span {
    width: 100%;
   padding: 15px;
    display: table;
}
.wesupport-listpanel li i {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.wesupport-listpanel li i img {
    max-width: none;
}
.wesupport-listpanel li strong {
    display: table-cell;
    padding-left: 10px;
    font-size: 15px;
    color: #131313;
    font-weight: bold;
    line-height: 20px;
}
/*...................whoweare-section-End...................*/

/*...................casestudy-section-End...................*/
.casestudy-section {
    width: 100%;
    float: left;
    background: #f5f9fc;
    padding: 320px 0px 100px 0px;
}
.casestudy-section .page-heading {
   padding-bottom: 35px;
}
.casestudy-section .page-heading h2 {
    font-size: 40px;
    font-weight: 700;
}
.casestudy-section .page-heading p {
    padding-top:20px;
}
.casestudy-main {
    width: 100%;
    float: left;
    /*    padding-bottom: 150px;*/
}
.casestudy-slider {
    width: 100%;
    float: left;
    padding:0px 0px 0px 50px;
}
.casestudy-slider .owl-stage{
    padding-left:0px !important;
}
.casestudy-slider .owl-stage.owlpadding-remove{
    padding-right:0px !important;
}
.casestudy-group {
    width: 100%;
    float: left;
    padding:35px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.casestudy-imgpanel {
    display: inline-block;
    float: left;
    position: relative;
}
.casestudy-imgpanel > img {
    border: solid 5px #fff;
    /*   box-shadow: 0px 1px 14px 4px rgba(0, 0, 0, 0.10980392156862745);*/
}
.casestudy-contens{
    background: #000000b3;
    padding: 0px 10px;
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 0;
}
.casestudy-contens span {
    width: 65%;
    height: 4px;
    display: block;
    background: #ede739;
    position: absolute;
    left: 30px;
    top: -4px;
}
.casestudy-contens h3 {
   padding: 20px;
   font-size: 20px;
   color: #fff;
   font-weight: bold;
   line-height: 27px;
   text-transform: uppercase;
}

.casestudy-slider .owl-item:last-child.active .casestudy-group{
    padding-right: 0px;
    transition: padding 0.5s ease;
}
.casestudy-slider .owl-item.active .casestudy-imgpanel > img {
    box-shadow: 0px 1px 14px 4px rgba(0, 0, 0, 0.10980392156862745);
}
.casestudy-slider .owl-item .casestudy-contens{
    opacity: 0;
    transition: all 0.9s ease-in;
    transform: translateY(20px);
}
.casestudy-slider .owl-item.active .casestudy-contens{
    opacity:1;
    transform: translateY(0px);
}
.casestudy-slider .owl-nav{
    width: 100%;
    float: left;
    padding-top: 65px;
    text-align: center;
}
.casestudy-slider .owl-prev {
    width: 45px;
    height: 45px;
    background: #ede739;
    display: inline-block;
    margin-right: 22px;
    line-height: 45px;
}
.casestudy-slider .owl-next {
    width: 45px;
    height: 45px;
    background: #ede739;
    display: inline-block;
    line-height: 45px;
}
.casestudy-slider.owlnav-pstn .owl-nav {
    bottom: 110px;
}
/*...................casestudy-section-Start...................*

/*====================================testimonials-section-Start=====================================*/
.testimonials-section {
    width: 100%;
    float: left;
    padding: 100px 0px 0px 0px;
    background: #222222;
}
.testimonials-section .page-heading h2 {
    color: #fff;
}
.testimonials-section .page-heading p {
   padding-top: 20px;
   color: #fff;
   font-size: 18px;
   line-height: 24px;
}
.testimonials-section.padd-top-100{
    padding-top: 100px;
    margin-top: 0px;
}
.testimonials-mainpanel {
    width: 100%;
    float: left;
    text-align: center;
}
.testimonials-mainpanel .page-heding {
    padding: 0px;
}
.testimonials-mainpanel .page-heding h3 {
    color: #242424;
}
/*.testimonials-grid {
    width: 100%;
    float: left;
    background: #ede739;
    margin-bottom: -215px;
    position: relative;
    z-index: 2;
}*/
.testimonials-slider {
    width: 90%;
    background: #ede739;
    margin: auto;
    margin-bottom:-218px;
}
.testimonials-slider .owl-nav {
    position: absolute;
    width:100%;
    top: 50%;
}
.testimonials-slider .owl-prev, .testimonials-slider .owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    left: -40px;
    background: #de2223;
    border: solid 1px #de2223;
    color: #fff;
    line-height: 38px;
    text-align: center;
}
.testimonials-slider .owl-next {
   left: inherit;
    right: -40px;
}
.testimonials-slider .owl-prev span, .testimonials-slider .owl-next span {
    display: inline-block;
    color: #cfcfcf;
    font-size: 22px;
    font-weight: 600;
    line-height: 38px;
}
.testimonials-slider .owl-prev:hover span, .testimonials-slider .owl-next:hover span {
    color: #fff;
}
.testimonials-slider .owl-prev:hover, .testimonials-slider .owl-next:hover {
    background: #fe191b;
}

.testimonials-details {
   width: 90%;
    max-height: 480px;
    padding:50px 0px;
    display: block;
    overflow: hidden;
    margin: auto;
}
.testimonials-img {
    width: 100%;
    float: left;
    text-align: center;
}
.testimonials-img img {
    width: 120px !important;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    padding: 14px;
    border: solid 8px #f4f084;
}
.testimonials-content {
    width: 100%;
    float: left;
    padding-top: 30px;
    overflow: hidden;
}
.starslist {
    width: 100%;
    float: left;
}
.starslist i {
    font-size: 28px;
    color: #de2221;
    text-shadow: 1px 3px 6px #ffffff, 0px -1px #ffffff;
}
.testimonials-content h2 {
    font-size: 30px;
    color: #000;
}
.testimonials-content p {
    width: 90%;
    margin: auto;
    overflow: hidden;
    padding: 30px 0px 35px 0px;
    font-size: 18px;
    color: #010101;
    font-weight: 300;
    font-style: italic;
    line-height: 28px;
}
.testimonials-content h6 {
    width: 100%;
    float: left;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 18px;
    color: #de2223;
    font-weight: 600;
}
.testimonials-content h6 small {
    color: #000;
}
/*===================================================testimonials-section-End===================================================*/


/*...................myteam-section-Start...................*/
.myteam-section {
    width: 100%;
    float: left;
    overflow: hidden;
}
.myteam-section .page-heading {
    padding: 75px 0px;
    background:#2957a9;
}
.myteam-section .page-heading h5, .myteam-section .page-heading h2 {
    color: #fff;
}
.myteam-main {
    width: 100%;
    float: left;
}
.myteam-gridpanel {
    width: 100%;
    float: left;
}
.myteam-group {
    width: 25%;
    float: left;
    padding:10px;
}
.myteam-group:hover .overlay {
    visibility: visible;
    opacity:1;
}
.myteam-content {
    width: 100%;
    float: left;
    background:#de2223;
    padding: 25px 0px;
    text-align: center;
}
.myteam-content h3 { 
    color: #fff;
    font-size:22px;
    font-weight:600;
}
.myteam-content h5 {
    padding-top: 8px;
    color: #fff;
    font-size:16px;
    font-weight: 500;
}
.myteam-group:hover h3 {
    opacity: 1;
    animation: bounce 0.8s ;
    -webkit-animation: bounce 0.8s ; 
    -moz-animation: bounce 0.8s ; 
    -o-animation: bounce 0.8s ; 
}
.myteam-group:hover h5 {
    animation: bounce 0.8s ;
    -webkit-animation: bounce 0.8s ; 
    -moz-animation: bounce 0.8s ; 
    -o-animation: bounce 0.8s ; 
}
/*CSS3 Bounce Animation*/
@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);

    } 
    50% {
        -webkit-transform: translateY(20px);
        opacity: 0;
    }
}
@-moz-keyframes bounce {
    0% {
        -moz-transform: translateY(0);
    }
    50% {
        -moz-transform: translateY(20px);
        opacity: 0;
    }
}
@-o-keyframes bounce {
    0% {
        -o-transform: translateY(0);
    }
    50% {
        -o-transform: translateY(20px);
        opacity: 0;
    }
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}
.myteam-img {
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.myteam-inlineimg {
    display: inline-block;
    position: relative;
}
.myteam-group .overlay {
    visibility: hidden;
    opacity: 0;
}
.social-media {
    width: 100%;
    float: left;
    text-align: center;
}
.social-media a {
    display: inline-block;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    transform: translateY(200px);
    transition: transform 1s cubic-bezier(.46, 1.48, .18, .81);
}
.social-media a.facebook {
    transition-delay: 0.02s;
}
.social-media a.twitter {
    transition-delay: 0.04s;
}
.social-media a.linkedin {
    transition-delay: 0.06s;
}
.social-media a.google-plus {
    transition-delay: 0.08s;
}
.social-media a:hover, .social-media a:focus {
    text-decoration: none;
}
.myteam-group:hover .social-media a {
    transform: translateY(20px);
}
.myteam-group .overlay .social-media{
    position: absolute;
    bottom: 40px;
    transition: all 0.5s ease;
}

/*...................myteam-section-End...................*/

/*...................latestpost-section-Start...................*/
.newsarticle-section {
    width: 100%;
    float: left;
    padding: 100px 0px;
}
.newsarticle-section .page-heading h2{
    font-size: 40px;
    font-weight: 700;
}
.newsblog-mainpanel {
    width: 100%;
    float: left;
}
.newsblog-gridpanel {
    width: 100%;
    float: left;
}
.newsblog-group {
    width: 100%;
    float: left;
    padding: 8px;
    background: #fff;
    border: solid 1px #ffffff;
    overflow: hidden;
    box-shadow: 0px 1px 8px 1px rgba(0, 0, 0, 0.10980392156862745);
}
.newsblog-imgpanel {
    width: 100%;
    display: inline-block;
    position: relative;
}
.newsblog-imgpanel img {
    width: 100%;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
    transform-origin: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.newsarticle-slider .owl-item.active.center .newsblog-group img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
.newsblog-date {
    width: 81px;
    height:100px;
    padding-top: 13px;
    background: #2957a9;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    z-index: 3;
    color: #fff;
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
}
.newsblog-date strong {
     display: block;
     padding-bottom: 3px;
}
.newsblog-date small {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.newsblog-conents {
    width: 100%;
    float: left;
    background: #fff;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    transition-property:margin-top;
    transition-duration: .5s;
    transition-timing-function: linear;
    transition-delay: .1s;
}
.newsblog-conents h4 {
   padding-bottom: 18px;
   font-size: 16px;
   color: #000f1b;
   font-weight:400;
}
.newsblog-conents h3 {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    line-height: 24px;
}
.newsblog-conents p {
    font-size: 15px;
    color: #9e9a9a;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    z-index:1;
    top:10px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
    transition-property:height, top, opacity, visibility;
    transition-duration: .5s;
    transition-timing-function: linear;
    transition-delay: .1s;
}
.newsblog-group:hover .newsblog-conents {
    margin-top: -50px;
}
.newsblog-group:hover p {
    top: 0;
    opacity: 1;
    visibility: visible;
    height: auto;
}
/*...................latestpost-section-End...................*/
/*...................getintouch-section-Start...................*/

.getintouch-section {
    width: 100%;
    float: left;
    padding: 100px 0px 0px 0px;
    background: #2957a9 url(../img/getquote-bg.jpg);
    background-size: cover;
}
.getintouch-section .container-fluid{
    position:relative;
}
.getintouch-section .container{
    position:static;
}
.getintouch-main {
    width:100%;
    float: left;
    position:static;
}
.getintouch-imgpanel {
    width: 46%;
    position: absolute;
    left: 10px;
    bottom: 0;
    text-align: center;
}
.getquote-heading {
    width: 100%;
    float: left;
    overflow: hidden;
    padding-bottom: 90px;
}
.getquote-heading h2 {
   display: inline-block;
   padding-bottom: 20px;
   font-size: 40px;
   color: #fff;
   font-weight: 700;
   background: url(../img/line.png) left bottom no-repeat;
   background-size: contain;
}
.getquote-heading h3 {
    padding-top: 22px;
    font-size: 35px;
    color: #fff;
    font-weight: bold;
}
.getquote-heading h3 span {
    padding-right:15px;
}
.getquote-heading h3 a {
    color: #fff;
}
.contactform-grid {
    width: 55%;
    float: right;
    text-align: center;
}
.quoteform-main {
    width: 75%;
    float: none;
    clear: left;
    padding:3px 30px 35px 30px;
    background: #272f35;
    border: solid 3px #dcc82b;
    margin: auto;
}
.quoteform-main .form-group {
    margin-bottom: 20px;
}
.notebook {
    width: 81px;
    height: 81px;
    display: inline-block;
    background: #ede739;
    border-radius: 100%;
    line-height: 81px;
    text-align: center;
    position: relative;
    top:-46px;
}
.getintouch-main .contact-us-form .form-control {
    height: 60px;
    padding: 20px 25px;
    background: #fff;
    font-size: 17px;
    color: #575757;
    font-weight: 400;
    border-radius: 0px;
    border: none;
}
.getintouch-main .contact-us-form .form-control:focus {
    border-color: inherit;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.getintouch-main input::-webkit-input-placeholder {
    color: #3c3e41;
}
.getintouch-main input:-moz-placeholder { 
    color: #3c3e41;  
}
.getintouch-main input::-moz-placeholder {  
    color: #3c3e41; 
}
.getintouch-main input:-ms-input-placeholder {
    color: #3c3e41;  
}
.getintouch-main .contact-us-form .common-btn{
    background: #ede739;
    color: #000;
    padding: 14px 25px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
}
.getintouch-main .contact-us-form .common-btn:hover, .getintouch-main .contact-us-form .common-btn:focus  {
    background:#f9f108;
}
.getintouch-main .contact-us-form .common-btn i {
    font-size: 20px;
}
.getintouch-main .contact-us-form .form-group textarea {
    height:170px;
    resize: none;
}
.getintouch-main textarea::-webkit-input-placeholder {
    color: #3c3e41;
}
.getintouch-main textarea:-moz-placeholder { 
    color: #3c3e41;  
}
.getintouch-main textarea::-moz-placeholder {  
    color: #3c3e41; 
}
.getintouch-main textarea:-ms-input-placeholder {
    color: #3c3e41;  
}
.message-textarea .input-group-addon {
    vertical-align: top;
    padding-top: 20px;
}
/*...................getintouch-section-End...................*/

/*...................featured-service-End...................*/
.featured-service {
    background: #2957a9 url("../img/featured-service-1.png");
    background-size: cover;
    padding: 0px;
}
.featured-service .getintouch-main {
    display: flex;
    flex-wrap: wrap;
}
.featured-mainservice {
    width: 100%;
    float: left;
    background: #df3637f0;
    padding:100px 100px;
}
.featured-mainservice .page-heading{
    text-align: left;
}
.featured-mainservice .page-heading h2 {
    color: #fff;
}
.featured-mainservice .page-heading p {
    color: #fff;
}
.featured-service .quoteform-main {
    width: 100%;
    padding: 3px 30px 30px 30px;
    background: none;
}
.featured-service .quoteform-main h3{
   padding-bottom: 44px;
    margin-top: -15px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}
.featured-service .contactform-grid {
    width: 45%;
    background: #0000009e;
    padding: 100px 60px  80px 60px;
}
.featured-listgrid {
    width: 100%;
    float: left;
}
.featured-group {
    width: 100%;
    float: left;
    padding: 30px 0px;
    display: table;
}
.featured-group:last-child {
    padding-bottom:0px;
}
.featured-icon {
    width: 89px;
    height: 89px;
    display: table-cell;
    vertical-align: middle;
}
.featured-contents {
    display: table-cell;
    padding-left: 25px;
}
.featured-contents h3 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.featured-contents p {
    padding: 8px 0px 15px 0px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 24px;
}
.featured-contents a {
    font-size: 16px;
    color: #ede739;
    font-weight:bold;
}
.whitecircle {
    width: 205px;
    height: 273px;
    display: inline-block;
    background: #fff;
    /* border-radius: 100%; */
    text-align: center;
    line-height: 89px;
}
.featured-service .contactform-grid .common-btn {
    padding:11px 22px;
    transform-origin: bottom right;
    -ms-transform: skew(-27deg, 0deg);
    -webkit-transform: skew(-27deg, 0deg);
    transform: skew(-27deg, 0deg);
    border-radius: 0px;
    outline: none;
}
.featured-service .contactform-grid .common-btn:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 100%;
    top: 0px;
    left: -14px;
    background: #ffffff;
    transform-origin: bottom right;
    -ms-transform: skew(-22deg, 0deg);
    -webkit-transform: skew(-22deg, 0deg);
    transform: skew(-1deg, 0deg);
}
.featured-service .contactform-grid .common-btn span {
    display: inline-block;
    -ms-transform: skew(27deg, 0deg);
    -webkit-transform: skew(27deg, 0deg);
    transform: skew(27deg, 0deg);
}
/*...................featured-service-End...................*/


/*...................ourservice-section-Start...................*/
.ourservice-section {
    width: 100%;
    float: left;
    padding: 80px 0px;
    background: #f5f9fc;
}
.ourservice-main {
    width: 100%;
    float: left;
}
.page-heading {
    width: 100%;
    float: left;
    padding-bottom: 60px;
    text-align: center;
    color: #fff;
}
.page-heading h2 {
    font-size: 35px;
    color: #232b32;
    font-weight: 600;
    text-transform: uppercase;
}
.page-heading h5 {
    padding-bottom:10px;
    font-size:26px;
    color: #000;
    font-weight: 400;
}
.page-heading p {
    padding-top:15px;
    font-size:16px;
    color: #4b4b4b;
}
.ourservice-slider {
    width: 100%;
    float: left;
}
.ourservice-panel {
    width: 100%;
    float: left;
    color: #fff;
    text-align: center;
}
.ourservice-imgpanel {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.ourservice-imgpanel img {
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.ourservice-imgpanel:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.ourservice-contens {
    background: #000000b3;
    padding: 20px 40px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    transition-property: bottom;
    transition-duration: .5s;
    transition-timing-function: linear;
    transition-delay: .1s;
}
.ourservice-panel span {
    width: 65%;
    height: 4px;
    display: block;
    background: #ede739;
    position: absolute;
    left: 30px;
    top: 0px;
}
.ourservice-contens h3 {
    padding: 5px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    line-height: 27px;
    text-transform: uppercase;
}
.ourservice-contens a {
    display: inline-block;
    font-size: 18px;
    color: #FFF;
    font-weight: 500;
    position: relative;
    top: 40px;
    opacity: 0;
    visibility: hidden;
    transition-property: top, opacity, visibility;
    transition-duration: .5s;
    transition-timing-function: linear;
    transition-delay: .1s;
}
.ourservice-contens a i {
    padding-left: 5px;
    font-size: 14px;
}
.ourservice-imgpanel:hover .ourservice-contens{
    bottom:0px;
}
.ourservice-imgpanel:hover .ourservice-contens a{
    top: 0px;
    opacity:1;
    visibility: visible;
}
.ourservice-slider {
    width: 100%;
    float: left;
    text-align: center;
}
.ourservice-slider .owl-nav {
    width: 100%;
    float: left;
    padding-top:30px;
    text-align: center;
}
.ourservice-slider .owl-prev {
    width: 42px;
    height: 42px;
    background: #ede739;
    display: inline-block;
    margin-right: 22px;
    font-size: 35px;
    line-height: 40px;
}
.ourservice-slider .owl-next {
    width: 42px;
    height: 42px;
    background: #ede739;
    display: inline-block;
    font-size: 35px;
    line-height: 40px;
}
/*...................ourservice-section-End...................*/


/*...................shortaddress-section-Start...................*/
.shortaddress-section {
    width: 100%;
    float: left;
    padding:30px 0px;
    background: #BDD136;
}
.shortaddress-main {
    width: 100%;
    float: left;
}
.shortaddress {
    float: left;
    display: table;
}
.shortaddress strong {
    width: 78px;
    height: 78px;
    display: table-cell;
}
.shortaddress i {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 100%;
    background: yellow;
    text-align: center;
    line-height: 72px;
    font-size: 20px;
    color: black;
}
.shortaddress i.fa-phone {
    align-items: center;
    justify-content: center;
    display: flex;
}
.shortaddress i.fa-map-marker {
    align-items: center;
    justify-content: center;
    display: flex;
}
.shortaddress i.fa-envelope {
    align-items: center;
    justify-content: center;
    display: flex;
}

.shortaddress > p {
    padding-left: 28px;
    display: table-cell;
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    vertical-align: middle;
}
.shortaddress > p span {
    display: block;
}
.shortaddress > p small {
    display: block;
    font-size: 16px;
    line-height: 24px;
}
/*...................shortaddress-section-End...................*/


/*...................schedule-section-Start...................*/
.schedule-section {
    width: 100%;
    float: left;
    background:url(../img/schedule.jpg) left top no-repeat;
    background-size: cover;
    position: relative;
}
.schedule-main {
    width: 100%;
    float: left;
}
.consultant-imgpanel {
    width: 40%;
    position: absolute;
    right: 60px;
    bottom: 0;
}
.schedule-groupcall {
    width: 100%;
    float: left;
    padding-top: 15px;
}
.schedule-groupcall .common-btn {
    padding: 14px 20px;
    display:block;
    font-size: 16px;
}
.schedule-content {
    width: 60%;
    float: left;
    padding: 70px 15px;
}
.schedule-content h3 {
    font-size:35px;
    color: #fff;
    font-weight: 400;
}
.schedule-content h2 {
    padding: 20px 0px;
    font-size: 35px;
    color: #fff;
    font-weight: bold;
}
.schedule-call {
    width: 100%;
    float: left;
    padding-top:8px;
    display: table;
}
.schedule-call span{
    display: table-cell;
    vertical-align: middle;
}
.schedule-call strong{
    padding-left:12px;
    display: table-cell;
    color: #fff;
    font-size: 24px;
}
.rqestquote-rectangle {
    position: absolute;
    right: 0;
    top: 0px;
    width: 58%;
    bottom: 0;
    background: #f2f2f2;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 100% 0%);
}


/*...................schedule-section-End...................*/


/*===================================================commonbanner-breadcrumb-css-Start===================================================*/
.banner_area {
    margin-top: 0px;
    background-size: cover;
    /*min-height: 352px;*/
    position: relative;
    z-index: 2;
}
.banner_area.banner_one{
    background:url("../img/banner/b1-1.png") no-repeat scroll center center;
    background-size: cover;
}
.banner_area:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.banner_area .banner_content h3 {
    padding: 160px 0 100px;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
}
.banner_link {
    background: #FFF;
    border-bottom: 1px solid #e0e0e0;
}
.banner_link .abnner_link_inner a {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    letter-spacing: .32px;
    margin-right: 25px;
    line-height: 50px;
    position: relative;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}
.banner_link .abnner_link_inner a:before {
    content: "\f101";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    font-size:16px;
    font-weight:600;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color:#de2223;
}
.banner_link .abnner_link_inner a:last-child {
    margin-right: 0px;
}
.banner_link .abnner_link_inner a:first-child:before {
    display: none;
}
.banner_link .abnner_link_inner a:hover, .banner_link .abnner_link_inner a.active {
    color:#de2223;
    text-decoration: none;
}
.banner_area_plane {
    background: url(../img/banner/banner-bg.jpg) no-repeat scroll center center;
    background-size: auto auto;
    background-size: cover;
    min-height: 235px;
    position: relative;
    z-index: 2;
}
.banner_area_plane::before {
    content: "";
    background:rgba(143, 143, 143, 0.5);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.banner_area_plane .banner_content h3 {
    padding-top: 100px;
    font-size: 38px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

/* End Banner Area*/

.our_about_area {
  background-color: #f5f9fc;
  padding-bottom: 100px;
}
.our_about_left_content {
  padding-right: 10px;
}
.our_about_left_content .section_title {
  padding-bottom: 30px;
}
.our_about_left_content  h2{
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}
.our_about_left_content h3 {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: .44px;
  color: #242424;
}
.our_about_left_content p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .34px;
  padding-top: 30px;
}

.bg {
	background: url("../img/bg.jpg");
	background-size: cover;
	background-position: top center;
	/* background-attachment: fixed; */
	/* opacity: 0.8; */
}

icon-ct,
icon-te,
icon-fb,
icon-in{
	z-index:99;
	position:fixed;
	right:0px;
	}
icon-ct:hover,
icon-te:hover,
icon-fb:hover,
icon-in:hover{
	opacity:0.8;
	}	

icon-ct{
	bottom: 250px;
	}	
icon-te{
	bottom: 240px;	
	}
icon-fb{
	bottom: 190px;
	}	
icon-in{
	bottom:192px;
	}
icon-ct img{
	max-width: 50px;}
icon-te img{
	max-width: 50px;}
icon-fb img{
	
	max-width: 50px;}

@media (max-width: 480px){
  /* 480-Banner-Start*/ 
   .slider_area .carousel-captions .heading.color{
        font-size:18px;
        line-height: 22px;
 }
	.sec_middle_title {
   
    padding-bottom: 23px;
}
	
}
/*===================================================commonbanner-breadcrumb-css-End===================================================*/
