﻿@charset "utf-8";

/*****=====*****=====*****=====*****=====
    01. IMPORTED STYLE CSS
=====*****=====*****=====*****=====*****/

/* 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.min1.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;
}
.h3, h3 {
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
}
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: auto;
    max-width: 100%;
    height: auto;
}
.btn {
    font-size: 14px;
}
.btn span{
    font-size: 16px;
}

/* 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;
}

/* Preloader CSS */
.preloader {
    position: fixed; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: 100%; 
    z-index: 999999; 
    background-color: #0d0d0d; 
    background-position: center center; 
    background-repeat: no-repeat; 
    background-image: url('../images/yukle.gif');
}

/* Scrollup CSS */
#scrollUp {
    bottom: 20px;
    right: 20px;
    padding: 5px 10px;
    background-color: #ee2c3c;
    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;
}
.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span {

}


.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.png");
    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;
    }
}

/*--------------------------------
    03. Header CSS Start
----------------------------------*/

/* Header Topbar CSS */
.main-navbar {
    
}
.topbar-area {
    padding: 0;
    background: #222;
    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: #ee2c3c;
}
.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;
}
,.header-navbar .navbar-brand {
    padding: 0;
    margin-top: 8px;
}
.header-navbar .navbar-brand img {
    width: 209px;
    height: auto;
}
.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: #ee2c3c;
    background-color: transparent;
}
.header-navbar .navbar-default .navbar-nav>li>a {
    color: #333333;
    text-transform: uppercase;
    padding: 30px 0;
    margin-left: 10px;
}
.header-navbar .navbar-default .navbar-nav>li>a:focus,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    background: transparent;
}
.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;
    margin-left: 30px;
}
.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: #ee2c3c;
}
.header-navbar .navbar-default .navbar-nav>.open>a,
.header-navbar .navbar-default .navbar-nav>.open>a:focus,
.header-navbar .navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
}
/* NavBar Fixed CSS */
.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 {
   
}
.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
----------------------------------*/
.main-slider-area {
}
.slide {
  list-style-type: none;
  padding: 0;
}

.slide__item {
  height: 80vh;
}

.slide__item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.item-bg {
    background-repeat: no-repeat;
    background-size: cover;
    height: 415px;
}
.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-'] {
    background: #ee2c3c;
    color: #ffffff;
}

/* Slider Two */
.main-slider-area-two {
    
}
.main-slider-area-two .slide__item {
    height: 100vh;
}
.main-slider-area-two  .slide-caption {
    top: 54%;
}



/*--------------------------------
    05. Banner CSS Start
----------------------------------*/
.banner-area {
    background: url(../images/bg/3.jpg);
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100vh;
    text-align: center;
}
.banner-area.overlay-black:before {
    background: rgba(0, 0, 0, 0.6);
}
.banner-box {
    padding: 300px 0 100px 0;
    text-align: center;
}
.banner-box h2 {
    color: #ffffff;
    font-size: 42px;
}
.banner-box h2 span {
    color: #ee2c3c;
}
.banner-box h3 {
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #ffffff;
}



/*--------------------------------
    06. Video Banner CSS Start
----------------------------------*/
.video-banner-area {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: center;
}
#video-bg {
    background: transparent;
    text-align: center;
    z-index: -1;
}
#video-bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}
.video-banner-content {
    position: absolute;
    top: 50%; 
    left: 0;
    right: 0;
    z-index: 111; 
    text-align: center;
}
.video-banner-content h2 {
    color: #ffffff;
    font-size: 42px;
}
.video-banner-content h2 span {
    color: #ee2c3c;
}
.video-banner-content h3 {
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #ffffff;
}


