html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  margin-top: 90px;
}

@media screen and (max-width: 1024px) {
  body{
    margin-top: 70px;
  }
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0px 0px 10px 0px rgba(83, 81.5, 81.5, 0.5);
}

header a {
  color: #fff;
}

.header-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 0px;
}

.logo {
  width: 12%;
  align-items: center;
  display: flex;
}

.logo img {
  max-width: 100%;
}

ul {
  margin-block-start: 0px !important;
  margin-block-end: 0px !important;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px !important;
}

.cta-button-box {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-button-box .cta-button {
  background-color: #20B14B !important;
  font-weight: 400;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73%;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  padding-right: 40px;
  letter-spacing: 0.5px;
}

.navigation {
  display: flex;
  list-style: none;
  gap: 5px;
  justify-content: center;
}

.navigation li {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.navigation .sub-menu li {
  padding: 0px;
  font-size: 16px;
}

.navigation li a {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding: 10px 10px;
  overflow: hidden;
  transition: color 0.3s ease;
}

.navigation li a:hover {
  color: #20B14B;
}

.navigation li a:hover::after {
  transform: scaleX(1);
}

.has-sub-menu {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 3px;
  z-index: 20;
  list-style: none;
  width: max-content;
  min-width: 200px;
  font-size: 16px;
}

.sub-menu li a {
  display: block;
  max-width: 100%;
  padding: 10px;
  line-height: 1.7em;
  font-weight: 400;
  color: #000;
}

.navigation .has-sub-menu a:hover {
  border-bottom: none;
  color: #20B14B;
}

.has-sub-menu i {
  font-size: 12px;
  color: #000;
}

.has-sub-menu:hover .sub-menu {
  display: block;
}

.has-sub-menu {
  display: flex;
  align-items: center;
}

.hamburger-icon {
  display: none;
  border: none;
  background-color: transparent;
}

.hamburger-icon .fa-bars,
.hamburger-icon .fa-x {
  color: #000;
  font-size: 28px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

.dropdown-box {
  display: none;
}

.mobile-menu {
  display: none;
}

.desktop-menu {
  display: block;
}

.mobile-sub-menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .menu {
    font-size: 16px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: flex;
    justify-content: flex-start;
  }

  .logo a {
    max-width: 100%;
  }

  .logo img {
    height: 58px;
    max-width: none;
    position: relative;
    margin: 0;
  }

  .navigation {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #EE212F;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #AFAFAF4D;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 10px 25px;
    color: #fff;
    font-size: 18px;
  }

  .navigation li a:hover,
  .navigation li a:active {
    border: unset;
    background-color: #fff !important;
    color: #000 !important;
  }

  .hamburger-icon {
    display: flex;
  }

  .fa-x {
    display: none !important;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    display: flex;
    max-height: 600px;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display: none;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-x {
    display: inline-block !important;
  }

  .dropdown-box {
    display: block;
    width: 10%;
    transition: all ease-in 1s;
  }

  .dropdown-box i {
    color: #fff;
  }

  #mobile-dropdown-button {
    appearance: none;
    background: transparent;
    border: none;
  }

  #mobile-dropdown-button i {
    font-size: 18px;
  }

  .cta-button-box {
    display: none;
  }

  .header-container {
    justify-content: space-between;
  }

  .logo {
    width: 30%;
    justify-content: flex-start;
    padding-right: 0px;
    padding-left: 20px;
  }

  .menu {
    width: 10%;
    padding-right: 10px;
  }

  .sub-menu {
    width: 100%;
  }

  .mobile-sub-menu {
    display: none;
    background-color: #EE212F;
    border: none;
    width: 100%;
  }

  .mobile-sub-menu li {
    list-style: none;
    padding: unset;
    font-size: 16px;
    font-weight: 400;
  }

  .mobile-sub-menu li a {
    padding-left: 35px;
  }

  .mobile-sub-menu li a:hover,
  .mobile-sub-menu li a:active {
    background-color: #fff !important;
    color: #000 !important;
  }

  .has-sub-menu .desktop-icon {
    display: none;
  }
}

.content-parts {
  max-width: 1200px;
  margin: 70px auto;
  text-align: left;
  padding: 0px 5%;
}

#first-section {
  margin-top: 0px !important;
}

.two-columns {
  display: flex;
  gap: 20px;
}

