::selection {
    background-color: var(--el-color-primary);
    color: #fff;
}

::-moz-selection {
    background-color: var(--el-color-primary);
    color: #fff;
}

img {
    max-width: 100%;
}

body {
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #c5c5c5;
    letter-spacing: 1px;
}

p {
    /*!*line-height: 24px;*!*/
    /*font-size: 14px;*/
    /*color: #333;*/
    /*font-family: 'Roboto Condensed', sans-serif;*/
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #202020;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    font-family: 'Roboto Condensed', sans-serif;
}

h1 {
    font-size: 60px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 26px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}

ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

/* --- Top Scroll --- */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 2px;
    text-align: center;
    right: 2%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    background-color: #000;
    text-decoration: none;
    border-radius: 100%;
    z-index: 9999;
}

.scroll-top:hover {
    color: #fff !important;
    text-decoration: none;
    background-color: var(--el-color-primary);
}

.btn-style-1 {
    color: #fff;
    border: 0;
    border-radius: 0 0 20px 0;
    position: relative;
    padding: 16px 30px;
    font-size: 14px;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 22px;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    background-color: var(--el-color-primary);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-style-1:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 2px;
    z-index: -1;
    height: 100%;
    background-color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.btn-style-1:hover:after {
    width: 100%;
}

.btn-style-1:hover {
    color: #000;
    text-decoration: none;
}

.btn-style-2 {
    color: #fff;
    border: 0;
    border-radius: 0 0 20px 0;
    position: relative;
    padding: 16px 30px;
    font-size: 14px;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 22px;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    background-color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-style-2:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 2px;
    z-index: -1;
    height: 100%;
    background-color: var(--el-color-primary);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.btn-style-2:hover:after {
    width: 100%;
}

.btn-style-2:hover {
    color: #fff;
    text-decoration: none;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    text-align: center;
    height: 100%;
    vertical-align: middle;
    overflow: visible;
    background-color: #fff;
}

#preloader .spinner-grow {
    top: 50%;
    position: relative;
}

.section-title .small-title {
    font-size: 14px;
    color: #333;
}

.section-title h2 {
    position: relative;
    color: #000;
    font-weight: 500;
}

.section-title h2 span {
    color: var(--el-color-primary);
}

.header-upper {
    background-color: #f5f5f5;
    padding: 18px 0;
}

.header-location {
    text-align: center;
}

.header-location li {
    color: #000;
}

.header-location li a {
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-location li a:hover {
    color: var(--el-color-primary);
}

.header-location li i {
    color: var(--el-color-primary);
    text-align: center;
    margin-right: 6px;
    font-size: 14px;
    border-radius: 100%;
}

.header-lover .navbar-brand {
    padding: 0;
    margin: 0;
}

.header-lover {
    padding: 10px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-lover .navbar {
    padding: 0 0;
}

.header-lover .navbar .nav-item .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    position: relative;
    padding: 6px 14px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-lover .navbar .nav-item .nav-link:hover, .header-lover .navbar .nav-item.active .nav-link {
    color: var(--el-color-primary);
}

.header-lover .navbar .nav-item:last-child .nav-link {
    padding-right: 0;
}

.header-lover .navbar-toggler span {
    background: #000;
}

.header-lover .dropdown-menu {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: var(--el-color-primary);
}

.header-lover .dropdown-menu .dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    font-size: 14px;
    padding: 12px 12px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-lover .dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0 !important;
}

.header-lover .dropdown-menu .dropdown-item:hover {
    color: #000;
    padding-left: 20px;
    background-color: transparent;
}

.navbar-toggler {
    border: none;
    padding: 10px 6px;
    background-color: #f5f5f5;
    outline: none !important;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #333;
}

.navbar-toggler span + span {
    margin-top: 4px;
    width: 18px;
}

.navbar-toggler span + span + span {
    width: 10px;
}

.header-search a {
    color: var(--el-color-primary) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.header-search-Modal .modal-content {
    background-color: #1a1a1c;
    padding: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.header-search-Modal .modal-header .btn-close {
    position: absolute;
    right: 25px;
    top: 20px;
    opacity: 1;
    padding: 0;
    color: #fff;
    font-size: 16px;
    background-image: none;
}

.header-search-Modal .modal-header {
    padding: 0;
    border-bottom: 0;
    color: #fff;
    text-transform: uppercase;
}

.header-search-Modal .modal-header h5 {
    font-weight: 500;
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
}

.header-search-Modal .modal-body {
    padding: 0;
}

.header-search-Modal .modal-content .input-group input {
    background: transparent;
    border-radius: 0;
    outline: none;
    height: 50px;
    padding: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #666;
    font-size: 14px;
    width: 100%;
    letter-spacing: .28px;
}

.header-search-Modal .modal-content .input-group .input-group-btn {
    position: absolute;
    right: 0;
    top: 12px;
    background-color: var(--el-color-primary);
    z-index: 4;
}

.header-search-Modal .modal-content .input-group .input-group-btn button {
    color: #fff;
    text-transform: uppercase;
}

.is-sticky {
    z-index: 9999;
}

.is-sticky .header-lover {
    z-index: 999 !important;
    background-color: #333 !important;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.is-sticky .header-lover .navbar .nav-item .nav-link {
    color: #ccc;
}

.is-sticky .nav-item.active .nav-link, .is-sticky .nav-pills .show > .nav-link {
    color: var(--el-color-primary) !important;
}

@media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
        display: block !important;
    }
}

.slider .carousel-caption {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-50%);
    z-index: 1;
    text-align: left;
}

.slider .carousel-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.slider .carousel-item:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.slider .carousel-item {
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    height: 700px;
    position: relative;
}

.slider .carousel-caption h5 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 50px;
    color: #fff;
    line-height: 60px;
    text-transform: capitalize;
}

