:root {
    --primary: #eb5424;
    --secondary: #606060;
    --secondary-dark: #303030;
    --secondary-dark-fade: #30303029;
    --white: #f8f8f8;
    --white-darker: #e0e0e0;
    --danger: #ff0000;
}

body {
    background: var(--white);
    color: var(--secondary);
    font-family: "Proxima", sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}
html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-align: center;
    vertical-align: middle;
    scroll-behavior: smooth;
}
/* @font-face {
	font-family: 'Proxima';
	src: url(../fonts/ProximaNova-Regular.otf);
}
@font-face {
	font-family: 'Proxima Bold';
	src: url(../fonts/ProximaNova-Bold.otf);
} */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}
p {
    letter-spacing: 1px;
    line-height: 28px;
}
hr {
    border-color: var(--white-darker);
    margin: 0 auto 20px auto;
    width: 100px !important;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
.title {
    padding-bottom: 40px;
}
.title h2 {
    color: var(--secondary-dark);
    line-height: 20px;
    padding-bottom: 30px;
}
.title p {
    padding-top: 14px;
}
.parallax-section {
    background-attachment: fixed !important;
    background-size: cover !important;
}
/* preloader section */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: none repeat scroll 0 0 white;
    background: none repeat scroll 0 0 var(--white);
}
.sk-spinner-rotating-plane.sk-spinner {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}
@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg)
            rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
/* home section */
#home {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
@supports not (-webkit-touch-callout: none) {
    #home {
        background-position: 50% 0;
        background-attachment: fixed;
    }
}
#home h2 {
    letter-spacing: 2px;
}
.btn {
    background: var(--primary);
    border-radius: 4px;
    border: none;
    color: white;
    font-size: 16px;
    padding: 20px 40px;
    margin-top: 60px;
}
.btn:hover {
    background: white;
    color: var(--primary);
    transition: all 0.4s ease-in-out;
}
/* navigation section */
.navbar-default {
    background: white;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.04);
    margin: 0 !important;
}
.navbar-default .navbar-brand {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    line-height: 40px !important;
}
.navbar-default .navbar-nav li a {
    color: var(--secondary);
    font-weight: bold;
    padding-right: 15px;
    padding-left: 15px;
    line-height: 40px;
}
.navbar-default .navbar-nav li a:hover {
    color: var(--primary);
    text-decoration: none;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: var(--primary);
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border: none;
    padding-top: 12px;
}
.navbar-default .navbar-toggle .icon-bar {
    background: var(--primary);
    border-color: transparent;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}
.navbar .search {
    width: 100%;
    height: 120px;
    background: var(--secondary-dark);
    position: absolute;
}
.navbar .search input {
    margin-top: 35px;
    float: left;
    background: none;
    border: none;
    outline: none;
    color: white;
    width: 90%;
    height: 50px;
    border-bottom: 1px solid var(--secondary);
}
.navbar .search button {
    margin-top: 35px;
    float: left;
    background: none;
    border: none;
    outline: none;
    width: 10%;
    height: 50px;
}
.navbar .search button i {
    font-size: 25px;
}
/* service section */
#service {
    background-color: white;
}
#service .container {
    width: 100%;
    padding: 0;
    margin: 0;
}
#service .title {
    padding: 60px 0px 40px 0px;
}
#service .bg-black {
    background-color: var(--secondary-dark);
    color: white;
}
#service .bg-red {
    background-color: var(--primary);
    color: white;
}
#service h4 {
    padding-bottom: 60px;
}
#service .fa {
    color: white;
    cursor: pointer;
    font-size: 40px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    margin-top: 40px;
}
#service .fa:hover {
    background-color: white;
    border-radius: 50%;
    color: var(--secondary-dark);
}
/* status section */
#status {
    color: white;
    padding-top: 160px;
    padding-bottom: 200px;
    background-color: var(--secondary-dark);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}
