@charset "utf-8";



/* 

01. Imported Fonts
02. General CSS 
        * Common CSS
        * Form CSS
        * Btn CSS
        * Background Over Layer CSS
        * Default Title CSS
        * Preloader CSS
        * Scrollup CSS
03. Header CSS
04. Hero CSS
05. Slider CSS
06. About CSS
07. Service CSS
08. Counter CSS
09. Portfolio CSS
        * Item Hover CSS
10. Pricing CSS 
11. Team CSS 
12. Testimonial CSS 
        * Accordion CSS
13. Blog CSS 
        * Blog Single CSS 
        * Sidebar CSS
14. Subscribe CSS 
15. Brand CSS 
16. Contact CSS
17. Footer CSS
18. Copyright CSS

*/

/*****-----*****-----*****-----*****
    01. Imported CSS
*****-----*****-----*****-----*****/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,600i,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');


/*****-----*****-----*****-----*****
    02. General CSS 
*****-----*****-----*****-----*****/
body {
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #424242;
}
/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
   /* font-family: 'Roboto', sans-serif;*/
    color: #2d2d2d;
    line-height: 1.1;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    text-transform: uppercase;
}
p {
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}
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;
}


/* Form CSS */
.form-control {
    height: 40px;
    margin-top: 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: #c7c7c7 !important;
}
::-moz-placeholder {
    color: #c7c7c7 !important;
}
::-o-placeholder {
    color: #c7c7c7 !important;
}
:-ms-input-placeholder {
    color: #c7c7c7 !important;
}
input:-moz-placeholder {
    color: #c7c7c7 !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: 120px 0 90px;
    position: relative;
}
.col-default {
    margin-bottom: 30px;
}

/* Btn CSS */
.btn-style{
    background: transparent;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 0;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease 0s;    
	margin-top: 25px;
}
.btn-style:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-width: 0;
    border-style: solid;
    z-index: -1;
    transition: all 0.6s ease 0s;
}
.btn-style:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 0;
    border-style: solid;
    z-index: -1;
    transition: all 0.6s ease 0s;
}
.btn-style:hover:before{
    border-width: 500px 0 0 500px;
}
.btn-style:hover:after{
    border-width: 0 0 500px 500px;
}
.btn-style:hover{
    color:#ffffff;
}
.btn-color{
    color: #cf151a;
    border: 2px solid #cf151a;
}
.btn-color:before{
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #cf151a;
}
.btn-color:after{
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #cf151a;
}


/* 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.8);
}
.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.85);
}





/* Default Title CSS */
.default-title {
    position: relative;
    margin-bottom: 60px;
}
.default-title h2 {
    font-size: 32px;
    position: relative;
}
.default-title .bg-title {
    position: absolute;
    left: 0;
    top: -15px;
    z-index: 0;
    font-size: 60px;
    color: #eaeaea;
    line-height: 75px;
}
.title-bdr {
    position: relative;
    width: 50px;
    height: 3px;
    background: #cf151a;
    margin-bottom: 20px;
}
.default-title p {
    font-weight: bold;
    font-style: italic;
    margin-bottom: 30px;
}
.default-title img {
    /*-webkit-border-bottom-right-radius: 120px;
    -moz-border-bottom-right-radius: 120px;
    -ms-border-bottom-right-radius: 120px;
    -o-border-bottom-right-radius: 120px;
    border-bottom-right-radius: 120px; */
}



/* 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 {
	bottom: 80px;
    color: #cf151a;
    cursor: pointer;
    display: none;
    font-size: 35px;
    padding: 23px;
    position: fixed;
    right: 30px;
    text-align: center;
    z-index: 999;
}
#dyscrollup-btn:before {
  
}



/*****-----*****-----*****-----*****
    03. Header CSS
*****-----*****-----*****-----*****/
.main-header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
}
.main-header .navbar-brand {
    width: 180px;
}
.main-header .navbar-light .navbar-nav .nav-link {
	padding-right: 10px;
	display: inline;
    color: #000;
    text-transform: uppercase;
    padding: 20px 0;
    margin-left: 20px;
    letter-spacing: 0.5px;
	font-weight:600;
    font-size: 15px;
	padding-right: 5px;
}

.main-header .navbar-light .navbar-nav .nav-link:hover{
	text-decoration:underline;
}

