/* ------------------------------------------ */

:root {
    --main-color: #e23433;
    --second-color: #000;
    --icons-color: #f55b5b
}

@font-face {
    font-family: 'DinNextLight';
    src: url('fonts/din-next/light/DinNextLight.eot');
    src: url('fonts/din-next/light/DinNextLight.eot') format('embedded-opentype'), url('fonts/din-next/light/DinNextLight.woff2') format('woff2'), url('fonts/din-next/light/DinNextLight.woff') format('woff'), url('fonts/din-next/light/DinNextLight.ttf') format('truetype'), url('fonts/din-next/light/DinNextLight.svg#DinNextLight') format('svg');
}

@font-face {
    font-family: 'DinNextRegular';
    src: url('fonts/din-next/regular/DinNextRegular.eot');
    src: url('fonts/din-next/regular/DinNextRegular.eot') format('embedded-opentype'), url('fonts/din-next/regular/DinNextRegular.woff2') format('woff2'), url('fonts/din-next/regular/DinNextRegular.woff') format('woff'), url('fonts/din-next/regular/DinNextRegular.ttf') format('truetype'), url('fonts/din-next/regular/DinNextRegular.svg#DinNextRegular') format('svg');
}

@font-face {
    font-family: 'DinNextMedium';
    src: url('fonts/din-next/medium/DinNextMedium.eot');
    src: url('fonts/din-next/medium/DinNextMedium.eot') format('embedded-opentype'), url('fonts/din-next/medium/DinNextMedium.woff2') format('woff2'), url('fonts/din-next/medium/DinNextMedium.woff') format('woff'), url('fonts/din-next/medium/DinNextMedium.ttf') format('truetype'), url('fonts/din-next/medium/DinNextMedium.svg#DinNextMedium') format('svg');
}

@font-face {
    font-family: 'DinNextBold';
    src: url('fonts/din-next/bold/DinNextBold.eot');
    src: url('fonts/din-next/bold/DinNextBold.eot') format('embedded-opentype'), url('fonts/din-next/bold/DinNextBold.woff2') format('woff2'), url('fonts/din-next/bold/DinNextBold.woff') format('woff'), url('fonts/din-next/bold/DinNextBold.ttf') format('truetype'), url('fonts/din-next/bold/DinNextBold.svg#DinNextBold') format('svg');
}


/*   01 - General & Basic Styles   */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'DinNextRegular';
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DinNextRegular';
    font-size: 1rem;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    direction: ltr;
    text-align: left;
    /* padding-top: 60px; */
}

a {
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    color: #e23433;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DinNextMedium';
    color: var(--second-color);
}

.head-fonts {
    font-size: 2.15rem
}

.div-80 {
    height: 80px;
    width: 100%;
    display: block;
}

.div-30 {
    height: 30px;
    width: 100%;
    display: block;
}

.div-50 {
    height: 50px;
    width: 100%;
    display: block;
}

.underline::after {
    content: "";
    background-color: #e23433;
    width: 50px;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: -12px;
}

.heads {
    color: #e23433;
    font-size: 16px;
}

.div-60 {
    height: 60px;
    width: 100%;
    display: block;
}

#wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: stretch;
}

.overlay-page {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease-in;
}


/* display .overlay when it has the .toggled class */

.overlay-page.toggled {
    display: block;
    opacity: 1;
    padding-top: 100px;
	bottom:0;
}

#sideBar-wraper .closse {
    position: absolute;
    top: 15px;
    right: 0;
    margin-right: -25px;
}

#sideBar-wraper .closse img {
    width: 40px;
    cursor: pointer;
}

#sideBar-wraper {
    position: fixed;
    top: 0;
    margin: 0;
    width: 250px;
    height: calc(100% + 60px);
    padding-bottom: 60px;
    /* overflow-y: auto; */
    will-change: transform;
    backface-visibility: hidden;
    z-index: 99999;
    background: #FFF;
    transform: translateY(115%);
    backface-visibility: hidden;
    transition: all 0.2s ease;
}


/* Change width of side bar to display it*/

