@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Qwigley&display=swap");
#modalContact {
  transition: 0.6s;
  font-size: 16px;
  position: fixed;
  z-index: 10;
}
#modalContact.hidden {
  opacity: 0;
  transition: 0.6s;
  z-index: -4;
  width: 0px;
  height: 0px;
}
#modalContact .overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 38, 50, 0.6);
}
#modalContact .closeButton {
  cursor: pointer;
  font-size: 32px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#modalContact .container1 {
  position: absolute;
  display: flex;
  z-index: 2;
  width: 100vw;
  height: 100vh;
}
#modalContact .container2 {
  width: 80%;
  max-width: 700px;
  margin: auto;
  background-color: #eaeae1;
  box-shadow: 0 0px 10vw black;
  padding: 30px;
}
#modalContact .container2 .moreDetails {
  font-weight: 600;
  font-size: 18px;
}
#modalContact .container2 .moreDetails .mobileBreak {
  display: none;
}
@media (max-width: 568px) {
  #modalContact .container2 .moreDetails .mobileBreak {
    display: block;
  }
}
#modalContact .container2 .contactMail {
  font-weight: 500;
  font-size: 22px;
  margin-top: 8px;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
#modalContact .container2 * {
  color: #2e2c39;
}
#modalContact .container2.lowScreen {
  margin: 0 auto;
  overflow-y: scroll;
}
@media (max-width: 640px) {
  #modalContact .container1 {
    overflow-y: scroll;
  }
  #modalContact .container2 {
    width: 100%;
    margin: 0;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 10px;
  }
  #modalContact .container2 form {
    padding-left: 20px;
    padding-right: 20px;
  }
  #modalContact .container2 a.phone {
    font-size: 8vw;
  }
}
#modalContact .t1 {
  text-align: center;
  line-height: 1.5em;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#modalContact .t1:last-of-type {
  margin-bottom: 0;
}
#modalContact a.phone {
  font-size: 3em;
  text-decoration: none;
  letter-spacing: 0.2em;
}
#modalContact .formMessage {
  text-align: center;
  font-weight: 500;
  border: 1px solid #2e2c39;
  background-color: rgba(46, 44, 57, 0.1);
  padding: 1em;
}
#modalContact form {
  padding: 40px;
  border: 3px solid #d7d7d0;
  position: relative;
  margin-bottom: 3em;
}
#modalContact form .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
#modalContact form .item {
  position: relative;
}
#modalContact form .item label {
  top: 0;
  position: absolute;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#modalContact form .item label.active {
  top: -2em;
  font-size: 13px;
}
@media (max-width: 1800px) {
  #modalContact form .row {
    display: block !important;
  }
  #modalContact form .row .item input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;
  }
}
#modalContact form textarea {
  width: 100%;
  border: none;
  box-sizing: border-box;
  resize: vertical;
  max-height: 70vh;
  min-height: 20vh;
}
#modalContact form input[type=text],
#modalContact form input[type=email],
#modalContact form textarea {
  border: none;
  border-bottom: 3px solid #2e2c39;
  background: none;
  transition: 0.3s;
  padding: 1em;
  margin-bottom: 2em;
}
#modalContact form input[type=text]:focus,
#modalContact form input[type=email]:focus,
#modalContact form textarea:focus {
  border-radius: 8px;
  box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.3) inset;
  outline: none;
  background-color: rgba(0, 0, 0, 0.1);
}
#modalContact form input[type=submit] {
  background-color: #2e2c39;
  color: #eaeae1;
  padding: 0.8em 1.6em;
  font-family: inherit;
  font-size: 1.2em;
  font-weight: 300;
  letter-spacing: 0.1em;
  border: none;
  position: relative;
  cursor: pointer;
  position: absolute;
  right: 40px;
  box-shadow: 0 0 0 10px #eaeae1;
  bottom: 0;
  transform: translateY(50%);
  transition: 0.2s;
}
#modalContact form input[type=submit]:hover {
  background-color: #646464;
  transition: 0.2s;
}

