@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre&family=Raleway&display=swap");
:root {
  ---bgGrey: rgb(235, 235, 235);
  /* ---primeColor: rgb(50, 50, 204); */
  ---headFont: "Frank Ruhl Libre", serif;
  ---paraFont: "Raleway", sans-serif;
}

html body {
  overflow-x: hidden;
}

/* ======================================== navbar ============================= */

.navbar {
  display: block;
  padding-bottom: 0;
  background: #fff9aa;
}

.navbar .container {
  display: flex;
  position: relative;
}

.logoNavbar {
  display: flex;
}

.navbar-brand {
  width: 50px;
  height: auto;
  display: flex;
  transform: translateX(-90px);
}

.logo-text {
  font-family: var(---headFont);
  color: var(---primeColor);
  padding-top: 10px;
  transform: translateY(10px);
}

.navbar-brand img {
  width: 100%;
  height: 100%;
}

.social-icon-link {
  color: #111;
  padding: 10px;
  align-items: right;
  float: right;
  list-style-type: none;
  display: flex;
  transition: 0.4s ease-in-out;
}

.socialLinks ul {
  list-style-type: none;
  display: flex;
  margin-bottom: 0;
  padding: 10px;
}

.socialLinks ul li a {
  list-style-type: none;
  text-decoration: none;
}

.social-icon-link:hover {
  background-color: #111;
  transition: 0.4s ease-in-out;
  transform: scale(1.3);
  border-radius: 3px;
  color: #fff9aa;
  text-decoration: none;
}

#navbarNav .nav-link {
  color: #111;
  font-family: var(---paraFont);
  font-size: 20px;
  font-weight: 400;
}

.navbar-collapse {
  display: flex;
  justify-content: center;
}

.navbar-collapse .nav-item {
  margin: 0 5px;
}

.navbar-collapse .nav-link {
  color: #fff;
  font-size: 1.1rem;
  font-family: var(---poppinFont);
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}

.navbar-collapse .nav-link:hover {
  background-color: var(---secondColor);
  color: var(---primeColor);
}

/* services */

#packesPrice {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#packesPrice span {
  position: relative;
  font-size: 18px;
  color: #fff;
}

.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-left: 60px;
}

.navbar-nav li.nav-item .dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 20px 20px;
  top: 100%;
  transform: translateY(50px);
  left: 0;
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 10px 10px 3px rgb(0 0 0 / 30%);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 1000;
  transition: 0.4s all;
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  border-top: 3px solid var(---primeColor);
}

.navbar-nav li.nav-item .dropdown .sub-nav-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  font-family: var(---robotFont);
  text-transform: capitalize;
}

.navbar-nav li.nav-item .dropdown .sub-nav-link:hover {
  color: var(---thirdColor);
}

.navbar-nav li.nav-item:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 1440px) {
  .navbar-brand {
    transform: translateX(-20px);
  }
}

@media (max-width: 1024px) {
  .sticky .navbar-collapse .nav-link {
    margin: 0 0px;
    color: var(---primeColor);
    font-size: 1rem;
  }
}

@media (max-width: 990px) {
  .stickyNavbar {
    background: linear-gradient(170deg, rgb(209, 224, 124), rgb(231, 232, 197));
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* Remove border from toggler */
  .navbar-toggler {
    border: 0;
  }
  .navbar-nav {
    margin-left: 0px;
  }
  .navbar-toggler {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(10px);
  }
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
  }
  .navbar-toggler-icon {
    position: relative;
    color: #fff;
  }
  .navbar-toggler-icon,
  .navbar-toggler-icon:after,
  .navbar-toggler-icon:before {
    width: 2rem;
    height: 3px;
    background-color: #111;
    transition: transform 200ms ease-in-out, opacity 200ms linear;
  }
  .navbar-toggler-icon:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
  }
  .navbar-toggler-icon:before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
  }
  .nav-open .navbar {
    transform: translateX(0);
    background-color: #111;
  }
  .nav-open .navbar-toggler-icon {
    transform: rotate(45deg);
  }
  .nav-open .navbar-toggler-icon:before {
    opacity: 0;
  }
  .nav-open .navbar-toggler-icon:after {
    transform: rotate(90deg) translate(-6px);
  }
  .navbar-collapse {
    display: flex;
    transition: 0.5s ease all;
    flex-direction: column;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    align-items: start;
  }
  .logo2 {
    width: 100px;
    display: block;
  }
  .navbar-brand {
    transform: translateX(0);
  }
  .logo-text {
    font-family: var(---headFont);
    font-size: 15px;
    color: var(---primeColor);
    transform: translateY(30px);
  }
}