#wrapper.toggled #sideBar-wraper {
    overflow: visible;
    left: 0;
    right: auto;
    transform: translateX(0);
}

.topHead {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #dee2e6!important;
}

.topHead img {
    width: 275px;
}


/* mainContent-wraper */

#mainContent-wraper {
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#wrapper.toggled #mainContent-wraper {
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}


/* =========================================================*/


/*   02 - Header Styles   		   */

.top-menu {
    margin-right: 1rem;
}

.top-menu img {
    width: 25px;
}

.top-menu a {
    display: flex;
    align-items: baseline;
	padding: 0 0.5rem;
}

.user-img {
    padding: 4px 5px 5px;
    margin-left: 10px;
}

.user-imgg {
    padding: 8px 12px;
    color: #fff;
    border-radius: 5px;
}

.outline-link {
    color: #e23433;
    border: 1px solid #e23433;
    padding: .7rem 1rem;
    border-radius: 3px;
}

.outline-link:hover {
    background: #e23433;
    color: #ffffff;
}

.navbar li a,
.meun-list li a {
    padding: .7rem 0rem !important;
    margin-right: 10px;
    margin-left: 10px;
    font-family: "DinNextMedium" !important;
}



.navbar li .nohover,
.meun-list li .nohover {
    background: #e23433;
    padding: 4px !important;
    border-radius: 5px;
    display: inline-block;
}

.navbar li .nohover:hover {
    border-bottom: none;
}

.navbar {
    padding: 0;
}

.navbar li a:last-child {
    position: relative;
}

.navbar a span {
    background: #000;
    position: absolute;
    top: 3px;
    left: 23px;
    width: 12px;
    height: 13px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    font-size: 10px;
    vertical-align: middle;
    color: #fff;
    line-height: 11px;
}


/* .logo-div {
    padding-bottom: 20px;
} */


/* =========================================================*/


/* 03 - Slider Styles  */

.slider .owl-carousel .owl-nav button.owl-prev,
.slider .owl-carousel .owl-nav button.owl-next {
    padding: 7px 18px !important;
    background-color: #e23433;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #6363631f;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    text-align: center;
	height: 50px;
    width: 50px;
}

.slider .owl-carousel .owl-nav button.owl-prev {
    left: 2%
}

.slider .owl-carousel .owl-nav button.owl-next {
    right: 2%;
}

.slider .owl-carousel .owl-nav button.owl-prev span,
.slider .owl-carousel .owl-nav button.owl-next span {
    font-size: 20px;
    color: #fff;
}

.slider .info {
    position: absolute;
    top: 30%;
    width: 85%;
    text-align: center;
}

.slider .info .btn {
    background-color: #e23433;
    color: #fff;
}

.slider .info form .col-md-2,
.slider .info form .col-md-6 ,.slider .info form .col-md-4 {
    padding-right: 3px !important;
    padding-left: 3px !important;
}

.slider .info form .col-6,
.slider .info form .col-6 {
    padding-right: 15px;
    padding-left: 15px;
}

.slider .form-control {
    border-radius: .25rem;
    height: calc(1.75em + 1rem + 6px);
    padding: .75rem 1rem;
}


/* input#palceholder-img {
    background-image: url(../images/iconsl.gif);
    background-repeat: no-repeat;
    text-indent: 30px;
    background-size: contain;
    background-position: right;
}

input#palceholder-img:focus {
    background-image: none;
    text-indent: 0px
} */


/* =========================================================*/

.services .owl-carousel .owl-nav button.owl-prev,
.services .owl-carousel .owl-nav button.owl-next {
    padding: 3px 14px !important;
    background-color: transparent;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #e23433;
    position: absolute;
    top: -85px;
    color: #fff;
	left:100% !important;
}

.services .owl-carousel .owl-nav button.owl-prev:hover,
.services .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #e23433;
    color: #fff;
}

.services .owl-carousel .owl-nav button.owl-prev:hover span,
.services .owl-carousel .owl-nav button.owl-next:hover span {
    color: #fff;
}

.services .owl-carousel .owl-nav button.owl-prev {
    right: 10%;
}

.services .owl-carousel .owl-nav button.owl-next {
    right: 0%;
}