/*--------------------------------
    07. About CSS Start
----------------------------------*/
.about-area {
    padding: 30px 0;
    overflow-x: hidden;
}
.about-col, .about-col-img {
    margin-bottom: 30px;
}
.about-col h3 {
    font-size: 28px;
}
.about-col h3 span {
    color: #ee2c3c;
}
.about-col h5 {
    font-style: italic;
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}
.about-col p:last-child {
    margin-top: 20px;
}
.about-col-img {
    position: relative;
}
.about-col-img img {
    width: 90%;
    float: right;
}
.about-col .btn-default.my-btn {
    margin-top: 20px;
}
.video-layer {
    position: absolute;
    left: 30px;
    top: 46%;
    z-index: 0;
    width: 90%;
    height: 100%;
    margin-top: -30%; 
    border: 5px solid rgba(238,44,60, 0.7);
}

.video-layer i {
    position: absolute;
    left: 45%;
    top: 35%;
    z-index: 1;
    color: #ffffff;
    font-size: 60px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    height: 80px;
    background: rgba(238,44,60, 0.7);
    opacity: 0;
    -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;
}

.video-layer:hover i {
    opacity: 1;
    -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;
}
/* About Two CSS Start */
.about-area-two {
    padding: 100px 0 70px;
}
.about-col-two {
    margin-bottom: 30px;
}
.about-col-two p {
    margin-bottom: 20px;
}
.about-col-two p:last-child {
    margin-bottom: 0;
}
/* About Three CSS Start */
.about-area-three {
    padding: 0 0 70px;
}
.about-col-three {
    margin-bottom: 30px;
}
.about-col-three p {
    margin-bottom: 20px;
}
.about-col-three p:last-child {
    margin-bottom: 0;
}

/* About four CSS Start */
.about-area-four {
    padding: 0 0 70px;
}
.about-col-four {
    margin-bottom: 30px;
}
.about-col-four p {
    margin-bottom: 20px;
}
.about-col-four p:last-child {
    margin-bottom: 0;
}
.call-to-action .container-fluid {
    padding: 0;
}
.call-to-action-corner {
    position: relative; 

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.call-to-action-corner:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom:0;
    left: 0;
    content: '';
    background: rgba(238,44,60, 0.95);
}
.call-to-action-center {
    position: relative;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.call-to-action-center:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    background: rgba(214,10,39,.9);
}

.single-call-to-action {
    position: relative;
    text-align: center;
    min-height: 250px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-call-to-action .icon-box,
.single-call-to-action .content-box {
    display: inline-block;
    vertical-align: top;
}
.single-call-to-action .icon-box {
    width: 50px;
    position: relative;
    bottom: 15px;
}
.single-call-to-action .icon-box i.flaticon-clock {
    bottom: 20px;
    position: relative;
}
.single-call-to-action .icon-box i.flaticon-medical {
    position: relative;
    bottom: 25px;
}
.single-call-to-action .icon-box i.flaticon-coins {
    position: relative;
    bottom: 15px;
}
.single-call-to-action .icon-box i:before {
    font-size: 50px;
    color: #fff;
}
.single-call-to-action .content-box {
    width: 65%;
    text-align: left;
    padding-left: 15px;
}
.single-call-to-action .content-box h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    font-weight: normal;
    margin: 0;
    margin-bottom: 15px;
}
.single-call-to-action .content-box p {
    font-size: 13px;
    color: #fff;
    line-height: 24px;
}
.single-call-to-action .content-box ul {
    margin: 0;
    padding: 0;
}
.single-call-to-action .content-box ul li {
    list-style: none;
    display: block;
    color: #fff;
    font-size: 13px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.single-call-to-action .content-box .thm-btn.inverse {
    border-color: #fff;
    background-color: transparent;
    padding: 7px 22px;
    color: #fff;
}
.single-call-to-action .content-box .thm-btn.inverse:hover {
    background: #fff;
    color: #186AAB;
}
.call-to-action.boxed .single-call-to-action .content-box {
    width: 70%;
}

/* 8 .single-specialize styles */

.single-specialize {
    padding: 0 60px;
}
.single-specialize:hover .icon-box {
    background: #186AAB;
    border-color: #186AAB;
    color: #fff;
}
.single-specialize .icon-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #F0F0F0;
    line-height: 118px;
    color: #186AAB;
    margin-bottom: 30px;
    transition: all .3s ease;
}
.single-specialize .icon-box i:before {
    font-size: 60px;
}
.single-specialize h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    color: #202A30;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
}
.single-specialize p {
    color: #9C9C9C;
    font-size: 14px;
    line-height: 26px;
    margin: 0;
    margin-bottom: 25px;
}
.single-specialize a.thm-btn {
    font-size: 12px;
    padding: 7px 21px;
}
.call-to-action-center .btn.btn-default.my-btn {
    margin-top: 15px;
}


