* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #09323A;
}

p {
  margin: 0;
  color: #09323A;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #96C463;
}

a:hover {
  color: #96C463;
}

h2 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "lamaRounded-Black";
  src: url(../fonts/lamaRounded-Black.ttf);
}
@font-face {
  font-family: "lamaRounded-Bold";
  src: url(../fonts/lamaRounded-Bold.ttf);
}
@font-face {
  font-family: "lamaRounded-ExtraBold";
  src: url(../fonts/lamaRounded-ExtraBold.ttf);
}
@font-face {
  font-family: "lamaRounded-Medium";
  src: url(../fonts/lamaRounded-Medium.ttf);
}
@font-face {
  font-family: "lamaRounded-Regular";
  src: url(../fonts/lamaRounded-Regular.ttf);
}
@font-face {
  font-family: "lamaRounded-SemiBold";
  src: url(../fonts/lamaRounded-SemiBold.ttf);
}
body {
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
  color: #09323A;
  overflow-x: hidden;
  font-family: "lamaRounded-Regular";
}

.font-medium {
  font-family: "lamaRounded-Medium";
}

.font-semi-bold {
  font-family: "lamaRounded-SemiBold";
}

.font-bold {
  font-family: "lamaRounded-Bold";
}

.font-extra-bold {
  font-family: "lamaRounded-ExtraBold";
}

.font-black {
  font-family: "lamaRounded-Black";
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  height: 48px;
  background-color: transparent;
  border: 1px solid rgba(102, 102, 102, 0.3490196078);
  border-radius: 0px;
  padding: 10px 15px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: #96C463 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.bg-primary {
  background-color: #96C463 !important;
}

.text-primary {
  color: #96C463 !important;
}

.text-primary-2 {
  color: #047985;
}

.bg-primary-2 {
  background-color: #047985;
}

.border-primary {
  border-color: #96C463 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.input-icon {
  position: relative;
}

.input-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.input-icon.icon-right .icon {
  inset-inline-start: 10px;
}

.input-icon.icon-right .form-control {
  padding-inline-start: 35px;
}

.input-icon.icon-left .icon {
  inset-inline-end: 10px;
}

.input-icon.icon-left .form-control {
  padding-inline-end: 35px;
}

::-moz-placeholder {
  color: rgba(102, 102, 102, 0.3019607843) !important;
}

::placeholder {
  color: rgba(102, 102, 102, 0.3019607843) !important;
}

.btn {
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 30px;
}

.btn-primary {
  color: #FFF;
  background: #96C463;
  border-color: #96C463;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #87b257 !important;
  border-color: #87b257;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #96C463;
  background-color: #96C463 !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-white {
  color: #FFF;
  background: transparent;
  border-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-outline-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #96C463 !important;
  border-color: #96C463;
}
.btn-outline-white:hover, .btn-outline-white:focus {
  color: #fff !important;
  border-color: #fff;
  background-color: transparent !important;
  box-shadow: none !important;
}
.btn-outline-white:hover::before, .btn-outline-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-black {
  color: #fff;
  background: #09323A;
  border-color: #09323A;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-black::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #7ca44f;
}
.btn-black:hover, .btn-black:focus {
  color: #fff !important;
  border-color: #09323A;
  background-color: #09323A !important;
  box-shadow: none !important;
}
.btn-black:hover::before, .btn-black:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #96C463;
  background: transparent;
  border-color: #96C463;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #96C463;
}

.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #96C463;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.main-header.hidden{
  display: none;
  position: fixed;
}