.main-header .navbar-light .navbar-nav .active>.nav-link, 
.main-header .navbar-light .navbar-nav .nav-link.active, 
.main-header .navbar-light .navbar-nav .nav-link.show, 
.main-header .navbar-light .navbar-nav .show>.nav-link {
    color: #cf151a;
}
.main-header .fixed-top {
    -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-header .scrolling-header {
    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);
    -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-header .navbar-light.scrolling-header .navbar-nav .nav-link {
    color: #333333;
}
.main-header .navbar-light.scrolling-header .navbar-nav .active>.nav-link, 
.main-header .navbar-light.scrolling-header .navbar-nav .nav-link.active, 
.main-header .navbar-light.scrolling-header .navbar-nav .nav-link.show, 
.main-header .navbar-light.scrolling-header .navbar-nav .show>.nav-link {
    color: #cf151a;
}
.logo-white {
    display: block;
}
.logo-black {
    display: none;
}
.main-header .navbar-light.scrolling-header .logo-white {
    display: none;
}
.main-header .navbar-light.scrolling-header .logo-black {
    display: block;
}


/* NavBar Fixed CSS */
.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 Header Two */
.main-header-two {
    
}
.main-header-two .fixed-top {
    background: #ffffff;
}
.main-header-two .navbar-light .navbar-nav .nav-link {
    color: #333333;
}
.main-header .navbar-light.scrolling-header .navbar-nav .active>.nav-link, 
.main-header .navbar-light.scrolling-header .navbar-nav .nav-link.active, 
.main-header .navbar-light.scrolling-header .navbar-nav .nav-link.show, 
.main-header .navbar-light.scrolling-header .navbar-nav .show>.nav-link {
    color: #cf151a;
}



/*****-----*****-----*****-----*****
    04. Hero CSS
*****-----*****-----*****-----*****/
.hero-area {
    height: 100vh;
    background: url(../images/bg/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}
.hero-area.over-layer-black:before {
    background: rgba(0,0,0,0.5);
}
.hero-content {
    width: 100%;
    height: 100%;
    display: table;
}
.hero-content-center {
    vertical-align: middle;
    display: table-cell;
}
.mb20 {
    margin-bottom: 20px;
}
.hero-col h5 {
    color: #cf151a;
    letter-spacing: 12px;
    margin-bottom: 20px;
}
.hero-col h2 {
    font-size: 50px;
    color: #f3f3f3;
    margin-bottom: 20px;
}
.hero-col .cd-headline {
    color: #f3f3f3;
    font-size: 18px;
    margin-bottom: 0;
}


/*****-----*****-----*****-----*****
    05. Slider CSS
*****-----*****-----*****-----*****/
.main-slider-area {
    margin-top: 100px;
}
.slide {
  list-style-type: none;
  padding: 0;
}

.slide-item {
  height: 100vh;
}

.slide-item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
}
.item-bg-1 {
    background: url(../images/slider/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.item-bg-2 {
    background: url(../images/slider/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.item-bg-3 {
    background: url(../images/slider/3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.slide-caption {
    width: 100%;
    position: absolute;
    top: 35%;
    padding: 0 100px;
}
.slide-caption-desc {
    font-size: 18px;
    font-style: italic;
    color: #cf151a;
    letter-spacing: 5px;
    margin-bottom: 20px;
}
/*.slide-caption-desc:after{
  content: '';
  width: 100px;
  border-bottom: 2px solid #cf151a;
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
}*/
.slide-caption-title {
  font-size: 40px;
  color: #f1f1f1;
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slide-caption .btn {
    border: 2px solid #cf151a;
    color: #ffffff;
    background: #cf151a;
    padding: 10px 25px;
    border-radius: 0;
}
.slide-caption .btn:hover {
    color: #cf151a;
    background: transparent;
}
.owl-item.active .slide-caption-desc{
  animation: 1s 1s fadeInUp both;
  text-transform: capitalize;
}
.owl-item.active .slide-caption-title{
  animation: 1s 1.5s fadeInUp both;
  letter-spacing: 1px;
}
.owl-item.active .btn {
  animation: 1s 2s flipInX both;
}
.main-slider-area .owl-theme .owl-nav [class*=owl-] {
    border-radius: 0;
    margin: 0;
    padding: 0;
}
.main-slider-area .owl-prev {
    position: absolute;
    top: 55%;
    left: 0;
    background: #551FC0;
    width: 40px;
    height: 40px;
    color: #ffffff;
    border-radius: 0;
}
.main-slider-area .owl-prev i, .main-slider-area .owl-next i {
    font-size: 25px;
    line-height: 42px;
}
.main-slider-area .owl-next {
    position: absolute;
    top: 55%;
    right: 0;
    font-size: 25px;
    background: #551FC0;
    width: 40px;
    height: 40px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}
.main-slider-area .owl-theme .owl-nav [class*='owl-'] {
    background: #cf151a;
    color: #ffffff;
}
/* Slider Two */
.main-slider-area-two {
    
}
.main-slider-area-two .slide-item {
    height: 100vh;
}

.service-col.service-item a{
	color:#d40b12;
}

.service-col.service-item a:hover{
	text-decoration: underline;
    color: #fff;
}



/*****-----*****-----*****-----*****
    06. About CSS
*****-----*****-----*****-----*****/
.about-area {
    padding: 65px 0;
}
.about-col {
    margin-bottom: 50px;
    position: relative;
}
.about-content {
	background: rgba(247, 250, 253, 0.9) none repeat scroll 0 0;
    padding: 30px;
}
.about-content h2 {
    font-size: 36px; 
}
.about-content h2 span {
    color: #cf151a;
}
.about-content .btn-style {
    
    margin-top: 30px;
}


.about-col-left {
    margin-bottom: 50px;
    position: relative;
}
.about-content-left {
    margin-right: 40%;
    padding: 30px;
    position: absolute;
    top: 20px;
    z-index: 1;
    background: rgba(247, 250, 253, 0.9);
}
.about-content-left h2 {
    font-size: 36px; 
}
.about-content-left h2 span {
    color: #cf151a;
}
.about-content-left .btn-style {
    
    margin-top: 30px;
}


/* Modal CSS */
.blocker {
    padding: 20px;
    z-index: 999999;
}
.modal a.close-modal {
    display: none;
}
.modal {
    max-width: 60%;
    border-radius: 0;
    padding: 30px;
}
.my-modal h2 {
    font-size: 24px;
    margin-bottom: 20px; 
}
.my-modal img {
    margin-bottom: 20px;
}
.my-modal p {
    margin-bottom: 20px;
}
.my-close-btn {
    color: #ffffff;
    padding: 8px 20px;
    background: #cf151a;
    text-transform: uppercase;
}
.my-close-btn:hover {
    color: #ffffff;
}





/*****-----*****-----*****-----*****
    07. Service CSS
*****-----*****-----*****-----*****/
.service-area {
    padding: 120px 0 90px;
    background: #F7FAFD;
}
.service-col {
    margin-bottom: 30px;
}
.service-item {
    margin-bottom: 30px;
    background: #ffffff;
	overflow:hidden;
	position:relative;
}
.service-item h3 {
    font-size: 20px;
	color:#cf151a ;   
	margin-top: 10px;
}

.service-item .service-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    background: transparent;
    margin-bottom: 20px;
    border: 2px solid #cf151a;
    -ms-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
    -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;
}
.service-item .service-icon i {
    font-size: 30px;
    color: #cf151a;
    line-height: 70px;
    -ms-transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    transform: skewX(10deg);
}
.service-item:hover .service-icon {
    background: #cf151a;
    -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;
}
.service-item:hover .service-icon i {
    color: #ffffff;
}
.service-inner-area {
    background: #ffffff;
}
.modal.my-service-modal {
    background: #F7FAFD;
}



/*****-----*****-----*****-----*****
    08. Counter CSS
*****-----*****-----*****-----*****/
.counter-area {
    padding: 120px 0 90px;
    background: url(../images/bg/2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.counter-area.over-layer-white:before {
    background: rgba(255,255,255,0.8);
}
.counter-col {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-right: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
}
.bdr-none {
    border: none;
}
.counter-col i {
    color: #cf151a;
    font-size: 50px;
}
.counter-col .counter {
    color: #000000;
    font-size: 30px;
    margin-top: 20px;
}
.counter-col p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    text-transform: uppercase;
}



/*****-----*****-----*****-----*****
    09. Portfolio CSS
*****-----*****-----*****-----*****/
.portfolio-area {
    padding: 120px 0 90px;
}
.portfolio-nav {
    float: none;
    margin-bottom: 30px;
}
.filtr-container {
    
}
.portfolio-nav li {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
    text-transform: uppercase;
    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: #cf151a;
    -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 */
.portfolio-item {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: #000000;
    margin-bottom: 30px;
    border: 1px solid #ffffff;
}
.portfolio-item-info {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    text-align: left;
}
.portfolio-item img {
    display: block;
    position: relative;
    max-width: none;
    width: calc(100% + 60px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
    transition: opacity 0.35s, transform 0.45s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}
.portfolio-item .portfolio-item-info:before {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid #dddddd;
    content: '';
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
    transition: opacity 0.35s, transform 0.45s;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
}
.portfolio-item:hover img {
    opacity: 0.1;
    filter: alpha(opacity=60);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.portfolio-item:hover .portfolio-item-info:before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.portfolio-item-info .item-caption {
    width: 100%;
    padding: 20px 20px 0px 10px;
    color: #ffffff;
    position: absolute;
    bottom: 10%;
    left: 15px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
    transition: opacity 0.35s, transform 0.45s;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
}
.portfolio-item-info .item-caption ul li {
    display: inline-block;
    border-right: 2px solid #ffffff; 
    margin-right: 10px;
}
.portfolio-item-info .item-caption ul li:last-child {
    border-right: none;
}
.portfolio-item:hover .portfolio-item-info .item-caption {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.portfolio-item-info .item-caption p {
    text-transform: capitalize;
    font-style: italic;
    letter-spacing: 1px;
}
.portfolio-item-info .item-caption h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 10px;
}
.portfolio-item-info .item-caption h4 a {
    color: #eeeeee;
    letter-spacing: 1px;
    line-height: 1.3;
}
.portfolio-item-info .item-caption i {
    color: #cf151a;
    font-size: 22px;
    padding-right: 10px;
}


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

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



/*****-----*****-----*****-----*****
    10. Pricing CSS 
*****-----*****-----*****-----*****/
.pricing-area {
    padding: 120px 0;
    background: #F7FAFD;
}
.pricingTable{
    text-align: center;
    background: #fff;
    margin: 0 -15px;
    box-shadow: 0 0 10px #ababab;
    color: #cad0de;
    transform: scale(1);
    transition: all 0.5s ease 0s;
}
.pricingTable:hover{
    transform: scale(1.05);
    z-index: 1;
}
.pricingTable .pricingTable-header{
    padding: 40px 0;
    margin-bottom: 20px;
    background: #f5f5f5;
    border-radius: 0 0 50% 50%;
    transition: all 0.5s ease 0s;
}
.pricingTable:hover .pricingTable-header{
    background: #cf151a;
}
.pricingTable .pricingTable-header i{
    font-size: 50px;
    color: #2d2d2d;
    transition: all 0.5s ease 0s;
}
.pricingTable .price-value{
    font-size: 35px;
    color: #cf151a;
    margin-top: 10px;
    transition: all 0.5s ease 0s;
}
.pricingTable .month{
    display: block;
    font-size: 14px;
    color: #808080;
    text-transform: capitalize;
}
.pricingTable:hover .pricingTable-header i,
.pricingTable:hover .price-value,
.pricingTable:hover .month{
    color: #fff;
}
.pricingTable .heading{
    font-size: 24px;
    color: #cf151a;
    margin-bottom: 20px;
}
.pricingTable .pricing-content ul{
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.pricingTable .pricing-content ul li{
    line-height: 30px;
    color: #a7a8aa;
}
.pricing-btn {
    padding: 20px 0;
    background: #f5f5f5;
}

/*****-----*****-----*****-----*****
    11. Team CSS 
*****-----*****-----*****-----*****/
.team-area {
    padding: 120px 0 110px;
}
.our-team{
    overflow: hidden;
    position: relative;
}
.our-team:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(146, 191, 32, 0.6);
    position: absolute;
    top: -100%;
    left: 0;
    opacity: 0;
    transition: all 0.8s ease 0s;
}
.our-team:hover:after{
    top: 0;
    opacity: 1;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .social{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    top: -50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%) rotate(-12deg);
    transition: all 0.8s ease 0s;
}
.our-team:hover .social{ top: 60%; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #ffffff;
    font-size: 18px;
    color: #cf151a;
    margin: 0 5px;
}
.our-team .team-content{
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border-bottom: 3px solid #cf151a;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.our-team:hover .team-content{ background: #f9f9f9; }
.our-team .team-content:before{
    content: "";
    width: 100%;
    border-right: 420px solid #fff;
    border-top: 60px solid transparent;
    position: absolute;
    top: -60px;
    left: 0;
}
.our-team:hover .team-content:before{ border-right-color: #f9f9f9; }
.our-team .team-content:after{
    content: "";
    width: 3px;
    height: 50%;
    background: #cf151a;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.our-team .title{
    font-size: 18px;
    color: #333;
    margin: 0;
}
.our-team .post{
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #888;
    margin-top: 3px;
}
.team-area .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    top: 42%;
    z-index: 0;
    background: rgba(0,0,0,0.7);
    padding: 2px 15px;
    border-radius: 0;
}
.team-area .owl-carousel .owl-nav .owl-prev i {
    font-size: 28px;
}
.team-area .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: 42%;
    z-index: 0;
    background: rgba(0,0,0,0.7);
    padding: 2px 15px;
    border-radius: 0;
}
.team-area .owl-carousel .owl-nav .owl-next i {
    font-size: 28px;
}


/*****-----*****-----*****-----*****
    12. Testimonial CSS 
*****-----*****-----*****-----*****/
.testimonial-area {
    padding: 120px 0 90px;
    background-repeat: repeat;
    position: relative;
}
.testimonial-col, .faq-col {
    margin-bottom: 30px;
}
.testimonial-area .my-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin-bottom: 40px;
}
.testimonial-area .my-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    z-index: 0;
    width: 50px;
    height: 2px;
    background: #cf151a;
}
.testimonial{
    padding-top: 15px;
    padding-left: 20px;
    margin: 0;
}
.testimonial .pic{
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    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 #cf151a;
    border-left: 3px solid #cf151a;
}
.testimonial .pic:after{
    top: -10%;
    right: -10%;
    border-top: 3px solid #cf151a;
    border-right: 3px solid #cf151a;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .testimonial-content{
    display: table;
    position: relative;
    margin-left: -15px;
}
.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: #cf151a;
}
.testimonial .post{
    font-size: 14px;
    color: #333;
    border-left: 1px solid rgba(0, 0, 0, 0.6);
    margin-left: 5px;
    padding-left: 5px;
}
.testimonial .description{
    color: #333;
    margin-top: 12px;
    font-style: italic;
}
.testimonial-area .owl-theme .owl-controls .owl-page.active span,
.testimonial-area .owl-theme .owl-controls.clickable .owl-page:hover span{
    background-color: #cf151a;
    border-radius: 0;
}
.testimonial-area .owl-theme .owl-dots .owl-dot.active span, 
.testimonial-area .owl-theme .owl-dots .owl-dot:hover span {
    background: #cf151a;
    border-radius: 0;
}
.testimonial-area .owl-theme .owl-dots, .testimonial-area .owl-theme .owl-nav {
    text-align: left;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
}


/* Accordion CSS*/
#accordion .card{
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 6px;
}
.card-header:first-child {
    border-radius: 0;
}
#accordion .card-header {
    padding: 0;
}
#accordion .card-header button {
    width: 100%;
    text-align: left;
    display: block;
    padding: 20px 30px;
    background: #F7FAFD;
    font-size: 15px;
    font-weight: bold;
    color: #424242;
    text-transform: uppercase;
    border: 1px solid #eaeaea;
    border-left: 3px solid #cf151a;
    position: relative;
    border-radius: 0;
    transition: all 0.3s ease 0s;
}
#accordion .card-header button:before,
#accordion .card-header button:before{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    color: #333333;
    line-height: 18px;
    position: absolute;
    top: 23px;
    right: 25px;
}
#accordion .card-header button.collapsed:before{
    content: "\f106";
}
#accordion .card-header button:hover,
#accordion .card-header button:hover,
#accordion .card-header button:before,
#accordion .card-header button:focus,
#accordion .card-header button:hover:before{
    color: #cf151a;
    text-decoration: none;
}
#accordion .card-body{
    background: #f5f5f5;
    padding: 15px 27px;
    color: #424242;
    line-height: 23px;
    border: 1px solid #eaeaea;
    border-top: none;
    border-left: 3px solid #eaeaea;
}
#accordion .card-body p{
    margin-bottom: 0;
}




