:root {
  --marquee-width: 100vw;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

html,
body {
  color: #c63527;
  font-family: arial;
  background: #f9f8f6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

.wrapper {
  max-width: 1600px;
  box-sizing: border-box;
  padding: 0 50px;
  width: 100%;
  margin: 0 auto;
  font-size: 0;
}
@media only screen and (max-width: 1000px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 880px) {
  .wrapper {
    padding: 0 20px;
  }
}

.red {
  background: #c63527;
  color: #f9f8f6;
  padding-bottom: 60px;
  box-sizing: border-box;
  padding-top: 110px;
}
@media only screen and (max-width: 880px) {
  .red {
    padding-bottom: 30px;
    padding-top: 65px;
  }
}

.cream {
  background: #f9f8f6;
}

.button {
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  padding: 13px 45px 12px;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-text-stroke: 0.4px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media only screen and (max-width: 880px) {
  .button {
    font-size: 14px;
    padding: 12px 40px 11px;
  }
}
.button.white {
  border: 2px solid #fff;
  background: #fff;
  color: #c63527;
}
.button.white:hover {
  background: #c63527;
  color: #fff;
}
.button.red {
  border: 2px solid #c63527;
  background: #c63527;
  color: #fff;
}
.button.red:hover {
  background: #fff;
  color: #c63527;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 25px 0;
  box-sizing: border-box;
  background: #c63527;
  color: #f9f8f6;
}
@media only screen and (max-width: 880px) {
  header {
    padding: 15px 0;
  }
}
header .left a {
  margin-right: 25px;
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
}
@media only screen and (max-width: 880px) {
  header .left a {
    margin-right: 12px;
  }
}
header .left a.social img {
  width: 30px;
}
@media only screen and (max-width: 880px) {
  header .left a.social img {
    width: 22px;
  }
}
header .left a.tel {
  display: none;
  margin-top: 7px;
  font-size: 16px;
  -webkit-text-stroke: 0.4px;
}
@media only screen and (max-width: 1000px) {
  header .left a.tel {
    display: none;
  }
}
header .middle a img {
  width: 120px;
}
@media only screen and (max-width: 880px) {
  header .middle a img {
    width: 70px;
  }
}
header .right .button {
  vertical-align: top;
}
@media only screen and (max-width: 880px) {
  header .right .button {
    font-size: 12px;
    padding: 10px 20px 9px;
  }
}
@media only screen and (max-width: 500px) {
  header .right .button {
    font-size: 10px;
    padding: 8px 12px 7px;
  }
}

.menuToggle {
  position: fixed;
  top: 33px;
  right: 50px;
  z-index: 99999;
  display: inline-block;
  background: #fff;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: 0.3s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}
.menuToggle.open {
  background: #c63527;
}
@media only screen and (max-width: 1000px) {
  .menuToggle {
    right: 30px;
  }
}
@media only screen and (max-width: 880px) {
  .menuToggle {
    right: 20px;
    top: 10px;
  }
}
.menuToggle .menuI {
  background: #c63527;
  height: 2px;
  width: 17px;
  position: absolute;
  left: 14px;
  transition: 0.3s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}
.menuToggle .menuI.top {
  top: 15px;
}
.menuToggle .menuI.top.topAnimate {
  transform: rotate(45deg);
  top: 22px;
  background: #fff;
}
.menuToggle .menuI.middle {
  top: 21px;
}
.menuToggle .menuI.middle.midAnimate {
  opacity: 0;
}
.menuToggle .menuI.bottom {
  top: 27px;
}
.menuToggle .menuI.bottom.bottomAnimate {
  transform: rotate(-225deg);
  top: 22px;
  background: #fff;
}

.bodyOverlay {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
}
.bodyOverlay.open {
  opacity: 1;
}

.overlayNav {
  background: #f9f8f6;
  width: 50vw;
  min-width: 600px;
  position: fixed;
  top: 0;
  z-index: 40;
  height: 100%;
  right: -100%;
  transition: right 0.6s ease;
}
@media only screen and (max-width: 880px) {
  .overlayNav {
    min-width: auto;
    width: 80vw;
  }
}
.overlayNav.open {
  right: 0;
}
.overlayNav .top {
  position: absolute;
  top: 38px;
  left: 50px;
}
@media only screen and (max-width: 880px) {
  .overlayNav .top {
    top: 20px;
    left: 20px;
  }
}
.overlayNav .top a.social {
  margin-right: 20px;
}
@media only screen and (max-width: 880px) {
  .overlayNav .top a.social {
    display: none;
  }
}
@media only screen and (max-width: 880px) {
  .overlayNav .top a.social {
    margin-right: 15px;
  }
}
.overlayNav .top a.social img {
  width: 30px;
}
@media only screen and (max-width: 880px) {
  .overlayNav .top a.social img {
    width: 24px;
  }
}
.overlayNav .top a.social {
  transition: opacity 0.2s ease;
}
.overlayNav .top a.social:hover {
  opacity: 0.6;
}
.overlayNav .middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
  text-align: left;
}
@media only screen and (max-width: 880px) {
  .overlayNav .middle {
    max-width: 100%;
    width: 100%;
    margin-left: 20px;
    margin-top: 80px;
    transform: translate(0, 0);
    top: 0;
    left: 0;
  }
}
.overlayNav .middle ul {
  text-transform: uppercase;
}
.overlayNav .middle ul.main li {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  .overlayNav .middle ul.main li {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 880px) {
  .overlayNav .middle ul.main li {
    margin-bottom: 15px;
  }
}
.overlayNav .middle ul.main li a {
  font-size: 40px;
  -webkit-text-stroke: 1px;
  transition: opacity 0.2s ease;
}
@media only screen and (max-width: 880px) {
  .overlayNav .middle ul.main li a {
    font-size: 24px;
  }
}
.overlayNav .middle ul.main li a span {
  -webkit-text-stroke: 0.4px;
  font-size: 11px;
  margin-right: 8px;
  display: inline-block;
}
.overlayNav .middle ul.main li a:hover {
  opacity: 0.6;
}
.overlayNav .middle ul.sub {
  margin-left: 34px;
}
@media only screen and (max-width: 1000px) {
  .overlayNav .middle ul.sub {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 880px) {
  .overlayNav .middle ul.sub {
    margin-left: 28px;
    margin-top: 25px;
  }
}
.overlayNav .middle ul.sub li {
  margin-bottom: 25px;
}
@media only screen and (max-width: 1000px) {
  .overlayNav .middle ul.sub li {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 880px) {
  .overlayNav .middle ul.sub li {
    margin-bottom: 10px;
  }
}
.overlayNav .middle ul.sub li a {
  font-size: 16px;
  -webkit-text-stroke: 0.6px;
  transition: opacity 0.2s ease;
}
.overlayNav .middle ul.sub li a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 1000px) {
  .overlayNav .middle ul.sub li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 880px) {
  .overlayNav .middle ul.sub li a {
    font-size: 12px;
  }
}
.overlayNav .bottom {
  position: absolute;
  bottom: 40px;
  left: 50px;
  right: 50px;
}
@media only screen and (max-width: 880px) {
  .overlayNav .bottom {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
.overlayNav .bottom .left p,
.overlayNav .bottom .right p {
  font-size: 11px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.4px;
}
.overlayNav .bottom .left p a,
.overlayNav .bottom .right p a {
  transition: opacity 0.2s ease;
}
.overlayNav .bottom .left p a:hover,
.overlayNav .bottom .right p a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 880px) {
  .overlayNav .bottom .left,
  .overlayNav .bottom .right {
    width: 100% !important;
    text-align: left !important;
    margin: 4px 0;
  }
}

@media only screen and (max-width: 880px) {
  main {
    margin-top: 0;
  }
}
main .topHome {
  width: 100%;
  min-height: 600px;
  height: calc(100vh - 170px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/2.jpg");
  position: relative;
}
@media only screen and (max-width: 880px) {
  main .topHome {
    height: 530px;
    min-height: auto;
  }
}
main .topHome:after {
  content: "";
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
main .topHome .videoHolder {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  overflow: hidden;
}
main .topHome .videoHolder video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
}
@media only screen and (max-width: 880px) {
  main .topHome .videoHolder video {
    width: auto;
  }
}
main .topHome .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
main .topHome .inner h2 {
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.4px;
}
@media only screen and (max-width: 1180px) {
  main .topHome .inner h2 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 880px) {
  main .topHome .inner h2 {
    font-size: 16px;
    line-height: 22px;
  }
}
main .topHome .inner h1 {
  font-size: 130px;
  line-height: 1;
  margin: 30px auto 60px;
  text-transform: uppercase;
  -webkit-text-stroke: 3px;
}
@media only screen and (max-width: 1180px) {
  main .topHome .inner h1 {
    font-size: 90px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 880px) {
  main .topHome .inner h1 {
    font-size: 44px;
    line-height: 50px;
    margin: 15px auto 30px;
    -webkit-text-stroke: 1px;
  }
}
main .topHome .scroller {
  position: absolute;
  bottom: -110px;
  right: 50px;
}
@media only screen and (max-width: 1180px) {
  main .topHome .scroller {
    bottom: -50px;
  }
}
main .topHome .scroller .scrollText {
  animation: rotate 10s infinite;
  animation-timing-function: linear;
}
@media only screen and (max-width: 1180px) {
  main .topHome .scroller .scrollText {
    width: 160px;
  }
}
@media only screen and (max-width: 880px) {
  main .topHome .scroller .scrollText {
    width: 120px;
  }
}
main .topHome .scroller .scrollDown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1180px) {
  main .topHome .scroller .scrollDown {
    width: 20px;
  }
}
@media only screen and (max-width: 880px) {
  main .topHome .scroller .scrollDown {
    width: 16px;
  }
}
main .twoCols {
  max-width: 1100px;
  margin: 180px auto;
}
@media only screen and (max-width: 880px) {
  main .twoCols {
    margin: 110px auto 90px;
  }
}
main .twoCols .left,
main .twoCols .right {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
@media only screen and (max-width: 880px) {
  main .twoCols .left,
  main .twoCols .right {
    width: 100% !important;
    padding-right: 0 !important;
  }
}
main .twoCols .center {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 880px) {
  main .twoCols .center {
    width: 100%;
  }
}
main .twoCols .center p {
  font-size: 40px;
  line-height: 46px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px;
}
@media only screen and (max-width: 1180px) {
  main .twoCols .center p {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 880px) {
  main .twoCols .center p {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
main .twoCols .left {
  width: 60%;
  padding-right: 80px;
}
main .twoCols .left p {
  font-size: 40px;
  line-height: 46px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px;
}
@media only screen and (max-width: 1180px) {
  main .twoCols .left p {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 880px) {
  main .twoCols .left p {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
main .twoCols .right {
  width: 40%;
}
main .twoCols .right p {
  font-size: 19px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1180px) {
  main .twoCols .right p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 880px) {
  main .twoCols .right p {
    font-size: 14px;
    line-height: 24px;
  }
}
main .sideScroller {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: calc(100vh - 170px);
}
@media only screen and (max-width: 880px) {
  main .sideScroller {
    min-height: auto;
    height: 420px;
  }
}
main .sideScroller .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  position: absolute;
  width: var(--marquee-width);
  pointer-events: none;
}
main .sideScroller .text .marquee {
  width: var(--marquee-width);
  overflow: hidden;
  pointer-events: none;
}
main .sideScroller .text .marquee.ltr .inner {
  animation: marquee 24s linear infinite;
}
main .sideScroller .text .marquee.rtl .inner {
  animation: marquee2 24s linear infinite;
}
main .sideScroller .text .marquee .inner {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
}
main .sideScroller .text .marquee .inner span {
  font-size: 130px;
  line-height: 1;
  margin: 10px 0;
  text-transform: uppercase;
  -webkit-text-stroke: 3px;
  text-align: center;
  white-space: nowrap;
  padding: 0 1vw;
  color: #f9f8f6;
}
@media only screen and (max-width: 1180px) {
  main .sideScroller .text .marquee .inner span {
    font-size: 90px;
  }
}
@media only screen and (max-width: 880px) {
  main .sideScroller .text .marquee .inner span {
    font-size: 50px;
    -webkit-text-stroke: 1px;
  }
}
main .gallery {
  margin: 260px auto;
  max-width: 1260px;
  text-align: center;
}
@media only screen and (max-width: 880px) {
  main .gallery {
    margin: 100px auto;
  }
}
main .gallery p {
  font-size: 130px;
  line-height: 140px;
  text-transform: uppercase;
  -webkit-text-stroke: 3px;
  text-align: center;
  color: #c63527;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1280px) {
  main .gallery p {
    font-size: 110px;
    line-height: 120px;
  }
}
@media only screen and (max-width: 1180px) {
  main .gallery p {
    font-size: 90px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 880px) {
  main .gallery p {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
    -webkit-text-stroke: 1px;
  }
}
main .gallery p a {
  position: relative;
  display: inline-block;
}
main .gallery p a:after {
  position: absolute;
  bottom: 0px;
  height: 10px;
  width: 100%;
  background: #c63527;
  content: "";
  left: 0;
}
@media only screen and (max-width: 880px) {
  main .gallery p a:after {
    height: 3px;
  }
}
main .gallery p a:hover img {
  display: block;
}
main .gallery p a img {
  position: absolute;
  display: none;
  z-index: 10;
  max-width: 600px;
}
@media only screen and (max-width: 1180px) {
  main .gallery p a img {
    max-width: 400px;
  }
}
@media only screen and (max-width: 880px) {
  main .gallery p a img {
    max-width: 200px;
  }
}
main .gallery p a img.pizzas {
  top: -200px;
  right: -200px;
}
@media only screen and (max-width: 880px) {
  main .gallery p a img.pizzas {
    top: -80px;
    right: -70px;
  }
}
main .gallery p a img.milkshakes {
  top: -200px;
  right: 200px;
}
@media only screen and (max-width: 880px) {
  main .gallery p a img.milkshakes {
    right: 60px;
    top: -80px;
  }
}
main .gallery p a img.subs {
  top: -100px;
  right: -100px;
}
@media only screen and (max-width: 880px) {
  main .gallery p a img.subs {
    top: -40px;
    right: -35px;
  }
}
main .testimonials {
  text-align: center;
  border-bottom: 4px solid #c63527;
}
@media only screen and (max-width: 880px) {
  main .testimonials {
    border-bottom-width: 2px;
  }
}
main .testimonials h1 {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px;
}
@media only screen and (max-width: 880px) {
  main .testimonials h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
main .testimonials p {
  font-size: 19px;
  line-height: 30px;
  margin-bottom: 30px;
  letter-spacing: 0.2px;
  -webkit-text-stroke: 0.4px;
}
@media only screen and (max-width: 880px) {
  main .testimonials p {
    font-size: 14px;
    line-height: 22px;
  }
}
main .testimonials .testimonialsHolder {
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 900px;
  margin-top: 30px;
  background-image: url("../images/testimonials.png");
}
@media only screen and (max-width: 1180px) {
  main .testimonials .testimonialsHolder {
    height: 600px;
  }
}
@media only screen and (max-width: 880px) {
  main .testimonials .testimonialsHolder {
    height: 300px;
  }
}
main .stores {
  text-align: center;
  max-width: 1300px;
  margin: 140px auto 0;
}
@media only screen and (max-width: 880px) {
  main .stores {
    margin: 80px auto 0;
  }
}
main .stores h1 {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
  margin-bottom: 50px;
  -webkit-text-stroke: 1px;
}
@media only screen and (max-width: 880px) {
  main .stores h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
main .stores .oneStore {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0 40px;
}
@media only screen and (max-width: 880px) {
  main .stores .oneStore {
    width: 100%;
    padding: 0 0 30px;
  }
}
main .stores .oneStore .map {
  height: 400px;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1180px) {
  main .stores .oneStore .map {
    height: 300px;
  }
}
@media only screen and (max-width: 880px) {
  main .stores .oneStore .map {
    height: 240px;
  }
}
main .stores .oneStore h3 {
  font-size: 18px;
  line-height: 28px;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  -webkit-text-stroke: 0.6px;
}
@media only screen and (max-width: 880px) {
  main .stores .oneStore h3 {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
  }
}
main .stores .oneStore p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 880px) {
  main .stores .oneStore p {
    font-size: 16px;
    line-height: 26px;
  }
}

footer {
  box-sizing: border-box;
}
footer .newsletter {
  text-align: center;
  max-width: 800px;
  margin: 140px auto 200px;
}
@media only screen and (max-width: 880px) {
  footer .newsletter {
    margin-bottom: 60px;
    margin-top: 80px;
  }
}
footer .newsletter h2 {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  -webkit-text-stroke: 0.6px;
}
@media only screen and (max-width: 880px) {
  footer .newsletter h2 {
    font-size: 16px;
    line-height: 26px;
  }
}
footer .newsletter > p {
  font-size: 45px;
  line-height: 50px;
  margin: 20px 0 40px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px;
}
@media only screen and (max-width: 880px) {
  footer .newsletter > p {
    font-size: 24px;
    line-height: 30px;
  }
}
footer .newsletter form {
  font-size: 0;
  max-width: 450px;
  margin: 0 auto;
}
footer .newsletter form .inputWrapper {
  position: relative;
  text-align: left;
}
footer .newsletter form input {
  box-sizing: border-box;
  text-align: left;
  background: #f9f8f6;
  color: #000000;
  display: inline-block;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 95%;
  padding: 0 160px 0 24px;
  position: relative;
  height: 45px;
  outline: none;
  border: 2px solid #c63527;
  font-size: 16px;
  -webkit-appearance: none;
}
@media only screen and (max-width: 880px) {
  footer .newsletter form input {
    font-size: 14px;
  }
}
footer .newsletter form button {
  text-align: center;
  display: inline-block;
  outline: none;
  top: 0;
  cursor: pointer;
  right: 0;
  position: absolute;
  height: 45px;
  box-sizing: border-box;
}
footer .newsletter form p.response {
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 16px;
}
@media only screen and (max-width: 880px) {
  footer .newsletter form p.response {
    margin-top: 40px;
  }
}
footer .left,
footer .middle,
footer .right {
  text-transform: uppercase;
}
@media only screen and (max-width: 880px) {
  footer .left,
  footer .middle,
  footer .right {
    width: 100% !important;
    text-align: center !important;
    margin: 4px 0;
  }
}
footer .left p,
footer .right p {
  font-size: 11px;
  -webkit-text-stroke: 0.4px;
}
@media only screen and (max-width: 880px) {
  footer .left p,
  footer .right p {
    font-size: 9px;
  }
}
@media only screen and (max-width: 880px) {
  footer .middle {
    display: none !important;
  }
}
footer .middle p {
  font-size: 20px;
  letter-spacing: 0.2px;
}
.three {
  font-size: 0;
}
.three .left,
.three .middle,
.three .right {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
}
.three .left {
  text-align: left;
}
.three .middle {
  text-align: center;
}
.three .right {
  text-align: right;
}

.two {
  font-size: 0;
}
.two .left,
.two .right {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
.two .left {
  text-align: left;
}
.two .right {
  text-align: right;
}

.noise {
  top: -50vw;
  right: -50vw;
  bottom: -50vw;
  left: -50vw;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 999999;
  background-position: 50%;
  background-image: url(../images/noise.png);
  opacity: 0.4;
  pointer-events: none;
  animation: NoiseGenerate 2s steps(2) infinite;
}
@keyframes NoiseGenerate {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes marquee2 {
  0% {
    transform: translate3d(var(--move-final), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
}
.privacyContent {
  max-width: 1000px;
  margin: 200px auto;
}
@media only screen and (max-width: 880px) {
  .privacyContent {
    margin: 120px auto;
  }
}
.privacyContent h1 {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
  margin-bottom: 50px;
  -webkit-text-stroke: 1px;
}
@media only screen and (max-width: 880px) {
  .privacyContent h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.privacyContent p {
  font-size: 19px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1180px) {
  .privacyContent p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 880px) {
  .privacyContent p {
    font-size: 14px;
    line-height: 24px;
  }
}