.main-header.fixed{
  box-shadow: 0 0 10px #00000021;
  background-color: #FFF;
  position: fixed;
}
.main-header {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  padding: 15px 0 5px;

}
.main-header .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.main-header .overlay:not(.collapsed) {
  visibility: visible;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .toggleMenu {
    max-width: 20px;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .main-header .navbar .navbar-collapse .navbar-toggler {
    position: absolute;
    inset-inline-end: 32%;
    top: 3%;
    z-index: 22;
  }
  .main-header .navbar .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
    align-items: flex-start;
  }
  .main-header .navbar .navbar-collapse.show {
    inset-inline-end: -30%;
  }
  .main-header .navbar .navbar-collapse.show .ss {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
  }
}
.main-header .navbar .navbar-collapse .btn.btn-primary {
  background-color: rgba(150, 196, 99, 0.8);
  display: flex;
  align-items: center;
}
.main-header .navbar .navbar-collapse .btn.btn-primary img {
    height: 18px;
}
.main-header .navbar .navbar-collapse .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
    padding: 9px 10px;
    font-size: 15px;
  color: #09323A;
  font-family: "lamaRounded-Medium";
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-link.active::before {
  position: absolute;
  content: "";
  color: #96C463;
  background: url(../images/line2.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 43px;
  background-size: contain;
  inset-inline-start: 0;
  bottom: -26px;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #96C463;
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler {
  position: relative;
}
.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 7px;
    font-size: 10px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
}
.section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.swiper-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.swiper-home-image {
  height:550px;
}

.swiper-home-image .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.swiper-home-image .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}

.swiper-home-image .swiper-slide {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.swiper-home-image .swiper-slide.swiper-slide-visible {
  opacity: 0.3;
  transform: scale(1);
  pointer-events: auto;
}

.swiper-home-image .swiper-slide.swiper-slide-visible.swiper-slide-active {
  opacity: 1;
}

.arrow {
  position: absolute;
  inset-inline-end: 0;
  top: 66%;
  z-index: 2;
}

.swiper-home-image img {
  box-shadow: 0px 4px 150.5px rgba(0, 0, 0, 0.1);
  border-radius: 58px;
}

.swiper-home .swiper-pagination-bullet {
  background-color: #D9D9D9;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.swiper-home .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #96C463;
}

.app-download a {
  display: inline-block;
  border: 6px solid #96C463;
  border-radius: 10px;
  padding: 5px 15px;
  transition: background-color 0.2s ease-in-out;
}
.app-download a img {
  transition: filter 0.2s ease-in-out;
  width: 140px;
}
.app-download a:hover {
  background-color: #96C463;
}
.app-download a:hover img {
  filter: brightness(0) invert(1);
}
.app-download a:nth-of-type(1) {
  margin-inline-end: 20px;
}

.swiper-home-content h1 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .swiper-home-image{
    margin-bottom: 20px;
  }
  .swiper-home-content h1 {
    font-size: 3rem;
  }
}


