/** Shopify CDN: Minification failed

Line 55:11 Expected ":"
Line 55:13 Expected identifier but found "18px"
Line 114:13 Expected ":"
Line 114:15 Expected identifier but found "16px"

**/

.comfort-edit__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  width: 100%;
  position: relative;
}
.comfort-edit__banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 300px 0  80px;
}
.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.comfort-edit-title {
  margin: 0;
  padding: 0;
  font-weight: 500;
  letter-spacing: 10%;
  color: #4A4A4A;
  font-size: 60px
}
.comfort-edit__banner p {
  margin: 0;
  padding: 0;
  letter-spacing: 15%;
  color: #4A4A4A;
  font-size: 20px;
  font-weight: 500;

}
.comfort-edit__banner a {
  color: #4A4A4A;
  font-size; 18px;
  font-weight: 600;
  background-color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
  transition: all .3s ease-in-out;
  text-wrap: nowrap;
}
.comfort-edit__banner a:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
}
.comfort-edit__banner picture {
  height: 100%;
  width: 100%;
}
.comfort-edit__banner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1335px) {
  .comfort-edit__banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px 0  80px;
  }
}

@media (max-width: 768px) {
  .comfort-edit__banner .container {
    width: 353.367px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    padding: 0;
    gap: 28px;
  }
    .comfort-edit-title {
    color: #fff;
    font-size: 50px;
    line-height: 123%;
  }
    .comfort-edit__banner p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 20px;
    }
    .comfort-edit__banner a {
    font-size; 16px;
    padding: 14px 28px;
  }
}