.two-columns .col-1,
.two-columns .col-2 {
  width: 50%;
}

.col-1 .content-pic {
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-block-start: 0;
  margin-inline-end: 0;
}

.col-2 .content-pic {
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-block-start: 0;
  margin-inline-end: 0;
}

@media screen and (max-width: 1024px) {
  .two-columns {
    flex-direction: row;
    justify-content: center;
  }
}

.two-columns .w-60 {
  width: 60%;
  display: flex;
  align-items: center;
}

.two-columns .w-40 {
  width: 40%;
  display: flex;
}

.content-parts-full-width {
  width: 100%;
}

.content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 550px;
  gap: 10px;
  margin-right: 2%;
  margin-left: 2%;
}

@media screen and (max-width: 600px) {
  .two-columns {
    flex-direction: column;
    justify-content: center;
  }
}

h1 {
  font-size: 50px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-align: center;
}

h2 {
  color: #E71A21;
  font-size: 38px;
  margin-bottom: 0px;
  letter-spacing: 0.5px;
  line-height: 2em;
}

h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  word-spacing: 2px;
  line-height: 2em;
}

p {
  font-size: 16px;
  line-height: 2em;
  color: #fff;
}

span {
  font-size: 20px;
  line-height: 1.7em;
}

a {
  text-decoration: none;
  color: #e71a21;
}

a:hover {
  color: #fe0008;
}


@media screen and (max-width: 600px) {
  h2 {
    font-size: 30px;
  }
}

#top-banner {
  background-image: url(/assets/images/slider-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 74vh;
  display: flex;
  align-items: center;
  text-align: center;
}

#top-banner h1 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-block: 0;
  margin-top: -35px;
}

#top-banner span {
  font-weight: 500;
  font-size: 36px;
  color: #EE212F;
}

#top-banner p {
  font-size: 36px;
  font-weight: 500;
  margin-block: 0;
}

p#smaller-text {
  font-size: 30px;
}

#banner-items {
  width: 45%;
  margin-top: -50px;
}

#center-pic-banner {
  max-width: 55%;
  margin-top: -14px;
}

#top-banner .cta-container {
  justify-content: center;
}

#top-banner .cta-button {
  border-radius: 50px;
  padding: 6px 40px;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  #top-banner {
    height: 36vh;
  }

  #top-banner h1 {
    font-size: 32px;
    margin-top: 1px;
  }

  #top-banner span {
    font-size: 28px;
  }

  #top-banner p {
    font-size: 28px;
  }

  #center-pic-banner {
    margin-top: 0;
  }

  #top-banner .cta-button {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  #top-banner {
    background-image: url(/assets/images/mobile-slider-background.webp);
    height: 84vh;
  }

  #top-banner h1 {
    margin-bottom: 10px;
  }

  #center-pic-banner {
    max-width: 65%;
  }

  #banner-items {
    width: 100%;
    margin-top: -100px;
  }
}

.cta-button {
  padding: 10px 25px;
  background-color: #E71A21 !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  word-spacing: 2px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 14px;
  border: none;
}

.cta-button:hover {
  color: #fff;
}

.cta-button-white {
  background-color: #fff !important;
  color: #000 !important;
}

.cta-button-green {
  background-color: #20B14B !important;
  color: #fff !important;
}

.cta-button-white:hover {
  color: #000 !important;
}

.cta-button-black {
  background-color: #000 !important;
  color: #fff !important;
}

#foods-column h2,
#foods-column p {
  color: #000;
}

#app-column p {
  color: #E71A21;
  max-width: 85%;
  font-size: 32px;
  font-weight: 600;
  margin-left: 20px;
}

.food-items {
  display: flex;
}

.food-items figure {
  margin-block: 0;
  margin-inline: 0;
  text-align: center;
}

.food-items figcaption {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}

.two-items-row {
  width: 67%;
  margin: 40px auto 0 auto;
}

.food-items img {
  max-width: 75%;
}

#columns-in-col-2 {
  display: flex;
}

#col-1-in-col-2,
#col-2-in-col-2 {
  width: 50%;
}

#col-1-in-col-2 figure,
#col-2-in-col-2 figure {
  margin-inline: 20px;
  margin-block: 0;
}

#col-1-in-col-2 img,
#col-2-in-col-2 img {
  max-width: 100%;
}

#col-1-in-col-2 img {
  max-width: 100%;
}

#col-2-in-col-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

