@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Fonts */
:root {
  --font-default: 'Poppins';
  --font-primary: 'Poppins';
  --font-secondary: 'Poppins';
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #00BF63;
  --color-secondary: white;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html,body,div, a, label, section, small, strong, h1, h2, h3, h4, h5, h6, button,p{
  /* font-family: 'Sofia Pro'; */
  font-family: "Poppins", sans-serif;
}

::selection{
  background-color: #00BF63 !important;
  color: #fff !important;
}

body {
  font-family: var(--font-primary);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none !important;
}

a:hover {
  color: #00BF63;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

.btn-primary, .btn-primary:hover, .btn-primary:active{
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(250, 250, 250, 1) !important;
    background-color:#00BF63 !important;
    background: var(--color-primary) !important;
    padding: 12px 25px;
    border-radius: 5px !important;
    border: none !important;
    transition: 0.3s !important;
}

.btn-get-quote, btn-get-quote:hover, btn-get-quote:active{
  font-size: 16px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 1) !important;
  background-color:#00BF63 !important;
  background: var(--color-primary) !important;
  padding: 12px 45px !important;
  margin-left: 30px !important;
  border-radius: 12px !important;
  border: none !important;
  transition: 0.3s !important;
}

.hero-banner-container{
  margin-top: 40px !important;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #FFFFFF;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}



.close {
  position: absolute;
  top: -13px;
  right: -13px;
  width: 30px;
  height: 30px;
  content: "";
  background-color: white;
  border: solid lightgrey 1px;
  border-radius: 50%;
}
.close:before {
  position: absolute;
  border-radius: 50%;
  content: "";
  width: 26px;
  height: 26px;
  top: 0px;
  left: 0px;
}
.close:after {
  position: absolute;
  content: "X";
  font-weight: bold;
  font-size: 1.2em;
  color: white;
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  line-height: 28px;
}
.close.nw_red {
  top: 10px;
  bottom: -15px;
  right: 31px;
  border: solid #107846 2px;
  background-color: #107846;
  height: 32px;
  width: 32px;
}
.close.nw_red:before {
  background-color: #065b32;
  background: linear-gradient(to bottom, #00BF63 0%, #107846 100%);
  border: none;
  height: 27px;
  width: 28px;
}

@media screen and (min-width:1280px){
  .close.nw_red, .mobile-Logo{
    display: none !important;
  }
}

@media screen and (max-width:395px){
  .contactus-btn{
    font-size: 12px !important;
    padding: 10px 12px !important;
  }
}



/* Registration CSS Updated */

.register-btn{
  font-weight:600;
  padding: 14px 20px !important;
  background-color:#00BF63 !important;
 }

 @media screen and (max-width:575px){
  .header .logo img {
      max-height: 50px !important;
  }
 }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #00BF63;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
   height: 44px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: 'Sofia Pro', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(74, 85, 104, 1);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: rgba(74, 85, 104, 1);
  }

  .navbar .active,
  .navbar .active:focus, .navbar .active:hover{
    font-weight: 600;
    color: rgba(74, 85, 104, 1);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: 'Sofia Pro', sans-serif;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 35px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, #02542c);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #045d32;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  overflow: hidden !important;
  border-radius: 50% !important;
  border: 4px solid #fff !important;
  margin: 0 auto;
  height: 60px !important;
  width: 60px !important;
}

.testimonials .testimonial-item .testimonial-img img{
  max-height: 60px !important;
  object-fit: contain !important;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #FFF;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #FFF;
  margin: 0 0 10px 0;
  font-weight: 400;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #fff;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fff;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.008em;
    text-align: center;
    color: white;
}

@media screen and (max-width:500px){
  .testimonials .testimonial-item p {
    font-size: 15px !important;
  }
  .testimonials .testimonial-item h3 {
    font-size: 16px;
  }

}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #9fdabe;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d1d1d7;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #00BF63;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #00BF63;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #00BF63;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #00BF63;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  padding: 160px 0 60px 0;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  font-family: var(--font-primary);
  color: rgba(92, 95, 110, 1);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top:15px;
   margin-bottom:30px;
}

.hero .btn-book-a-table {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #00BF63;
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
}

.hero .btn-book-a-table:hover {
  background: #00BF63;
  box-shadow: #01542c;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: #00BF63;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.service-section{
  background-color:#FFF !important;
}

.page-wrapper{
  margin-top: 180px;
    margin-bottom: 143px;
}

.page-wrapper .card{
  padding: 15px;
  background-color: #fff;
  border: none;
  outline: none;
}

.page-wrapper .card-header{
  background-color: #fff;
  border: none;
  outline: none;
}

.registration-container .card{
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.registration-container .register-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
}

.registration-container .form-control{
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  border: 1px solid #FBB9BD;
  border-radius: 10px;
  padding: 10px;
}

.registration-container .form-control:focus{
  border: 1px solid #00BF63;
  outline: none;
  box-shadow: none !important;
}

.registration-container .form-label{
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.registration-container .form-control::placeholder{
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.register-submit-btn{
  padding: 15px 10px;
  border-radius: 12px !important;
  width: 100%;
  background-color: #00BF63;
  border-color: #00BF63 !important;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
}

.register-submit-btn:hover, .register-submit-btn:active{
  background-color: #00BF63 !important;
  border-color: #00BF63 !important;
  color: #fff !important;
}

@media screen and (max-width:500px){
  .hero .hero-large-text{
    font-size: 30px !important;
  }
  .hero-sm-text{
    font-size: 17px !important;
  }
  .bus-heading{
    font-size: 30px !important;
  }
  .bus-description{
    font-size: 15px !important;
  }
}


/* Pricing */

.pricing-heading{
  font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
}

.pricing-sub-heading{
  text-align: center;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 50px !important;
}

.pricing-card-container{
  border: 2px solid #00BF63;
  border-radius: 7px;
  padding: 12px;
  margin-bottom: 20px;
}

.pricing-card-container .select-btn{
  background-color: #00BF63 !important;
  border-color: #00BF63 !important;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: white !important;
  padding: 5px 17px !important;
}

.pricing-card-container .seclect-btn:hover, .pricing-card-container .select-btn:active{
  background-color: #00BF63 !important;
  border-color: #00BF63 !important;
  color: #fff !important;
}

.pricing-card-container .destination-head{
    color: #B3B4BA;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.pricing-card-container .distance-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
}



@media screen and (max-width:400px){
  .pricing-card-container .destination-head {
    font-size: 9px;
    font-weight: 500;
   }

   .pricing-card-container .distance-text {
    font-weight: 600;
    font-size: 8px;
}

.pricing-card-container .select-btn {
  font-size: 10px;
  padding: 5px 11px !important;
}

.pricing-card-container{
  border: 1px solid #00BF63 !important;
}

.register-btn {
    padding: 11px 20px !important;
  }

}

@media screen and (min-width:400px) and (max-width:500px){
  .pricing-card-container .destination-head {
    font-size: 11px;
    font-weight: 500;
   }

   .pricing-card-container .distance-text {
    font-weight: 600;
    font-size: 10px;
  }

  .pricing-card-container .select-btn {
    font-size: 12px;
    padding: 5px 11px !important;
  }


}


/* About Us Page */
.aboutus-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.welcome-text-togo{
  font-family: 'Poppins', sans-serif;
  color: #00BF63;
  font-weight: 700;
  margin-top: 20px;
}

.aboutus-banner{
  height: 600px;
  background-image: url(assets/img/aboutus-banner.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-sticky-card{
  outline: none !important;
  border: none !important;
  max-width: 350px !important;
  border-radius: 0px !important;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  position: relative;
  float: right;
  top: 120px;
  right: 5%;
}

.sticky-card-heading{
  outline: none !important;
  border: none !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
}

.sticky-card-inner-p{
  font-weight: 500;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
}


@media screen and (max-width:500px){
  .about-sticky-card {
    max-width: 230px !important;
    position: relative;
    float: right;
    top: 160px;
    right: 5%;
}

.sticky-card-heading {
  font-size: 14px;
  margin-bottom: 19px;
}

.sticky-card-inner-p {
  font-size: 10px;
}

.aboutus-banner{
  height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  overflow: hidden;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
    height: 60px;
    width: 60px;
}


}

.about-us-second-section{
  margin-top: 85px;
}

@media screen and (max-width:434px){
  .about-us-second-section {
    margin-top: 130px;
}
}

.comprehensive-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.schl-delivery-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color:#00BF63;
  margin-top: 15px;
  margin-bottom: 30px;
}

.about-us-second-section .p-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}

.about-us-second-section .third-section-container{
  margin-top: 25px;
  margin-bottom: 40px;
}

.mission-vision{
  margin-top: 35px;
}

.vision-heading, .mission-heading{
   color: #00BF63;
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   margin-bottom: 25px;
}

.aboutus-vision{
  margin-bottom: 60px;
}

.vision-para, .mission-para{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}


@media screen and (max-width:991px){
  .mission-vision-container {
    margin-top: 40px;
  }
}

.page-wrapper .testimonials{
  background-color: #FFF !important;
}

.reviews-heading{
  font-family: 'Poppins', sans-serif;
   color:#222224;
   font-weight: 600;
   margin-bottom: 45px;
}


/* Contact Us */

.contactus-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.contact-left-card{
   box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
   padding: 30px !important;
}

.contact-right-card{
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  padding: 30px !important;
}

.icon-avatar{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #00BF63;
}

.icon-avatar i{
  font-size: 27px;
  color: #FFF;
}

.way-to-contact-head{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.contactus-container{
  margin-top: 90px;
}

.horizontal-ruler{
  color: #292525 !important;
  border-width: 2px !important;
}

.contact-inner-p{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.contactus-container .form-control{
  padding: 13px 15px ;
  font-family: 'Poppins', sans-serif;
  border-radius: 3px !important;
  border-color: #F5F5F5 !important;
  background-color: #F5F5F5 !important;
}

.contactus-container .form-control:focus{
  box-shadow: none !important;
  border: 1px solid #00BF63 !important;
}

.contactus-container .form-control::placeholder{
  font-family: 'Poppins', sans-serif;
  font-size: 15px !important;
  font-weight: 400 !important;
}

.contactus-container .send-msg-btn, .send-msg-btn:hover, .send-msg-btn:active{
  font-family: 'Poppins', sans-serif;
  background-color: #00BF63 !important;
  border-color: #00BF63 !important;
  border-radius: 12px !important;
  font-weight: 400 !important;
  padding: 8px 15px !important;
}


.asterisk {
  color: red;
    position: relative;
    top: -39px;
    right: -101px;
    font-size: 16px;
}

.asterisk-textarea{
  color: red;
  position: relative;
  top: -185px;
  right: -124px;
  font-size: 16px;
}

.contact-left-card, .contact-right-card{
  min-height: 505px;
}








@media screen and (max-width:767px){
  .page-wrapper {
    margin-top: 140px !important;
  }
}

@media screen and (min-width:992px){

  .registration-container .card{
    padding: 30px 90px 30px 90px;
  }

}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #9ac7b1;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-logo{
  height: 40px !important;
  width: auto;
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer-logo-description{
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: rgba(21, 0, 53, 1);

}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.social-links-container{
  margin-top:35px;
}

.social-links-container .social-icon{
  height: 20px;
}

.social-links-container li{
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:#00BF63 !important;
  border-radius: 50%;
}

.footer-heading{
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: rgba(21, 0, 53, 1);
  margin-bottom: 25px;
}

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

.q-link-li{

  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  margin-bottom: 20px;

}


.footer .address-info{

font-size: 18px;
font-weight: 400;
line-height: 18px;
text-align: left;
color: rgba(21, 0, 53, 1);


}


.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand-text{
  color:#00BF63 !important;
  font-weight: 500 !important;
}

.footer .brand-text span{
  color:#1A1A1A !important;
  font-weight: 500 !important;
}

.footer .navbar-link{

  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  text-align: left;
  color: rgba(21, 0, 53, 1);

}



@media screen and (max-width:500px){
  .footer-logo{
    height:55px !important;
  }
  .social-icon{
    font-size:22px !important;
  }
  .footer-contact-text {
     font-size: 12px !important;
  }
  .footer-contact-text span {
  font-weight: 700 !important;
  font-size: 11px !important;
   }
}

@media screen and (max-width:379px){
  .social-icon-col{
    margin-top: -16px !important;
   }
}

.social-icon{
  color:#191A19;
  font-size:32px;
}

.footer-contact-text{
  color:#191A19;
  font-size:15px;
  font-weight:500;
  font-family: 'Poppins', sans-serif !important;

}

.footer-contact-text span{
   font-weight:800 ;
   font-size:17px ;
}






.hero-large-text{
  line-height: 67px !important;
  font-size: 44px !important;
  font-weight: 700 !important;
  color: rgba(21, 0, 53, 1) !important;
}
.hero-large-text span{
  color: #00BF63 !important;
}

.section-header h2 {
text-transform: capitalize;
font-size: 32px !important;
font-weight: 700 !important;
color: #00BF63 !important;
}
.section-header p{
font-family: 'Poppins', sans-serif !important;
font-weight: 600 !important;
}

.section-header h2:before{
content: '';
position: relative;
display: inline-block;
top: -9px;
left: -18px;
height: 2px;
width: 65px;
border-radius: 4px;
background-color: #00BF63;
}
.section-header h2:after{
content: '';
position: relative;
display: inline-block;
top: -9px;
left: 13px;
height: 2px;
width: 65px;
border-radius: 4px;
background-color: #00BF63;
}

.business-section .bus-heading{
font-size: 48px;
font-weight: 700;
line-height: 64px;
letter-spacing: -0.06em;
text-align: left;
color: rgba(21, 0, 53, 1);

}

.business-section .bus-description{
font-size: 18px;
font-weight: 500;
line-height: 32px;
letter-spacing: -0.02em;
text-align: left;
color: rgba(92, 95, 110, 1);
margin-top: 15px;
margin-bottom: 35px;
}

@media screen and (max-width:500px){
  .YUGDF-CARD-heading{
    font-size: 24px !important;
  }
}

.btn-outline, .btn-outline:hover, .btn-outline:active{
  border: 2px solid #00BF63 !important;
  color:#00BF63 !important;
  border-radius:12px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  letter-spacing: -0.02em !important;
  text-align: center !important;
  padding: 7px 20px !important;
}

.BUS-YUGDF-CARD{
  background: rgba(255, 247, 237, 1) !important;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.02) !important;
  border-radius: 24px !important;
  border: none !important;
  padding: 15px !important;
  margin-bottom: 20px !important;
}

.YUGDF-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  width: 64px;
  padding: 20px;
  border-radius: 50%;
  background-color: #94ccb1 !important;
}

.YUGDF-avatar img {
  height: 35px;
}
.YUGDF-CARD-heading{
  color: rgba(21, 0, 53, 1) !important;
  font-size: 32px;
  font-weight: 700 !important;
  line-height: 48px !important;
  letter-spacing: -0.05em !important;
  text-align: left !important;
}

.YUGDF-CARD-description{
  color: rgba(92, 95, 110, 1);
font-size: 16px;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.02em;
text-align: left;

}

.section-heading{
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-align: left;
  color: rgba(21, 0, 53, 1);
}

@media screen and (max-width:500px){
  .section-heading {
    font-size: 30px !important;
  }
}

.section-heading span{
  color: #00BF63;
}

.app-developoment-section .app-heading{
  font-size: 42px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.05em;
  text-align: center;
  color: rgba(21, 0, 53, 1);
}

@media screen and (max-width:500px){
  .app-developoment-section .app-heading{
    font-size: 28px !important;
  }
  .app-developoment-section .app-des{
    font-size: 15px !important;
  }
}

.app-developoment-section .app-des{
font-size: 18px;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.02em;
text-align: center;
color: rgba(131, 134, 150, 1);
}

.app-developoment-section .card{
  padding: 20px 20px 0 20px !important;
}

.app-developoment-section .card-body{
  padding-bottom: 0 !important;
}

.app-developoment-section .card.first-child{
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.02);
  background: #F4EDFF;
  border: none;
  border-radius: 24px;
}

.app-developoment-section .card.last-child{
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.02);
  background: rgba(224, 247, 250, 1);
  border: none;
  border-radius: 24px;
}

.achievement-counter-section{
  background-color: #FFDFDF !important;
  padding: 80px 20%;
}

@media screen and (min-width:992px) and (max-width:1220px) {
  .achievement-counter-section{
    padding: 80px 13% !important;
  }
}

@media screen and (max-width:991px){
  .achievement-counter-section{
    padding: 80px 0px !important;
  }
}

@media screen and (min-width:568px) and (max-width:730px){
  .achievement-counter-section .CTR-img89{
    height: 45px;
  }
  .achievement-counter-section .UBD-name {
    font-size: 12px !important;
  }
  .achievement-counter-section .counter-value {
    font-size: 30px !important;
    line-height: 40px !important;
  }
}

@media screen and (max-width:567px){
  .achievement-counter-section .CTR-img89{
    height: 35px;
  }
  .achievement-counter-section .UBD-name {
    font-size: 10px !important;
  }
  .achievement-counter-section .counter-value {
    font-size: 23px !important;
    line-height: 30px !important;
  }
  .achievement-counter-section {
    padding: 50px 0px !important;
  }
  #counter-section{
    padding: 10px 0 !important;
  }
}

