/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #333;        
    font-size: 42px;
}

h1 span,
h2 span, 
h3 span, 
h4 span,
h5 span, 
h6 span {
    color: #B30000;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #B30000;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    /*
    max-width: 1366px;
    */
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #B30000;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #B30000;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}

.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } 
.clearfix { display: inline-block; }


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    /*
    height: 90px;
    background: #B30000;
    */
    background: #fff;
}

.top-bar .logo {
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #B30000;
    font-size: 54px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 70px;
}

.top-bar .logo-text h1 {
    margin: auto;
    color: #B30000;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    text-align: left;
}

.top-bar .logo-text-center {
    margin: auto;
    float: left;
}    

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon .whatsapp { 
        padding: 10px;
}
.top-bar .top-bar-icon .whatsapp img {
    width: 40px;height: 40px;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #000;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 10px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #000;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        /*
        padding: 0 60px;
        */
        padding: 0px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    /*
    background: #B30000;
    */
    background: #B30000;    
    transition: .3s;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    /*
    max-width: 1366px;
    */
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    background: #B30000 !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    /*
    padding: 10px 10px 8px 10px;
    padding:10px 24px 8px 25px;
    */
    /*padding:10px 15px 8px 16px;*/
    padding: 10px 18px 8px 18px;
    color: #ffffff;
    width: 17%;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link a:last-child, .navbar-dark .navbar-nav .nav-link a:last-child.active {
    padding: 10px 0px 8px 0px;
}

.navbar-dark .navbar-nav .search-link {
    padding: 10px 0px 8px 18px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    transition: none;
    text-decoration: underline;
    font-weight: 523;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    /*color: #030f27;*/
    background: #B30000;
    /*
    border-color: #B30000;
    */
    text-decoration: underline;
}

@media (min-width: 992px) { /* min-width: 992px */
    .nav-bar {
        /*
        padding: 0 75px;
        */
        padding: 0 42px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 10px;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #030f27;
    background: #B30000;
    border-color: #B30000;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    /*
    background: #B30000;
    */
    background: url(../img/header-img.png) no-repeat;
}

.page-header h2 {
    position: relative;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #ffffff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    /*
    color: #121518;
    */
    color:#ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #3a4660;    
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 42px;
    font-weight: 700;
}

.section-header h2 span {
    color:#B30000;
}


@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 28px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #65615d;
}
    
.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #dab791;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #B30000;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #dab791;
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    /*
    color: #B30000;
    */
    color: #ffffff;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    /*
    color: #B30000;
    */
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    /*
    color: #B30000;
    */
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #030f27;
}

/*---------------------
  Categories
-----------------------*/

.categories__item {
	height: 270px;
	position: relative;
}

.categories__item h5 {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 20px;
	bottom: 43px;
	text-align: center;
}

.categories__item h5 a {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 12px 0 10px;
	background: #ffffff;
	display: block;
}

.categories__slider .col-lg-3 {
	max-width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
	font-size: 18px;
	color: #fff;
	height: 70px;
	width: 30px;
	line-height: 70px;
	text-align: center;
	border: 1px solid #ebebeb;
	position: absolute;
	left: -35px;
	top: 50%;
	-webkit-transform: translateY(-35px);
	background: #B30000;
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -35px;
}

/*******************************/
/********** New Offer CSS **********/
/*******************************/
.offer{
    float: left; width: 100%; background: #fff; padding:60px 0 70px; height:auto; position:relative; z-index:3;
}

.home-contact{
    width: 100%; background: #fff; padding:60px 0 60px; height:auto; position:relative; z-index:3;background: #fafafa;
}

.home-contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #b30000;
    border: none;
    border-radius: 0;
    transition: .3s;
  }

.enquiry-btn {
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #b30000;
    border: none;
    border-radius: 0;
    transition: .3s;
  }


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    /*
    position: relative;
    width: 100%;
    padding: 45px 0;
    */
     width: 100%; background: #fff; padding:45px 0; position:relative;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 455px;
    float: left;
    object-fit: cover;
    margin-right:15px;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 0;
    background: #B30000;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #B30000;
    background: #030f27;
}


a.google-btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 0;
    background: #B30000;
    transition: .3s;
}

a.google-btn:hover {
    color: #B30000;
    background: #8b9191;
    color: #ffffff;
}

