:root{
    --primary_color: #436144; 
    --primary_color: #a4764e; 
    --secondary_color: #C9A151;

}
@font-face{
    src: url('../fonts/PlayfairDisplay.ttf');
    font-family: "PlayfairDisplay";
    font-weight: 400 900;
    font-style: normal;
}
@font-face{
    src: url('../fonts/PlayfairDisplay-Italic.ttf');
    font-family: "PlayfairDisplay-Italic";
    font-weight: 400 900;
    font-style: normal;
}
@font-face{
    src: url('../fonts/Manrope.ttf');
    font-family: "Manrope";
    font-weight: 200 800;
    font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Manrope";
    background-color: var(--primary_color);
    color: white;
}
.w_def{
    width: 90%;
    max-width: 1400px;
    margin: auto;
}
.eq, .auto_grow{
    display: flex;
}
.title{
    font-family: "PlayfairDisplay-Italic";
    font-weight: 400;
    color: #F3E9D2;
    margin-bottom: 40px;
}
p{
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 18px;
}
p.nobtm{
    margin-bottom: 0;
}
p.xl{
    font-size: 22px;
}
a, .link{
    color: #F3E9D2;
    text-decoration: underline;
    cursor: pointer;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary_color);
    color: #F3E9D2;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .flex{
    display: flex;
    gap: 30px;
    padding: 20px 0;
}
header .flex > div{
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
header .flex p {
    position: relative;
    cursor: pointer;
}
header .flex p .ico{
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 60px;
    opacity: .1;
    z-index: -1;
}
header .wrap_logo{
    flex: 0 0 auto !important;
    white-space: nowrap;
}
header .wrap_logo .logo{
    cursor: pointer;
}
.logo{
    font-family: "PlayfairDisplay-Italic";
    font-size: 30px;
    font-weight: normal;
}
.subheader_home{
    position: relative;
    display: flex;
}
.subheader_home .bck{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.subheader_home .bck::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /*background-color: rgba(0,0,0,.3);*/
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.8) 30%,
      rgba(0, 0, 0, 0.8) 60%,
      rgba(0, 0, 0, 0) 100%
    );
    z-index: 5;
}
.subheader_home .bck .full{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.subheader_home .info{
    margin-top: auto;
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
    z-index: 5;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}
.subheader_home .info h1{
    font-size: 38px;
    font-family: "PlayfairDisplay-Italic";
    font-weight: 400;
}
.subheader_home .info p{
    font-weight: 400;
}
.bck_abs{
    position: absolute;
    top: 100px;
    left: 0;
    z-index: -1;
    width: 300px;
    opacity: .2;  
}
.bck_abs.right{
    left: unset;
    right: 0;
} 
.bck_abs.sp_top{
    top: 200px;
}
.history_row{
    position: relative;
}
.history_row::before{
    content: '';
    position: absolute;
    left: 0;
    background-color: #546e52;
    background-color: #cc9462;
    border-radius: 100%;
    z-index: -1;
}
.history_row::after{
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    width: 10px;
    height: 100%;
    background-color: #546e52;
    background-color: #cc9462;
    z-index: -1;
}
.history_row:first-of-type::after{
    top: 50%;
    height: 50%;
}
.history_row:last-of-type::after{
    bottom: 50%;
    height: 50%;
}
.gallery figure{
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #546e52;
    background-color: #cc9462;
}
.gallery figure img{
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}
.bck_img{
    position: relative;
}
.bck_img .bck{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
}
.bck_img .bck img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bck_img .info{
    position: relative;
    z-index: 5;
}
footer{
    padding: 50px 0;
    background-color: #2b3e2c;
    background-color: #6d4f34;
}
footer p{
    line-height: 1.8;
    font-size: 16px;
}
footer .pnrr{
    text-align: center;
}
footer .pnrr .wrap_logos{
    background-color: white;
    display: inline-block;
}
footer .pnrr img{
    margin: 10px;
    align-self: center;
}
footer .pnrr .h_style{
    font-weight: 800;
    font-size: 20px;
}
footer .pnrr p{
    flex: 0 0 100%;
    width: 100%;
}
footer .img_attributes{
    margin-top: 20px;
    font-size: 14px;
}