.slider .carousel-caption h5 span {
    color: var(--el-color-primary);
}

.slider .carousel-caption h6 {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--el-color-primary);
    font-style: italic;
    margin-bottom: 6px;
}

.slider .carousel-caption p {
    color: #fff;
}

.slider .carousel-control-next, .slider .carousel-control-prev {
    border-radius: 100%;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    top: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    bottom: auto;
    display: inline-block;
    transform: translateY(-50%);
}

.slider .carousel-control-next {
    right: 10px;
}

.slider .carousel-control-prev {
    left: 10px;
}

.feature-box {
    text-align: left;
    padding: 30px;
    background-color: #fff;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-box p {
    margin-bottom: 0;
}

.feature-box .icon {
    font-size: 16px;
    background-color: var(--el-color-primary);
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 0 0 20px 0;
    -webkit-box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 1);
    -moz-box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 1);
    box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 1);
}

.feature-box h4 {
    color: #000;
    padding: 0 0 9px;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.service-box {
    overflow: hidden;
    border-radius: 0 0 40px 0;
}

.service-box .image {
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-bottom: 0;
}

.service-box .image img {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
}

.service-box .image:after {
    position: absolute;
    content: "";
    width: 50%;
    top: 0;
    left: -250px;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
}

.service-box:hover .image:after {
    left: 450px !important;
}

.service-box .caption {
    padding: 25px;
    background-color: #f5f5f5;
}

.service-box h4 a {
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    font-size: 24px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-box h4 a:hover {
    color: var(--el-color-primary);
}

.service-sidebar-link {
    background-color: #f5f5f5;
    border-radius: 0 0 40px 0;
    overflow: hidden;
}

.service-sidebar-link li a {
    color: #333;
    text-decoration: none;
    padding: 12px 10px;
    font-size: 14px;
    display: inline-block;
    border-bottom: 1px dashed #333;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-sidebar-link li.active a, .service-sidebar-link li a:hover {
    background-color: var(--el-color-primary);
    padding-left: 20px;
    color: #fff;
}

.service-sidebar-link li a i {
    font-size: 8px;
    padding-right: 6px;
}

.service-sidebar-link li:last-child a {
    border-bottom: 0;
}

.brochure-widget-title {
    font-weight: 500;
    font-size: 22px;
    color: #000;
}

.download-brochures-widget {
    background-color: #f5f5f5;
    padding: 20px 20px 16px 20px;
    text-align: center;
    border-radius: 0 0 40px 0;
    overflow: hidden;
}

.download-brochures-widget a {
    display: block;
    margin-bottom: 4px;
}

.call-us-widget {
    background-color: #f5f5f5;
    border-radius: 0 0 40px 0;
    overflow: hidden;
}

.call-us-widget .des {
    padding: 20px;
}

.call-us-widget h5 {
    color: #000;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
}

.single-service-content h3 {
    position: relative;
    color: #000;
    font-weight: 500;
    font-size: 28px;
    padding-left: 20px;
}

.single-service-content h3:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    background-color: var(--el-color-primary);
}

.single-service-content h4 {
    position: relative;
    font-weight: 500;
    font-size: 22px;
}

.about-text h2 {
    color: #f12a01;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-text h2 {
    font-size: 30px;
    line-height: 28px;
    font-weight: 500;
    color: var(--el-color-primary);
}

.about-text ul li {
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    text-transform: capitalize;
}

.about-text ul li:last-child {
    margin-bottom: 0;
}

.about-text ul li i {
    font-size: 10px;
    color: var(--el-color-primary);
    padding-right: 4px;
}

.about-img img {
    border-radius: 0 0 40px 0;
}

.about-img-holder {
    position: relative;
}

.about-img-holder img {
    transition: all .3s ease;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 0 0 40px 0;
}

.about-img-holder:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    border-radius: 0 0 40px 0;
}

