/* dm-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/dm-sans-v17-latin-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-serif-display-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-serif-display-v17-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-serif-display-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/dm-serif-display-v17-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bebas-neue-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@keyframes scale-up-center {
  0% {
    transform: scale(1);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0);
  }
  1% {
    transform: scale(1);
    opacity: 0.8;
    border: 1px solid #ffffff;
  }
  100% {
    transform: scale(4);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
.newsletter-wrapper {
  background-color: #f0f0f0;
  padding: 50px 25px;
}
.newsletter-wrapper .container {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.newsletter-wrapper .newsletter-icon {
  width: 250px;
  position: relative;
}
.newsletter-wrapper .newsletter-icon img {
  position: absolute;
  margin: auto;
  top: -20px;
  left: 0;
  right: 0;
  width: 215px;
  animation: heartbeat 2s ease-in-out infinite both;
}
.newsletter-wrapper .newsletter-form {
  width: calc(100% - 300px);
  /* CHECKBOX */
}
.newsletter-wrapper .newsletter-form h3 {
  margin-bottom: 15px;
  color: #555;
}
.newsletter-wrapper .newsletter-form .newsletter-input {
  position: relative;
  margin-top: 25px;
}
.newsletter-wrapper .newsletter-form .newsletter-input button {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border-radius: 0 4px 4px 0;
}
.newsletter-wrapper .newsletter-form .checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 7px;
  font-size: 12px;
  line-height: 12px;
}
.newsletter-wrapper .newsletter-form .checkbox svg {
  width: 20px;
  margin-right: 5px;
}
.newsletter-wrapper .newsletter-form .checkbox input {
  height: 0;
  width: 0;
  visibility: hidden;
}
.newsletter-wrapper .newsletter-form .checkbox label {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .newsletter-wrapper .newsletter-icon {
    width: 150px;
  }
  .newsletter-wrapper .newsletter-icon img {
    top: 0;
  }
  .newsletter-wrapper .newsletter-form {
    width: calc(100% - 200px);
  }
}
@media (max-width: 600px) {
  .newsletter-wrapper {
    padding: 25px 5px;
  }
  .newsletter-wrapper .newsletter-icon {
    display: none;
  }
  .newsletter-wrapper .newsletter-form {
    width: 100%;
  }
}
