/**
* Template Name: Yummy
* Updated: Jan 30 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
@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');
/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #04539e;
  --color-secondary: #37373f;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

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

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

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 65px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

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

.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-secondary);
}

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

/*--------------------------------------------------------------
# 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: "/";
}
.demo-heading {
	margin: 0 0 30px 0; /* Adds bottom spacing */
	font-weight: bold;
	font-size: xxx-large;
}

@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: #ec2727;
  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;
  border-bottom: 1px solid #fff;
}

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

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

.header .logo img {
  max-height: 70px;
  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: #136cbc;
}

section#subscribe-section{
	/* background: #2884d9; */
}

section#subscribe-section h3{
	color: #fff;
    font-weight: 600;
    font-size: 35px;
}

section#subscribe-section p{
	color: #fff;
    font-size: 16px;
}

section#subscribe-section button.subscribe-btn{
	background: #2b5198;
    color: #fff;
}

section#subscribe-section button.subscribe-btn:hover{
	background: #244990;
    color: #fff;
}

.newsletter{
	background: #15adb7;
    padding: 15px 0;
	border-radius: 10px;
}


.searchbox-wrap {
    display: flex;
    /* width: 500px; */
    /* margin-top: 8%; */
    margin-left: auto;
    margin-right: auto;
	position: relative;
}

.searchbox-wrap input {
    flex: 1;
    padding: 25px 20px;
    font-size: 1.1em;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-radius: 10px;
    box-shadow: none;
    border: none;
    /* box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.19); */
}

.searchbox-wrap button {
   border: none;
    cursor: pointer;
    position: absolute;
    right: 6px;
    padding: 0;
    top: 3px;
    display: flex;
    border-radius: 6px;
}

.searchbox-wrap button span {
    /* margin-left: 50px; */
    padding: 24px 35px;
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background-color: #2b5198;
    border-radius: 10px;
    /* box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.19); */
}

.searchbox-wrap button span:hover {
    background-color: #254889;
    /* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.19); */
}

.social-links i{
	color: #fff;
}

.social-links i:hover{
	color: #68D585;
}

/*--------------------------------------------------------------
# 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: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #04539e;
    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: #000;
  }

  .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);
	text-decoration: underline;
  }

  .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: var(--font-secondary);
    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: 28px;
    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%, rgba(206, 18, 18, 0.4) 52%);
  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 rgba(206, 18, 18, 0.7);
  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 {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

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

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  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-style: italic;
}

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

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

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

/*--------------------------------------------------------------
# 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: #4b5073;
    border: 1px solid #30b6bd;
    border-radius: 10px;
    padding: 20px 30px;
    /* font-size: 32px; */
    z-index: 1;
    font-weight: 600;
	line-height: 33px;
    margin-bottom: 15px;
    background: #fff;
    position: relative;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2), 0 0px 20px 0 rgba(0, 0, 0, 0.19);
}

.events .event-item .description {
	position: absolute;
    color: #4b5073;
    border: 1px solid #30b6bd61;
    border-radius: 10px;
    padding: 20px 30px;
    font-weight: 700;
    margin-bottom: 15px;
    width: 90%;
    bottom: -50px;
    background: #fff;
    right: 0px;
	padding-top: 100px;
}

@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;
  }
}

@media (min-width: 1200px) and (max-width:1300px){
  .events .event-item .price{
	  min-height: 310px;
  }
	
}

.events .swiper-pagination {
  margin-top: 80px;
  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: #df1529;
  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: #ec2727;
}

@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: #df1529;
  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: #ec2727;
}

@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: 60px 0 60px 0;
  /* background-image:url(../img/banner-bg-1.jpg); */
  background:#fff;
}

.hero h2 {
  font-size: 46px;
  font-weight: 600;
  /* margin-bottom: 30px; */
  color: #30b4b1;
  font-family: var(--font-secondary);
}

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

.hero p {
  color: #4f4f5a;
  font-weight: 500;
  /* margin-bottom: 50px; */
  font-size: 30px;
}