@supports not (-webkit-touch-callout: none) {
    #status {
        background-position: 50% 50px;
        background-attachment: fixed;
    }
}
#status h2 {
    color: white;
}
#status h3 {
    font-size: 20px;
    line-height: 30px;
}
#status h4 {
    color: var(--secondary-dark);
    line-height: 10px;
    font-weight: bold;
}
#status .status-des {
    background-color: var(--primary);
    color: white;
    padding: 20px 12px;
    position: relative;
}
#status img {
    max-width: 100%;
    height: auto;
    padding-top: 60px;
}
#status .wow.fadeIn {
    padding-bottom: 50px;
}
/* portfolio section */
#portfolio {
    padding-top: 100px;
    padding-bottom: 100px;
}
#portfolio h2 {
    line-height: 20px;
}
#portfolio h3 {
    color: var(--primary);
    padding-bottom: 60px;
}
#portfolio a {
    text-decoration: none;
}
#portfolio img {
    border-radius: 1px;
    width: 100%;
    max-width: 100%;
    height: 170px;
    opacity: 0.8;
    transition: all 0.4s ease-in-out;
    object-fit: cover;
    height: 170px;
    object-fit: cover;
}
#portfolio img:hover {
    opacity: 1;
}
@media screen and (min-width: 767px) and (max-width: 991px) {
    #portfolio img {
        height: 270px;
    }
}
@media screen and (max-width: 767px) {
    #portfolio img {
        height: auto;
        max-height: 360px;
    }
}
#portfolio .portfolio-item {
    margin-bottom: 34px;
}
#portfolio .portfolio-item h5 {
    position: absolute;
    width: 100%;
    top: 0px;
    color: white;
    text-shadow: 0px 0px 5px var(--secondary-dark);
    opacity: 0;
}
#portfolio .portfolio-item:hover h5 {
    transition: opacity 1s;
    opacity: 1;
}
@media screen and (max-width: 767px) {
    #portfolio .portfolio-item h5 {
        opacity: 1;
    }
}
#portfolio .portfolio-item a {
    position: relative;
}
/* google map section */
#map-canvas {
    border: none;
    width: 100%;
    height: 400px;
}
/* contact section */
#contact {
    background-color: #f6f6f6;
    background-position: 40% !important;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding-top: 100px;
    padding-bottom: 80px;
}
@supports not (-webkit-touch-callout: none) {
    #contact {
        background-attachment: fixed;
    }
}
#contact h2 {
    color: white;
}
#contact .form-control {
    border-radius: 4px;
    border: none;
    box-shadow: none;
    margin-top: 12px;
    margin-bottom: 14px;
}
#contact input {
    height: 50px;
}
#contact .favorite {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: var(--primary);
    margin-left: 14px;
    padding: 15px;
    border-radius: 5px;
}
#contact .favorite:hover {
    background-color: var(--secondary-dark);
}
#contact .favorite.active {
    background-color: var(--secondary-dark-fade);
    color: var(--primary);
}
#contact .favorite.active:hover {
    background-color: var(--secondary-dark);
    color: var(--primary);
}
/* contact form */
#contactEmail p.success {
    color: green;
    text-shadow: 0px 1px 5px var(--white);
}
#contactEmail p.error {
    color: var(--primary);
    text-shadow: 0px 1px 5px var(--white);
}
/* footer section */
footer {
    background: var(--secondary-dark);
    color: white;
    padding-top: 60px;
    padding-bottom: 60px;
}
footer h2 {
    padding-top: 40px;
    padding-bottom: 20px;
}
footer p {
    line-height: 20px;
}
footer .copyright a {
    color: var(--primary);
}

footer .information {
    text-align: start;
}

@media (max-width: 991px) {
    footer .information {
        padding-bottom: 20px;
        text-align: center;
    }
}

.social-icon {
    padding: 0;
    margin: 0;
    text-align: center;
    vertical-align: middle;
}
.social-icon li {
    list-style: none;
    display: inline-block;
}
.social-icon li a {
    background: var(--white);
    border-radius: 100%;
    color: var(--primary);
    font-size: 32px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    margin: 0 6px 25px 6px;
}
.social-icon li a:hover {
    background: #080808;
}
@media screen and (max-width: 991px) {
    .navbar-default .navbar-nav li a {
        padding-right: 14px;
        padding-left: 14px;
        font-size: 13px;
    }
    #service .title {
        padding: 80px 20px 20px 20px;
    }
    .portfolio-thumb .portfolio-overlay {
        padding-top: 24px;
    }
}
@media (max-width: 767px) {
    .navbar-brand {
        padding-top: 6px;
    }
}
@media (max-width: 400px) {
    #home h1 {
        font-size: 32px;
    }
    #home h2 {
        font-size: 22px;
    }
    .portfolio-thumb .portfolio-overlay {
        padding-top: 60px;
    }
    .col-xs-12 {
        margin-bottom: 40px;
    }
}
.header-logo-lg {
    width: 70px;
    height: 70px;
}
#breadcrumb {
    text-align: start;
}
#breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}
#breadcrumb a:hover {
    color: var(--secondary);
    text-decoration: none;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
