/**
* Template Name: MyResume
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* 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: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #45505b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4c0e59; /* 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. */
  --disabled-color: #cccccc;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #45505b;  /* The default color of the main navmenu links */
  --nav-hover-color: #4c0e59; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4c0e59; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.bg-primary {
  background-color: var(--accent-color) !important;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  padding: 0;
  margin: 0;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(76, 14, 89, 0.75); /*color-mix(in srgb, var(--accent-color), transparent 25%);*/
  text-decoration: none;
}

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

button {  
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

button.btn-primary {
  color: var(--contrast-color) !important;
  background: var(--accent-color) !important;
}

button.btn-primary:hover {
  background: rgba(76, 14, 89, 0.75) !important; /*color-mix(in srgb, var(--accent-color), transparent 25%);*/
}

button.btn-secondary {
  color: var(--contrast-color) !important;
  background: var(--heading-color) !important;
}

button.btn-secondary:hover {
  background: rgba(69, 80, 91, 0.75) !important; /*color-mix(in srgb, var(--accent-color), transparent 25%);*/
}

button:disabled, button.disabled, button.btn-primary:disabled, button.btn-primary.disabled {
  color: var(--contrast-color) !important;
  pointer-events: none;
  background-color: var(--disabled-color) !important;
  border-color: var(--bs-btn-disabled-border-color) !important;
  opacity: 0.5 !important;
}

p.small {
  font-size: 14px;
  font-style: italic;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .header {
    background-color: rgba(255, 255, 255, 0.95);
    border-right: 1px solid rgba(39, 40, 41, 0.1); /*color-mix(in srgb, var(--default-color), transparent 90%);*/
    width: 200px;
    left: -100%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header~main {
    margin-left: 160px;
  }

  .header~main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  background-color: rgba(76, 14, 89, 0.8); /*color-mix(in srgb, var(--accent-color), transparent 20%);*/
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: rgba(39, 40, 41, 0.08); /*color-mix(in srgb, var(--default-color), transparent 92%);*/
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}

.navmenu a:hover,
.navmenu li:hover>a {
  max-width: 100%;
}

.navmenu a:hover span,
.navmenu li:hover>a span {
  display: block;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 0 !important;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 2cap 0 rgba(82, 63, 105, 0.2);
  --bs-dropdown-min-width: 140px;
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 7px 0 0 0;
  top: 5px !important;
}

ul.dropdown-menu li:first-child {
  margin-top: 8px;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(76, 14, 89, 0.1);
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    left: 30px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

.dropdown-menu a,
.dropdown-menu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 0;
  padding: 0;
  font-size: 14px;
  border-radius: 0;
  background: none; /*color-mix(in srgb, var(--default-color), transparent 92%);*/
  height: 30px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.dropdown-menu a i,
.dropdown-menu a:focus i {
  font-size: 20px;
}

.dropdown-menu a span,
.dropdown-menu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  .dropdown-menu a,
  .dropdown-menu a:focus {
    max-width: 100%;
  }

  .dropdown-menu a span,
  .dropdown-menu a:focus span {
    display: block;
  }
}

.dropdown-menu a:hover,
.dropdown-menu .active,
.dropdown-menu .active:focus,
.dropdown-menu li:hover>a {
  color: var(--default-color);
  background: rgba(76, 14, 89, 0.1);
}

.dropdown-menu a:hover,
.dropdown-menu li:hover>a {
  max-width: 100%;
}

.modal-dialog-bottom {
  display: flex;
  align-items: end;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

/*--------------------------------------------------------------
# Global Booking
--------------------------------------------------------------*/

.booking {
  width: 95%;
  position: fixed;
  top: 25px;
  left: 2.5%;  
  z-index: 900;
  color: var(--default-color);
  background-color: var(--background-color);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);  
  padding: 15px;
  border-radius: 1.5rem;
  border: 1px solid var(--default-color);
}

@media (min-width: 992px) {
  .booking {
    width: 70%;
    left: 15%;
  }
}

.booking h2 {
  font-size: 18px;
  font-weight: 700;
}

.booking-btns {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.booking-btns:hover {
  background-color: rgba(76, 14, 89, 0.8); /*color-mix(in srgb, var(--accent-color), transparent 20%);*/
  color: var(--contrast-color);
}

.booking-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  position: fixed;
  visibility: hidden;
  padding: 10px 13px;
  opacity: 0;
  left: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  overflow: hidden;
  transition: 0.3s;
  font-size: 15px;
}

.booking-btn i {
  font-size: 20px;
  color: var(--contrast-color);
}

.booking-btn:hover {
  background: var(--nav-hover-color);
  color: var(--contrast-color);
  width: 100px;
}

.booking-btn span {
  display: none;
  padding: 0 5px 0 7px;
}

.booking-btn:hover span {
  display: block;
}

.booking-btn.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.quotation .quote-header {  
  height: 115px;
}

@media (min-width: 992px) {
  .quotation .quote-header {
    background-image: url("/assets/img/logo/casa-lou_logo_house.png");
    height: 115px;
    background-position: right;
    background-repeat: no-repeat; 
    background-size: contain;
  }
}

.quotation .quote-header p {
  margin: 0;
  font-size: 14px;
}

.quotation .small {
  font-size: 14px;
  font-style: italic;
}

.quotation h2 {  
  font-size: 18px;
  font-weight: 700;
}

.quotation h2 span {    
  font-weight: normal;
}

.quotation form {
  width: 80%;
  margin: 0 auto;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--heading-color) !important;
  font-weight: 700;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: rgba(76, 14, 89, 0.75);
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Global Cookies
--------------------------------------------------------------*/

.cookies {
  width: 95%;
  position: fixed;
  bottom: 75px;
  left: 2.5%;
  z-index: 999995;
  color: var(--default-color);
  background-color: #fdf3ff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);  
  padding: 15px;
  border-radius: 1.5rem;
  border: 1px solid var(--default-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cookies-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 22px;
  color: var(--contrast-color);
}

.cookies-btn:hover {
  background: var(--nav-hover-color);
  color: var(--contrast-color);
  width: 140px;
}

.cookies-btn span {
  display: none;
  padding-left: 7px;
  font-size: 15px;
}

.cookies-btn:hover span {
  display: block;
}

@media (min-width: 992px) {
  .cookies {
    width: 70%;
    left: 15%;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: rgba(76, 14, 89, 0.8); /*color-mix(in srgb, var(--accent-color), transparent 20%);*/
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid rgba(39, 40, 41, 0.1); /*color-mix(in srgb, var(--default-color), transparent 90%);*/
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(76, 14, 89, 0.8); /*color-mix(in srgb, var(--accent-color), transparent 20%);*/
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: rgba(39, 40, 41, 0.04); /*color-mix(in srgb, var(--default-color), transparent 96%);*/
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(39, 40, 41, 0.3); /*color-mix(in srgb, var(--default-color), transparent 70%);*/
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: rgba(39, 40, 41, 0.4); /*color-mix(in srgb, var(--default-color), transparent 60%);*/
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.7); /*color-mix(in srgb, var(--background-color), transparent 30%);*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 700;
}

.hero h3 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(39, 40, 41, 0.7); /*color-mix(in srgb, var(--default-color), transparent 30%);*/
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  .hero h3 {
    font-size: 24px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

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

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

.about .dots {
  display:inline;
}

.about .more {
  display:none;
}

@media (min-width: 992px) {
  .about .dots {
    display:none;
  }
  
  .about .more {
    display:inline;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .reviews-bookingcom {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;  
  line-height: 1;  
  border-radius: 50%;
  text-align: center;
}

.stats .reviews-bookingcom i {
  width: auto;
  height: auto;
}

.stats .reviews-casalou {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.stats .reviews-casalou .reviews-casalou-logo {
  width: 50%;
  height: 50%;
  background-image: url("/assets/img/logo/casa-lou-white.png");
  background-repeat: no-repeat; 
  background-size: contain;
}
.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: rgba(39, 40, 41, 0.8); /*color-mix(in srgb, var(--default-color), transparent 20%);*/
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: rgba(39, 40, 41, 0.5); /*color-mix(in srgb, var(--default-color), transparent 50%);*/
  font-size: 16px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

@media (max-width: 992px) {
  .portfolio .portfolio-item img {
    width: 100%;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 0;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background-color: rgba(255, 255, 255, 0.9); /*color-mix(in srgb, var(--background-color), transparent 10%);*/
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(39, 40, 41, 0.7); /*color-mix(in srgb, var(--default-color), transparent 30%);*/
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(39, 40, 41, 0.7); /*color-mix(in srgb, var(--default-color), transparent 30%);*/
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.portfolio .portfolio-details {
  position: absolute;
  left: 12px;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.6); /*color-mix(in srgb, var(--background-color), transparent 10%);*/
  padding: 15px;
}

.portfolio .portfolio-details h4 {
  font-size: 16px;
  font-weight: 600;
}

.portfolio .portfolio-details p {
  color: rgba(39, 40, 41, 0.7); /*color-mix(in srgb, var(--default-color), transparent 30%);*/
  font-size: 14px;
  padding: 0;
}

.portfolio-details span {
  font-style: italic;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Reviews Section
--------------------------------------------------------------*/
.reviews .reviews-carousel,
.reviews .reviews-slider {
  overflow: hidden;
}

.reviews .review-item .review-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.reviews .review-item .review-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
  width: 250px;
}

.reviews .review-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.reviews .review-item h4 {
  font-size: 14px;
  color: rgba(39, 40, 41, 0.6); /*color-mix(in srgb, var(--default-color), transparent 40%);*/
  margin: 0 0 10px 0;
}

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

.reviews .review-item .quote-icon-left,
.reviews .review-item .quote-icon-right {
  color: rgba(76, 14, 89, 0.5); /*color-mix(in srgb, var(--accent-color), transparent 50%);*/
  font-size: 26px;
  line-height: 0;
}

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

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

.reviews .review-item p {
  font-style: italic;
}

.reviews .swiper-wrapper {
  height: auto;
}

.reviews .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.reviews .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(39, 40, 41, 0.15); /*color-mix(in srgb, var(--default-color), transparent 85%);*/
  opacity: 1;
}

.reviews .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Guest Picture Modal */
#guestPictureModal {
  z-index: 1100 /* FGa: var(--bs-modal-zindex) = 1055 */
}
.add-review-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.add-review-btn:hover {
  background-color: rgba(76, 14, 89, 0.8); /*color-mix(in srgb, var(--accent-color), transparent 20%);*/
  color: var(--contrast-color);
}
.p-add-review-guest {
  font-size: 20px;
  font-weight: bold;
}
.add-review-star {
  cursor: pointer;
}
.add-review-star-active {
  color: #ffc107;
}
#btnLoadGuestPicture {
  position: absolute;
  bottom: 0;
  right: 0;
}
#guestPictureContainer { 
  width:125px;
  height:125px;
  overflow:none;
  display: flex;
  justify-content: center; 
  align-items: center;
}
#guestPicture {
  border: 2px solid white; 
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: rgba(76, 14, 89, 0.08); /*color-mix(in srgb, var(--accent-color), transparent 92%);*/
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .section-desc a {
  font-weight: bold;
  color: var(--default-color);
}

.contact .section-desc a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/
.loading {
  background: var(--background-color);
  transition: all 0.6s ease-out;
  width: 60px;
  height: 60px;
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;  
  animation: animate-loading 1.5s linear infinite;
  content: "";
  margin: 20px auto;
}

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

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

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 30px;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# International Telephone Input Initialization
--------------------------------------------------------------*/
.iti {
  --iti-path-flags-1x: url('/assets/vendor/intl-tel-input/img/flags.webp');
  --iti-path-flags-2x: url('/assets/vendor/intl-tel-input/img/flags@2x.webp');
  --iti-path-globe-1x: url('/assets/vendor/intl-tel-input/img/globe.webp');
  --iti-path-globe-2x: url('/assets/vendor/intl-tel-input/img/globe@2x.webp');
  width: 100%;
  color: var(--bs-body-color);
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 5;
}

.iti__search-input {
  padding: 5px;
}

.iti__country.iti__highlight:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Swal2
--------------------------------------------------------------*/
.swal2-html-container {
  padding: 1em 1em .3em !important;
}
