@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.py-7 {
  padding: 7rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);

}

.lead {
  opacity: 0.8;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}

.py-7 {
  padding: 7rem 0;
}

.flex_space {
  display: flex;
  justify-content: space-between;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

:root {

  --primary-color: #021832;
  --secondary-color: #a3a190;
  --bg-color: #f4f4f4;
  --bg-white: #fff;
  --bg-black: #000;
  --primary-font: 'Poppins', sans-serif;
  --secondary-font: 'Oswald', sans-serif;
  --primary-text: #021832;
  --secondary-text: #a3a190;
  --text-white: #fff;
  --text-black: #151515;
  --text-gray: #e4e4e4;
  --gold-crayola: hsl(38, 61%, 73%);
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);
  --radius-24: 24px;
  --radius-circle: 50%;
  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}

body {
  font-family: var(--primary-font);
  background-color: var(--bg-white);
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: .375rem;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

section {
  padding: 2.111rem 0;
}

.btn {
  position: relative;
  color: hsl(38, 61%, 73%);
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid hsl(38, 61%, 73%);
  padding: 12px 35px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: hsl(38, 61%, 73%);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: hsl(38, 61%, 73%);
  color: black;
}

.btn-secondary::before {
  background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
  color: white;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

h1 {
  font-size: 3.75rem;
  line-height: 4.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

h3 {

  line-height: 2.875rem;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary-text);
  font-family: var(--secondary-font);
}

h3 span {
  color: var(--secondary-text);
}

h5 {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-text);
  margin-bottom: .9375rem;
  font-weight: 500;
  font-family: var(--secondary-font);

}

h6 {
  font-size: .875rem;
  color: var(--primary-text);
  margin-bottom: .9375rem;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--secondary-font);
}

p {
  font-size: 1rem;
  color: var(--text-black);
  line-height: 1.625rem;
}

.section-title:after {
  content: "";
  background-image: url('../images/title-icon.webp');
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  margin-top: -0.9375rem;
  height: .9375rem;
}

.header_wrapper .navbar {
  padding: .9975rem 0;
  background-color: #111B0D;
  -webkit-box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
  box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
  -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
  transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
}

.header_wrapper .navbar-toggler {
  border: 0;
  color: white;
  line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
  box-shadow: none;
}

.header_wrapper .nav-item {
  margin: 0 .925rem;

}

.header_wrapper .nav-item .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  display: inline-block;

}

.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
  color: hsl(38, 61%, 73%);
}

.navbar.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, .7);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.hover-underline {
  position: relative;
  max-width: max-content;

}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid hsl(38, 61%, 73%);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

@keyframes fadeInDown {
  0% {
    top: -30%;
  }

  50% {
    top: -15%;
  }

  100% {
    top: 0;
  }
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.banner_wrapper {
  height: 75vh;
}

.banner_wrapper .swiper {
  width: 100%;
  height: 100%;
}

.banner_wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner_wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  z-index: 0;
}

.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  background-color: var(--secondary-color);
  border: .0625rem solid var(--bg-white);
}

.banner_wrapper .swiper .slide-caption {
  height: 100%;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_wrapper .swiper .slide-caption p {
  max-width: 37.5rem;
  margin: 0 auto;
  color: var(--text-white);
}

.why-choose-section {
  padding: 7rem 0;
}

.why-choose-section .img-wrap {
  position: relative;
}

.why-choose-section .img-wrap:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1;
}

.why-choose-section .img-wrap img {
  border-radius: 20px;
}

.feature {
  margin-bottom: 30px;
}

.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.feature .icon:before {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  background: rgba(59, 93, 80, 0.2);
  border-radius: 50%;
  right: -8px;
  bottom: 0;
}

.feature h3 {
  font-size: 14px;
  color: #2f2f2f;
}

.feature p {
  font-size: 14px;
  line-height: 22px;
  color: #6a6a6a;
}


.we-help-section {
  padding: 7rem 0;
}

