html, body {
  background-color: #edf2f4 !important;
  font-family: 'Montserrat' !important;
  font-size:14px !important;
}

.navbar {
  background-color: #2b2d42;
  border: none;
  background-image: none;
  border-radius: 0;
  margin-bottom: 0;
}

.navbar-nav > li > a {
  color: #edf2f4 !important;
  padding: 25px 10px;
}

.navbar-nav > li > a:hover {
  color: #8d99ae !important;
}

.basket-btn {
  /*background-color: #edf2f4 !important;*/
  /*color: #2b2d42 !important;*/
  border-radius: 4px;
  padding: 8px 15px;
}

.logo {
  height: 40px;
}

@media (max-width: 767px) {
  .logo {
    height: 20px;
  }
}

.slogan {
  font-size: 4em;
}

.hero {
  text-align: center;
  padding: 100px 20px 40px 20px;
}

.hero h1 {
  font-weight: bold;
  color: #2b2d42;
}

.hero p {
  color: #2b2d42;
}

.search-bar {
  display: flex;
  margin: 20px auto;
  /*max-width: 500px;*/
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.btn.button1.search-button {
  width: 20%;
  margin-left: 10px;
}

.search-input {
  width: 90%;
}

.category-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  height: 100%;
  justify-content: space-between;
}

.category-card img {
  width: 100%;
  /*height: 300px;*/
  max-height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

.category-card .category-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.category-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.category-section .col-md-4 {
  display: flex;
  flex-direction: column;
}

.button1 {
  width: 100%;
  background-color: #2b2d42;
  color: #edf2f4;
}

.button1:hover, .button1:focus {
  width: 100%;
  background-color: #8d99ae;
  color: #2b2d42;
  outline: none;
}

.site-footer {
  background-color: #2b2d42;
  padding: 20px 0;
  margin-top: 60px;
  color: #edf2f4;
}

.footer-logo {
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo img {
  max-width: 120px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  padding: 10px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #8d99ae;
}

.footer-column a {
  display: block;
  color: #edf2f4;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
}

.footer-column a:hover {
  color: #8d99ae;
}

.text-left {
  text-align: left!important;
}

.text-center {
  text-align: center!important;
}

.text-right {
  text-align: right;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-column {
    text-align: center;
  }
}