.achievement-counter-section .UBD-name{
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: rgba(21, 0, 53, 1);
}

.achievement-counter-section .counter-value{
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color:#00BF63;
}

.achievement-counter-section .col-lg-3{
  border-right: 2px solid #E1D1D1;
}

.achievement-counter-section .col-lg-3:last-child{
  border: none !important;
}

/* Portfolio Section */

.section-indicator-XP43D{
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  color:#00BF63;
}

.transparent-card{
  border: none !important;
}

.portfolio-section .gx-5 {
  --bs-gutter-x: 5rem !important;
}

.portfolio-section .portfolio-row{
  margin-top: 90px;
}

.portfolio-section .portfolio-inner-head{
    font-size: 22.82px;
    font-weight: 700;
    line-height: 22.82px;
    text-align: left;
    margin-top: 40px;
}

.portfolio-section .portfolio-description{
  font-size: 15.21px;
  font-weight: 400;
  line-height: 15.21px;
  text-align: left;
  padding-top: 7px;
  color: rgba(92, 95, 110, 1);

}

.section-sub-heading{

  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: left;

}

/* === Our Team === */

.our-team-card{
  border: none !important;
  border-radius: 16px;
}

.our-team-img{
  border-radius: 16px;
  width: 100%;
  min-height: 350px;
  max-height: 340px;
  object-fit: cover;
}