.services .owl-carousel .owl-nav button.owl-prev span,
.services .owl-carousel .owl-nav button.owl-next span {
    font-size: 22px;
    color: #fff;
}

.services .owl-carousel .owl-nav button.owl-prev span:hover,
.services .owl-carousel .owl-nav button.owl-next span:hover {
    color: #fff;
}

.services .heads {
    color: #e23433;
    font-size: 16px;
}

.services .fixed-label {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    padding: 2px 25px;
    text-align: center;
    border-radius: 5px;
}

.services .red {
    background-color: #e23433;
}

.services .yellow {
    background-color: #ffd900;
}

.services .green {
    background-color: #069e59;
}

.services .black {
    background-color: #121b22;
}

.services .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    display: none;
    transition: all .2s ease-in-out;
}

.services .card-img:hover .overlay {
    display: block;
    transition: all .2s ease-in-out;
}

.services .icons {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.services .icons .fas,
.services .icons .far {
    background-color: #eee;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
}

.card-title:hover {
    color: #e23433;
}

.services .card-img:hover a {
    color: #000;
}

.services .card-body .fas {
    color: var(--icons-color);
}

.services .btn {
    background-color: #000;
    color: #FFF;
}


/*=========================================================================*/


/*   10 - Contact Styles           */

.full-width-map {
    width: 100%;
}

.contact-sec {
    position: relative;
}

.contact-div {
    width: 100%;
    position: absolute;
    top: -100px;
    right: 0;
    left: 0;
}

.mail-icon {
    background: #e23433;
    padding: 20px;
    height: 100px;
    width: 100px;
    display: block;
    float: left;
}

.mail-input {
    float: right;
    width: calc(100% - 130px);
    margin-top: 30px;
}

.input-group-text {
    color: #ffffff;
    background-color: #e23433;
    border: 1px solid #e23433;
}

.address-details .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.address-details .card {
    border: 0;
    border-radius: 0;
}

.address-details .card-header .btn {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    color: #141414;
    text-align: right;
    font-size: 18px;
}

.address-details .card-header {
    background: #ffffff;
    border-bottom: 1px solid #fafafa;
}

.order-title {
    background: #e23433;
    padding: 10px 15px;
    color: #ffffff;
    width: 100%;
    display: inline-flex;
    align-items: center;
    height: 100px;
}

.order-title img {
    float: right;
    margin-right: 20px;
}

.order-title:after {
    display: block;
    clear: both;
    content: "";
}

.order-title h5 {
    color: #ffffff;
}

.red-btn {
    background: #e23433;
    border-radius: 0;
    border-color: #e23433;
}

.red-btn:hover,
.red-btn:focus,
.red-btn:active {
    color: #e23433 !important;
    background: #ffffff !important;
    border-color: #e23433 !important;
    outline: none !important;
    box-shadow: none !important;
}

.dark-btn {
    background: #141414;
    border-radius: 0;
    border-color: #141414;
}

.dark-btn:hover,
.dark-btn:focus,
.dark-btn:active {
    color: #141414 !important;
    background: #ffffff !important;
    border-color: #141414 !important;
    outline: none !important;
    box-shadow: none !important;
}

.service-request {
    margin-top: -100px;
}

.address-details .card-header .btn i {
    float: left;
    margin-top: 3px;
}

.address-details .card-header .btn i.fa-minus {
    background: #e23433;
    color: #ffffff;
    padding: 2px 5px;
}

.address-details .card-header .btn i.fa-plus {
    display: none;
}

.address-details .card-header .btn.collapsed i.fa-plus {
    display: block;
}

.address-details .card-header .btn.collapsed i.fa-minus {
    display: none;
}

.address-details .form-control {
    margin-bottom: 15px;
}

.address-details .dark-btn {
    width: 75%;
}

.blog-block a {
    display: block;
}

.gray-bg {
    background: #fafafa;
    padding-bottom: 50px;
}

.gray-bg .frm {
    background: #ffffff;
    padding: 30px 20px;
}

.frm label {
    font-family: "DinNextMedium" !important;
    margin-bottom: 15px;
}

.width-60 {
    width: 60%;
}

.address-detailes {
    background: #fafafa;
}

.address-block-header {
    padding: 15px 30px;
    border-bottom: 1px solid #7d7d7d;
}

.address-block-body {
    padding: 15px 30px;
}

.form-control {
    border-radius: 0;
    color: #7d7d7d;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #e23433;
}

.time {
    height: 38px;
    border: 1px solid #ced4da;
    color: #7d7d7d;
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-maillist-email {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.mail-input button {
    background: #e23433;
    border: none;
    padding: 0px;
    margin: 0;
    height: 38px;
}

.radio-toolbar .form-group {
    margin: 0;
}


/*=========================================================================*/


/* Footer */


/*   11 - Footer Styles            */

.social-icons a:first-child {
    padding-right: 0;
}

.footer-line {
    border-top: 5px solid #e23433;
    width: 60px;
    float: left;
    margin-top: 5px;
    margin-bottom: 30px;
}

.footer-menu {
    columns: 2;
}

.footer-menu li.active a {
    color: #e23433;
}

.padd-r-50 {
    padding-right: 50px;
}

.footer-menu li a {
    margin-bottom: 10px;
    display: block;
    color: #000;
    font-weight: 500;
    /* font-family: "DinNextMedium" !important; */
}

.footer-menu li a:hover {
    color: #e23433;
}

.bootom-footer {
    border-top: 1px solid #7d7d7d;
    padding: 15px 0;
    margin-top: 20px;
}

.copyright {
    margin-bottom: 0;
}

.copyright a {
    color: #e23433;
    text-transform: uppercase;
}


/*   16 - Scroll Top      */

#scroll-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #FFF;
    background-color: #e23433;
    text-align: center;
    right: 5px;
    bottom: 45px;
    position: fixed;
    z-index: 9999;
    display: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
}


/* ======================================================================= */


/* About Page */

.about-us {
    background: url(../images/breadcarmb.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 300px;
    position: relative;
	padding-top: 150px;
}

.about-us .info {
    padding: 60px 0 0 0;
}

.about-us .breadcrumb {
    direction: rtl;
    background-color: transparent;
}

.about-us .breadcrumb li,
.about-us .breadcrumb li a {
    color: #FFF;
    font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #e23433;
    content: "|";
    padding-left: .5rem;
}

.statistics {
    background: url(../images/parallax-image.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 400px;
    position: relative;
    background-attachment: fixed;
}

.statistics .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .75);
}

.statistics .counter-box .number {
    font-size: 3.2rem;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 0;
}

.statistics .counter-box span {
    color: #FFF !important;
    font-weight: 500;
    font-size: 1rem;
}

.search-banner {
    background-color: #ebebeb;
}

.search-banner .btn {
    background-color: #e23433;
    color: #fff;
}

.search-banner .form-group {
    margin-bottom: 0;
}

.search .form-control {
    color: #7d7d7d;
    padding: 0.395rem 0.95rem;
    background-color: #ffffff;
    height: 35px;
    border-radius: 5px;
}

.search .list-filter .nav-link {
    padding: 0;
}

.search .list-filter .second,
.search .list-filter .first {
    background-color: #eee8e8bd;
    color: #7d7d7d;
    border-radius: .25rem;
    padding: 0.5rem;
}

.search .list-filter .active .first,
.search .list-filter .active .second {
    color: #fff;
    background-color: transparent;
    border-radius: 0rem;
    /* padding: 0rem; */
}

.page-item.active .page-link,
.page-link:hover,
.page-link:focus {
    background-color: #e23433;
    border-color: #e23433;
    color: #fff;
    box-shadow: none;
}

.page-link {
    color: #c3c3c3;
    background-color: #f8f8f8;
    border: 1px solid #c3c3c3;
    margin-left: 5px;
    border-radius: 15%;
}

.search .col-lg-4  .card-img {
    height: 185px;
    overflow: hidden;
}
.col-lg-4 .card-img {
    height: 225px;
    overflow: hidden;
}
.col .card-img {
    height: 245px;
    overflow: hidden;
}
.search .card-body .text-muted {
   /*min-height: 60px;*/
}

.login-sec .info {
    background: #e23433;
    padding: 15px 30px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.login-sec .customlink {
    color: #e23433;
}

.box-upload {
    background-color: #ebebeb;
    border-radius: 8px;
    padding: 45px;
    cursor: pointer;
}

.setting .nav {
    background-color: #fafafa;
}

.setting .nav-item {
    padding: 15px 0;
    border-bottom: 1px solid #8c8c8c;
}

.setting .nav-pills .nav-link {
    border-radius: 0;
    text-align: center;
    color: #000;
}

.setting .nav-pills .no-border {
    border-bottom: none;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #e23433;
    color: #fff !important;
}

.setting .card-img {
    flex: 2;
}

.setting .card-body {
    flex: 1 1 40%;
}

.icon-favorite {
    background: #e23433;
    border-radius: 50%;
    padding: 10px;
	height: 50px;
    width: 50px;
    text-align: center;
}

.setting .info .red-btn {
    background-color: #e23433 !important;
}

.setting .info .red-btn:hover {
    background-color: #fff !important;
}

.display .green {
    padding: 5px 25px;
    text-align: center;
    border-radius: 3px;
    background-color: #069e59;
    color: #fff;
}

.display .fas {
    color: var(--icons-color);
}

.display .options {
    flex: 1;
}

.display .price {
    flex: 1;
}

.services .options img {
    display: inline;
    width: 28px;
}

.card-body small img {
    display: inline !important;
    width: 18px !important;
}

.display .icons-share li {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #e9e3e3;
    margin-left: 10px;
}

.display .icons-share li .fas {
    color: #969393;
}

.owl-thumbs button {
    width: 145px;
    border: none;
}

.mobile {
    border-top: 1px solid #e23433;
}

.footer .link-footer a {
    font-family: "DinNextMedium" !important;
    color: #000;
    padding: 12px 5px;
}

.footer .link-footer .active {
    background-color: #e23433;
    color: #fff;
}

#filter-side {
    display: block;
    position: fixed;
    top: 70px;
    margin: 0;
    width: 200px;
    height: 100%;
    overflow-y: auto;
    will-change: transform;
    backface-visibility: hidden;
    z-index: 99999;
    background: #f4f3f3;
    transform: translateX(-150%);
    transition: all 0.45s ease-in-out;
    left: -200px;
    padding: 30px 0;
}

.navbar.filter-show #filter-side {
    overflow: visible;
    left: 0;
    right: auto;
    transform: translateX(0);
}

.filter i {
    font-size: 30px;
}

#stickybottom {
    position: fixed;
    bottom: 50px;
    z-index: 2;
    left: 5%;
    width: 90%;
}