#product {
    margin-top: 20px;
    overflow: hidden;
}
#product .product-card {
    height: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
}
#product .img-card {
    height: 100%;
    padding: 0px;
    overflow: hidden;
}
#product img {
    padding: 0;
    object-fit: cover;
    height: 100%;
    transition: 0.5s all ease-in-out;
    width: 100%;
}
#product img:hover {
    transform: scale(1.5);
}
#product .favorite {
    position: absolute;
    bottom: 0;
    padding: 15px;
    color: white;
    right: 0;
    background-color: var(--secondary-dark-fade);
    border-radius: 4px;
}
#product .favorite.active {
    background-color: var(--primary);
}
#other-categories {
    margin-top: 1rem;
    margin-bottom: 2rem;
}
#other-categories hr {
    margin-top: 2rem;
    width: 70% !important;
}
#other-categories .category-selector {
    background-color: white;
    /* width: 80%; */
    margin: auto;
    border: 1px solid var(--white-darker);
    border-radius: 4px;
    padding: 0.5rem;
}
#other-categories a {
    text-decoration: none;
    color: var(--secondary);
}
#product-show {
    margin-top: 15px;
}
#product-show .image-selector {
    margin-bottom: 15px;
    width: 100%;
    overflow: auto;
    background-color: var(--secondary-dark-fade);
}
#product-show .image-selector > ul {
    margin: 0px;
    display: inline-flex;
}
#product-show .image-selector > ul > li {
    width: 100px;
    position: relative;
    float: left;
    padding: 5px;
}
#product-show .image-selector > ul > li > .image-select {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
#product-show .image-selector > ul > li > .image-select.image-selected {
    border: 1px solid var(--primary);
}
#product-show #main-img {
    transition: 0.5s all ease-in-out;
}
#product-show #main-img:hover {
    transform: scale(1.5);
}
#product-show .product-content {
    display: flex;
    justify-content: space-between;
}
#product-show .favorite.active {
    background-color: var(--primary);
}
#product-show .favorite {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--secondary-dark-fade);
    color: white;
    border-radius: 4px;
}
/* Search page */
section#search {
    background: var(--secondary-dark);
    padding-top: 15px;
    padding-bottom: 15px;
}
section#search input {
    width: 100%;
    float: left;
    background: none;
    outline: none;
    border: none;
    font-size: 25px;
    border-bottom: 1px solid var(--secondary);
    color: var(--white);
}
section#search h4 {
    color: var(--white);
}
/* Spinner Dual Rings https://loading.io/css/ */
.lds-dual-ring {
    display: inline-block;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Login and reset password */
.card {
    background-color: white;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 2px rgb(50 50 50 / 25%);
    padding-top: 35px;
    padding-bottom: 55px;
}
.card-header {
    padding-top: 10px;
    padding-bottom: 30px;
}
.is-invalid {
    border-color: var(--danger);
}
.invalid-feedback {
    color: var(--danger);
}
input.form-control {
    height: 50px;
    margin-top: 12px;
    margin-bottom: 14px;
}
input.form-control.remember {
    height: 20px;
    width: 20px;
    margin: auto;
    box-shadow: none;
}
.remember-check {
    background-color: var(--primary);
    margin-left: auto;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 14px;
    float: right;
}
.button {
    background-color: var(--primary);
    color: white;
    height: 50px;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
}
.button:hover {
    background-color: var(--secondary-dark);
}
/* Helpful classes*/
.m-0 {
    margin: 0 !important;
}
.p-0 {
    padding: 0 !important;
}
