@font-face {
    font-family: "BwAletaNo10-L";
    src: url("../fonts/BwAletaNo10-Light.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "BwAletaNo10-R";
    src: url("../fonts/BwAletaNo10-Regular.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "PlayfairDisplay-R";
    src: url("../fonts/PlayfairDisplay-Regular.ttf") format("opentype");
    font-display: swap;
}

body {
    padding: 0;
    margin: 0;
    background: #FAF7F2;
    position: absolute;
}

body::-webkit-scrollbar {
    display: none;
}

* {
    box-sizing: border-box;
}

a,
button,
path {
    transition: 0.4s;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

picture img {
    width: 100%;
    height: auto;
    margin-bottom: -0.1vw;
}

#logo_preview {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 20;
    background: #FAF7F2;
}

#logo_preview svg {
    position: absolute;
    left: 50%;
    width: 5vw;
    opacity: 0;
    height: auto;
    top: 50%;
    transform: translate(-50%, 150%);
}

body.animating {
    height: 100vh;
    overflow: hidden;
}

.top_string {
    z-index: 12;
    height: 2.5vw;
    background: #C1B6A7;
    font-family: "BwAletaNo10-L";
    font-size: 0.9vw;
    color: #381F00;
    text-align: center;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.top_string.active {
    left: 0;
    top: 0;
    position: fixed;
}

#header {
    z-index: 12;
    margin-top: 2.5vw;
    width: 100%;
    position: absolute;
    background: #faf7f2e3;
    justify-content: center;
    padding: 2vw 5vw 2vw;
    align-items: flex-start;
    display: flex;
    align-items: center;
    height: 7vw;
}

#header.active {
    position: fixed;
    left: 0;
    top: 2vw;
}

header .logo_part {
    width: 11vw;
}

header .logo_part img {
    width: 100%;
}

header .links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88%;
}

header .links a {
    margin: 0 2.8vw 0;
    position: relative;
    color: #000;
    font-family: "BwAletaNo10-L";
    font-size: 1.2vw;
}

header .links a::before {
    content: '';
    position: absolute;
    bottom: -0.3vw;
    right: 0;
    width: 0;
    transition: 0.4s;
    height: 0.1vw;
    background: #324039;
}

header .links a:hover::before,
header .links a.active::before {
    left: 0;
    width: 100%;
}

#header+section {
    margin-top: 9.5vw;
}

.logo_mobile {
    display: none;
}

.btn {
    text-transform: uppercase;
    font-family: "PlayfairDisplay-R";
    padding: 0.6vw 1.5vw 0.7vw;
    font-size: 1.7vw;
    position: relative;
    white-space: nowrap;
    color: #E6D8C1;
    border: 0.15vw solid #A8610A;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
}

.tall_btn {
    padding: 0.8vw 0.7vw;
}

.btn::before {
    content: '';
    height: 110%;
    position: absolute;
    right: -1%;
    top: -5%;
    width: 102%;
    background: #A8610A;
    z-index: -2;
}

.btn::after {
    content: '';
    transition: 0.4s;
    height: 110%;
    position: absolute;
    right: -1%;
    top: -5%;
    width: 0;
    background: #FAF7F2;
    z-index: -1;
}

.btn:hover {
    color: #A8610A;
}

.btn:hover::after {
    left: -1%;
    width: 102%;
}

.btn.btn_active,
.catalog_request button.btn_active {
    cursor: no-drop;
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.popup_overflow {
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.4s;
    top: 0;
    position: fixed;
    left: 0;
}

.popup_overflow.active {
    visibility: visible;
    opacity: 1;
    justify-content: center;
    z-index: 302;
    cursor: pointer;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.692);
}

.popup_content {
    background: #A8610A;
    padding: 0.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.3vw;
    border-radius: 0.1vw;
    position: relative;
    cursor: default;
    min-width: 15vw;
    min-height: 7vw;
}

.popup_content .h1 {
    text-align: center;
    color: #fff;
    padding: 5vw 5vw;
    font-size: 2.3vw;
}

.popup_content iframe {
    width: 63.96vw;
    height: 36vw;
    max-width: 80vw;
    max-height: 80vh;
    z-index: 1;
}

@media(min-width:1700px) {
    .popup_content iframe {
        width: 106.76vh;
        height: 60vh;
        max-width: 80vw;
        max-height: 80vh;
    }
}

.popup_overflow .close {
    cursor: pointer;
    position: absolute;
    top: 4%;
    right: 3%;
}

.popup_overflow .close svg {
    width: 2vw;
    height: auto;
}

.popup_overflow .close path {
    fill: #fff;
    transition: 0.4s;
}

.popup_overflow .close:hover path {
    fill: #A8610A;
}

.lds-ellipsis {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

#ToTop {
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    background-color: #C1B6A7;
    width: 60px;
    border: none;
    height: 60px;
    text-align: center;
    border-radius: 12px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 8;
}

#ToTop:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 25px;
    background-color: #fff;
    transform: rotate(-40deg);
    bottom: 30px;
    left: 8px;
}

#ToTop:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 25px;
    background-color: #fff;
    transform: rotate(40deg);
    bottom: 30px;
    right: 8px;
}