#stickytypeheader {
    z-index: 2;
}

.ui-slider-horizontal {
    height: .3em !important;
}

.ui-widget-header {
    background: #e23433;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 50%;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.45em;
    border: 1px solid #e23433;
    background: #fff;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    color: #fff;
}

.fiexed_menue {
    width: 100px;
    position: fixed;
    left: -16px;
    top: 30%;
    z-index: 999;
}

.outer-border2 {
    width: 70px;
    height: 45px;
    border: 1px solid #e23433;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

.dept-photo2 {
    width: 32px;
    height: 30px;
    background: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 0px solid #ffffff;
}

.dept-nav .hover-img {
    display: none;
}

.dept-photo {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #ffffff;
}

.dept-nav a h4 {
    text-align: center;
    color: #ffffff;
    line-height: 1.5;
}

.dept-nav a {
    max-width: 180px;
}

.outer-border {
    width: 130px;
    height: 130px;
    border: 1px solid #e23433;
    padding: 5px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.dept-nav a:hover .outer-border {
    border-color: #ffffff;
}

.dept-nav a:hover .dept-photo {
    background: #e23433;
}

.dept-nav a:hover .hover-img {
    display: block;
}

.dept-nav a:hover .home-img {
    display: none;
}

.outer-border2:hover,
.dept-photo2:hover,
.outer-border2:hover .dept-photo2 {
    background: #e23433;
}

.fiexed_menue .nav-link {
    padding: 4px;
}

.div_100_top
{
	height:104px;
}
#message2,#message
{
	display:none;
}

.has-error p
{
	font-size:12px;
	color:red;
}

.has-error .help-block
{
	font-size:12px;
	color:red;
}

.ltr
{
	direction:rtl;
}

.blog-block {
    -webkit-box-shadow: -2px 2px 5px 5px rgb(250 250 250);
    -moz-box-shadow: -2px 2px 5px 5px rgba(250,250,250,1);
    box-shadow: -2px 2px 5px 5px rgb(250 250 250);
    margin-bottom: 20px;
}

.blog-det {
    padding: 25px;
}

.publish-date {
    font-size: 16px;
}

.blog-block a {
    display: block;
}
.more-link {
    color: #e23433;
    position: relative;
    display: inline-block;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgb(255 255 255 / 30%);
    display: inline-flex;
    align-items: flex-end;
}

.pagination li.active  , .pagination li:hover
{
	background-color: #e23433;
    border-color: #e23433;
    color: #fff;
    box-shadow: none;
}

.pagination li 
{
    color: #c3c3c3;
    background-color: #f8f8f8;
    border: 1px solid #c3c3c3;
    margin-left: 5px;
    border-radius: 15%;
	border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
	border: 1px solid #c3c3c3;
    margin-left: 5px;
    border-radius: 15%;
	padding: .5rem .75rem;

}


#list .card-img
{
	min-width:32%;
	flex:1;
}

.search #list  .card-body .text-muted {
    min-height: auto; 
}
.range-slider {
    width: 100%;
 /* Match this to the SVG's x2 value */
    margin: auto;
    text-align: center;
    position: relative;
    height: 64px;
}
.range-slider svg,
.range-slider input[type="range"] {
    position: absolute;
    left: 0;
    bottom: 0;
}

.range-slider2 {
    width: 100%;
 /* Match this to the SVG's x2 value */
    margin: auto;
    text-align: center;
    position: relative;
    height: 64px;
}
.range-slider2 svg,
.range-slider2 input[type="range"] {
    position: absolute;
    left: 0;
    bottom: 0;
}

input[type="number"]:invalid,
input[type="number"]:out-of-range {
    border: 2px solid #e23433;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
}
input[type="range"]:focus {
    outline: none;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #e23433;
}
input[type="range"]:focus::-ms-fill-lower {
    background: #e23433;
}
input[type="range"]:focus::-ms-fill-upper {
    background: #e23433;
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: #e23433;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}
input[type="range"]::-webkit-slider-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #e23433;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #e23433;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: #e23433;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}
input[type="range"]::-moz-range-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #e23433;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #e23433;
    cursor: pointer;
}
input[type="range"]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper {
    background: #e23433;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}
input[type="range"]::-ms-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #e23433;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #e23433;
    cursor: pointer;
}

footer 
{
	border-top:1px solid #ccc;
}
.delet_image
{
	position: absolute;
    top: 4px;
    background: #e23433;
}

input.btn-fileimage {
    position: absolute;
    right: 0px;
    height: 35px;
    margin: 0;
    font-size: 23px;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
    direction: rtl;
	width: 113px;
    overflow: hidden;
	transform: translateX(0);
	transition: all 0.2s ease;
}

.pointer_change {
    cursor: pointer;
    background: #ccc;
    display: inline-block;
    padding: 8px 20px;
    float: right;
    margin: 0 4px;
}
.show_in_small
{
	display:none;
}

.filter i
{
	font-size: 13px;
}

.compareajaxsmall
{
	float: right;
    left: 0;
    position: absolute;
    background: #e23433;
    border-radius: 6px;
}

.red-btn
{
	background: #e23433 !important;
    border: 1px solid #bd2121;
}

.shadow
{
	background: linear-gradient(180deg,rgba(0, 0, 0, 0.8)0%, rgba(255, 255, 255, 0) 100%);
	box-shadow: none !important;
}

.logo
{
	width:100px;
}
.slider_h .slider-carousel
{
	height:610px;
	overflow:hidden;
}

.search .btn {
    background-color: #e23433;
    color: #fff;
}

.search_form .form-control {
    border-radius: 0.25rem;
    height: 35px;
    padding: 0.75rem 1rem;
	margin-bottom:10px;
}

.search_form
{
	margin-top: -40px;
    z-index: 999;
    position: relative;
    background: #fff;
    padding: 15px;
    border: 1px solid #ccc;
	border-radius:10px;
}

.search_form .form-group {
    margin-bottom: 0rem;
}

#navbarSupportedContent ul li
{
	position:relative;
}

#navbarSupportedContent ul li:hover
{
	color: #e23433;
    border-bottom: 3px solid #e23433;
}

.dropdown-item
{
	width:auto;
	text-align:right;
}

#navbarSupportedContent ul li:hover ul
{
	display:block;
}

#navbarSupportedContent ul li ul li a:hover
{
	border-bottom:none;
	background:none;
	color:#fff;
}

#navbarSupportedContent ul li ul li a
{
	padding:0 !important;
}

#navbarSupportedContent ul li ul li
{
	padding:5px 10px !important;
}

#navbarSupportedContent ul li ul li:hover
{
	background:#e23433;
	color:#fff;
}

.nav-pills li.active{
    background-color: #e23433;
    color: #fff !important;
}

.nav-pills li.active a{
    color: #fff !important;
}
.footer-logo
{
	width:150px;
}
.work-form
{
	width:100%;
}

.file-preview , .file-drop-zone
{
	overflow:hidden;
}

.pagination a
{
	color:#000;
}

.pagination li:hover a , .pagination .active a
{
	color:#fff;
}

.card_shadow
{
	box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 6%);
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px;
    overflow: hidden;
}

