:root {
  --mainBlack: #191919;
  --mainWhite: #FFFFFF;
  --mainAlwaysWhite: #FFFFFF;
  --mainRed: #ff4b4b;
  --mainGreen: #28a745;
  --mainOrange: #fd7e14;
  --mainHighlight: #09ad4e;
  --mainFontColor: #808080;
  --mainBg: #FFFFFF;
  --mainLightBg: #f6fcea;
}

::-moz-selection { /* Code for Firefox */
  color: var(--mainWhite);
  background: var(--mainHighlight);
}

::selection {
  color: var(--mainWhite);
  background: var(--mainHighlight);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--mainBlack);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body main {
  flex: 1;
}
body h1, body h2, body h3 {
  font-family: "Lora", serif;
}
body h1 {
  font-size: 40px;
  font-weight: 600;
}
body a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: var(--mainBlack);
  text-decoration: none;
}
body a:hover {
  color: var(--mainHighlight);
  text-decoration: none;
}
body a.more-link {
  font-size: 16px;
  fill: var(--mainBlack);
  color: var(--mainBlack);
  padding-bottom: 0;
  border-bottom: 2px solid var(--mainHighlight);
  display: inline-block;
  font-weight: 600;
}
body a.more-link:hover {
  padding-bottom: 2px;
}
body img {
  height: auto;
  border-radius: 0.6rem;
}
body .row {
  --bs-gutter-x: 30px !important;
}
body .more {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  border-radius: 30px 30px 30px 30px;
  padding: 10px 32px 10px 32px;
  font-size: 15px;
  font-weight: 600;
  fill: var(--mainHighlight);
  background-color: var(--mainHighlight);
  color: var(--mainBlack);
  margin-top: 10px;
  display: inline-block;
}

.error-message {
  color: var(--mainRed);
}

.text-primary {
  color: var(--mainHighlight) !important;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 0;
  width: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .logo-holder {
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 30px;
  font-weight: 600;
}
header .logo-holder a:hover {
  color: var(--mainBlack);
}
header .logo-holder img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 80px;
  margin-right: 18px;
}
header .navbar {
  left: 0;
  padding: 5px 30px;
  position: absolute;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 1;
}
header .navbar > .navbar-collapse > ul > li {
  padding: 25px 15px;
  position: relative;
}
header .navbar > .navbar-collapse > ul > li a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
header .navbar > .navbar-collapse > ul > li:hover ul {
  display: block;
}
header .navbar > .navbar-collapse > ul > li > ul {
  display: none;
  position: absolute;
  list-style: none;
  margin: 15px 0;
  padding: 20px 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--mainWhite);
  -webkit-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.08);
}
header .navbar > .navbar-collapse > ul > li > ul li {
  background-color: var(--mainWhite);
}
@media (min-width: 992px) {
  header .navbar {
    background: initial;
    position: static;
    width: auto;
    text-align: right;
  }
}
header.scrolled {
  background-color: var(--mainWhite);
}
header.scrolled .logo-holder {
  font-size: 24px;
}
header.scrolled .logo-holder img {
  height: 60px;
  margin-right: 6px;
}

footer {
  background-image: url("../img/contact.jpg");
  background-attachment: fixed;
  background-size: cover;
  padding: 50px 0;
  position: relative;
  z-index: 5;
}
footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
footer .footer-top {
  border-top: 1px solid var(--mainFontColor);
  font-size: 14px;
  color: #676f72;
}
footer .footer-top .footer-title {
  font-family: "Lora", serif;
  color: var(--mainWhite);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
footer .footer-top a {
  color: var(--mainWhite);
}
footer .footer-top a:hover {
  color: var(--mainHighlight);
}
footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-top ul li {
  display: block;
  line-height: 24px;
  margin-bottom: 10px;
}
footer .footer-top .fab {
  font-size: 20px;
  margin-right: 10px;
}
footer .footer-bottom {
  border-top: 1px solid var(--mainFontColor);
}

#toTop {
  background: var(--mainHighlight);
  border: none;
  border-radius: 1rem;
  bottom: 30px;
  color: var(--mainWhite);
  font-size: 28px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 50px;
  z-index: 100;
}
@media (min-width: 768px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}
@media (min-width: 992px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}
#toTop:focus {
  outline: none;
}

.error {
  margin-top: 200px;
  margin-bottom: 200px;
}
.error .clip {
  display: inline-block;
  margin: 20px;
  font-size: 50px;
}
.error .clip .shadow {
  width: 90px;
  height: 90px;
  background-color: var(--mainHighlight);
  border-radius: 50%;
  color: var(--mainWhite);
  line-height: 90px;
}