.we-help-section .imgs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr);
  grid-template-columns: repeat(27, 1fr);
  position: relative;
}

.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1;
}

.we-help-section .imgs-grid .grid {
  position: relative;
}

.we-help-section .imgs-grid .grid img {
  border-radius: 20px;
  max-width: 100%;
}

.we-help-section .imgs-grid .grid.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27;
}

.we-help-section .imgs-grid .grid.grid-2 {
  -ms-grid-column: 19;
  -ms-grid-column-span: 27;
  grid-column: 19 / span 27;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  padding-left: 20px;
}

.we-help-section .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: 20px;
}

.custom-list {
  width: 100%;
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #3b5d50;
  position: absolute;
  left: 0;
  top: 8px;
}

.imageroom {
  border-radius: 20px;
}

.testimonial {
  background: linear-gradient(rgba(15, 23, 43, .7), rgba(0, 0, 0, .0)), url("../photo/Photo (13).JPG");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 20px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: white;
  border-radius: 2px;
  font-size: 18px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: white;
  background: black;
}

.about_wrapper {}


.counter {
  background-image: url('../images/image00027.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.125rem;
  position: relative;
}

#decoration-accomodation .row .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#decoration-accomodation .row .content h2 {
  font-size: 3em;
  font-weight: 800;

}


#decoration-accomodation .row .card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2em;

}

#decoration-accomodation .row .card-container .card {


  border: none;
  width: 100%;
  height: 100%;



}

#decoration-accomodation .row .card-container .card .card-body {
  padding: 0;
}

#decoration-accomodation .row .card-container .card .card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;

}

#decoration-accomodation .row .card-container .card .card-footer {
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  text-align: center;
  border: none;
}

.counter::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-black);
  opacity: 0.5;
  z-index: 1;
}

.counter h1,
.counter p {
  position: relative;
  z-index: 3;
  color: var(--text-white)
}

.team_wrapper .card {
  position: relative;
  overflow: hidden;
}

.team_wrapper .team-info {
  background-color: var(--secondary-color);
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 1.25rem;
  margin-bottom: -4.6875rem;
  transition: all 0.3s ease-in-out;
}

.team_wrapper .card:hover .team-info {
  margin-bottom: 0;
}

.team_wrapper .team-info h5,
.team_wrapper .team-info p {
  color: var(--text-white);
}