#signature-pizza-row {
  background-color: #111111;
  min-height: 500px;
  display: flex;
  align-items: center;
}

#pizza-content-part {
  width: 100%;
}

#signature-pizza-row .content-parts {
  margin: 10px auto;
}

#signature-pizza-row h2 {
  color: #fff;
  margin-block-start: 0;
}

#pizzas-pic {
  position: relative;
}

#signature-pizzas {
  position: absolute;
  top: -230px;
}

#below-banner {
  background-image: url(/assets/images/papas-pizza-footer-back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  z-index: 999;
  padding: 0px;
}

#below-banner h2 {
  line-height: 1.4em;
  font-size: 40px;
  color: #000;
}

#below-banner p {
  font-size: 34px;
  color: #000;
}

#three-columns {
  display: flex;
  text-align: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

#below-banner img {
  width: 80%;
}

.banner-pic-margin {
  margin-block: 0;
  margin-inline: 0;
}

.w-40 .content-pic img {
  border-radius: 0;
}

.w-40 .content-pic {
  margin-block: 1em;
  margin-inline: 50px;
  display: flex;
  justify-content: center;
}

.content-pic {
  display: flex;
  align-items: center;
}

.content-pic img {
  max-width: 100%;
}

.w-60 p {
  color: #000;
}

.w-60 #bigger-text {
  font-size: 28px;
  font-weight: 600;
  margin-block: 0;
}

#social-row {
  border-top: 1px solid #000;
}

#social-row h2 {
  color: #000;
  text-align: center;
}

.pizza-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.pizza-card {
  background: url('/assets/images/background.webp');
  width: 220px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: center;
  position: relative;
}

.pizza-card figure {
  margin-block: 0;
  margin-inline: 0;
}

.pizza-card p {
  font-size: 26px;
  font-weight: 600;
  margin-block-start: 0;
}

#red-back-row {
  background-color: #E71A21;
  height: 140px;
  max-width: 1250px;
  margin: -180px auto 0 auto;
}

#pizzas-box {
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  #below-banner h2 {
    font-size: 23px;
  }

  #below-banner p {
    font-size: 22px;
  }

  .w-40 .content-pic {
    margin-inline: 0px;
  }

  #below-banner {
    min-height: 280px;
  }

  .w-60 p {
    width: 100%;
  }

  #app-column p {
    font-size: 28px;
  }

  .cta-button {
    font-size: 16px;
  }

  #col-1-in-col-2 {
    width: 60%;
  }

  #col-2-in-col-2 {
    width: 40%;
  }

  #col-1-in-col-2 figure,
  #col-2-in-col-2 figure {
    margin-inline: 10px;
  }

  .pizza-section {
    gap: 10px;
  }

  .pizza-card {
    width: 120px;
    height: 250px;
    padding: 20px;
  }

  .pizza-card img {
    max-width: 100%;
  }

  .pizza-card p {
    font-size: 24px;
    line-height: 1.4em;
  }

  #signature-pizzas {
    position: static;
  }

  #signature-pizza-row {
    min-height: 400px;
  }

  #pizzas-pic img {
    max-width: 100%;
  }

}

@media screen and (max-width: 600px) {

  #red-back-row {
    display: none;
  }

  #foods-column h2,
  #social-row h2 {
    font-size: 36px;
  }

  #app-column p {
    max-width: 100%;
    text-align: center;
    margin-left: 0;
  }

  #columns-in-col-2 {
    flex-direction: column;
  }

  #col-1-in-col-2,
  #col-2-in-col-2 {
    width: 100%;
  }

  #col-2-in-col-2 {
    align-items: center;
  }

  .two-columns .w-40 {
    order: 2;
  }

  .pizza-section {
    flex-direction: column;
    gap: 20px;
  }

  .pizza-card {
    width: 80%;
    height: 370px;
  }

  .pizza-card img {
    max-width: 100%;
  }

  .pizza-card p {
    font-size: 26px;
  }

  #signature-pizza-row h2,
  .w-60 h2 {
    font-size: 36px;
  }

  #signature-pizza-row .col-1 {
    text-align: center;
  }

  #signature-pizza-row .cta-container {
    justify-content: center;
  }
}

