.inside-header {
    display: flex;
    justify-content: space-between;

    width: 100%;
    height: 100%; 
}

.main-navigation .main-nav ul li a {
    text-transform: uppercase;
    transition: all 0.4s ease !important;
    font-weight: 300 !important;
    font-size: 16px !important;

 
    &:hover {
        color: gray !important;
    }  
}

.mas_info {
    flex: 0 0 33.33%  !important;
    text-align: left;
    cursor: pointer;

    order: -1;

    z-index: 99999999;

    p {
        width: fit-content;
        margin-bottom: 10px !important;
        transition: all 0.4s ease !important;

        &:hover {
            transform: scale(1.125);
        }
    }
}

.mas_info.popup-open p {
	color: #fff;
    font-size: 35px;
    font-weight: 200;
}

.site-logo {
    flex: 0 0 33.33%; 
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto; 
}

.main-navigation {
    flex: 0 0 33.33%; 

   .inside-navigation {
        justify-content: flex-end !important;
    }
}

@media (max-width: 768px) {
    .inside-header {
        flex-direction: column;
        align-items: center;
    }

    .mas_info, .site-logo, .main-navigation {
        flex: none;
        margin-bottom: 10px;
    }

    .main-navigation {
        text-align: center;
    }
}

#carrusel-home {
    pointer-events: auto !important;
    cursor: none;
}

#follow-circle {
    position: absolute;
    width: fit-content;
    background-color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 200 !important;
    pointer-events: none;
    text-transform: uppercase;
    transition: transform 0.4s ease-out;
    transform: scale(0); 
    z-index: 222;
}

#follow-circle span {
    text-align: center;
    padding: 10px;
    text-wrap: nowrap;

}

.scale-zero {
    transform: scale(0) !important;
}
.scale-one {
    transform: scale(1) !important;
}

/* POPUP */

.popup-overlay{
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;

	background: rgba(0,0,0,0.60);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);

	z-index: 10000;

	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}

.popup-overlay.is-open{
	opacity: 1;
	pointer-events: auto;
}

.popup-grid{
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
    overflow-y: scroll;
}

.popup-left{
	padding-block: 110px;
    padding-inline: 40px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.popup-left h1,
.popup-left h2,
.popup-left p, 
.popup-left a{
	color: #fff;
    transition: all 0.4s ease;
}

.popup-left a:hover {
	color: #ffffff93;
}

.popup-left p {
	max-width: 52ch;
	line-height: 1.6;
}

@media (max-width: 900px){
	.popup-grid{
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
    .site-header .header-image {
        width: 150px;
    }

    .inside-header {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
    }

    .inside-header > :first-child {
        justify-self: start;  
    }

    .site-logo {
        justify-self: center; 
    }

    .inside-header > :last-child {
        justify-self: end;     
    }

    .mobile-menu-control-wrapper .menu-toggle {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .has-inline-mobile-toggle #site-navigation {
        display: none;
    }

    .inside-header {
        padding-top: 20px !important;
        padding-bottom: 0px !important;
    }

    .menu-toggle {
        padding: 0 0px !important;
    }
}