.card {
  border-radius: 0;
  border-color: var(--mainLightBg);
}

.pagination .page-item {
  margin: 10px;
}
.pagination .page-item.active .page-link {
  background-color: var(--mainBlack);
  color: var(--mainWhite);
}
.pagination .page-item .page-link {
  border-radius: 50%;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  background-color: var(--mainHighlight);
  color: var(--mainBlack);
  border: none;
  font-size: 18px;
  font-weight: 600;
}
.pagination .page-item .page-link:hover {
  fill: var(--mainHighlight);
  background-color: var(--mainHighlight);
}

.instagram-feed a {
  display: block;
  margin-bottom: 30px;
}
.instagram-feed a img {
  object-fit: cover;
  min-height: 300px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group .form-control {
  border-radius: 3px;
}
.form-group textarea {
  min-height: 200px;
}
.form-group.has-error .form-control {
  background-color: #ffcbcb;
}
.form-group.has-error .input-holder {
  position: relative;
}
.form-group.has-error .error-message {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 12px;
  pointer-events: none;
}

.btn {
  border: none;
  border-radius: 30px 30px 30px 30px;
  padding: 10px 32px 10px 32px;
  font-size: 15px;
  font-weight: 600;
}
.btn.btn-primary {
  fill: var(--mainWhite);
  color: var(--mainWhite);
  background-color: var(--mainHighlight);
}
.btn.btn-primary:hover {
  fill: var(--mainWhite);
  background-color: var(--mainBlack);
}
.btn.btn-black {
  background-color: var(--mainBlack);
  color: var(--mainWhite);
  border-radius: 0;
  height: 48px;
}

.newsletter .form-control {
  padding: 14px 20px;
  font-size: 14px;
  border: 2px solid #d2d2d2;
  font-weight: 600;
  height: 48px;
}

.page-main section.top {
  padding: 0;
}
.page-main section.top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-sub section.top {
  padding-bottom: 0;
}
.page-sub header {
  background-color: var(--mainWhite);
}

.profile-page .btn-sm {
  padding: 0 !important;
  width: 36px !important;
  height: 36px !important;
  text-align: center;
  line-height: 36px !important;
}
.profile-page section.top {
  background-color: var(--lightBg);
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
  margin-bottom: 30px;
}
.profile-page section.top .profile-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/contact.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.profile-page section.top .profile-header-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary) 0%, var(--info) 100%);
  opacity: 0.85;
}
.profile-page section.top h1 {
  position: relative;
  color: var(--mainBlack);
  margin: 0;
  text-align: center;
}
.profile-page .card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.3s ease-in-out;
}
.profile-page .card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.profile-page .card .card-header {
  background-color: #6c584c !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1.25rem;
  color: var(--mainWhite);
}
.profile-page .card .card-header h3 {
  margin: 0;
  font-size: 1.25rem;
}
.profile-page .table {
  margin-bottom: 0;
}
.profile-page .table th {
  border-top: none;
  font-weight: 600;
}
.profile-page .badge {
  padding: 0.5em 1em;
  font-weight: 500;
}
.profile-page .stats-card {
  text-align: center;
  background: #6c584c !important;
  position: relative;
  transition: all 0.3s ease;
}
.profile-page .stats-card .card-body {
  position: relative;
}
.profile-page .stats-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--mainWhite);
}
.profile-page .stats-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--mainWhite);
}
.profile-page .stats-card .h2 {
  font-weight: 600;
  margin: 0;
  color: var(--mainWhite);
}
.profile-page .stats-card .notification-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 193, 7, 0.9);
  color: #000;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  animation: bounce 1.5s infinite alternate;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.profile-page .stats-card .notification-badge.urgent {
  background: rgba(220, 53, 69, 0.9);
  color: #fff;
  animation: pulse-urgent 1.5s infinite;
}
.profile-page .stats-card.has-notification {
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}
.profile-page .stats-card.has-notification.payment-notification {
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}
.profile-page .stats-card.has-notification:hover {
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
}
.profile-page .stats-card.has-notification:hover.payment-notification {
  box-shadow: 0 0 30px rgba(220, 53, 69, 0.6);
}
@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}
@keyframes pulse-urgent {
  0% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.4);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: scale(1);
  }
}
@keyframes pulse-badge {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.profile-page .pulse-animation {
  animation: pulse-badge 2s infinite;
}
@media (max-width: 768px) {
  .profile-page .row {
    margin: 0;
  }
  .profile-page .card {
    margin-bottom: 1rem;
    border-radius: 0.375rem;
  }
  .profile-page .card-header {
    padding: 0.75rem 1rem;
  }
  .profile-page .card-header h3 {
    font-size: 1.1rem;
  }
  .profile-page .card-body {
    padding: 1rem;
  }
  .profile-page .table-responsive {
    border: none;
  }
  .profile-page .table-responsive .table {
    font-size: 0.875rem;
  }
  .profile-page .table-responsive .table th, .profile-page .table-responsive .table td {
    padding: 0.5rem 0.25rem;
    vertical-align: middle;
  }
  .profile-page .table-responsive .table th {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .profile-page .table-responsive .table td {
    word-break: break-word;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .profile-page .table-responsive .table thead {
    display: none;
  }
  .profile-page .table-responsive .table tbody tr {
    display: block;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .profile-page .table-responsive .table tbody td {
    display: block;
    text-align: left !important;
    border: none;
    padding: 0.375rem 0;
  }
  .profile-page .table-responsive .table tbody td:before {
    content: attr(data-label) ": ";
    font-weight: 600;
    color: #495057;
    display: inline-block;
    width: 100px;
    margin-right: 0.5rem;
  }
  .profile-page .table-responsive .table tbody td.actions {
    text-align: center !important;
    padding-top: 0.75rem;
    border-top: 1px solid #dee2e6;
    margin-top: 0.5rem;
  }
  .profile-page .table-responsive .table tbody td.actions:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .profile-page .stats-card {
    margin-bottom: 1rem;
  }
  .profile-page .stats-card .card-body {
    padding: 1.25rem 1rem;
  }
  .profile-page .stats-card i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .profile-page .stats-card h4 {
    font-size: 0.9rem;
  }
  .profile-page .stats-card .h2 {
    font-size: 1.5rem;
  }
  .profile-page .form-control,
  .profile-page .form-select,
  .profile-page input[type=text],
  .profile-page input[type=email],
  .profile-page input[type=password],
  .profile-page input[type=tel],
  .profile-page textarea {
    width: 100% !important;
    margin-bottom: 0.75rem;
  }
  .profile-page .input-group {
    width: 100% !important;
  }
  .profile-page .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  .profile-page .modal-body {
    padding: 1rem;
  }
  .profile-page .modal-body .row {
    margin-bottom: 0.75rem;
  }
  .profile-page .modal-body .row .col-form-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .profile-page .modal-body .row .form-control-plaintext {
    padding-left: 0;
    font-size: 0.9rem;
  }
  .profile-page .btn-sm {
    padding: 0.375rem 0.75rem !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.5 !important;
    margin: 0.125rem;
  }
  .profile-page .alert {
    font-size: 0.875rem;
    padding: 0.75rem;
  }
  .profile-page .text-center {
    text-align: center !important;
  }
  .profile-page .col-sm-4, .profile-page .col-sm-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
}

/**
Section styles
 */
section {
  padding-top: 50px;
  padding-bottom: 50px;
}
section.bg-gray {
  background-image: url("../img/contact.jpg");
  background-attachment: fixed;
  background-size: cover;
  padding: 50px 0;
  position: relative;
  z-index: 5;
}
section.bg-gray:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

section.slider-container {
  background-image: linear-gradient(90deg, var(--mainBg) 60%, var(--mainLightBg) 60%);
  padding: 100px 0 80px 0 !important;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.06);
}
section.slider-container .row, section.slider-container .col-12 {
  padding: 0;
  margin: 0;
}
section.slider-container .carousel-control-prev, section.slider-container .carousel-control-next {
  display: none;
}
section.slider-container .carousel-indicators li {
  background-color: var(--mainBlack);
}
section.slider-container .carousel-indicators li.active {
  background-color: var(--mainHighlight);
}
section.slider-container .carousel-item {
  display: flex;
  flex-wrap: wrap;
}
section.slider-container .carousel-item .carousel-caption {
  color: var(--mainBlack);
  text-align: left;
  padding-right: 80px;
  flex: 0 0 auto;
  width: 60%;
  position: relative;
  display: block;
  align-self: center;
  left: 0;
  right: auto;
  order: 1;
}
section.slider-container .carousel-item .carousel-caption h1, section.slider-container .carousel-item .carousel-caption h2 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
}
section.slider-container .carousel-item .carousel-caption .carousel-caption-lead {
  color: var(--mainFontColor);
  line-height: 1.5em;
  margin-bottom: 30px;
}
section.slider-container .carousel-item .image-container {
  flex: 0 0 auto;
  width: 40%;
  max-height: 530px;
  align-self: center;
  order: 2;
}
section.slider-container .carousel-item .image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.row.owl-carousel .col-12 {
  width: 100% !important;
}

/**
PageBox styles
 */
.box .inner h2 {
  margin-bottom: 20px;
}
.box .inner h2 a {
  color: var(--mainBlack);
}

.bg-orange .box {
  background-color: var(--mainLightBg);
  padding: 15px;
}
@media (min-width: 992px) {
  .bg-orange .box {
    padding: 30px;
  }
}

.has-image {
  display: flex;
  flex-wrap: wrap;
}
.has-image .main-image {
  flex: 0 0 auto;
  width: 100%;
}
.has-image .inner {
  flex: 0 0 auto;
  width: 100%;
}
.has-image.image_right .main-image {
  order: 2;
}
@media (min-width: 992px) {
  .has-image.image_right .main-image {
    width: 50%;
  }
}
.has-image.image_right .inner {
  order: 1;
}
@media (min-width: 992px) {
  .has-image.image_right .inner {
    width: 50%;
  }
}
.has-image.image_left .main-image {
  order: 1;
}
@media (min-width: 992px) {
  .has-image.image_left .main-image {
    width: 50%;
  }
}
.has-image.image_left .inner {
  order: 2;
}
@media (min-width: 992px) {
  .has-image.image_left .inner {
    width: 50%;
  }
}

.page-post {
  background-color: var(--mainBg);
}
.page-post .bg-white {
  background-color: var(--mainWhite);
}
.page-post article .lead {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.page-post article .post-date {
  line-height: 24px;
  font-weight: 600;
}
.page-post article .post-tags {
  margin-top: 20px;
}
.page-post article .post-tags a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 15px;
  padding: 5px 20px;
  font-weight: 600;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
  font-size: 14px;
  color: var(--mainBlack);
  background-color: var(--mainLightBg);
}
.page-post aside .section-title {
  font-size: 24px;
  font-family: "Lora", serif;
  font-weight: 700;
}
.page-post aside .post-list .post-item-small {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.page-post aside .post-list .post-item-small a {
  font-family: "Lora", serif;
  font-size: 15px;
  color: var(--mainBlack);
}
.page-post aside .post-list .post-item-small .post-date {
  font-size: 12px;
  line-height: 12px;
  font-weight: 300;
}
.page-post aside .post-list .post-item-small:last-of-type {
  border-bottom: 0;
}

.post-item .card-body {
  padding: 30px;
}
.post-item .post-image {
  position: relative;
}
.post-item .post-image .post-category {
  top: 32px;
  position: absolute;
  left: 0;
  background: var(--mainLightBg);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 20px 5px 10px;
  border-radius: 0 50px 50px 0;
}
.post-item .post-title a {
  color: var(--mainBlack);
  font-size: 24px;
  font-family: "Lora", serif;
  font-weight: 600;
}
.post-item .post-lead {
  color: var(--mainFontColor);
  margin-bottom: 40px;
}

.page-recipe {
  background-color: var(--mainBg);
}
.page-recipe .bg-white {
  background-color: var(--mainWhite);
}
.page-recipe article .lead {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.page-recipe article .recipe-date {
  line-height: 24px;
  font-weight: 600;
}
.page-recipe aside .section-title {
  font-size: 24px;
  font-family: "Lora", serif;
  font-weight: 700;
}
.page-recipe aside .recipe-list .recipe-item-small {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.page-recipe aside .recipe-list .recipe-item-small a {
  font-family: "Lora", serif;
  font-size: 15px;
  color: var(--mainBlack);
}
.page-recipe aside .recipe-list .recipe-item-small .post-date {
  font-size: 12px;
  line-height: 12px;
  font-weight: 300;
}
.page-recipe aside .recipe-list .recipe-item-small:last-of-type {
  border-bottom: 0;
}

.recipe-item .card-body {
  padding: 30px;
}
.recipe-item .recipe-image {
  position: relative;
}
.recipe-item .recipe-image .post-category {
  top: 32px;
  position: absolute;
  left: 0;
  background: var(--mainLightBg);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 20px 5px 10px;
  border-radius: 0 50px 50px 0;
}
.recipe-item .recipe-title a {
  color: var(--mainBlack);
  font-size: 24px;
  font-family: "Lora", serif;
  font-weight: 600;
}
.recipe-item .recipe-lead {
  color: var(--mainFontColor);
  margin-bottom: 40px;
}

/*# sourceMappingURL=style.css.map */
