:root {
  --bs-primary: rgba(70, 62, 56, 0.9);
  --bs__primary: rgba(70, 62, 56, 0.9);
  --bs__secondary: rgba(194, 241, 232, 1);
  --bs__alt-color: rgba(236, 207, 169, 1);
}

.bg__secondary {
  background-color: var(--bs__secondary);
}

.bg__dark {
  background-color: var(--bs__primary);
}

.menu__brand {
  height: 50px;
  font-weight: bold;
  color: var(--bs__alt-color);
}

.menu__brand span {
  display: inline-block;
}

.menu__brand img {
  width: 150px;
  height: auto;
}

.nav-item .nav-link.active {
  color: var(--bs__alt-color);
  font-weight: 500;
}

header .header__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 5;
}

.header__overlay-dark {
  background-color: rgba(0,0,0,.25);
}

.header__overlay-gradiant {
  content: '';
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 5%, rgba(0, 0, 0, 0.3) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 5%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 5%, rgba(0, 0, 0, 0.3) 100%);
}

.header__overlay-danger-gradiant {
  content: '';
  background: -webkit-linear-gradient(left, rgba(190, 0, 0, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
  background: -o-linear-gradient(left, rgba(190, 0, 0, 0.9) 40%, rgba(190, 0, 0, 0.3) 100%);
  background: linear-gradient(to right, rgba(190, 0, 0, 0.9) 40%, rgba(190, 0, 0, 0.3) 100%);
}

header {
  position: relative;
  display: flex;
  align-items: center;
}

header.header__home {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (min-width: 1200px) {
  header.header__home {
    height: calc(100vh - 140px - 15vh);
    min-height: 640px;
  }
}

header.header__blog {
  padding-top: 30px;
  padding-bottom: 30px;
}

header.header__page {
  padding-top: 25px;
  padding-bottom: 25px;
}

header.header__page-author {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (min-width: 992px) {
  header.header__page {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}

@media (min-width: 992px) {
  header.header__page-author {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}

header .header__bg {
  background-image: url(../../assets/img/chef-armando-morales-overlay.jpg);
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

header .header__container {
  position: relative;
  z-index: 10;
  margin-top: 30px;
}

header.header__home .header__bg {
  background-color: var(--bs-light);
}

header.header__page .header__bg {
  background-color: var(--bs-light);
}

.page__title {
  color: var(--bs-light);
  font-weight: bolder;
  text-transform: capitalize;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .page__title {
    color: var(--bs-light);
    font-weight: bolder;
    text-transform: capitalize;
    font-size: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .page__title {
    font-size: 3.5rem;
  }
}

.page__subtitle {
  color: var(--bs-gray-200);
  line-height: normal;
  font-size: 1.2rem;
}

@media (min-width: 1400px) {
  .page__subtitle {
    font-size: 1.5rem;
  }
}

h1.section__title {
  font-size: 28px;
  line-height: 33px;
}

h3.section__subtitle {
  font-size: 15px;
  line-height: 19px;
}

.section__title {
  color: var(--bs-dark);
  font-weight: bolder;
  text-transform: capitalize;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .section__title {
    color: var(--bs-dark);
    font-weight: bolder;
    text-transform: capitalize;
    font-size: 2rem;
  }
}

@media (min-width: 1400px) {
  .section__title {
    font-size: 2.2rem;
  }
}

h2.section__title {
  color: var(--bs-dark);
  font-weight: bolder;
  text-transform: capitalize;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  h2.section__title {
    color: var(--bs-dark);
    font-weight: bolder;
    text-transform: capitalize;
    font-size: 2.2rem;
  }
}

@media (min-width: 1400px) {
  h2.section__title {
    font-size: 2.5rem;
  }
}

.section__subtitle {
  color: rgba(103, 92, 255, 0.9);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.section__subtitle a {
  color: rgba(103, 92, 255, 0.85);
  text-transform: capitalize;
  font-weight: bold;
  text-decoration: none;
}

.section__subtitle a:hover {
  color: rgba(103, 92, 255, 1);
  text-transform: capitalize;
  font-weight: bold;
  text-decoration: underline;
}

.section__content {
  color: var(--bs-secondary-color);
  font-size: 1.1rem;
}

@media (min-width: 1400px) {
  .section__content {
    font-size: 1.2rem;
  }
}

.text__alt-color {
  color: var(--bs__alt-color);
}

.btn__cta {
  color: var(--bs__primary);
  border: 1px solid var(--bs__primary);
  background-color: var(--bs__secondary);
  border-radius: 25px;
}

.btn__cta:focus, .btn__cta:focus-visible {
  color: var(--bs__primary);
  border: 1px solid var(--bs__primary);
  background-color: var(--bs__alt-color);
}

.btn__cta:hover {
  color: var(--bs__primary);
  border: 1px solid var(--bs__primary);
  background-color: var(--bs__alt-color);
}

.btn__cta:active, :not(.btn-check) + .btn:active {
  color: var(--bs__primary);
  border: 1px solid var(--bs__primary);
  background-color: var(--bs__secondary);
  transform: scale(1.05);
}

.bg__danger-color {
  background-color: var(--bs__alt-color);
}

.bg__pattern {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  background-image: url(../../assets/img/pattern-white-gray.png);
}

.bg__alt-color {
  background-color: rgba(103,92,255,0.9);
}

.bg__danger-color .section__title, .bg__alt-color .section__title {
  color: var(--bs-white);
}

.bg__danger-color .section__subtitle, .bg__alt-color .section__subtitle {
  color: var(--bs-light);
}

.bg__danger-color .section__content, .bg__alt-color .section__content {
  color: var(--bs-light);
}

/* Features Image */

.fit-cover {
  object-fit: cover;
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* Footer Menu */

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.btn__back-to-top {
  position: fixed;
  left: 5px;
  bottom: 5px;
  width: 50px;
  height: 50px;
  background-color: var(--bs__secondary);
  color: var(--bs__primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company__item {
  background-color: var(--bs-gray-200);
  border: 1px solid var(--bs-gray-200);
  padding: .2rem;
  gap: 6px;
}

@media (min-width: 768px) {
  .company__item {
    padding: .5rem;
  }
}

.category__item {
  /*border: 1px solid var(--bs-gray-200);*/
  /*padding: .5rem;*/
  gap: 6px;
  padding: 40px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 9;
}

.company__items {
  position: relative;
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.category__items {
  position: relative;
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.company__item img {
  max-width: 130px;
}

@media (min-width: 576px) {
  .company__item img {
    max-width: 180px;
  }
}

.card__team {
  border: 1px solid var(--bs-gray-200);
  box-shadow: 0px 7px 15px var(--bs-gray-200);
}

.card__team img {
  height: 380px;
}

.card__team .card-title {
  font-weight: bolder;
  text-transform: capitalize;
}

.card__team .card-text {
  font-weight: lighter;
}

.card__team:hover {
  background-color: var(--bs-light);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card__team:hover:before {
  opacity: 0.5;
}

.card__team:before {
  position: absolute;
  z-index: -1;
  content: '';
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 90%;
  background-color: var(--bs-light);
  opacity: 0;
  filter: blur(10px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.container.section__container {
  max-width: 970px;
}

.container.section__container-sidebar {
  max-width: 1200;
}

.header__page-with-header {
  height: 300px;
}

/* Contact Form */

.contact-app {
  min-height: 300px;
  background-color: #fff;
  /*color: var(--bs-white);*/
  border: 1px solid #ccc;
  border-radius: 7px;
  padding: 30px 15px;
}

.contact-app .form-group {
  margin-bottom: 7px;
}

.contact-app label.form-label {
  margin-left: 7px;
}

.contact-app label.required::after {
  content: '*';
  color: red;
  font-weight: normal;
  margin-right: 4px;
}

.contact-app .btn-blue-dark {
  color: #fff;
  background-color: #2A2F84;
  border: 1px solid #2A2F84;
  opacity: .9;
}

.contact-app .btn-blue-dark:hover, .btn-blue-dark:focus {
  color: #fff;
  background-color: #4DABF5;
  border: 1px solid #4DABF5;
  opacity: 1;
}

.contact-app .text-blue-light {
  color: #4DABF5;
}

.contact-app form {
  width: 100%;
  border: none;
}

.contact-app .input-group-text {
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(103,92,255,0.9);
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  align-items: start;
}

.contact-app .form-control {
  color: #212529;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.contact-app input.form-control, .contact-app select.form-select {
  border: 1px solid #ccc;
  border-radius: 4px !important;
  margin-left: 7px !important;
}

.contact-app span.input-group-text {
  /*border: 1px solid #ccc;*/
  border-radius: 4px !important;
}

.contact-app .input-group {
  margin-bottom: 20px;
}

.contact-app textarea.form-control {
  border: 1px solid #ccc;
}

.category__item-icon {
  margin-bottom: 10px;
  text-align: center;
}

.category__item-text {
  font-weight: 600;
  text-align: center;
}

.category__item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.category__item:hover {
  background-color: rgba(103, 92, 255, 0.9);
  color: var(--bs-light);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.category__item:hover:before {
  opacity: 0.5;
}

.category__item:before {
  position: absolute;
  z-index: -1;
  content: '';
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 90%;
  background-color: rgba(103, 92, 255, 0.9);
  opacity: 0;
  filter: blur(10px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

header {
  position: relative;
  display: flex;
  align-items: center;
}

header.header__page {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (min-width: 992px) {
  header.header__page {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}

.btn__alt-color {
  color: var(--bs-light);
  border: 1px solid rgba(103, 92, 255, 0.9);
  background-color: rgba(103, 92, 255, 0.9);
}

@media (min-width: 768px) {
  .article__box {
    box-shadow: var(--bs-box-shadow-sm) !important;
    border-radius: var(--bs-border-radius) !important;
    overflow: hidden;
  }
}

.menu__brand a {
  color: var(--bs-dark);
  text-decoration: none;
}

.widget .widget__title {
  color: var(--bs-white);
  font-size: 20px;
}

footer .widget ul, footer .menu ul {
  color: var(--bs-white);
  font-size: 17px;
  list-style: none;
  padding-left: 0;
}

footer .widget ul li, footer .menu ul li {
  color: var(--bs-white);
  font-size: 17px;
}

footer .widget a, footer .menu a {
  color: var(--bs-white);
  text-decoration: none;
}

footer .widget a:hover, footer .menu a:hover {
  text-decoration: underline;
}

.widget__about .widget__content {
  padding-left: 40px;
}

footer ul.menu__policy, footer ul.menu__social, footer ul.menu__pages, footer ul.menu__categories, footer ul.menu__external, footer ul.menu__policy a, footer ul.menu__social a, footer ul.menu__pages a, footer ul.menu__categories a, footer ul.menu__external a, footer ul.menu__policy li, footer ul.menu__social li, footer ul.menu__pages li, footer ul.menu__categories li, footer ul.menu__external li {
  color: var(--bs-white);
}

ul.menu__policy {
  font-size: 17px;
  list-style: none;
  padding-left: 0;
}

ul.menu__policy li {
  font-size: 17px;
}

ul.menu__policy a, ul.menu__social a, ul.menu__pages a, ul.menu__categories a, ul.menu__external a {
  text-decoration: none;
  opacity: .9;
}

ul.menu__policy a:hover, ul.menu__pages a:hover, ul.menu__categories a:hover, ul.menu__external a:hover {
  text-decoration: underline;
  opacity: 1;
}

ul.menu__social a:hover {
  text-decoration: none;
}

ul.menu__social li {
  display: inline-block;
  margin-right: 5px;
}

.wp-block-embed__wrapper {
  position: relative;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-block {
  position: relative;
  height: 360px;
  padding-top: 56.25%;
}

@media (min-width: 768px) {
  .iframe-block {
    height: 280px;
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .iframe-block {
    height: 320px;
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .iframe-block {
    height: 100%;
    padding-top: 0;
  }
}

.iframe-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card.card__related-posts {
  margin-bottom: 15px;
}

.card.card__related-posts .card-body {
  padding: 1.5rem;
}

.card.card__posts .card-body .card-title, .card.card__category-posts .card-body .card-title, .card.card__tag-posts .card-body .card-title, .card.card__related-posts .card-body .card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.card.card__posts .card-body .card-text, .card.card__category-posts .card-body .card-text, .card.card__tag-posts .card-body .card-text, .card.card__related-posts .card-body .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 1200px) {
  .card.card__related-posts {
    flex-direction: row;
    overflow: hidden;
    height: 200px;
  }
}

@media (min-width: 1200px) {
  .card.card__related-posts img {
    width: auto;
    max-width: 250px;
    border-radius: 0;
  }
}

@media (min-width: 1200px) {
  .card.card__related-posts .card-body {
    padding: 1rem;
  }
}

.modal__search .modal-dialog {
  margin: 100px auto 30px auto;
}

.modal__search .modal-content {
  padding: 0;
  border-radius: 0;
}

@media (min-width: 1200px) {
  .modal__search .modal-content {
    border-radius: 6px;
  }
}

.modal__search button.close {
  position: absolute;
  top: -100px;
  right: auto;
  left: 0;
  background: #f26322;
  color: #FFF;
  font-size: 380%;
  font-family: Arial, "sans-serif";
  line-height: 1em;
  font-weight: normal;
  width: 55px;
  height: 55px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  opacity: 1;
  z-index: 999;
  box-shadow: var(--bs-gray-100);
  border: var(--bs-gray-100);
}

.modal__search button.close svg {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  font-size: 380%;
  font-family: Arial, "sans-serif";
  line-height: 1em;
  font-weight: normal;
  width: 55px;
  height: 55px;
}

.modal__search .modal-header {
  width: auto;
  height: 40px;
  border-bottom: none;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  opacity: 1;
}

.modal__search .modal-footer {
  border: none;
}

.modal-backdrop.show {
  background-color: var(--bs-primary);
  opacity: 0.95;
}

header.header__carousel {
  position: relative;
  padding: 0;
  height: calc(100vh - 140px - 15vh);
}

header.header__carousel .carousel, .carousel .carousel-inner, .carousel .carousel-control, .carousel-inner .carousel-item, .carousel-item .slide__bg, .carousel-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.carousel .carousel-inner {
  z-index: 2;
}

.carousel-inner .carousel-item {
  z-index: 3;
}

.carousel-item .slide__bg {
  z-index: 5;
}

.carousel-item .overlay {
  z-index: 6;
}

.carousel .carousel-control {
  z-index: 7;
}

.carousel .carousel-indicators {
  z-index: 8;
}

.carousel .carousel-caption {
  z-index: 9;
}

.carousel-item .slide__bg, .carousel-item .overlay {
  background-position: center center;
  background-size: cover;
}

.overlay__gradiant {
  content: '';
  background: -webkit-linear-gradient(left, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
  background: -o-linear-gradient(left, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
}

.carousel-caption h5, .caption__title {
  color: var(--bs-light);
  font-weight: bolder;
  text-transform: capitalize;
}

.carousel-caption p, .caption__subtitle {
  color: var(--bs-gray-200);
  line-height: normal;
}

.section__about {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: white;
}

.section__page {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: white;
}

@media (min-width: 1200px) {
  .section__about {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: white;
  }
}

.section__gallery {
  background-color: rgba(0,0,0,0.25);
  padding-top: 75px;
  padding-bottom: 75px;
}

.section__services {
  padding-top: 125px;
  padding-bottom: 125px;
}

.modal-content {
  background-color: var(--bs-light);
}

.modal-header {
  border: none;
  position: absolute;
  z-index: 1;
  right: -20px;
  top: -20px;
  background-color: var(--bs__secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.modal-header .btn-close {
  padding: 0;
  margin: -2px;
}

.service__item {
  padding: 25px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.service__item img {
  max-width: 420px;
  padding: 40px;
}

.list-inline-item a:hover, .list-inline-item a:focus {
  color: var(--bs__alt-color);
}

.list-inline-item a {
  color: var(--bs__secondary);
}

.navbar-toggler-text {
  font-size: 14px;
}

h1 span {
  font-family: 'Alex Brush';
  color: #D4B563;
}

@media (min-width: 768px) {
  h1 span {
    font-size: 3.4rem;
  }
}

.nav-link {
  --bs-navbar-color: rgb(255,255,255);
  color: var(--bs-navbar-color);
}

.sc-message--text {
  background-color: #f4f4f4 !important;
  padding: 10px !important;
}

