/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1da39b; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/*--------------------------------------------------------------
# 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: "Open Sans", 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: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #1da39b;
  --color-secondary: #37373f;
  --color-tertiary: #E28171;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: url(../img/lines30.png), #FFFAF7;
  background-size: auto;
}

.todo-placeholder {
  color: red !important;
  font-weight: bold;
  background-color: yellow;
  padding: 5px;
}

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

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

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 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-primary);
}
.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: "/";
}
@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: #25cec4;
  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: rgba(255, 253, 253, 0.5490196078);
  border-bottom: none;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}
@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}
.header.sticked {
  border-color: #eee;
  background: #fff;
  border-bottom: 1px solid #fff;
}
.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: rgba(29, 163, 155, 0.8);
}
@media (max-width: 1366px) {
  .header .btn-book-a-table {
    display: none;
  }
}

/*--------------------------------------------------------------
# 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: #7f7f90;
    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);
  }
  .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%;
  }
  .navbar .dropdown .dropdown ul:last-child {
    display: none;
  }
}
@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;
  background-image: url(yummy/img/psycho1.jpg);
  background-size: cover;
  background-position: center;
}
.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 .yt-legend {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.64);
  color: #fff;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(29, 163, 155, 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(29, 163, 155, 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);
}
.about .no-diffusion {
  display: grid;
  place-content: center;
  margin-top: 20px;
}

@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(29, 163, 155, 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);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
}
.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: #48ded5;
  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: 10px;
  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 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
.events .post-img img {
  transition: 0.5s;
}
.events .post-content {
  padding: 30px;
}
.events .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}
.events .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}
.events .meta i {
  font-size: 16px;
  color: var(--accent-color);
}
.events .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.events .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}
.events .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
  text-wrap-mode: nowrap;
}
.events .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}
.events .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}
.events article:hover .post-title,
.events article:hover .readmore {
  color: var(--accent-color);
}
.events article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs {
  background-color: transparent;
}
.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 .member-img img {
  width: 100%;
}
.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;
}

/*--------------------------------------------------------------
# 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: #25cec4;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .about-img {
  min-height: 500px;
}
.privacy .main-title {
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}
.privacy .main-title h2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}
.privacy .title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}
.privacy .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;
}
.privacy .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}
.privacy .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}
.privacy .content ul {
  list-style: none;
  padding: 0;
}
.privacy .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.privacy .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}
.privacy .content p:last-child {
  margin-bottom: 0;
}
.privacy .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(29, 163, 155, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.privacy .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(29, 163, 155, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.privacy .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);
}
.privacy .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;
}
.privacy .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;
  }
}
/*--------------------------------------------------------------
# Studies Section
--------------------------------------------------------------*/
.studies, .documents {
  --gray-darker: #444444;
  --gray-dark: #696969;
  --gray: #999999;
  --gray-light: #cccccc;
  --gray-lighter: #ececec;
  --gray-lightest: lighten(var(--gray-lighter),4%);
}
.studies h3, .documents h3 {
  font-size: 1.4rem;
}
.studies *,
.studies *::before,
.studies *::after, .documents *,
.documents *::before,
.documents *::after {
  box-sizing: border-box;
}
.studies html, .documents html {
  background-color: #f0f0f0;
}
.studies body, .documents body {
  color: var(--gray);
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 1rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}
.studies img, .documents img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.studies .btn, .documents .btn {
  background-color: white;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  padding: 0.5rem;
  text-transform: lowercase;
}
.studies .btn--block, .documents .btn--block {
  display: block;
  width: 100%;
}
.studies .cards, .documents .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.studies .cards__item, .documents .cards__item {
  display: flex;
  padding: 1rem;
  position: relative;
}
@media (min-width: 40rem) {
  .studies .cards__item, .documents .cards__item {
    width: 50%;
  }
}
@media (min-width: 56rem) {
  .studies .cards__item, .documents .cards__item {
    width: 33.333%;
  }
}
.studies .card, .documents .card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}
.studies .card:hover .card__image, .documents .card:hover .card__image {
  filter: contrast(100%);
}
.studies .admin-buttons, .documents .admin-buttons {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.studies .admin-buttons li, .documents .admin-buttons li {
  list-style-type: none;
}
.studies .card__content, .documents .card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}
.studies .card__image, .documents .card__image {
  width: 100%;
  background-size: contain;
  background-image: url(app/document_previews/4/uiM4vCVTCeyzd78sKC6czPUc09lwsa9BsqG6iZqU.jpg);
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}
.studies .card__image::before, .documents .card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (min-width: 40rem) {
  .studies .card__image::before, .documents .card__image::before {
    padding-top: 66.6%;
  }
}
.studies .card__image--flowers, .documents .card__image--flowers {
  background-image: url(https://unsplash.it/800/600?image=82);
}
.studies .card__image--river, .documents .card__image--river {
  background-image: url(https://unsplash.it/800/600?image=11);
}
.studies .card__image--record, .documents .card__image--record {
  background-image: url(https://unsplash.it/800/600?image=39);
}
.studies .card__image--fence, .documents .card__image--fence {
  background-image: url(https://unsplash.it/800/600?image=59);
}
.studies .card__title, .documents .card__title {
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.studies .card__text, .documents .card__text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  white-space: pre-wrap;
}
.studies .btn-book-a-table, .studies .btn-book-a-table:focus, .documents .btn-book-a-table, .documents .btn-book-a-table:focus {
  font-size: 18px;
  color: #fff;
  background: var(--color-primary);
  padding: 16px 50px;
  border-radius: 50px;
  transition: 0.3s;
}
.studies .btn-book-a-table:hover, .studies .btn-book-a-table:focus:hover, .documents .btn-book-a-table:hover, .documents .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(29, 163, 155, 0.8);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Documents Section
--------------------------------------------------------------*/
.documents .about-img {
  min-height: 500px;
}
.documents h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}
.documents .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;
}
.documents .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}
.documents .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}
.documents .content ul {
  list-style: none;
  padding: 0;
}
.documents .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.documents .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}
.documents .content p:last-child {
  margin-bottom: 0;
}
.documents .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(29, 163, 155, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.documents .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(29, 163, 155, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.documents .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);
}
.documents .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;
}
.documents .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;
  }
}
/*--------------------------------------------------------------
# Seminars Section
--------------------------------------------------------------*/
.seminars {
  --gray-darker: #444444;
  --gray-dark: #696969;
  --gray: #999999;
  --gray-light: #cccccc;
  --gray-lighter: #ececec;
  --gray-lightest: lighten(var(--gray-lighter),4%);
}
.seminars *,
.seminars *::before,
.seminars *::after {
  box-sizing: border-box;
}
.seminars html {
  background-color: #f0f0f0;
}
.seminars body {
  color: var(--gray);
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 1rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}
.seminars img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.seminars .btn {
  background-color: white;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  padding: 0.5rem;
  text-transform: lowercase;
}
.seminars .btn--block {
  display: block;
  width: 100%;
}
.seminars .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.seminars .cards__item {
  display: flex;
  padding: 1rem;
}
@media (min-width: 40rem) {
  .seminars .cards__item {
    width: 50%;
  }
}
@media (min-width: 56rem) {
  .seminars .cards__item {
    width: 33.3333%;
  }
}
.seminars .card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.seminars .card:hover .card__image {
  filter: contrast(100%);
}
.seminars .card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}
.seminars .card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}
.seminars .card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (min-width: 40rem) {
  .seminars .card__image::before {
    padding-top: 66.6%;
  }
}
.seminars .card__image--flowers {
  background-image: url(https://unsplash.it/800/600?image=82);
}
.seminars .card__image--river {
  background-image: url(https://unsplash.it/800/600?image=11);
}
.seminars .card__image--record {
  background-image: url(https://unsplash.it/800/600?image=39);
}
.seminars .card__image--fence {
  background-image: url(https://unsplash.it/800/600?image=59);
}
.seminars .card__title {
  color: var(--gray-dark);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.seminars .card__text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.seminars .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}
.seminars .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}
.seminars .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}
.seminars .content ul {
  list-style: none;
  padding: 0;
}
.seminars .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.seminars .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}
.seminars .content p:last-child {
  margin-bottom: 0;
}
.seminars .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(29, 163, 155, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.seminars .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(29, 163, 155, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.seminars .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);
}
.seminars .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;
}
.seminars .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}
.seminars .btn-book-a-table, .seminars .btn-book-a-table:focus {
  font-size: 18px;
  color: #fff;
  background: var(--color-primary);
  padding: 16px 50px;
  border-radius: 50px;
  transition: 0.3s;
}
.seminars .btn-book-a-table:hover, .seminars .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(29, 163, 155, 0.8);
}
@media (max-width: 1366px) {
  .seminars .btn-book-a-table {
    display: none;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Revisions Section
--------------------------------------------------------------*/
.revisions .about-img {
  min-height: 500px;
}
.revisions h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}
.revisions .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;
}
.revisions .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}
.revisions .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}
.revisions .content ul {
  list-style: none;
  padding: 0;
}
.revisions .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.revisions .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}
.revisions .content p:last-child {
  margin-bottom: 0;
}
.revisions .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(29, 163, 155, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.revisions .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(29, 163, 155, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.revisions .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);
}
.revisions .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;
}
.revisions .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}
.revisions .btn-book-a-table, .revisions .btn-book-a-table:focus {
  font-size: 18px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.revisions .btn-book-a-table:hover, .revisions .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(29, 163, 155, 0.8);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .btn-book-a-table, .features .btn-book-a-table:focus {
  float: right;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.features .btn-book-a-table:hover, .features .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(29, 163, 155, 0.8);
}
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  border: 1px solid #e1e1e5;
  padding: 15px;
  transition: 0.3s;
  color: #37373f;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.features .nav-link:hover {
  color: #1da39b;
}
.features .nav-link.active {
  background: #1da39b;
  color: #fff;
  border-color: #1da39b;
}
@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}
.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1da39b;
}
.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Listing Section
--------------------------------------------------------------*/
.listing {
  margin-top: 50px;
  /* ===== Career ===== */
}
.listing .career-form {
  background-color: var(--color-primary);
  border-radius: 5px;
  padding: 0 16px;
}
.listing .career-form .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  padding: 12px 15px;
  color: #fff;
}
.listing .career-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.listing .career-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.listing .career-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.listing .career-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.listing .career-form .custom-select {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  padding: 12px 15px;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  text-align: left;
  height: auto;
  background-image: none;
}
.listing .career-form .custom-select option {
  color: var(--color-secondary);
}
.listing .career-form .custom-select:focus {
  box-shadow: none;
}
.listing .career-form .select-container {
  position: relative;
}
.listing .filter-result .job-box {
  background: rgba(255, 255, 255, 0.7490196078);
  box-shadow: 0 0 35px 0 rgba(130, 130, 130, 0.2);
  border-radius: 10px;
  padding: 10px 35px;
  position: relative;
}
.listing ul {
  list-style: none;
}
.listing .list-disk li {
  list-style: none;
  margin-bottom: 12px;
}
.listing .list-disk li:last-child {
  margin-bottom: 0;
}
.listing .job-box .img-holder {
  height: 65px;
  width: 65px;
  background-color: var(--color-primary);
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 65px;
}
.listing .career-title {
  background-color: #4e63d7;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(to right, rgba(78, 99, 215, 0.9) 0%, #5a85dd 100%);
}
.listing .job-overview {
  box-shadow: 0 0 35px 0 rgba(130, 130, 130, 0.2);
  border-radius: 10px;
}
@media (min-width: 992px) {
  .listing .job-overview {
    position: sticky;
    top: 70px;
  }
}
.listing .job-overview .job-detail ul {
  margin-bottom: 28px;
}
.listing .job-overview .job-detail ul li {
  opacity: 0.75;
  font-weight: 600;
  margin-bottom: 15px;
}
.listing .job-overview .job-detail ul li i {
  font-size: 20px;
  position: relative;
  top: 1px;
}
.listing .job-overview .overview-bottom,
.listing .job-overview .overview-top {
  padding: 35px;
}
.listing .job-content {
  max-width: 90%;
  display: grid;
  grid-template-columns: minmax(auto, 250px) auto;
  grid-gap: 40px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .listing .job-content {
    max-width: 100%;
    display: block;
  }
}
.listing .job-content h5 {
  color: var(--color-tertiary);
}
.listing .job-content ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.listing .job-content ul li {
  font-weight: 600;
  opacity: 0.75;
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .listing .job-content ul li {
    border-bottom: 0;
    padding: 0;
  }
}
.listing .job-content ul li i {
  font-size: 20px;
  position: relative;
  top: 1px;
}
.listing .mb-30 {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .project-menu {
    display: none;
  }
}
.project-menu {
  z-index: 0;
}
.project-menu a {
  color: var(--color-secondary) !important;
}
.project-menu li.dropdown > a {
  color: var(--color-primary) !important;
}
.project-menu ul {
  list-style-type: none;
}
.project-menu li {
  text-decoration: none;
  padding-left: 0px;
}
.project-menu li a.active {
  color: var(--color-primary) !important;
}
.project-menu li.dropdown > a {
  font-size: 1.2em;
  font-weight: bold;
}
.project-menu li.dropdown > ul {
  padding-left: 10px;
}

