body {
   font-family: Helvetica;
   margin: 0;
   padding: 0;
   width: 100%;
   overflow-x: hidden;
}

.background-img-div {
   position: absolute;
   width: 100%;
   height: 100%;
   z-index: -1;
   overflow: hidden;
 }

 .background-img {
   width: 100%;
   height: 100%;
 }

.header-div {
   background-color: #fff;
   padding: 10px 20px;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 100;
}

.header-div-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 20px;
}

.header-div-content a {
   padding-left: 100px;
   padding-right: 100px;
   text-decoration: none;
   color: #000;
   margin-right: 35px;
}

.welcome-msg {
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: left;
   top: 470px;
   padding-left: 200px;
   color: #fff;
}

.welcome-first-text {
   font-size: 60px;
   margin-bottom: 5px;
   vertical-align: baseline;
   animation: righttoleft 2s ease-out;
   font-weight: bold;
}

#festive-days {
   vertical-align: baseline;
   font-size: 1rem;
}

.footer-div {
   /*
   background-color: #2d2e30;
   padding: 10px 20px;
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 80px;
   z-index: 100;
   color: #fff;
   */
   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 80px;
   background-color: #2d2e30;
   font-size: 20px;
   color: #fff;
}

.footer-content {
   display: flex;
   justify-content: center;
   gap: 50px;
}

.cookie-consent {
   position: fixed;
   display: flex;
   justify-content: left;
   align-items: center;
   gap: 40px;
   margin-right: 10px;
   color: #fff;
   bottom: 0;
   left: 0;
   background-color: #2d2e30;
   width: 100%;
   height: 80px;
   z-index: 1;
}

.cookie-msg {
   margin-left: 20px;
   width: 80%;
}

.cookie-buttons {
   margin-left: 20px;
   display: flex;
   align-items: center;
   flex-direction: row;
   gap: 20px;
}

.button-Cookies {
   border-radius: 5px;
   border: none;
   padding: 5px;
   margin: 5px;
   width: 100px;
}

.button-Cookies:hover {
   background-color: #adadad;
}

a {
   text-decoration: none;
   color: #fff;
}

#festive-days {
   font-size: 1rem;
}

@keyframes righttoleft {
   0% {
     transform: translateX(100%);
     opacity: 0;
   }
   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

@media only screen and (max-width: 768px) {

   .header-div {
      padding-right: 0;
      padding-left: 0;
   }

   .header-div-content {
      display: flex;
      justify-content: space-around;
      font-size: 20px;
   }

   .header-div-content a {
      margin: 0px;
      padding: 0px;
   }

   .fa-phone {
      text-align: right;
      font-size: 25px !important;
   }

   .fa-location-dot {
      font-size: 25px;
   }
 
   .welcome-msg {
      top: 200px;
      padding-left: 100px;
   }

   .welcome-first-text {
      font-size: 40px;
      margin-bottom: 5px;
      vertical-align: baseline;
   }

   .footer-div {
      height: 320px;
   }

   .footer-content {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 35px;
   }

   .footer-text {
      text-align: center;
      font-size: 25px;
   }
   
   .cookie-consent {
      height: 320px;
      background-color: #2d2e30;
      font-size: 16px;
      flex-direction: column;
      gap: 0;
      justify-content: center;
   }

   .cookie-msg {
      margin: 0;
      margin-bottom: 30px;
   }
}