/* ================================================ Home Section =================================== */

.homeSection {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(---bgGrey);
}

.homeSection .carousel-inner,
.homeSection .carousel-item {
  width: 100%;
  height: 75vh;
}

#firstSlide {
  width: 100%;
  height: 100;
  background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url("img/home.jpeg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: 115% 115%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  animation: shrink 4s infinite alternate;
}

#secondSlide {
  width: 100%;
  height: 100;
  background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url("img/home4.jpeg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: 115% 115%;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-position: center;
  animation: shrink 4s infinite alternate;
}

#thirdSlide {
  width: 100%;
  height: 100;
  background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url("img/home3.jpeg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: 115% 115%;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-position: center;
  animation: shrink 4s infinite alternate;
}

#fourthSlide {
  width: 100%;
  height: 100;
  background: linear-gradient(to right, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)),
    url("img/home2.jpeg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: 115% 115%;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-position: center;
  animation: shrink 4s infinite alternate;
}

@keyframes shrink {
  0% {
    background-size: 115% 115%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@media (max-width: 1045px) {
  #home {
    padding: 10px 0px;
    margin: 0px;
    height: 400px;
  }
  .homeContent h1 {
    font-size: 30px;
    text-align: center;
    padding: 15px 5px;
    text-align: center;
    color: #e30d0d;
    font-family: var(---headFont);
  }
  .homeContent h6 {
    font-size: 15px;
    padding: 15px 5px;
    text-align: center;
    font-family: var(---paraFont);
  }
}

.homeLine {
  background-color: #d4a42a;
  height: 25px;
  z-index: 1;
}

.homeContent {
  text-align: center;
  padding-top: 75px;
}

.homeContent h6 {
  padding-top: 25px;
  color: #e1e1e1;
  padding-left: 25px;
  font-family: var(---paraFont);
}

.homeContent h5 {
  padding-top: 10px;
  color: #e1e1e1;
  padding-left: 25px;
  font-family: var(---paraFont);
}

.homeContent h1 {
  color: #fff;
  font-family: var(---headFont);
  font-size: 90px;
  padding-top: 20px;
  padding-left: 25px;
}

.videobtn {
  display: flex;
  text-align: center;
}

@media (max-width: 500px) {
  #home {
    padding: 10px 0px;
    margin: 0px;
    height: 300px;
  }
  .homeContent {
    text-align: center;
    padding-top: 30px;
  }
  .homeContent h6 {
    padding-top: 0px;
    color: #e1e1e1;
    padding-left: 0px;
    font-family: var(---paraFont);
  }
  .homeContent h1 {
    color: #fff;
    font-family: var(---headFont);
    font-size: 45px;
    padding-top: 0px;
    padding-left: 0px;
  }
  .homeContent h5 {
    padding-top: 5px;
    color: #e1e1e1;
    padding-left: 0px;
    font-family: var(---paraFont);
  }
}

/* ======================================= what we offer ===================================== */

.weOffer {
  background-color: var(---bgGrey);
}

.weOfferHead {
  text-align: center;
  padding-top: 30px;
}

.weOfferHead h2 {
  font-family: var(---headFont);
}

.weOfferHead h5 {
  font-family: var(---paraFont);
}

.weOffer-inner {
  padding: 40px 60px;
}

.weOffer-text {
  padding: 20px;
}

.weOffer-text h4 {
  font-family: var(---headFont);
  font-size: 30px;
}

.weOffer-text h6 {
  font-family: var(---paraFont);
  font-size: 18px;
}

.weOffer-text p {
  font-family: var(---paraFont);
  font-size: 15px;
  margin-top: 20px;
}

.weOffer-text button {
  background: transparent;
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(---paraFont);
  font-weight: bold;
}

/* card  */

.weOffer-card {
  text-align: center;
  margin: 0 10px;
}

.offerCardImg {
  width: 18rem;
  height: 10rem;
}

.offerCardImg img {
  width: 100%;
  height: 100%;
}

.weOffer-card i {
  color: rgb(161, 161, 161);
}

.weOffer-card h5 {
  font-family: var(---headFont);
}

.weOffer-card h6 {
  font-family: var(---paraFont);
  color: darkgray;
}

.weOffer-card p {
  font-family: var(---paraFont);
  padding: 20px 30px;
}

.weOffer-card a {
  color: #111;
}

.weOffer-card a:hover {
  color: #d4a42a;
}