.google-txt { font-size: 16px; font-weight: 500;color: #B30000; }

.stack-list {
    float: left;
    width: 100%;
    text-align: center;
}

.stack-list ul li {
    float: none;
    display: inline-block;
    margin-right: 3%;
}

.stack-list ul li .stack-img {
    transition: all .5s ease;
    /* box-shadow: 0px 0px 6px rgb(0 0 0 / 10%); */
    float: none;
    display: inline-flex;
    width: 120px;
    height: 120px;
    border: 1px solid #e9e9e9;
    border-radius: 25%;
    text-align: center;
    background: #fff;
    position: relative;
    margin-bottom: 14px;
}

.stack-list ul li .stack-img img {
    width: 76px;
    position: relative;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.stack-list ul li p {
    font-size: 20px;
}

.title { width: 100%; }

.brand-list {
    float: left;
    width: 100%;
    text-align: center;
}

.brand-list ul {
    float: left;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.brand-list ul li {
    float: none;
    width: 18%;
    margin: 5px 10px 0 0;
    text-align: center;
    border: 1px solid #e1e1e1;
    padding: 10px;
    display: inline-block;
    border-radius: 12px;
}

.brand-list ul li img {
    float: left;
    width: 100%;
}

.brand-list h3 { color:#333; font-size:25px; text-decoration: underline; }

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #B30000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    /*
    color: #B30000;
    background: #030f27;
    */
    color: #B30000;
    background: #3082c5;
}

.fact .fact-right {
    color: #030f27;
    background: #B30000;
}

.fact .fact-left h2 {
    color: #B30000;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 15px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    /*
    background: #030f27;
    */
    background: #8b9191;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #fff;
    background: #B30000;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********* Product CSS *********/
/*******************************/
.product {
    position: relative;
    width: 100%;
    padding: 15px 0 15px 0;
}

.product .product-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;    
}

.product .product-img {
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    padding: 10px;
    display: inline-block;
    border-radius: 12px;
}

.product .product-img img {
    width: 100%;
}

.product .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.product .product-item:hover .product-overlay {
    opacity: 1;
}

.product .product-overlay p {
    margin: 0;
    color: #ffffff;
}

.product .product-text {
    display: normal;
    align-items: left;
    height: 130px;
    /*    
    background: #8b9191;
    */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #B30000;
}

.product .product-code {
    color: #B30000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.product .product-name {
    color: #030f27;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.product .product-desc {
    color: #030f27;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product .product-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #B30000;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product .product-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #fff;
    background: #B30000;
    border-radius: 0;
    transition: .3s;
}

.product .product-item:hover a.btn {
    color: #ffffff;
}

.product .product-new {
    position: absolute;
    color: #fff;
    background: #8b9191;
    font-size: 12px;
    line-height: 18px;
    padding: 2px 12px 3px;
    left: 80px;
    top: 17px;
    cursor: pointer;
    font-family: Lato-Bold;
}

.product .product-offer {    
    position: absolute;
    color: #fff;
    background: #B30000;
    font-size: 11px;
    line-height: 18px;
    padding: 2px 9px 3px;
    left: 17px;
    top: 17px;
    cursor: pointer;   
}

.product-fltr ul {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    text-align: left;
    font-size: 18px;
}

.product-fltr ul li {
    float: none;
    width: 100%;
    text-align: left;    
    display: inline-block;
}

.product-fltr ul li [type=checkbox] {
    margin-top: 3px;
}

.product-fltr ul li [type=checkbox]:checked, .product-fltr ul li [type=checkbox]:not(:checked) {
  
    left: -9999px;
   
}

.product-fltr ul li label {
    color: #666;
    font-size: 16px;
    line-height: 20px;
    font-family: Lato-Regular;
    font-weight: 400;
    padding-left: 5px;
}

.product-fltr-rgt ul.filter-tag-lst {
    padding: 0px;
    margin: 0px;
    float: left;
    width: 100%;
    margin-top: 0;
}

.product-fltr-rgt ul.filter-tag-lst li {
    width: auto;
    float: left;
    border: 1px solid #d6d6d6;
    padding: 4px 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    background: #eee;
}

.product-fltr-rgt ul.filter-tag-lst li span {
    color: #333;
    font-size: 14px;
    line-height: 16px;
    font-family: Lato-Regular;
    float: left;
    margin-right: 8px;
}

.product-fltr-rgt ul.filter-tag-lst li span {
    color: #333;
    font-size: 16px;
    line-height: 16px;
    font-family: Lato-Regular;
    float: left;
    margin-right: 8px;
}

.product-fltr-rgt ul.filter-tag-lst li a.close-lst {
    float: right;
}

.product-fltr-rgt ul.filter-tag-lst li.clear-btn {
    background: none;
    padding: 0;
    border: none;
    text-decoration: underline;
    margin-top: 5px;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #B30000;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #B30000;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#B30000, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #030f27;
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #B30000;
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team .team-item:hover .team-text {
    background: #B30000;
}

.team .team-item:hover .team-text h2 {
    color: #030f27;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 15px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #B30000;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #B30000;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #B30000;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    text-align: center;    
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/testimonial2.jpg);
    /*
    background: url(../img/testimonial-bg.jpg);
    */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    color: #B30000;
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: #B30000;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #B30000;
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #B30000;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    border-color: #B30000;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #B30000;
    background: #030f27;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #B30000;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #B30000;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #B30000;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #B30000;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #B30000;
}

.single .comment-form .btn:hover {
    color: #B30000;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #B30000;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #B30000;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #B30000;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #B30000;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #B30000;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #B30000;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #030f27;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #B30000;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #030f27;
    color: #B30000;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #B30000;
    background: #030f27;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #B30000;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #B30000;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 15px 0;
}

.contact .col-md-12 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-12:first-child {
    /*
    background: #8b9191;
    */
    background: #fff;
}

.contact .col-md-12:last-child {
    background: #fff;
    border-top:1px solid #f0f0f0;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    /*
    padding: 30px;
    display: flex;
    */
    align-items: flex-start;
    /*
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
   
    
     */
    float: left; 
    width: 33%;
    text-align: center;
}

.contact .contact-item [class^="flaticon-"]::before {
    /*
    margin: 0;
    */
    color: #030f27;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #b00000;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #030f27;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #B30000;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: #B30000;
    background: transparent;
}

.contact .contact-form textarea {
    color: #B30000;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: #B30000;
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
  color: #B30000;
  opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #B30000;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #B30000;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #B30000;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #fff;
    background: #353535;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    /*
    margin-top: 45px;
    */
    padding-top: 45px;
    background: #353535;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 25px;
}

.footer .footer-contact a {       
    color: #ffffff;
    transition: .3s;
}

.footer .footer-contact a:hover {
    color: #ff0000;
    letter-spacing: 1px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ff0000;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ff0000;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #ff0000;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #B30000;
    border-color: #B30000;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #B30000;
    background: #121518;
    border-radius: 0;
    border: 2px solid #B30000;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #B30000;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #ff0000;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    border-top: 1px solid rgba(256, 256, 256, .1);
    padding: 15px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    /*
    color: #8b9191;    
    color:#b30000;
    */
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

.header_information {
    /*
    background: #fec41f;
    */
    background: #fff;
    padding: 5px 20px 5px 5px;
    font-weight: 600;
}
.header_information::before {
    width: 84px;
    height: 98px;
    background: url(../img/top_arrow1.png);
      background-repeat: repeat;
    background-repeat: repeat;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    background-repeat: no-repeat;
  }


  /************************ Interior Design section starts **************************/
.interior-design-lst { position:relative; z-index:5; float: left; width: 100%; padding: 90px 0 90px; background: url(../img/int-design-bg.jpg) no-repeat 0 0; background-size: cover; height: 100%; margin-top:-65px; clip-path: ellipse(150% 97% at 50% 0%); -webkit-clip-path:ellipse(150% 97% at 50% 0%); }
.interior-design-lst .int-des-lft { float: left; width: 20%; margin-right: 4%; margin-top:10px; }
.interior-design-lst .int-des-rgt { float: left; width: 76%;}
.interior-design-lst h2 span.blk-txt { float: left; width: 100%; font-weight:700; font-size: 50px; line-height: 50px; color: #000000; padding-bottom: 15px; padding-top:0; }
.interior-design-lst h2 span.blu-txt { display: block; font-weight:700; font-size: 50px; line-height: 50px; color: #1565c0; padding-top: 15px; margin-bottom:20px;}
.interior-design-lst ul { float: left; width: 100%;}
.interior-design-lst ul li { float: left; width: 29%; padding-right: 0px; margin-right:6%;}
.interior-design-lst ul li .int-img { float: left; width: 100%; margin-bottom: 20px; min-height: 70px;}
.interior-design-lst ul li .int-img img { float: left; width: auto; transition: all .5s ease;}
.interior-design-lst ul li:hover img { transform: rotateY(180deg);}
.interior-design-lst ul li h4 { float: left; width: 100%; font-weight:600; font-size: 20px; color: #000000; line-height: 26px; letter-spacing:0.5px; padding-bottom: 15px; min-height: 68px; }
.interior-design-lst ul li p { float: left; width: 100%; font-weight:400; font-size: 17px; line-height: 26px; color: #333; }
.interior-design-lst ul li:last-child { margin-right:0; }

.interior-design-lst .honeycomb { display: flex; flex-wrap: wrap;list-style: none; justify-content: center;align-items: center; max-width: 958px; margin: 0 auto;  padding: 30px 0 0 0; transform: none; float:none; position:relative; z-index:99;}
.interior-design-lst .honeycomb-cell { width:auto; flex: 0 1 160px; max-width: 160px; height: 118px; margin: 0 0px 18px; position: relative; padding: 0; text-align: center; z-index: 1; filter: drop-shadow(-1px 6px 3px rgba(0, 0, 0, 0.1)); -webkit-filter: drop-shadow(1px 1px 4px  rgba(0, 0, 0, 0.1));}
.honeycomb-cell__title { height: 100%; display: flex; flex-direction: column; justify-content: center; -webkit-hyphens: auto;  -ms-hyphens: auto; hyphens: auto; word-break: break-word; text-transform: uppercase;
  color: #fff; font-weight: 700; font-size: 1.75em; transition: opacity 350ms;}
.honeycomb-cell__title > small { font-weight: 300; margin-top: 0.25em;}
.honeycomb-cell__image { /*-o-object-fit: cover;  object-fit: cover;*/ -o-object-position: center;  object-position: center;}
.honeycomb-cell::before, .honeycomb-cell::after {content: "";}
.honeycomb-cell::before, .honeycomb-cell::after, .honeycomb-cell__image { top: auto; left: 0; width: auto; height: auto; display: block; position: absolute; -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); z-index: -1;}
.honeycomb-cell::before { background: #fff; transform: scale(1.055);}
.honeycomb-cell::after { /*background: #3ea0eb;*/ opacity: 0.5; transition: opacity 350ms;}
.honeycomb-cell:hover .honeycomb-cell__title { opacity: 0;}
.honeycomb-cell:hover::before {/* background: #72f88e;*/}
.honeycomb-cell:hover::after { opacity: 0;}
.honeycomb__placeholder { display: none; opacity: 0; width: 250px; margin: 0 12.5px;}
.interior-design-lst.build-col .honeycomb li:hover img { transform:none; }

.honeycomb-cell:nth-child(7n+7) { margin-left: calc(50% - 482px);}
/*.honeycomb-cell:nth-child(7n+7), .honeycomb-cell:nth-child(7n+5):nth-last-child(2) { margin-right: calc(50% - 400px);}*/
.honeycomb__placeholder:nth-child(7n+7), .honeycomb__placeholder:nth-child(7n+9), .honeycomb__placeholder:nth-child(7n+11) { display: block;}

.interior-design-lst.build-col { z-index:10; padding:60px 0 180px; background:#fff; }
.interior-design-lst.build-col:after { position:absolute; display:block; content:""; left:0; background:url(../img/builder-pattern.png) no-repeat center 75%; width: 100%; height: 100%; top: 0;}
.builder-list { float:left; width:100%; text-align:center; }
.interior-design-lst.build-col .builder-list ul li { float:none; width: 18%; margin: 5px 10px 0px 0; text-align: center; border:1px solid #e1e1e1; padding:10px; display:inline-block;  border-radius:12px;}
.builder-list ul li img { float:left; width:100%;}
.builder-list ul li:hover img { transform:none; }


.box-head {float: left;}
.box-head--border {width: 68px;line-height: 64px;text-align: center;}
.box-body {margin-left: 60px;padding: 0 32px;}

.our-process {margin-top: 0;padding: 3% 0;background-color: #ededed;}
.our-process .box-head img {width: 40px;height: 40px;}
.why-choose {padding: 90px 0 120px;}
.why-choose .title-3 {margin-bottom: 56px;}
.why-choose__inner .box-head {width: 88px;}
.why-choose__inner .box-head--border {border: 3px solid #bbb;}
.why-choose__inner .box-head--border i {color: #333;font-size: 36px;line-height: 82px;}
.why-choose__inner .box-body h3 {margin-bottom: 7px;line-height: 1;}
.why-choose__inner .box-body p {line-height: 20px;font-size: 15px;padding-top: 6%;font-weight: 700;}
.why-choose__inner .box-body--right {margin-left: 88px;padding-left: 30px;padding-right: 0;}
.why-choose__inner .box-body--left {text-align: right;margin: 0 88px 0 0;padding-right: 30px;padding-left: 0;}
.why-choose__inner .box-head--right {float: right;}
.p-r-15 {
    padding-right: 15px;
}
.m-t-60 {
    margin-top: 18px;
}

.advantage1, .advantage2, .advantage3, .advantage4, .advantage5, .advantage6, .advantage7, .advantage8{background-image: url(../img/advantage6.png);height: 65px;background-repeat: no-repeat;}
.advantage1{background-position: 45% -3%;}
.advantage2{background-position: 45% 12%;}
.advantage3{background-position: 45% 27%;}
.advantage4{background-position: 45% 42%;}
.advantage5{background-position: 45% 57%;}
.advantage6{background-position: 45% 72%;}
.advantage7{background-position: 45% 88%;}
.advantage8{background-position: 45% 103%;}


ul {
    list-style: none;
}
.why ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.why li {
    float: left;
    margin: 5px;
    width: 19%;
    text-align: center;
    line-height: 32px;
    padding: 0;
}

.why h3 {
    font-size: 18px !important;
}

.owl-dots {
    text-align: center;
    position: relative;
    bottom: 6px;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-search {    
    background: transparent;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 1px solid rgba(255,255,255,.6);
    font-size: 16px;
    padding: 0;
    outline: none;
    box-shadow: none;
    color:#ffffff;
    width: 80%;
  }

  ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
  }


.item {
    min-height: 235px;
    height: 100%;
    position: relative;
    text-align: left;   
}

.item:after {
    background: #c23232;
    border-radius: 5px;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 80%;
    z-index: -1;
}

.item .img {
    height: 60%;
    position: absolute;
    bottom: 20%;
    right: 0;     
}

.item .content {
    color: #919191;
    font-size: 14px;
    max-width: 60%;
}

.item .title {
    min-height: 170px;
    margin-bottom: 12px;
}
.item .title h2 {
    color: #fff;
    font-family: Arial Black;
    font-weight: 700;
    font-size: 25px; 
    padding: 20px 20px 18px 20px;   
}   


.item .title h3 {
    color: #fff;
    font-family: Arial Black;
    font-weight: 700;
    font-size: 17px;
    padding: 0px 20px 20px 20px;
    width: 60%;
}   

.item .title p {
    color: #fff;
    font-family: Arial Black;
    font-weight: 700;
    font-size: 12px;
    padding: 10px;
    width: 65%;
}  

.item a {
    color:#fff;
    border: 2px solid #ffffff;
    border-radius: 0;
    padding: 10px;
    margin-top: 20px;
    margin-left: 20px;
    bottom:5px;
}

/*
.happy-customer { float: left; width: 100%; background: #fafafa; padding:90px 0 70px; height:auto; margin-top:-60px; clip-path: ellipse(205% 97% at 50% 0%); -webkit-clip-path: ellipse(205% 97% at 50% 0%); position:relative; z-index:3; }
*/
.happy-customer { float: left; width: 100%; background: #fafafa; padding:40px 0 30px; height:auto; position:relative; z-index:3; }

.happy-customer .hap-cust { float: left; width: 100%; transition:all .5s ease; -moz-transition:all .5s ease; -webkit-transition:all .5s ease; -o-transition:all .5s ease;  min-height: auto;}
.happy-customer .hap-cust .hap-cust-cnt { float: left; width: 100%; padding:25px 30px; border-radius: 30px; -webkit-box-shadow: 3px 3px 0px 0px rgba(226, 226, 226, 1); -moz-box-shadow: 3px 3px 0px 0px rgba(226, 226, 226, 1); box-shadow: 3px 3px 0px 0px rgba(226, 226, 226, 1); background: #fff; }
.happy-customer .hap-cust .hap-cust-cnt span { float: left; width: 45px; height: 35px; background: url(../img/qu.png) no-repeat; }
.happy-customer .hap-cust .hap-cust-cnt p { float: left; width: 100%; font-weight: 400; font-size: 18px; line-height: 28px; margin-top: 25px; color: #444444; }
.happy-customer .hap-cust-img { float: left; width: 100%; margin-top: 25px; display: flex; align-items: center;}
.happy-customer .hap-cust-img .hap-cust-img-lft { float: left; width: 85px; margin-right: 20px; border-radius: 50%; overflow:hidden; }
.happy-customer .hap-cust-img .hap-cust-img-rgt { float: left; width: calc(100% - 106px);}
.happy-customer .hap-cust-img .hap-cust-img-lft img { float: left; width: 100%; }
.happy-customer .hap-cust-img .hap-cust-img-rgt h2 { font-weight: 600; font-size: 19px; color: #282828; line-height: 24px; letter-spacing:0.5px; transition: all 0.4s ease; margin-bottom:6px;}
.happy-customer .hap-cust-img .hap-cust-img-rgt p { font-weight: 400; font-size: 16px; line-height: 22px; color: #666666; }

.slick-center .hap-cust .hap-cust-cnt { background: #B30000; box-shadow:none;}
.slick-center .hap-cust .hap-cust-cnt p { color: #fff; }
.slick-center .hap-cust .hap-cust-cnt span { background: url(../img/qu-act.png) no-repeat; }

#h-cust.slick-slider { min-height:490px; float:left; width:100%;}
#h-cust.slick-slider .slick-prev, #h-cust.slick-slider .slick-next { z-index: 10; top: 0px; background-color: transparent; cursor:pointer; }
#h-cust.slick-slider .slick-prev {  top:25%; left: -10px; position: absolute; height: 62px; width: 62px; border-radius: 50%;transition: all 0.2s linear; background:#B30000; text-indent:-9999px; border:none; box-shadow:2px 4px 3px rgba(0,0,0,0.16); margin-top:-25px;}
#h-cust.slick-slider .slick-next { top:25%; right: -10px; position: absolute; height: 62px; width: 62px; border-radius: 50%;transition: all 0.2s linear; background:#B30000; text-indent:-9999px; border:none;  box-shadow:2px 4px 3px rgba(0,0,0,0.16); margin-top:-25px; }
#h-cust.slick-slider .slick-prev::after { transform: rotate(-45deg); content: ""; position: absolute; left: 3px; z-index: 11; display: block; width: 14px; height: 14px; border-top: 2px solid #fff; border-left: 2px solid #fff; right: 0;
margin: auto; top: 0; bottom: 0; }
#h-cust.slick-slider .slick-next::after { transform: rotate(-225deg); content: ""; position: absolute; left: -3px; z-index: 11; display: block; width: 14px; height: 14px; border-top: 2px solid #fff; border-left: 2px solid #fff; right: 0;
margin: auto; top: 0; bottom: 0; }
#h-cust.slick-slider .slick-prev:hover, #h-cust.slick-slider .slick-next:hover { background:#e60000; }
#h-cust .slick-slide { margin: 0 25px; }
#h-cust .slick-slide:hover .hap-cust-img-rgt h2 { color:#B30000; }

.slick-center .hap-cust{margin-top: 50px;}

.categories__slider.owl-carousel .owl-nav .owl-prev, .categories__slider.owl-carousel .owl-nav .owl-next {
    font-size: 18px;
    color: #fff;
    height: 70px;
    width: 30px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #ebebeb;
    position: absolute;
    left: -35px;
    top: 37%;
    -webkit-transform: translateY(-35px);
    background: #B30000;
  }
.categories__slider.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -35px;
}    

.top-bar-experience { font-size: 15px; }
.top-bar-experience i { font-size: 45px;color:#000;  }
.top-bar-experience-txt { color:#000;font-size: 18px; }

.title-section {
    margin: 10px 0px 20px 0px;
}

.title-section span {
    position: relative;
}

.title-section span::before {
    content: " ";
    background: #b00000;
    width: 64px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: -75px;
  }

  .title-section span::after {
    content: " ";
    background: #b00000;
    width: 64px;
    height: 2px;
    position: absolute;
    top: 7px;
    right: -71px;
  }

  .title-section span i {
    font-size: 30px;
  }

  .vidoe-pad1 {
    
    width: 100%;
  }

  #slider.flexslider {
    text-align: center;
    display: inline-block;
  }

  .vidoe-pad1 .flexslider .slides iframe {
    float: left;
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
    width: 77%;        
  }

  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #B30000;    
  }

.slider { margin: 0px!important;}
#carousel-h li {margin-right: 5px;}
#carousel-h img {display: block; cursor: pointer;border-radius:5px}
#carousel-h.flexslider .slides > li		{ cursor:pointer;-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none;}
#carousel-h.flexslider .slides > li:after	{ position:absolute; background:rgba(0,0,0,0.5); content:''; width:100%; height:100%; top:0;border-radius:5px}
#carousel-h.flexslider .slides > li:hover:after { display:none;}
#carousel-h li.flex-active-slide:after	{ display:none; background:none;} 	
#carousel-h .flex-active-slide img {cursor: default; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none;  user-select: none;}

.e-brochure { float: left;width: 100%;padding: 20px 0 10px; }
.e-brochure ul { float: left;width: 100%;text-align: center; }
.e-brochure ul li { float:left;width: 22%;text-align: center;margin-right: 4%;margin-bottom: 50px;display: inline-block;position: relative; }
.e-brochure .brochure-pad { float: left;position: relative;width: 100%;text-align: center;margin: 0 0 10px 0; }
.e-brochure .brochure-pad img { margin: 16px 0 0 0;position: relative;z-index: 9; }

.e-brochure ul li h3 {
    text-transform: uppercase;
    font-size: 15px;    
    display: block;
    margin: 0px 0 0 0;
}
.e-brochure ul li h3 span {
    display: block;
}
.e-brochure ul li:nth-child(4n) { margin-right:0;}
.e-brochure ul li:hover .brochure-overlay { opacity: 1; animation: fadeInUp 1s ease;}
.e-brochure ul li:hover h3 { color:#ce171f }
.brochure-overlay { position:absolute; left: 0;  top: 50%;  margin-top: -40px;  z-index: 9; right: 0; opacity: 0;cursor: pointer;}
.brochure-overlay a { display: inline-block; margin-right: 10px;}	
.brochure-overlay a img { width: 45px;}

.certificates-list {
    float: left;
    width: 100%;
    text-align: center;
}

.certificates-list ul li {
    float: none;
    width: 19%;
    margin: 5px 10px 0 0;
    text-align: center;
    border: 1px solid #c7c7c7;
    padding: 10px;
    display: inline-block;
    border-radius: 12px;
}

.certificates-list ul li img {
    float: left;
    width: 100%;
}

.modal {
    z-index: 10000050;
}

/* Our clients css */
.our-clients { float: left; width: 100%; padding:0px; }
.our-clients h1 { float: left; width: 100%; text-align: center; font-weight: 700; color:#000000; font-size: 44px; line-height: 46px; margin-bottom: 40px; }
.our-clients ul { float: left; width: 100%; }
.our-clients ul li { float: left; width: 100%;padding: 50px 50px; display: flex; border-bottom:1px solid #d7d7d7; }
.our-clients ul li:last-child { border-bottom: 0;padding: 70px 50px 30px 50px;  }
.our-clients ul li .cnt-main { float: left; width: 100%;}
.our-clients ul li .cnt-lft { float: left; width: 50%; text-align: center;}
.our-clients ul li .cnt-rgt { float: left; width: 50%; padding-left: 70px; height: 100%; display: flex; justify-content: center; align-items: center;}
.our-clients ul li .cnt-lft .cnt-img { float: none; display: inline-block; width: 150px; height: 150px; border-radius: 50%; overflow: hidden;}
.our-clients ul li .cnt-lft .cnt-img img { float: left; width: 100%;}
.our-clients ul li .cnt-lft h2 { float: left; width: 100%; font-weight: 500; color:#000000; font-size: 28px; line-height: 36px; margin-bottom: 10px;}
.our-clients ul li .cnt-lft h4 { float: left; width: 100%; font-weight: 400; font-style:italic; color:#000000; font-size: 18px; line-height: 26px; margin-bottom: 15px; }
.our-clients ul li .cnt-lft p { float: left; width: 100%; font-weight: 400; font-size: 16px; line-height: 26px; color: #444444; margin-bottom: 20px;}
.our-clients ul li .cnt-lft p:last-child { margin-bottom: 0;}
.our-clients ul li .cnt-rgt iframe { float: left; width: 100%; height: 275px; border: none;}
/*.our-clients ul li:nth-child(2n+2) { background: #ffffff;}*/
.our-clients ul li .cnt-main.rgt .cnt-lft { float: right;}
.our-clients ul li .cnt-main.rgt .cnt-rgt { padding-right: 70px; padding-left: 0;}
.our-clients ul li .cnt-main.full-wdth .cnt-lft { width: 100%;}

/*product-details-pg*/
.pdt-sec.pdt-detail .pdt-l { width: 58%; float: left; margin-right: 4.5%;}

.product__details__text ul { list-style: none;padding: 0px; }
.product__details__text li { float: left; width: 100%; background:url(../images/arrow-left.png) no-repeat 0 6px; padding: 0px 0 15px 20px; display: block; border-bottom:none; font-size: 17px; color: #333; }
.product__details__text p { font-size: 17px; color: #333; line-height: 28px; margin-bottom: 20px; }

/*
.product__details__text ul {
    list-style: none;
}
.product__details__text ul li, .product__details__text ol li {
    position: relative;
}
.product__details__text ul li:not(:last-child), .rte ol li:not(:last-child) {
    margin-bottom: 5px;
}
.product__details__text ul li::before {
    position: absolute;
    content: "";
    left: -18px;
    top: .8em;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background: url(../images/select-arw.png) no-repeat 0 0; 
}
*/

/* Product List css */
.product-list {  width: 100%; background: #fff; padding:45px 0; position:relative; }
.product-list .product-list-lft { float: left; width: 21%;}
.product-list .product-list-rgt { float: right; width: 74%; margin-left: 2%;}

.product-list-lft h2 {font-size: 22px; line-height: 20px; color: #333; font-family: 'Lato-Bold'; padding-left: 4px; padding-bottom: 20px; border-bottom: 1px solid #d6d6d6;}

.product-list .prd-tab-lst .prd-tab-lft { float: left; width: auto;}
.product-list .prd-tab-lst .prd-tab-rgt { float: right; width: 100%;}

.product-list .prd-tab-lst .prd-tab-lft ul { float: left; width: 100%; display: flex; align-items: center; justify-content: left;}
.product-list .prd-tab-lst .prd-tab-lft ul li { float: left; width: auto; margin-right: 10px;}
.product-list .prd-tab-lst .prd-tab-lft ul li:last-child { margin-right: 0;}
.product-list .prd-tab-lst .prd-tab-lft ul li img { float: left; width: auto; transition:all .5s ease;}
.product-list .prd-tab-lst .prd-tab-lft ul li img:hover { opacity: 0.6;}

.prd-tab{float: left; width: 100%; margin-bottom: 20px;}
.prd-tab .sort-rht { float: right;width: auto;margin-left: 0;padding-bottom: 20px;}
.prd-tab .sort-rht p { float: left; width: auto;   font-size: 14px; line-height: 37px; color: #333333; margin-right: 15px; font-family: 'Lato-Regular';}
.prd-tab .sort-rht .sbHolder { padding: 0; border: 1px solid #000;  width: 167px;height: 37px;}
.prd-tab .sort-rht .sbSelector { padding: 5px 35px 5px 15px; height: 100%; font-family: 'Lato-Regular'; font-weight: 400; font-size: 14px; line-height: 25px; font-style: initial;text-align: left;color: #333;}
.prd-tab .sort-rht .sbToggle {right: 15px; top: 13px; background: url(../images/select-arw.png) no-repeat 0 0; width: 12px; height: 9px;}
.prd-tab .sort-rht .sbHolder ul.sbOptions {top: 36px !important; z-index: 9;}
.prd-tab .sbOptions li:hover {background: #1769c8;}
.prd-tab .sbOptions li:hover a { color: #ffffff;}

.product-list .product-list-rgt .prd-lst { float: left; width: 100%;}
.product-list .product-list-rgt .prd-lst ul { float: left; width: 100%; margin-top: 0px; padding: 0px;}
/*
.product-list .product-list-rgt .prd-lst ul li { float: left; width: 24%; height: 230px; margin-bottom: 25px;transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;}
*/
.product-list .product-list-rgt .prd-lst ul li { float: left; width: 24%; margin-right: 1.3%; margin-bottom: 25px;transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;}
.product-list .product-list-rgt .prd-lst ul li:nth-child(4n+4) { margin-right: 0;}
.product-list .product-list-rgt .prd-lst ul li ul { float: left; width: 100%; margin-bottom: 5px;}
.product-list .product-list-rgt .prd-lst ul li ul li { width: auto; margin-right: 0; margin-bottom: 0px;}
.product-list .product-list-rgt .prd-lst ul li .prd-img { float: left; width: 100%; overflow: hidden; position: relative; transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;}
.product-list .product-list-rgt .prd-lst ul li .wish-icon a{background: #fff url(../images/wish-icon.png) no-repeat center;position: absolute;
right: 15px;top: 12px;width: 40px;height: 40px;display: flex;display: -webkit-flex;justify-content: center;-webkit-justify-content: center;
align-items: center;-webkit-align-items: center;border-radius: 100%;border: 1px solid #dfdfdf; transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;}
.product-list .product-list-rgt .prd-lst ul li:hover .wish-icon a {background: #fff url(../images/wish-icon-hvr.png) no-repeat center;}
.product-list .product-list-rgt .prd-lst ul li .wish-icon img {width: auto; text-align: center; transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;}
.product-list .product-list-rgt .prd-lst ul li .prd-img img { float: left; transition: 1s; border: 1px solid #e1e1e1;padding: 10px;border-radius: 12px; }
.product-list .product-list-rgt .prd-lst ul li:hover .prd-img img { transform: scale(1.1);}
.product-list .product-list-rgt .prd-lst ul li .prd-cnt { float: left; width: 100%; padding: 5px 0px; text-align: center;}
.product-list .product-list-rgt .prd-lst ul li .prd-cnt a.prd-code { color: #B30000;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;font-weight: 600; }
.product-list .product-list-rgt .prd-lst ul li .prd-cnt a.prd-code:hover { color: #000; }
.product-list .product-list-rgt .prd-lst ul li .prd-cnt h3 { float: left; width: 100%; font-size: 16px;line-height: 22px;color: #000; padding-bottom: 5px; transition:all .5s ease; }
.product-list .product-list-rgt .prd-lst ul li .prd-cnt h4 { float: left;width: 100%;font-family: 'Lato-Bold';font-weight: 700;font-size: 16px;
line-height: 22px;color: #000;transition: all .5s ease; }
.product-list .product-list-rgt .prd-lst ul li:hover .prd-cnt h3 { color: #B30000;}
.product-list .product-list-rgt .prd-lst ul li:hover .prd-cnt h4 { color: #000;}


.product-list .product-list-rgt .prd-lst ul li .offer{position: absolute;color: #fff;background: #e75a3f;font-size: 11px;line-height: 18px; padding: 2px 9px 3px 9px;left: 17px;top: 17px; cursor: pointer;}
.product-list .product-list-rgt .prd-lst ul li .new {position: absolute;color: #fff;background: #B30000; font-size: 12px; line-height: 18px; padding:2px 12px 3px 12px;left: 80px; top: 17px; cursor: pointer;font-family: 'Lato-Bold';}
.product-list .product-list-rgt .prd-lst ul li .new.single-off { left: 17px;}

.product-list .product-list-rgt .prd-lst ul li a.cart-btn { background: #fdd638; text-align: center; padding: 12px 24px; color: #000; font-size: 16px; transition: all 0.5s ease; cursor: pointer;font-family: 'Lato-Bold';line-height: 22px;position: absolute; bottom: 0px; margin: 0 auto; left: 0;right: 0; opacity: 0; transform: translateY(30px); width: 140px; overflow: hidden; z-index: 1;}
.product-list .product-list-rgt .prd-lst ul li a.cart-btn::after { position:absolute; display:block; content:""; left:50%; background:#B30000; width:0; height:100%; transition:all .5s ease; z-index:-1; top:0;}
.product-list .product-list-rgt .prd-lst ul li a.cart-btn:hover:after { width:100%; left:0; }
.product-list .product-list-rgt .prd-lst ul li a.cart-btn:hover { color: #ffffff; }
.product-list .product-list-rgt .prd-lst ul li:hover a.cart-btn { opacity: 1; transform: translateY(-30px);}

/*accordion*/
.accordion-container {position: relative; width: 100%; outline: 0;cursor: pointer}
.accordion-container .article-title {display: block;position: relative;margin: 0;padding: 0 0 20px;color: #1369ca;background: #fff;cursor: pointer;font-size: 14px;line-height: 20px;float: left;width: 100%; }
.accordion-container .product-accord {float: left; width: 100%; padding-left: 20px;}
.accordion-container .article-title:hover, .accordion-container .article-title:active, .accordion-container .content-entry.open .article-title { background-color: #fff; color: #000;}

.article-title { position: relative;}
.article-title::after { content: ""; position: absolute; right: 12px; top: 15%; transition: all 0.2s ease-in-out; display: block; width: 8px; height: 8px; -webkit-transform: rotate(135deg); transform: rotate(135deg);}
.accordion-container .article-title.open { border: 0; color: #B30000; font-size: 14px;}

.accordion-container {position: relative; width: 100%; outline: 0;cursor: pointer}
.accordion-container .article-title {display: block;position: relative;margin: 0;padding: 20px 35px 20px 20px;color: #000;background: #fff;cursor: pointer;font-size: 14px;line-height: 20px;float: left;width: 100%; border-bottom: 1px solid #d6d6d6;}
.accordion-container .article-title:hover, .accordion-container .article-title:active, .accordion-container .content-entry.open .article-title { background-color: #fff; color: #B30000;}
.article-title { position: relative;}

.article-title::after {  content: "";  position: absolute;  right: 13px;  top: 32px;  transition: all 0.2s ease-in-out;  width: 15px;height: 1px;  transform: none;  background: url(../images/minus.png) no-repeat;  display: none;}
.article-title::before { content: "";  position: absolute;  transition: transform 0.25s ease-out; height: 16px;  right: 13px;  top: 24px;  width: 15px;  background: url(../images/plus.png) no-repeat;}
.article-title.open::after { display: block;}
.article-title.open::before {  display: none;}

.accordion-content { display: none; padding-left: 0; float:left; width:100%; border-bottom: 1px solid #d6d6d6;}
.accordion-container { width: 100%; float:left; }
.accordion-content ul { float:left; width:100%; margin-bottom: 30px;padding-left: 20px;}
.accordion-content ul li { float:left; width:100%; margin-bottom: 8px;}
.accordion-content ul li:last-child { margin-bottom: 0;}
.accordion-content ul li label { color: #666;font-size: 14px;line-height: 20px;font-weight: 400;}
.accordion-content ul li:hover label { color:#ea4d46; }

.accordion-content ul li [type="checkbox"]:not(:checked), .accordion-content ul li [type="checkbox"]:checked { position: absolute; left: -9999px;}
.accordion-content ul li [type="checkbox"]:not(:checked) + label, .accordion-content ul li [type="checkbox"]:checked + label { position: relative; padding-left: 2.1em; cursor: pointer;}
/* checkbox aspect */
.accordion-content ul li [type="checkbox"]:not(:checked) + label:before { content: ''; position: absolute; left: 0; top: 1px; width: 15px; height: 15px; border: 1px solid #737373; background: #fff; border-radius: 0px;}
.accordion-content ul li [type="checkbox"]:checked + label:before { content: ''; position: absolute; left: 0; top: 1px; width: 15px; height: 15px; border: 1px solid #000; background: none; border-radius: 0px;}
/* checked mark aspect */
.accordion-content ul li [type="checkbox"]:not(:checked) + label:after, .accordion-content ul li [type="checkbox"]:checked + label:after {position: absolute;top: 1px;left: 1px;content: "";width: 15px;height: 15px;background: none;}
/* checked mark aspect changes */
.accordion-content ul li [type="checkbox"]:not(:checked) + label:after { opacity: 0; transform: scale(0);}
.accordion-content ul li [type="checkbox"]:checked + label:after { opacity: 1; content: '';display: inline-block;text-align: center;font-weight: bold;cursor: pointer;position: absolute;top: 2px;left: 5px;width: 5px;height: 9px;border: 1px solid #1769c8;border-width: 0 2px 2px 0;transform: rotate(45deg); background: none;}
/* disabled checkbox */
.accordion-content ul li [type="checkbox"]:disabled:not(:checked) + label:before,
.accordion-content ul li [type="checkbox"]:disabled:checked + label:before { box-shadow: none; border-color: #bbb; background-color: #ddd;}
.accordion-content ul li [type="checkbox"]:disabled:checked + label:after { color: #999;}
.accordion-content ul li [type="checkbox"]:disabled + label { color: #aaa;}


/*
.filter-lft { float: left; width: 66%;}
*/
.filter-lft { float: left; width: 100%;}
ul.filter-tag-lst { float: left; width: 100%; display: flex; align-items: center; flex-wrap: wrap; gap: 10px;}
.product-list .product-list-rgt .prd-lst .filter-lft ul.filter-tag-lst li { width: auto; float: left; border: 1px solid #d6d6d6; padding: 4px 16px;margin-right:0px; margin-bottom: 0px; border-radius: 100px; display: flex; align-items: center; background: #eeeeee;}
ul.filter-tag-lst li span {color: #333;font-size: 14px;line-height: 16px; font-family: 'Lato-Regular'; float: left; margin-right: 8px; }
ul.filter-tag-lst li a.close-lst {float: right;}
ul.filter-tag-lst li a.close-lst img { width: 12px;}
.product-list .product-list-rgt .prd-lst .filter-lft ul.filter-tag-lst li.clear-btn { background: none; padding: 0; border: none; text-decoration: underline;}
.product-list .product-list-rgt .prd-lst .filter-lft ul.filter-tag-lst li.clear-btn a { color: #333; font-size: 14px; }
.product-list .product-list-rgt .prd-lst .filter-lft ul.filter-tag-lst li.clear-btn a:hover { color: #B30000;}
.p_test h2 { font-size: 2rem; }


#subscribe-popup { padding:15px; background:#ececec; }
#subscribe-popup .pop-pad { float: left; width: 100%; padding: 20px; background:#fff; }
#subscribe-popup.p_test.popup {  max-width:520px; width:100%;}
#subscribe-popup .pop-pad h2 { font-family: 'Poppins', sans-serif; color:#333; font-weight: 700; font-size: 35px; line-height: 32px; margin-bottom: 15px; position:relative; padding-bottom:20px; text-align: center; }
#subscribe-popup .pop-pad h2 span { color: #B30000;}
#subscribe-popup .pop-pad h2:after { position:absolute; display:block; content:""; left:0; right:0; margin:0 auto; width:50px; height:3px; background:#B30000; bottom:0; }
#subscribe-popup .pop-pad ul { padding: 0px; margin: 0px; }
#subscribe-popup .pop-pad ul li { float:left; width:100%; margin: 0 0 12px 0; text-align: left; }
#subscribe-popup .pop-pad ul li label { font-family: 'Poppins', sans-serif; font-size:16px; float:left; width:100%; color:#000; margin-bottom:5px; }
#subscribe-popup .pop-pad ul li label sup { color:red; }
#subscribe-popup .pop-pad ul li input[type="text"] { background:#fff; width:100%; border:1px solid #ccc; padding: 10px 15px; border-radius: 10px;  font-family: 'Calibre-Regular'; transition:all 0.4s ease; }
#subscribe-popup .pop-pad ul li select { width:100%; border:1px solid #ccc; height: 46px; padding: 5px 15px; border-radius: 10px;  font-family: 'Calibre-Regular'; transition:all 0.4s ease; }
#subscribe-popup .pop-pad ul li textarea { background:#fff; width:100%; border:1px solid #ccc; padding: 12px 15px; border-radius: 10px; resize:none;  font-family: 'Calibre-Regular'; transition:all 0.4s ease; }
#subscribe-popup .pop-pad ul li input[type="text"]:focus, #subscribe-popup .pop-pad ul li textarea:focus { border:1px solid #B30000; }

#subscribe-popup .pop-pad ul li:last-child { margin-bottom:0;}
#subscribe-popup .pop-pad ul li button { cursor: pointer; text-align: center; transition: all .5s ease; background: #B30000; float: right; padding: 6px 45px; border: 1px solid #B30000; border-radius: 25px;
height: 42px; font-size: 18px; text-transform: uppercase; color: #fff; font-family: 'Calibre-Medium'; line-height: 30px; transition: all .5s ease; } 
#subscribe-popup .pop-pad ul li button:hover { background:#353535; color:#fff; border:1px solid #353535; }

#subscribe-popup .pop-pad ul li input[type="text"]{ font-size: 16px; }
#subscribe-popup .pop-pad ul li textarea{ font-size: 16px; }
#subscribe-popup .pop-pad ul.half-sec li{ width: 50%;padding-right: 10px; }

a.submit-btn { cursor:pointer; text-align: center; transition: all .5s ease; background:#B30000; float:right; padding:6px 45px; border:1px solid #B30000; border-radius:25px; height:46px; font-size:14px; text-transform: uppercase; color:#fff; font-weight:500; font-family: 'Lato', sans-serif; line-height:30px; }
a.submit-btn:hover  {background: #353535;color: #fff;border: 1px solid #353535;}
.order-div { text-align:center; float:left; width:100%;}

/*pagination*/
.pagination {width: 100%; display: inline-block !important; }
.pge-lft {float: none;width: auto;margin: 0 auto;text-align: center;}
.pge-lft ul li{ display: inline-block; margin-right:0 !important;padding: 0 5px; }
.pge-lft ul li.active a{color: #fff;background: #B30000;border-radius: 100%;}
.pge-lft ul li:last-child{ border-right:none;}
.pge-lft ul li a{display: flex;text-align: center;align-items: center;justify-content: center; width: 27px; height: 27px; font-size: 14px; line-height: 20px;}
.pge-lft ul li:hover{ background: none;}
.pge-lft ul li:hover a{color: #B30000;}
.pge-lft ul li.active a:hover{ color:#fff; }
.pge-rht{ float:right; width:auto; font-size:14px; color:#414141; text-align:right;font-family: 'proxima_nova_ltbold'; padding:12px 0;}
/*product-list-pg*/