@charset "utf-8";
/* GOOGLE FONTs */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,600i,700|Raleway:400,400i,500,600,600i,700,700i');

/* OTHER IMPORTED CSS */
@import url("pe-icon-7-stroke.css");
@import url("helper.css");
@import url("font-awesome.min.css");
@import url("animate.min.css");
@import url("VideoPopUp.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.css");
@import url("lightbox.min.css");
@import url("bootstrap-dropdownhover.css");
@import url("element.css");
@import url("stroke-gap.css");



/*****=====*****=====*****=====*****=====
    02. General CSS 
=====*****=====*****=====*****=====*****/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #424242;
    overflow-x: hidden !important;
}
/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    color: #232323;
    line-height: 1.1;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    text-transform: uppercase;
}
p {
    margin: 0;
    padding: 0;
    text-align:justify !important;
}
.h3, h3 {
    font-size: 22px;
}
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 {
    outline: none;
    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;
}
.btn {
    font-size: 14px;
}

/* Form CSS */

.form-control {
    resize: none;
    height: 45px;
    font-size: 14px;
    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: #a2a2a2;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* Placeholder Color CSS */
::-webkit-input-placeholder {
    color: #999999 !important;
}
::-moz-placeholder {
    color: #999999 !important;
}
:-ms-input-placeholder {
    color: #999999 !important;
}
:-moz-placeholder {
    color: #999999 !important;
}


/* BUtton CSS */
.my-btn {
    padding: 10px 20px;
    background: #ee2c3c;
    color: #ffffff;
    position: relative;
    border-radius: 0;
    border: none;
    text-transform: capitalize;
}
.my-btn:hover {
    color: #ffffff;
    background: #303030;
}
.my-btn:hover:before, 
.my-btn:focus:before, 
.my-btn:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.my-btn:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 90%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}



/* Background Over Layer CSS */ 
.overlay-black {
    position: relative;
}
.overlay-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.overlay-white {
    position: relative;
}
.overlay-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 */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}
.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
}
.section-title h2 span {
    color: #ee2c3c;
}

.section-title h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -15px;
    width: 60px;
    height: 2px;
    background: #ee2c3c;
}
.section-title p {
    margin-top: 12px;
}



/* Scrollup CSS */
#scrollUp {
    bottom: 20px;
    right: 20px;
    padding: 5px 10px;
    background-color: #D98E36;
    color: #ffffff;
}
#scrollUp:before {
    content: "\e61e";
    font-family: 'Stroke-Gap-Icons';
    font-size: 20px;
}

/* Pagination CSS Start */
.inner-pagination {
    margin-bottom: 30px;
    margin-top: 20px;
}
.mt50 {
    margin-top: 50px;
}
.mt20 {
    margin-top: 20px;
}
.mb0 {
    margin-bottom: 0;
}
.m0 {
    margin: 0;
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: 0;
}
.page-item .page-link {
    margin: 0 5px;
    color: #333333;
    border-color: #8e8e8e;
}
.inner-pagination .page-item .page-link:hover {
    color: #ffffff !important;
    background: #ee2c3c;
}
.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 0;
    color: #333333;
    border-color: #8e8e8e;
}


.set-click-video-area {
    position: relative;
    overflow: hidden;
    background-image: url("../images/bg/1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    width: 100%;
    text-align: center;
    height: 100vh;
}
.h100vh,
.h100vh .container,
.h100vh .row {
    height: 100vh;
}

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


.bd-video-col {
    display: table-cell;
    vertical-align: middle;
}


.set-click-video-area::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background-image: url("../images/logo/pattan.html");
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.set-click-video-area .bd-video-col h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    line-height: 1.8em;
    letter-spacing: 5px;
    position: relative;
}

.set-click-video-area .bd-video-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
}

.set-click-video-area .bd-video-col  p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    word-spacing: 10px;
    letter-spacing: 2px;
    position: relative;
}

.set-click-video-area .bd-video-col a i {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    line-height: 90px;
    font-size: 40px;
    z-index: 2;
    text-align: center;
    position: relative;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ee2c3c;
    -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;
}

.set-click-video-area .bd-video-col a:hover i {
    background: #333;
    -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;
}


.icon-scroll { display: none; }

@media (min-width: 992px) {
    .icon-scroll {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 20px;
        text-decoration: none;
        font-size: 32px;
        color: #fff;
        -webkit-transition: color 0.2s ease-out;
           -moz-transition: color 0.2s ease-out;
            -ms-transition: color 0.2s ease-out;
             -o-transition: color 0.2s ease-out;
                transition: color 0.2s ease-out;

        /* Animation */
        -webkit-animation: bounce 1s infinite; 
           -moz-animation: bounce 1s infinite; 
            -ms-animation: bounce 1s infinite;
             -o-animation: bounce 1s infinite;
                animation: bounce 1s infinite;
    }

    .icon-scroll:hover {
        color: rgba(255,255,255,1);
        -webkit-transition: color 0.2s ease-out;
           -moz-transition: color 0.2s ease-out;
            -ms-transition: color 0.2s ease-out;
             -o-transition: color 0.2s ease-out;
                transition: color 0.2s ease-out;
    }
}

