@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins",sans-serif;
}
body {
  background:#2d525c;
}

:root{
  --section-bg-color: #F9F9F9;
  --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #FEA116;
    --bs-secondary: #6c757d;
    --bs-success: #3fb37d;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #F1F8FF;
    --bs-dark: #0F172B;
}
.nav {
  position: relative;
  top: 25px;
  left: 0;
  width: 100%;
  padding: 15px 200px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 10px rgba(49, 49, 49, 0.1);
  
}
.nav::after{
  cursor: pointer;
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
  top: 0;
}
.nav {
  justify-content: space-between;
}
a {
  color: #fff;
  text-decoration: none;
}
.nav .logo {
  font-size: 22px;
  font-weight: 500;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
}
.nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}
.nav .search-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.nav .search-box {
  position: absolute;
  right: 250px;
  height: 45px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: #4a98f7;
  transform: translateY(-50%);
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #fff;
  padding: 0 15px 0 45px;
}
.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }
  .nav {
    padding: 15px 20px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #11101d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

#main-slider {
  background: url(../images/Dark.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  text-align: center;
  position: relative;
}
#main-slider h2{
  color:  #ffffff;
  margin: 0;
}
#main-slider h2 span{
  color: #0dcaf0;
  font-family:  "Oswald";
}
#main-slider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.6);
}
.section-slogan {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  z-index: 1;
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}
.section-slogan img {
  max-width: 338px;
  margin-bottom: 20px;
}
.section-slogan h2 {
  font-size: 80px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin: 0 0 20px;
  font-family: "Oswald";
  text-transform: uppercase;
  line-height: 80px;
  letter-spacing: 1px;
}
.section-slogan h3 {
  font-size: 40px;
  color: #fff;
  font-family: 'oswald';
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
}


h1{
  font-family: "Oswald";
  justify-content: center;
  text-align: center;
 margin-top: 10px;
 background: url(../images/slider-10_2.jpg);
 color: white;

;
}

.col-md-7,.col-lg-8{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}*/

.img-fluids img{
  border-radius: 60%;
  
}
.img-fluids {
  position: relative;
  display: flex;
  left: 7vh;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
  top: 5vh;
}
@-webkit-keyframes spin{
  100%{-webkit-transform: rotate(360deg);}
}
@-moz-document spin{
  100%{-webkit-transform: rotate(360deg);}
}
@keyframes spin{
  100%{-webkit-transform: rotate(360deg);}
}

.about-section-box {
  padding: 70px 0px;
  background: #ffffff url(../images/Dark.png) no-repeat bottom center;
  background-size: cover;
}
@media (min-width: 1200px){
.containered {
    max-width: 1140px;
}}
.rowed {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 992px){
.col-lg-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}}
@media (min-width: 768px){
.col-md-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}}
@media (min-width: 576px){
.col-sm-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}}
.col-lg-6,.col-md-6,.col-sm-12{
  position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  
}
.inner-column {
  text-align: left;
}
.inner-column h1 {
  font-family: 'Oswald';
  font-size: 30px;
  color: #010101;
  font-weight: 500;
}
.inner-column h4 {
  font-size: 16px;
  font-weight: 500;
}
.inner-column p {
  font-size: 18px;
  color: #222222;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.inner-column .btn-outline-new-white {
  color: #fff;
}
.btn-outline-new-white {
  color: #fff;
  background-color: #d65106;
  background-image: none;
  border-color: #d65106;
}
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: .1875rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn {
  text-transform: uppercase;
  padding: 19px 36px;
}
a, .btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.btn-group-lg>.btn, .btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
@media (min-width: 992px){
.col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}}
@media (min-width: 768px){
.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}}
@media (min-width: 576px){
.col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}}

