/*
@File: Pulv HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************
** - Default Btn Style 
** - Section Title Style
** - Top Header Style
** - Navbar Area Style
** - Main Banner Area CSS  Style
** - Inner Banner Style
** - About Area Style
** - Cart Wraps Area Style
** - Checkout Area Style
** - Service Area Style
** - Product Area Style
** - Testimonials Area Style
** - Team Area Style
** - Blog Area Style
** - Faq Area Style
** - Pagination Area Style
** - Contact Area Style
** - User All Form Style
** - Map Area Style
** - 404 Error Area Style
** - Coming Soon Area Style
** - Footer Area Style
** - Back To Top Button Style
** - Preloader CSS Style
** - Animation CSS Style

*******************************************

/*================================================
Default CSS
=================================================*/

@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap");
body {
    font-size: 16px;
    line-height: 1.8;
    font-family: "Roboto", sans-serif;
    color: #555555;
    font-weight: 400;
}

p {
    color: grey;
}

a {
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

button {
    margin: 0;
    padding: 0;
    outline: 0;
}

button:focus {
    outline: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #F80F00;
    font-family: "Catamaran", sans-serif;
    line-height: 1.4;
}

h3 {
    font-size: 22px;
    font-weight: 800;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}

img {
    max-width: 100%;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-20 {
    padding-top: 20px;
}

.ml-45 {
    margin-left: 45px;
}

.border-radius-50 {
    border-radius: 50px;
}

.bg-color {
    background-color: #061662;
}

.bg-color-2 {
    background-color: #F7EBEE;
}

/*================================
Default Btn Style 
===================================*/

.default-btn {
    background-color: #ED3237;
    display: inline-block;
    padding: 12px 42px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.default-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.default-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.default-btn:hover {
    color: #ffffff !important;
}

.default-btn:hover::before {
    width: 100%;
    color: #ffffff !important;
    opacity: 1;
}

.default-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff !important;
}

/*================================
Default Btn Style End
===================================*/

/*================================
Section Title Style 
===================================*/

.section-title span {
    line-height: 0;
    text-transform: capitalize;
    padding-bottom: 10px;
    font-weight: 400;
    color: #292323;
}

.section-title .sub-title {
    margin-bottom: 15px;
    line-height: 1;
}

.section-title .sub-title span {
    line-height: 0;
    text-transform: capitalize;
    padding-bottom: 5px;
    font-weight: 400;
    color: #292323;
}

.section-title .sub-title .sub-title-line1 {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -3px;
}

.section-title .sub-title .sub-title-line1 .line1 {
    width: 30px;
    height: 1px;
    background-color: #555555;
}

.section-title .sub-title .sub-title-line1 .line2 {
    width: 30px;
    height: 1px;
    background-color: #555555;
    margin-top: 4px;
}

.section-title .sub-title .sub-title-line2 {
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: -3px;
}

.section-title .sub-title .sub-title-line2 .line1 {
    width: 30px;
    height: 1px;
    background-color: #292323;
}

.section-title .sub-title .sub-title-line2 .line2 {
    width: 30px;
    height: 1px;
    background-color: #292323;
    margin-top: 4px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.section-title p {
    padding-top: 10px;
    margin-bottom: 0;
}

/*================================
Section Title Style End
===================================*/

/*=================================
Navbar Area
====================================*/

.navbar-area {
    background-color: transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
}

.navbar-light {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
}

.navbar-light .navbar-brand img {
    float: left;
    padding: 10px 0;
}

.navbar-light .navbar-brand-sticky {
    display: none;
}

/* Main nav */

.main-nav {
    position: inherit;
    background-color: #ffffff;
    top: 0;
    left: 0;
    z-index: inherit;
    padding: 0;
    width: 100%;
    height: auto;
}

.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .active {
    color: #ED3237 !important;
}

.main-nav nav .navbar-nav .nav-item a {
    text-transform: capitalize;
    color: #292323;
    font-weight: 400;
    margin-left: 12px;
    margin-right: 12px;
}

.main-nav nav .navbar-nav .nav-item a i {
    line-height: 0;
    position: relative;
    top: 3px;
    font-size: 18px;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a :focus {
    color: #ED3237 !important;
}

.main-nav nav .navbar-nav .nav-item a.active {
    color: #ED3237 !important;
}

.main-nav nav .navbar-nav .nav-item a .active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.main-nav nav .navbar-nav .nav-item:hover .dropdown-menu {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    z-index: 5;
    border: none;
    padding: 0;
    border-radius: 0;
    background-color: #ffffff !important;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid #ffffff;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: none;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    text-transform: capitalize;
    color: #292323 !important;
    position: relative;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    font-weight: 400;
    padding: 10px;
    border-bottom: 1px dashed #ebebeb;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    border-radius: 0;
    color: #ED3237 !important;
    background-color: #f3f3f3;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a :focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a .active {
    color: #ED3237 !important;
    border-radius: 0;
    background-color: #f3f3f3;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li.active {
    color: #ED3237 !important;
    background-color: #f3f3f3;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: 100%;
    margin-top: 18px !important;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.nav-bar-two {
    background-color: #071232;
}

.nav-bar-two nav .navbar-nav .nav-item a {
    color: #ffffff;
}

.nav-bar-three {
    background-color: transparent;
    position: absolute;
    z-index: 5;
}

.nav-bar-three nav .navbar-nav .nav-item:hover a,
.nav-bar-three nav .navbar-nav .nav-item .active {
    color: #9E6E7D !important;
    font-weight: 500;
}

.nav-bar-three nav .navbar-nav .nav-item a:hover,
.nav-bar-three nav .navbar-nav .nav-item a :focus {
    color: #9E6E7D !important;
    font-weight: 500;
}

.nav-bar-three nav .navbar-nav .nav-item a.active {
    color: #9E6E7D !important;
    font-weight: 500;
}

.nav-bar-three nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #9E6E7D !important;
}

.nav-bar-three nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.nav-bar-three nav .navbar-nav .nav-item .dropdown-menu li a :focus,
.nav-bar-three nav .navbar-nav .nav-item .dropdown-menu li a .active {
    color: #9E6E7D !important;
}

.nav-bar-three nav .navbar-nav .nav-item .dropdown-menu li.active {
    color: #9E6E7D !important;
}

.option-item {
    margin-right: 20px;
    display: inline-block;
}

.option-item .language-list {
    margin-top: 0;
    z-index: 5;
    position: relative;
}

.option-item .language-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.option-item .language-list ul li {
    display: inline-block;
}

.option-item .language-list ul li:hover {
    color: #ED3237;
}

.option-item .language-list ul li:hover ul {
    display: block;
}

.option-item .language-list ul li a {
    font-size: 16px;
    color: #292323;
    text-decoration: none;
    font-weight: 400;
    padding: 15px;
    display: block;
}

.option-item .language-list ul li a:hover {
    color: #ED3237;
}

.option-item .language-list ul li a i {
    font-size: 18px;
    color: #292323;
    position: relative;
    top: 3px;
}

.option-item .language-list ul ul {
    position: absolute;
    background: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 5;
    border-radius: 3px;
    width: 180px;
    right: 0;
    top: 50px;
    left: auto;
    border-top: 2px solid #ffffff;
}

.option-item .language-list ul ul::before {
    content: '';
    position: absolute;
    z-index: -5;
    top: -3px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.option-item .language-list ul ul li {
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    background: #ffffff;
    padding: 5px 10px;
}

.option-item .language-list ul ul li a {
    color: #292323;
    padding: 0 25px;
    font-size: 15px;
}

.option-item .language-list ul ul li a img {
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 5px;
}

.option-item .language-list ul ul li a:hover {
    color: #ED3237;
}

.option-item .menu-icon {
    line-height: 1;
    position: relative;
    top: 10px;
    z-index: 5;
}

.option-item .menu-icon .menu-icon-two {
    font-size: 35px;
    color: #ED3237;
}

.option-item .menu-icon .menu-icon-two:hover {
    color: #292323;
}

.option-item .menu-icon .menu-icon-three {
    font-size: 35px;
    color: #9E6E7D;
}

.option-item .menu-icon .menu-icon-three:hover {
    color: #292323;
}

.option-item .language-list-2 ul li a {
    color: #ffffff;
}

.option-item .language-list-2 ul li a:hover {
    color: #ED3237;
}

.option-item .language-list-2 ul li a i {
    color: #ffffff;
}

.side-nav-responsive {
    display: none;
}

.side-nav-responsive .dot-menu {
    padding: 0 10px;
    height: 30px;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    right: 60px;
    top: 12px;
}

.side-nav-responsive .dot-menu .circle-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
}

.side-nav-responsive .dot-menu .circle-inner .circle {
    height: 5px;
    width: 5px;
    border-radius: 100%;
    margin: 0 2px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    background-color: #292323;
}

.side-nav-responsive .dot-menu:hover .circle-inner .circle {
    background-color: #ED3237;
}

.side-nav-responsive .container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.side-nav-responsive .container .container {
    position: absolute;
    top: 55px;
    right: 0;
    max-width: 250px;
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
}

.side-nav-responsive .container .container.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.side-nav-responsive .side-nav-inner {
    padding: 10px;
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    background-color: #ffffff;
}

.side-nav-responsive .side-nav-inner .side-nav {
    background-color: #ED3237;
    padding: 10px 0;
}

.side-nav-responsive .side-nav-inner .side-nav .side-item {
    padding-left: 10px;
    position: relative;
    display: inline-block;
}

.side-nav-responsive .side-nav-inner .side-nav .side-item:last-child {
    padding-right: 15px;
    padding-left: 0;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item {
    margin-right: 0;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list {
    margin-top: 0;
    z-index: 5;
    position: relative;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul li {
    display: inline-block;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul li:hover {
    color: #ED3237;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul li:hover ul {
    display: block;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul li a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    padding: 15px;
    display: block;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul li a:hover {
    color: #292323;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul li a i {
    font-size: 18px;
    color: #292323;
    color: #ffffff;
    top: 3px;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul ul {
    position: absolute;
    background: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 5;
    border-radius: 3px;
    width: 180px;
    right: 0;
    top: 50px;
    left: auto;
    border-top: 2px solid #ffffff;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul ul::before {
    content: '';
    position: absolute;
    z-index: -5;
    top: -3px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul ul li {
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    background: #ffffff;
    padding: 5px 10px;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul ul li a {
    color: #292323;
    padding: 0 25px;
    font-size: 15px;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul ul li a img {
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 5px;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .language-list ul ul li a:hover {
    color: #ED3237;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .menu-icon {
    line-height: 1;
    position: relative;
    top: 10px;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .menu-icon .menu-icon-two {
    font-size: 35px;
    color: #ffffff;
}

.side-nav-responsive .side-nav-inner .side-nav .option-item .menu-icon .menu-icon-two:hover {
    color: #292323;
}

.sticky-nav {
    top: 0;
    position: fixed;
    -webkit-animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
    animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
    -webkit-transition: 0.9s;
    transition: 0.9s;
    width: 100% !important;
    z-index: 999;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sticky-nav .navbar-light .navbar-brand img {
    max-width: 100px;
}

.sticky-nav .main-nav {
    top: 0;
    background-color: #ffffff;
    position: fixed;
    border-bottom: none;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sticky-nav .nav-bar-two {
    background-color: #071232;
}

/*=================================
Navbar Area End
====================================*/

/*=================================
Sidebar Modal
====================================*/

.sidebar-modal {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.sidebar-modal .sidebar-modal-inner {
    position: absolute;
    right: -100%;
    top: 0;
    width: 400px;
    overflow-y: scroll;
    height: 100%;
    background-color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1;
    padding: 40px;
}

.sidebar-modal .sidebar-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
}

.sidebar-modal .sidebar-header .sidebar-logo {
    display: inline-block;
}

.sidebar-modal .sidebar-header .close-btn {
    display: inline-block;
    font-size: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 32px;
    background-color: #292323;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    margin-top: 15px;
    float: right;
}

.sidebar-modal .sidebar-header .close-btn:hover {
    background-color: #ED3237;
}

.sidebar-modal .sidebar-about {
    margin-bottom: 30px;
}

.sidebar-modal .sidebar-about .title h2 {
    margin-bottom: 0;
    font-size: 24px;
}

.sidebar-modal .sidebar-about .title p {
    margin-bottom: 0;
    font-size: 15px;
}

.sidebar-modal .contact-us {
    margin-bottom: 30px;
}

.sidebar-modal .contact-us h2 {
    font-size: 20px;
    margin-bottom: 25px;
}

.sidebar-modal .contact-us ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sidebar-modal .contact-us ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: #555555;
}

.sidebar-modal .contact-us ul li:last-child {
    margin-bottom: 0;
}

.sidebar-modal .contact-us ul li i {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 28px;
    color: #ED3237;
}

.sidebar-modal .contact-us ul li a {
    display: block;
    color: #555555;
}

.sidebar-modal .contact-us ul li a:hover {
    color: #ED3237;
}

.sidebar-modal .sidebar-instagram-feed {
    margin-bottom: 30px;
}

.sidebar-modal .sidebar-instagram-feed h2 {
    margin-bottom: 25px;
    font-size: 20px;
}

.sidebar-modal .sidebar-instagram-feed ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    list-style-type: none;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 0;
    margin-top: -10px;
    max-width: 275px;
}

.sidebar-modal .sidebar-instagram-feed ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
}

.sidebar-modal .sidebar-instagram-feed ul li a {
    display: block;
    position: relative;
}

.sidebar-modal .sidebar-instagram-feed ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
    opacity: .50;
    visibility: visible;
}

.sidebar-modal .sidebar-follow-us h2 {
    font-size: 20px;
    margin-bottom: 25px;
}

.sidebar-modal .sidebar-follow-us .social-wrap {
    line-height: 1;
}

.sidebar-modal .sidebar-follow-us .social-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-modal .sidebar-follow-us .social-wrap li {
    display: inline-block;
    padding-right: 10px;
}

.sidebar-modal .sidebar-follow-us .social-wrap li a i {
    font-size: 20px;
    color: #ED3237;
}

.sidebar-modal .sidebar-follow-us .social-wrap li a:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.sidebar-modal.active {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.9);
}

.sidebar-modal.active .sidebar-modal-inner {
    right: 0;
}

/*=================================
Sidebar Modal
====================================*/

/*=================================
Main Banner Area
====================================*/

.home-slider-area {
    position: relative;
}

.home-slider-area .thumbs-wrap {
    position: relative;
    z-index: 1;
}

.home-slider-area .thumbs-wrap .owl-thumbs.home-slider-area-thumb {
    position: absolute;
    bottom: 0;
    left: 53%;
}

.home-slider-area .thumbs-wrap .owl-thumbs.home-slider-area-thumb::before {
    content: '3';
    position: absolute;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    left: 34px;
    right: 0;
    width: 50%;
    height: 100%;
    color: #292323;
    bottom: -10px;
}

.home-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item {
    display: block;
    padding: 0 10px;
}

.home-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item span {
    color: #6f7c8a;
    font-weight: 500;
    font-size: 24px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    display: none;
}

.home-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item.active span {
    color: #ED3237;
    display: block;
}

.home-slider-area .thumbs-wrap .owl-thumbs .owl-thumb-item:hover span {
    color: #ED3237;
    display: block;
}

.home-slider-area .owl-nav {
    margin-top: 0;
}

.home-slider-area .owl-nav .owl-prev {
    position: absolute;
    bottom: -9px;
    left: 51%;
    color: #555555 !important;
    font-size: 25px !important;
    background-color: transparent !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.home-slider-area .owl-nav .owl-prev:hover {
    color: #ED3237 !important;
    background-color: transparent !important;
}

.home-slider-area .owl-nav .owl-next {
    position: absolute;
    bottom: -10px;
    right: 41%;
    color: #555555 !important;
    font-size: 25px !important;
    background-color: transparent !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 1;
}

.home-slider-area .owl-nav .owl-next:hover {
    color: #ED3237 !important;
    background-color: transparent !important;
}

.slider-img img {
    border-radius: 0 50px 50px 0;
}

.slider-content {
    max-width: 600px;
    margin-right: auto;
}

.slider-content .sub-title {
    margin-bottom: 10px;
}

.slider-content .sub-title .sub-title-img1 {
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.slider-content .sub-title span {
    display: inline-block;
    color: #292323;
}

.slider-content .sub-title .sub-title-img2 {
    display: inline-block;
    position: relative;
    top: -2px;
    margin-left: 5px;
}

.slider-content h1 {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-area {
    background-image: url(../img/home-two.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-content {
    padding: 200px 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.banner-content h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #071232;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #292323;
}

.banner-content .banner-btn .contact-btn {
    background-color: #071232;
    display: inline-block;
    padding: 10px 36px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    border-radius: 50px;
}

.banner-content .banner-btn .contact-btn:hover {
    background-color: #ED3237;
}

.banner-content .banner-btn .services-btn {
    margin-left: 20px;
    background-color: transparent;
    display: inline-block;
    padding: 10px 36px;
    color: #071232;
    text-align: center;
    overflow: hidden;
    border-radius: 50px;
    border: 1px solid #071232;
}

.banner-content .banner-btn .services-btn:hover {
    background-color: #071232;
    color: #ffffff;
}

.banner-area-two {
    position: relative;
    z-index: 1;
}

.banner-area-two::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: #F7EBEE;
    border-radius: 50px 0 0 50px;
}

.banner-content-two {
    max-width: 530px;
    margin-left: auto;
}

.banner-content-two h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #071232;
}

.banner-content-two p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #292323;
}

.banner-content-two .banner-btn-two .contact-btn {
    background-color: #9E6E7D;
    display: inline-block;
    padding: 10px 36px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}

.banner-content-two .banner-btn-two .contact-btn:hover {
    background-color: #ED3237;
}

.banner-img {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 600px;
    margin-right: auto;
}

.banner-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 135px;
    right: -30px;
    width: 50%;
    height: 65%;
    background-color: #C5ACB3;
    border-radius: 50px;
}

.banner-img img {
    border-radius: 50px;
}

.banner-shape .shape1 {
    position: absolute;
    top: 10%;
    left: 0%;
    -webkit-animation: rotated360 6s infinite linear;
    animation: rotated360 6s infinite linear;
}

.banner-shape .shape2 {
    position: absolute;
    top: 50%;
    left: 5%;
    -webkit-animation: animationFramesOne 7s infinite linear;
    animation: animationFramesOne 7s infinite linear;
}

.banner-shape .shape3 {
    position: absolute;
    bottom: 15%;
    left: 3%;
    -webkit-animation: pulse 2s infinite linear;
    animation: pulse 2s infinite linear;
}

.banner-shape .shape4 {
    position: absolute;
    top: 13%;
    left: 40%;
    -webkit-animation: animationFramesOne 10s infinite linear;
    animation: animationFramesOne 10s infinite linear;
}

.banner-shape .shape5 {
    position: absolute;
    bottom: 15%;
    left: 40%;
    -webkit-animation: pulse 3s infinite linear;
    animation: pulse 3s infinite linear;
}

/*=================================
Main Banner Area End
====================================*/

/*================================
Inner Banner
==================================*/

.inner-banner {
    position: relative;
    background-position: center center;
    background-size: cover;
}

.inner-banner .inner-title {
    padding-top: 150px;
    padding-bottom: 150px;
}

.inner-banner .inner-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-banner .inner-title ul li {
    font-size: 18px;
    color: #292323;
    display: inline-block;
    margin-right: 30px;
    position: relative;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.inner-banner .inner-title ul li:last-child {
    margin-right: 0;
}

.inner-banner .inner-title ul li:last-child::before {
    display: none;
}

.inner-banner .inner-title ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    right: -19px;
    background-color: #292323;
    width: 2px;
    height: 20px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

.inner-banner .inner-title ul li a {
    color: #292323;
}

.inner-banner .inner-title ul li a:hover {
    color: #ED3237;
}

.inner-banner .inner-title h3 {
    margin-top: 10px;
    font-size: 40px;
    color: #292323;
    font-weight: 700;
    position: relative;
    font-family: "Roboto", sans-serif;
}

.inner-bg1 {
    background-image: url(../img/inner-banner/inner-banner1.jpg);
}

.inner-bg2 {
    background-image: url(../img/inner-banner/inner-banner2.jpg);
}

.inner-bg3 {
    background-image: url(../img/inner-banner/inner-banner3.jpg);
}

.inner-bg4 {
    background-image: url(../img/inner-banner/inner-banner4.jpg);
}

.inner-bg5 {
    background-image: url(../img/inner-banner/inner-banner5.jpg);
}

.inner-bg6 {
    background-image: url(../img/inner-banner/inner-banner6.jpg);
}

.inner-bg7 {
    background-image: url(../img/inner-banner/inner-banner7.jpg);
}

.inner-bg8 {
    background-image: url(../img/inner-banner/inner-banner8.jpg);
}

.inner-bg9 {
    background-image: url(../img/inner-banner/inner-banner9.jpg);
}

.inner-bg10 {
    background-image: url(../img/inner-banner/inner-banner10.jpg);
}

/*=================================
About Area 
====================================*/

.about-content {
    max-width: 530px;
    margin-left: auto;
    margin-bottom: 30px;
}

.about-content .section-title {
    margin-bottom: 15px;
}

.about-content .section-title p {
    max-width: 450px;
}

.about-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.about-content ul li {
    display: block;
    margin-bottom: 5px;
}

.about-content ul li:last-child {
    margin-bottom: 0;
}

.about-content ul li:hover {
    color: #ED3237;
}

.about-content ul li:hover i {
    color: #555555;
}

.about-content ul li i {
    color: #ED3237;
    margin-right: 10px;
}

.about-img {
    margin-top: 30px;
    max-width: 600px;
    margin-right: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.about-img img {
    border-radius: 50px 0 0 50px;
}

.about-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    bottom: -30px;
    right: -30px;
    width: 60%;
    height: 115%;
    background-color: #061662;
}

.about-img-2 {
    max-width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.about-img-2::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 70px;
    left: -30px;
    width: 40%;
    height: 80%;
    background-color: #061662;
}

.about-content-two {
    max-width: 530px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: 30px;
}

.about-content-two .section-title {
    margin-bottom: 30px;
}

.about-content-two .section-title p {
    max-width: 450px;
}

.about-content-two ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    max-width: 410px;
}

.about-content-two ul li {
    display: inline-block;
    color: #292323;
    margin-right: 30px;
    margin-bottom: 7px;
}

.about-content-two ul li:last-child {
    margin-bottom: 0;
}

.about-content-two ul li:hover {
    color: #ED3237;
}

.about-content-two ul li:hover i {
    color: #292323;
}

.about-content-two ul li i {
    color: #ED3237;
    margin-right: 5px;
}

.about-content-two .about-counter {
    margin-bottom: 30px;
}

.about-content-two .about-counter h3 {
    font-size: 50px;
    color: #ED3237;
    margin-bottom: 0;
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.about-content-two .about-counter p {
    font-size: 18px;
    color: #ED3237;
    margin-bottom: 0;
}

.about-content-two .default-btn {
    background-color: #071232;
    border-radius: 50px;
}

.about-content-two .default-btn::before {
    background-color: #ED3237;
}

.about-content-two .default-btn::after {
    background-color: #ED3237;
}

.about-img-3 {
    max-width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.about-img-3 img {
    border-radius: 50px;
}

.about-img-3::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50px;
    left: -30px;
    width: 40%;
    height: 80%;
    background-color: #061662;
    border-radius: 50px;
}

/*=================================
About Area End
====================================*/

/*=================================
Service Area
====================================*/

.service-area {
    position: relative;
}

.service-area .section-title h2 {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
}

.service-area .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.service-area .owl-dots .owl-dot span {
    background-color: #ED3237 !important;
    width: 8px !important;
    height: 8px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
}

.service-area .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    width: 15px !important;
    height: 15px !important;
}

.service-area .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    width: 15px !important;
    height: 15px !important;
}

.service-area-two {
    position: relative;
}

.service-area-two .section-title h2 {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-two .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.service-area-two .owl-dots .owl-dot span {
    background-color: #ED3237 !important;
    width: 8px !important;
    height: 8px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
}

.service-area-two .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    width: 15px !important;
    height: 15px !important;
}

.service-area-two .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    width: 15px !important;
    height: 15px !important;
}

.services-item {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px 15px 0 0;
}

.services-item a {
    display: block;
}

.services-item a img {
    border-radius: 15px 15px 0 0;
}

.services-item:hover .content::before {
    height: 75%;
    opacity: 1;
}

.services-item .content {
    position: relative;
    padding: 20px 30px;
}

.services-item .content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 3px;
    height: 0;
    left: 0;
    background-color: #ED3237;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    opacity: 0;
}

.services-item .content h3 {
    margin-bottom: 10px;
}

.services-item .content h3 a {
    color: #292323;
}

.services-item .content p {
    margin-bottom: 15px;
}

.services-item .content .read-more-btn {
    background-color: #ED3237;
    padding: 8px 24px;
    color: #ffffff;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
}

.services-item .content .read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.services-item .content .read-more-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.services-item .content .read-more-btn:hover {
    color: #ffffff;
}

.services-item .content .read-more-btn:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.services-item .content .read-more-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.services-card {
    margin-bottom: 30px;
}

.services-card:hover .service-title h3 {
    background-color: #ffffff;
}

.services-card:hover .service-title h3 a {
    color: #292323;
}

.services-card a {
    display: block;
}

.services-card .service-title {
    position: relative;
}

.services-card .service-title h3 {
    padding: 16px 20px;
    background-color: #071232;
    font-size: 22px;
}

.services-card .service-title h3 a {
    color: #ffffff;
}

.services-card .service-title .service-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    padding: 13px 30px;
    color: #ffffff;
    background-color: #ED3237;
    text-align: center;
}

.service-area-three .section-title h2 {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
}

.services-card-two {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.services-card-two::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 0;
    left: 0;
    right: 0;
    background-color: #F7EBEE;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    opacity: 0;
    border-radius: 15px;
}

.services-card-two a {
    display: block;
}

.services-card-two a img {
    border-radius: 15px;
}

.services-card-two:hover::before {
    height: 100%;
    opacity: 1;
}

.services-card-two .content {
    padding: 20px 30px;
    text-align: center;
}

.services-card-two .content h3 {
    margin-bottom: 10px;
}

.services-card-two .content h3 a {
    color: #292323;
}

.services-card-two .content p {
    margin-bottom: 15px;
}

.services-card-two .content .read-btn {
    background-color: transparent;
    padding: 8px 24px;
    color: #9E6E7D;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #9E6E7D;
}

.services-card-two .content .read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #9E6E7D;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.services-card-two .content .read-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #9E6E7D;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.services-card-two .content .read-btn:hover {
    color: #ffffff;
}

.services-card-two .content .read-btn:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.services-card-two .content .read-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.progressbar-area {
    padding: 50px 40px;
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.progressbar-area h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.progressbar-area p {
    margin-bottom: 15px;
}

.all-progressbar-bar {
    margin-right: 30px;
}

.all-progressbar-bar .progressbar-bar {
    margin-bottom: 20px;
}

.all-progressbar-bar .progressbar-bar .progress-title {
    font-size: 18px;
    font-weight: 500;
}

.all-progressbar-bar .progressbar-bar .progress-title-area {
    position: relative;
}

.all-progressbar-bar .progressbar-bar .progress-number-wrapper {
    width: 100%;
    z-index: 10;
    font-size: 11px;
    line-height: 24px;
    height: 24px;
    letter-spacing: 0px;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    color: #ffffff;
}

.all-progressbar-bar .progressbar-bar .progress-number-mark {
    margin-bottom: 4px;
    border-radius: 3px;
    color: #1a1a1a;
    padding: 0 8px;
    position: absolute;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 600;
}

.all-progressbar-bar .progressbar-bar .down-arrow {
    border: 5px solid #ED3237;
    position: absolute;
    left: 50%;
    top: 133%;
    height: 16px;
    width: 16px;
    border-radius: 50px;
    background-color: #ffffff;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.all-progressbar-bar .progressbar-bar .progress-content-outter {
    height: 6px;
    background-color: #061662;
}

.all-progressbar-bar .progressbar-bar .progress-content {
    height: 6px;
    background-color: #ED3237;
    width: 0%;
}

.progressbar-content-side {
    margin-bottom: 30px;
}

.services-tab {
    margin-top: 30px;
}

.services-tab .tabs {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.services-tab .tabs li {
    display: inline-block;
    line-height: initial;
    margin-right: 35px;
    font-family: "Catamaran", sans-serif;
}

.services-tab .tabs li:last-child {
    margin-right: none;
}

.services-tab .tabs li a {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #292323;
}

.services-tab .tabs li a:focus {
    color: #ED3237;
}

.services-tab .tabs li.active a {
    color: #ED3237;
}

.services-tab .tabs li.current a {
    color: #ED3237;
}

.service-article .service-article-img {
    margin-bottom: 30px;
}

.service-article .service-article-content {
    margin-bottom: 20px;
}

.service-article .service-article-content h2 {
    font-size: 26px;
    color: #292323;
    margin-bottom: 15px;
}

.service-article .service-article-content p {
    margin-bottom: 20px;
}

.service-article .service-article-other {
    margin-bottom: 20px;
}

.service-article .service-article-other h2 {
    font-size: 26px;
    color: #292323;
    margin-bottom: 15px;
}

.service-article .service-article-other p {
    margin-bottom: 15px;
}

.service-article .service-article-other ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.service-article .service-article-other ul li {
    display: block;
    margin-bottom: 10px;
}

.service-article .service-article-other ul li:last-child {
    margin-bottom: 0;
}

.service-article .service-article-other ul li:hover {
    color: #ED3237;
}

.service-article .service-article-other ul li:hover i {
    color: #555555;
}

.service-article .service-article-other ul li i {
    color: #ED3237;
    margin-right: 10px;
}

.service-article .more-services h2 {
    font-size: 26px;
    color: #292323;
    margin-bottom: 20px;
}

.services-bar-widget {
    margin-bottom: 35px;
    background-color: #061662;
}

.services-bar-widget .title {
    font-size: 20px;
    color: #292323;
    padding: 15px 30px;
    font-weight: 700;
    border-bottom: 2px solid #ED3237;
}

.services-bar-widget .side-bar-categories {
    padding: 10px 15px 20px;
}

.services-bar-widget .side-bar-categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.services-bar-widget .side-bar-categories ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
}

.services-bar-widget .side-bar-categories ul li:hover {
    background-color: #ED3237;
}

.services-bar-widget .side-bar-categories ul li a {
    display: inline-block;
    color: #071232;
    font-weight: normal;
    padding: 7px 20px;
    font-weight: 600;
}

.services-bar-widget .side-bar-categories ul li a:hover {
    color: #ffffff;
}

/*=================================
Service Area End
====================================*/

.architect-img {
    max-width: 550px;
    margin-left: auto;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.architect-img .images img {
    border-radius: 50px;
}

.architect-img .dots {
    position: absolute;
    z-index: -1;
    top: 70px;
    left: -75px;
}

.architect-img .dots img {
    max-width: 150px;
}

.architect-content {
    max-width: 530px;
    margin-right: auto;
    margin-left: 40px;
    margin-bottom: 30px;
}

.architect-content .section-title {
    margin-bottom: 30px;
}

.architect-content .default-btn {
    background-color: #9E6E7D;
    border-radius: 5px;
}

/*=================================
Choose Area
====================================*/

.choose-img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
}

.choose-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 50%;
    height: 60%;
    background-color: #061662;
}

.choose-img img {
    border-radius: 0 50px 0 50px;
}

.choose-content {
    max-width: 530px;
    margin-right: auto;
    margin-left: 40px;
    margin-bottom: 30px;
}

.choose-content .section-title {
    margin-bottom: 30px;
}

.choose-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.choose-content ul li {
    display: block;
    padding-left: 70px;
    position: relative;
    margin-bottom: 10px;
}

.choose-content ul li:last-child {
    margin-bottom: 0;
}

.choose-content ul li i {
    font-size: 50px;
    color: #ED3237;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.choose-content ul li .content {
    max-width: 365px;
}

.choose-content ul li .content h3 {
    margin-bottom: 10px;
}

.choose-content ul li .content p {
    margin-bottom: 0;
}

.choose-area-two .section-title h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.choose-card {
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
    background-color: #061662;
    padding: 30px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.choose-card:hover {
    background-color: #ffffff;
}

.choose-card:hover i {
    background-color: #061662;
}

.choose-card i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background-color: #ffffff;
    font-size: 50px;
    color: #ED3237;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
}

.choose-card .content h3 {
    margin-bottom: 10px;
}

.choose-card .content p {
    margin-bottom: 0;
}

.choose-img-2 {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
}

.choose-img-2::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 60px;
    left: -30px;
    right: -30px;
    width: 110%;
    height: 80%;
    background-color: #9E6E7D;
    border-radius: 50px;
    opacity: 0.5;
}

.choose-img-2 img {
    border-radius: 50px;
}

.choose-content-two {
    max-width: 530px;
    margin-right: auto;
    margin-left: 40px;
    margin-bottom: 30px;
}

.choose-content-two .section-title {
    margin-bottom: 20px;
}

.choose-content-two .choose-faq-accordion .choose-accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-item {
    display: block;
    margin-bottom: 10px;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-item:last-child {
    margin-bottom: 0;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-title {
    padding: 10px 20px 7px 30px;
    color: #292323;
    text-decoration: none;
    position: relative;
    display: block;
    font-family: "Catamaran", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-title i {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 24px;
    color: #9E6E7D;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-title.active i::before {
    content: "\eb8b";
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-content {
    display: none;
    position: relative;
    margin-top: 0;
    padding-bottom: 0;
    padding-right: 20px;
    padding-left: 60px;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    height: 96%;
    width: 2px;
    background-color: #9E6E7D;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-content p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

.choose-content-two .choose-faq-accordion .choose-accordion .choose-accordion-content.show {
    display: block;
}

.choose-content-three {
    max-width: 530px;
    margin-left: auto;
    margin-bottom: 30px;
}

.choose-content-three .section-title {
    margin-bottom: 30px;
}

.choose-content-three ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.choose-content-three ul li {
    display: block;
    padding-left: 70px;
    position: relative;
    margin-bottom: 10px;
}

.choose-content-three ul li:last-child {
    margin-bottom: 0;
}

.choose-content-three ul li i {
    font-size: 50px;
    color: #ED3237;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.choose-content-three ul li .content {
    max-width: 365px;
}

.choose-content-three ul li .content h3 {
    margin-bottom: 10px;
}

.choose-content-three ul li .content p {
    margin-bottom: 0;
}

.choose-img-3 {
    margin-top: 30px;
    max-width: 570px;
    margin-right: auto;
    margin-left: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border-radius: 50px;
}

.choose-img-3 img {
    border-radius: 50px;
}

.choose-img-3::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: #ED3237;
    opacity: 0.5;
    border-radius: 50px;
}

/*=================================
Choose Area End
====================================*/

/*=================================
Work Area
====================================*/

.work-area .section-title h2 {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
}

.work-card {
    background-color: #ffffff;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 20px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px 15px 0 0;
}

.work-card:hover::before {
    width: 2px;
    height: 75%;
    top: 35px;
    background-color: #ED3237;
}

.work-card::before {
    content: '';
    position: absolute;
    border-radius: 15px 15px 0 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #061662;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: -1;
}

.work-card i {
    font-size: 85px;
    color: #ED3237;
    position: absolute;
    top: 30px;
    left: 30px;
    line-height: 1;
}

.work-card .content {
    padding-left: 105px;
}

.work-card .content h3 {
    margin-bottom: 10px;
}

.work-card .content p {
    margin-bottom: 15px;
}

.work-card .content .read-btn {
    background-color: #ED3237;
    padding: 8px 24px;
    color: #ffffff;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
}

.work-card .content .read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.work-card .content .read-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.work-card .content .read-btn:hover {
    color: #ffffff;
}

.work-card .content .read-btn:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.work-card .content .read-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.work-content {
    max-width: 530px;
    margin-left: auto;
    margin-bottom: 30px;
}

.work-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.work-content .work-accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.work-content .work-accordion .work-accordion-item {
    display: block;
}

.work-content .work-accordion .work-accordion-item:last-child {
    margin-bottom: 0;
}

.work-content .work-accordion .work-accordion-title {
    padding: 10px 20px 7px 30px;
    color: #292323;
    text-decoration: none;
    position: relative;
    display: block;
    font-family: "Catamaran", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.work-content .work-accordion .work-accordion-title i {
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 24px;
    color: #ED3237;
    border-radius: 50px;
    text-align: center;
    background-color: transparent;
}

.work-content .work-accordion .work-accordion-title.active i::before {
    content: "\ea32";
}

.work-content .work-accordion .work-accordion-content {
    display: none;
    position: relative;
    margin-top: 0;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
}

.work-content .work-accordion .work-accordion-content p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

.work-content .work-accordion .work-accordion-content.show {
    display: block;
}

.work-img {
    max-width: 570px;
    margin-right: auto;
    margin-left: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.work-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    right: -30px;
    width: 630px;
    height: 375px;
    background-color: #ED3237;
    opacity: 0.5;
}

.work-content-two {
    max-width: 650px;
    margin-left: auto;
    margin-bottom: 30px;
}

.work-content-two .section-title {
    margin-bottom: 20px;
}

.work-content-two .section-title h2 {
    max-width: 620px;
}

.work-content-two .section-title p {
    max-width: 590px;
}

.work-content-two ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.work-content-two ul li {
    display: block;
    font-size: 20px;
    color: #292323;
    font-weight: 600;
    margin-bottom: 10px;
}

.work-content-two ul li:last-child {
    margin-bottom: 0;
}

.work-content-two ul li:hover {
    color: #9E6E7D;
}

.work-img-2 {
    margin-top: 30px;
    max-width: 550px;
    margin-right: auto;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border-radius: 50px;
}

.work-img-2 img {
    border-radius: 50px;
}

.work-img-2::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: #9E6E7D;
    opacity: 0.5;
    border-radius: 50px;
}

.work-content-three {
    margin-bottom: 30px;
}

.work-content-three .section-title {
    margin-bottom: 20px;
}

.work-content-three .section-title h2 {
    max-width: 620px;
}

.work-content-three .section-title p {
    max-width: 590px;
}

.work-content-three ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.work-content-three ul li {
    display: block;
    font-size: 20px;
    color: #292323;
    font-weight: 600;
    margin-bottom: 10px;
}

.work-content-three ul li:last-child {
    margin-bottom: 0;
}

.work-content-three ul li:hover {
    color: #ED3237;
}

.work-content-text {
    margin-bottom: 30px;
    position: relative;
}

.work-content-text::before {
    content: '';
    position: absolute;
    top: -40px;
    width: 2px;
    height: 135%;
    left: -35px;
    background-color: #555555;
}

.work-content-text p {
    margin-bottom: 0;
    font-size: 15px;
}

.work-play-btn {
    margin-bottom: 30px;
    background-image: url(../img/play-btn-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 250px 0;
    border-radius: 15px;
}

.work-play-btn .play-btn {
    width: 75px;
    height: 75px;
    background-color: #ED3237;
    border-radius: 50px;
    line-height: 75px;
    display: inline-block;
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    position: relative;
}

.work-play-btn .play-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    position: absolute;
    border: 1px solid #ED3237;
    -webkit-animation: scale 1.8s infinite ease-in-out;
    animation: scale 1.8s infinite ease-in-out;
}

.work-play-btn .play-btn:hover {
    background-color: #071232;
}

.work-play-btn .play-btn:hover::before {
    border-color: #071232;
}

/*=================================
Work Area End
====================================*/

/*=================================
History Area 
====================================*/

.history-content {
    max-width: 440px;
    margin-left: auto;
}

.history-content .section-title {
    margin-bottom: 30px;
}

.history-content .history-counter {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    margin-bottom: 30px;
}

.history-content .history-counter h3 {
    font-size: 50px;
    color: #ED3237;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.history-content .history-counter p {
    font-size: 20px;
    margin-bottom: 0;
    color: #292323;
    line-height: 1.3;
    font-weight: 600;
}

.history-img {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    margin-top: 30px;
    max-width: 620px;
    margin-right: auto;
    margin-left: 90px;
}

.history-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 30%;
    height: 113%;
    background-color: #ED3237;
    opacity: 0.6;
}

.history-img::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    right: -30px;
    width: 30%;
    height: 113%;
    background-color: #ED3237;
    opacity: 0.6;
}

/*=================================
History Area End
====================================*/

/*=================================
Project Area 
====================================*/

.project-area .section-title h2 {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.project-tab {
    margin-top: 30px;
}

.project-tab .tabs {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.project-tab .tabs li {
    display: inline-block;
    line-height: initial;
    margin-right: 35px;
    font-family: "Catamaran", sans-serif;
}

.project-tab .tabs li:last-child {
    margin-right: none;
}

.project-tab .tabs li a {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #292323;
}

.project-tab .tabs li a:focus {
    color: #ED3237;
}

.project-tab .tabs li.active a {
    color: #ED3237;
}

.project-tab .tabs li.current a {
    color: #ED3237;
}

.tab .tabs_item {
    display: none;
}

.tab .tabs_item:first-child {
    display: block;
}

.project-item {
    position: relative;
    margin-bottom: 30px;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: #292323;
    opacity: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.project-item:hover::before {
    height: 100%;
    opacity: 0.6;
}

.project-item:hover .project-btn-area {
    opacity: 1;
}

.project-item a {
    display: block;
}

.project-item .project-btn-area {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.project-item .project-btn-area .default-btn {
    background-color: #ffffff;
    color: #555555;
    display: inline-block;
}

.project-area-two .section-title h2 {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: #292323;
    opacity: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.project-card:hover::before {
    height: 100%;
    opacity: 0.6;
}

.project-card:hover .content {
    opacity: 1;
}

.project-card .content {
    position: absolute;
    top: 20%;
    left: 30px;
    max-width: 220px;
    opacity: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.project-card .content h3 {
    color: #ffffff;
}

.project-card .content p {
    color: #ffffff;
}

.project-card .content .default-btn {
    background-color: #ffffff;
    color: #555555;
    display: inline-block;
    border-radius: 50px;
}

.project-card-two {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.project-card-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: #292323;
    opacity: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    border-radius: 15px;
}

.project-card-two:hover::before {
    height: 100%;
    opacity: 0.6;
}

.project-card-two:hover .content {
    opacity: 1;
}

.project-card-two a {
    display: block;
}

.project-card-two a img {
    border-radius: 15px;
}

.project-card-two .content {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 305px;
    opacity: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    text-align: center;
}

.project-card-two .content .project-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #ffffff;
    border-radius: 50px;
    color: #9E6E7D;
    font-size: 26px;
    display: inline-block;
    margin: 0 auto;
}

.project-card-two .content .project-icon:hover {
    background-color: #9E6E7D;
    color: #ffffff;
}

.project-card-two .content h3 {
    margin-top: 15px;
    color: #ffffff;
    margin-bottom: 10px;
}

.project-card-two .content p {
    color: #ffffff;
    margin-bottom: 15px;
}

.project-card-two .content .default-btn {
    background-color: #9E6E7D;
    color: #ffffff;
    display: inline-block;
    border-radius: 5px;
}

.project-area-three {
    position: relative;
}

.project-area-three .section-title h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.project-area-three .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.project-area-three .owl-dots .owl-dot span {
    background-color: transparent !important;
    width: 10px !important;
    height: 10px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
    border: 1px solid #ED3237;
}

.project-area-three .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.project-area-three .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.project-category {
    background-color: #061662;
    margin-bottom: 30px;
    padding: 30px 20px;
}

.project-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.project-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-category ul li {
    display: block;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
}

.project-category ul li:hover {
    background-color: #ED3237;
}

.project-category ul li a {
    display: inline-block;
    color: #071232;
    font-weight: normal;
    padding: 10px 20px;
    font-weight: 600;
}

.project-category ul li a i {
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.project-category ul li a:hover {
    color: #ffffff;
}

.project-tag {
    padding: 30px 0;
    border: 1px solid #ED3237;
    margin-bottom: 30px;
}

.project-tag .project-tag-card {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0dddd;
    margin-left: 20px;
    margin-right: 20px;
}

.project-tag .project-tag-card h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.project-tag .project-tag-card span {
    margin-bottom: 0;
    font-size: 16px;
}

.project-tag .project-bar-tag {
    margin-left: 20px;
    margin-right: 20px;
}

.project-tag .project-bar-tag h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-tag .project-bar-tag .side-bar-widget-tag {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-tag .project-bar-tag .side-bar-widget-tag li {
    display: inline-block;
    padding: 7px 15px;
    margin: 5px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    color: #555555;
    font-size: 14px;
    font-weight: 600;
    background-color: #061662;
}

.project-tag .project-bar-tag .side-bar-widget-tag li:hover {
    background-color: #ED3237;
}

.project-tag .project-bar-tag .side-bar-widget-tag li a {
    color: #555555;
}

.project-tag .project-bar-tag .side-bar-widget-tag li:hover a {
    color: #ffffff;
}

.projects-details-article {
    margin-bottom: 30px;
}

.projects-details-article .section-title {
    margin-bottom: 20px;
}

.projects-details-article p {
    margin-bottom: 20px;
}

.projects-details-article .projects-play-btn {
    margin-bottom: 30px;
    background-image: url(../img/project/project-style5.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 140px 0;
}

.projects-details-article .projects-play-btn .play-on-btn {
    width: 75px;
    height: 75px;
    background-color: #ED3237;
    border-radius: 50px;
    line-height: 75px;
    display: inline-block;
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    position: relative;
}

.projects-details-article .projects-play-btn .play-on-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    position: absolute;
    border: 1px solid #ED3237;
    -webkit-animation: scale 1.8s infinite ease-in-out;
    animation: scale 1.8s infinite ease-in-out;
}

.projects-details-article .projects-play-btn .play-on-btn:hover {
    background-color: #071232;
}

.projects-details-article .projects-play-btn .play-on-btn:hover::before {
    border-color: #071232;
}

.projects-details-article ul {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.projects-details-article ul li {
    display: inline-block;
    margin-right: 15px;
}

.projects-details-article ul li:last-child {
    margin-right: 0;
}

.projects-details-article ul li a {
    padding: 10px 52px;
    background-color: transparent;
    color: #292323;
    border: 1px solid #ED3237;
}

.projects-details-article ul li a:hover {
    color: #ffffff;
    background-color: #ED3237;
    border-color: #ED3237;
}

.projects-details-article ul li a.active {
    color: #ffffff;
    background-color: #ED3237;
    border-color: #ED3237;
}

.projects-details-article ul li a.active:hover {
    background-color: transparent;
    color: #292323;
    border: 1px solid #ED3237;
}

.project-style-img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.project-style-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50px;
    left: -30px;
    background-color: #ED3237;
    opacity: 0.5;
    height: 80%;
    width: 100%;
}

.project-style-content {
    margin-bottom: 25px;
}

.project-style-content .section-title {
    margin-bottom: 15px;
}

.project-style-content .section-title h2 {
    margin-bottom: 20px;
}

.project-style-content .section-title p {
    padding-bottom: 10px;
    padding-top: 0;
}

/*=================================
Project Area End
====================================*/

/*=================================
Testimonials Area 
====================================*/

.testimonials-area {
    position: relative;
}

.testimonials-area h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 490px;
}

.testimonials-area::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 58%;
    top: 185px;
    left: 47%;
    background-color: #ED3237b5;
}

.testimonials-area .thumbs-wrap {
    z-index: 1;
}

.testimonials-area .thumbs-wrap .owl-thumbs.testimonials-area-thumb.active .owl-thumb-item ul li .content h3 {
    color: #ED3237;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item {
    display: block;
    padding: 0 10px;
    margin-bottom: 30px;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul li {
    display: inline-block;
    padding-left: 140px;
    position: relative;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul li .content {
    padding-top: 10px;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul li .content h3 {
    margin-bottom: 10px;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul li .content span {
    margin-bottom: 0;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item ul li .content p {
    margin-bottom: 0;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item.active ul li .content h3 {
    color: #ED3237 !important;
    display: block;
}

.testimonials-area .thumbs-wrap .owl-thumbs .owl-thumb-item:hover ul li .content h3 {
    color: #ED3237;
    display: block;
}

.testimonials-slider {
    position: relative;
}

.testimonials-slider .owl-nav {
    margin-top: 0;
}

.testimonials-slider .owl-nav .owl-prev {
    position: absolute;
    bottom: -60px;
    left: 0;
    color: #555555 !important;
    font-size: 20px !important;
    background-color: transparent !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.testimonials-slider .owl-nav .owl-prev:hover {
    color: #ED3237 !important;
    background-color: transparent !important;
}

.testimonials-slider .owl-nav .owl-next {
    position: absolute;
    bottom: -60px;
    left: 45px;
    color: #555555 !important;
    font-size: 20px !important;
    background-color: transparent !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 1;
}

.testimonials-slider .owl-nav .owl-next:hover {
    color: #ED3237 !important;
    background-color: transparent !important;
}

.testimonials-item p {
    font-size: 18px;
    color: #292323;
    margin-bottom: 15px;
}

.testimonials-item span {
    margin-bottom: 0;
}

.testimonials-area-two {
    position: relative;
    padding-bottom: 85px;
}

.testimonials-area-two .section-title h2 {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-area-two .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.testimonials-area-two .owl-dots .owl-dot span {
    background-color: transparent !important;
    width: 10px !important;
    height: 10px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
    border: 1px solid #ED3237;
}

.testimonials-area-two .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
    width: 15px !important;
    height: 15px !important;
}

.testimonials-area-two .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
    width: 15px !important;
    height: 15px !important;
}

.testimonials-item-two {
    margin-bottom: 30px;
    border-radius: 50px;
}

.testimonials-item-two .testimonials-card {
    margin-left: 30px;
    margin-bottom: 30px;
}

.testimonials-item-two .testimonials-card i {
    font-size: 50px;
    color: #9E6E7D;
}

.testimonials-item-two .testimonials-card p {
    font-size: 18px;
    color: #292323;
    margin-bottom: 15px;
}

.testimonials-item-two .testimonials-card span {
    margin-bottom: 0;
}

.testimonials-img {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: 30px;
}

.testimonials-img img {
    border-radius: 50px;
}

.testimonials-area-three {
    position: relative;
    padding-bottom: 85px;
}

.testimonials-area-three .section-title {
    margin-bottom: 30px;
}

.testimonials-area-three .section-title h2 {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-area-three .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.testimonials-area-three .owl-dots .owl-dot span {
    background-color: transparent !important;
    width: 10px !important;
    height: 10px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
    border: 1px solid #ED3237;
}

.testimonials-area-three .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.testimonials-area-three .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.testimonials-style {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.testimonials-style img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

.testimonials-style .content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonials-style .content span {
    color: #555555;
    margin-bottom: 0;
}

.testimonials-style .content .rating {
    color: #ED3237;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonials-style .content .rating i {
    display: inline-block;
}

.testimonials-style p {
    font-size: 18px;
    color: #292323;
    margin: 0 auto;
    max-width: 670px;
}

.testimonials-style .shape-icon1 {
    position: absolute;
    top: 35%;
    left: 10%;
    font-size: 60px;
    color: #F7EBEE;
}

.testimonials-style .shape-icon2 {
    position: absolute;
    bottom: -55px;
    right: 10%;
    font-size: 60px;
    -webkit-transform: rotate(185deg);
    transform: rotate(185deg);
    color: #F7EBEE;
}

.testimonials-shape .shape1 {
    position: absolute;
    top: 15%;
    left: 20%;
    -webkit-animation: pulse 3s infinite linear;
    animation: pulse 3s infinite linear;
}

.testimonials-shape .shape2 {
    position: absolute;
    bottom: 5%;
    left: 20%;
    -webkit-animation: animationFramesOne 7s infinite linear;
    animation: animationFramesOne 7s infinite linear;
}

.testimonials-shape .shape3 {
    position: absolute;
    top: 15%;
    right: 20%;
    -webkit-animation: rotated360 6s infinite linear;
    animation: rotated360 6s infinite linear;
}

.testimonials-shape .shape4 {
    position: absolute;
    top: 45%;
    right: 30%;
    -webkit-animation: animationFramesOne 12s infinite linear;
    animation: animationFramesOne 12s infinite linear;
}

/*=================================
Testimonials Area End
====================================*/

/*=================================
Product Area 
====================================*/

.product-card {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
    background-color: #ffffff;
}

.product-card a {
    display: block;
}

.product-card a img {
    text-align: center;
}

.product-card .product-content {
    padding: 30px 20px;
    position: relative;
}

.product-card .product-content h3 {
    text-transform: capitalize;
    margin-bottom: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 20px;
}

.product-card .product-content h3 a {
    color: #555555;
}

.product-card .product-content h3 a:hover {
    color: #ED3237;
}

.product-card .product-content span {
    color: #292323;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 25px;
    right: 20px;
}

.product-card .product-content .rating {
    color: #ED3237;
    margin-bottom: 15px;
}

.product-card .product-content .product-btn {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-card .product-content .product-btn li {
    display: inline-block;
    margin-right: 10px;
}

.product-card .product-content .product-btn li:last-child {
    margin-right: 0;
}

.product-card .product-content .product-btn li a {
    padding: 10px 24px;
    background-color: #ED3237;
    color: #ffffff;
    display: inline-block;
    border-radius: 3px;
}

.product-card .product-content .product-btn li a:hover {
    background-color: #071232;
}

.product-detls-image {
    margin-bottom: 30px;
}

.product-desc {
    margin-bottom: 30px;
}

.product-desc h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
}

.product-desc .price {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #292323;
}

.product-desc .price .old-price {
    text-decoration: line-through;
    color: #555555;
    margin-left: 10px;
}

.product-desc .product-review {
    margin-bottom: 15px;
}

.product-desc .product-review .rating {
    display: inline-block;
    padding-right: 5px;
    font-size: 14px;
}

.product-desc .product-review .rating i {
    color: #ED3237;
}

.product-desc .product-review .rating-count {
    margin-left: 5px;
    display: inline-block;
    color: #555555;
    border-bottom: 1px solid #555555;
    line-height: initial;
}

.product-desc .product-review .rating-count:hover {
    color: #ED3237;
    border-color: #ED3237;
}

.product-desc p {
    margin-bottom: 0;
}

.product-desc .input-count-area h3 {
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
    margin-right: 15px;
}

.product-desc .input-count-area .input-counter {
    margin-top: 10px;
    max-width: 130px;
    min-width: 130px;
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.product-desc .input-count-area .input-counter span {
    position: absolute;
    top: 2px;
    background-color: transparent;
    cursor: pointer;
    color: #555555;
    width: 50px;
    height: 100%;
    line-height: 45px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product-desc .input-count-area .input-counter span:hover {
    color: #ED3237;
}

.product-desc .input-count-area .input-counter .minus-btn {
    left: 0;
}

.product-desc .input-count-area .input-counter .plus-btn {
    right: 0;
}

.product-desc .input-count-area .input-counter input {
    height: 45px;
    color: #555555;
    outline: 0;
    display: block;
    border: none;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
}

.product-desc .product-add-btn {
    margin-top: 20px;
}

.product-desc .product-add-btn .default-btn {
    border: none;
    margin-right: 20px;
    border-radius: 0;
}

.product-desc .product-share {
    margin-top: 30px;
}

.product-desc .product-share ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.product-desc .product-share ul li {
    display: inline-block;
    margin: 0 3px;
}

.product-desc .product-share ul li span {
    color: #292323;
    margin-right: 5px;
    font-size: 16px;
}

.product-desc .product-share ul li a {
    width: 35px;
    height: 35px;
    background-color: #ED3237;
    font-size: 16px;
    color: #ffffff;
    line-height: 35px;
    border-radius: 50px;
    text-align: center;
}

.product-desc .product-share ul li a:hover {
    background-color: #071232;
}

.product .input-count-area .input-counter input::-webkit-input-placeholder {
    color: #555555;
}

.product .input-count-area .input-counter input:-ms-input-placeholder {
    color: #555555;
}

.product .input-count-area .input-counter input::-ms-input-placeholder {
    color: #555555;
}

.product .input-count-area .input-counter input::placeholder {
    color: #555555;
}

.products-details-tab .tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #cccccc;
    text-align: center;
}

.products-details-tab .tabs li {
    display: inline-block;
    line-height: initial;
    margin-right: 25px;
}

.products-details-tab .tabs li a {
    display: inline-block;
    position: relative;
    font-size: 17px;
    font-weight: 600;
    color: #555555;
    padding-bottom: 15px;
    border-bottom: 1px solid #b1acac;
}

.products-details-tab .tabs li a span {
    color: #ED3237;
}

.products-details-tab .tabs li a:focus {
    color: #ED3237;
    border-bottom: 1px solid #ED3237;
}

.products-details-tab .tabs li.active a {
    color: #ED3237;
    border-bottom: 1px solid #ED3237;
}

.products-details-tab .tabs li.active a span {
    color: #555555;
}

.products-details-tab .tabs li.current a {
    color: #ED3237;
    border-bottom: 1px solid #ED3237;
}

.products-details-tab .tabs li.current a span {
    color: #555555;
}

.products-tabs-decs {
    max-width: 840px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.products-tabs-decs p {
    color: #555555;
    font-weight: 600;
    margin-bottom: 30px;
}

.products-tabs-reviews ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.products-tabs-reviews ul li {
    position: relative;
    padding-bottom: 40px;
    padding-left: 200px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.products-tabs-reviews ul li:last-child {
    margin-bottom: 0;
}

.products-tabs-reviews ul li img {
    position: absolute;
    top: 0;
    left: 90px;
    width: 90px;
    height: 90px;
}

.products-tabs-reviews ul li h3 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #292323;
}

.products-tabs-reviews ul li .content .rating {
    display: inline-block;
    color: #ED3237;
    margin-right: 20px;
    position: relative;
}

.products-tabs-reviews ul li .content .rating::before {
    content: '';
    position: absolute;
    top: 3px;
    right: -13px;
    width: 1px;
    height: 20px;
    background-color: #cccccc;
}

.products-tabs-reviews ul li .content span {
    margin-bottom: 10px;
    display: inline-block;
}

.products-tabs-reviews ul li p {
    margin-bottom: 0;
    max-width: 650px;
}

.reviews-form {
    margin-top: 35px;
}

.reviews-form .contact-form {
    padding: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
}

.reviews-form .contact-form h3 {
    text-align: center;
    font-size: 24px;
    color: #292323;
    margin-bottom: 10px;
}

.reviews-form .contact-form .form-group .form-control {
    border: 1px solid #ED3237;
    border-radius: 0;
}

.reviews-form p {
    text-align: center;
    color: #555555;
    margin-bottom: 10px;
}

.reviews-form .rating {
    text-align: center;
    color: #ED3237;
    position: relative;
    margin-bottom: 30px;
}

/*=================================
Product Area End
====================================*/

/*=================================
Cart Wraps Area
===================================*/

.cart-wraps-area .cart-table table {
    margin-bottom: 0;
}

.cart-wraps-area .cart-table table thead tr th {
    border-bottom-width: 0px;
    vertical-align: middle;
    padding: 15px 0;
    text-transform: uppercase;
    border: none;
    font-weight: 700;
    font-size: 18px;
}

.cart-wraps-area .cart-table table tbody tr td {
    vertical-align: middle;
    color: #555555;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    border-color: #eeeeee;
    border-left: none;
    border-right: none;
}

.cart-wraps-area .cart-table table tbody tr td.product-thumbnail a {
    display: block;
}

.cart-wraps-area .cart-table table tbody tr td.product-thumbnail a img {
    width: 60px;
    height: 60px;
}

.cart-wraps-area .cart-table table tbody tr td.product-name a {
    color: #292323;
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
}

.cart-wraps-area .cart-table table tbody tr td.product-name a:hover {
    color: #ED3237 !important;
}

.cart-wraps-area .cart-table table tbody tr td.product-subtotal .remove {
    float: right;
    position: relative;
    top: 1px;
    color: #292323;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cart-wraps-area .cart-table table tbody tr td.product-subtotal .remove i {
    font-size: 30px;
}

.cart-wraps-area .cart-table table tbody tr td.product-subtotal .remove:hover {
    color: #ED3237;
}

.cart-wraps-area .cart-table table tbody tr td.product-subtotal span {
    font-weight: 600;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter {
    max-width: 130px;
    min-width: 130px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter span {
    position: absolute;
    top: 0;
    background-color: transparent;
    cursor: pointer;
    color: #555555;
    width: 40px;
    height: 100%;
    line-height: 48px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter span:hover {
    color: #ED3237 !important;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn {
    left: 0;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn:hover {
    color: #ED3237 !important;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn {
    right: 0;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn:hover {
    color: #ED3237 !important;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input {
    height: 45px;
    color: #555555;
    outline: 0;
    display: block;
    border: none;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
}

.cart-wraps-area .cart-table .table> :not(:first-child) {
    border-top: 0;
}

.cart-wraps-area .cart-buttons {
    margin-top: 30px;
}

.cart-wraps-area .cart-totals {
    background: #ffffff;
    padding: 40px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-radius: 0;
    margin: auto;
    margin-top: 50px;
}

.cart-wraps-area .cart-totals h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.cart-wraps-area .cart-totals ul {
    padding: 0;
    margin: 0 0 25px;
    list-style-type: none;
}

.cart-wraps-area .cart-totals ul li {
    border: 1px solid #b8b08c;
    padding: 10px 15px;
    color: #555555;
    overflow: hidden;
    font-weight: 500;
}

.cart-wraps-area .cart-totals ul li:first-child {
    border-bottom: none;
}

.cart-wraps-area .cart-totals ul li:nth-child(3) {
    border-top: none;
}

.cart-wraps-area .cart-totals ul li:last-child {
    border-top: none;
}

.cart-wraps-area .cart-totals ul li span {
    float: right;
    color: #555555;
    font-weight: normal;
}

.cart-wraps-area .cart-calc {
    margin-top: 50px;
    background-color: #ffffff;
    padding: 40px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}

.cart-wraps-area .cart-calc .cart-wraps-form h3 {
    font-size: 24px;
    color: #292323;
    padding-bottom: 20px;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group {
    margin-bottom: 20px;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group select {
    height: 50px;
    padding: 7px 18px;
    color: #6c777d;
    border: 1px solid #cfcfcf;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group select:focus,
.cart-wraps-area .cart-calc .cart-wraps-form .form-group select :hover {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ED3237;
    background-color: #555555 !important;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group select option {
    padding: 10px;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group select option:hover {
    background-color: #555555 !important;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group .form-control {
    font-size: 16px;
    border: 1px solid #b8b08c;
    color: #6c777d;
    padding: 12px 18px;
    font-weight: 400;
}

.cart-wraps-area .cart-calc .cart-wraps-form .form-group .form-control:focus,
.cart-wraps-area .cart-calc .cart-wraps-form .form-group .form-control :hover {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #cfcfcf;
}

.cart-wraps-area .cart-calc .nice-select {
    height: 50px;
    width: 100%;
    margin-bottom: 19px;
    border: 1px solid #b8b08c;
}

.cart-wraps-area .cart-calc .nice-select .list {
    width: 100%;
}

.cart-wraps-area .cart-calc .nice-select .option {
    color: #555555 !important;
}

.cart-wraps-area .cart-calc .nice-select .option :hover {
    color: #ffffff !important;
    background-color: #ED3237 !important;
}

.cart-wraps-area .cart-calc .nice-select .current {
    position: relative;
    top: 4px;
    font-weight: 500;
    color: #6c777d;
}

.cart-wraps-area .nice-select .option.focus,
.cart-wraps-area .nice-select .option.selected.focus,
.cart-wraps-area .nice-select .option:hover {
    background-color: #071232 !important;
    color: #ffffff !important;
    font-weight: 600;
}

.cart-wraps-area .cart-calc select .option.focus,
.cart-wraps-area .cart-calc .nice-select .option.selected.focus {
    background-color: #071232 !important;
    color: #ffffff !important;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
    color: #ED3237;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
    color: #ED3237;
}

.cart-wraps-area.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
    color: #ED3237;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
    color: #ED3237;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
    color: #ED3237;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
    color: #ED3237;
}

.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
    color: #ED3237;
}

.cart-wraps-area .cart-calc .cart-wraps-area form .form-control input::-webkit-input-placeholder {
    color: #6c777d;
}

.cart-area .cart-calc .cart-wraps-area form .form-control input:-ms-input-placeholder {
    color: #6c777d;
}

.cart-area .cart-area .cart-calc .cart-wraps-area .form-control input::-ms-input-placeholder {
    color: #6c777d;
}

.cart-area .cart-area .cart-calc .cart-wraps-area .form-control input::-webkit-input-placeholder {
    color: #495057;
}

.cart-area .cart-area .cart-calc .cart-wraps-area .form-control input:-ms-input-placeholder {
    color: #495057;
}

.cart-area .cart-area .cart-calc .cart-wraps-area .form-control input::placeholder {
    color: #495057;
}

/*=================================
Cart Wraps Area End
===================================*/

/*=================================
Checkout Area 
===================================*/

.billing-details {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 50px 30px 25px 30px;
    -webkit-box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
}

.billing-details h3 {
    font-size: 24px;
    color: #292323;
    margin-bottom: 15px;
    font-weight: 600;
}

.billing-details .form-group {
    margin-bottom: 25px;
}

.billing-details .form-group label {
    color: #555555;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.billing-details .form-group label span {
    color: #dd480f;
}

.billing-details .form-group .form-control {
    height: 50px;
    color: #2d3652;
    border: 1px solid #e8e8e8;
    background-color: #fcfcff;
    border-radius: 0;
    padding: 10px 20px;
    width: 100%;
}

.billing-details .form-group .form-control:focus,
.billing-details .form-group .form-control :hover {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #555555;
}

.billing-details .form-group .form-message {
    font-size: 16px;
    border: 1px solid #e8e8e8;
    background-color: #fcfcff;
    padding: 18px 18px;
    font-weight: 400;
    width: 100%;
}

.billing-details .form-group .form-message:focus,
.billing-details .form-group .form-message :hover {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #555555;
}

.billing-details .form-group .nice-select {
    float: unset;
    line-height: 45px;
    color: #555555;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 500;
}

.billing-details .form-group .nice-select .list {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.billing-details .form-group .nice-select .list .option:hover {
    background-color: #ED3237 !important;
    color: #ffffff;
}

.billing-details .form-group .nice-select .list .option:focus {
    border: none;
    outline: none;
}

.billing-details .form-group .nice-select .list .option .selected {
    background-color: transparent;
}

.billing-details .form-group .nice-select:after {
    right: 20px;
}

.billing-details .form-check {
    margin-bottom: 15px;
}

.billing-details .form-check .form-check-input {
    width: 15px;
    height: 15px;
}

.billing-details .form-check .form-check-label {
    color: #555555;
    margin-left: 5px;
    font-weight: 500;
}

.checkout-area .billing-details .form-group .nice-select .option:hover,
.checkout-area .billing-details .form-group .nice-select .option.focus,
.checkout-area .billing-details .form-group .nice-select .option.selected.focus {
    background-color: #ED3237 !important;
    color: #ffffff !important;
    border: none;
    outline: none;
}

.order-details .order-table {
    background-color: #ffffff;
    padding: 50px 30px;
    -webkit-box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
}

.order-details .order-table h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.order-details .order-table table {
    margin-bottom: 0;
}

.order-details .order-table table thead tr th {
    border-bottom-width: 0;
    vertical-align: middle;
    border-color: #eaedff;
    padding-left: 20px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    font-weight: 600;
    color: #555555;
    font-size: 18px;
}

.order-details .order-table table tbody tr td {
    vertical-align: middle;
    color: #555555;
    border-color: #eaedff;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
}

.order-details .order-table table tbody tr td.product-name a {
    color: #6e768f;
    display: inline-block;
    font-weight: 600;
}

.order-details .order-table table tbody tr td.product-name a:hover {
    color: #ED3237;
}

.order-details .order-table table tbody tr td.order-subtotal span {
    color: #555555;
    font-weight: 600;
}

.order-details .order-table table tbody tr td.order-shipping span {
    color: #555555;
    font-weight: 700;
}

.order-details .order-table table tbody tr td.total-price span {
    color: #555555;
    font-weight: 700;
}

.order-details .order-table table tbody tr td.shipping-price {
    font-weight: 700;
}

.order-details .order-table table tbody tr td.order-subtotal-price {
    font-weight: 700;
}

.order-details .order-table table tbody tr td.product-subtotal {
    font-weight: 700;
}

.order-details .order-table .table> :not(:first-child) {
    border-top: 0;
}

.order-details .payment-box {
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 50px 30px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked {
    display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label {
    padding-left: 27px;
    cursor: pointer;
    display: block;
    font-weight: 600;
    color: #ED3237;
    position: relative;
    margin-bottom: 8px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: #ffffff;
}

.order-details .payment-box .payment-method p [type="radio"]:checked+label::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ED3237;
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
    display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label {
    padding-left: 27px;
    cursor: pointer;
    display: block;
    font-weight: 600;
    color: #172541;
    position: relative;
    margin-bottom: 8px;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: #ffffff;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ED3237;
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.order-details .payment-box .order-btn {
    margin-top: 20px;
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 27px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #ED3237;
}

.order-details .payment-box .order-btn::before {
    content: "";
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #071232;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.order-details .payment-box .order-btn:hover {
    color: #ffffff;
    border: none;
}

.order-details .payment-box .order-btn:hover::before {
    left: auto;
    right: 0;
    width: 100%;
}

.billing-details .form-group .nice-select .option:hover,
.billing-details .form-group .nice-select .option.focus,
.billing-details .form-group .nice-select .option.selected.focus {
    background-color: #ED3237 !important;
    color: #ffffff !important;
}

/*=================================
Checkout Area End
===================================*/

/*=================================
Faq Area 
====================================*/

.faq-img {
    margin-bottom: 60px;
    margin-top: 30px;
    max-width: 670px;
    margin-left: auto;
    margin-right: 50px;
    position: relative;
    z-index: 1;
}

.faq-img img {
    border-radius: 15px;
}

.faq-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -30px;
    left: -30px;
    width: 390px;
    height: 335px;
    background-color: #ED3237;
    opacity: 0.6;
}

.faq-img::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    right: -30px;
    width: 390px;
    height: 335px;
    background-color: #ED3237;
    opacity: 0.6;
}

.faq-img-2 {
    margin-bottom: 30px;
    max-width: 670px;
    margin-left: auto;
    margin-right: 50px;
    position: relative;
    z-index: 1;
}

.faq-img-2::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 30px;
    left: -30px;
    width: 390px;
    height: 335px;
    background-color: #ED3237;
    opacity: 0.6;
}

.faq-img-2::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 30px;
    right: -30px;
    width: 390px;
    height: 335px;
    background-color: #ED3237;
    opacity: 0.6;
}

.faq-content {
    max-width: 470px;
    margin-right: auto;
    margin-bottom: 30px;
}

.faq-content .section-title {
    margin-bottom: 30px;
}

.faq-content .faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.faq-content .faq-accordion .accordion .accordion-item {
    display: block;
    background-color: #ffffff;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.faq-content .faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-content .faq-accordion .accordion .accordion-title {
    padding: 10px 60px 7px 20px;
    color: #292323;
    text-decoration: none;
    position: relative;
    display: block;
    font-family: "Catamaran", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.faq-content .faq-accordion .accordion .accordion-title i {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 24px;
    width: 30px;
    height: 30px;
    color: #ED3237;
    border-radius: 50px;
    border: 1px solid #ED3237;
    text-align: center;
    line-height: 30px;
    background-color: transparent;
}

.faq-content .faq-accordion .accordion .accordion-title.active i::before {
    content: "\eb8b";
}

.faq-content .faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 0;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
}

.faq-content .faq-accordion .accordion .accordion-content p {
    line-height: 1.8;
    font-size: 15px;
}

.faq-content .faq-accordion .accordion .accordion-content.show {
    display: block;
}

.faq-content-two {
    max-width: 910px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
}

.faq-content-two .faq-content {
    max-width: 100% !important;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}

.faq-content-two .faq-content .section-title {
    margin-bottom: 30px;
}

.faq-content-two .faq-content .section-title h2 {
    max-width: 490px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.faq-content-two .faq-content .faq-accordion .accordion .accordion-title i {
    color: #9E6E7D;
    border: none;
}

.faq-style-img {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

.faq-style-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 40%;
    height: 40%;
    background-color: #ED3237;
    opacity: 0.6;
}

.faq-style-img::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -30px;
    right: -30px;
    width: 40%;
    height: 40%;
    background-color: #ED3237;
    opacity: 0.6;
}

.faq-style-content {
    margin-left: 30px;
}

.faq-style-content .section-title {
    margin-bottom: 30px;
}

.faq-style-content .contact-form {
    padding: 0;
    max-width: 100%;
    background-color: #ffffff;
}

.faq-style-content .contact-form .form-group .form-control {
    background-color: #061662;
    border-radius: 0;
}

/*=================================
Faq Area End
====================================*/

/*=================================
Team Area
====================================*/

.team-area {
    position: relative;
}

.team-area .section-title h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.team-area .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.team-area .owl-dots .owl-dot span {
    background-color: transparent !important;
    width: 10px !important;
    height: 10px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
    border: 1px solid #ED3237;
}

.team-area .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.team-area .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.team-item {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px 15px 0 0;
}

.team-item:hover .content::before {
    width: 2px;
    background-color: #ED3237;
}

.team-item a {
    display: block;
}

.team-item a img {
    border-radius: 15px 15px 0 0;
}

.team-item .content {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    padding: 20px;
}

.team-item .content::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #061662;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.team-item .content h3 {
    margin-bottom: 0px;
    font-size: 24px;
}

.team-item .content h3 a {
    color: #292323;
}

.team-item .content span {
    color: #555555;
    margin-bottom: 0;
}

.team-area-two {
    position: relative;
}

.team-area-two .section-title h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.team-area-two .owl-dots {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

.team-area-two .owl-dots .owl-dot span {
    background-color: transparent !important;
    width: 10px !important;
    height: 10px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    margin: 0 7px;
    border: 1px solid #ED3237;
}

.team-area-two .owl-dots .owl-dot.active span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.team-area-two .owl-dots .owl-dot:hover span {
    background-color: #ED3237 !important;
    border-color: #ED3237;
}

.team-card {
    position: relative;
    margin-bottom: 30px;
}

.team-card:hover .content .social-link {
    display: block;
}

.team-card a {
    display: block;
}

.team-card .content {
    background-color: #ffffff;
    padding: 20px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.team-card .content h3 {
    margin-bottom: 0px;
    font-size: 24px;
}

.team-card .content h3 a {
    color: #292323;
}

.team-card .content span {
    color: #555555;
}

.team-card .content .social-link {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: none;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.team-card .content .social-link li {
    display: inline-block;
    margin-right: 5px;
}

.team-card .content .social-link li a {
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    color: #ffffff;
}

.team-card .content .social-link li:nth-child(1) a {
    background-color: #3b5998;
}

.team-card .content .social-link li:nth-child(1) a:hover {
    background-color: #ED3237;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-card .content .social-link li:nth-child(2) a {
    background-color: #55acee;
}

.team-card .content .social-link li:nth-child(2) a:hover {
    background-color: #ED3237;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-card .content .social-link li:nth-child(3) a {
    background-color: #3f729b;
}

.team-card .content .social-link li:nth-child(3) a:hover {
    background-color: #ED3237;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-card .content .social-link li:nth-child(4) a {
    background-color: #ff0000;
}

.team-card .content .social-link li:nth-child(4) a:hover {
    background-color: #ED3237;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-area-three .section-title h2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.team-card-tow {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.team-card-tow::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: #F7EBEE;
    border-radius: 15px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.team-card-tow:hover::before {
    height: 100%;
}

.team-card-tow a {
    display: block;
}

.team-card-tow a img {
    border-radius: 15px;
}

.team-card-tow .content {
    padding: 20px;
    text-align: center;
}

.team-card-tow .content h3 {
    margin-bottom: 0px;
    font-size: 24px;
}

.team-card-tow .content h3 a {
    color: #292323;
}

.team-card-tow .content span {
    color: #555555;
}

.team-card-tow .content .social-link {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.team-card-tow .content .social-link li {
    display: inline-block;
    margin-right: 5px;
}

.team-card-tow .content .social-link li a {
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    color: #ffffff;
}

.team-card-tow .content .social-link li:nth-child(1) a {
    background-color: #3b5998;
}

.team-card-tow .content .social-link li:nth-child(1) a:hover {
    background-color: #9E6E7D;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-card-tow .content .social-link li:nth-child(2) a {
    background-color: #55acee;
}

.team-card-tow .content .social-link li:nth-child(2) a:hover {
    background-color: #9E6E7D;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-card-tow .content .social-link li:nth-child(3) a {
    background-color: #3f729b;
}

.team-card-tow .content .social-link li:nth-child(3) a:hover {
    background-color: #9E6E7D;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

.team-card-tow .content .social-link li:nth-child(4) a {
    background-color: #ff0000;
}

.team-card-tow .content .social-link li:nth-child(4) a:hover {
    background-color: #9E6E7D;
    -webkit-animation: tada 1s linear;
    animation: tada 1s linear;
}

/*=================================
Team Area End
====================================*/

.brand-area {
    padding-top: 50px;
    padding-bottom: 50px;
}

.brand-area-two {
    padding-top: 100px;
    padding-bottom: 90px;
}

.brand-item img {
    width: auto !important;
    text-align: center;
    margin: 0 auto;
}

/*=================================
Blog Area 
====================================*/

.blog-area .section-title h2 {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 15px 15px 0 0;
}

.blog-card:hover .content::before {
    top: 30px;
    height: 78%;
    width: 2px;
    background-color: #ED3237;
}

.blog-card .blog-img {
    position: relative;
}

.blog-card .blog-img a {
    display: block;
}

.blog-card .blog-img a img {
    border-radius: 15px 15px 0 0;
}

.blog-card .blog-img .date {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 15px 10px 30px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    background-color: #ED3237;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0;
    -webkit-clip-path: polygon(17% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(17% 0, 100% 0%, 100% 100%, 0% 100%);
}

.blog-card .content {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    padding: 20px;
}

.blog-card .content::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #061662;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.blog-card .content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    max-width: 270px;
}

.blog-card .content h3 a {
    color: #292323;
}

.blog-card .content p {
    margin-bottom: 15px;
}

.blog-card .content .blog-btn {
    background-color: #ED3237;
    padding: 8px 24px;
    color: #ffffff;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
}

.blog-card .content .blog-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.blog-card .content .blog-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #292323;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.blog-card .content .blog-btn:hover {
    color: #ffffff;
}

.blog-card .content .blog-btn:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.blog-card .content .blog-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.blog-card .content .blog-btn-two {
    background-color: transparent;
    padding: 6px 20px;
    color: #071232;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    border-radius: 50px;
    border: 1px solid #071232;
}

.blog-card .content .blog-btn-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #071232;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.blog-card .content .blog-btn-two::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #071232;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.blog-card .content .blog-btn-two:hover {
    color: #ffffff;
}

.blog-card .content .blog-btn-two:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.blog-card .content .blog-btn-two:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.blog-card-bg {
    position: relative;
}

.blog-card-bg a {
    display: block;
}

.blog-card-bg a img {
    border-radius: 0 !important;
}

.blog-card-bg:hover .content::before {
    background-color: #ffffff;
}

.blog-item {
    background-color: #ffffff;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 15px;
    position: relative;
}

.blog-item::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: #F7EBEE;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    opacity: 0;
    border-radius: 15px;
}

.blog-item:hover::before {
    height: 100%;
    opacity: 1;
}

.blog-item a {
    display: block;
}

.blog-item a img {
    border-radius: 15px;
}

.blog-item .content {
    padding: 20px;
}

.blog-item .content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-item .content ul li {
    display: inline-block;
    font-size: 16px;
    color: #555555;
    margin-right: 25px;
}

.blog-item .content ul li:last-child {
    margin-right: 0;
}

.blog-item .content ul li i {
    margin-right: 5px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

.blog-item .content ul li:last-child {
    margin-right: 0;
}

.blog-item .content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    max-width: 270px;
}

.blog-item .content h3 a {
    color: #292323;
}

.blog-item .content p {
    margin-bottom: 15px;
}

.blog-item .content .read-btn {
    background-color: transparent;
    padding: 8px 24px;
    color: #9E6E7D;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #9E6E7D;
}

.blog-item .content .read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #9E6E7D;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.blog-item .content .read-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #9E6E7D;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.blog-item .content .read-btn:hover {
    color: #ffffff;
}

.blog-item .content .read-btn:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.blog-item .content .read-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.blog-item .content .blog-btn-two {
    background-color: transparent;
    padding: 6px 20px;
    color: #071232;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    border-radius: 50px;
    border: 1px solid #071232;
}

.blog-item .content .blog-btn-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #071232;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.blog-item .content .blog-btn-two::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #071232;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.blog-item .content .blog-btn-two:hover {
    color: #ffffff;
}

.blog-item .content .blog-btn-two:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.blog-item .content .blog-btn-two:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

.side-bar-question {
    margin-bottom: 30px;
    background-image: url(../img/blog/blog-bg.jpg);
    background-size: cover cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    text-align: center;
    z-index: 1;
}

.side-bar-question::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #292323;
    opacity: 0.7;
}

.side-bar-question h3 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.blog-article {
    margin-bottom: 30px;
}

.blog-article .blog-article-img {
    margin-bottom: 30px;
}

.blog-article .blog-article-title {
    margin-bottom: 30px;
}

.blog-article .blog-article-title h2 {
    font-size: 30px;
    margin-bottom: 20px;
    max-width: 500px;
}

.blog-article .blog-article-title ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.blog-article .blog-article-title ul li {
    display: inline-block;
    color: #292323;
    margin-right: 30px;
    position: relative;
}

.blog-article .blog-article-title ul li i {
    color: #ED3237;
}

.blog-article .blog-article-title ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    width: 1px;
    height: 20px;
    background-color: #ED3237;
    right: -20px;
}

.blog-article .blog-article-title ul li:last-child {
    margin-right: 0;
}

.blog-article .blog-article-title ul li:last-child::before {
    display: none;
}

.blog-article .article-content p {
    margin-bottom: 20px;
}

.blog-article .article-content .blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-top: 40px;
    background-color: #061662;
    padding: 30px;
}

.blog-article .article-content .blockquote::before {
    content: "\ee83";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 120px;
    font-weight: 400;
    color: #ffffff;
    font-family: boxicons;
    line-height: 0;
}

.blog-article .article-content .blockquote::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    background-color: #ED3237;
}

.blog-article .article-content .blockquote p {
    font-size: 20px;
    color: #555555;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: 20px;
}

.blog-article .another-content p {
    margin-bottom: 20px;
}

.blog-article .another-content .content-img {
    margin-top: 40px;
    margin-bottom: 30px;
}

.blog-article .blog-status {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-article .blog-status ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.blog-article .blog-status ul li {
    display: inline-block;
    color: #292323;
    margin-right: 30px;
    position: relative;
}

.blog-article .blog-status ul li i {
    color: #ED3237;
}

.blog-article .blog-status ul li::before {
    content: '';
    position: absolute;
    top: 3px;
    width: 1px;
    height: 20px;
    background-color: #ED3237;
    right: -20px;
}

.blog-article .blog-status ul li:last-child {
    margin-right: 0;
}

.blog-article .blog-status ul li:last-child::before {
    display: none;
}

.blog-article .blog-share {
    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
}

.blog-article .blog-share ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 520px;
}

.blog-article .blog-share ul li {
    display: inline-block;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-right: 135px;
    font-weight: 700;
}

.blog-article .blog-share ul li:last-child {
    margin-right: 0;
}

.blog-article .blog-share ul li a {
    color: #292323;
    text-align: center;
}

.blog-article .blog-share ul li a:hover {
    color: #ED3237;
}

.blog-article .comments-wrap {
    padding-top: 30px;
}

.blog-article .comments-wrap .title {
    font-size: 30px;
    margin-bottom: 30px;
    color: #292323;
}

.blog-article .comments-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-article .comments-wrap ul li {
    position: relative;
    padding: 30px;
    padding-left: 140px;
    margin-bottom: 30px;
    background-color: #061662;
}

.blog-article .comments-wrap ul li:last-child {
    margin-bottom: 0;
}

.blog-article .comments-wrap ul li img {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 90px;
    height: 90px;
}

.blog-article .comments-wrap ul li h3 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
}

.blog-article .comments-wrap ul li span {
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    color: #8b8b8b;
}

.blog-article .comments-wrap ul li p {
    margin-bottom: 0;
}

.blog-article .comments-wrap ul li a {
    position: absolute;
    top: 27px;
    right: 30px;
    color: #071232;
    font-weight: 600;
}

.blog-article .comments-wrap ul li a:hover {
    color: #ED3237;
}

.blog-article .comments-form {
    margin-top: 40px;
}

.blog-article .comments-form .contact-form h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.blog-article .comments-form .contact-form .form-group .form-control {
    border-color: #ED3237;
    background-color: transparent;
    border-radius: 0;
}

.side-bar-wrap {
    margin-bottom: 30px;
}

.side-bar-widget {
    margin-bottom: 30px;
}

.search-widget {
    margin-bottom: 30px;
    background-color: #061662;
    padding: 20px;
}

.search-widget .search-form {
    position: relative;
}

.search-widget .search-form .form-control {
    height: 50px;
    border: none;
    background-color: #ffffff;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0;
}

.search-widget .search-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.search-widget .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    background-color: #ED3237;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: none;
    outline: none;
}

.search-widget .search-form button i {
    color: #ffffff;
}

.search-widget .search-form button:hover {
    background-color: #071232;
}

.side-bar-widget {
    margin-bottom: 30px;
    background-color: #061662;
}

.side-bar-widget .title {
    font-size: 20px;
    color: #ED3237;
    padding: 15px 0 10px 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #ED3237;
    width: 100%;
}

.side-bar-widget .widget-popular-post {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.side-bar-widget .widget-popular-post .item {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.side-bar-widget .widget-popular-post .item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.side-bar-widget .widget-popular-post .item .thumb {
    float: left;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
}

.side-bar-widget .widget-popular-post .item .thumb .full-image {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center !important;
    position: relative;
    background-color: #555555;
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
    background-image: url(../img/blog/blog-img1.jpg);
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
    background-image: url(../img/blog/blog-img2.jpg);
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
    background-image: url(../img/blog/blog-img3.jpg);
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg4 {
    background-image: url(../img/blog/blog-img4.jpg);
}

.side-bar-widget .widget-popular-post .item .info {
    overflow: hidden;
}

.side-bar-widget .widget-popular-post .item .info .title-text {
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 700;
    max-width: 215px;
}

.side-bar-widget .widget-popular-post .item .info .title-text a {
    display: inline-block;
    color: #292323;
}

.side-bar-widget .widget-popular-post .item .info .title-text a:hover {
    color: #ED3237;
}

.side-bar-widget .widget-popular-post .item .info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-bar-widget .widget-popular-post .item .info ul li {
    display: inline-block;
    margin-right: 15px;
}

.side-bar-widget .widget-popular-post .item .info ul li:last-child {
    margin-right: 0;
}

.side-bar-widget .side-bar-widget-tag {
    list-style: none;
    margin: 0;
    padding: 10px 20px 20px;
}

.side-bar-widget .side-bar-widget-tag li {
    display: inline-block;
    padding: 7px 15px;
    margin: 5px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    color: #555555;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff;
}

.side-bar-widget .side-bar-widget-tag li:hover {
    background-color: #ED3237;
    border-color: #ED3237;
}

.side-bar-widget .side-bar-widget-tag li a {
    color: #555555;
}

.side-bar-widget .side-bar-widget-tag li:hover a {
    color: #ffffff;
}

.blog-style-area .section-title h2 {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.blog-style-card {
    background-color: #061662;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
}

.blog-style-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #ffffff;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    opacity: 0;
    border-radius: 15px;
}

.blog-style-card:hover::before {
    width: 100%;
    opacity: 1;
}

.blog-style-card .blog-style-img {
    padding-left: 15px;
}

.blog-style-card .blog-style-img a {
    display: block;
}

.blog-style-card .blog-style-content {
    padding: 0 20px 0;
}

.blog-style-card .blog-style-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-style-card .blog-style-content ul li {
    display: inline-block;
    font-size: 16px;
    color: #555555;
    margin-right: 25px;
    margin-bottom: 10px;
}

.blog-style-card .blog-style-content ul li:last-child {
    margin-right: 0;
}

.blog-style-card .blog-style-content ul li i {
    margin-right: 5px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

.blog-style-card .blog-style-content ul li:last-child {
    margin-right: 0;
}

.blog-style-card .blog-style-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    max-width: 270px;
}

.blog-style-card .blog-style-content h3 a {
    color: #292323;
}

.blog-style-card .blog-style-content p {
    margin-bottom: 15px;
}

.blog-style-card .blog-style-content .read-btn {
    background-color: transparent;
    padding: 8px 24px;
    color: #292323;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    border: 1px solid #ED3237;
}

.blog-style-card .blog-style-content .read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 50%;
    background-color: #ED3237;
    z-index: -1;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
}

.blog-style-card .blog-style-content .read-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 0;
    height: 50%;
    background-color: #ED3237;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.blog-style-card .blog-style-content .read-btn:hover {
    color: #ffffff;
}

.blog-style-card .blog-style-content .read-btn:hover::before {
    width: 100%;
    color: #ffffff;
    opacity: 1;
}

.blog-style-card .blog-style-content .read-btn:hover::after {
    width: 100%;
    opacity: 1;
    color: #ffffff;
}

/*=================================
Blog Area End
====================================*/

.contact-content .section-title {
    margin-bottom: 30px;
}

.contact-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-content ul li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 30px;
}

.contact-content ul li:last-child {
    margin-right: 0;
}

.contact-content ul li a {
    width: 160px;
    height: 95px;
    line-height: 95px;
    background-color: #061662;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
}

.contact-content ul li a:hover {
    background-color: #ED3237;
}

.contact-content ul li a:hover i {
    color: #ffffff;
}

.contact-content ul li a:hover h3 {
    color: #ffffff;
}

.contact-content ul li a i {
    font-size: 35px;
    color: #ED3237;
    display: block;
    padding-top: 10px;
    padding-bottom: 5px;
}

.contact-content ul li a h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-form {
    padding: 50px 30px;
    max-width: 800px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #061662;
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form .form-group.checkbox-option {
    position: relative;
}

.contact-form .form-group.checkbox-option #chb2 {
    position: absolute;
    top: 6px;
    left: 0;
}

.contact-form .form-group.checkbox-option p {
    padding-left: 25px;
    font-size: 15px;
}

.contact-form .form-group.checkbox-option p a {
    color: #ED3237;
}

.contact-form .form-group.checkbox-option p a:hover {
    color: #071232;
}

.contact-form .form-group .agree-label label a {
    color: #ED3237;
}

.contact-form .form-group .agree-label label a:hover {
    color: #071232;
}

.contact-form .form-group .form-control {
    height: 50px;
    color: #555555;
    border: 1px solid #ebebeb;
    background-color: #f8f9fb;
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
}

.contact-form .form-group .form-control:focus {
    outline: none;
    border-color: #061662;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-form .form-group textarea.form-control {
    height: auto;
}

.contact-form .with-errors {
    float: left;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #f00;
    font-weight: 400;
    display: block;
}

.contact-form .text-danger {
    font-size: 18px;
    margin-top: 15px;
}

.contact-form .default-btn {
    border: 0;
    outline: none;
    padding: 14px 60px;
    width: 100%;
}

.contact-form .form-group .form-control::-webkit-input-placeholder {
    color: #555555;
}

.contact-form .form-group .form-control:-ms-input-placeholder {
    color: #555555;
}

.contact-form .form-group .form-control::-ms-input-placeholder {
    color: #555555;
}

.contact-form .form-group .form-control::placeholder {
    color: #555555;
}

.contact-img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-right: 50px;
}

.contact-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50px;
    width: 113%;
    height: 85%;
    left: -40px;
    right: -40px;
    background-color: #ED3237;
    opacity: 0.5;
}

.contact-card {
    margin-bottom: 30px;
}

.contact-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-card ul li {
    display: inline-block;
    position: relative;
    padding-left: 95px;
    margin-bottom: 20px;
}

.contact-card ul li:last-child {
    margin-bottom: 0;
}

.contact-card ul li i {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #061662;
    color: #ED3237;
    font-size: 45px;
    text-align: center;
}

.contact-card ul li .content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-card ul li .content span {
    display: block;
    color: #555555;
    font-size: 15px;
}

.contact-card ul li .content span a {
    display: block;
    color: #555555;
}

.contact-card ul li .content span a:hover {
    color: #ED3237;
}

.appointment-area .section-title {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.appointment-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 50%;
    height: 60%;
    background-color: #061662;
}

.appointment-img img {
    border-radius: 0 50px 0 50px;
}

/*=================================
User All Form
====================================*/

.user-all-img {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

.user-all-img img {
    border-radius: 0 50px 0 50px;
}

.user-all-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    width: 40%;
    height: 40%;
    background-color: #ED3237;
    opacity: 0.6;
}

.user-all-img::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -30px;
    right: -30px;
    width: 40%;
    height: 40%;
    background-color: #ED3237;
    opacity: 0.6;
}

.user-all-form {
    margin-bottom: 30px;
    margin-left: 30px;
}

.user-all-form .contact-form {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.user-all-form .contact-form .section-title {
    margin-bottom: 30px;
}

.user-all-form .contact-form .agree-label label {
    font-weight: 500;
    color: #292323;
    margin-left: 10px;
}

.user-all-form .contact-form .forget {
    margin-bottom: 15px;
    float: right;
    color: #071232;
    font-weight: 500;
}

.user-all-form .contact-form .forget:hover {
    color: #ED3237;
}

.user-all-form .contact-form .account-desc {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.user-all-form .contact-form .account-desc a {
    color: #071232;
}

.user-all-form .contact-form .account-desc a:hover {
    color: #ED3237;
}

/*=================================
User All Form End
====================================*/

/*=================================
Map Area 
====================================*/

.map-area iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/*=================================
Map Area End
====================================*/

.terms-conditions-img {
    margin-bottom: 30px;
}

.single-content {
    margin-bottom: 30px;
}

.single-content h3 {
    font-size: 24px;
    color: #292323;
    margin-bottom: 15px;
}

.single-content p {
    margin-bottom: 15px;
}

/*==============================
Pagination Area 
=================================*/

.pagination-area {
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.pagination-area .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #292323;
    background-color: #061662;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-left: 3px;
    margin-right: 3px;
    font-size: 18px;
    border-radius: 5px;
}

.pagination-area .page-numbers:hover {
    background-color: #ED3237;
    color: #ffffff;
}

.pagination-area .page-numbers i {
    position: relative;
    font-size: 25px;
    top: 5px;
}

.pagination-area .page-numbers.current {
    background-color: #ED3237;
    color: #ffffff;
}

/*==============================
Pagination Area End
=================================*/

/*=================================
404 Error Area
===================================*/

.error-area .error-content {
    text-align: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
}

.error-area .error-content h1 {
    font-size: 300px;
    line-height: 0.7;
    font-weight: 700;
    color: #071232;
}

.error-area .error-content h1 span {
    color: #ED3237;
}

.error-area .error-content h3 {
    margin: 30px 0 0;
    position: relative;
    color: #292323;
    font-size: 35px;
}

.error-area .error-content p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    color: #292323;
}

/*=================================
404 Error Area End
===================================*/

/*================================== 
Coming Soon Area 
====================================*/

.coming-soon-area {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: url(../img/inner-banner/inner-banner9.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.coming-soon-area .coming-soon-content {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 50px 30px;
}

.coming-soon-area .coming-soon-content h1 {
    margin-bottom: 0;
    color: #071232;
    font-size: 60px;
}

.coming-soon-area .coming-soon-content p {
    font-size: 16px;
    max-width: 600px;
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    color: #292323;
}

.coming-soon-area .coming-soon-content #timer {
    margin-top: 20px;
}

.coming-soon-area .coming-soon-content #timer div {
    display: inline-block;
    color: #071232;
    position: relative;
    margin-left: 35px;
    margin-right: 35px;
    font-size: 45px;
    font-weight: 700;
}

.coming-soon-area .coming-soon-content #timer div span {
    display: block;
    text-transform: capitalize;
    margin-top: -15px;
    font-size: 16px;
    font-weight: normal;
    color: #071232;
}

.coming-soon-area .coming-soon-content #timer div:last-child {
    margin-right: 0;
}

.coming-soon-area .coming-soon-content #timer div:last-child::before {
    display: none;
}

.coming-soon-area .coming-soon-content #timer div:first-child {
    margin-left: 0;
}

.coming-soon-area .coming-soon-content #timer div::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -10px;
    font-size: 70px;
    color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form {
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #ffffff;
    padding-left: 15px;
    color: #ffffff;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 0;
    border: 1px solid #cccccc;
    color: #5d5d5d;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
    border-color: #ED3237;
}

.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
    border: 0;
    outline: 0;
    border-radius: 0 !important;
}

.coming-soon-area .coming-soon-content .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 30px;
    text-transform: uppercase;
    outline: 0;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.coming-soon-area .coming-soon-content .newsletter-form button::after {
    border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button::before {
    border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button:hover {
    color: #ffffff;
    background-color: #190f3c;
}

.coming-soon-area .coming-soon-content ul {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.coming-soon-area .coming-soon-content ul li {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 50px;
    font-size: 18px;
    background-color: #ED3237;
    color: #ffffff;
    border-radius: 50px;
    margin-right: 10px;
}

.coming-soon-area .coming-soon-content ul li a {
    color: #ffffff;
}

.coming-soon-area .coming-soon-content ul li:hover {
    background-color: #071232;
}

.coming-soon-area #validator-newsletter {
    text-align: left;
    color: #dc3545 !important;
}

/*================================== 
Coming Soon Area End
====================================*/

/*=================================
Footer Area
====================================*/

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget .footer-logo {
    margin-bottom: 20px;
}

.footer-widget h3 {
    margin-top: 12px;
    font-size: 24px;
    margin-bottom: 30px;
}

.footer-widget p {
    margin-bottom: 20px;
}

.footer-widget .social-link {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget .social-link li {
    display: inline-block;
    margin-right: 5px;
}

.footer-widget .social-link li a {
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    color: #ED3237;
    border-radius: 50px;
    border: 1px solid #ED3237;
}

.footer-widget .social-link li:hover a {
    background-color: #ffffff;
    border-color: #ffffff;
    border-radius: 50px;
}

.footer-widget .footer-blog {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-widget .footer-blog li {
    display: inline-block;
    padding-left: 100px;
    position: relative;
    margin-bottom: 20px;
}

.footer-widget .footer-blog li:last-child {
    margin-bottom: 0;
}

.footer-widget .footer-blog li img {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
}

.footer-widget .footer-blog li .content {
    max-width: 170px;
}

.footer-widget .footer-blog li .content h3 {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 700;
}

.footer-widget .footer-blog li .content h3 a {
    color: white;
}

.footer-widget .footer-blog li .content h3:hover a {
    color: #ED3237;
}

.footer-widget .footer-blog li .content span {
    font-size: 15px;
}

.footer-widget .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget .footer-list li {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-widget .footer-list li:last-child {
    margin-bottom: 0;
}

.footer-widget .footer-list li a {
    color: white;
    font-weight: 500;
}

.footer-widget .footer-list li a i {
    font-size: 18px;
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.footer-widget .footer-list li a:hover {
    color: #ED3237;
}

.footer-widget .footer-list-two {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget .footer-list-two li {
    display: block;
    color: white;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.footer-widget .footer-list-two li:last-child {
    margin-bottom: 0;
}

.footer-widget .footer-list-two li i {
    color: #ED3237;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.footer-widget .footer-list-two li a {
    color: white;
}

.footer-widget .footer-list-two li:hover {
    color: #ED3237;
}

.footer-widget .footer-list-two li:hover i {
    color: white;
}

.footer-widget .footer-list-two li:hover a {
    color: #ED3237;
}

.single-footer .social-link li {
    display: inline-block;
    margin-right: 5px;
}

.single-footer .social-link li a {
    color: #9E6E7D !important;
    border: 1px solid #9E6E7D !important;
}

.single-footer .social-link li:hover a {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    border-radius: 50px;
}

.single-footer .footer-blog li .content h3:hover a {
    color: white !important;
}

.single-footer .footer-list li a:hover {
    color: #9E6E7D !important;
}

.single-footer .footer-list-two li i {
    color: #9E6E7D;
}

.single-footer .footer-list-two li:hover {
    color: #9E6E7D;
}

.single-footer .footer-list-two li:hover i {
    color: #555555;
}

.single-footer .footer-list-two li:hover a {
    color: #9E6E7D;
}

.copy-right-area {
    padding: 15px;
    border-top: 1px solid #ED323773;
}

.copy-right-area .copy-right-text p {
    color: white;
    margin-bottom: 0;
}

.copy-right-area .copy-right-text p a {
    color: #ED3237;
    border-bottom: 1px solid #ED3237;
}

.copy-right-area .copy-right-text p a:hover {
    color: #555555;
    border-color: #555555;
}

/*=================================
Footer Area End
====================================*/

/*==================================
Back To Top Button 
=====================================*/

#toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
    z-index: 99;
}

.top-btn {
    background-color: #ED3237;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px #ED3237;
    box-shadow: 0 0 15px #ED3237;
    font-size: 20px;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    -webkit-transition: .9s;
    transition: .9s;
}

.top-btn:hover {
    background-color: #292323;
    -webkit-box-shadow: 0 0 15px #292323;
    box-shadow: 0 0 15px #292323;
    color: #fff;
}

/*==============================
Back To Top Button 
=================================*/

/*==============================
PreLoader CSS 
=================================*/

.preloader {
    background: #292323;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    text-align: center;
}

.sk-cube-area {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.sk-cube-area .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.sk-cube-area .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.sk-cube-area .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.sk-cube-area .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-area .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.sk-cube-area .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.sk-cube-area .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.sk-cube-area .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/*==============================
PreLoader CSS End
=================================*/

/*=================================
Buy Now Btn
====================================*/

.buy-now-btn {
    right: 20px;
    z-index: 99;
    top: 50%;
    position: fixed;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 30px;
    display: inline-block;
    color: #ffffff;
    background-color: #82b440;
    padding: 10px 20px 10px 42px;
    -webkit-box-shadow: 0 1px 20px 1px #82b440;
    box-shadow: 0 1px 20px 1px #82b440;
    font-size: 13px;
    font-weight: 600;
}

.buy-now-btn img {
    top: 50%;
    left: 20px;
    width: 15px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.buy-now-btn:hover {
    color: #ffffff;
    background-color: #94be5d;
}

/*==================================
Animation CSS
====================================*/

@-webkit-keyframes rotated360 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

@keyframes rotated360 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
        transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
        transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes scale {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes scale {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

/*# sourceMappingURL=style.css.map */