@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: auto;
}

a {
  font-size: 15px;
  color: #585858;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

p {
  font-size: 14px;
  color: #585858;
  font-weight: #585858;
}

ul li,
ol li {
  list-style: none;
}

.responsive {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.align-item-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hide {
  display: none;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.topheader {
  width: 100%;
  background-color: #222222;
  z-index: 9;
  padding: 8px 0;
}

.topheader .email a {
  font-size: 15px;
  color: #fff;
}

.topheader .email a:not(:last-child) {
  border-right: 1px dotted #fff;
  padding-right: 15px;
}

.topheader .email a:not(:first-child) {
  padding-left: 15px;
}

@media screen and (max-width: 640px) {
  .topheader {
    display: none;
  }
}

header {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

header.active {
  position: fixed;
  top: 0;
}

@media screen and (max-width: 940px) {
  header.active .menulist {
    top: 61px;
  }
}

@media screen and (max-width: 640px) {
  header.active .menulist {
    top: 56px;
  }
}

.mobilemenu {
  position: absolute;
  display: block;
  content: "";
  top: 20px;
  left: 45px;
}

.mobilemenu .menubar {
  content: "";
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: block;
  text-align: center;
  cursor: pointer;
  right: 0;
  z-index: 999;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

.mobilemenu .menubar span {
  position: relative;
  cursor: pointer;
  background-color: #e7272d;
  border-radius: 50px;
  width: 30px;
  height: 3px;
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(1) {
  top: 0;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(2) {
  top: 6px;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(3) {
  top: 13px;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubarclick span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
  background-color: #e7272d;
}

.mobilemenu .menubarclick span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: white;
}

.mobilemenu .menubarclick span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  background-color: #e7272d;
}

@media screen and (min-width: 941px) {
  .mobilemenu {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .mobilemenu {
    left: 20px;
  }
}

.logo {
  width: 15%;
  background-color: transparent;
}

@media screen and (max-width: 940px) {
  .logo {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    width: 70%;
  }
}

.logo a {
  width: 155px;
  display: block;
  padding: 5px 0;
}

@media screen and (max-width: 940px) {
  .logo a {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .logo a {
    width: 155px;
    margin-left: 55px;
  }
}

.item-menu {
  width: 75%;
  background-color: #fff;
}

@media screen and (max-width: 940px) {
  .item-menu {
    width: 0;
  }
}

.social-menu {
  width: 10%;
  background-color: #e7272d;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 940px) {
  .social-menu {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .social-menu {
    width: 30%;
  }
}

.social-menu a {
  padding: 15px 5px;
  font-size: 15px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .social-menu a {
    padding: 17px 5px;
    font-size: 14px;
  }
}

.menulist {
  background-color: transparent;
  text-align: right;
}

.menulist li {
  display: inline-block;
  text-align: right;
  padding: 10px 10px;
}

@media screen and (max-width: 1280px) {
  .menulist li {
    padding: 10px 6px;
    margin-right: 0;
  }
}

@media screen and (max-width: 940px) {
  .menulist li {
    display: block;
    text-align: left;
  }
}

.menulist li a {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  border-bottom: 2px solid transparent;
}

.menulist li a:hover {
  color: #f54b50;
  border-bottom: 2px solid #f54b50;
}

@media screen and (max-width: 940px) {
  .menulist {
    width: 100%;
    position: fixed;
    text-align: center;
    left: 0;
    top: 101px;
    z-index: 99;
    display: none;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    padding: 0 25px;
    background-color: #fafafa;
  }
}

@media screen and (max-width: 640px) {
  .menulist {
    top: 56px;
  }
}

/*end*/
/*banner*/
.banner {
  width: 100%;
  overflow: hidden;
}

#banner.owl-carousel .owl-nav.disabled + .owl-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "";
  right: 70px;
  bottom: 10px;
  z-index: 111;
  border-radius: 50px;
  background-color: #0202024a;
  margin: 0;
  padding: 3px 0;
}

#banner.owl-carousel .owl-dots .owl-dot.active span,
#banner.owl-carousel .owl-dots .owl-dot:hover span {
  background: #e7272d;
}

#banner.owl-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  background: #fff;
  display: block;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/*end*/
/*about catering*/
.aboutcatering {
  padding: 80px;
}

@media screen and (max-width: 580px) {
  .aboutcatering {
    padding: 30px 10px;
  }
}

.his-cat {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.leftcat-img {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .leftcat-img {
    width: 100%;
  }
}

.rightcat-con {
  width: 50%;
}

.rightcat-con .about-2-page-right {
  background-color: #e7272d;
  color: #ffffff;
  left: -100px;
  padding: 56px 50px 56px 120px;
  position: relative;
  text-align: left;
  top: 74px;
}

.rightcat-con .about-2-page-right .handled li {
  list-style: disc;
}

.rightcat-con .about-2-page-right .handled li p {
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .rightcat-con .about-2-page-right {
    left: 0;
    top: 0;
  }
}

.rightcat-con .about-2-page-right h4 {
  font-size: 25px;
  font-family: "Pinyon Script", cursive;
}

.rightcat-con .about-2-page-right h2 {
  color: #fff;
  font-size: 30px;
  padding-bottom: 10px;
  font-weight: 500;
}

.rightcat-con .about-2-page-right p {
  font-size: 15px;
  color: #fff;
}

.rightcat-con .about-2-page-right .top-pattern::before {
  content: url("../img/about-pattern-left-top.png");
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 5;
}

.rightcat-con .about-2-page-right .top-pattern::after {
  content: url("../img/about-pattern-right-top.png");
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}

.rightcat-con .about-2-page-right .bottom-pattern::before {
  content: url("../img/about-pattern-left-bottom.png");
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 5;
}

.rightcat-con .about-2-page-right .bottom-pattern::after {
  content: url("../img/about-pattern-right-bottom.png");
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5;
}

@media screen and (max-width: 1024px) {
  .rightcat-con {
    width: 100%;
  }
}

/*end*/
/*catering-serv*/
.catering-serv {
  margin: 50px 0;
  padding: 50px 0;
  background: url(../img/main_back_bl-1200x701.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

.title-ca {
  text-align: center;
}

.title-ca h4 {
  font-size: 25px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
}

.title-ca h2 {
  color: #232323;
  font-size: 30px;
  padding-bottom: 15px;
  font-weight: 600;
}

.title-ca p {
  font-size: 15px;
  color: #4d4d4d;
}

.service-list {
  padding-top: 30px;
}

.service-list li {
  width: 25%;
  height: 300px;
}

@media screen and (max-width: 1024px) {
  .service-list li {
    height: auto;
  }
}

@media screen and (max-width: 900px) {
  .service-list li {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .service-list li {
    width: 100%;
  }
}

.service-list .titl-ser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(38, 38, 38, 0.1);
          box-shadow: 0 0 40px rgba(38, 38, 38, 0.1);
}

.service-list .titl-ser h4 {
  font-size: 24px;
  color: #4d4d4d;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
}

.service-list .titl-ser a {
  font-size: 15px;
  color: #e7272d;
  text-align: center;
  font-weight: 500;
  border-bottom: 2px solid #e7272d;
}

/*end*/
/*delicious*/
.delicious {
  margin: 50px 0;
  background: url(../img/three-img-parallax.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0;
  background-attachment: scroll;
  text-align: center;
}

.delicious h2 {
  font-size: 44px;
  color: #fff;
  text-align: center;
}

.delicious h4 {
  font-size: 40px;
  color: #fafafa;
  font-family: "Pinyon Script", cursive;
}

/*end*/
/*ourmenu*/
.ourmenu {
  margin: 50px 0;
}

.menu-img {
  width: 30%;
  position: relative;
}

@media screen and (max-width: 900px) {
  .menu-img {
    width: 100%;
    height: 250px;
  }
}

.menu-img .menu-name {
  position: absolute;
  display: block;
  content: "";
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 30px;
  padding: 20px;
  background-color: rgba(10, 10, 10, 0.493);
  border: 2px solid #fff;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .menu-img .menu-name {
    top: 10%;
  }
}

.menu-img .menu-name h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.menu-img .menu-name p {
  font-size: 15px;
  color: #fff;
  padding-bottom: 15px;
}

.menu-img .menu-name a {
  padding: 10px 20px;
  background-color: #e7272d;
  color: #fff;
  font-size: 14px;
}

.menu-title {
  width: 70%;
  padding-left: 25px;
}

@media screen and (max-width: 900px) {
  .menu-title {
    width: 100%;
  }
}

.menu-title h3 {
  font-size: 44px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
  padding-bottom: 5px;
}

.menu-title p {
  font-size: 15px;
  color: #585858;
}

.in-food {
  padding-top: 5px;
}

.in-food .list {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .in-food .list {
    width: 100%;
  }
}

.in-food .list:not(:first-child) {
  margin-left: 15px;
  padding-right: 10px;
}

@media screen and (max-width: 480px) {
  .in-food .list:not(:first-child) {
    margin-left: 0;
    padding-right: 0;
  }
}

.in-food .list li {
  padding-bottom: 10px;
  margin-top: 10px;
}

.in-food .list li:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}

.in-food .list li h4 {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 500;
  padding-bottom: 3px;
}

.in-food .list li p {
  font-size: 14px;
  color: #585858;
}

/*end*/
/*Gallery*/
.cate-gallery {
  margin: 80px 0;
  position: relative;
}

.gallery-text {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  background-color: #e7272d;
  padding: 150px 25px;
  width: 22%;
  text-align: right;
  z-index: 1;
  height: 100%;
}

@media screen and (max-width: 1280px) {
  .gallery-text {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 50px 25px;
  }
}

.gallery-text h4 {
  font-size: 30px;
  color: #fff;
  font-family: "Pinyon Script", cursive;
}

.gallery-text h2 {
  font-size: 30px;
  color: #fff;
  padding-bottom: 15px;
}

.gallery-text p {
  font-size: 15px;
  color: #fff;
  padding-bottom: 15px;
}

.gallery-text a {
  background-color: #fff;
  font-size: 15px;
  color: #e7272d;
  padding: 10px 20px;
  font-weight: 500;
}

.gallery-img {
  width: 80%;
}

@media screen and (max-width: 1280px) {
  .gallery-img {
    width: 100%;
  }
}

.gallery-img .gallery-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.gallery-img .gallery-list li {
  width: calc(33.3% - 10px);
  margin: 20px 5px;
}

@media screen and (max-width: 1280px) {
  .gallery-img .gallery-list li {
    width: calc(25% - 10px);
  }
}

@media screen and (max-width: 900px) {
  .gallery-img .gallery-list li {
    width: calc(33.3% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .gallery-img .gallery-list li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 480px) {
  .gallery-img .gallery-list li {
    width: 100%;
  }
}

.gallery-img .gallery-list li a {
  height: 100%;
}

/*end*/
/*testimonial*/
.testimonial {
  margin: 50px 0;
  text-align: center;
}

.testimonial .rev {
  font-size: 30px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
}

.testimonial h2 {
  font-size: 30px;
  color: #232323;
  padding-bottom: 15px;
}

.testimonial p {
  font-size: 15px;
  color: #585858;
  padding-bottom: 15px;
}

.list-testimonial {
  padding-top: 20px;
}

.list-testimonial li {
  width: calc(100% - 25px);
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  padding: 20px 25px;
}

.list-testimonial li:not(:first-child) {
  margin-left: 25px;
}

.list-testimonial li p {
  font-size: 15px;
  color: #585858;
  padding-bottom: 15px;
}

.list-testimonial li h3 {
  font-size: 20px;
  color: #e7272d;
  font-weight: 600;
}

.list-testimonial li h4 {
  font-size: 14px;
  color: #585858;
  font-weight: 400;
}

/*end*/
/*About us*/
.aboutus {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.abouttext {
  width: 40%;
  padding: 35px;
  background: url(../img/bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .abouttext {
    width: 100%;
  }
}

.abouttext h4 {
  font-size: 35px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
}

.abouttext h2 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
  padding-bottom: 15px;
}

.abouttext .baby-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  padding-bottom: 10px;
}

.abouttext p {
  font-size: 15px;
  color: #585858;
  padding-bottom: 10px;
}

.aboutimg {
  width: 60%;
  height: 550px;
  padding: 40px 40px 40px 0;
  background-color: #e7272d;
}

@media screen and (max-width: 767px) {
  .aboutimg {
    display: none;
  }
}

.whatwe {
  margin: 50px 0;
}

.whatwe h2 {
  font-size: 30px;
  color: #232323;
  padding-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .whatwe h2 {
    text-align: left;
  }
}

.whatwe .range {
  font-size: 15px;
  color: #585858;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .whatwe .range {
    text-align: left;
  }
}

.whatlist {
  margin-top: 15px;
  padding: 25px 15px;
  text-align: left;
  background: url(../img/main-slider/SliderMedium_5A.jpg) no-repeat;
  background-position: top right;
  background-size: cover;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .whatlist {
    background: none;
  }
}

.whatlist li {
  width: 250px;
  padding-top: 20px;
}

.whatlist li p {
  font-size: 15px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .whatlist li p {
    color: #585858;
  }
}

.workteam {
  margin: 50px 0;
  background-color: #fafafa;
  padding: 35px 0;
}

.worktitle h2 {
  font-size: 30px;
  color: #232323;
  text-align: center;
  font-weight: 500;
  padding-bottom: 15px;
}

.worktitle p {
  font-size: 15px;
  color: #585858;
  text-align: center;
}

.experien {
  padding-top: 35px;
}

.experien li {
  width: calc(33.3% - 25px);
  background-color: #fff;
  border: 1px solid #e9e9e9;
  padding: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
  .experien li {
    width: calc(50% - 25px);
  }
}

@media screen and (max-width: 580px) {
  .experien li {
    width: 100%;
  }
}

.experien li .icon-ex {
  width: 60px;
}

.experien li .icon-ex a {
  width: 40px;
  display: block;
}

.experien li .dedic {
  width: calc(100% - 60px);
}

.experien li .dedic h3 {
  font-size: 20px;
  font-weight: 500;
  color: #e7272d;
  padding-bottom: 10px;
}

.experien li .dedic p {
  font-size: 15px;
  color: #585858;
}

/*end*/
/*catering*/
.catering {
  width: 100%;
  display: block;
  background: url(../img/banner.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 65px 0;
}

.catering h2 {
  font-size: 35px;
  text-align: left;
  color: #fff;
}

.catering h4 {
  font-size: 30px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
}

.services {
  margin: 50px 0;
}

.services .ser-text {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .services .ser-text {
    width: 100%;
  }
}

.services .ser-text:not(:last-child) {
  padding-right: 55px;
  padding-top: 35px;
}

@media screen and (max-width: 767px) {
  .services .ser-text:not(:last-child) {
    padding-right: 0;
    padding-top: 0;
  }
}

.services .ser-text .img-ser {
  padding: 10px 15px;
  width: 450px;
  display: block;
  background-color: #e7272d;
}

@media screen and (max-width: 767px) {
  .services .ser-text .img-ser {
    width: 100%;
    margin-top: 25px;
  }
}

.services .ser-text h2 {
  font-size: 35px;
  color: #4d4d4d;
  line-height: 1.4;
  padding-bottom: 10px;
}

.services .ser-text p {
  font-size: 15px;
  color: #585858;
  padding-bottom: 10px;
}

.services .ser-text h4 {
  font-size: 20px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
  padding-bottom: 15px;
}

.services .ser-text .ser-btn {
  margin-top: 25px;
  padding: 10px 15px;
  background-color: #e7272d;
  color: #fff;
  font-size: 15px;
}

.cater-list {
  margin: 50px 0;
  padding: 30px 0;
  background-color: #fafafa;
}

.cater-list h4 {
  font-size: 20px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
  text-align: center;
}

.cater-list h2 {
  font-size: 35px;
  color: #4d4d4d;
  line-height: 1.4;
  padding-bottom: 10px;
  text-align: center;
}

.event-list {
  margin-top: 25px;
}

.event-list li {
  width: calc(33.3% - 30px);
  background-color: #fff;
  border: 1px solid #ebebeb;
  -webkit-box-shadow: 0 0 40px rgba(38, 38, 38, 0.1);
          box-shadow: 0 0 40px rgba(38, 38, 38, 0.1);
  margin-bottom: 35px;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .event-list li {
    width: calc(50% - 30px);
  }
}

@media screen and (max-width: 767px) {
  .event-list li {
    width: 100%;
  }
}

.event-list li .ev-imgs {
  width: 100%;
  height: 200px;
  -o-object-position: center;
     object-position: center;
}

.event-list li .eve-texts {
  background-color: #fafafa;
  padding: 10px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-list li .eve-texts h3 {
  font-size: 20px;
  color: #232323;
  padding-bottom: 5px;
  font-weight: 500;
}

.event-list li .eve-texts h3::after {
  width: 35px;
  height: 2px;
  background-color: #e7272d;
  display: block;
  content: "";
}

.event-list li .eve-texts p {
  font-size: 14px;
  color: #585858;
}

.event-list li .eve-texts a {
  font-size: 15px;
  color: #fff;
  background-color: #e7272d;
  font-weight: 500;
  padding: 5px 8px;
}

/*end*/
/*gallery*/
.starli-port {
  padding-top: 30px;
}

.starli-port li {
  width: calc(25% - 25px);
  margin-bottom: 25px;
  height: 280px;
}

.starli-port li a {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .starli-port li {
    width: calc(50% - 25px);
  }
}

@media screen and (max-width: 580px) {
  .starli-port li {
    width: 100%;
  }
}

.starli-port1 li {
  width: calc(50% - 25px);
  margin-bottom: 25px;
  height: 250px;
}

.starli-port1 li a {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 580px) {
  .starli-port1 li {
    width: 100%;
  }
}

.starli-port2 li {
  width: calc(33.3% - 25px);
  margin-bottom: 25px;
  height: 450px;
}

.starli-port2 li a {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 580px) {
  .starli-port2 li {
    width: 100%;
  }
}

/*end*/
/*Our menu*/
.menus {
  width: 100%;
  display: block;
  background: url(../img/Indian-Catering-Chicago.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 95px 0;
}

.menus h2 {
  font-size: 35px;
  text-align: left;
  color: #fff;
}

.menus h4 {
  font-size: 30px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
}

.list-menu {
  padding: 50px 0;
  background: url(../img/blog_header_bg_a.png) no-repeat;
  background-position: top right;
  background-size: contain;
}

.find-menu {
  padding-top: 25px;
}

.find-menu > li {
  width: calc(33.3% - 11px);
}

@media screen and (max-width: 900px) {
  .find-menu > li {
    width: calc(50% - 11px);
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .find-menu > li {
    width: 100%;
  }
}

.find-menu > li:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid #f1f1f1;
}

@media screen and (max-width: 767px) {
  .find-menu > li:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
}

.find-menu > li h3 {
  font-size: 22px;
  color: #232323;
  padding-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.find-menu > li > h4 {
  font-size: 22px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
  line-height: 1;
}

.st-img {
  padding-bottom: 20px;
  width: 100%;
  height: 250px;
}

.fin-soup li {
  padding-bottom: 10px;
}

.fin-soup li p {
  font-size: 14px;
  color: #585858;
}

.name-b {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 5px;
}

.name-b .sub-title-me h4 {
  font-size: 18px;
  color: #e7272d;
  padding-right: 5px;
  font-weight: 400;
}

.name-b .border {
  -webkit-box-flex: 100;
      -ms-flex: 100 0 auto;
          flex: 100 0 auto;
  margin-bottom: 8px;
  border-bottom: 1px dashed #4d4d4d;
}

.menucard-bg {
  background: #e7272d url(../img/blog_header_bg_a.png) no-repeat;
  padding: 55px 0;
  background-position: left top;
  background-size: cover;
}

.menucard-bg h2 {
  font-size: 46px;
  color: #fff;
  text-align: left;
}

.menucard {
  margin: 30px 0;
}

.menucard .card-title {
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 15px;
  text-align: left;
  font-weight: 500;
}

.menucard .bgimgmor h4 {
  font-size: 30px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
}

.menucard .tiffinbg {
  padding: 90px 45px;
  background: url(../img/morningtiffinbg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.menucard .lunchbg {
  padding: 90px 45px;
  background: url(../img/lunchbg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.menucard .dinnerbg {
  padding: 90px 45px;
  background: url(../img/dinnerbg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.menulists {
  padding: 25px 0;
  border: 1px solid #e7e7e7;
  background-color: #fafafa;
  margin-bottom: 25px;
  margin-top: 25px;
}

.menulists li {
  position: relative;
  width: 50%;
  padding: 50px;
  padding: 15px 20px;
  z-index: 1;
}

.menulists li:nth-child(odd) {
  border-right: 1px dashed #d8d8d8;
}

@media screen and (max-width: 900px) {
  .menulists li:nth-child(odd) {
    border-right: 0 dashed #d8d8d8;
  }
}

.menulists li:not(:last-child) {
  border-bottom: 1px dashed #d8d8d8;
}

@media screen and (max-width: 900px) {
  .menulists li:not(:last-child) {
    border-bottom: 0 dashed #d8d8d8;
  }
}

@media screen and (max-width: 900px) {
  .menulists li {
    width: 100%;
  }
}

.cardname {
  width: 70%;
}

.cardname h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #232323;
  border-bottom: 1px dashed #e7272d;
}

.cardname p {
  font-size: 15px;
  color: #e7272d;
  position: relative;
  padding-left: 15px;
}

.cardname p::before {
  width: 5px;
  height: 5px;
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 9px;
  background-color: #e7272d;
  border-radius: 50px;
}

.card-pric {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.card-pric .circle-bg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.card-pric .circle-bg p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

/*end*/
/*contact us*/
.contactbg {
  width: 100%;
  padding: 180px 0;
  background: url(../img/slide2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

.contact {
  position: relative;
}

.leftcont {
  width: 50%;
  padding: 50px 25px 50px 25px;
  background-color: #fafafa;
}

@media screen and (max-width: 767px) {
  .leftcont {
    width: 100%;
  }
}

.leftcont > p {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 300;
}

.leftcont > h2 {
  font-size: 30px;
  font-weight: 600;
  color: #585858;
  padding-bottom: 15px;
}

.leftcont > a {
  padding-top: 25px;
  width: 100%;
  height: 250px;
  -o-object-position: bottom;
     object-position: bottom;
}

.leftcont .ble-con {
  padding-top: 25px;
}

.leftcont .ble-con .phone {
  width: 33.3%;
  padding: 10px;
}

@media screen and (max-width: 1024px) {
  .leftcont .ble-con .phone {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .leftcont .ble-con .phone {
    width: 33.3%;
  }
}

@media screen and (max-width: 480px) {
  .leftcont .ble-con .phone {
    width: 100%;
  }
}

.leftcont .ble-con .phone h3 {
  font-size: 18px;
  color: #e7272d;
  font-weight: 500;
  padding-bottom: 5px;
}

.leftcont .ble-con .phone h4 {
  font-size: 16px;
  color: #232323;
  font-weight: 500;
  padding-bottom: 5px;
}

.leftcont .ble-con .phone a {
  font-size: 15px;
  color: #585858;
  padding-top: 3px;
}

.rightimg {
  width: 50%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  .rightimg {
    width: 100%;
  }
}

.rightimg .contbox {
  padding: 30px;
  background-color: #fff;
  width: 100%;
}

.rightimg .contbox .req-email {
  font-size: 22px;
  color: #e7272d;
  text-align: left;
  font-weight: 500;
  padding-bottom: 15px;
}

.rightimg .contbox .blen-conta li {
  width: 100%;
}

.rightimg .contbox .blen-conta li:not(:first-child) {
  margin-top: 10px;
}

.rightimg .contbox .blen-conta li p {
  font-size: 15px;
  color: #444;
  padding-bottom: 5px;
}

.rightimg .contbox .blen-conta li label input {
  width: 100%;
  padding: 0 15px;
  border: 1px solid #ddd;
  outline: 0 none;
  height: 40px;
  border-radius: 3px;
}

.rightimg .contbox .blen-conta li label textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.rightimg .contbox .blen-conta li label select {
  width: 100%;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.rightimg .contbox .blen-conta li .sel-serc {
  width: 100%;
}

.rightimg .contbox .blen-conta li .sel-serc label #test {
  width: 100%;
  height: 40px;
}

.rightimg .contbox .blen-conta li .sel-serc label option {
  height: 30px;
  line-height: 30px;
}

.rightimg .contbox .blen-conta li .sel-serc label .editOption {
  width: 94%;
  height: 40px;
  position: relative;
  top: -39px;
}

.rightimg .contbox .blen-conta #error {
  font-size: 14px;
  background-color: #f54b50;
  padding: 0px;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 5px;
  border-radius: 3px;
}

.rightimg .contbox .subbtn {
  text-align: center;
  margin: 25px auto 0;
  padding: 8px 18px;
  outline: none;
  border-radius: 3px;
  border: 0;
  display: block;
  background-color: #e7272d;
  color: #fff;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.rightimg .contbox .subbtn:hover {
  background-color: #eb572a;
}

.map {
  width: 100%;
  padding: 0;
  margin: 0;
}

/*end*/
/*Brahmin Marriage*/
.bm {
  width: 100%;
  display: block;
  background: url(../img/bm.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 65px 0;
}

.bm h2 {
  font-size: 35px;
  text-align: left;
  color: #fff;
}

.brahmin {
  margin: 30px 0;
}

.brahmin .brah-list {
  margin-bottom: 30px;
}

.brahmin .brah-list .brah-text {
  width: calc(70% - 25px);
}

@media screen and (max-width: 767px) {
  .brahmin .brah-list .brah-text {
    width: 100%;
  }
}

.brahmin .brah-list .brah-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: #e7272d;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 25px;
  border-bottom: 0.5px dotted #e7272d;
}

.brahmin .brah-list .brah-text h4 {
  font-size: 16px;
  color: #585858;
  font-weight: 500;
  padding-bottom: 10px;
}

.brahmin .brah-list .brah-text p {
  font-size: 15px;
  color: #8f8f8f;
  position: relative;
  padding-left: 15px;
  font-weight: 600;
}

.brahmin .brah-list .brah-text p::before {
  width: 5px;
  height: 5px;
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 9px;
  background-color: #e7272d;
  border-radius: 50px;
}

.brahmin .brah-list .brah-text .lis-titl {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.brahmin .brah-list .brah-text ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.brahmin .brah-list .brah-text ul li {
  padding: 5px 0;
  width: 350px;
  margin-right: 15px;
}

.brahmin .brah-img {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .brahmin .brah-img {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .brahmin .brah-img {
    width: 100%;
  }
}

.brahmin .brah-img .img-brah {
  padding: 10px 10px;
  width: 100%;
  height: 420px;
  display: block;
  background-color: #e7272d;
}

@media screen and (max-width: 767px) {
  .brahmin .brah-img .img-brah {
    width: 100%;
    margin-top: 25px;
  }
}

.brbg {
  background-color: #fafafa;
  padding: 25px 0;
}

/*end*/
/*VAS*/
.valuad {
  padding: 90px 0;
  width: 100%;
  background: url(../img/vas.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
}

.valuad h4 {
  font-size: 30px;
  color: #e7272d;
  font-family: "Pinyon Script", cursive;
}

.valuad h2 {
  font-size: 30px;
  text-align: left;
  color: #fff;
}

.vas .a-z {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .vas .a-z {
    width: 100%;
  }
}

.vas .a-z .list-vas {
  margin-top: 55px;
}

.vas .a-z .list-vas li {
  width: calc(33.3% - 25px);
  text-align: center;
  margin-bottom: 30px;
  -webkit-box-shadow: 2px 10px 10px -10px #7575751f;
          box-shadow: 2px 10px 10px -10px #7575751f;
  background-color: #fff;
}

@media screen and (max-width: 580px) {
  .vas .a-z .list-vas li {
    width: calc(50% - 25px);
  }
}

@media screen and (max-width: 480px) {
  .vas .a-z .list-vas li {
    width: 100%;
  }
}

.vas .a-z .list-vas li .val-img {
  height: 180px;
}

.vas .a-z .list-vas li .valu-text {
  background-color: #e7272d;
  text-align: center;
}

.vas .a-z .list-vas li .valu-text p {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
}

.vas .a-zimg {
  width: 20%;
}

@media screen and (max-width: 767px) {
  .vas .a-zimg {
    display: none;
  }
}

/*end*/
/*fotter*/
.footer {
  background-color: #333;
  padding-top: 50px;
}

.foo-site {
  -webkit-box-shadow: 2px 20px 20px -10px #5a5a5a1f;
          box-shadow: 2px 20px 20px -10px #5a5a5a1f;
  padding: 25px;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.foo-site > li {
  width: 250px;
}

@media screen and (max-width: 767px) {
  .foo-site > li {
    margin-bottom: 25px;
  }
}

.fomrfc {
  padding-bottom: 8px;
}

.sitemap h4 {
  position: relative;
  content: "";
  display: block;
  color: #fff;
  font-size: 22px;
}

.sitemap p {
  padding-top: 8px;
}

.sitemap h4::after {
  position: absolute;
  display: block;
  content: "";
  background-color: #e7272d;
  width: 50px;
  height: 2px;
  border-radius: 50px;
  color: #333;
  font-size: 22px;
  left: 0;
}

.sociallink {
  padding-top: 15px;
}

.sociallink li {
  display: inline-block;
  margin-right: 10px;
}

.sociallink li .buttonBlue {
  font-size: 20px;
  text-align: center;
  color: #333;
  border-radius: 50px;
  padding: 0;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  margin-top: 0;
}

.sociallink li .animatedButton span {
  position: relative;
  pointer-events: none;
  color: #fafafa;
  padding: 7px;
  font-size: 20px;
  text-align: center;
}

.sitemap img {
  width: 235px;
}

.sitemap h5 {
  color: #e7272d;
  font-size: 16px;
  font-weight: 400;
}

.Aboutcom li {
  padding-top: 10px;
  color: #fafafa;
}

.Aboutcom li a {
  color: #fafafa;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.Aboutcom li a:hover {
  padding-left: 5px;
}

.sitemap p {
  color: #fafafa;
}

.call-foo {
  padding-top: 5px;
  color: #fafafa;
}

.call-foo span {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.copyrights {
  width: 100%;
  background-color: #4d4d4d;
}

.copyrights p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/*end*/
/*# sourceMappingURL=style.css.map */