/*common styles*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #110403;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

a {
    color: #F8C48C;
}

a:hover {
    color: #FFFDF0 !important;
}

.text-color {
    color: #110403;
}

.title-color {
    color: #6A1E0A;
}

.title-white {
    color: #ffffff;
    text-shadow: 0px 0px 20px rgba(0, 0, 0)
}

.title-yellow {
    color: #ffe944;
    text-shadow: 0px 0px 20px rgba(0, 0, 0)
}

.light-color {
    color: #FFFDF0;
}

.light-yellow {
    color: #ffe944;
}

.bg-dark {
    background-color: #110403;
}

.bg-red {
    /* background-color: #6A1E0A;
    background-image: url(./images/pattern.png); */
    background-color: #6A1E0A;
    /* opacity: 0.9; */
    /* background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #6A1E0A 10px), repeating-linear-gradient(#f7444455, #f74444); */
}

.light-bg {
    background-color: #FFFDF0;
}

.button {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 18px;
    background-color: #ffe944;
    color: #6A1E0A;
    border-radius: 5px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    border: none;
}

.button:hover {
    background-color: #6A1E0A;
    color: #FFFDF0 !important;
}

.py-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

/*Header*/
.main-nav .nav a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
}

/*Banner*/
.carousel-control-next,
.carousel-control-prev {
    width: 50px;
    color: #110403;
    opacity: 0;
    transition: all 0.6s;
}

.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
    opacity: 1;
}

/*service*/
.service-box,
.service-box h2 {
    transition: all 0.6s;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box:hover h2 {
    transition-delay: 0.2s;
    transform: translateY(-10px);
}

/*Products*/
.product-box {
    transition: all 0.6s;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

.store-select:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: box-shadow 0.3s ease-in-out;
}

.product-box:hover {
    transform: translateY(-15px);
}

.product-box img {
    transition: all 0.6s;
}

.product-box:hover img {
    transform: scale(1.1);
}

.product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/*About*/
.about-box {
    transition: all 0.6s;
}

.about-box:hover {
    transform: translateY(-10px);
}

/*Contacts*/
.r-b {
    border: 1px solid #6A1E0A;
}

.slider3 {

    background-image: url(./images/slider1.png);
}

.slider2 {

    background-image: url(./images/slider2.png);
}

.slider1 {

    background-image: url(./images/grill.png);
}

.h-400 {
    height: 500px;
}

.mh-145 {
    min-height: 145px;
}