.hero .btn-book-a-table {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 15px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.hero .btn-book-a-table:hover {
  background: #013b72;
}

.hero-img-effect {
  transition: transform 0.4s ease;
}

.hero-img-effect:hover {
  transform: scale(1.05);

}

.btn-book-a-table {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 15px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.btn-book-a-table:hover {
  background: #013b72;
}

.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: rgba(206, 18, 18, 0.8);
}

.request_demo{
	background: #04539e;
    padding: 12px;
}

.request_demo p{
	display: inline;
    color: #fff;
    font-weight: 600;
    padding: 0px 30px;
font-size: x-large;
}

.btn-outline-request{
	background: #04539e;
    color: #fff;
    padding: 7px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: 600;
	margin-left: 100px;
}

.btn-outline-request:hover{
	background: #fff;
    border: 2px solid #04539c;
    color: #04539c;
    transition: 0.3s;
}

.btn-request{
	background: #fff;
    color: #04539e;
    padding: 7px 20px;
    border: 2px solid #04539e;
    border-radius: 5px;
    font-weight: 600;
	margin-left: 25px;
}

.btn-request:hover{
	background: #04539c;
    border: 2px solid #fff;
    color: #fff;
    transition: 0.3s;
}

#features h3{
	font-size: 36px;
    font-weight: 600;
	text-align:center;
    color: #15adb7;
    font-family: var(--font-secondary);
}

#features span{
	text-align: center;
    padding: 10px 15px;
    background: #e6f3ff;
    width: 200px;
    border-radius: 50px;
    font-weight: 700;
    color: #114170;
}

#features p{
	color: #003366;
    font-size: 18px;
    font-weight: 500;
}

#features p.description{
	color: #003366;
    font-size: 16px;
}

#features h2{
	font-size: 20px;
	color: #003366;
    font-weight: 600;
	text-align:center;
    font-family: var(--font-secondary);
}

.hero2{
	width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding: 30px 0 30px 0;
    background-image: url(../img/Banner-2.jpg);
}

.hero2 h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0254a0;
  font-family: var(--font-secondary);
}

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

.hero2 p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 27px;
}

.hero2 .btn-book-a-table {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 24px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgb(40 132 215 / 27%);
}

.hero2 .btn-book-a-table:hover {
  background: #136cbc;
  box-shadow: 0 8px 28px rgb(40 132 215 / 27%);
}

#service-section h3{
	font-size: 36px;
    font-weight: 700;
	text-align:center;
    color: var(--color-primary);
    font-family: var(--font-secondary);
}

#service-section h4{
	font-size: 20px;
    font-weight: 600;
    color: #595959;
	margin-bottom: 20px;
}

#service-section ul li{
	padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #565656;
}

.closer-look h5{text-align: center;margin-bottom: 25px;color: #fff;font-size: 2.4rem;font-weight: 600;}
.closer-look p {font-size: 1.3rem;font-weight: 500;margin-bottom: 50px;text-align: center;color: #fff;}

#blog h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    font-family: var(--font-secondary);
	margin: 0;
}

#blog .btn-book-a-table {
  font-weight: 700;
  display: inline-block;
  letter-spacing: 1px;
  padding: 6px 24px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

#blog .card .card-body .card-text{
	font-size: 14px;
}

#integrated-partners h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: var(--color-primary);
    font-family: var(--font-secondary);
}
.owl-carousel .item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.sliderbackground{
	background: #f7f7fa;
    padding: 30px 0;
    border: 1px solid #DDD;
}

.features {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 50vh;
    padding: 160px 0 60px 0;
    background-image: url(../img/features-1.jpg);
    background-position: top;
}

.features h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0254a0;
    font-family: var(--font-secondary);
}

.features p {
    color: #4f4f5a;
    font-weight: 400;
    margin-bottom: 30px;
    font-size: 27px;
}

.features-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.features-info ul li {
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #565656;
}

.features-info p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 32px;
    text-align: justify;
    margin: 0;
}

.privacy-policy h5 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 20px 0;
}

.privacy-policy p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
    padding-bottom: 15px;
}

.featurebanner{
	width: 100%;
    background-size: cover;
    position: relative;
    /* min-height: 60vh; */
    padding: 30px 0 30px 0;
    background-image: url(../img/features-2.png);
}

.featurebanner h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0254a0;
  font-family: var(--font-secondary);
}

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

.featurebanner p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 27px;
}

.featurebanner .btn-book-a-table {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 24px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgb(40 132 215 / 27%);
}

.featurebanner .btn-book-a-table:hover {
  background: #136cbc;
  box-shadow: 0 8px 28px rgb(40 132 215 / 27%);
}