/*--------------------------------
    08. Services CSS Start
----------------------------------*/
.service-area {
    padding: 35px 0 0;
    background: #f9f9f9;
}
.service-item {
    margin-bottom: 50px;
    text-align: center;
}
.service-item .service-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    background: #ee2c3c;
    margin-bottom: 20px;
    border: 3px solid transparent;
    /*-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: 50px;
    color: #ffffff;
    line-height: 85px;
    /*-ms-transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    transform: skewX(10deg);*/
}
.service-item:hover .service-icon {
    background: transparent;
    border: 3px solid #ee2c3c;
    -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: #ee2c3c;
}
.service-inner-area {
    background: #ffffff;
}


.service-col {
    margin-bottom: 50px;
}
.serviceBox{ margin-top: 10px; }
.serviceBox .title{
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    padding-left: 70px;
    border-bottom: none;
}
.serviceBox .service-content{
    padding: 25px 10px 25px 70px;
    border-top: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-content{
    border-top-color: #ee2c3c;
    border-right-color: #ee2c3c;
}
.serviceBox .service-content:before{
    content: "";
    width: 0;
    height: 1px;
    background: #cecece;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-content:before{
    width: 50%;
    background: #ee2c3c;
}
.serviceBox .description{
    line-height: 25px;
    margin: 0;
}
.serviceBox .service-icon{
    width: 70px;
    height: 70px;
    line-height: 65px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    color: #ee2c3c;
    border: 1px solid #c1c1c1;
    position: absolute;
    top: -30px;
    left: 0;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon{
    border-color: #ee2c3c;
    color: #FFF;
    background: #ee2c3c;
}
.service-content i:before {
    margin-left: 0;
    font-size: 35px;
}



/*--------------------------------
    09. Separator CSS Start
----------------------------------*/
.separator-area {
    padding: 120px 0;
    background: url(../images/bg/1.jpg);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: left;
    background-color: #fcfcfc;
}
.separator-area .separator-col h2 {
    font-size: 40px;
    font-style: italic;
    position: relative;
    margin-bottom: 50px;
}
.separator-area .separator-col h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -15px;
    z-index: 0;
    width: 70px;
    height: 3px;
    background: #ee2c3c;
}
.separator-area .separator-col h2 span {
    color: #ee2c3c;
}
.service-stction-two {

}
.service-stction-two .services-features .back-color {
    background: #ffffff;
}
.service-stction-two .services-features i {
    background: #ee2c3c;
}


/*--------------------------------
    10. Portfolio CSS Start
----------------------------------*/
.portfolio-section {
    padding: 20px 0;
    overflow: hidden;
}
.portfolio-nav {
    float: none;
    text-align: center;
    margin-bottom: 30px;
}
.filtr-container {
    
}
.portfolio-nav li {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
    text-transform: capitalize;
    font-weight: bold;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-nav li:hover {
    color: #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;
}





/*--------------------------------
    11. Counter CSS Start
----------------------------------*/
.counter-area {
    padding: 100px 0 50px;
    background: #f9f9f9;
    background: url(../images/bg/2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.counter-col {
    padding: 30px 10px;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    background: rgba(238,44,60, 0.7);
    /*-ms-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);*/
} 
.counter-col:before {
    width: 30px;
    height: 30px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
}
.counter-col .counter {
    /*-ms-transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    transform: skewX(10deg);*/
}
.counter-col .counter i {
    font-size: 40px;
    color: #ffffff;
    padding-bottom: 10px;
    display: block;
}
.counter-col .counter span {
    color: #ffffff;
    font-size: 20px; 
    line-height: 30px; 
}
.counter-col .counter p {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;  
    text-transform: uppercase;
}




/*--------------------------------
    12. Team CSS Start
----------------------------------*/
.team-area {
    padding: 100px 0 70px;
}
.team-single-col {
    margin-bottom: 30px;
}
.team-img {
    overflow: hidden;
    position: relative;
    overflow: hidden;
}
.team-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(238,44,60, 0.9);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.team-single-col:hover .team-overlay {
    bottom: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.team-overlay .team-content {
    white-space: nowrap; 
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    opacity: 0;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); 
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.team-single-col:hover .team-overlay .team-content {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.team-overlay .team-content h4 {
    font-size: 18px;
}
.team-overlay .team-content h4 a, .team-overlay .team-content p {
    color: #ffffff;
    -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; 
}
.team-overlay .team-content h4 a:hover {
    color: #fff;
    -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; 
}
.team-overlay .team-content ul {
    margin-top: 15px;
}
.team-overlay .team-content ul li {
    display: inline-block;
    margin-right: 2px;
    margin-left: 2px;
}
.team-overlay .team-content ul li i {
    width: 35px;
    height: 35px;
    text-align: center;
    color: #ffffff;
    background: transparent;
    font-size: 18px;
    line-height: 35px;
    border: 1px solid #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -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; 
}
.team-overlay .team-content ul li i:hover {
    color: #333;
    background: 333;
    border-color: #333;
    -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;
}




/*--------------------------------
    13. Testimonial CSS Start
----------------------------------*/
.testimonial-area {
    padding: 100px 0;
    background: #f9f9f9;
}
.testimonial-item{
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
    padding: 30px 30px 30px 130px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
}
.testimonial-item:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 15px solid #ee2c3c;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    transform: rotate(-45deg);
    transform-origin: 80% -30% 0;
}
.testimonial-item .pic{
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 40px;
    left: 20px;
}
.testimonial-item .pic img{
    width: 100%;
    height: auto;
}
.testimonial-item .description{
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px;
}
.testimonial-item .description:before{
    
}

.testimonial-item .title{
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}
.testimonial-item .post{
    display: inline-block;
    font-size: 12px;
    color: #ee2c3c;
}
.owl-theme .owl-controls .owl-page span{
    border: 2px solid #d45113;
    background: #fff; 
    opacity: 1;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page:hover span{
    background: #d45113;
}
.owl-theme .owl-nav {
    margin: 0;
}
.owl-theme .owl-dots .owl-dot span {
    margin-bottom: 0;
}
.bg-white {
    background: #ffffff;
}
.bg-f9 {
    background: #f9f9f9;
}

/* Testimonial two */
.testimonial-area-two {
    padding: 100px 0;
    background: #f9f9f9;
}
.testimonial-area-two .testimonial-carousel-three {
    padding: 0;
}




/*--------------------------------
    14. Blog CSS Start
----------------------------------*/
.blog-area {
    padding: 100px 0 70px;
}
.blog-col {
    margin-bottom: 30px;
    background: #f9f9f9;
}
.blog-content {
    padding: 20px 15px;
}
.blog-img {
    position: relative;
    overflow: hidden;
}
.blog-img img {
    -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;
}
.blog-col:hover .blog-img img {
    -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;
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari */
    transform: scale(1.2); /* Standard syntax */
}
.post-date {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: #ee2c3c;
    text-align: center;
    -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;
}
.blog-col:hover .post-date {

    -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-date h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 0;
}
.blog-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}
.blog-col h4 a {
    color: #111111;
}
.blog-col h4 a:hover {
    color: #ee2c3c;
}
.info-bar {
    margin-bottom: 20px;
}

.info-bar ul li {
    color: #ee2c3c;
    margin-right: 12px;
    display: inline-block;
}
.info-bar ul li i {
    margin-right: 5px;
    color: #333;
}

.info-bar ul li a {
    color: #333;
}

.blog-col .embed-responsive {
    margin-bottom: 20px;
}
.blog-col p {
    margin-bottom: 20px;
}

/* Blog Full WD CSS Start */
.blog-full-wd {
    padding: 100px 0;
}
.blog-full-col {
    margin-bottom: 50px;
}
.blog-full-img {
    position: relative;
    margin-bottom: 30px;
}
.date-over-img {
    position: absolute;
    left: 20px;
    top: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    -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;
}
.date-over-img h3 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 18px;
}
.blog-full-col:hover .date-over-img {
    left: 30px;
    top: 30px;
    -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;
}
.blog-full-col h2 {
    margin-bottom: 20px;
}
.blog-full-col h2 a {
    color: #333333;
}
.blog-full-wd-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ee2c3c;
    display: inline-block;
    padding: 10px 20px;
}
.right-angle {
    position: absolute;
    right: -40px;
    top: 0;
    z-index: 0;
    border-right: 40px solid transparent;
    border-bottom: 46px solid #ee2c3c;
}
.blog-full-wd-bar ul li {
    display: inline-block;
    margin-right: 20px;
}
.blog-full-wd-bar ul li i {
    margin-right: 5px;
    color: #ffffff;
}
.blog-full-wd-bar ul li a {
    color: #ffffff;
}
.m-none {
    margin: 0 !important;
}

/* Sidebar CSS */
.blog-sidebar-section {
    padding: 100px 0 70px;
}
.sidebar-col {
    margin-bottom: 30px;
}
.sidebar-search-box {
    margin-bottom: 50px;
}
.sidebar-search-box .input-group .form-control {
    height: 45px;
    border-color: #ee2c3c;
}
.sidebar-search-box .input-group-btn .btn {
    height: 45px;
    width: 60px;
    background: #ee2c3c;
}
.sidebar-search-box .input-group-btn .btn i {
    font-size: 22px;
    color: #ffffff;
}
.categories {
    margin-bottom: 50px;
}
.sidebar-title h3 {
    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: #ee2c3c;
}
.sidebar-post {
    margin-bottom: 100px;
}
.sidebar-post ul li {
    position: relative;
    padding-left: 90px;
    margin-bottom: 40px;
}
.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: 16px;
    line-height: 24px;
}
.sidebar-post ul li h4 a {
    color: #ee2c3c;
}
.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: #ee2c3c;
    -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;
}
.sidebar-video {

}

/* Blog Details CSS Start */
.blog-details {
    padding: 100px 0 100px;
}
.blog-details-col {
    margin-bottom: 30px;
}
.blog-details-col .blog-title {
    margin-top: 30px;
}
.hilight-box {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: #f3f3f3;
}
.hilight-box p {
    text-transform: uppercase;
    font-style: italic;
}
.comment-field {
    margin-top: 30px;
}
.comment-field h3 {
    margin-bottom: 20px;
}
.comment-field h3 a {
    font-size: 18px;
    color: #ee2c3c;
}
.comment-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}
.comment-item img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
}
.comment-item-right {
    margin-left: 50px;
}
.treatment-middle-box {
    padding: 30px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #f5f5f5;
}
.treatment-middle-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}