@media (max-width: 500px) {
  .weOffer-inner {
    padding: 20px 30px;
  }
  .weOffer-text {
    padding: 0px;
    margin-bottom: 10px;
  }
  .weOffer-card {
    text-align: center;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .offerCardImg {
    width: 16rem;
    height: 10rem;
  }
  .weOffer-card p {
    font-family: var(---paraFont);
    padding: 5px 10px;
  }
}

/* ===================================== Our popular menus ================================== */

.popular-inner {
  padding: 10px 100px;
}

.popular-head h2 {
  font-family: var(---headFont);
  margin-top: 20px;
}

.popular-head h6 {
  font-family: var(---paraFont);
}

.popularImg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 260px;
  margin-top: 10px;
}

.popularImg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.popularBtn {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.popular-inner button {
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
}

.popularImg h4 {
  font-family: var(---paraFont);
  transform: translate(30px, -40px);
  color: #fff;
  text-decoration: solid;
  backdrop-filter: blur(6px);
  width: fit-content;
}

@media (max-width: 500px) {
  .popular-inner {
    padding: 10px 20px;
  }
  .popularImg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 260px;
    margin-top: 10px;
    padding-bottom: 10px;
  }
}

/* ================================= Counter =================================== */

.counter {
  margin-top: 20px;
  background: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.7)),
    url("img/counter.jpg");
  background-attachment: fixed;
  background-size: 100% 100%;
  height: 300px;
}

.counter-head h2 {
  font-family: var(---headFont);
  text-align: center;
  padding-top: 25px;
  color: #fff;
}

.couter-element h2 {
  color: #fff;
  font-family: var(---paraFont);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.couter-element h5 {
  color: #fff;
  font-family: var(---paraFont);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.couter-element i {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 50px;
  color: #e30d0d;
}

.couter-element {
  margin-top: 40px;
}

@media (max-width: 500px) {
  .counter {
    margin-top: 20px;
    background: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.7)),
      url("img/counter.jpg");
    background-size: 100% 100%;
    height: 340px;
  }
  .counter-head h2 {
    font-size: 22px;
  }
  .couter-element i {
    font-size: 30px;
  }
  .couter-element h5 {
    font-size: 16px;
  }
  .couter-element {
    margin-top: 25px;
  }
}

/* ============================ our events ============================= */

.ourEvents {
  margin: 20px 60px;
}

.ourEventHead {
  text-align: center;
}

.ourEventHead h2 {
  font-family: var(---headFont);
}

.ourEventHead h5 {
  font-family: var(---paraFont);
}

.eventImg img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
}

.eventImg {
  padding-top: 20px;
  width: 100%;
  height: 340px;
}

.eventCont {
  padding-top: 30px;
}

.eventCont .eventDate {
  display: flex;
}

.eventCont .eventDate h5 {
  font-family: var(---paraFont);
}

.eventCont .eventDate i {
  font-size: 25px;
  padding-right: 10px;
  color: #e30d0d;
}

.eventCont .eventDetail h2 {
  font-family: var(---headFont);
  margin-top: 20px;
}

.eventCont .eventDetail h6 {
  font-family: var(---paraFont);
  padding: 20px 0px;
}

.eventCont .eventDetail button {
  font-family: var(---btnFont);
  padding: 8px 10px;
  background-color: #e30d0d;
  color: #fff;
  border-radius: 12px;
  border: #fff solid 5px;
}

@media (max-width: 500px) {
  .eventImg {
    padding-top: 20px;
    width: auto;
    height: 340px;
  }
}

/* =============================== Testimonal ==================================== */

.custReview {
  background: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.7)),
    url("img/testimonalBg.jpg");
  background-size: 100% 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}

.custReview .wrapper {
  height: auto;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custReview .wrapper h2 {
  font-family: var(---headFont);
  color: #fff;
  margin-top: 0;
}

.custReview .wrapper h5 {
  font-family: var(---btnFont);
  color: #fff;
  margin-bottom: 50px;
}

.wrapper .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1000px;
  margin: 0 auto;
}

.custReview .reviewCard {
  width: 380px;
  height: 250px;
  border-radius: 15px;
  margin: 7px;
  padding: 20px 30px;
  position: relative;
  color: #111;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.custReview .reviewCard img {
  height: 90px;
  width: 90px;
  border: 2px solid #e30d0d;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 10px;
}

.custReview .reviewCard h4 {
  font-family: var(---btnFont);
  margin-bottom: 0;
  color: #fff;
}

.custReview .reviewCard p {
  font-family: var(---paraFont);
  margin-top: 37px;
  color: #fff;
}

.custReview .reviewCard i {
  font-size: 60px;
  position: absolute;
  bottom: 20px;
  right: 25px;
  color: #869297;
}