.servies-carousel button span
{
	color: #e23433 !important;
}

.servies-carousel button:hover span
{
	color: #fff !important;
}

.min_height_100
{
	min-height:100px;
}

.bg-light {
    background-color: #f7f7f7 !important;
}

.Parrallex ,.client
{
	padding:100px 0;
}
.Parrallex , .Parrallex h3 , .Parrallex p
{
	color:#fff;
}

.button_link
{
	background: #000;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
	margin-top:30px;
	display:inline-block;
}

.button_link:hover
{
	color:#e23433;
}
.overlayhome
{
	background: #e23433;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
    opacity: 0.5;
}

.Parrallex
{
	position:relative;
}
.user_avatar
{
	text-align: center;
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin-top: -18%;
    margin: 0 auto;
    margin-top: -70px;
	border-radius: 50%;
}
.user_avatar img
{
	height: 100%;
    width: auto;
    max-width: none;
}

.card_shadow_user {
    box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 6%);
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px;
	margin-bottom: 80px;
	position:relative;
	padding-bottom: 20px;
}

.mb2-5
{
	margin-bottom:100px;
}

.service_row {
    margin: 0px auto;
    display: table;
    position: relative;
    width: 60px;
    height: 60px;
    background: #30597e;
    border-radius: 50%;
    text-align: center;
    padding-top: 15px;
    font-size: 20px;
    color: #fff !important;
	transform: scale(3);
    transition: all .3s ease-in-out 0s,visibility 0s linear .3s,z-index 0s linear .01s;
	display: inline-block;
    position: absolute;
    left: calc(50% - 24px);
    bottom: -24px;
    opacity: 0;
}