/*--------------------------------
    15. Client CSS Start
----------------------------------*/
.client-area {
    padding: 50px 0;
    background: #f9f9f9;
}


/*--------------------------------
    16. Defult Page Title CSS Start
----------------------------------*/
.defult-page-title {
    padding: 80px 0 80px;
    text-align: center;
    background: url(../images/bg/4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.page-title-box {
    text-align: center;
    background: rgba(238,44,60, 0.7);
    padding: 50px 20px; 
}

.page-title-box h2 {
    font-size: 36px;
    color: #ffffff;
    position: relative;
    margin-bottom: 30px;
}
.page-title-box h2 span {
    color: #fff;
}
.page-title-box h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 40px;
    height: 3px;
    margin-left: -20px;
    background: #333;
}
.page-title-box p {
    color: #ffffff;
    text-transform: uppercase;
}
.page-title-box p a {
    color: #ffffff;
}
.page-title-box p a:hover {
    color: #eeeeee;
}
.page-title-box img {
    width: 400px;
    height: auto;
    float: right;
}


/*--------------------------------
    17. Account CSS Start
----------------------------------*/
.account-area {
    padding: 100px 0;
}
.account-area .tab-content {
    padding: 20px;
    border: 1px solid #dddddd;
    border-top: none;
}
.nav-tabs .nav-item {
    float:none;
    display:block;
}
.nav-link {
    text-align:center;
}
.account-area .nav-tabs .nav-link.active {
    border-radius: 0;
}
.account-area .nav-tabs .nav-link {
    color: #FFB606;
}
.account-area .form-check {
    margin-bottom: 20px;
}






/*--------------------------------
    18. FAQ CSS Start
----------------------------------*/
.faq-area {
    padding: 100px 0;
}
.panel-heading .accordion-toggle:after {
    content: "\f106";
    font-family: FontAwesome;
    float: right;
    font-size: 20px;
    color: #ffffff;
}
.panel-heading .accordion-toggle.collapsed:after {
    content: "\f107";
}
.faq-col h2 {
    margin-bottom: 30px;
}
.faq-col .panel-title {
    font-size: 16px;
    color: #ffffff;
}
.panel-default>.panel-heading {
    background: #ee2c3c;
}


/*--------------------------------
    19. Contact CSS Start
----------------------------------*/
.pricing-table-area {
    padding: 100px 0 50px;
}
.pricing-table-area .pricing-item {
    margin-bottom: 50px;
}
.pricing-table-area .pricing-item:hover {
    background: #ee2c3c;
}
.pricing-table-area .pricing-item:hover .common-btn {
    border-color: #ee2c3c;
    color: #ee2c3c;
}
.pricing-table-area .pricing-price {
    color: #ee2c3c;
}
.pricing-table-area .common-btn {
    background: #ee2c3c;
    border-color: #ee2c3c;
}

/*--------------------------------
    20. Error CSS Start
----------------------------------*/
.error-area {
    padding: 100px 0;
    background: #ee2c3c;
    height: 100vh;
}
.error-col {
    margin-bottom: 30px;
    text-align: center;
}
.error-col h1 {
    font-size: 36px;
    margin-bottom: 50px;
}
.error-col h1 span {
    font-size: 60px;
    color: #ffffff;
}
.error-col img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.error-col h4 {
    margin-top: 80px;
    margin-bottom: 0;
}
.error-col h4 a {
    color: #ffffff;
}
.error-col h4 a:hover {
    color: #111111;
    text-decoration: underline;
}





/*--------------------------------
    21. Contact CSS Start
----------------------------------*/
.contact-area {
    padding: 100px 0 70px;
}
.contact-col {
    margin-bottom: 30px;
    text-align: center;
}
.contact-infobox {
    border: 1px solid #dcdcdc;
    padding: 50px 50px;
}
.contact-infobox i {
    width: 80px;
    height: 80px;
    border: 3px solid #ee2c3c;
    color: #ee2c3c;
    text-align: center;
    font-size: 30px;
    line-height: 75px;
    margin-bottom: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -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; 
}
.contact-infobox:hover i {
    background: #ee2c3c;
    color: #ffffff;
    -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; 
}
.contact-form-row .contact-col {
    margin-bottom: 30px;
}
.contact-form-row .contact-col .form-control {
    height: 45px;
}

.contact-form-row .contact-col .btn {
    margin-bottom: 30px;
}
.contact-textarea {
    text-align: left;
}
.contact-textarea textarea {
    height: 100% !important;
}





/*--------------------------------
    22. Footer CSS Start
----------------------------------*/
.main-footer {
    padding: 50px 0 20px;
    background: #111111;
}
.footer-col {
    margin-bottom: 30px;
}
.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: #ee2c3c;
}
.footer-col h3 span {
    color: #ee2c3c;
    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: #ee2c3c;
}
.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: #ee2c3c;
    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: #ee2c3c;
}
.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: #ee2c3c;
    color: #ffffff;
    border: none;
    height: 45px;
    border-radius: 0;
}
.footer-col.newsletter ul li {
    display: inline-block;
    text-align: center;
    margin-left: 5px;
    background: #ee2c3c;
    -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: #ee2c3c;
    -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: 20px 0;
    background: #000000;
}
.footer-copyright p {
    color: #e2e2e2;
}
.footer-copyright p a {
    color: #ee2c3c;
}