@font-face {
  font-family: "Cream Cake";
  src: url("fonts/cream_cake.woff") format("woff");
}
body {
  margin: 0;
  font-family: "Quicksand", sans-serif !important;
}

.nowrap {
  white-space: nowrap;
}

.toTheCenter {
  text-align: center;
}

.toTheLeft {
  text-align: left;
}

.topBar {
  height: 64px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to right, white 20%, transparent 50%);
  position: fixed;
  top: 0;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: 0.5s;
}
@media (max-width: 640px) {
  .topBar {
    background-image: linear-gradient(to right, white 100px, transparent);
  }
}
.topBar.siteMoved {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px black;
}

button.openBtn {
  position: fixed;
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
  right: 7px;
  transition: 0.5s;
  z-index: 4;
  top: 7px;
}
button.openBtn.ON {
  right: -60px;
}
button.openBtn:hover {
  background-color: #444;
}

button.closeBtn {
  border: none;
  color: white;
  font-size: 5em;
  background: none;
  font-family: inherit;
  text-align: left;
  margin-left: 10px;
  padding-left: 10px;
  cursor: pointer;
}

button.openBtn,
button.closeBtn {
  display: none;
}
@media (max-width: 800px) {
  button.openBtn,
button.closeBtn {
    display: block;
  }
}

nav.topMenu {
  width: 100%;
  position: fixed;
  text-align: right;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  top: 0;
}
nav.topMenu a {
  z-index: 2;
  color: white;
  padding: 22px;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
nav.topMenu a:hover {
  background-color: black;
  transition: 0s;
}
nav.topMenu.siteMoved a {
  color: black;
}
nav.topMenu.siteMoved a:hover {
  color: white;
}
nav.topMenu a.pressed {
  background-color: rgba(0, 0, 0, 0.836);
  color: white;
  cursor: default;
}
@media (max-width: 800px) {
  nav.topMenu {
    z-index: 10;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 50%, transparent);
    height: 100vh;
    width: 70%;
    right: 0;
    transform: translate3d(100%, 0, 0);
    transition: 0.5s;
    display: block;
  }
  nav.topMenu.ON {
    transform: translate3d(0, 0, 0);
  }
  nav.topMenu a {
    color: white !important;
    display: block;
    padding: 4vh 2em;
    box-sizing: border-box;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  nav.topMenu {
    width: 100%;
  }
  nav.topMenu a {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  nav.topMenu a {
    font-size: 16px;
  }
}

header#n1 {
  overflow: hidden;
  z-index: 5;
  position: relative;
}
header#n1 .logoContainer {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  transition: 0.5s;
  z-index: 2;
}
header#n1 .logoContainer .positioner {
  transition: 0.5s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  max-width: 1100px;
  height: 100%;
  max-height: 770px;
}
@media (max-width: 1100px) {
  header#n1 .logoContainer .positioner {
    width: 90vw;
    height: 63vw;
  }
}
header#n1 .logoContainer .positioner img {
  position: absolute;
  width: 100%;
  transition: 0.5s;
}
header#n1 .logoContainer .positioner img.miniature {
  opacity: 0;
}
header#n1 .logoContainer.sticked {
  height: 0px;
  z-index: 6;
}
header#n1 .logoContainer.sticked .positioner {
  max-width: 80px;
  max-height: 56px;
  transform: translate3d(0, 0, 0);
  left: 15px;
  top: 4px;
}
header#n1 .logoContainer.sticked .positioner img.large {
  opacity: 0;
  z-index: 2;
}
header#n1 .logoContainer.sticked .positioner img.miniature {
  opacity: 1;
  z-index: 3;
}
header#n1 .logoContainer.sticked .positioner a {
  width: 80px;
  height: 56px;
  cursor: pointer;
}