.card_shadow_user:hover .service_row
{
	transform: scale(1);
	display:block;
	opacity: 1;
}
footer
{
	padding-top:100px;
}

.social-icons a
{
	color: #fff;
    background: #e23433;
    margin-left: 10px;
    width: 35px;
    border-radius: 50%;
    height: 35px;
    text-align: center;
    padding: 3px;
    font-size: 16px;
}

.social-icons a:hover
{
	background:#3271a7 !important;
}

#form-signup a
{
	color:#e23433;
}

.question-sec .title {
    float: left;
    width: 91%;
	text-align:left;
}

.question-sec .up {
    background: #000;
    color: #e23433;
    float: right;
    padding: 10px;
}

.question-sec .down {
    background: #cecece;
    color: #686868;
    float: right;
    padding: 10px;
    display: none;
}

.question-sec .collapsed .down {
    display: block;
}

.question-sec .card-header {
    border-bottom: none;
    border-radius: 6px;
    font-size: 20px;
    font-family: 'fairuz-bold';
    cursor: pointer;
    padding: 0 0px 0 15px;
    overflow: hidden;
}

.question-sec .collapsed .up {
    display: none;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    left: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0px 0px 11px rgb(0 0 0 / 50%);
}

.copyright {
    float: right;
}

.alrajihi a
{
	color:#000;
}

