/*
Theme Name: Hello Elementor Child
Theme URI: https://wp-themes.com/hello-elementor
Author: ChildThemeWP.com
Author URI: https://childthemewp.com
Description: My WordPress Hello Elementor child theme.
Template: hello-elementor
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0.0
Text Domain: hello-elementor-child
*/

.overlay-left {
	position: relative;
}

.header-design.on-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff;
}

.header-design, .menu-wrapper, .logo-wrapper, .booking-wrapper{
	transition: 0.5s ease-in-out;
}

.header-design.on-scrolled .logo-wrapper, .header-design.on-scrolled .booking-wrapper {
    justify-content: center;
}

.header-design.on-scrolled .menu-wrapper, .header-design.on-scrolled .logo-wrapper, .header-design.on-scrolled .booking-wrapper {
    justify-content: center;
}

.logo-wrapper img {
	transition: 0.5s ease-in-out;
}

.logo-wrapper img {
    width: 180px !important;
}

.overlay-left:before {
	content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 25%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0) 75%
    );
    z-index: 1;
    pointer-events: none;
}


.overlay-left-other-color {
	position: relative;
}

.overlay-left-other-color:before {
	content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #754e0ceb 0%, #754e0ce3 25%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0) 75%);
    z-index: 1;
    pointer-events: none;
}

.header-design {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 4.26%, #FFFFFF 78.93%);
}

/* Header Menu - Popop */
.open-popup {
	cursor: pointer;
}
.popup {
    position: fixed;
    inset: 0;
    width: 100%;
	height: 300px;
    background: #ffffff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.2s ease,
        visibility 0s linear 1.2s;
    z-index: 9999;
}

.popup.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);

    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.2s ease,
        visibility 0s;
}

.popup-menu-container {
    width: 100%;
    max-width: 1280px;
}

.popup-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.popup-menu-item {
    width: calc(100% / 4 - 20px);
}

.popup-menus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

.popup-title {
    font-family: 'Belleza', Sans-serif;
    font-size: 40px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 30px;
}

.popup-menu-item ul {
    padding-left: 0;
}

.popup-menu-item ul li {
    list-style: none;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 15px;
}

.popup-menu-item ul li a {
    font-family: "DM Sans", sans-serif;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
}

.popup-menu-item ul li a:hover {
	color: #754E0C;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 16px;
    cursor: pointer;
}

/* End */