.team_wrapper .team-info .social-network {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.25rem;
  margin: 1.25rem -1.25rem -1.25rem;
  background-color: var(--primary-color);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team_wrapper .team-info .social-network li a {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  display: block;
  border-radius: 50%;
  font-size: .9375rem;
  color: var(--text-white);
  border: .0625rem solid var(--bg-white)
}
.price_wrapper .card {
  box-shadow: 0 .125rem .25rem rgb(34 30 31 / 40%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.price_wrapper .card:hover {
  background-color: var(--secondary-color);
}

.price_wrapper .card:hover h3,
.price_wrapper .card:hover h5,
.price_wrapper .card:hover p {
  color: var(--text-white);
}

.price_wrapper .card:hover .main-btn {
  color: var(--text-white);
  border-color: var(--bg-white)
}
.blog-content {

  box-shadow: 0 .125rem .25rem rgb(34 30 31 / 40%);
}

.footer_wrapper {
  background: #2b310e;
  color: #b6b7b9;
  padding: 5% 0 5% 0;
}

.footer_wrapper h5 {
  color: hsl(38, 61%, 73%);
  margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
  margin-bottom: .5rem;
  list-style: none;
}

.footer_wrapper .contact-info li a {
  color: white;
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
  color: white;
  font-size: 14px;
  padding-left: 1.5rem;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

}

.footer_wrapper .link-widget li a:hover {
  margin-left: .625rem;
  color: hsl(38, 61%, 73%);
}

.footer_wrapper .social-network a {
  width: 2.1875rem;
  height: 2.1875rem;
  margin: .5rem;
  line-height: 2rem;
  font-size: .875rem;
  display: inline-block;
  border: .125rem solid hsl(38, 61%, 73%);
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
  background-color: white;
  border-color: var(--secondary-color);
  color: var(--text-white);
  box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
  transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
  background-color: white;
  padding: 1rem 0 .3125rem;
  text-align: center;
}


.footer_wrapper .copyright-section a {
  color: var(--secondary-text);
}

@media (max-width: 1199px) {

  .navbar-expand-lg .navbar-nav {
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    font-size: .875rem;
  }

  .main-btn {
    font-size: .875rem;
  }

  .booking-area {
    padding: 3rem .625rem;
  }

  .booking-area .main-btn {
    padding-left: .3125rem !important;
    padding-right: .3125rem !important;
  }
  .service-item-wrap .tab-content img {
    width: 100%;
  }

  .service-menu-area ul li a {
    margin-bottom: .8125rem;
    overflow: hidden;
  }

  .service-menu-area ul li:nth-child(1) {
    margin-left: -4.4375rem;
  }

  .service-menu-area ul li:nth-child(2) {
    margin-left: -6.9375rem;
  }

  .service-menu-area ul li:nth-child(3) {
    margin-left: -9.375rem;
  }

  .service-menu-area ul li:nth-child(4) {
    margin-left: -12.8125rem;
  }

  .service-menu-area ul li a h5 {
    margin-bottom: .375rem;
  }
}

@media (max-width:991px) {

  section {
    padding: 1.875rem 0;
  }
  .header-scrolled {
    height: auto;
  }

  .header_wrapper .menu-navbar-nav {
    text-align: center;
    background-color: var(--bg-dark-blue);
    padding-bottom: .9375rem;
  }

  .header_wrapper .nav-item .nav-link {
    margin-top: .9375rem;
  }

  .banner_wrapper {
    height: 25.625rem;
  }

  .service-menu-area {
    padding: 1.5rem 0.5rem;
  }

  .service-menu-area ul li {
    margin-left: unset !important;
  }


}

@media (max-width: 767px) {
  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.service, .event) .container {
    max-width: 820px;
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }


  /* custom css */
  h1 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.75rem;
    line-height: 2.1875rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  p {
    font-size: .8125rem;
    line-height: 1.5rem;

    text-align: center;
  }

  .text-start {
    text-align: left;
  }

  .blog-content {
    margin: 0;
  }

  .footer_wrapper>div {
    padding: 0 1.875rem;
  }

  .imageroom {
    display: none;
  }

  .we-help-section {
    padding: 1rem 0;
    text-align: center;
  }

  .why-choose-section {
    padding: 1rem 0;
    text-align: center;
  }

  .btn {
    position: relative;

    font-size: .8125rem;

    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-5);
    max-width: max-content;
    border: 2px solid hsl(38, 61%, 73%);
    padding: 12px 35px;
    overflow: hidden;
    z-index: 1;
  }
}

.hero-wrap1 {
  width: 100%;
  height: 45vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.p-5 {
  padding: 7rem !important;
}

.carousel-icon i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.carousel-item i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.t-card {
  padding: 1.8125rem 1.125rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 1.25rem;
  color: #fff;
  height: auto;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 1.5625rem solid transparent;
  border-right: 1.5625rem solid transparent;
  border-top: 1.25rem solid rgba(0, 0, 0, 0.5);
}


.showcase {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;


}

.showcase:before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/image00037.jpg');
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.showcase h1 {
  padding: 1rem;
  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}

.showcase1 {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;


}
.showcase1:before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/image00023.jpg');
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.showcase1 h1 {

  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}

.showcase1 p {
  padding: 1rem;
  font-size: 1.4rem;
  color: #f3f3f3;
  margin-top: 0.5rem;
}

.showcase h1 {
  padding: 1rem;
  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}
.showcase6 {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;


}
.showcase6:before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/image00079.jpg');
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.showcase6 h1 {

  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}
.showcase6 p {
  padding: 1rem;
  font-size: 1.4rem;
  color: #f3f3f3;
  margin-top: 0.5rem;
}
.showcase9 {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;


}
.showcase9:before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../photo/Photo (11).JPG');
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.showcase9 h1 {

  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}

.showcase9 p {
  padding: 1rem;
  font-size: 1.4rem;
  color: #f3f3f3;
  margin-top: 0.5rem;
}

.showcase h1 {

  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}

.s-color {
  color: #A47D55;
}

.showcase p {
  padding: 1rem;
  font-size: 1.4rem;
  color: #f3f3f3;
  margin-top: 0.5rem;
}

.showcase h3 {
  padding: 1rem;
  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}


.showcase3 {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;


}

.showcase3:before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/image00074.jpg');
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.showcase3 h1 {
  padding: 1rem;
  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}

.showcase3 p {
  padding: 1rem;
  font-size: 1.4rem;
  color: #f3f3f3;
  margin-top: 0.5rem;
}

.showcase h3 {
  padding: 1rem;
  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}


.showcase5 {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;


}

.showcase5:before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/image00016.jpg');
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.showcase5 h1 {
  padding: 1rem;
  font-size: 3.5rem;
  color: #f3f3f3;
  font-weight: bold;
}

.showcase5 p {
  padding: 1rem;
  font-size: 1.4rem;
  color: #f3f3f3;
  margin-top: 0.5rem;
}



.baguetteBox-button {
  background-color: transparent !important;
}

.photo-gallery {
  color: #313437;
  background-color: #fff;
}


@media (max-width:767px) {



  .photo-gallery .photos {
    padding-bottom: 20px;
  }

  .photo-gallery .item {
    padding-bottom: 30px;
  }

  .blog-content {
    margin: 0;
  }


}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
}

.services .box-container .box img {
  height: 10rem;
  margin-bottom: .7rem;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  padding: .5rem 0;
}

.service-item {
  height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  color: #000;
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: black !important;
}


#gallery {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;

  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media (max-width:1200px) {
  #gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width:800px) {
  #gallery {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width:600px) {
  #gallery {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

#gallery img,
#gallery video {
  width: 100%;
  height: auto;
  margin: 4% auto;
  box-shadow: -3px 5px 15px #000;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.modal-img,
.model-vid {
  width: 100%;
  height: auto;
}

.blog-content {

  box-shadow: 0 .125rem .25rem rgb(34 30 31 / 40%);
}

.gallary img {
  width: 270px;

}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  height: 50px;
  position: absolute;
  width: 50px;
  cursor: pointer;
  top: 35%;
  background: white !important;
  transition: 0.5s;
}

.owl-carousel .owl-prev {
  left: 33px;
}

.owl-carousel .owl-next {
  right: 33px;
}

.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
  background: #C1B086 !important;
}