.title-box p {
  text-align: center;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.logo-pages {
  display: flex;
  justify-content: center;
  text-align: center;
}

.logo-pages img {
  max-width: 65%;
}

.content-parts .cta-position {
  margin: 60px 0;
}

.cta-position {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .two-columns .form-box {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {

  .two-columns .col-1,
  .two-columns .col-2 {
    width: 100% !important;

  }

  .content-box {
    max-width: 94%;
  }
}

#employment {
  background-image: url(/assets/images/employment-opportunities-georgios.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#employment h1 {
  margin-block-start: 0;
  margin-block-end: 0.83em;
}

#employment h2, #employment p {
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 5px #000000;
}

#employment .cta-position {
  margin-top: 35px;
}

#cta-button-black-text {
  color: #000 !important;
}

@media screen and (max-width: 1024px) {
  #employment {
    height: 64vh;
  }
}

@media screen and (max-width: 600px) {
  #employment {
    height: 85vh;
  }
}

.red-background {
  background-color: #E71A21;
}

.black-background {
  background-color: #000;
}

.left-title h1 {
  text-align: left;
  margin-block-end: 0;
}

.bold-text p {
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .left-title h1 {
    text-align: center;
    margin-block-start: 0;
  }
}

.red-box {
  background-color: #E71A21;
  padding: 5px 20px;
  border-radius: 10px;
}

strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #fff;
  letter-spacing: 1px;
}

#red-strong {
  color: #E71A21;
}

.content-parts ul li {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #fff;
  margin-left: 20px;
}

.text-contact i {
  font-size: 20px;
  margin-right: 8px;
}

.text-contact a {
  color: #fff;
}

.text-contact a:hover {
  color: #e71a21;
}

.text-contact p {
  margin-block: 0;
  margin-inline: 0;
}

.text-contact h1 {
  margin-block-end: 0.2em;
}

.form-box {
  align-items: center;
}

.georgios-forms {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.georgios-forms input,
.georgios-forms textarea {
  width: 100%;
  background-color: #000;
  padding: 12px 0px 12px 12px;
  margin: 5px 0;
  border: 1px solid #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
}

.georgios-forms textarea {
  min-height: 140px;
}

.georgios-forms input:focus,
.georgios-forms textarea:focus {
  outline: none;
  border-color: #EE212F;
}

.georgios-forms .submit-button {
  width: 100%;
  cursor: pointer;
  font-weight: 400;
  padding: 10px 0px 10px 10px;
  margin-top: 5px;
}

@media screen and (max-width: 600px) {
  .georgios-forms {
    width: 100%;
    margin-top: 10px;
  }

  .content-parts-top {
    margin-top: 30px;
  }
}

.white-background {
  background-color: #fff;
}

.title-box-white-back h1 {
  color: #000;
}

.light-background-content h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.light-background-content p {
  color: #555;
  font-size: 14px;
  margin-block-start: 0;
}

.light-background-content a {
  font-size: 14px;
}

.light-background-content .cta-button {
  font-size: 20px;
  font-weight: 400;
  padding: 8px 25px;
}

.black-link {
  color: #000;
}

.black-link:hover {
  color: #E71A21;
}

.dark-row {
  height: 50px;
  background-color: #252120;
  max-width: 100% !important;
}

.content-pic-start {
  align-items: flex-start;
}

.content-pic-start .without-margin-pic {
  margin-inline: 0;
}

.between-button {
  display: flex;
  gap: 20px;
}

.content-parts iframe {
  margin-top: 30px;
  max-width: 100%;
}

.cta-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.without-margin-pic {
  margin-inline: 30px;
}

@media screen and (max-width: 1024px) {
  .without-margin-pic {
    margin-inline: 0;
    margin-block: 0;
  }

  .light-background-content h2 {
    margin-block-start: 0;
  }
}

@media screen and (max-width: 600px) {
  .mobile-reverse-columns {
    flex-direction: column-reverse;
  }

  .content-pic-start {
    margin-top: 30px;
  }

  .light-background-content h2 {
    margin-block-start: 0.83em;
  }
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 0px 5%;
}

.carousel-container .cta-position {
  margin: 60px 0;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper h2 {
  color: #000;
  text-align: center;
  margin-bottom: 10px;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  padding: 0px;
}

.swiper-slide figure {
  margin-inline: 0;
  margin-block-end: 0;
}

.swiper-slide img {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.swiper-slide p {
  color: #000;
  max-width: 90%;
  margin: 0 auto;
}

.swiper-slide h3 {
  font-size: 30px;
  margin-block-start: 15px;
  line-height: 1.3em;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 30px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: hsl(0deg 0% 93% / 90%) !important;
  width: 60px !important;
  height: 60px !important;
  top: 40% !important;
}

.swiper-button-next {
  right: -15px !important;
}

.swiper-button-prev {
  left: -15px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 600 !important;
}

#your-own-pizza h2,
#your-own-pizza p {
  color: #000;
  text-align: center;
}

#your-own-pizza h3 {
  font-size: 30px;
  text-align: center;
  margin-block: 0;
}

#your-own-pizza figure {
  text-align: center;
}