@media (max-width: 767px) {
    .bd-video-col {
        display: none;
    }
    .service-area img
    {
        padding:1em;
        display: block;
        margin:auto;
    }
    .imag-banner .title-p
    {
       bottom: 30px;
      
    }
    .imag-banner .title-p h2
    {
         font-size: 25px;
    }
    .imag-banner .title-p p
    {
        font-size: 18px;
    }
    .grd-img .col-md-4 img
    {
        width: auto;
        height: auto;
    }
}

/*--------------------------------
    03. Header CSS Start
----------------------------------*/

/* Header Topbar CSS */

.topbar-area {
    padding: 0;
    background: #337ab7;
    overflow: hidden;
}
.topbar-info li {
    display: inline-block;
    margin-right: 20px;
}
.topbar-info li p {
    color: #ffffff;
    line-height: 40px;
}
.topbar-info li p a {
    color: #ffffff;
    line-height: 45px;
}
.social-icon {
    text-align: right;
}
.social-icon ul li {
    display: inline-block;
    text-align: center;
    margin-left: 5px;
    background: transparent;
}
.social-icon ul li a i {
    font-size: 16px;
    line-height: 45px;
    color: #ffffff;
    width: 45px;
    height: 45px; 
}




/* Navbar CSS start */
.header-navbar {
    color: #ffffff;
    padding:3em 0;
    background-color:linear-gradient(rgba(255,220,202,0.7), rgba(0,0,0,0.3));
    border-bottom:4px solid #337ab7;
    margin-bottom: 4em;
}
.header-navbar .navbar-brand {
    padding: 0;
    margin-top: 15px;
}
.header-navbar .navbar-brand img {
        width:auto;
    position: relative;
    top: -4.5em;
    
}
.header-navbar .navbar {
    margin-bottom: 0;
}
.header-navbar .navbar-default {
    background: transparent;
    border: none;
}
.header-navbar .navbar-default .navbar-nav>.active>a,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #CC842F;
}
.header-navbar .navbar-default .navbar-nav>li>a {
    color: #fff;
    text-transform: uppercase;
    background-color: #337ab7;
    margin-left: 1px;
}
.header-navbar .navbar-default .navbar-nav>li>a:focus,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    background: #CC842F;
}
.dropdown-menu {
    border: none;
    min-width: 200px;
    border-radius: 0;
}
.header-navbar .navbar-right .dropdown-menu {
    right: auto;
}
.header-navbar .navbar-nav .dropdown-menu {
    padding: 0;
}
.header-navbar .navbar-nav .dropdown-menu>li>a {
    padding: 15px 10px;
    color: #333333;
    text-transform: uppercase;
    border-left: 3px solid transparent;
    border-top: 1px solid #eeeeee;
}
.header-navbar .navbar-nav .dropdown-menu>li>a:hover {
    border-left-color: #337ab7;
    background-color: rgba(239, 132, 5, 0.8);
    color:#fff;
}
.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: rgba(239, 132, 5, 0.8);
}
.navbar-nav>li>a
{
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	margin-top: 1em;
}
/* NavBar Fixed CSS */
.affix {
    background: #ffffff;
    top: 0;
    width: 100%;
    z-index: 999;
    -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;
}


/* main-herader-two */
.main-herader-two {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: transparent;
}
.main-herader-two .header-navbar .navbar-brand {
    margin-top: 12px;
}
.main-herader-two .social-icon ul li {
    background: rgba(238,44,60, 0.6);
}
.main-herader-two .header-navbar .navbar-default .navbar-nav>li>a {
    padding: 25px 0;
}
.main-herader-two .navbar-nav .dropdown-menu>li>a {
    font-weight: 600;
}
.main-herader-two .affix-top .container {
    background-color: rgba(255, 255, 255, 0.7);
    position: relative; 
}

.main-herader-two .topbar-area {
    background-color: transparent;
    border-bottom: none;
}
.main-herader-two .navbar-default .navbar-nav>li>a {
    color: #333333;
    font-weight: 600;
}
.main-herader-two .affix .navbar-default .navbar-nav>li>a {
    color: #333333;
}


/* Mega Menu CSS Start */
.nav > li.dropdown.open { 
    position: static; 
}
.nav > li.dropdown.open .dropdown-menu.mega-menu {
    display:table; 
    width: 100%; 
    text-align: center; 
    left:0; 
    right:0; 
    padding: 30px;
    margin-left:0;
}
.dropdown-menu.mega-menu>li { 
    display: table-cell; 
}