.custReview .reviewCard:hover {
  transform: scale(1.2);
  color: #333;
  background-color: #111;
  z-index: 10000;
}

.addReviewBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.addReviewBtn a {
  text-decoration: none;
}

.addReviewBtn button {
  font-family: var(---btnFont);
  padding: 8px 10px;
  background-color: #e30d0d;
  color: #fff;
  border-radius: 12px;
  border: none;
}

@media (max-width: 768px) {
  .custReview {
    padding: 0 15px;
  }
  .wrapper .cards {
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
  }
  .custReview .reviewCard {
    margin: 40px 0;
    width: 101%;
  }
  .custReview .reviewCard:hover {
    transform: scale(1.1);
    color: #333;
    background-color: #111;
    z-index: 10000;
  }
  .custReview .wrapper h2 {
    font-family: var(---headFont);
    color: #fff;
    margin-top: 30px;
  }
}

/* =============================== footer ===================================== */

#section-footer {
  background-color: rgb(235, 235, 235);
  padding: 30px 0px;
}

#section-footer h4 {
  margin-top: 30px;
  font-size: 14px;
}

#section-footer a {
  color: blue;
}

.socail-link {
  align-items: right;
}

#section-footer .socail-link {
  list-style-type: none;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#section-footer .socail-link li {
  padding: 0 10px;
}

.socail-link a i {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  color: #e30d0d;
  font-size: 20px;
  line-height: 35px;
}

.socail-link a:hover i {
  color: #fff;
}

/* =========================================== About.php ================================================
=================================================================================================== */