/*--------------------------------
    23. Demo Page CSS Start
----------------------------------*/
.demo-page-header {
    padding: 200px 0;
    background: #111111;
    background-image: url(../images/demo/1.jpg);
    background-position: center;
    background-size: cover;
}
.demo-page-features {
    padding: 100px 0 100px;
    background: #f5f5f5;
}
.demo-page-features h3 {
    margin-bottom: 0;
}
.demo-page-features h2 {
    font-size: 45px;
    display: inline-block;
    border-bottom: 3px solid #ee2c3c;
    margin-bottom: 60px;
    line-height: 1;
    padding-bottom: 10px;
}
.demo-page-features-col {
    margin-bottom: 30px;
    text-align: center;
}
.demo-page-features-col h4 {
    font-size: 18px;
    padding: 20px 20px;
    background: #e4e4e4; 
    border-top: 2px solid #ee2c3c;
}
.demo-content-area {
    padding: 100px 0 100px;
}
.demo-content-col {
    margin-bottom: 50px;
    text-align: center;
}
.demo-content-col h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #111111;
}
.demo-content-col h2 a {
    color: #111111;
}
.header-content {
    text-align: center;
}
.header-content h1 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 28px;
}
.header-content h1 span {
    color: #ee2c3c;
    font-size: 40px;
}
.header-content .btn {
    font-style: 16px;
    background: #ee2c3c;
    border: none;
    padding: 18px 40px;
    color: #ffffff;
    text-transform: uppercase;
}
.demo-content-area {
    padding: 100px 0 100px;
}
.demo-content-col {
    margin-bottom: 80px;
    text-align: center;
}
.demo-content-col h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #111111;
}
.demo-content-col h2 a {
    color: #111111;
}
.demo-content-col ul li {
    margin-bottom: 10px;
    margin-top: 10px;
}
.demo-content-col ul li a {
    font-weight: bold;
    color: #777777;
    text-transform: uppercase;
}
.pages-col {
    text-align: center;
}
.pages-col h1 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #cccccc;
}
.opacity-0 {
    opacity: 0;
}
.iconHolder i {
    display: inline-block;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 78px;
    background: #ee2c3c;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
}
.contactArea{
    padding: 60px 0px;
}
.iconHolder{
    padding: 10px;
}
.borderRight-Grey{
    border-right: 1px solid #ccc;
}
.whatsapp{
    position: fixed;
    left: 30px;
    bottom: 30px;
    transition: all .5s ease-in-out;
    z-index: 999;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    animation: animate 2s linear infinite;
}

