* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --primary: #a68b54;
  --light: #fff;
  --dark: #000;
  --p: #838383;
  --btn: #a68b54bd;
}

body {
  background-color: var(--light) !important;
  font-family: "Noto Rashi Hebrew", serif;
  color: var(--dark);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-family: "Noto Rashi Hebrew", serif;
  color: var(--p);
}

h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  font-family: "Noto Rashi Hebrew", serif;
  margin-bottom: 15px;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  font-family: "Noto Rashi Hebrew", serif;
  margin-bottom: 15px;
}

h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-family: "Noto Rashi Hebrew", serif;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 15px;
  /* border-radius: 15px; */
  color: #fff;
  background-color: #000;
}

/* .button-container {
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
} */

.btn-7 {
  border: none;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  color: var(--light);
  background-color: var(--btn);
  border-radius: 5px;
}

.btn-7:hover {
  color: var(--dark);
}

.btn-7:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 1s;
}

.btn-7:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 1s;
}

.btn-7:hover:before {
  left: 0;
}

.btn-7:hover:after {
  right: 0;
}

.btn-7 span:before {
  content: "";
  position: absolute;
  top: -100%;
  right: 0%;
  width: 2px;
  height: 100%;
  background-color: black;
  transition: all 1s;
}

.btn-7:hover span:before {
  top: 0;
}

.btn-7 span:after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0%;
  width: 2px;
  height: 100%;
  background-color: black;
  transition: all 1s;
}

.btn-7:hover span:after {
  bottom: 0;
}




/* header start here */
/* header {
  background-color: var(--light);
  padding: 0 5%;
  box-shadow: 0px 12px 39px -11px rgba(0,0,0,0.39);
  border-bottom: 1px solid var(--dark) ;
}

header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.logo {
  flex: 2;
  display: flex;
  align-items: center;
}

.logo a img {
    height: 35px;
    width: auto;
}

.bartoggle,
#menubrop {
  display: none;
}

.NavMenu {
  flex: 10;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: end;
}

.NavMenu li {
  display: inline-block;
}

.NavMenu li input {
  display: none;
}

.NavMenu li a {
  display: block;
  padding: 10px 30px;
  font-size: 17px;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--dark);
  position: relative;
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  position: relative;
}

.NavMenu li a label::after {
  content: " ▼ ";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: var(--primary);
}

.NavMenu>li>a label::after {
  right: 20px;
  top: 15px;
}

.NavMenu li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  min-width: 160px;
  border-bottom: 2px solid var(--primary);
  top: 100%;
  box-shadow: 0 3px 5px rgb(0 0 0/20%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  padding: 0;
  z-index: 2;
}

.NavMenu li ul li {
  position: relative;
}

.NavMenu li ul li a {
  color: var(--primary);
  padding: 8px 10px;
  display: block;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
} */

/* HEADER */

/* HEADER */

#mainHeader {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  transition: .3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#mainHeader.sticky {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* NAV */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 35px;
}

/* MENU */

.NavMenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.NavMenu li {
  position: relative;
  list-style: none;
}


.NavMenu li a {
  display: block;
  padding: 16px 22px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* DROPDOWN */

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  transition: .35s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #c59d5f;
}

/* DROPDOWN ICON */

.dropdown-icon {
  margin-left: 6px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: .3s;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(-135deg);
}

.dropdown.active .dropdown-icon {
  transform: rotate(-135deg);
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* RESPONSIVE */


/* header end here */


/* banner start here  */
a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.banner {
  margin: 0 auto;
}

/* .banner .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.25rem;
} */

.swiper-button-next::after,
.swiper-button-prev::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 1rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.75;
  border-radius: 50%;
  color: var(--white-100);
  background: var(--black-300);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--primary);
}

/* about-section start here */
.about-section {
  padding: 50px 0;
}

.about-section img {
  border-radius: 25px;
}

/* menu-services start here */
.menu-services {
  padding: 50px 0;
  overflow: hidden;
}

.menu-services .card {
  border-radius: 20px;
  overflow: hidden;
}