.dropdown-menu.mega-menu li ul.menu-col li {
    padding: 8px 0;
    text-align: left;
    border-bottom: 1px solid #dddddd;
}
.dropdown-menu.mega-menu li a {
    color: #333333;
    text-transform: capitalize;
    text-transform: uppercase;
    border-left: 2px solid transparent;
}
.dropdown-menu.mega-menu li a:hover {
    padding-left: 10px;
    border-left: 2px solid #ee2c3c;

}
.dropdown-menu.mega-menu img {
    margin-top: 0;
}



/*--------------------------------
    04. Slider CSS Start
----------------------------------*/

.slide {
  list-style-type: none;
  padding: 0;
}

.slide__item {
  height: 60vh;
}

.slide__item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.00000007);
}
.item-bg-1 {
    background: url(../images/slide.PNG);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 60vh;
}
.item-bg-2 {
    background: url(../images/slide2.PNG);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 60vh;
}
.item-bg-3 {
    background: url(../images/slide1.PNG);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 60vh;
}
.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.slide-caption__title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.slide-caption__title span {
    color: #ee2c3c;
}
.slide-caption__desc {
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.slide-caption .btn {
    border: 2px solid #ee2c3c;
    color: #ffffff;
    background: #ee2c3c;
    padding: 10px 25px;
    text-transform: uppercase;
}
.slide-caption .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: transparent;
}
.owl-item.active .slide-caption__title{
  animation: 1s 1s fadeInLeft both;
}

.owl-item.active .slide-caption__desc{
  animation: 1s 1.5s fadeInRight both;
}

.owl-item.active .btn {
  animation: 1s 2.5s zoomIn both;
}
.main-slider-area .owl-prev {
    position: absolute;
    top: 45%;
    left: 0;
    font-size: 25px;
    background: #551FC0;
    width: 35px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}
.main-slider-area .owl-next {
    position: absolute;
    top: 45%;
    right: 0;
    font-size: 25px;
    background: #551FC0;
    width: 35px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}
.main-slider-area .owl-theme .owl-nav [class*='owl-'] {
    display: none !important;
}

.main-slider-area-two .slide__item {
    height: 60vh;
}

.service-area {
    padding: 100px 0 50px;
    background: #f9f9f9;
}
.imag-banner .container
{
    position: relative;
}
.title-p
{
    position: absolute;
    bottom: 60px;
    left: 80px;
    
}

.active
{
background-color:rgba(239, 132, 5, 0.8) !important;
}
.title-p h2
{
    color:#fff;
    font-size:40px;
    text-shadow: 2px 2px 2px #888;
}
.title-p p
{
    color:#fff;
    text-shadow: 2px 2px 2px #888;
    font-size: 20px;
}
.about
{
    padding:100px 0 ;
}
.about ul li
{
    padding: 10px ;
}
.about ul li a
{
    font-size: 15px;
    font-weight: 600;
}
.grd-img .col-md-4
{
    padding: 20px 0;
    height: 300px;

    
}
.grd-img .col-md-offset-1
{
    padding: 25px;
background-color: #eee;
 border:1px solid #ccc;
 margin-left:1em;
}
.grd-img .col-md-4 img
{
    height: 200px;
    padding: 5px 0;
}

.grd-img a p
{
    text-align: center;
    color:#000;
}
.grd-img a p:hover
{
     color:#337ab7;
     text-decoration: underline;
}
 ul.infra li 
{
    list-style: circle;
    padding: 0px !important;
}
.Strategic 
{
   padding:10px;
}
hr
{
   border-color:  #ddd;
}
.Integration ul li
{
    padding: 10px 0;
}
ul.listing  li
{
padding: 2px;
list-style: circle;
}
.panel.panel--styled {
    background: #F4F2F3;
    box-shadow: 2px 2px 2px #888888;
}
.panelTop {
    padding: 30px;
}

.panelBottom {
    border-top: 1px solid #e7e7e7;
    padding-top: 20px;
}
.btn-add-to-cart {
    background: #FD5A5B;
    color: #fff;
}
.btn.btn-add-to-cart.focus, .btn.btn-add-to-cart:focus, .btn.btn-add-to-cart:hover  {
	color: #fff;   
    background: #FD7172;
	outline: none;
}
.btn-add-to-cart:active {
	background: #F9494B;
	outline: none;
}


span.itemPrice {
    font-size: 24px;
    color: #FA5B58;
}


/*--------------------------------
    10. Portfolio CSS Start
----------------------------------*/
.portfolio-section {
    padding: 100px 0;
    overflow: hidden;
}
.portfolio-nav {
    float: none;
    text-align: center;
    margin-bottom: 30px;
}