.whatsapp a{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgb(0 0 0 / 40%);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 60px;
    color: white;
    background: #35bc48;
}

.whatsapp:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.whatsapp:hover .tooltiptext {
    visibility: visible;
}

.whatsapp .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.despaText{
    font-style: italic;
    font-size:14px;
    padding-bottom: 15px ;
}

.despaText span{
    color:#ee2c3c;
}

.hakkimizdaHolder{
    padding: 60px 0;
}

.urunHolder{
    padding: 60px 0;
}

.urunPd{
    padding: 10px 15px;
}

.urunBaslik{
    font-size: 16px;
    font-weight: 600;
    padding: 5px;
}

h2 span{
    color: #ee2c3c;
}

.urunHolder h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 18%;
    width: 100px;
    height: 2px;
    background: #ee2c3c;
}
.urunHolder a{
color: #000;
}
.urunPd:hover .urunBaslik{
    color: #ee2c3c;
    transition: 0.5;
}
.urunPd a{
    color: #000;
}
.urunInfoHolder{
    padding: 30px 0;
}
.deneme{
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    color: #707070;
}
.accordion{
    border:1px solid #ccc;
    border-radius: 8px;
    padding: 30px;
    font-size: 18px;
    margin-top:60px ;
}

.accordion i{
    margin-right: 5px;
}
.accordion a{
    color: #000;
}