@media screen and (max-width:500px){
  .our-team-img{
     min-height: 135px;
  }
}

/* === Contact Us Section=== */

.contactus-section{
 position: relative;
  background-image: url(../../assets/img/banner/contactus-bg.png) !important;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 960px;
}

.contactus-section .contactus-heading{
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
  color: rgba(31, 40, 79, 1);
}

@media screen and (max-width:500px){
  .contactus-section .contactus-heading{
    font-size: 33px !important;
  }
}


.contactus-section .contactus-info-col{
  position: absolute;
  bottom: 50%;
}

.contactus-section .form-column{
  display: flex;
  position: absolute;
  top: 19%;
  right: 9%;
  justify-content: end;
}

.contactus-section .form-column .form-card{
  padding: 20px;
  max-width: 65%;
  border: none !important;
  border-radius: 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}
.contactus-section .form-column .form-label{
  font-size: 13px;
  font-weight: 500;
  line-height: 12px;
  text-align: left;
  color: rgba(131, 134, 150, 1);
  }

  .contactus-section .form-column .form-control::placeholder{

font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;
color: rgba(131, 134, 150, 1);

  }

.contactus-section .form-column .form-card .form-control{
  border: 1px solid rgba(183, 191, 199, 1) !important;
   border-radius: 8px;
   padding: 11px 10px;
}

.contactus-section .form-column .form-card .form-control:focus{
  box-shadow: none !important;
  border: 1px solid #00BF63 !important;
}

@media screen and (max-width:991px){
  .contactus-section .contactus-info-col{
    bottom: auto !important;
    top: 2% !important;
  }
  .contactus-section .form-column {
    top: 21% !important;
    right: auto !important;
    justify-content: center !important;
  }
}

@media screen and (max-width:600px){
  .contactus-section .form-column .form-card {
    max-width: 97%;
  }
}

@media screen and (max-width:479px){
  .contactus-section .form-column {
    top: 30% !important;
  }
}

.copyright-content{

  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: rgba(21, 0, 53, 1);

}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}



.slider-container {
  width: 100%;
  background-color: #FFE5E7;
  height: 100px;
  position: absolute;
  bottom: 4%;
  z-index: 500;
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  width: 100%;
}

.slider .slide-track {
  animation: marquee 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide, .slider .slide img {
  height: 100px;
  max-width: 250px;
  width: auto;
}

@media screen and (max-width:500px){
  .slider .slide, .slider .slide img{
    height: 60px !important;
  }
  .slider-container {
    height: 60px !important;
   }
}