/* wedding-differ start here */
.wedding-differ {
  padding: 50px 0;
}

.wedding-differ img {
  border-radius: 50%;
  margin-bottom: 15px;
}


/* footer start here */
.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: var(--primary);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon {
  margin-bottom: 20px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  padding: 0;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--primary);
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--primary);
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  padding: 0;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--primary);
  padding: 13px 20px;
  border: 1px solid var(--primary);
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: var(--primary);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: var(--primary);
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* about-us-page-new start here */
.about-us-page-new {
  padding: 50px 0;
}

/* what-we-offer start here */
.what-we-offer {
  padding: 50px 0;
}

.what-we-offer img {
  border-radius: 50%;
  margin-bottom: 15px;
}

/* event-celebration start here */
.event-celebration {
  padding: 50px 0;
}

.event-celebration-row {
  row-gap: 10px;
}

.event-celebration .total-img-text-div {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--primary);
}

.event-celebration .total-img-text-div img {
  width: 150px;
  border-radius: 10px;
}

.event-celebration .total-img-text-div h5,
.event-celebration .total-img-text-div p {
  color: var(--light);
}


/* how-we-work-area start here */

.how-we-work-area {
  overflow: hidden;
}

.ptb-50 {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-title {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
  margin-top: -6px;
}

.how-we-work-area .section-title {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: 0;
  max-width: 555px;
}

.section-title .sub-title {
  display: block;
  color: #a53d35;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 18px;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.section-title h2 span {
  color: #a53d35;
  display: inline-block;
}

.how-we-work-area .section-title p {
  margin-left: 0;
  max-width: 100%;
  font-size: 15.5px;
  margin-top: 12px;
}

p:last-child {
  margin-bottom: 0;
}

.how-we-work-process {
  position: relative;
  z-index: 1;
}

.how-we-work-process::before {
  content: '';
  position: absolute;
  left: -275px;
  top: -177px;
  width: 1526px;
  height: 602px;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
  z-index: -1;
  background-image: url('https://templates.envytheme.com/zovio/default/assets/img/arrow.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.how-we-work-process .process-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.how-we-work-process .process-list .single-process:nth-child(1) {
  margin-top: 180px;
}

.how-we-work-process .process-list .single-process {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.how-we-work-process .process-list .single-process .content.bg-1 {
  background-image: url('../images/Banner/banner1.jpg');
}

.how-we-work-process .process-list .single-process .content {
  position: relative;
  z-index: 1;
  padding-top: 105px;
  padding-right: 25px;
  padding-left: 25px;
  padding-bottom: 25px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.how-we-work-process .process-list .single-process .content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  background-color: #fcecea;
}

.how-we-work-process .process-list .single-process .content .number {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #dddddd;
  width: 80px;
  height: 80px;
  line-height: 60px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.how-we-work-process .process-list .single-process .content h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.how-we-work-process .process-list .single-process .content P {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #23221d;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
}

.how-we-work-process .process-list .single-process .content::after {
  opacity: 0;
  visibility: hidden;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: #a53d35;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.how-we-work-process .process-list .single-process .content.bg-2 {
  background-image: url('../images/Banner/banner2.jpg');
}

.how-we-work-process .process-list .single-process .content.bg-3 {
  background-image: url('../images/Banner/banner3.jpg');
}

.how-we-work-process .process-list .single-process .content.bg-4 {
  background-image: url('../images/Banner/banner4.jpg');
}

.how-we-work-process .process-list .single-process .content:hover::before {
  opacity: 0;
  visibility: hidden;
}

.how-we-work-process .process-list .single-process .content:hover::after {
  visibility: visible;
  opacity: 0.54;
}

.how-we-work-process .process-list .single-process:nth-child(2) {
  margin-top: 120px;
}

.how-we-work-process .process-list .single-process .content:hover h3 {
  color: #ffffff;
}

.how-we-work-process .process-list .single-process .content:hover p {
  color: #ffffff;
}

.how-we-work-process .process-list .single-process:nth-child(3) {
  margin-top: 60px;
}

.how-we-work-process .process-list .single-process {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .how-we-work-process .process-list .single-process:nth-child(1),
  .how-we-work-process .process-list .single-process:nth-child(2),
  .how-we-work-process .process-list .single-process:nth-child(3),
  .how-we-work-process .process-list .single-process:nth-child(4) {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-we-work-process .process-list .single-process {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .how-we-work-process .process-list .single-process:nth-child(1),
  .how-we-work-process .process-list .single-process:nth-child(2),
  .how-we-work-process .process-list .single-process:nth-child(3),
  .how-we-work-process .process-list .single-process:nth-child(4) {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .how-we-work-process .process-list .single-process {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .how-we-work-process .process-list .single-process:nth-child(1),
  .how-we-work-process .process-list .single-process:nth-child(2),
  .how-we-work-process .process-list .single-process:nth-child(3),
  .how-we-work-process .process-list .single-process:nth-child(4) {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-work-process .process-list .single-process {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-work-process .process-list .single-process .content .number {
    width: 60px;
    height: 60px;
    line-height: 46px;
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-work-process .process-list .single-process .content h3 {
    font-size: 18px;
  }
}


/* testimonial start here */
em {
  color: var(--primary);
}

/* Controls */
.carousel-control-next {
  margin: 0 3em;
}

i.fa-arrow-right,
i.fa-arrow-left {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px;
  border-radius: 100%;
  transition: background .6s ease;
}

i.fa-arrow-right:hover,
i.fa-arrow-left:hover {
  background: var(--primary);
  color: white;
}

/* Indicators */
.carousel-indicators {
  justify-content: flex-start;
  transform: translate(-40px, 50px);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid var(--primary);
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--primary);
}

/* Control buttons */
.control-btn {
  position: absolute;
  top: 8px;
  right: 10em;
}

.carousel-control-next,
.carousel-control-prev {
  top: 1em;
  left: 3em;
}

.testimonial-text {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
}

.wow {
  position: relative;
  grid-column: span 2;
}

.carousel-landmark {
  grid-column: span 3;
}

@media screen and (max-width: 576px) {
  .testimonial-text {
    margin-top: 50px;
    row-gap: 50px;

  }

  .wow {
    grid-column: span 5;
  }

  .carousel-landmark {
    grid-column: span 5;
  }
}

/* contact page start here */
.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.contact-page-sec {
  padding: 50px 0;
}

.contact-info-icon {
  margin-bottom: 15px;
}

.contact-info-item {
  background: var(--dark);
  padding: 30px 0px;
}

.contact-page-sec .contact-page-form h2 {
  color: var(--dark);
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}

.contact-page-form.contact-form input {
  margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
  height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
  background: var(--dark);
  width: 150px;
  border-color: var(--dark);
}

.contact-info-icon i {
  font-size: 48px;
  color: var(--primary);
}

.contact-info-text p {
  margin-bottom: 0px;
}

.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-text span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}

.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
  background: var(--primary) none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
  background: var(--dark);
  transition: all 0.4s ease-in-out 0s;
  border-color: var(--dark)
}

.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}

.contact-page-form form {
  padding: 20px 15px 0;
}

/* service-section-main start here */
.service-section-main {
  padding: 50px 0;
}

.service-section-main img {
  width: 100%;
  border-radius: 50%;
}

/*section gallery-img*/
.gallery-img {
  padding: 50px 0;
}

.gallery-img__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.gallery-img__item {
  position: relative;
  /*flex-basis: 33.33333%;*/
  width: 320px;
  height: 320px;
  margin: 7px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(110, 123, 140, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(110, 123, 140, 0.3);
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  cursor: pointer;
}

.gallery-img__item:nth-child(1) {
  flex-basis: 100%;
}

.gallery-img__item:nth-child(even) {
  flex-grow: 10;
}

.gallery-img__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-style {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* menu-main-sec start here */
.menu-main-sec {
  padding: 50px 0;
}

.menu-main-sec .sgp-img {
  max-width: 400px;
  width: 100%;
  display: table;
  margin: 0 auto;
  border-radius: 50%;
}