#your-own-pizza img {
  border-radius: 8px;
  max-width: 29%;
}

#your-own-pizza .cta-position {
  display: block;
  margin-top: 40px;
  margin-bottom: 30px;
}

.menu-items {
  background-color: #000;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: sticky;
  top: 0;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.menu-items a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  margin: 0 15px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.navigation li a.active {
  color: #20B14B;
}

@media screen and (max-width: 1024px) {
  .navigation li a.active {
    color:#000;
    background-color: #fff;
  }
}

@media screen and (max-width: 1024px) {
  #your-own-pizza h2 {
    font-size: 35px;
  }

  .carousel-container h2 {
    font-size: 35px;
  }

  #your-own-pizza img {
    max-width: 55%;
  }

  .menu-items {
    padding: 20px;
    gap: 10px;
    top: 0;
    max-width: 90%;
    width: 90%;
  }

  .menu-items a {
    font-size: 18px;
    margin: 0 5px;
  }
}

@media screen and (max-width: 600px) {
  .swiper-pagination {
    margin-top: 5px;
  }

  .swiper-slide img {
    max-width: 100%;
  }

  #your-own-pizza img {
    max-width: 100%;
  }

  #your-own-pizza figure {
    margin-inline: 15px;
  }

  .menu-items {
    flex-direction: column;
    width: 80%;
  }

}

footer {
  background-color: #252120;
}

.footer-column {
  width: 33%;
}

.footer-top-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top-pic {
  max-width: 300px;
  margin-top: 20px;
}

.restaurant-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.restaurant-logos img {
  margin: 0 15px;
  max-width: 180px;
}

.footer-container {
  padding: 25px 5% 65px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.title-line::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #484848;
}

.footer-container h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.footer-container p {
  margin-block: 0;
  max-width: 92%;
}

.footer-container a {
  color: #fff;
}

.footer-container a:hover {
  color: #E71A21;
}

.forth-column a {
  font-size: 20px;
}

.social-media-section {
  display: flex;
  gap: 8px;
}

.social-media-section i {
  font-size: 20px;
  color: #000;
}

.social-media-section i:hover {
  color: #EE212F;
}

.social-media-section .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 6px;
  border-radius: 4px;
  width: 26px;
  height: 26px;
}

.footer-column .cta-container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
}

.footer-column .cta-container a {
  color: #000 !important;
  font-weight: 500;
}

.footer-column .cta-container a:hover {
  color: #fff !important;
}

#mobile-app-pic figure {
  margin-inline-start: 0;
}

#mobile-app-pic img {
  border-radius: 10px;
  max-width: 60%;
}


.copyright {
  margin: 0 auto;
  background-color: #111111;
  padding: 30px 5%;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  color: #EE212F;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {

  .footer-column {
    margin-top: -20px;
  }

  .footer-container p {
    font-size: 14px;
  }

  .footer-container a {
    font-size: 14px;
  }

  .footer-container h3 {
    font-size: 28px;
  }

  #mobile-app-pic img {
    max-width: 85%;
  }

  .copyright {
    padding-left: 5%;
  }

  .footer-container {
    gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  .restaurant-logos {
    display: flex;
    flex-direction: column;
  }

  .restaurant-logos img {
    margin: 15px 0;
    max-width: 120px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .footer-container p {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }

  .footer-column .cta-container {
    align-items: center;
  }

  #mobile-app-pic figure {
    margin-inline-end: 0;
  }

  .copyright p {
    font-size: 14px;
  }

  .social-media-section {
    justify-content: center;
    margin-bottom: 20px;
  }

}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

#app-apply-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 70px auto;
}

.form-row {
  display: flex;
  gap: 15px;
}

@media screen and (min-width: 1024px) {
  .form-row{
    align-items: center;
  }
}