.homePage header#n1 {
  background: url(../images/ciastko.jpg) center no-repeat fixed;
  height: 100vh;
  background-size: cover;
  max-height: 100%;
  max-width: 100%;
  -webkit-animation-name: wnikanie;
          animation-name: wnikanie;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes wnikanie {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes wnikanie {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gallery {
  background-image: url(../images/bg01.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.gallery main {
  margin-top: 100px;
  overflow: hidden;
}
.gallery h1 {
  color: white;
  font-size: 3em;
  text-shadow: 0 2px 10px #000;
}
.gallery #pwspGallery_productPictures {
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
}
.gallery #pwspGallery_productPictures figure {
  margin: 0;
}
.gallery #pwspGallery_productPictures figure img {
  border: 13px solid rgba(0, 0, 0, 0.2);
  height: 15vw;
  width: 15vw;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.5), 0 -20px 20px -10px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .gallery #pwspGallery_productPictures figure img {
    height: 30vw;
    width: 30vw;
    margin: 2vw;
  }
}
@media (max-width: 560px) {
  .gallery #pwspGallery_productPictures figure img {
    height: 70vw;
    width: 70vw;
    margin: 5vw;
  }
}
.gallery #pwspGallery_productPictures figure img:hover {
  transition: 0;
  transform: scale(0.95);
  box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.4);
}

section#o-mojej-pasji1 {
  overflow: hidden;
  background: url(../images/cake.png) bottom;
  background-size: cover;
  font-size: 1.42vw;
  font-weight: 500;
  line-height: 4vw;
  text-align: center;
  color: #80575d;
}
section#o-mojej-pasji1 p.text1 {
  margin: 10vw 12vw 15vw;
}
section#o-mojej-pasji1 p.text1 strong {
  color: #d75368;
  white-space: nowrap;
}
section#o-mojej-pasji1 p.text2 {
  margin-left: 50vw;
  margin-right: 10vw;
  margin-bottom: 18vw;
}
@media (max-width: 1280px) {
  section#o-mojej-pasji1 p.text1 {
    margin-left: 2vw;
    margin-right: 2vw;
  }
}
@media (max-width: 768px) {
  section#o-mojej-pasji1 {
    background: url(../images/cake-m.jpg) #eff0f2 bottom left no-repeat;
    background-size: contain;
    font-size: 16px;
    line-height: 26px;
  }
  section#o-mojej-pasji1 p.text2 {
    margin-left: 10vw;
  }
}
@media (max-width: 375px) {
  section#o-mojej-pasji1 p {
    font-size: 14px;
  }
}

section#o-mojej-pasji2 {
  font-size: 1.42vw;
  font-weight: 500;
  line-height: 4vw;
  text-align: center;
  display: flex;
}
section#o-mojej-pasji2 .col1 {
  overflow: hidden;
  flex-basis: 55%;
  background-color: #575453;
  color: #e7ebec;
}
section#o-mojej-pasji2 .col2 {
  background: url(../images/tort.jpg) right bottom;
  background-size: cover;
  flex-grow: 1;
}
section#o-mojej-pasji2 p.text3,
section#o-mojej-pasji2 p.text4 {
  margin: 5vw;
}
section#o-mojej-pasji2 a.darkStyle {
  background: #161211;
  color: #e7ebec;
  text-decoration: none;
  padding: 1vw 4vw;
  display: inline-block;
  margin-bottom: 5vw;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 80%;
  letter-spacing: 0.2vw;
  box-shadow: 0 3vw 3vw -2vw black;
  transition: 0.3s;
}
section#o-mojej-pasji2 a.darkStyle:hover {
  background: #000;
  transform: translateY(3px);
  box-shadow: 0 0 1vw black;
}
@media (max-width: 768px) {
  section#o-mojej-pasji2 {
    background: url(../images/tort-m.jpg) top no-repeat;
    background-size: cover;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
  }
  section#o-mojej-pasji2 .col1 {
    background: none;
  }
  section#o-mojej-pasji2 .col2 {
    display: none;
  }
  section#o-mojej-pasji2 p.text3,