.project section > .container {
  max-width: 900px;
}
.project h2 {
  padding: 20px 0;
}
.project card {
  display: block;
  /* width: 100%; */
  color: white;
  background: var(--color-primary);
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1294117647) 1px 1px 5px 2px;
  margin: 40px;
}
.project card h3 {
  font-size: 22px;
}
.project .about-img {
  min-height: 500px;
  background-image: url(yummy/img/psycho1.jpg);
  background-size: cover;
  background-position: center;
}
.project h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.project .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;
}
.project .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}
.project .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}
.project .content ul {
  list-style: none;
  padding: 0;
}
.project .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.project .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}
.project .content p:last-child {
  margin-bottom: 0;
}
.project .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(29, 163, 155, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.project .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(29, 163, 155, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.project .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);
}
.project .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;
}
.project .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;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 75vh;
  padding: 160px 0 60px 0;
  background-color: #f8f9eb;
  background-image: url("../img/fuzzy2.png");
}
.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 {
  color: #4f4f5a;
  font-weight: 400;
  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: var(--color-primary);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.2);
}
.hero .btn-book-a-table:hover {
  background: rgba(29, 163, 155, 0.8);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.45);
}
.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(29, 163, 155, 0.8);
}
.hero .rb-logo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  height: 80px;
}
@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }
  .hero .btn-get-started, .hero .btn-watch-video {
    font-size: 14px;
  }
  .hero .rb-logo {
    position: inherit;
    height: 80px;
    margin-left: calc(50% - 25px);
    margin-top: 20px;
  }
}