.dropdown-form-lable{
  color: #fff;
  width: 49.5%;
  margin: 5px 0;
  letter-spacing: .5px;
  font-size: 15px;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .dropdown-form-lable{
    width: 100%;
  }
}

#app-apply-form input,
#app-apply-form select,
#app-apply-form textarea {
  flex: 1;
  padding: 14px;
  margin: 5px 0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  font-size: 15px;
  font-weight: 600;
  background: #111;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
}

#app-apply-form textarea {
  min-height: 140px;
}

#app-apply-form input:focus,
#app-apply-form textarea:focus #app-apply-form select:focus {
  outline: none;
  border-color: #EE212F;
}

#app-apply-form option {
  background-color: #fff;
  color: #000;
}

#cta-app-page {
  border-radius: 3px;
  margin-top: 15px;
  font-weight: 500;
  margin-right: 10px;
}

#app-apply-page h1 {
  text-align: left;
  margin-block: 0;
}

.w-50 {
  width: 49.5%;
}

.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.step {
  width: 30px;
  height: 30px;
  background-color: #111;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-2 {
  position: relative;
}

.step.active {
  background-color: #fff;
  color: #111;
}

.line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 0 10px;
}

.custom-date-input {
  width: 100%;
}

#step-label {
  position: absolute;
  top: 40px;
  right: 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

#number-arrow::-webkit-inner-spin-button,
#number-arrow::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#number-arrow {
  appearance: textfield;
}

@media screen and (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: unset;
  }

  .w-50 {
    width: unset;
  }

  .custom-date-input {
    width: unset;
  }

  #app-apply-page h1,
  #app-apply-page p {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
}


.page-error{
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  align-items: center;
  margin: 50px auto;
  text-align: center;
  line-height: 2em;
}

.page-error ul{
  color: #fff;
  text-align: left;
}

.page-error h1{
  font-size: 60px;
}

.success-message{
  max-width: 1200px;
  margin: 50px auto;
  line-height: 2em;
}

.success-message ul{
  color: #fff;
  text-align: left;
}

.blog{
  display: block;
  max-width: 1200px;
  margin: 50px auto;
}

.blog-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  padding-left: 1%;
}

.blog-post{
  flex-direction: column;
  display: inline-flex;
  width: 32%;
  background-color: #fff;
  align-items: center;
  border: #69727d;
  border-radius: 5px;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .blog-post {
    width: 90%;
  }
  .blog-grid{
    justify-content: center;
    gap: 30px;
  }
}

.blog-post img{
  max-width: 100% !important;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.blog-post h2{
  color: #000;
  font-size: 22px;
}

.blog-post .excerpt{
  color: #333;
  font-size: 16px;
  height: 100px;
  content-visibility: auto;
  max-width: 90%;
}

.post-meta {
  border-top: 1px solid #a7a7a7;
  width: 100%;
  text-align: center;
}

.post-date {
  color: #444;
  font-size: 14px;
  line-height: 1em;
}

.single-blog{
  max-width: 1200px;
  margin: 50px auto;
}

.single-blog .featured-image{
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  max-width: 500px;
}

@media screen and (max-width: 600px) {
  .single-blog .featured-image {
    max-width: 80%;
  }
}

.single-blog #date {
  color: #eeeeee;
  font-size: 14px;
  text-align: center;
}

.blog-pics{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: 0;

}

.blog-pics img{
  max-width: 90%;
  border-radius: 5px;
}

.blog-h2{
  color: #fff;
}

.blog-h3{
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.franchise-h2{
  color: #fff;
  font-size: 28px;
}

#campaign-content-parts {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0px 5%;
}

#campaign-logo-box {
  display: flex;
  gap: 30px;
  justify-content: center;
}

#g-logo {
  max-width: 200px;
}

#cleveland-logo {
  max-width: 120px;
}

#campaign-title {
  font-size: 36px;
  line-height: 2em;
  margin-top: 50px;
  letter-spacing: unset;
}

#campaign-btn-box {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

#campaign-btn-box a img{
  border-radius: 10px;
  width: 200px;
}

#campaign-rules h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 2em;
  color: #FFFFFF;
  margin: 40px auto;
  border-top: 3px solid #fff;
  width: fit-content;
  padding-top: 30px;
}

#campaign-rules p {
  font-size: 17px;
}