.aboutHome {
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url(img/aboutHome.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.aboutHome .aboutHomeText {
  color: #fff;
  text-align: center;
}

.aboutHomeText h2 {
  font-size: 50px;
  font-family: var(---headFont);
}

.aboutHomeText h5 {
  font-family: var(---paraFont);
  font-size: 25px;
}

/* ====================================== our story ======================================== */

.ourStory {
  background-color: rgb(235, 235, 235);
  padding: 40px 0;
}

.ourStory-inner {
  padding: 0 50px;
}

.ourStory-inner .storyImg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.ourStory .img-col p {
  font-family: var(---paraFont);
  margin-bottom: 4px;
  font-weight: bold;
}

.ourStory .img-col h6 {
  font-family: var(---headFont);
  font-size: 21px;
  font-weight: bold;
}

.ourStory-inner .storyImg {
  width: 100%;
  height: 100%;
  max-width: 60%;
  max-height: 475px;
}

.ourStory .ourStoryText h2 {
  font-family: var(---headFont);
}

.ourStory .ourStoryText h5 {
  font-family: var(---paraFont);
}

.ourStory .ourStoryText p {
  /* font-family: var(---paraFont); */
  padding: 20px 150px 10px 10px;
  font-size: 18px;
}

.ourStory .ourStoryText p a {
  color: #111;
}

.ourStory .ourStoryText button {
  background: #e30d0d;
  font-family: var(---btnFont);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: 20px;
  border: #fff solid 3px;
}

@media (max-width: 1024px) {
  .ourStory-inner .storyImg {
    width: 80%;
    padding: 20px;
  }
  .storyTab {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ourStory .ourStoryText p {
    padding: 25px;
  }
}

@media (max-width: 500px) {
  .ourStory-inner .storyImg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 340px;
    padding-bottom: 10px;
  }
  .ourStory .ourStoryText p {
    padding: 5px 0;
  }
  .ourStory .ourStoryText button {
    padding: 2px;
  }
}

/* ========================================= Our Value ========================= */

.ourValues {
  margin: 60px 80px 10px 80px;
}

.ourValues h2 {
  font-family: var(---headFont);
  padding-top: 10px;
}

.ourValues h5 {
  font-family: var(---paraFont);
  color: #ff5252;
}

.ourValues p {
  font-family: var(---paraFont);
  margin-top: 15px;
  padding-right: 65px;
  font-size: 18px;
}

.ourValues .ourValueImg {
  width: 100%;
  height: 25rem;
}

.ourValues .ourValueImg img {
  width: 100%;
  height: 100%;
}

.ourValues .brandImg {
  width: 100%;
  height: 24rem;
}

.ourValues .brandImg img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

@media (max-width: 1024px) {
  .ourValues-inner .imgTab {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ourValues p {
    margin-top: 5px;
    padding-right: 0px;
  }
  .imgTab {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 500px) {
  .ourValues {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brandText {
    text-align: center;
  }
  .ourValueText {
    text-align: center;
  }
  .ourValues .brandImg {
    margin-left: 15px;
  }
  .ourValues .ourValueImg {
    margin-left: 15px;
  }
  .ourValues p {
    font-family: var(---paraFont);
    margin-top: 10px;
    padding: 10px;
  }
}

/* ========================== other testimonal ================================ */

.otherTestimonal {
  padding: 20px 120px;
}

.otherTestimonal .testimonalText h2 {
  font-family: var(---headFont);
  text-align: right;
}

.otherTestimonal .passionImg {
  width: 100%;
  height: 100%;
}

.otherTestimonal .passionImg img {
  width: 100%;
  height: 100%;
}

.otherTestimonal .testimonalText h5 {
  font-family: var(---paraFont);
}

.otherTestBox {
  padding: 25px;
  border: #111 2px solid;
}

.quote i {
  background-color: #ff5252;
  color: #fff;
  font-size: 25px;
  padding: 15px 17px;
  border-radius: 50%;
  transform: translate(-15px, 25px);
}

@media (max-width: 500px) {
  .otherTestimonal {
    padding: 10px;
  }
  .otherTestimonal .testimonalText {
    padding: 0px 10px;
    text-align: center;
  }
  .otherTestBox {
    margin: 0 10px;
  }
  .otherTestimonal .quote i {
    transform: translate(0px, 20px);
  }
}

/* ============================== Quote button ============================ */

.quoteBtn {
  text-align: center;
  margin-bottom: 20px;
}

.quoteBtn button {
  background-color: #ff5252;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(---paraFont);
  font-weight: bold;
  border: #fff solid 2px;
}

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

/* ===================================== service.php ===============================================
=====================================================================================================*/

/* =================================== service home ================================ */

.serviceHome {
  background: linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.4)),
    url(img/serviceBg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.serviceHome .serviceHomeText {
  color: #fff;
  text-align: center;
}

.serviceHomeText h2 {
  font-family: var(---headFont);
  font-size: 50px;
}

.serviceHomeText h5 {
  font-family: var(---paraFont);
  font-size: 25px;
}

/* ====================================== Corperate events ============================= */

.corpEvent {
  margin: 40px 150px;
}

.corpEvent .corpEventText h2 {
  font-family: var(---headFont);
  font-size: 45px;
}

.corpEvent .corpEventText h5 {
  font-family: var(---paraFont);
  color: #ff5252;
}

.corpEvent .corpEventText p {
  font-family: var(---paraFont);
  padding: 20px 100px 10px 0;
}

.corpEventText button {
  background-color: #ff5252;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(---paraFont);
  font-weight: bold;
  border: #fff solid 2px;
}

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

.corpEventImg img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.corpEventImg {
  width: 38rem;
  height: 28rem;
}

@media (max-width: 500px) {
  .corpEvent {
    margin: 0;
  }
  .corpEventText {
    margin-left: 20px;
  }
  .corpEventImg {
    width: 100%;
    height: 55vh;
    padding: 0 10px;
  }
  .corpEvent .corpEventText p {
    font-family: var(---paraFont);
    padding: 20px 50px 10px 0;
  }
}

/* ==================================== private catering ============================= */

.privateCatering {
  margin: 20px 150px;
}

.privateCatText {
  margin-left: 20px;
}

.privateCatering .privateCatText h2 {
  font-family: var(---headFont);
  font-size: 45px;
}

.privateCatering .privateCatText h5 {
  font-family: var(---paraFont);
  color: #ff5252;
}

.privateCatering .privateCatText p {
  font-family: var(---paraFont);
  padding: 20px 100px 10px 0;
}

.privateCatText button {
  background-color: #ff5252;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(---paraFont);
  font-weight: bold;
  border: #fff solid 2px;
}

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

.privatCatImg img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.privatCatImg {
  width: 100%;
  height: 28rem;
}

@media (max-width: 500px) {
  .privateCatering {
    margin: 0;
  }
  .privatCatImg {
    width: 100%;
    height: 55vh;
    padding: 0 10px;
  }
  .privateCatering .privateCatText h2 {
    font-family: var(---headFont);
    font-size: 45px;
  }
  .privateCatering .privateCatText h5 {
    font-family: var(---paraFont);
    color: #ff5252;
  }
  .privateCatering .privateCatText p {
    font-family: var(---paraFont);
    padding: 20px 50px 0px 0;
  }
  .privateCatText button {
    background-color: #ff5252;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(---paraFont);
    font-weight: bold;
    border: #fff solid 2px;
  }
}

/* ====================================== satisfy ===================================== */

.satisfy {
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url(img/satisfy.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 340px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.satisfy .satisfyText {
  color: #fff;
  text-align: center;
}

.satisfyText h2 {
  font-family: var(---headFont);
  font-size: 40px;
}

.satisfyText h5 {
  font-family: var(---paraFont);
}

@media (max-width: 500px) {
  .satisfyText h2 {
    font-family: var(---headFont);
    font-size: 30px;
    padding: 0 10px;
  }
}

/* ========================================= Our amazing =============================== */

.amazing {
  padding: 20px 70px;
}

.amazingText {
  padding: 20px;
}

.amazingText h2 {
  font-family: var(---headFont);
  font-size: 40px;
}

.amazingText h5 {
  font-family: var(---paraFont);
}

.amazingBox {
  padding: 10px;
}

.amazingIcon i {
  color: #ff5252;
  font-size: 20px;
  padding: 20px;
  border: #ff5252 2px solid;
  border-radius: 50%;
}

.amazingBox h4 {
  font-family: var(---headFont);
  padding-top: 15px;
}

.amazingBox p {
  font-family: var(---paraFont);
  padding: 5px;
}

.amazingBox a {
  color: #111;
  font-family: var(---paraFont);
}

.amazingBox a:hover {
  color: #e30d0d;
}

@media (max-width: 500px) {
  .amazing {
    padding: 10px 20px;
  }
}

/* ================================== contact.php ====================================
======================================================================================  */

.contactHome {
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url(img/contactHome.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.contactHome .contactHomeText {
  color: #fff;
  text-align: center;
}

.contactHome .contactHomeText h2 {
  font-size: 50px;
  font-family: var(---headFont);
}

.contactHome .contactHomeText h5 {
  font-family: var(---paraFont);
  font-size: 25px;
}

/* ================================= visit us ============================== */

.visitUs {
  background-color: #fff;
  padding: 10px 200px;
  margin-top: 50px;
}

.visitHead h2 {
  padding: 10px 0px;
  font-family: var(---headFont);
  font-weight: 500;
  font-size: 40px;
}

.InquiryIcon i {
  margin-top: 5px;
  color: #ff5252;
  font-size: 32px;
}

/* mail icon */

.visitInquiry {
  display: flex;
  margin-bottom: 15px;
}

/* inquiry box */

.visitContactElement {
  display: flex;
  margin-bottom: 20px;
}

.visitInquiryText {
  margin-left: 12px;
}

.visitInquiryText p {
  font-family: var(---paraFont);
  font-size: 16px;
}

.visitInquiryText .contactno {
  font-family: var(---headFont);
}

.visitInquiryText h6 {
  font-size: 20px;
}

/* social icons */

.contactSocial {
  display: flex;
}

.contactSocial .socialElemet {
  padding: 5px;
}

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

.contactSocial .socialElemet i {
  background-color: #ff5252;
  padding: 8px 10px;
  border-radius: 50%;
}

@media (max-width: 500px) {
  .visitUs {
    background-color: #fff;
    padding: 10px 20px;
  }
  .contactSocial {
    margin-top: 0px;
    margin-left: 0px;
    display: flex;
  }
}

/* ============= form =============== */

.contactFromHead h2 {
  font-family: var(---headFont);
  text-align: center;
}

.visitUs .col-md-5 {
  margin: 0;
  padding: 0;
}

.contactForm {
  padding: 0px 20px 40px 20px;
}

.contactForm h5 {
  margin-top: 20px;
}

.contactForm .inputGroup span {
  color: #e30d0d;
}

.formBtn {
  background-color: #e30d0d;
  color: #fff;
  padding: 8px 10px;
  border-radius: 12px;
  border: #fff solid 5px;
}

/* ===================================== gallery.php ==============================
============================================================================================ */

.galleryHead h2 {
  font-family: var(---headFont);
  text-align: center;
}

.galleryHead h5 {
  font-family: var(---paraFont);
  text-align: center;
}

.img-wrapper {
  position: relative;
  margin: 10px 0;
}

.img-wrapper img {
  width: 100%;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#overlay img {
  margin: 0;
  width: 820px;
  height: 720px;
  object-fit: contain;
  padding: 5%;
  @media screen and (min-width: 768px) {
    width: 70%;
  }
  @media screen and (min-width: 1200px) {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}

#nextButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #nextButton {
    color: #fff;
    font-size: 3em;
    transition: opacity 0.8s;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}

#prevButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #prevButton {
    color: #fff;
    font-size: 3em;
    transition: opacity 0.8s;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}

#exitButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #exitButton {
    color: #fff;
    font-size: em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 500px) {
  #overlay img {
    width: 690px;
    height: 430px;
  }
}

/* =================================== menu.php =======================================
===================================================================================== */

.menuCategory {
  padding: 10px 50px;
  position: relative;
}

.menuCategory .menucategoryList {
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  -o-box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px,
    inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
  padding: 15px;
  height: 70vh;
  overflow-y: scroll;
}

.menucategoryList .mainCourseHead {
  font-family: var(---headFont);
  font-weight: bold;
  text-align: center;
}

.menuCategory .menucategoryList h2 {
  font-family: var(---headFont);
}

.menuCategory .menucategoryList ul {
  list-style-type: none;
}

.menuCategory .menucategoryList li {
  font-family: var(---paraFont);
  padding: 7px 5px;
  text-transform: uppercase;
}

.menuCategory .menucategoryList li:hover {
  cursor: pointer;
}

.menuCategory .categoryDetail {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.9),
      rgb(255, 255, 255, 0.7)
    ),
    url(img/menuBg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 70vh;
  padding: 20px;
  overflow-y: scroll;
  text-transform: uppercase;
}

.menuCategory .categoryDetail h2 {
  font-family: var(---headFont);
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.menuCategory #menuListItem .col {
  font-family: var(---paraFont);
  font-weight: bold;
  padding: 8px 0px;
}

.menuCategory #menuListItem .col span {
  margin-left: 80px;
}

.menuCategory .categoryDetailInner ul li {
  font-family: var(---paraFont);
  padding: 5px;
  font-weight: bold;
}

.categoryDetail .submitMenuItems {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 15px;
  right: 280px;
}

.categoryDetail .submitMenuItems button {
  padding: 8px 10px;
  background-color: #d4a42a;
  color: #fff;
  border: #d4a42a solid 1px;
  border-radius: 8px;
}

@media (max-width: 500px) {
  .menuCategory {
    padding: 10px;
  }
  .menuCategory .menucategoryList {
    padding: 8px;
    height: 40vh;
    overflow-y: scroll;
    margin-bottom: 20px;
  }
  .menuCategory #menuListItem .col span {
    margin-left: 30px;
  }
  .categoryDetail .submitMenuItems {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
}

/* ============================= final menu form =================================== */

.finalMenu {
  padding: 20px 40px;
  display: none;
  /* max-width: 1000px; */
}

.finalMenu h2 {
  font-family: var(---headFont);
  text-align: center;
}

.finalMenu .finalMenuItems label {
  font-family: var(---headFont);
  margin-top: 15px;
}

.finalMenu .finalMenuItems .finalMenuBtn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.finalMenu .finalMenuItems button {
  margin-top: 20px;
  background-color: #d4a42a !important;
  border: 1px solid #fff !important;
}

@media (max-width: 500px) {
  .finalMenu {
    padding: 20px;
  }
}

/* ========================================== Modal ====================================== */

.EnquiryButton {
  z-index: 1;
}

.modal-header {
  background-color: #fff9aa;
  color: #111;
}

.btn-close {
  color: #fff;
}

.btn,
.btn:focus,
.btn-close,
.btn-close:focus,
.form-control:focus,
.form-control {
  box-shadow: none;
}

.modal-body {
  background-color: var(---secondColor);
}

.modal-footer {
  background-color: #fff9aa;
}

.close {
  background-color: #444444;
  color: var(---secondColor);
}

.btn {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.submit {
  background-color: #d4a42a;
  color: rgb(10 9 6);
}

.submitTargetk {
  color: #ffffff;
}

/* ================================== Enquiry Button ============================= */

.EnquiryButton {
  position: fixed;
  right: -60px;
  top: 50%;
  transform: rotate(270deg);
}

.EnquiryButton span {
  background-color: #fff9aa;
  color: #111;
  padding: 5px 15px;
  font-size: 1.2rem;
  position: relative;
  z-index: 100000000000;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.EnquiryButton span i {
  font-size: 1.4rem;
  animation: angleCross 0.8s ease-in-out infinite forwards;
  color: var(---secondColor);
}

@keyframes angleCross {
  0% {
    opacity: 1;
    transform: translateX(-5px);
  }
  50% {
    opacity: 0;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(-5px);
  }
}

/* ======================================== data.html =====================================
========================================================================================== */

.bookWrapper {
  width: 100%;
  height: 660px;
}

.bookBg {
  position: relative;
  background-color: #000;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.pageBg {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #999;
  width: 96%;
  height: 640px;
  border-radius: 0px;
}

.pageWrapper {
  position: absolute;
  width: 50%;
  height: 100%;
  float: left;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pageFace {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

.front {
  background: linear-gradient(
    to right,
    #d9d9d9 0%,
    #f9f9f9 3%,
    #ffffff 8%,
    #ffffff 100%
  );
}

.back {
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 92%,
    #f9f9f9 97%,
    #d9d9d9 100%
  );
}

.pageFoldRight {
  position: absolute;
  width: 0px;
  height: 0px;
  top: 0;
  right: 0;
  border-left-width: 1px;
  border-left-color: #dddddd;
  border-left-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #dddddd;
  border-bottom-style: solid;
  box-shadow: -5px 5px 10px #dddddd;
}

.pageFoldLeft {
  position: absolute;
  width: 0px;
  height: 0px;
  top: 0;
  left: 0;
  border-right-width: 1px;
  border-right-color: #dddddd;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #dddddd;
  border-bottom-style: solid;
  box-shadow: 5px 5px 10px #dddddd;
}

.menuImg {
  width: 100%;
  height: 640px;
}

.menuImg img {
  width: 100%;
  height: 100%;
}

@media (max-width: 500px) {
  .pageBg {
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #999;
    width: 96%;
    height: 340px;
    border-radius: 0px;
  }
  .bookWrapper {
    width: 100%;
    height: 360px;
  }
  .menuImg {
    width: 100%;
    height: 340px;
  }
}

/* ===================================== menu list ==================================== */

.menuList {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/drinks.jpeg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList1 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/street1.jpeg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList2 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/paneer1.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList3 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/paratha.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList4 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/panner.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList5 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/street1.jpeg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList6 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/bbq.jpeg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList7 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/italian.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList8 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.9),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/contiental.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuList9 {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.8),
      rgb(255, 255, 255, 0.9)
    ),
    url(img/mexican.png);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 10px 20px;
  margin: 20px 0px;
}

.menuListInner h3 {
  font-family: var(---headFont);
  text-align: center;
}

.menuListInner .menuListPage h4 {
  font-family: var(---headFont);
}

.menuListInner ul {
  list-style-type: none;
}

.menuListInner ul li {
  font-family: var(---paraFont);
}

.menuListInner .menuListPage {
  border-right: #111 solid 1px;
}

@media (max-width: 500px) {
  .menuListInner .menuListPage {
    border-right: none;
  }
  .menuListInner .menuListPage h4 {
    font-family: var(---headFont);
    margin-top: 15px;
  }
}

/* =============================== call icon ========================= */

.floattingButton .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #d4a42a;
  color: azure;
  border-radius: 50px;
  text-align: center;
  z-index: 1000;
  animation: bot-to-top 2s ease-out;
}

.floattingButton ul {
  position: fixed;
  right: 40px;
  padding-bottom: 20px;
  bottom: 80px;
  z-index: 100;
}

.floattingButton ul li {
  list-style: none;
  margin-bottom: 10px;
}

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

a:hover {
  color: #fff;
}

.floattingButton ul li:first-child {
  background-color: rgb(11, 224, 22);
  border-radius: 50px;
  text-align: center;
  width: 60px;
  height: 60px;
  display: block;
}

.floattingButton ul li:last-child {
  background-color: rgb(4, 99, 50);
  border-radius: 50px;
  text-align: center;
  width: 60px;
  height: 60px;
  display: block;
}

.floattingButton ul:hover {
  visibility: visible !important;
  opacity: 1 !important;
}

.floattingButton .my-float {
  font-size: 24px;
  margin-top: 18px;
}

.floattingButton a#menu-share + ul {
  visibility: hidden;
}

.floattingButton a#menu-share:hover + ul {
  visibility: visible;
  animation: scale-in 0.5s;
}

.floattingButton a#menu-share i {
  animation: rotate-in 0.5s;
}

.floattingButton a#menu-share:hover > i {
  animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
  0% {
    bottom: -40px;
  }
  50% {
    bottom: 40px;
  }
}

@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotate-in {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-out {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* =========================== logo-fix.php ============================== */

.logo-fix {
  position: fixed;
  width: 80px;
  height: 85px;
  bottom: 25px;
  left: 40px;
  color: azure;
  border-radius: 50px;
  text-align: center;
  z-index: 1000;
}

.logo-fix img {
  width: 100%;
  height: 100%;
}

#checkListData {
  width: 100%;
  height: 400px;
  overflow-y: scroll;
}

.spinner-border {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  vertical-align: -0.125em;
  border: 0.3em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
  animation: .75s linear infinite spinner-border;
  margin: auto;
  margin: auto;
}