.about-img-holder .hover-lay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.about-img-holder .hover-lay a {
    background-color: var(--el-color-primary);
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0 0 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-img-holder .hover-lay a:hover {
    background-color: #000;
}

.counter-area {
    background-image: url(../../../assets/images/background-1.jpg);
    background-position: top center;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.counter-area:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.counter-box {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    position: relative;
    border-radius: 0 0 40px 0;
}

.counter-box:after {
    content: '';
    width: 40px;
    height: 1px;
    left: 0;
    top: 0;
    position: absolute;
    background-color: var(--el-color-primary);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.counter-box:before {
    content: '';
    width: 1px;
    height: 40px;
    left: 0;
    top: 0;
    position: absolute;
    background-color: var(--el-color-primary);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.counter-box:hover:after {
    left: 20px;
}

.counter-box:hover:before {
    top: 20px;
}

.counter-box h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 8px;
}

.counter-box span {
    color: var(--el-color-primary-light-5);
    font-size: 26px;
}

#portfolio-list .portfolio {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    display: none;
}

.portfolio-filter li {
    margin-right: 0 !important;
}

.portfolio-filter li span {
    cursor: pointer;
    padding: 8px 12px 8px 12px;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #333;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-filter li span.active, .portfolio-filter li span:hover {
    color: var(--el-color-primary);
    border-bottom: 1px solid var(--el-color-primary);
}

.portfolio-box {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 0;
}

.portfolio-box .portfolio-box-img {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
}

.portfolio-box .portfolio-box-img img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-box:hover .portfolio-box-img img {
    transform: scale(1.1);
}

.portfolio-box .des {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 26px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.portfolio-box .read-more {
    color: #fff;
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--el-color-primary);
    opacity: 0;
    margin: auto;
    width: 0;
    height: 0;
    line-height: 0;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-box:hover .read-more {
    opacity: 1;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.portfolio-box h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-single-carousel .owl-nav {
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.portfolio-single-carousel .owl-nav .owl-prev {
    float: left;
}

.portfolio-single-carousel .owl-nav .owl-next {
    float: right;
}

.portfolio-single-carousel .owl-nav .owl-prev, .portfolio-single-carousel .owl-nav .owl-next {
    background-color: #fff !important;
    border-radius: 100%;
    color: #333 !important;
    line-height: 30px;
    height: 30px;
    width: 30px;
}

.portfolio-single-carousel .owl-nav .owl-prev:hover, .portfolio-single-carousel .owl-nav .owl-next:hover {
    background-color: var(--el-color-primary) !important;
    color: #fff !important;
}

.portfolio-single-title {
    position: relative;
    color: #000;
    font-weight: 500;
}

.dark-area {
    z-index: 0;
    position: relative;
    background-image: url(../../../assets/images/background-1.jpg);
    background-size: cover;
}

.dark-area:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.cta-text {
    text-align: center;
    border-radius: 0 0 40px 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.cta-text h2 {
    text-transform: capitalize;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cta-text p {
    font-style: italic;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.block-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    border-radius: 0 0 40px 0;
}

.block-item .block-img img {
    border-radius: 0 0 40px 0;
}

.block-item .category-tag a {
    color: var(--el-color-primary);
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    text-decoration: none;
}

.block-item h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 6px;
    margin-top: 15px;
}

.block-item h4 a {
    text-decoration: none;
    color: #000;
}

.block-item .block-meta {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
}

.block-item .block-meta div {
    color: #333;
}

.block-item .block-meta span a {
    color: #333333;
    font-size: 11px;
    text-decoration: none;
}

.block-item .block-more {
    color: var(--el-color-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateX(0);
    transition: all 0.3s ease 0s;
}

.block-item .block-more:hover {
    color: #fff
}

.block-item .block-more-btn i {
    padding-right: 6px;
    font-size: 16px;
    color: var(--el-color-primary);
}

.block-item .block-meta .block-more-btn span {
    color: var(--el-color-primary);
    opacity: 0;
}

.block-item .block-more-btn {
    transform: translateX(92px);
    transition: all 0.3s ease 0s;
    margin-left: auto;
}

.block-item .block-more-btn a {
    display: flex;
}

.block-item:hover .block-more-btn {
    transform: translateX(0);
}

.block-item:hover .block-meta .block-more-btn span {
    opacity: 1;
}

.sidebar-widget {
    border-radius: 0 0 40px 0;
    background-color: #f5f5f5;
    padding: 25px;
}

.sidebar-widget .sidebar-widget-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--el-color-primary);
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    position: relative;
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
    border: 0;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    height: 60px;
    width: 100%;
    padding-left: 20px;
    padding-right: 65px;
    transition: all 500ms ease 0s;
}

.sidebar-search button {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    background-color: var(--el-color-primary);
    color: #ffffff;
    transform: translateY(-50%);
    font-size: 10px;
    height: 40px;
    width: 50px;
    border: 0;
    text-align: center;
    border-radius: 0;
}

.sidebar-categories li a {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-categories li:last-child a {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-categories li:hover a {
    color: var(--el-color-primary);
}

.sidebar-recent-post li {
    display: block;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
}

.sidebar-recent-post li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.sidebar-recent-post li .post-date {
    color: #959595;
    margin-bottom: 6px;
}

.sidebar-recent-post li .post-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.sidebar-recent-post li .post-title a {
    color: #333;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-recent-post li .post-title a:hover {
    color: var(--el-color-primary);
}

.popular-tag li {
    display: inline-block;
    margin: 2px;
}

.popular-tag li a {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 4px 10px;
    color: #000;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popular-tag li a:hover {
    color: #fff;
    background-color: var(--el-color-primary);
}

.block-post-meta {
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.block-post-meta li {
    position: relative;
    margin-right: 20px !important;
}

.block-post-meta li:last-child {
    margin-right: 0 !important;
}

.block-post-meta li a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.block-post-meta li a:hover {
    color: var(--el-color-primary);
}

.block-post-meta li:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    right: -15px;
}

.block-post-meta li:last-child:after {
    display: none;
}

.block-post-content h6 {
    color: #000;
    font-weight: 500;
    font-size: 24px;
    display: inline-block;
}

.block-post-feature li {
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    text-transform: capitalize;
}

.block-post-feature li:last-child {
    margin-bottom: 0;
}

.block-post-feature li i {
    font-size: 10px;
    color: var(--el-color-primary);
    padding-right: 4px;
}

.block-post-content figure {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 40px 0;
    padding: 25px;
    position: relative;
}

.block-post-content figure:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 80px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--el-color-primary);
}

.block-post-content figure .blockquote {
    margin-bottom: 10px;
}

.block-post-content figure .blockquote p {
    color: #333;
    font-size: 18px;
    font-style: italic;
    line-height: 28px;
}

.block-post-content .blockquote-footer {
    margin-bottom: 0;
    display: inline-block;
    color: var(--el-color-primary);
    font-size: 14px;
}

.block-single-tag li:first-child {
    font-weight: 600;
    font-size: 14px;
}

.block-single-tag li a {
    color: #333;
    font-size: 14px;
}

.block-single-tag li a:hover {
    color: var(--el-color-primary);
}

.block-single-social li:first-child {
    font-weight: 600;
    font-size: 14px;
}

.block-single-social li a {
    color: #959595;
    font-size: 14px;
}

.block-single-social li a:hover {
    color: var(--el-color-primary);
}

.block-post-subtitle {
    color: #000;
    font-weight: 500;
    font-size: 24px;
    display: inline-block;
}

.comments-block {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 40px 0;
    padding: 30px;
}

.comments-block ul li {
    width: 100%;
    margin-bottom: 30px;
}

.comments-block ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.comments-block ul li ul li {
    margin-top: 30px;
    padding-left: 10px;
    margin-left: 20px;
    border-left: 2px solid var(--el-color-primary);
}

.comments-block ul li ul li:last-child {
    margin-bottom: 0 !important;
}

.comments-block ul li h5 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 6px;
}

.comments-block ul li h5 small {
    font-size: 14px;
    color: #333;
}

.comments-block ul li a.reply {
    color: var(--el-color-primary);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.leave-a-comments-block {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 40px 0;
    padding: 30px;
}

.leave-reply-form input {
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 55px;
    border-radius: 0;
    font-size: 14px;
    color: #000;
}

.leave-reply-form textarea {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0;
    font-size: 14px;
    color: #000;
}

.leave-reply-form input:focus, .leave-reply-form textarea:focus {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--el-color-primary) !important;
    color: #000;
    box-shadow: none;
}

.solution-img {
    width: 100%;
    text-align: center;
}

.solution-img .solution-user-img img {
    border: 2px solid #e1e1e1;
    border-radius: 50%;
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.solution-user-name {
    margin: 10px 0 5px 0;
    width: 100%;
    font-size: 20px;
    line-height: 18px;
    font-weight: 500;
    color: var(--el-color-primary);
}

.solution-user-position {
    margin: 5px 0 10px 0;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #959595;
}

.solution-des {
    text-align: center;
    border-radius: 0 0 40px 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.solution-item p {
    margin-bottom: 0;
    color: #fff;
}

.solution-item p i {
    color: var(--el-color-primary);
    padding: 0 6px;
    opacity: 0.7;
    font-size: 20px;
}

.solution-carousel .owl-nav {
    width: 100%;
    margin-top: 30px;
}

.solution-carousel .owl-nav .owl-prev, .solution-carousel .owl-nav .owl-next {
    background-color: #fff !important;
    border-radius: 100%;
    color: #333 !important;
    line-height: 30px;
    height: 30px;
    width: 30px;
}

.solution-carousel .owl-nav .owl-prev:hover, .solution-carousel .owl-nav .owl-next:hover {
    background-color: var(--el-color-primary) !important;
    color: #fff !important;
}

.team-item {
    overflow: hidden;
    background-color: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 0 0 40px 0;
}

.team-item .image {
    overflow: hidden;
}

.team-item .image img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .image img {
    transform: scale(1.1);
}

.team-item .team-item-caption {
    padding: 20px 10px;
    text-align: center;
    background-color: #dbdbdb;
    border-radius: 0 0 40px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-item-caption h4 {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-weight: 500;
    color: #000;
}

.team-item:hover .team-item-caption {
    background-color: var(--el-color-primary);
}

.team-item:hover .team-item-caption h4, .team-item:hover .team-item-caption p {
    color: #fff;
}

.team-item:hover .overlay {
    opacity: 1;
}

.light-area {
    background-color: #FFFFFF;
}

.customer-item img {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.customer-item:hover img {
    opacity: 1;
}

.footer-main {
    background-color: #f5f5f5;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-callus-area {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
}

.footer-callus-area h6 {
    font-weight: 500;
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-callus-area h4 {
    font-weight: 600;
    color: var(--el-color-primary);
    font-size: 32px;
}

.footer-title {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
}

.footer-link li {
    margin-bottom: 10px;
}

.footer-link li:last-child {
    margin-bottom: 0;
}

.footer-link li a {
    color: #333;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-link li a:hover {
    color: var(--el-color-primary);
}

.footer-link li i {
    margin-right: 6px;
}

.footer-instagram {
    clear: both;
    overflow: hidden;
    margin: -7px;
    list-style: none;
}

.footer-instagram li {
    width: 33.33%;
    float: left;
    list-style-type: none;
    padding: 6px;
}

.footer-address li {
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.footer-address li:last-child {
    margin-bottom: 0;
}

.footer-address li a {
    color: #333;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-address li a:hover {
    color: var(--el-color-primary);
}

.footer-address li i {
    margin-right: 6px;
}

.footer-social a {
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    position: relative;
    text-align: center;
    width: 30px;
    color: #fff;
    background-color: #1a1a1a;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-social a:hover {
    background-color: var(--el-color-primary);
}

.footer-copyright {
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright p {
    color: #333;
    font-size: 14px;
}

.inner-page-header-bg {
    background-image: url(../../../assets/images/background-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    background-size: cover;
}

.inner-page-header-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.inner-page-title {
    padding: 80px 0;
}

.inner-page-title h1 {
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 60px;
}

.breadcrumb-box {
    background-color: #151515;
    text-align: center;
    padding: 15px 0;
}

.breadcrumb-box .breadcrumb {
    margin: auto;
    display: inline-block;
}

.breadcrumb-box .breadcrumb li {
    display: inline-block;
    color: #ccc;
    font-size: 14px;
}

.breadcrumb-box .breadcrumb li a {
    color: var(--el-color-primary);
}

.faq-box .accordion-item .accordion-header .accordion-button {
    color: #fff !important;
    padding: 20px 20px !important;
    border-bottom: 0;
    font-size: 14px;
    border-radius: 0;
    background-color: var(--el-color-primary);
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    text-align: left;
}

.faq-box .accordion-item .accordion-header .accordion-button span {
    color: #fff;
    margin-right: 6px;
    font-weight: 600;
}

.faq-box .accordion-item .accordion-header .accordion-button.collapsed span {
    color: var(--el-color-primary);
    margin-right: 6px;
    font-weight: 600;
}

.faq-box .accordion-item .accordion-header .accordion-button.collapsed:after, .faq-box .accordion-item .accordion-header .accordion-button:after {
    display: none;
}

.faq-box .accordion-item .accordion-header .accordion-button {
    display: flex;
}

.faq-box .accordion-item .accordion-header .accordion-button i {
    font-size: 14px;
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.faq-box .accordion-item .accordion-header .accordion-button[aria-expanded=true] i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq-box .accordion-item .accordion-header .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-box .accordion-item .accordion-header {
    padding: 0;
    border-bottom: 0;
    background-color: transparent;
}

.faq-box .accordion-item .accordion-header .accordion-button.collapsed {
    color: #000 !important;
    padding: 20px 20px !important;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    font-weight: 500;
}

.faq-box .accordion-item {
    margin-bottom: 4px;
    background-color: transparent;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.faq-box .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-box .accordion-item .accordion-body {
    line-height: 24px;
    padding: 20px;
    color: #333;
    margin-top: 1px;
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-slider .carousel-indicators-numbers {
    left: auto;
    display: inline-block;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0;
    right: 0;
    background-color: #000;
    padding: 15px 20px;
}

.faq-slider .carousel-indicators-numbers button {
    text-indent: 0;
    margin: 0 2px;
    text-align: center;
    width: 30px;
    height: 30px !important;
    border: none;
    line-height: 30px;
    opacity: 1;
    color: #ccc;
    font-size: 15px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.25s ease;
}

.faq-slider .carousel-indicators-numbers button.active, .faq-slider .carousel-indicators-numbers button:hover {
    color: var(--el-color-primary);
}

.gallery-box {
    position: relative;
    border-radius: 0 0 40px 0;
    overflow: hidden;
}

.gallery-box:after {
    position: absolute;
    left: 4%;
    top: 4%;
    width: 92%;
    height: 92%;
    content: "";
    border-radius: 0 0 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-box:hover:before {
    opacity: 1;
}

.gallery-zoom-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
}

.gallery-box .gallery-zoom {
    background-color: var(--el-color-primary);
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-box .gallery-box-img img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-box:hover .gallery-zoom, .gallery-box:hover:after {
    opacity: 1;
}

.gallery-box .gallery-zoom:hover {
    color: #fff;
}

.error-page-item h2 {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 26px;
    color: #000;
}

.error-page-img img {
    border-radius: 0 0 40px 0;
}

.contact-box {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 0 0 40px 0;
}

.contact-box .icon {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--el-color-primary);
}

.contact-box h4 {
    line-height: 22px;
    color: #000;
    font-size: 22px;
    font-weight: 500;
}

.contact-box h4 small {
    font-size: 14px;
    color: #333;
    width: 100%;
    display: inline-block;
}

.contact-box ul li {
    padding-bottom: 8px;
}

.contact-box ul li:last-child {
    padding-bottom: 0;
}

.contact-box ul li a {
    color: #333;
}

.contact-box ul li a i {
    padding-right: 6px;
    color: var(--el-color-primary);
}

.contact-form-map {
    background-color: #ddd;
}

.contact-form input {
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 55px;
    border-radius: 0;
    font-size: 14px;
    color: #000;
}

.contact-form textarea {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0;
    font-size: 14px;
    color: #000;
}

.contact-form input:focus, .contact-form textarea:focus {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--el-color-primary) !important;
    color: #000;
    box-shadow: none;
}

.help-block ul {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    padding: 10px;
    border-radius: 4px;
}

.terms-and-conditions-single-content h3 {
    color: var(--el-color-primary);
    font-size: 22px;
}