.flex1 {
  display: flex;
  justify-content: space-between;
}

.heading {
  position: relative;
}

.heading::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100px;
  height: 4px;
  background: #C1B086;
}

@media only screen and (max-width:768px) {


  .section .btn {
    text-align: center;
  }

  .heading_top .btn {
    display: none;
  }

  .about_area .btn {
    display: none;
  }
}
#work {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../images/image00030.jpg') center/cover no-repeat fixed;
  color: white;
}

#work .title h2,
#work h3 {
  color: white;
}

.work-bottom {
  margin-top: 4rem;
  text-align: center;
}

.work-bottom>div .icon img {
  width: 50px;
  margin: 0 auto 1.7rem auto;
}
.portfolio-grid>div {
  transition: var(--transition);
}

.portfolio-grid>div:hover {
  transform: scale(0.9);
}

@media(min-width: 450px) {
  .work-bottom {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    row-gap: 0;
  }
}

@media(min-width: 576px) {

  .work-bottom {
    grid-template-columns: repeat(4, 1fr);
  }


}

@media(min-width: 768px) {

  .about-content,
  .work-top {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6rem;
    row-gap: 0;
  }


}
.heading2 h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 80px;
  color: white;
}

.left,
.right {
  width: 50%;
  margin: 20px;
}