.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: #ee2c3c;
    -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;
}
.filtr-item-4 {
    width: 25%;
    padding: 0;
}
.padd0 {
    padding: 0;
}
/* Portfolio Hover CSS Start */
.box{
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: relative;
}
.box:before{
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10%;
    opacity: 0;
    transform: scale(0);
    -ms-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg); 
    background: rgba(238,44,60, 0.7);
    -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;
}
.box:hover:before{
    width: 80%;
    opacity: 1;
    transform: scale(2);
    transform: skewX(-10deg); 
}
.box img{
    width: 100%;
    height: auto;
}
.box .box-content{
    width: 50%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-200%, -50%);
    -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;
}
.box:hover .box-content{
    transform: translate(0, -50%);
}
.box .title{
    color: #ffffff;
    font-size: 18px;
    z-index: 1;
    margin-bottom: 10px;
    border-bottom: none;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.box .icon li { display: inline-block; }
.box .icon li a i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    margin-right: 5px;
    -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;
}
.box .icon li a i:hover{
    background: #ffffff;
    color: #000000;
}

.portfolio-section .inner-pagination {
    margin-bottom: 0;
    margin-top: 50px;
}
.portfolio-grid-4 .filtr-item {
    width: 25%;
}
/* Portfolio Details */
.portfolio-details {
    padding: 100px 0 50px;
}
.details-col {
    margin-bottom: 50px;
}
.details-col ul li {
    margin-bottom: 20px;
}
.details-col ul li i {
    margin-right: 10px;
    color: #ee2c3c;
}
.details-col ul li a {
    color: #111111;
}

.submit
{
    background-color: #337ab7;
    color: #fff;
}



/*--------------------------------
    22. Footer CSS Start
----------------------------------*/
.main-footer {
    padding: 20px 0 0 0px;
    background: #337ab7;
}
.footer-col {
    margin-bottom: 3px;
}
.footer-col h3 {
    font-size: 20px;
    position: relative;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.footer-col h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #D98E36
    ;
}
.footer-col h3 span {
    color: #D98E36
    ;
    font-weight: bold;
}
.footer-col.about p {
    color: #e2e2e2;
}
.footer-col.about ul {
    margin-top: 20px;
}
.footer-col.about ul li {
    position: relative;
    padding-left: 25px;
    color: #e2e2e2;
    margin-bottom: 10px;
}
.footer-col.about ul li i {
    position: absolute;
    left: 0;
    top: 7px;
    z-index: 0;
}
.footer-col.links ul li {
    border-bottom: 1px solid #333333;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.footer-col.links ul li:last-child {
    border-bottom: none;
}
.footer-col.links ul li a {
    color: #e2e2e2;
    text-transform: capitalize;
}
.footer-col.links ul li a:hover {
    color: #D98E36;
}
.footer-col.twitter .twitter-box {
    position: relative;
    padding-left: 30px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333333;
}
.footer-col.twitter .twitter-box:last-child {
    border-bottom: none;
}
.footer-col.twitter .twitter-box i {
    color: #116BA3
    ;
    position: absolute;
    left: 0;
    top: 7px;
    z-index: 0;
    font-size: 25px;
}
.footer-col.twitter .twitter-box p {
    color: #e2e2e2;
}
.footer-col.twitter .twitter-box p a {
    color: #116BA3
    ;
}
.footer-col.newsletter p {
    color: #e2e2e2;
    margin-bottom: 20px;
}
.footer-col.newsletter .input-group {
    margin-bottom: 20px;
}
.footer-col.newsletter .input-group .sub-btn {
    background: #116BA3
    ;
    color: #ffffff;
    border: none;
    height: 45px;
    border-radius: 0;
}
.footer-col.newsletter ul li {
    display: inline-block;
    text-align: center;
    margin-left: 5px;
    background: #116BA3
    ;
    -ms-transform: skewX(-15deg); 
    -webkit-transform: skewX(-15deg); 
    transform: skewX(-15deg);
    -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; 
}
.footer-col.newsletter ul li a i {
    font-size: 16px;
    line-height: 35px;
    color: #ffffff;
    width: 35px;
    height: 35px;
    -ms-transform: skewX(15deg); 
    -webkit-transform: skewX(15deg); 
    transform: skewX(15deg);
    -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; 
}
.footer-col.newsletter ul li:hover {
    background: #ffffff;
    -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;
}
.footer-col.newsletter ul li a i:hover {
    color: #116BA3;
    -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;
}

/* Copyright CSS Start */
.footer-copyright {
    padding: 10px 0;
    background: #072742;
}
.footer-copyright p {
    color: #e2e2e2;
    text-align:center !important;
}
.footer-copyright p a {
    color: #116BA3;
}