.news {
  padding: 40px 0;
}
.news .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;
}
@media (max-width: 640px) {
  .news .icon-wrapper {
    display: flex;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Research Hero Section
--------------------------------------------------------------*/
.research-hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 50vh;
  padding: 160px 0 60px 0;
  background-color: #f8f9eb;
  background-image: url("../img/fuzzy4.png");
}
.research-hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}
.research-hero h2 span {
  color: var(--color-primary);
}
.research-hero p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
}
.research-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: var(--color-primary);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.2);
}
.research-hero .btn-book-a-table:hover {
  background: rgba(29, 163, 155, 0.8);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.45);
}
.research-hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}
.research-hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.research-hero .btn-watch-video:hover {
  color: var(--color-primary);
}
.research-hero .btn-watch-video:hover i {
  color: rgba(29, 163, 155, 0.8);
}
@media (max-width: 640px) {
  .research-hero h2 {
    font-size: 36px;
  }
  .research-hero .btn-get-started, .research-hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Meeting Hero Section
--------------------------------------------------------------*/
.meeting-hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 35vh;
  margin-top: 90px;
  background-color: #f8f9eb;
  background-image: url("../img/seminaries/seminaries-hero-2.png");
}
.meeting-hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}
.meeting-hero h2 span {
  color: var(--color-primary);
}
.meeting-hero p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
}
.meeting-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: var(--color-primary);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.2);
}
.meeting-hero .btn-book-a-table:hover {
  background: rgba(29, 163, 155, 0.8);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.45);
}
.meeting-hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}
.meeting-hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.meeting-hero .btn-watch-video:hover {
  color: var(--color-primary);
}
.meeting-hero .btn-watch-video:hover i {
  color: rgba(29, 163, 155, 0.8);
}
@media (max-width: 640px) {
  .meeting-hero h2 {
    font-size: 36px;
  }
  .meeting-hero .btn-get-started, .meeting-hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Listing Hero Section
--------------------------------------------------------------*/
.listing-hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 50vh;
  padding: 160px 0 60px 0;
  background-color: #f8f9eb;
  background-image: url("../img/fuzzy2.png");
}
.listing-hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}
.listing-hero h2 span {
  color: var(--color-primary);
}
.listing-hero p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
}
.listing-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: var(--color-primary);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.2);
}
.listing-hero .btn-book-a-table:hover {
  background: rgba(29, 163, 155, 0.8);
  box-shadow: 0 8px 28px rgba(29, 163, 155, 0.45);
}
.listing-hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}
.listing-hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.listing-hero .btn-watch-video:hover {
  color: var(--color-primary);
}
.listing-hero .btn-watch-video:hover i {
  color: rgba(29, 163, 155, 0.8);
}
@media (max-width: 640px) {
  .listing-hero h2 {
    font-size: 36px;
  }
  .listing-hero .btn-get-started, .listing-hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  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 rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}
.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;
}

/*--------------------------------------------------------------
# Create Page Section
--------------------------------------------------------------*/
.create-page {
  margin-top: 50px;
}