/*****-----*****-----*****-----*****
    13. Blog CSS 
*****-----*****-----*****-----*****/
.blog-area {
    padding: 120px 0 120px;
}
.blog-item {
    padding: 50px 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    color: #ffffff;
}
.blog-bg-1 {
    background: url(../images/blog/1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-bg-2 {
    background: url(../images/blog/2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-bg-3 {
    background: url(../images/blog/3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-bg-4 {
    background: url(../images/blog/4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-bg-5 {
    background: url(../images/blog/5.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-bg-6 {
    background: url(../images/blog/6.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.blog-item h5 {
    color: #cf151a;
}
.blog-item h3 {
    font-size: 24px;
}
.blog-item h3 a {
    color: #dddddd;
    text-transform: uppercase;
}
.blog-item p {
    color: #dddddd;
}
.blog-item a {
    color: #cf151a;
}
.blog-area .owl-theme .owl-nav [class*=owl-] {
    background: #cf151a;
    padding: 4px 20px;
}   



/* Blog Single CSS Start */
.blog-single-field {
    padding: 120px 0 70px;
}
.blog-single-col {
    margin-bottom: 50px;
}
.blog-infobar {
    padding: 10px 20px;
    background: #f5f5f5;
}
.blog-infobar li {
    display: inline-block;
    margin-right: 10px;
}
.blog-infobar li i {
    margin-right: 5px;
    color: #cf151a;
}
.blog-infobar li a {
    color: #424242;
}
.blog-single-col h2 {
    margin: 20px 0;
    font-size: 28px;
}
.blog-text-box {
    background: #f5f5f5;
    padding: 20px;
    margin-top: 30px;
}
.blog-text-box p {
    font-weight: bold;
}
.mt30 {
    margin-top: 30px;
}
.commment-field {
    margin-top: 50px;
}
.commment-field h4 {
    font-size: 22px;
    margin-bottom: 30px;
}
.commment-field h4 a {
    color: #cf151a;
}
.blog-commment-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}
.blog-commment-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.blog-commment-item h4 {
    margin-bottom: 10px;
}
.blog-commment-item i {
    color: #cf151a;
}
.middele-comment {
    margin-left: 60px;
}
.form-field {
    margin-top: 50px;
}
textarea {
    height: 100% !important;
}

/* Sidebar CSS */
.sidebar-col {
    margin-bottom: 50px;
}
.sidebar-search-box {
    margin-bottom: 50px;
}
.sidebar-search-box .input-group .form-control {
    height: 45px;
    border-color: #cf151a;
}
.sidebar-search-box .input-group-btn .btn {
    height: 45px;
    width: 60px;
    background: #cf151a;
    border-radius: 0;
}
.sidebar-search-box .input-group-btn .btn i {
    font-size: 22px;
    color: #ffffff;
}
.categories {
    margin-bottom: 40px;
}
.sidebar-title h3 {
    font-size: 24px;
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 5px;
    margin-bottom: 30px;
}
.categories ul li {
    margin-bottom: 10px;
}
.categories ul li a {
    color: #111111;
    text-transform: capitalize;
}
.categories ul li a:hover {
    color: #cf151a;
}
.sidebar-post {
    margin-bottom: 50px;
}
.sidebar-post ul li {
    min-height: 80px;
    position: relative;
    padding-left: 90px;
    margin-bottom: 20px;
}
.sidebar-post ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
}
.sidebar-post ul li h4 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4;
}
.sidebar-post ul li h4 a {
    color: #2d2d2d;
}
.sidebar-post ul li p {
    color: #767676;
}
.sidebar-tags {
    margin-bottom: 50px;
}
.sidebar-tags ul li {
    border: 1px solid #dddddd;
    margin-bottom: 20px;
    margin-right: 5px;
    display: inline-block;
}
.sidebar-tags ul li a {
    padding: 10px 20px;
    color: #ffffff;
    background: #111111;
    text-transform: uppercase;
}
.sidebar-tags ul li a:hover {
    background: #cf151a;
    -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;
}
  





/*****-----*****-----*****-----*****
    14. Subscribe CSS 
*****-----*****-----*****-----*****/
.subscribe-area {
    padding: 0 0 120px;
    background: url(../images/bg/4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.subscribe-box {
    padding: 50px 30px;
    background: rgba(0,0,0,0.6);
    margin-top: -100px;
}
.subscribe-box h2 {
    font-size: 60px;
    color: #cf151a;
    margin-bottom: 30px;
}
.subscribe-box h5 {
    color: #f1f1f1;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.subscribe-box .form-control {
    height: 50px;
    background: rgba(255,255,255,0.4);
    border: none; 
    color: #ffffff;
}
.subscribe-box .input-group .btn {
    width: 130px;
    height: 50px;
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    background: #cf151a;
    -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;
}
.subscribe-box .input-group .btn:hover {
    background: #ffffff;
    color: #cf151a;
    -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;
}





/*****-----*****-----*****-----*****
    15. Brand CSS 
*****-----*****-----*****-----*****/
.brand-area {
    padding: 80px 0 70px;
    background: #F7FAFD;
}



/*****-----*****-----*****-----*****
    16. Contact CSS
*****-----*****-----*****-----*****/
.contact-area {
    overflow: hidden;
    padding: 120px 0 90px;
}
.contact-title {
    position: relative;
}
.contact-title h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    z-index: 2;
}
.contact-title h2 span {
    color: #cf151a;
}
.contact-title p {
    margin-bottom: 30px;
}
.contact-info-box, .my-form-col {
    margin-bottom: 30px;
}
.contact-info-box {
    background: url(../images/bg/6.png);
    background-color: #888888;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 20px 20px 0 20px;
}
.contact-info-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}
.contact-box {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    border-top: 1px solid #c3c2c2;
    border-bottom: 1px solid #c3c2c2;
}
.contact-box i {
    font-size: 20px;
    color: #cf151a;
    position: absolute;
    left: 0;
    top: 15px;
}
.contact-box address {
    margin-bottom: 0;
}
.contact-area form {
}
.contact-area form .form-control {
    height: 45px;
    border: none;
    border-radius: 0;
    background: #F7FAFD;
    color: #676767;
}
.contact-area form .textarea-hight-full {
    height: 100%;
}
.contact-area form .btn-style {
    margin-top: 70px;
}



/*****-----*****-----*****-----*****
    17. Footer CSS
*****-----*****-----*****-----*****/
.main-footer {
    background: #111111;
    padding: 80px 0 40px;
    background: url(../images/bg/footer.jpg);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
	margin-top:20px;
}
.main-footer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute; 
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0.8);
}
.footer-col {
    margin-bottom: 30px;
}
.mb0 {
    margin-bottom: 0 !important;   
}
.footer-col .footer-logo {
    margin-bottom: 30px;
    width: 200px;
    height: auto;
}
.footer-col h3 {
    font-size: 20px;
    color: #cf151a;
    margin-bottom: 40px;
}
.footer-col2 h3 {
    color: #cf151a;
    font-size: 20px;
    margin-bottom: 40px;
}
.footer-col2 ul li {
    float: left;
    margin-bottom: 15px;
    position: relative;
    width: 50%;
}
.footer-col2 ul li a{
	color:#000;
}
.footer-col h3 span {
    color: #cf151a;
}
.footer-col p {
    color: #000;
}
.address-col ul {
    margin-top: 20px;
}
.address-col ul li {
    border-bottom: none;
    color: #000;
}
.address-col ul li i {
    width: 25px;
}

.footer-col .top-para {
    margin-bottom: 20px;
}
.footer-col ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
}
.footer-col ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.footer-col ul li a {
    display: block;
    color: #333;
    -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;
}
.footer-col ul li a:hover {
    color: #cf151a;
    -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;
}
.post-box {
    min-height: 70px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 85px;
}
.footer-col .post-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
}
.post-box p {
    z-index: 1;
    line-height: 22px;
}
.post-box p a {
    color: #dddddd;
}
.post-box p a:hover {
    color: #cf151a;
}
.footer-col.footer-tag ul li {
    border: 1px solid #dddddd;
    display: inline-block;
    margin: 0 10px 15px 0;
    padding-bottom: 0;
    -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;
}
.footer-col.footer-tag ul li:hover {
    border-color: #cf151a;
    -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;
}
.footer-col.footer-tag ul li:last-child {
    margin-bottom: 0;
}
.footer-col.footer-tag ul li a {
    color: #dddddd;
    padding: 5px 20px;
    -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;
}
.footer-col.footer-tag ul li a:hover {
    color: #ffffff;
    background: #cf151a;
    -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;
}



/* Copyright CSS */
.copyright-bar {
    padding: 20px 0;
    background: #313131;
}
.footer-sociai-group {
    margin-bottom: 10px;
}
.copyright-col p {
    color: #bdbcbc;
}
.copyright-col p a {
    color: #cf151a;
}
.copyright-col ul li {
    border: 1px solid #dddddd;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
    -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-col ul li:hover {
    border-color: #cf151a;
    -ms-transform: rotate(360deg); 
    -webkit-transform: rotate(360deg); 
    transform: rotate(360deg);
    -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-col ul li a {
    font-size: 15px;
    line-height: 30px;
    color: #dddddd;
    -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-col ul li:hover a {
    color: #cf151a;
    -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;
}




/*****-----*****-----*****-----*****
    18. Inner Page heading CSS
*****-----*****-----*****-----*****/
.page-heading-area {
    padding: 180px 0 180px;
    background: url(../images/bg/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.page-heading-area.over-layer-black:before {
    background: rgba(0,0,0,0.5);
}
.page-heading-col {
    text-align: center;
}
.page-heading-col h2 {
    color: #cf151a;
}
.page-heading-col p {
    color: #a0a0a0;
}
.page-heading-col p a {
    color: #ffffff;
}
.page-heading-col p a:hover {
    color: #cf151a;
}



/*****-----*****-----*****-----*****
    22. Demo List Page CSS 
*****-----*****-----*****-----*****/
.main-demo-heading {
    padding: 120px 0;
    background: #f3f3f3;
    background-image: url(../images/bg/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main-demo-heading.over-layer-black:before {
    background: rgba(0,0,0,0.5);
}
.main-demo-heading h1 {
    color: #cf151a;
    font-size: 50px;
}
.main-demo-heading h2 {
    color: #f1f1f1;
    letter-spacing: 1px;
    margin-bottom: 50px;
}
.buy-btn {
    background: #cf151a;
    color: #ffffff;
    border: 1px solid #cf151a;
    padding: 10px 30px;
    border-radius: 0;
    text-transform: uppercase;
}
.buy-btn:hover {
    background: #cf151a;
    color: #ffffff;
    border-color: #cf151a;
}
.demo-list-page {
    padding: 100px 0 40px;
    text-align: center;
}
.demo-list-page-col {
    margin-bottom: 80px;
}
.demo-list-page-col h4 {
    font-size: 16px;
    background: #f5f5f5;
    padding: 15px 10px;
    margin-bottom: 10px;
}
.demo-list-page h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 60px;
}
.demo-list-page h3 a {
    color: #111111;
}
.demo-list-page h3 a:hover {
    color: #cf151a;
}
.demo-list-page h5 {
    margin-bottom: 80px;
    color: #cf151a;
    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;
    -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:hover {
    color: #cf151a;
    -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;
}
.more-demo-link p {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddddd;
    display: inline-block;
}
.demo-list-page .coming-soon-text {
    font-size: 40px;
    background: #f5f5f5;
    padding: 80px 20px;
}

.nav-item .dropdown-menu.show a{
	color: #000;
    margin-left: 15px;
}

.service-col.service-item .img{
}
/*** Contact for submission message ***/
.validate-contact-form label.error {
  color: red;
  font-size: 0.93333rem;
  font-weight: normal;
  margin: 5px 0 0 0; }

.validate-contact-form #loader {
  display: none; }

.validate-contact-form #success,
.validate-contact-form #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none; }
  @media (max-width: 767px) {
    .validate-contact-form #success,
    .validate-contact-form #error {
      font-size: 15px; } }

.validate-contact-form #success {
  background-color: green;
  margin-bottom: 5px; }

.validate-contact-form #error {
  background-color: red; }

.contact-area ul li{
	list-style-type: unset;
	margin-left:15px;
}

.page-titlespc::before {
    background-color: rgba(255, 255, 255, 0.8);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.page-titlespc .container {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-titlespc {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
    width: 100%;
}

.contact-area .copyright-col ul li a{
	color: #cf151a;
}

#navbarSupportedContent li {
    position: relative;
    z-index: 11;
}

#navbarSupportedContent > ul .sub-menu {
    background-color: #cf151a ;
    border-top: 2px solid #012f5d;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 130%;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 180px;
    z-index: 10;
}

#navbarSupportedContent > ul .sub-menu li{
	   color: #fff;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-top: 10px;
}

#navbarSupportedContent > ul .sub-menu li a{
	color:#fff;
}

#navbarSupportedContent > ul .sub-menu li a:hover{
	color:#fff;
	text-decoration: underline;
}

#navbarSupportedContent > ul > li:hover > .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.about-col h2 span{
	color: #cf151a;
}

.success-error-message{
}

.submit-btn{
}

.txtoverlay {
  cursor: pointer;
  position: absolute; 
  top: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #fff; 
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: left;
  height: 100%;    
  padding: 40px;
}

.txtoverlay:hover  {
  opacity: 1;
}
.txtoverlay a{
	color:#FFF !important;
}
.txtoverlay a:hover{
	text-decoration:underline !important;
}

.txtoverlaycol2 {
  cursor: pointer;
  position: absolute; 
  top: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #fff; 
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  text-align: left;
  height: 100%;    
}

.txtoverlaycol2:hover  {
  opacity: 1;
}
.txtoverlaycol2 a{
	color:#FFF !important;
}
.txtoverlaycol2 a:hover{
	text-decoration:underline !important;
}

.killcol .service-col.service-item:hover img{
  transition: .5s ease;
  transform: rotate(-5deg) scale(1.2);
}

.killcol .service-col.service-item  img{
  transition: .5s ease;
  transform: rotate(0deg) scale(1);
}

.txtoverlaycol2 h3{
	position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

@media (max-width: 767px) {
	#navbarSupportedContent > ul .sub-menu li a{
	color:#000;
	}
	
	#navbarSupportedContent > ul .sub-menu li a:hover{
		color:#000;
		text-decoration: underline;
	}

	#navbarSupportedContent > ul .sub-menu {
	background-color: inherit;
    border-top: 2px solid #012f5d;
    left: 0;
    opacity: 0;
    position: unset;
    top: 130%;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 10;
	}
	#navbarSupportedContent > ul > li > .sub-menu {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}
	.main-header .navbar-light .navbar-nav .nav-link {
		color: #333333;
		margin-left: 5px;
		padding-right: 10px !important;
		display: inline-block;
	}
	.about-area {
		padding: 20px 0;
	}
	.spacingheader {
		padding-top: 100px;
	}
	.about-content h2 {
		font-size: 28px;
	}
}

.service-col.service-item:hover img{
	opacity:0.8;
}