.container-s {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vmin;
  overflow: hidden;
  transform: skew(5deg);

  .card {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
    .card__head {
      color: black;
      background: rgba(255, 30, 173, 0.75);
      padding: 0.5em;
      transform: rotate(-90deg);
      transform-origin: 0% 0%;
      transition: all 0.5s ease-in-out;
      min-width: 100%;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 1em;
      white-space: nowrap;
    }

    &:hover {
      flex-grow: 10;
      img {
        filter: grayscale(0);
      }
      .card__head {
        text-align: center;
        top: calc(100% - 2em);
        color: white;
        background: rgba(0, 0, 0, 0.5);
        font-size: 2em;
        transform: rotate(0deg) skew(-5deg);
      }
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 1s ease-in-out;
      filter: grayscale(100%);
    }
    &:not(:nth-child(5)) {
      margin-right: 1em;
    }
  }
}



.box-icon {
  text-align: center;
}
.box-icon .icon {
  width: 129px;
  height: 129px;
  border-radius: 50%;
  background-color: #1c262a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 32px;
  position: relative;
}
.box-icon .icon::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  width: 157px;
  height: 157px;
  border: 1px solid #c6ac83;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.box-icon .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.box-icon .title a {
  color: #FFF;
}
.box-icon p {
  margin: auto;
  max-width: 235px;
  color: #e0e3e5;
}
.wg-about-us {
  padding-top: 135px;
  padding-bottom: 75px;
  padding: 70px 20px;
}
.themesflat-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 1200px;
  max-width: 100%;
}
.rowell {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)* -1);
  margin-right: calc(var(--bs-gutter-x)* -.5);
  margin-left: calc(var(--bs-gutter-x)* -.5);
}
.rowell {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
@media (min-width: 992px){
.col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}}
.wg-about-us .content {
  padding-top: 24px;
}
.heading-section .sub {
  color: #c6ac83;
  font-family: 'CormorantInfant';
  font-size: 25px;
  line-height: 32px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.heading-section .main {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  margin-top: 11px;
  margin-bottom: 25px;
}
.divider {
  width: 156px;
  height: 1px;
  background-color: #c6ac83;
  position: relative;
  margin-top: 35px;
  margin-bottom: 45px;
}
.heading-section .description {
  color: #c6ac83;
  font-family: 'CormorantInfant';
  font-size: 23px;
  line-height: 33px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.45px;
  margin-bottom: 15px;
}
.wg-about-us .content p {
  margin-left: 3px;
  margin-bottom: 43px;
  max-width: 605px;
  color: white;
}
.button-two-line {
  position: relative;
  width: max-content;
  height: 50px;
  padding: 0 33px 0 32px;
  border: 1px solid #c6ac83;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #FFF;
  font-family: 'CerebriSans';
  font-size: 13px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  background-size: 300%;
  background-image: linear-gradient(340deg, #e6c9a2 50%, #fff0 50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px){
.col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}}
.w-full {
  width: 100% !important;
  margin-top: 112px;
  box-shadow: 5px 10px rgb(255, 255, 255);
}
.wg-open-hours {
  padding-bottom: 135px;
  padding: 70px 20px;
}
.wg-open-hours .content ul {
  margin-top: 22px;
  color: white;
  padding:  20px 20px;
}
.s-full{
  width: 80% !important;
  box-shadow: 5px 10px rgb(255, 255, 255);
}

.open-hours{
  position: fixed;
}
#slider {
  background: url(../images/play.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  text-align: center;
  position: relative;
}
#slider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}
.slogan {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  z-index: 1;
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}
.slogan img {
  max-width: 338px;
  margin-bottom: 20px;
  
}
.slogan h2 {
  font-size: 80px;
  color: #ffdfab;
  font-weight: 400;
  text-align: center;
  margin: 0 0 20px;
  font-family: "Oswald";
  text-transform: uppercase;
  line-height: 80px;
  letter-spacing: 1px;
}
.slogan h3 {
  font-size: 40px;
  color: #fff;
  font-family: 'oswald';
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
}
div#quote-layer {
  
  background-color: rgba(0, 0, 0, 0.6);
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding : 25px;
  width: 485px;
  cursor: pointer;
  font-family:oswald ;
  box-shadow: 5px 10px white;
  overflow: hidden;
}

div#open-quote {position: absolute;
  left: 666px;
  top: 600px;
}