.owl-carousel .owl-nav.disabled{
	display: block;
}

.owl-nav .owl-prev {
  left: -42px;
  position:absolute;
  top: 40px;
  display: none !important;
}

.owl-nav .owl-next {
  right: -42px;
  position:absolute;
  top: 40px;
  display: none !important;
}

.baec {
    background: linear-gradient(90deg, #34B6B3 0%, #035CDF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.services-description span {
    text-align: center;
    padding: 10px 15px;
    background: #e6f3ff;
    width: 171px;
    border-radius: 50px;
    font-weight: 700;
    color: #114170;
    display: block;
    margin-bottom: 20px;
}

.services-description h3 {
    font-size: 36px;
    font-weight: 600;
    /* text-align: center; */
    color: #15adb7;
    font-family: var(--font-secondary);
    line-height: 50px;
    margin-bottom: 20px;
}

.services-description p{
	color: #114170;
    font-weight: 500;
    text-align: justify;
}

.maintext {
	font-weight: normal;
    font-size: 49px;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  .hero p{
	margin-bottom: 10px;
    font-size: 14px;
  }
  #features h2{
	font-size: 20px;
  }
  .hero2 h2{
	font-size: 15px;
  }
  .hero2 p{
	margin-bottom: 10px;
    font-size: 13px;
  }
  .featurebanner h2{
	font-size: 15px;
  }
  .featurebanner p{
	margin-bottom: 10px;
    font-size: 13px;
  }
  #features h3{
	  font-size: 24px;
  }
  #service-section h3{
	  font-size: 24px;
  }
  #blog h3{
	  font-size: 24px;
  }
  #integrated-partners h3{
	  font-size: 24px;
  }
  .header .btn-book-a-table, .header .btn-book-a-table:focus{
	  width: 140px;
	  margin-left: 16px;
  }
  .header .logo img{
	  max-height: 50px;
  }
  section#subscribe-section button.subscribe-btn{
	  padding: 5px !important;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	font-size: 14px;
    background-color: #1c3d6e;
    padding: 43px 0;
    color: #fff;
}

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

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

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

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

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 1px solid #595959; */
  font-size: 16px;
  color: #7d818d;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #68d585;
  border-color: #7d818d;
}

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

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.footer p a{
	color: #fff;
}

.footer p a:hover{
	color: #68d585;
}

.copyright{
	background: #1c3d6e;
    color: #fff;
}

.copyright a{
    color: #fff;
}

#closer-look {
	background: #1c3d6e;
	/* min-height: 150vh; */
}