.widget_item-1 {
  position: relative;
  /* box-shadow: 0px 4px 125.8px rgba(0, 0, 0, 0.1); */
  border-radius: 80px;
}
.widget_item-1 .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 130%;
}
@media (max-width: 576px) {
  .widget_item-1 .widget_item-image {
    padding-top: 120%;
  }
}
.widget_item-1 .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
.widget_item-1 .widget_item-content {
  position: absolute;
  padding: 13px;
  z-index: 1;
  background: #FFFFFF;
  box-shadow: 0px 4px 125.8px rgba(0, 0, 0, 0.1);
  border-radius: 30px 30px 2px 30px;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-1:hover .widget_item-content {
  background-color: #96C463;
}
.widget_item-1:hover .widget_item-content h3 {
  color: #FFF;
}

.widget_item-1 .widget_item-title h3{
  font-size: 1rem;
}

.section-map {
  position: relative;
  z-index: 1;
}
.section-map::after {
  position: absolute;
  content: "";
  width: 100%;
  background: url(../images/bg1.png);
  height: 100%;
  z-index: -1;
  bottom: -80px;
}

.section-map .section-title {
    font-size: 40px;
    position: absolute;
    top: 55%;
    inset-inline-start: 5%;
    width: 350px;
}
@media(max-width:991px){
  .section-map .section-title{
    display: none;
  }
}
.section-map .section-title::before {
  content: unset;
}
.section-map::before {
    position: absolute;
    content: "";
    background-color: #96C463;
    width: 100%;
    height: 46%;
    top: 30%;
    left: 0;
    z-index: -1;
    box-shadow: 0px 64px 144.5px rgba(150, 196, 99, 0.3);
}
@media (max-width: 991px) {
  .section-map::before {
    height: 100%;
    top: 0;
  }
}
@media (min-width: 992px) {
  .section-map .swiper-slide:nth-child(even) {
    transform: translateY(390px);
  }
}
.section-map .swiper-slide:nth-child(even) .widget_item-1 .widget_item-content {
  top: 40%;
  inset-inline-start: -80px;
}
@media (max-width: 992px) {
  .section-map .swiper-slide:nth-child(even) .widget_item-1 .widget_item-content {
    inset-inline-start: 10px;
  }
}
.section-map .swiper-slide:nth-child(odd) .widget_item-1 .widget_item-content {
  top: 20%;
  inset-inline-end: -90px;
}
@media (max-width: 992px) {
  .section-map .swiper-slide:nth-child(odd) .widget_item-1 .widget_item-content {
    top: 20%;
    inset-inline-end: 10px;
  }
}

@media(min-width:992px){
  .swiper-1 {
    height: 780px;
  }
}
.section-map .swiper .swiper-slide{
  overflow: unset;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.section-title::before {
  position: absolute;
  content: "";
  background: url(../images/line2.svg);
  width: 200px;
  height: 35px;
  inset-inline-start: 0;
  background-size: contain;
  background-repeat: no-repeat;
  top: 70px;
}

.swiper-nav-prev.swiper-menu-prev,
.swiper-nav-next.swiper-menu-next {
  position: absolute;
  top: 33%;
  z-index: 1;
  background-color: #FFF;
  transition: background-color 0.2s ease-in-out;
}
.swiper-nav-prev.swiper-menu-prev img,
.swiper-nav-next.swiper-menu-next img {
  transition: filter 0.2s ease-in-out;
}
.swiper-nav-prev.swiper-menu-prev:hover,
.swiper-nav-next.swiper-menu-next:hover {
  background-color: #79a04d;
}
.swiper-nav-prev.swiper-menu-prev:hover img,
.swiper-nav-next.swiper-menu-next:hover img {
  filter: brightness(0) invert(1);
}

.swiper-nav-prev.swiper-menu-prev {
  inset-inline-start: -25px;
}

.swiper-nav-next.swiper-menu-next {
  inset-inline-end: -25px;
}

.widget_item-menu {
  position: relative;
  background-color: #96C463;
  text-align: center;
  border-radius: 500px;
  padding: 25px;
  display: block;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-menu:hover {
  background-color: #79a04d;
}
.widget_item-menu .widget_item-new {
  position: absolute;
  background-color: rgba(240, 0, 0, 0.8);
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 700;
  color: #FFF;
  z-index: 1;
  top: 40px;
  inset-inline-end: 0px;
}
.widget_item-menu .widget_item-image {
  height: 160px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_item-menu .widget_item-image img {
  box-shadow: 0px 4px 18.2px rgba(0, 0, 0, 0.2);
  height: 160px;
  width: 160px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media(max-width:991px){
  .widget_item-menu .widget_item-image{
    height: auto;
  }
  .widget_item-menu .widget_item-image img {
    width: auto;
    height: auto;
  }
}
.widget_item-menu .widget_item-name {
  color: #FFF;
}
.widget_item-menu .widget_item-title {
    color: #FFF;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 1.3;
    min-height: 68px;
}

.section-feather {
  background: #FFFFFF;
  box-shadow: 0px -155px 144.5px rgba(150, 196, 99, 0.2);
  border-radius: 50px 50px 0px 0px;
}

.widget_item-feather {
  display: flex;
  align-items: center;
}
.widget_item-feather .widget_item-image {
  flex: 0 0 auto;
  width: 300px;
}
@media (max-width: 991px) {
  .widget_item-feather .widget_item-image {
    width: 200px;
  }
}

.section-testemonial {
  background-color: #96C463;
  position: relative;
  z-index: 1;
}
.section-testemonial .bg {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
  inset-inline-start: 20%;
}
.section-testemonial .bg img {
  height: 100%;
}

.section-testemonial {
  position: relative;
  z-index: 1;
}
.section-testemonial::before {
  z-index: -1;
  position: absolute;
  content: "";
  background: url(../images/bg2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: -50px;
  inset-inline-start: 0;
  width: 40%;
  height: 100%;
}

.widget_item-testemonial {
  background: #FFFFFF;
  box-shadow: 0px 4px 141.7px rgba(0, 0, 0, 0.1);
  border-radius: 38px;
  padding: 52px 40px;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-testemonial:hover {
  background-color: #f2f2f2;
}
.widget_item-testemonial .widget_item-9 {
  position: absolute;
  top: -20px;
  color: #4F8A4E;
  font-weight: 700;
  font-size: 24px;
  z-index: 1;
}
.widget_item-testemonial .widget_item-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.widget_item-dishes {
  text-align: center;
  background-color: #96C463;
  border-radius: 30px;
  border: 8px solid #96C463;
  position: relative;
  margin-top: 130px;
  z-index: 1;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.08);
}
.widget_item-dishes .widget_item-image {
    height: 270px;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-top: -140px;
}
.widget_item-dishes .widget_item-image img {
      max-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-dishes .widget_item-content {
  background-color: white;
  padding: 40px;
  border-radius: 0 0px 30px 30px;
}

.swiper-meals .swiper-slide {
  display: inline-block;
  width: auto;
}

.widget_item-meals .widget_item-title {
  background-color: #f1f1f1;
  cursor: pointer;
  padding: 7px 40px;
  border-radius: 30px;
  font-size: 20px;
}
.widget_item-meals .widget_item-title.active {
  background-color: #96C463;
  color: #FFF;
}

.swiper-menu {
  padding: 50px 0;
}
.swiper-menu .swiper-slide.second {
  transform: translateY(50px);
}
.swiper-menu .swiper-slide.four {
  transform: translateY(-50px);
}

.section-blog {
  position: relative;
  z-index: 1;
}
.section-blog::before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: url(../images/bg3.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.widget_item-blog {
  position: relative;
  display: block;
}
.widget_item-blog .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 77%;
}
.widget_item-blog .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-blog .widget_item-content {
  position: absolute;
  bottom: 70px;
  padding: 30px 30px 0;
  width: 100%;
  z-index: 1;
  text-align: center;
}
.widget_item-blog .widget_item-content .widget_item-title {
  font-size: 1.575rem;
}
.widget_item-blog .widget_item-content .widget_item-title:hover {
  color: #96C463 !important;
}
.widget_item-blog .widget_item-content .btn{
  padding: 12px 20px;
}
.widget_item-blog .widget_item-content .widget_item-desc {
  margin-bottom: 30px;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .widget_item-blog .widget_item-content {
    bottom: 0;
    padding: 10px;
  }
  .widget_item-blog .widget_item-content .widget_item-desc {
    margin-bottom: 10px;
    font-size: .8rem;
  }
  .widget_item-blog .widget_item-content .btn {
        padding: 2px 9px;
        font-size: .8rem;
  }
  .widget_item-blog .widget_item-content .widget_item-title{
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .widget_item-blog:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .widget_item-blog:nth-of-type(1) .widget_item-image {
    padding-top: 150%;
  }
  .widget_item-blog:nth-of-type(1) .widget_item-image img {
    border-radius: 60px 0 0 60px;
  }
  .widget_item-blog:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .widget_item-blog:nth-of-type(2) .widget_item-image {
    padding-top: 40%;
  }
  .widget_item-blog:nth-of-type(2) .widget_item-image img {
    border-radius: 0px 60px 60px 60px;
  }
  .widget_item-blog:nth-of-type(2) .widget_item-content {
    bottom: 50px;
    width: auto;
    inset-inline-end: 0;
  }
  .widget_item-blog:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 2/2;
  }
  .widget_item-blog:nth-of-type(3) .widget_item-image img {
    border-radius: 60px 0px 0px 0px;
  }
  .widget_item-blog:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 2/2;
    margin-inline-start: 51%;
  }
  .widget_item-blog:nth-of-type(4) .widget_item-image img {
    border-radius: 0px 60px 0px 0px;
  }
  .widget_item-blog:nth-of-type(3), .widget_item-blog:nth-of-type(4) {
    grid-row: 2/3;
    width: calc(50% - 10px);
    display: inline-block;
    vertical-align: top;
  }
}

@media (min-width: 992px) {
  .wrapper {
    direction: ltr;
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: 50% 50%;
    gap: 15px;
    grid-template-areas: "left-top right" "left-bottom right";
  }
}
@media (max-width: 991px) {
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.swiper-nav-prev,
.swiper-nav-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #96C463;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
}

.tab-menu {
  margin-bottom: 50px;
}
.tab-menu li a {
  color: #9F9F9F;
  display: inline-block;
  padding: 5px 40px;
  font-size: 18px;
  position: relative;
}
.tab-menu li a img {
  margin-inline-end: 10px;
  height: 30px;
  filter: grayscale(100%);
}
@media (max-width: 991px) {
  .tab-menu li a {
    padding: 5px 10px;
  }
  .tab-menu li a img {
    height: 20px;
  }
}
.tab-menu li a.active {
  color: #09323A;
  font-weight: 700;
}
.tab-menu li a.active::before {
  position: absolute;
  content: "";
  background: url(../images/line2.svg);
  width: 150px;
  height: 35px;
  inset-inline-start: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 96%;
}
.tab-menu li a.active img {
  filter: grayscale(0);
}
.tab-menu li:nth-of-type(1) a {
  border-left: 1px solid #dddddd;
}

.widget_item-contct-info .widget_item-desc {
  font-size: 24px;
  color: #09323A;
}
.widget_item-contct-info .widget_item-desc:hover {
  color: #96C463;
}

@media (min-width: 991px) {
  .widget_items-info .widget_item-contct-info:not(:last-of-type) {
    margin-inline-end: 50px;
    padding-inline-end: 50px;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.3019607843);
  }
}
@media (max-width: 991px) {
  .widget_items-info .widget_item-contct-info:not(:last-of-type) {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
  }
}

.line {
  position: relative;
  width: 500px;
  max-width: 100%;
  margin: auto;
}
.line::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, white, rgba(0, 0, 0, 0.49), white);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.line img {
  height: 32px;
}

.h-20 {
  height: 20px;
}

.h-30 {
  height: 30px;
}

.widget_item-plan {
  background: #FFFFFF;
  box-shadow: 0px 4px 125px rgba(0, 0, 0, 0.08);
  border-radius: 80px;
  position: relative;
  margin-top: 130px;
  display: flex;
  flex-direction: column;
}
.widget_item-plan .widget_item-duration {
  position: absolute;
  background-color: rgba(240, 0, 0, 0.8);
  border-radius: 30px 30px 30px 0px;
  padding: 5px 20px;
  font-weight: 700;
  color: #FFF;
  z-index: 1;
  top: -18px;
  inset-inline-start: 12%;
}
.widget_item-plan .icon-reserve {
  height: 40px;
}
.widget_item-plan .widget_item-image {
  margin-top: -100px;
  text-align: center;
  height: 300px;
  margin-bottom: 20px;
}
.widget_item-plan .widget_item-image img {
  height: 300px;
}
.widget_item-plan .widget_item-content {
  padding: 0px 80px 80px;
}
@media (max-width: 991px) {
  .widget_item-plan .widget_item-content {
    padding: 0px 20px 30px;
  }
}

.btn-whatsapp {
  background-color: #4F8A4E;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 30%;
  inset-inline-start: -20px;
  z-index: 4;
  width: 85px;
  height: 65px;
  padding-inline-start: 13px;
}
.btn-whatsapp img {
  width: 40px;
}

.swiper-plan .widget_item-meals .widget_item-title {
  display: flex;
  align-items: center;
}
.swiper-plan .widget_item-meals .widget_item-title .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D5DBDC;
  border-radius: 50%;
  padding: 6px;
  margin-inline-end: 6px;
}

.swiper-meals .swiper-slide.swiper-slide-active .widget_item-title .icon {
  background-color: #4F8A4E;
}

.bg-4 {
  position: relative;
  z-index: 1;
}
.bg-4::before {
  background: url(../images/bg5.png);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.btn-outline-dark:hover img {
  filter: brightness(0) invert(1);
}

html[dir=ltr] .btn-outline-dark img, html[dir=ltr] .swiper-nav-prev.swiper-menu-prev img, html[dir=ltr] .swiper-nav-next.swiper-menu-next img, html[dir=ltr] .widget_item-blog .btn-outline-white img,
html[dir=ltr] .swiper-nav-prev img, html[dir=ltr] .swiper-nav-next img {
  transform: scaleX(-1);
}

.main-footer {
  background: #96C463;
  border-radius: 109px 109px 0px 0px;
  position: relative;
  margin-top: 60px;
  z-index: 1;
}
.main-footer::before {
  position: absolute;
  content: "";
  top: 0px;
  inset-inline-start: 0;
  background: url(../images/bg4.png);
  background-repeat: no-repeat;
  width: 50%;
  height: 100%;
  background-size: 100% 100%;
}
@media (max-width: 991px) {
  .main-footer::before {
    width: 100%;
  }
}
@media (min-width: 991px) {
  .main-footer .logo img {
    width: 190px;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .main-footer .logo img {
    width: 150px;
  }
}
.main-footer .logo-center {
    background-color: #FFF;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: -45px;
    padding: 13px;
}
.main-footer .footer-top {
     padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .main-footer .footer-top {
    padding: 60px 0 25px;
  }
}
.main-footer .footer-bottom {
  padding: 8px 0;
  position: relative;
}
.main-footer .footer-bottom .logo-white {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}
.main-footer .link-footer a {
  color: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  padding: 7px 8px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #4F8A4E !important;
}

.checkout li {
  background-color: #fff;
  height: 27px;
  width: 55px;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout li:not(:last-of-type) {
  margin-inline-end: 12px;
}
.checkout li img {
  max-height: 22px;
}

.social-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-media li a {
  border-radius: 16px 2px;
  width: 40px;
  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background-color 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.04);
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  color: #fff;
  background-color: #96C463;
}

.form .icon {
  inset-inline-start: 20px !important;
}
.form .form-control {
  background-color: #fff;
  border-radius: 24px 4px;
  padding-inline-start: 50px !important;
}
.form .btn-submit {
  background-color: #5FB446;
  color: #FFF;
  padding: 5px 55px 5px 25px;
  margin-inline-start: -18px;
  border-radius: 24px 0 0px 4px;
}

@media (max-width: 991px) {
  html {
    font-size: 10px;
  }
  main {
    overflow: hidden;
  }
}
.video-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.scroll-down {
  position: absolute;
  bottom: 100px;
  z-index: 3;
  inset-inline-end: 10%;
  cursor: pointer;
  text-align: center;
}
.scroll-down p{
  margin-top: 5px;
  font-size: 12px;
}
.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
:root {
    scroll-behavior: unset;
}
.video-section .logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-content{
  padding: 40px;
  border: 0;
  border-radius: 30px;
}
html[dir="ltr"] .main-header .navbar .navbar-collapse .nav-link{
    padding: 9px 8px;
    font-size: 13px;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 2.75rem;
  }
  .section-title::before {
  top: 29px;
  width: 130px;
  height: 20px;
  inset-inline-start: 0;
  background-size: cover;
  }
  .swiper-home-image img{
    box-shadow: none;
  }
}
/*# sourceMappingURL=main.css.map */