.address-block-body a
{
	color:#000;
}

.ml-md-3, .mx-md-3 {
    margin-right: 1rem!important;
}
.text-left {
    text-align: right !important;
}

.float-left {
    float: right !important;
}
.float-right {
    float: left!important;
}

.blog-block
{
	overflow:hidden;
}
.blog-block2 img ,.blog-block img , .client-item img 
{
	transform: scale(1) !important;
    transition: all .3s ease-in-out 0s,visibility 0s linear .3s,z-index 0s linear .01s;
}
.blog-block2:hover img , .blog-block:hover img , .client-item:hover img
{
	transform: scale(1.1) !important;
}

.blog-det a:hover , .blog-det a h4:hover
{
	color:#6190b9;
}

.eye_postion
{
	position: absolute;
    top: 38px;
    right: 8px;
    font-size: 25px;
    color: #4b667e;
}

#reveal-password
{
	opacity:0;
}

.navbar.navbar-expand-md
{
	float:left;
}

.top-menu .d-flex.align-content-center.justify-content-start
{
	float:right;
}

.navbar-toggler.flaot-right
{
	float:right;
}

.navbar.navbar-expand-md
{
	width:100%;
}

.danger
{
	background:red;
	background-color: #e72525 !important;
}

.clearfix
{
	clear:both;
}