section#o-mojej-pasji2 p.text4 {
    margin: 15vw 5vw;
  }
  section#o-mojej-pasji2 a.darkStyle {
    padding-top: 2vh;
    padding-bottom: 2vh;
  }
}
@media (max-width: 375px) {
  section#o-mojej-pasji2 p {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  .my-gallery {
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (max-width: 800px) {
  .my-gallery {
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 400px) {
  #my-gallery {
    -moz-column-count: 1;
    column-count: 1;
  }
}
h1 {
  font-weight: 400;
  font-size: 2em;
  margin: 5vh;
}

.homePage .modalEnabler {
  margin-right: 1vw;
}

body.offer {
  background-color: #edeef0;
}
body.offer .overlayGradient {
  position: absolute;
  height: 400px;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to bottom, white 100px, transparent);
  z-index: 0;
}
@media (max-width: 720px) {
  body.offer .overlayGradient {
    height: 200px;
  }
}
body.offer .offerSelection {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 1200px) {
  body.offer .offerSelection {
    max-width: 600px;
  }
}
body.offer .offerSelection a {
  flex-shrink: 1;
  display: block;
  transition: 0.3s;
}
body.offer .offerSelection a img {
  width: 100%;
}
body.offer .offerSelection a:hover {
  opacity: 1 !important;
  transform: scale(1) !important;
}
body.offer .offerSelection:hover a {
  opacity: 0.5;
  transform: scale(0.9);
}
body.offer header nav a {
  color: #333;
}
body.offer header nav a:hover {
  color: #fff;
}
body.offer main {
  padding-top: 100px;
  margin: 0 auto;
  color: #80575d;
  font-weight: 500;
  text-align: center;
  font-size: 1.42vw;
  z-index: 1;
  position: relative;
}
@media (max-width: 1200px) {
  body.offer main {
    font-size: 1.7vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 720px) {
  body.offer main {
    font-size: 4vw;
    padding-top: 0;
  }
}
body.offer main.style1 .assortment {
  font-size: 36px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1280px) {
  body.offer main.style1 .assortment {
    font-size: 2.4vw;
  }
}
body.offer main.style2 {
  max-width: none;
}
body.offer main.style2 .assortment {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
body.offer main.style2 .assortment .items {
  flex-basis: 30%;
}
body.offer main.style2 .assortment .picture {
  flex-basis: 50%;
}
body.offer main.style2 .assortment .picture img {
  width: 100%;
}
@media (max-width: 1200px) {
  body.offer main.style2 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  body.offer main.style2 .assortment {
    margin-bottom: 100px;
    display: block;
  }
  body.offer main.style2 .assortment .items {
    z-index: 2;
    font-size: 5vw;
    position: relative;
    padding-left: 10%;
    padding-right: 20%;
    background-image: linear-gradient(to right, rgba(237, 238, 240, 0.8) 50%, rgba(237, 238, 240, 0));
  }
  body.offer main.style2 .assortment .picture {
    position: absolute;
    top: 20vh;
    z-index: 0;
    width: 80%;
    right: 0;
  }
}
@media (max-width: 480px) {
  body.offer main.style2 {
    padding-top: 0px;
  }
  body.offer main.style2 .assortment {
    font-size: 3vw;
  }
}
body.offer main.style3 {
  padding: 100px 15vw 5vh;
}
body.offer main.style3 .assortment {
  display: block;
}
body.offer main.style3 .assortment .item {
  display: flex;
  gap: 10vw;
  align-items: center;
  margin-bottom: 15vmin;
}
body.offer main.style3 .assortment .item .picture {
  flex-basis: 60%;
}
body.offer main.style3 .assortment .item .picture img {
  width: 100%;
}
body.offer main.style3 .assortment .item .description {
  flex-basis: 40%;
}
body.offer main.style3 .assortment .item .description h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media (max-width: 960px) {
  body.offer main.style3 {
    padding: 0px 5vw;
  }
}
@media (max-width: 480px) {
  body.offer main.style3 {
    padding: 0px 10vw;
  }
  body.offer main.style3 .assortment .item {
    display: block;
    font-size: 4vw;
    margin-bottom: 6em;
    padding-bottom: 1em;
    border-bottom: 2px solid rgba(128, 87, 93, 0.4);
  }
  body.offer main.style3 .assortment .item .description {
    margin-top: 1em;
  }
}
body.offer main.style4 .assortment {
  max-width: 1400px;
  padding: 2vw;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
body.offer main.style4 .assortment .item {
  font-size: 0.8em;
  box-shadow: 0 0.1em 0.6em rgba(0, 0, 0, 0.3333333333);
  flex-basis: 30%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6em;
}
body.offer main.style4 .assortment .item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
body.offer main.style4 .assortment .item .description {
  margin: 0.6em;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
body.offer main.style4 .assortment .item .description > * {
  margin-bottom: 0.3em;
}
body.offer main.style4 .assortment .item .name {
  font-size: 0.8em;
  font-weight: 700;
}
body.offer main.style4 .assortment .item .price {
  font-size: 0.8em;
}
body.offer main.style4 .assortment .item .alergeny {
  font-size: 0.6em;
}
@media (max-width: 800px) {
  body.offer main.style4 .assortment {
    justify-content: space-around;
  }
  body.offer main.style4 .assortment .item {
    flex-basis: 42%;
    font-size: 2.4vw;
  }
}
@media (max-width: 480px) {
  body.offer main.style4 .assortment {
    display: block;
    margin: 5vw;
  }
  body.offer main.style4 .assortment .item {
    font-size: 5vw;
  }
}
body.offer.menu {
  background: white;
}
body.offer.menu main {
  padding-top: 5vh;
}
@media (max-width: 768px) {
  body.offer {
    flex-direction: column;
    margin: 8vw auto 0;
    align-items: center;
    font-size: 1.7vw;
  }
}
body.offer img.header {
  margin: 9vmax auto;
  position: relative;
  width: 30vw;
}
@media (max-width: 480px) {
  body.offer img.header {
    width: 45vw;
  }
}
body.offer h1 {
  position: relative;
  z-index: 0;
  margin: 100px 0;
  font-size: 9vw;
  padding-left: 0.2em;
  padding-right: 0.2em;
  font-family: "Cream Cake", Qwigley;
  text-align: center;
  color: #aa8534;
  display: inline-block;
}
@supports (-webkit-background-clip: text) {
  body.offer h1 {
    background-image: linear-gradient(to right, #d9b37e, #aa8534);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (max-width: 720px) {
  body.offer h1 {
    font-size: 12vw;
    margin-bottom: 50px;
  }
}
body.offer .assortment {
  font-size: 2vw;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
body.offer .assortment .item {
  text-align: left;
  margin-bottom: 2em;
}
body.offer .assortment .item h3 {
  margin-bottom: 0.2em;
  font-size: 1.5em;
}
body.offer .assortment .item ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0.4em;
}
body.offer .assortment .item ul li {
  list-style-type: circle;
  margin-bottom: 0.3em;
  line-height: 1em;
}
body.offer .assortment figure {
  padding: 3vw;
  box-sizing: border-box;
  flex-basis: 50%;
  margin: 1vw 0;
}
body.offer .assortment figure figcaption {
  margin-top: 0.7em;
}
body.offer .assortment figure figcaption small {
  color: red;
  display: block;
  font-size: 0.7em;
  color: #aa8534;
  font-weight: 600;
}
@media (max-width: 720px) {
  body.offer .assortment figure {
    flex-basis: 100%;
    font-size: 4vw;
    margin-bottom: 13vw;
  }
}
body.offer .assortment figure img {
  width: 100%;
}
body.offer .whiteFrame {
  background: white;
  display: flex;
  padding: 2em 1em;
  margin-top: 3em;
  align-items: center;
  justify-content: center;
  gap: 10em;
  box-shadow: 0 1vw 2vw -2vw #80575d, 0 -1vw 2vw -2vw #80575d;
  margin-bottom: 2em;
  border-top: #80575d 3px solid;
  border-bottom: #80575d 3px solid;
}
body.offer .whiteFrame .col1 {
  font-weight: 700;
}
body.offer .whiteFrame .col2 ul {
  margin: 0;
  list-style: none;
  text-align: left;
}
body.offer .whiteFrame .col2 ul li {
  position: relative;
  margin-bottom: 0.5em;
}
body.offer .whiteFrame .col2 ul li:before {
  position: absolute;
  content: "";
  width: 0.52em;
  height: 0.52em;
  background-color: white;
  border: 2px solid rgba(128, 87, 93, 0.5);
  left: -1.5em;
  top: 0.3em;
  border-radius: 40px;
  box-shadow: 0 0.1em 0.5em rgba(128, 87, 93, 0.6);
}
body.offer .alergeny {
  margin: 0;
  font-size: 0.8em;
  font-weight: 600;
  color: #aa8534;
}
body.offer .extraInfo {
  margin: 5em;
}
body.offer .extraInfo strong {
  white-space: nowrap;
}
@media (max-width: 720px) {
  body.offer .whiteFrame {
    flex-wrap: wrap;
    gap: 2em;
  }
  body.offer .extraInfo {
    margin: 1em 0 3em;
  }
}

body.offer-easter {
  background: url(../images/oferta/bg01.jpg) repeat-y;
  background-size: cover;
}
body.offer-easter h1 {
  margin: 9vw 0 0vw;
  font-size: 7vw;
  font-family: "Gwendolyn", Qwigley;
  color: #ffb209;
  transform: scaleX(0.75);
  text-shadow: 0 0.02em 0 #000;
}
@media (max-width: 720px) {
  body.offer-easter h1 {
    font-size: 12vw;
    margin-bottom: 50px;
  }
}
body.offer-easter main {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 42px;
  background-image: linear-gradient(to right, transparent 50%, rgba(0, 0, 0, 0.3)), radial-gradient(ellipse, transparent 50%, rgba(0, 0, 0, 0.5)), url(../images/oferta/bg04.jpg);
  box-shadow: 0 0 30px 5px black;
}
body.offer-easter main .separator {
  padding: 20px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 3vw auto;
}
body.offer-easter main .textStyle1 {
  color: white;
}
body.offer-easter main .priceList {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 1em auto;
}
body.offer-easter main .priceList .item {
  flex-basis: 25%;
  text-align: center;
}
body.offer-easter main .priceList .price {
  color: white;
  text-shadow: 0 3px 1px #000;
}
body.offer-easter main .priceList .size {
  color: #eab910;
}
body.offer-easter main .logo {
  margin: 8vw auto 5vw;
  text-align: center;
}
body.offer-easter main .logo img {
  max-width: 250px;
}
@media (max-width: 1366px) {
  body.offer-easter main {
    margin: 0 14vw;
  }
}
@media (max-width: 1024px) {
  body.offer-easter main {
    font-size: 3vw;
  }
}
@media (max-width: 768px) {
  body.offer-easter h1 {
    font-size: 10vw;
    margin-top: 12vh;
    height: 100%;
  }
  body.offer-easter main .separator {
    margin-top: 0vh;
    width: 70%;
  }
  body.offer-easter main .logo {
    margin: 12vw auto 10vw;
  }
  body.offer-easter main .logo img {
    width: 50%;
  }
}

footer {
  text-align: center;
}
footer img {
  margin: 1vw 10vw;
  width: 600px;
}
@media (max-width: 600px) {
  footer img {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
  }
}