div#quote-layer p {
  text-align: center;
  color: wheat;
}
.wrapper {
   display: grid;
  place-items: center;
  color: wheat;
  overflow: hidden;
}
.typing-demo {
  width: 450px;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-right: 3px solid;
  font-size: 2em;
  font-family:"oswald";
 overflow: hidden; 
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}
#sliders {
  background: url(../images/play.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  text-align: center;
  position: relative;
}
#sliders:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.6);
}

#heading{
  margin:20px;
}
#heading>h1{
  text-align:center;
  font-size:3rem;
  
}
#heading>p{
  text-align:center;
  font-size:1.5rem;
  font-style:italic;
  color: white;
}
.con{
  width:100%;
  display:flex;
  justify-content:center;
  gap: 3rem;
  flex-wrap:wrap;
  padding:40px 20px;
}
.card-con{
  display:flex;
  flex-direction:column;
  width:400px;
  margin-bottom:60px;
}
.card-con>div{
  box-shadow:0 15px 20px 0 rgba(0,0,0,0.5);
}
.card-image{

  height:250px;
}
.card-image>img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:bottom;
}
.card-text{
  margin:-30px auto;
  margin-bottom:-50px;
  height:400px;
  width:300px;
  background-color:#1D1C20;
  color:#fff;
  padding:20px;
}
.card-meal-type{
  font-style:italic;
}
.card-title{
  font-size:2.2rem;
  margin-bottom:20px;
  margin-top:5px;
}
.card-body{
  font-size:1.25rem;
}
.card-price{
  width:100px;
  height:100px;
  background-color:#970C0A;
  color:#fff;
  margin-left:auto;
  font-size:2rem;
  display:flex;
  justify-content:center;
  align-items:center;
}
h3:before, h3:after {
  content: "";
  flex: 1 1 ;
  border-bottom: 2px solid #ffffff;
  margin: auto;
}
h3 { 
  display: flex; 
  flex-direction: row; 

} 

.button-one-line {
  position: relative;
  width: max-content;
  height: 35px;
  padding: 0 32px 0 32px;
  border: 1px solid #c6ac83;
  display:inline-block;
  align-items: center;
  justify-content: center;
 
 flex-wrap: wrap;
  color: #FFF;
  font-family: 'CerebriSans';
  font-size: 13px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  background-size: 300%;
  background-image: linear-gradient(340deg, #e6c9a2 50%, #fff0 50%);
  
}
.txt p{
  color: white;
}
.section-slogans{
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  z-index: 1;
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
  color: wheat;
  overflow: hidden;
}
.section-slogans h3{
  color: white;
  font-family: "oswald";
  font-size: 50px;
}


.footer-distributed{
  background: #000000;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
  width: 40%;
}

/* The company logo */

.footer-distributed h3{
  color:  #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-distributed h3 span{
  color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
  color:  #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}

.footer-distributed .footer-company-name{
  color: #b2b2b2;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
  width: 35%;
}

.footer-distributed .footer-center i{
  background-color:  #000000;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  lightseagreen;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
  width: 20%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}




@media (max-width: 880px) {

  .footer-distributed{
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i{
    margin-left: 0;
  }

}
.logos h3{
  color:  #ffffff;
  font: normal 30px 'Open Sans', cursive;
  margin: 0;
}

.logos h3 span{
  color:  lightseagreen;
}
h1 { 
  display: flex; 
  flex-direction: row; 
} 
h1:before, h1:after {
  content: "";
  flex: 1 1;
  border-bottom: 2px solid #ffffff;
  margin: auto;
}

.app-download-section {
    position: relative;
    background: url('../images/bacckground.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.content- {
    position: relative;
    z-index: 2;
}

.phone-icon {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5em;
    margin: 0 0 20px;
}

p {
    font-size: 1.2em;
    margin: 0 0 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: background 0.3s ease;
}

.play-store {
    background-color: #3ddc84; /* Play Store button color */
}

.play-store:hover {
    background-color: #35c377;
}

.app-store {
    background-color: #000; /* App Store button color */
}

.app-store:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.9em;
    }

    .btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
.logo img {
  width: 500px;
  height: auto;
  animation: spin 5s linear infinite;
  border-radius: 50%;
}
@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}