body {
  margin: 0;
  padding: 0;
}
.breadcrumbs{
    display: flex;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4px;
}
.active-bread {
    margin-top: 20px;
    color: #b8121d;
    text-decoration: underline;
}
.inactive-bread {
    margin-top: 20px;
    text-decoration: none;
    color: #2e4053;
}
.breadcrumbs span{
    margin-top: 20px;
    color: #2e4053;
}
h1{
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 34px;
    color: #2e4053;;
}
h5{
    margin: 5px 0px 5px 0px;
    color: #2e4053;
}
.form{
    margin: auto;
    width: 545px;
    display: flex;
    flex-direction: column;
}
.form-group{
    width: 100%;
}
.form h1{
    text-align: center;
}
.form-actions{
    display: flex;
    justify-content: center;
}
input[type="password"], input[type="email"]{
  width: 100%;
  padding: 15px 0px;
  border: 1px solid lightgray;
  font-size: 14px;
}
.error-message{
    color: #b8121d;
    font-size: 12px;
    opacity: 0;
}
input[type="email"]:invalid{
    border-color: #b8121d;
}
input[type="email"]:invalid +.error-message{
    border-color: #b8121d;
    opacity: 100;
}
input[type="submit"]{
    border-style: none;
    font-size: 16px;
    height: 50px;
    padding: 10px 20px;
    margin-bottom: 30px;
    background-color: #b8121d;
    color: white;
    cursor: pointer;
}
.contact-container {
  max-width: 1150px;
  width: calc(80% - 60px);
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}
.contact-container h2 {
  color: #2e4053;
}
.form-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.store-photos img{
    max-width: 600px;
}
.info p, .info a {
  font-size: 16px;
  margin: 10px 0;
}
.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  font-size: 20px;
}
.social-icons img{
    margin-left: 5px;
    max-width: 30px;
}
.map {
  margin-top: 30px;
  height: 400px;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 15px 15px;
}
.slidescomponent {
  margin: auto;
  position: relative;
  width: 60%;
  overflow: hidden;
  max-width: 1200px;
  max-height: 600px;
  margin-bottom: 20px;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(249, 249, 250, 0.796);
  border-radius: 150px;
  border: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}
#logogcompact{
  max-width: 80px;
}
.banners-wrapper {
  overflow: hidden;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  position: relative;
}
.banners-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.banner img {
  width: 100%;
  object-fit: cover;
  height: 400px;
  border-radius: 15px;
}
.info {
  flex: 1;
  margin-bottom: 20px;
  max-height: 400px;
  background: #f1f0f0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 15px;
  padding: 5%;
}
.info a {
  text-decoration: none;
  color: black;
}
.info a :hover{
  text-decoration: underline;
}