.wrapper {
  color: white;
  background-image: url("../photo/ujif.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper .left,


.wrapper .right img {
  float: right;
}

.wrapper .text {
  margin-top: 30px;
  margin-bottom: 50px;
}

.wrapper i {
  font-size: 40px;
  margin-right: 20px;
}

.wrapper .btn1 {
  margin-left: 20px;
}

.btn1 {
  background: black;
  color: white;
  transition: 0.5s;
}

.btn1:hover {
  background: white;
  color: black;
}

.opentime .left,
.opentime .right {
  margin: 4px;
}

.opentime .heading {
  position: relative;
}

.opentime .right h1 {
  font-size: 50px;
  line-height: 50px;
  color: white;
  margin: 0;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 5%;
}

.opentime .left {
  position: relative;
}

.opentime img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.opentime .left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.opentime .left .heading {
  position: absolute;
  top: 30%;
  padding: 0px;
  text-align: center;
}

.opentime .left .heading h1 {
  color: white;
  font-size: 80px;
}

.opentime .box {
  height: 55.5vh;
  background-color: #111B0D;
}

.opentime .box1,
.opentime .box2 {
  position: relative;
  height: 32vh;
}

.opentime .box2 {

  z-index: -1;
}

.opentime .time {
  max-width: 50%;
  margin: auto;
}

.opentime .time .day {
  margin-top: 20px;
}

.opentime .box2 span {
  color: black;
}

@media only screen and (max-width:768px) {

  .opentime .left,
  .wrapper .right,
  .head .social_media {
    display: none
  }



  .left,
  .right {
    width: 100%;
  }

  .opentime,
  .menu_list .content,
  .wrapper .container {
    flex-direction: column;
  }

  .wrapper {

    background-position: right;
  }
}


.about_area {}

@media (max-width: 767px) {
  .about_area {}
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area {
    padding-top: 80px;
    padding-bottom: 80px
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about_area {
    padding-top: 100px;
    padding-bottom: 100px
  }
}

.about_area .about_info p {
  font-size: 16px;
  line-height: 28px;
  font-size: 16px;
  line-height: 28px;
  margin-top: 0;

}

@media (max-width: 767px) {
  .about_area .about_info a {
    margin-bottom: 30px
  }
}

.about_area .about_thumb {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumb {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    margin-top: 30px
  }
}

.about_area .about_thumb img {
  width: 100%
}

.about_area .about_thumb .img_2 {
  margin-top: 40px;
  margin-left: 10px
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumb2 {
    margin-bottom: 30px
  }
}

.about_area .about_thumb2 img {
  width: 100%
}

.about_area .about_thumb2 .img_2 {
  margin-top: 40px;
  margin-left: 10px
}


.home1 {
  padding: 0;
}

.home1 .slide {
  min-height: 35vh;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  background: white;
  color: black;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
}
.menu-body {
  max-width: 680px;
  margin: 0 auto;
  display: block;
  color: rgb(92, 92, 92);
}

.menu-section {
  padding: 10px;
  margin-bottom: 80px;
}

.menu-section-title {
  font-family: georgia;
  font-size: 50px;
  display: block;
  font-weight:normal;
  margin: 20px 0; 
  text-align: Center;
}

.menu-item {
  margin: 35px 0;
  font-size: 18px;
}

.menu-item-name{
  font-family: helvetica;
  font-weight: bold;
  border-bottom: 2px dotted rgb(213, 213, 213);
}

.menu-item-description {
  font-style: italic;
  font-size: .9em;
  line-height: 1.5em;
}

.menu-item-price{
  float: right;
  font-weight: bold;
  font-family: arial;
  margin-top: -22px;
}