.a_color
{
	color:#000;
}

.green
{
	background: #83b94a  !important;
    border: 1px solid #83b94a !important;
}

.red2
{
	background: #c73d3d  !important;
    border: 1px solid #c73d3d ;
}

.blue
{
	background: #3e3e85 !important;
    border: 1px solid #3e3e85;
}

.ad_show
{
	border:1px solid #ccc;
}

.overflow-auto
{
	overflow-y:scroll;
	max-height:400px;
}

.category-carousel a
{
	color:#000;
}

.category-carousel .owl-item
{
	border-right:1px solid #d9d1d1;
	padding:0 10px;
}

.category-carousel .owl-item:last-child
{
	border-right:0px solid #d9d1d1;
}

.category-carousel .owl-item img {
    height: auto;
    width: auto;
	filter: grayscale(1);
}

.category-carousel .owl-item img:hover {
    height: auto;
    width: auto;
	filter: grayscale(0);
}

.category_category .active_cat
{
	background:linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(216,216,216,1) 50%,rgba(255,255,255,0) 100%);
	
}
.category_category .notactive_cat img
{
	filter: grayscale(1);
}

.category_category .active_cat img
{
	filter: grayscale(0);
}
.category_category .owl-item
{
	padding:0;
}
.category_category .media 
{
	padding:20px 10px;
}
.text-right
{
	text-align:left !important;
}


.dropdown-menu
{
	right: 15px;
    left: 15px;
	margin: -12px 0 0;
	padding: 10px 15px;
    overflow: hidden;
	text-align:left;
}
.dropdown-menu a
{
	color: var(--second-color);
}
.no_relativ
{
	position:initial !important;
	margin-right:auto;
	margin-left: inherit !important;
}
.overflow_bg
{
	height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100%;
    z-index: 1;
}

.slider .info {
    z-index: 2;
} 

.category-carousel .owl-item {
    border: 1px solid #ccc;
    border-radius: 5px;
	padding: 15px;
}
.shadow {
    background: #4e4747;
	webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.menuscroll .top-menu
{
	position:absolute;
	left:0;
	top:5px;
	webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.menuscroll .img-fluid 
{
    max-width: 100%;
    height: 50px;
	webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

body
{
	padding-top:65px;
}

.category-carousel .owl-item {
    border: 1px solid #ccc !important;
}