.carousel li {
  width: 500px;
  height: 281px; 
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.carousel li p {
  color: white;
  font-weight: bold;
  font-size: 5em;
  text-align: center;
  margin-top: 1.175em;
}

.carousel .items {
  position: absolute;
}

.carousel .main-pos {
  margin-left: 2em !important;
  z-index: 3000;
  /*background-image: url('https://dl.dropbox.com/u/32649907/imgs/shadow.png');*/
}

.carousel .left-pos {
  opacity: .3;
  margin-left: -17em !important;
  z-index: 1000;
  -webkit-transform: scale(.75);
  -moz-transform: scale(.75);
  transform: scale(.75);
}

.carousel .back-pos {
  margin-left: 2em !important;
  opacity: .05;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  transform: scale(.5);
}

.carousel .right-pos {
  opacity: .3;
  margin-left:  21em !important;
  z-index: 1000;
  -webkit-transform: scale(.75);
  -moz-transform: scale(.75);
  transform: scale(.75);
}

.carousel span {
  position: relative;
  margin: 0 auto;
  left: 17em;
  top: 20em;
}

.b2bdescription{
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 0px 11px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid #f1f1f1;
    /* padding: 20px; */
    border-radius: 60px;
}

.b2bdescription p{
	padding: 20px 0px;
    margin: 0;
    border-bottom: 2px solid #f1f1f1;
    color: #003d91;
    font-weight: 700;
    text-indent: 100px;
    font-size: 18px;
    font-family: "Poppins";
}

.b2bstore h3{
	font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #15adb7;
    font-family: var(--font-secondary);
	margin-bottom: 50px;
}

.learnmore_about h3{
	font-size: 36px;
    font-weight: 600;
    /* text-align: center; */
    color: #15adb7;
    font-family: var(--font-secondary);
    line-height: 36px;
	margin-bottom: 20px;
}

.learn_products h6{
	color: #4b4f73;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
}

.learn_products p{
	color: #777777;
    font-weight: 400;
    width: 100%;
	margin-bottom: 20px;
}

.learnmore_right{
	height:100%;
	background: #1c3d6e;
	display: flex;
    align-items: center;
	position:relative;
}

.learn_bottomright{
	position: absolute;
    top: 10px;
    right: 10px;
    z-index: 0;
    width: 35%;
}

.articles{
	background: #1c3d6e;
}

.articles h3{
	color: #fff;
    text-align: center;
    font-size: 34px;
	margin-bottom: 40px;
	font-weight: 600;
}

.articles p{
	text-align: center;
    color: #fff;
    font-size: 20px;
	margin-bottom: 40px;
}

.article-card{
	background: #fff;
    border-radius: 10px;
}

.article-card img{
	border-radius: 10px 0px 0px 10px;
}

.article-card-description p.article-date{
	font-size: 14px;
    margin: 0;
    padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}

.article-card-description h4{
	color: #0270bb;
    margin: 10px 0;
}

.article-card-description{
	padding: 15px;
}

.article-card{
	background-image: url(assets/img/patternnew.png);
    background-repeat: no-repeat;
    background-position: right;
    top: 0px;
    position: relative;
}

.article-card-description p{
	margin: 0;
    font-size: 16px;
    text-align: left;
    color: #aaa8a8;
}

.article-card-description p.article-date-format2{
	font-size: 16px;
    margin: 0;
    padding: 3px;
    color: #dadada;
}

.seemore{
	padding: 10px 30px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #fff;
    font-family: "Poppins";
    font-weight: 500;
    color: #1c3d6e;
}

.requestdemoinner{
	padding: 5px 0px;
    background: #f9f7fe;
    width: 70%;
    margin: 0 auto;
	position: relative;
	border-radius: 80px 20px 20px 20px;
}

.requestdemoinner img.topleft{
	position: absolute;
    top: -32px;
    left: 60px;
}

.requestdemoinner h2{
	color: #04539e;
	/* margin-top: 90px; */ 
	font-weight: bold;
font-size: xxx-large;
    margin: 0 0 90px 0;
}

.requestdemoinner input{
	padding: 20px 40px;
}

.getstarted{
	background: #1c3d6e;
    color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid #1c3d6e;
}

.getstartedmain{
	margin: 80px;
	z-index: 1;
    position: relative;
}

.bottomright{
	position: absolute;
    bottom: 50px;
    right: -50px;
	z-index: 0;
}

.bottomleft{
	position: absolute;
    bottom: 0;
    left: 25px;
    opacity: 0.2;
    z-index: 0;
}

.bottomtop{
	position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    z-index: 1;
}






.closer-look .card {
  position: absolute;
  width: 60%;
  height: 330px;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform .4s ease;
  cursor: pointer;
}

.closer-look .maincontainer {
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.closer-look .cards {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}

.closer-look img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.closer-look #item-1:checked ~ .cards #song-3, #item-2:checked ~ .cards #song-1, #item-3:checked ~ .cards #song-2 {
  transform: translatex(-40%) scale(.8);
  opacity: .4;
  z-index: 0;
}

.closer-look #item-1:checked ~ .cards #song-2, #item-2:checked ~ .cards #song-3, #item-3:checked ~ .cards #song-1 {
  transform: translatex(40%) scale(.8);
  opacity: .4;
  z-index: 0;
}

.closer-look #item-1:checked ~ .cards #song-1, #item-2:checked ~ .cards #song-2, #item-3:checked ~ .cards #song-3 {
  transform: translatex(0) scale(1);
  opacity: 1;
  z-index: 1;
  
  img {
    box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
  }
}

.testimonialimage{
	position: absolute;
    bottom: -20px;
    right: 35px;
    width: 150px;
    border: 1px solid #30b6bd;
    border-radius: 10px;
	background:#fff;
}

.btn-close{
	--bs-btn-close-bg:url(../img/close.svg) !important;
}

.showcase{
	background: #1c3d6e;
}

.showcase h3{
	color: #fff;
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
	font-weight: 600;
}