#ToTop:hover {
    cursor: pointer;
    background-color: #381F00;
}

#ToTop:active {
    background-color: #000;
}

.show_btn_scroll {
    opacity: 1 !important;
    visibility: visible !important;
}

footer {
    background: #FAF7F2;
    position: relative;
    padding: 10vw 0 0;
}

.logo_footer {
    width: 17vw;
}

.lucazzi_title {
    position: absolute;
    bottom: 0vw;
    right: 11vw;
    width: 16vw;
}

.flex_menus {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 8vw;
    padding-right: 28vw;
}

.flex_menus>div {
    margin: 0 3.2vw;
    display: flex;
    flex-direction: column;
}

footer .logo_n_text {
    width: 43%;
    margin-left: 9vw;
}

footer .logo_n_text .p {
    text-align: justify;
    font-size: 1.1vw;
    line-height: 1.5;
    font-family: "BwAletaNo10-L";
    margin: 2vw 0;
}

footer .socials {
    display: flex;
    align-items: center;
}

footer .socials a {
    margin-right: 1.3vw;
}

footer .socials a:hover {
    transform: rotate(360deg);
}

footer .socials img {
    width: 2.4vw;
    height: auto;
}

.flex_menus .title {
    font-weight: bold;
    font-family: "BwAletaNo10-R";
    font-size: 1.1vw;
    letter-spacing: 0.1vw;
    margin-bottom: 1.8vw;
}

.flex_menus .links a {
    margin: 0.6vw 0;
    font-size: 1.1vw;
    font-weight: 200;
    color: #324039;
    width: max-content;
    width: fit-content;
    position: relative;
    font-family: "BwAletaNo10-L";
}

.flex_menus .links a::before {
    content: '';
    position: absolute;
    bottom: -0.15vw;
    right: 0;
    width: 0;
    transition: 0.4s;
    height: 0.1vw;
    background: #324039;
}

.flex_menus .links a:hover::before,
.flex_menus .links a.active::before {
    left: 0;
    width: 100%;
}

.bottom_row {
    position: relative;
    font-family: "BwAletaNo10-L";
    text-align: center;
    background: transparent;
    font-weight: 200;
    font-size: 1.05vw;
    color: #324039;
    padding: 2.3vw 0;
}

.bottom_row::before {
    content: '';
    height: 0.05vw;
    top: 0;
    left: 0;
    position: absolute;
    background: #E6D8C1;
    width: 100%;
}

.mobile {
    display: none !important;
}

@media(max-width:600px) {
    .mobile {
        display: block !important;
    }

    #header {
        z-index: 12;
        margin-top: 0;
        position: fixed;
        top: 0;
        left: 0;
        background: #faf7f2;
        padding: 2vw 5vw 2vw;
        height: 15vw;
    }

    header .logo_part {
        height: 100%;
    }

    header .logo_part img {
        height: 90%;
        width: auto;
    }

    .logo_mobile {
        display: block;
    }

    header .links a {
        margin: 0 2vw 0;
        font-size: 3.4vw;
    }

    header .links a::before {
        bottom: -0.8vw;
        height: 0.3vw;
    }

    #header+section {
        margin-top: 15vw;
    }

    .btn {
        padding: 1vw 2.5vw 1.3vw;
        font-size: 5vw;
        position: relative;
        color: #E6D8C1;
        border: 0.3vw solid #fff;
        background: transparent;
        border-radius: 0;
        overflow: hidden;
    }

    .tall_btn {
        padding: 1vw 3vw 1.3vw;
    }


    footer {
        background: #FAF7F2;
        position: relative;
        padding: 7vw 5vw 0;
    }

    .logo_footer {
        width: 42vw;
        margin-bottom: 3vw;
    }

    .lucazzi_title,
    footer .logo_n_text .p,
    #logo_image,
    .top_string,
    .non_mobile {
        display: none !important;
    }

    .flex_menus {
        display: block;
        padding: 0;
    }

    footer .logo_n_text {
        width: fit-content;
        margin-top: 10vw;
        float: right;
    }

    footer .socials {
        margin-top: 5vw;
        justify-content: space-around;
    }

    footer .socials a {
        margin-right: 3vw;
    }

    footer .socials img {
        width: 6vw;
        height: auto;
    }

    .flex_menus .title {
        font-size: 4.5vw;
        margin-bottom: 4vw;
    }

    .flex_menus .links {
        margin-bottom: 7vw;
    }

    .flex_menus .links a {
        margin: 1.5vw 0;
        font-size: 3.6vw;
    }

    .bottom_row {
        font-size: 3vw;
        padding: 4vw 0;
    }

    .popup_content {
        border-radius: 0.4vw;
        min-width: 34vw;
        min-height: 24vw;
    }

    .popup_content .h1 {
        padding: 9vw 7vw;
        font-size: 5.3vw;
    }

    .popup_overflow .close {
        top: 4%;
        right: 7%;
    }

    .popup_overflow .close svg {
        width: 5vw;
    }

    .popup_content iframe {
        width: 80vw;
        height: 70vh;
    }
}