.accordion-list .panel, .collapse-box .panel {
    padding: 0;
    display: none;
    overflow: hidden;
    margin: 5px 0;
    position: relative;
}
.accordion-list .list-group-item>.panel>.inner {
    padding: 10px 0;
}
.tabsAltUrun {
    text-transform: capitalize!important;
}
#tabs2 i {
    padding-right: 5px;
    padding-bottom: 10px;
}
#tabs2 {
    font-size: 15px;
    padding-bottom: 50px;
    padding-top: 75px;
}
.accordion-list .list-group-item, .accordion-list .list-group-item:last-child {
    border: none;
}
.accordion-list .list-group-item {
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    text-align: left;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #dcdcdc;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.accordion-list .list-group-item:first-child a {
    padding-top: 0;
}

.accordion-list .list-group-item>a {
    padding-left: 30px;
    position: relative;
}
.accordion-list .list-group-item>a {
    padding: 10px 15px;
    display: block;
}
a {
    cursor: pointer;
    outline: 0;
}
.accordion-list .list-group-item>a:before, .caret:before, .dropdown-submenu>a:after, .pagination>li>a i:before, .porfolio-bar .icon-box i:before, .side-menu .fa.arrow:before, body .flex-direction-nav a.flex-next:before, body .flex-direction-nav a:before {
    border-top-width: 2px;
    border-top-style: solid;
    border-right-width: 2px;
    border-right-style: solid;
    content: ""!important;
    display: inline-block;
    margin-left: 0.3em;
    position: relative;
    pointer-events: none;
    width: 6px;
    height: 6px;
    -webkit-transition: right .15s;
    transition: right .15s;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-color: rgba(93,93,93,.5);
}
.accordion-list .list-group-item:first-child a:before {
    top: 9px;
}
.accordion-list .list-group-item>a:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: -28px;
    top: 18px;
    position: absolute;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.list-group-item a{
    color: #707070;
}
.kategori h3{
    margin-left: 10px;
    padding-left: 10px;
    font-size: 16px;
    margin-bottom: 0px !important;
  }
  .kategori{
    padding: 10px 0;
    background-color: #efefef;
    margin: 10px 0;
  }
  .kategoriActive h3{
    color: #fff;
  }
  .mr-40{
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .mr-10{
    margin-left:10px;
  }
  .kategori:hover{
    background-color: #ee2c3c;
    transition: 0.5s;
  }
  .kategori:hover h3{
    color: #fff;
    transition: 0.5s;
  }
  button.collapsed i{
    transform: rotate(0deg);
  }
  button i{
    transform: rotate(90deg);
    transition: 0.5s ease-in-out;
  }
  .kategoriActive{
    background-color: #ee2c3c ;
  }

  .kapatButon
  {
      color: #000 !important; position: absolute; width: 100%; padding: 10px; width: 100%; text-align: right; font-size: 3rem; opacity: 1; text-shadow:none; font-weight: 300; top: -1%;
  }
  @media(max-width:480px)
  {
    .kapatButon
    {
      font-size: 1.5rem;
    }
  }
  .modal-content {
      position: relative;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      width: 100%;
      pointer-events: auto;
  
      background-clip: padding-box;
     
      border-radius: .3rem;
      outline: 0
  }
  
  .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1040;
      width: 100vw;
      height: 100vh;
      background-color: #000
  }
  
  .modal-backdrop.fade {
      opacity: .5
  }
  
  .modal-backdrop.show {
      opacity: 0
  }
  
  .modal-header {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: start;
      align-items: flex-start;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 1rem 1rem;
     
      border-top-left-radius: calc(.3rem - 1px);
      border-top-right-radius: calc(.3rem - 1px)
  }
  
  .modal-header .close {
      padding: 1rem 1rem;
      margin: -1rem -1rem -1rem auto
  }
  
  .modal-title {
      margin-bottom: 0;
      line-height: 1.5
  }
  
  .modal-body {
      position: relative;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      padding: 0;
   
  }