.showcase_link{
	text-align: center;
    display: block;
    color: #fff;
    text-decoration: underline;
}

.showcase_link:hover{
	color: #15adb7;
}

.showcase .carousel-indicators{
	bottom: -50px;
}

img.showcaseimg2{
	margin-top: 60px;
}

img.showcaseimg3{
	margin-top: 120px;
}

.showcase p{
	color: #fff;
    text-align: center;
}

.testimonials p{
	text-align: left;
    color: #41466c;
    font-weight: 600;
}

.testimonials h3{
	text-align: center;
    color: #07559f;
    font-weight: 600;
    font-size: 34px;
	margin-bottom: 50px;
}

.gallery {
  background: #EEE;
}

.gallery-cell {
  width: 66%;
  height: 200px;
  margin-right: 10px;
  background: #8C8;
  counter-increment: gallery-cell;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

[data-carousel-3d] [data-prev-button] {
    position: absolute;
    height: auto !important;
    width: 15% !important;
    bottom: 16px !important;
    left: 22% !important;
    top: auto;
}

[data-carousel-3d] [data-next-button] {
    position: absolute !important;
    height: auto !important;
    width: 15% !important;
    bottom: 17px !important;
    right: 22% !important;
    top: auto;
}

.testimonial_head{
	background: #1c3d6e;
}

.testimonial_head_left h2{
	color: #19c3cd;
	text-align: center;
}

.testimonial{
            margin: 0 20px 40px;
        }
        .testimonial .testimonial-content{
            padding: 35px 25px 35px 50px;
            margin-bottom: 35px;
            background: #fff;
            position: relative;
        }
        
        .testimonial-content .testimonial-icon{
            width: 50px;
            height: 45px;
            background: #0CCA4A;
            text-align: center;
            font-size: 22px;
            color: #fff;
            line-height: 42px;
            position: absolute;
            top: 37px;
            left: -19px;
        }
        .testimonial-content .testimonial-icon:before{
            content: "";
            border-bottom: 16px solid #05A739;
            border-left: 18px solid transparent;
            position: absolute;
            top: -16px;
            left: 1px;
        }
        .testimonial .description{
            font-size: 15px;
            font-style: italic;
            color: #8a8a8a;
            line-height: 23px;
            margin: 0;
        }
        .testimonial .title{
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #525252;
            text-transform: capitalize;
            letter-spacing: 1px;
            margin: 0 0 5px 0;
        }
        .testimonial .post{
            display: block;
            font-size: 14px;
            color: #0CCA4A;
        }
        .owl-theme .owl-controls{
            margin-top: 20px;
        }
        .owl-theme .owl-controls .owl-page span{
            background: #ccc;
            opacity: 1;
            transition: all 0.4s ease 0s;
        }
        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls.clickable .owl-page:hover span{
            background: #0CCA4A;
        }


.dealerimage{
	z-index: 3;position: relative;width: 95%,padding-top:45px;
}

.baec2{
	background: linear-gradient(90deg, #34B6B3 0%, #035CDF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
	font-weight: 600;
    font-size: 7vh;
	text-align: center;
}

.request_demo_inner{
	background: #eef1f6;
    border-radius: 5px;
}

.request_demo_inner h3{
	text-align: center;
    padding: 40px 0;
    font-size: 30px;
    color: #0f3064;
}

.request_demo_inner h3 span{
	color: #e81d1d;
}

.form_submit{
	padding: 5px 20px;
    margin: 0 5px;
    border: 1px solid #0b457f;
    border-radius: 7px;
    color: #fff;
    background: #04539e;
}

.form_submit:hover{
	background:#003f7c;
	transition:0.3s;
}

.form_reset{
	margin: 0 5px;
    border: 1px solid #666565;
    border-radius: 7px;
    color: #fff;
    background: #717171;
    padding: 5px 25px;
}

.form_reset:hover{
	background:#4c4a4a;
	transition:0.3s;
}

.form_left{
	text-align:right;
}

.form_left label{
	color: #717172;
}

.form_left label span{
	color: #ff0000;
}

.form_right label{
	color: #717172;
}

.form_right input.form-control::placeholder{
	font-size: 16px;
	color: #c6c6c6;
}

.form-select{
	font-size: 16px;
	color: #c6c6c6;
}

.bi-blog::before {
    content: url(../img/blog.svg);
    display: inline-block;
    width: 16px;
    height: 16px;
}

.bi-blog:hover::before {
    content: url(../img/bloghover.svg);
    display: inline-block;
    width: 16px;
    height: 16px;
	transition:0.6s;
}

@media (min-width: 900px) and (max-width: 1400px){
	.hero h2{
		font-size: 36px;
		margin-bottom: 30px;
	}
	.hero p{
		margin-bottom: 30px;
	}
	.b2bdescription p{
		text-indent: 50px;
	}
	.article-card-description h4{
		font-size: 20px;
	}
	.article-card-description p{
		font-size: 12px;
	}
	.requestdemoinner h2{
		margin-top: 40px;
	}
	.getstartedmain{
		margin: 50px auto;
	}
	.getstarted{
		font-size: 14px;
	}
	.searchbox-wrap button span{
		padding: 24px 10px;
		display: block ruby;
		margin: 0;
	}
}

@media (min-width: 1400px) and (max-width: 1600px){
	.requestdemoinner h2{
		margin-top: 30px;
	}
}

@media (min-width: 320px) and (max-width: 675px) {
	.request_demo p {
		display: inline;
		color: #fff;
		font-weight: 600;
		font-size: 15px;
		padding: 0px 10px 0 0;
	}
	.btn-outline-request {
		background: #04539e;
		color: #fff;
		padding: 2px 5px;
		border: 1px solid #fff;
		border-radius: 5px;
		font-weight: 600;
		margin-left: 0px;
		font-size: 10px;
                padding: 10px 20px;
                font-size: small;

	}
	.btn-request {
		background: #fff;
		color: #04539e;
		padding: 3px 5px;
		border: 1px solid #04539e;
		border-radius: 5px;
		font-weight: 600;
		margin-left: 0px;
		font-size: 10px;
	}
	.learnmore_about h3{
		font-size: 24px;
		line-height: 30px;
		text-align:center;
	}
	.closer-look h5{
		font-size:20px;
		text-align:center;
	}
	section.learnmore{
		padding-top: 0;
	}
	.learn_products h6{
		text-align:center;
	}
	.learn_products p{
		width:100%;
		text-align:center;
	}
	.b2bstore h3{
		font-size: 24px;
		font-weight: 600;
		margin-bottom: 20px;
	}
	.articles h3{
		font-size: 24px;
	}
	.articles p{
		font-size: 14px;
	}
	section.requestdemo{
		padding-bottom: 10px;
	}
	section#subscribe-section h3{
		font-size: 30px;
	}
	section.b2bstore img{
		/* padding-top: 50px; */
	}
	section.b2bstore{
		padding-bottom: 20px;
	}
	.hero{
		padding-bottom:30px;
	}
	.closer-look p{
		font-size: 14px;
	}
	.b2bdescription p{
		padding: 10px 0px;
		text-indent: 20px;
		font-size: 12px;
	}
	.showcase h3{
		font-size: 16px;
	}
	.showcase p{
		font-size: 10px;
	}
	.learn_bottomright{
		top: 30px;
		right: 20px;
	}
	.events .event-item .description{
		width: 80%;
		bottom: 60px;
	}
	.events .event-item .price{
		font-size: 10px;
		line-height: 16px;
	}
	.events .event-item{
		min-height: 230px;
	}
	.article-card img{
		border-radius: 10px 10px 0px 0px;
	}
	.requestdemoinner{
		width: 100%;
		border-radius: 40px 20px 20px 20px;
	}
	.requestdemoinner img.topleft{
		left: 20px;
	}
	.requestdemoinner h2{
		margin-top: 20px;
		margin-left: 13px !important;
		font-size: 18px;
	}
	.getstartedmain{
		margin: 20px auto;
	}
.requestdemoinner input{
		padding: 10px 20px;
		width: 90%;
		margin: 0 auto;
	}
	.getstartedmain .col-lg-4{
		text-align:center;
	}
	.getstarted{
		padding:5px;
		border-radius:5px;
		width:90%;
		margin-top:10px;
		margin-left: 13px !important;
	}
	.bottomleft{
		left: 15px;
		width: 55%;
	}
	.bottomright{
		bottom: 30px;
		right: 10px;
		width: 50%;
	}
	.searchbox-wrap{
		display:block;
	}
	.searchbox-wrap input{
		padding: 10px 0;
        border-radius: 10px;
        width: 90%;
        text-indent: 12px;
	}
	.searchbox-wrap button{
		background-color: #15adb7;
		width: 90%;
		position: relative;
        display: inline-block;
        right: 0;
	}
	.searchbox-wrap button span{
		margin-left: 0px;
		padding: 10px 0px;
		display: block;
		margin-top: 10px;
	}
	.newsletter{
		padding: 24px 0;
	}
	img.showcaseimg2{
		margin-top: 0px;
	}
	img.showcaseimg3 {
		margin-top: 0px;
	}
	.events .swiper-pagination{
		margin-top:0px;
	}
	.dealerimage{
		width:100%
	}
	.services-description h3{
		font-size: 26px;
		line-height: 30px;
		text-align: center;
	}
	.services-description span{
		width: 120px;
		margin: 30px auto;
		font-size: 12px;
	}
	section.showcase{
		padding-top: 30px;
	}
	.showcase h3{
		font-weight: 600;
	}
	.articles h3{
		font-weight: 600;
	}
	.requestdemoinner h2{
		font-weight: 600;
	}
	section.showcases .container-fluid .container {
		padding-top: 0px !important;
	}
	.services-description p{
		font-size: 12px;
	}
	.maintext{
		font-size: 24px;
	}
	.testimonial_head_left h2{
		text-align:center;
	}
	[data-carousel-3d]:before{
		/* padding-top: 75%; */
	}
	.form_left{
		text-align:left;
	}
	.request_demo_inner h3{
		font-size: 20px;
	}
	.whpart-inner img {
		padding: 40px 10px;
		width: 100%;
	}
	[data-carousel-3d] [data-prev-button] {
     position: absolute !important;
      height: 100% !important;
      width: 15% !important;
      top: 70% !important;
      left: 0px !important;
    }
    [data-carousel-3d] [data-next-button] {
      position: absolute !important;
      height: 100% !important;
      width: 15% !important;
      top: 70% !important;
      right: 0px !important;
    }
	[data-carousel-3d]{
		overflow: visible;
	}
	.testimonialimage{
		width: 90px;
	}
}




  @media (max-width: 767px) {
    .getstartedmain h2 {
      margin: 0 0 20px 0;
      font-weight: bold;
      font-size: xx-large;
      padding-top: 20px;
    }
.requestdemoinner img.topleft{
width: 17% !important;
}
.testimonials h3{
    margin-bottom: 0px !important;
}
.hero-img-effect {
    max-width: 100% !important;
  }
.hero .btn-book-a-table{
    font-size: 14px;
}

  }


    

    .support-container {
      padding: 40px 20px;
    }

    .form-box {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .support-heading {
      font-size: 46px;
      font-weight: 600;
      text-align: center; 
    }

    .support-contact {
       color: #04539e;
       font-weight: bold;
       font-size: larger;
    }

    .support-contact a {
      color: #04539e;
      text-decoration: none;
    }

    .send-request-btn {
      border: none;
      padding: 14px 30px;
      text-align: center;
      color: #e60000;
      font-weight: bold;
      font-size: 15px;
      line-height: 15px;
      border-radius: 8px;
      background-color: #ffffff;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
      transition: all 0.25s ease;
      display: inline-block;
      text-transform: uppercase;
    }

    .send-request-btn:hover {
      background-color: #ffecec;
      color: #d00;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .section-heading {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 15px;
      color: #000;
      text-align: left;
    }

    .form-control {
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 5px;
    }

    .hero {
      width: 100%;
      background-size: cover;
      position: relative;
      padding: 30px 0;
      background: #fff;
    }

    .form-box form .col-md-6 input {
      margin-bottom: 12px;
    }

    .text-end.mt-3 {
      text-align: center !important;
      margin-top: 25px !important;
    }
    .form-box {
    width: 100%;
    padding: 40px 30px;
    background:#ffffff;
    background-size: 549px !important;
    float: left;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgb(217, 217, 217);
   
}
h4{ 
    z-index: 5;
    margin: 0 0 35px 0;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}

@media (max-width: 768px) {
  .support-heading{
    font-size: 37px;
  }
  .support-contact{
    font-size: small;
  }
    .logo-center {
      display: flex;
      justify-content: center;
    }
    }



