::selection {
  user-select: none; }

body {
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 1.7em;
  color: #3B3A3C; }

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

header {
  box-shadow: 0 10px 14px -14px rgba(34, 34, 34, 0.53); }
  header .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 15px; }
    header .navbar-expand-lg .navbar-nav .nav-item .nav-link {
      position: relative;
      color: #3B3A3C;
      padding: 15px 0;
      font-weight: 500;
      border-bottom: 1px solid rgba(131, 131, 131, 0.19); }
      header .navbar-expand-lg .navbar-nav .nav-item .nav-link.active {
        color: #C62127; }
        header .navbar-expand-lg .navbar-nav .nav-item .nav-link.active::before {
          width: 100%; }
      header .navbar-expand-lg .navbar-nav .nav-item .nav-link::before {
        display: none;
        position: absolute;
        content: '';
        left: auto;
        right: 0;
        bottom: 12px;
        width: 0;
        height: 1px;
        background-color: #C62127;
        transition: all 0.4s ease; }
      header .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover, header .navbar-expand-lg .navbar-nav .nav-item .nav-link:focus {
        color: #C62127; }
        header .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover::before, header .navbar-expand-lg .navbar-nav .nav-item .nav-link:focus::before {
          width: 100%;
          left: 0;
          right: auto; }
      header .navbar-expand-lg .navbar-nav .nav-item .nav-link i {
        font-size: 10px; }
  header .navbar-expand-lg .navbar-nav .dropdown-menu {
    border-radius: 5px; }
    header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
      padding: 7px 20px;
      transition: all 0.3s ease-in-out;
      font-weight: 500; }
      header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
        color: #C62127;
        padding-left: 25px; }
  header .navbar-expand-lg .socialbar li {
    padding-left: 15px; }
    header .navbar-expand-lg .socialbar li a {
      font-size: 18px;
      padding: 10px;
      color: #3B3A3C;
      transition: all 0.3s ease; }
      header .navbar-expand-lg .socialbar li a:hover {
        color: #C62127;
        transform: translateY(-10px); }

.banner {
  background-image: url("../images/flour-bowl-with-wheat-dark-table-close-up.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; }
  .banner h1 {
    font-family: 'Spicy Rice';
    font-size: 36px;
    margin-bottom: 15px; }
  .banner .breadcrumb-item a {
    color: #ffffff;
    transition: all 0.3s linear; }
    .banner .breadcrumb-item a:hover {
      color: #f4b323; }
  .banner .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff; }

.product .product-container {
  position: relative;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent; }
  .product .product-container .product-img {
    padding: 30px 30px 15px 30px; }
  .product .product-container .product-detail {
    padding: 15px 30px 30px 30px; }
    .product .product-container .product-detail h5 {
      font-family: 'Spicy Rice';
      font-size: 20px;
      color: #C62127;
      letter-spacing: 0.05em; }
  .product .product-container::before, .product .product-container::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.75s ease; }
  .product .product-container::before {
    top: 0;
    left: 0;
    border-top: 3px solid #f4b323;
    border-left: 3px solid #C62127; }
  .product .product-container::after {
    bottom: 0;
    right: 0;
    border-right: 3px solid #f4b323;
    border-bottom: 3px solid #C62127; }
  .product .product-container:hover::before, .product .product-container:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible; }

footer {
  background-color: #F4F4F4; }
  footer .socialbar li a {
    font-size: 18px;
    padding: 10px;
    transition: all 0.3s ease; }
    footer .socialbar li a:hover {
      color: #C62127;
      transform: translateY(-10px); }
  footer h4 {
    font-family: 'Spicy Rice';
    color: #C62127;
    margin-bottom: 48px; }
  footer ul li {
    margin-bottom: 5px; }
    footer ul li a {
      color: #3B3A3C;
      transition: all 0.3s linear; }
      footer ul li a:hover {
        color: #C62127;
        transform: translateX(5px); }
    footer ul li i {
      margin-right: 10px; }
    footer ul li span {
      text-align: justify; }
  footer form .form-control {
    padding: 10px 28px;
    background-color: #F4F4F4; }
    footer form .form-control:focus {
      border: 1px solid #C62127;
      background-color: #F4F4F4; }
  footer form .btn {
    border: 2px solid #C62127;
    padding: 10px 28px;
    transition: all 0.3s linear; }
    footer form .btn:hover {
      border-color: #f4b323;
      background-color: #f4b323; }
  footer .footer-bottom {
    padding: 15px 0;
    border-top: 1px solid rgba(59, 58, 60, 0.1);
    font-size: 14px; }

.to-top {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 2px solid #C62127;
  color: #3B3A3C;
  line-height: 40px;
  transition: all 0.3s linear;
  bottom: 10px;
  right: 10px;
  background-color: #ffffff; }
  .to-top:hover {
    background-color: #f4b323;
    border-color: #f4b323; }

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99; }

@media (min-width: 992px) {
  header .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    border: none; }
    header .navbar-expand-lg .navbar-nav .nav-item .nav-link::before {
      display: block; }
  header .navbar-expand-lg .navbar-nav .dropdown-menu {
    box-shadow: 0 12px 30px -2px rgba(0, 0, 0, 0.1);
    width: 220px; } }
