@font-face {
    font-family: 'Lustria';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/9oRONYodvDEyjuhOnC8zMw.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
    box-sizing: border-box;
}
body {
    background-color: #13131B;
    font-family: "Lustria", serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}
a{
    text-decoration: transparent;
}
.rv-color{
    color: #EFBF8B;
}
.scroll-top{
    scroll-margin-top: 120px;
}
.cursor-pointer{
    cursor: pointer;
}
.rv-card-txt{
    color: #EFBF8B;
    padding-top: 300px;
}
.rv-card-txt h3{
    font-size: 2rem;
    letter-spacing: 5px;
}
.rv-card-txt h2{
    font-size: 4rem;
    letter-spacing: 5px;
}
.rv-card-txt p{
    font-size: 1.2rem;
}
.header-res {
    background: #171721;
    top: 0;
    left: 0;
    height: 60px;
    transition: all 0.5s ease-out, background 0.2s ease-out;
    transition-delay: 0.2s;
    z-index: 1070;
    box-shadow: 0 0 1px 0 #a88868;
}
.rm-fix .header-res{
    background: #000;
}
.header-res.menu-opened {
    height: 100%;
    background-color: #171721;
    transition: all 0.3s ease-in, background 0.5s ease-in;
    transition-delay: 0.25s;
    overflow-y: auto !important;
    z-index: 1070;
}
.burger-menu .btn {
    top: 15px;
    right: 10px;
    width: 50px;
    cursor: pointer;
    z-index: 100;
}
.burger-menu span {
    display: block;
    width: 100%;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3);
    border-radius: 3px;
    height: 2px;
    background: #efbf8b;
    transition: all .3s;
    position: relative;
}
.burger-menu span + span {
    margin-top: 6px;
}
.menu-item-span:before{
    border: none !important;
}
.burger-menu .active span:nth-child(1) { animation: ease .7s top forwards; } .burger-menu .not-active span:nth-child(1) { animation: ease .7s top-2 forwards; } .burger-menu .active span:nth-child(2) { animation: ease .7s scaled forwards; } .burger-menu .not-active span:nth-child(2) { animation: ease .7s scaled-2 forwards; } .burger-menu .active span:nth-child(3) { animation: ease .7s bottom forwards; } .burger-menu .not-active span:nth-child(3) { animation: ease .7s bottom-2 forwards; }
@keyframes top { 0% { top: 0; transform: rotate(0); } 50% { top: 8px; transform: rotate(0); } 100% { top: 8px; transform: rotate(45deg); } } @keyframes top-2 { 0% { top: 8px; transform: rotate(45deg); } 50% { top: 8px; transform: rotate(0deg); } 100% { top: 0; transform: rotate(0deg); } } @keyframes bottom { 0% { bottom: 0; transform: rotate(0); } 50% { bottom: 8px; transform: rotate(0); } 100% { bottom: 8px; transform: rotate(135deg); } } @keyframes bottom-2 { 0% { bottom: 8px; transform: rotate(135deg); } 50% { bottom: 8px; transform: rotate(0); } 100% { bottom: 0; transform: rotate(0); } } @keyframes scaled { 50% { transform: scale(0); } 100% { transform: scale(0); } } @keyframes scaled-2 { 0% { transform: scale(0); } 50% { transform: scale(0); } 100% { transform: scale(1); } }

#logo {
    transition: transform .15s linear;
}
body.loading-active {
    overflow: hidden;
    height: 100vh;
}
#page-loading {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #161620;
    color: #EFBF8B;
    font-size: 1.25rem;
    width: 100%;
    height: 100vh;
    z-index: 1080;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 10px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loader-content img {
    max-width: 150px;
    height: auto;
    animation: spin 2s linear infinite;
}

.header{
    background: linear-gradient(to right, #12121A, #181823, #12121A);
    z-index: 1060;
}
.menu-link a{
    position: relative;
    color: #EFBF8B;
    padding: 5px;
}
.menu-link a:hover:before {
    width: 100%;
    left: 0%;
    transition: 0.2s ease-in-out;
}
.menu-link a:before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #EFBF8B;
    overflow: hidden;
    width: 0%;
    left: 50%;
    top: 40px;
    transition: 0.2s ease-in-out 0.15s;
}
.section-one{
    padding: 170px 0 50px;
}
.main-title{
    color: #EFBF8B;
    font-size: 2.5rem;
    font-style: italic;
    letter-spacing: 5px;
}
.ms-30{
    margin-left: 300px;
}




.hexagon-animate{
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
}
.hexagon-main {
    max-width: 600px;
    transform-origin: center center;
    opacity: 0;
    transform: scale(0.2);
    will-change: transform, opacity;
}
.hexagon-main.start{
    animation: hexGrow 2.8s ease-out forwards;
}
@keyframes hexGrow {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.hexagon-main.pulse-infinite {
    transform: scale(1);
    opacity: 1;
    animation: hexPulse 1.4s ease-in-out infinite alternate;
}

@keyframes hexPulse {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0.45;
        transform: scale(1);
    }
}
.logo-group{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    perspective:1000px;
}
.logo-group img{
    opacity:0;
    backface-visibility:hidden;
}
.logo-left{
    transform:translateY(-12px);
    padding-right: 3px;
}

.logo-right{
    transform:translateY(12px);
    padding-left: 2px;
}
.logo-left.show{
    animation:flipLeft 1.5s ease forwards;
}
.logo-center.show{
    animation:flipUp 1.5s ease forwards;
    animation-delay:1s;
}
.logo-right.show{
    animation:flipRight 1.5s ease forwards;
    animation-delay:2s;
}
@keyframes flipLeft{
    from{
        opacity:0;
        transform:translateY(-12px) rotateY(-90deg);
    }
    to{
        opacity:1;
        transform:translateY(-12px) rotateY(0deg);
    }
}
@keyframes flipUp{
    from{
        opacity:0;
        transform:rotateX(-90deg);
    }
    to{
        opacity:1;
        transform:rotateX(0deg);
    }
}
@keyframes flipRight{
    from{
        opacity:0;
        transform:translateY(12px) rotateY(90deg);
    }
    to{
        opacity:1;
        transform:translateY(12px) rotateY(0deg);
    }
}






.section-one .l-top{
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-left: auto;
    margin-right: auto;
    top: -112px;
    z-index: -1;
}
.section-one .l-bottom{
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-left: auto;
    margin-right: auto;
    z-index: -1;
    bottom: -798px;
}
.texture, .texture-welcome {
    background-color: #13131af2;
    height: 100vh;
}
.texture:before, .texture-welcome:before {
    content: "";
    position: absolute;
    background-image: url(../img/BG-Texture.jpg);
    width: 100%;
    height: inherit;
    z-index: -10;
}
.texture-welcome:after{
    content: "";
    position: absolute;
    background-color: #13131aed;
    width: 100%;
    height: 1080px;
    z-index: -1;
}


.page {
    position: relative;
    overflow: hidden;
}
.section-one {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease;
    opacity: 1;
    transform: translateY(0);
}
.texture-welcome {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    pointer-events: none;
}
.page.show-texture .section-one {
    opacity: 0;
    transform: translateY(-60px);
    pointer-events: none;
}
.page.show-texture .texture-welcome {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}









.section-one-grd {
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom, #13131a, #13131a00);
    position: absolute;
    top: 0;
}

.hexagon-wrapper {
    position: absolute;
    right: -15%;
    top: -100%;
    width: 850px;
    max-width: 50vw;
    display: flex;
    align-items: center;
}
.hwc{
    top: -40%;
}
.hexagon-wrapper .hexagon-img {
    width: 100%;
    height: auto;
    display: block;
}
.hexagon-wrapper .hex-line {
    position: absolute;
    right: 100%;
    top: 45%;
    min-width: 1390px;
    max-width: none;
    transform: translateY(-50%);
}
.hexagon-wrapper .l-bottom {
    position: absolute;
    bottom: -888px;
    right: 50%;
    z-index: 2;
}
.p-hex-line{
    top: 17%;
}
.purpose{
    padding-bottom: 200px;
}
.purpose:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: -70px;
    background: linear-gradient(to top, #13131B 50%, #feb47b00);
    z-index: 10;
}
.purpose-img{
    z-index: 100;
    padding-top: 140px;
    margin-right: 125px;
    margin-bottom: 75px;
}
.vision{
    max-width: 1000px !important;
    margin-bottom: 75px;
    padding-top: 100px;
}
.vision img{
    left: -55px;
}
.principles{
    background: #13131b;
    padding-top: 150px;
}
.rv-principles .num{
    font-size: .9rem;
}
.rv-principles .link{
    font-size: 2rem;
    background: linear-gradient(to bottom, #EFBF8B 40%, #896E50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
    cursor: pointer;
    margin-bottom: 20px;
}
.rv-principles .link.active{
    color: #efbf8b;
}
.rv-principles-line{
    max-height: 750px;
}
.swiper-principles {
    width: 100%;
    max-width: 750px;
    height: 750px;
    margin: 0 auto;
}
.swiper-principles:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, #13131B 35%, #feb47b00);
    z-index: 10;
}
.swiper-principles:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 250px;
    bottom: 0;
    background: linear-gradient(to top, #13131B 35%, #feb47b00);
    z-index: 10;
}
.slide-principles{
    background-color: #1A1A20;
}
.swiper-principles h3{
    background: linear-gradient(to bottom, #EFBF8B 40%, #896E50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.swiper-principles p{
    color: #EFBF8B;
}
.portfolio{
    background-image: url("../img/portfolio-bg.jpg");
}
.portfolio-cover:before{
    content: "";
    position: absolute;
    background: #13131bde;
    width: 100%;
    height: 100%;
}
.portfolio-section{
    position: relative;
    z-index: 100;
    color: #EFBF8B;
    padding: 50px 0;
}
.portfolio-section .link{
    max-width: 450px;
    padding-bottom: 15px;
    position: relative;
    transition: 1s;
}
.portfolio-section .link:before {
    background-color: #EFBF8B;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
    transition: -webkit-transform .8s cubic-bezier(.11, .82, .39, .92);
    transition: transform .8s cubic-bezier(.11, .82, .39, .92);
    transition: transform .8s cubic-bezier(.11, .82, .39, .92), -webkit-transform .8s cubic-bezier(.11, .82, .39, .92);
    transition-delay: .2s;
}
.portfolio-section .link:hover:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    transition: .5s cubic-bezier(.11, .82, .39, .92);
    transition-delay: 0s;
}
.portfolio-section .link:after {
    background-color: #EFBF8B;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    transition: -webkit-transform .8s cubic-bezier(.11, .82, .39, .92);
    transition: transform .8s cubic-bezier(.11, .82, .39, .92);
    transition: transform .8s cubic-bezier(.11, .82, .39, .92), -webkit-transform .8s cubic-bezier(.11, .82, .39, .92);
    transition-delay: 0s;
}
.portfolio-section .link:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
    transition-delay: .2s;
}
.portfolio-section .link:hover{
    color: #bf8f5c;
}
.portfolio-section .link.right:before {
    transform-origin: right;
}
.portfolio-section .link.right:hover:before {
    transform-origin: left;
}
.portfolio-section .link.right:after {
    transform-origin: left;
}
.portfolio-section .link.right:hover:after {
    transform-origin: right;
}
.portfolio-section .link.right:before{
    transform: scaleX(1);
    transform-origin: right;
}
.portfolio-section .link.right:hover:before{
    transform: scaleX(0);
    transform-origin: left;
}
.portfolio-section .link.right:after{
    transform: scaleX(0);
    transform-origin: left;
}
.portfolio-section .link.right:hover:after{
    transform: scaleX(1);
    transform-origin: right;
}
/*.portfolio-section .line{*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    background: #EFBF8B;*/
/*    opacity: .5;*/
/*    transition: .3s;*/
/*}*/
.portfolio-section  .txt{
    font-size: 1.2rem;
}
.portfolio-item:hover .line{
    opacity: 1;
}
.portfolio-t .txt{
    position: relative;
    color: #EFBF8B;
    font-size: 2rem;
    z-index: 100;
    padding-top: 150px;
}
.portfolio-t:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, #13131B 35%, #feb47b00);
    z-index: 10;
}
.portfolio-b .txt{
    position: relative;
    color: #EFBF8B;
    font-size: 1.2rem;
    z-index: 100;
    max-width: 820px;
    margin: 0 auto;
}
.portfolio-b:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    background: linear-gradient(to top, #13131B 50%, #feb47b00);
    z-index: 10;
}

@keyframes slowScaleRotate {
    0% {
        transform: scale(0.3) rotate(185deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
.portfolio-hexagon {
    opacity: 0;
    transform: scale(0.3) rotate(185deg);
}
.portfolio-hexagon.start-rotate-anim {
    animation: slowScaleRotate 2.5s ease-out forwards;
}
.portfolio-hexagon.mouse-active {
    opacity: 1;
    transform: scale(1) rotate(0deg) translate(var(--mx, 0px), var(--my, 0px));
    transition: transform 0.15s ease-out, opacity 1s ease-in-out !important;
}
.portfolio-hexagon.leaving {
    opacity: 0;
    transform: scale(0.3) rotate(185deg) translate(var(--mx, 0px), var(--my, 0px));
    transition: transform 1.2s ease-in-out, opacity 1s ease-in-out !important;
}

.index-form{
    background-image: url("../img/form-bg.jpg");
    padding: 150px 0;
    background-repeat: no-repeat;
}
.index-form .title{
    color: #EFBF8B;
    font-size: 2rem;
    margin-bottom: 70px;
}
.index-form .title .line{
    width: 100%;
    height: 1px;
    background: #EFBF8B;
    opacity: .5;
    max-width: 200px;
    margin: 0 auto;
}
.index-form .form{
    max-width: 750px;
}
.index-form .form input, .index-form .form textarea{
    background: transparent;
    color: #EFBF8B;
    border: none;
    border-bottom: 1px solid #EFBF8B;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem .75rem;
}
.index-form .form .form-floating>label{
    color: #efbf8bba;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    transform: scale(.85) translateY(-1.4rem) translateX(0rem);
}
.form-floating>textarea:focus~label::after, .form-floating>textarea:not(:placeholder-shown)~label::after{
    background: transparent;
}
.index-form .form .btn{
    color: #EFBF8B;
    font-size: 1.2rem;
    border: 1px solid #EFBF8B;
    border-radius: 1px;
    padding: 10px 50px;
    transition: .3s;
}
.index-form .form .btn:hover{
    background: #EFBF8B;
    color: #000;
}
.footer{
    color: #EFBF8B;
    font-size: 1.2rem;
}
.footer .hex{
    top: 110px;
}
.footer .title{
    font-size: 1.5rem;
}
.footer .link a{
    color: #EFBF8B;
    width: fit-content;
    margin-bottom: 15px;
}
.footer .link a:hover{
    color: #ffe4c6;
}
.footer .cr{
    font-size: 1rem;
}
.company{
    background-color: #161620;
    padding: 150px 0;
}
.company .title{
    color: #EFBF8B;
    font-size: 2.7rem;
}
.company .sub{
    color: #fff;
}
.portfolio-slider{
    border-radius: 5px;
}
.pagination{
    color: #EFBF8B;
    bottom: 15px;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 10;
}
.pagination span{
    cursor: pointer;
}
.company-title{
    color: #EFBF8B;
}
.company-title h3{
    color: #896E50;
    font-size: 2rem;
}
.company-title p{
    margin-bottom: 5px;
}
.market-title h3{
    color: #896E50;
    font-size: 1rem;
}
.market-title p{
    font-size: 1rem;
    margin-bottom: 5px;
}
.p-link{
    color: #EFBF8B;
    border: 1px solid #EFBF8B;
    border-radius: 1px;
    padding: 10px 10px;
    transition: .3s;
}
.p-link:hover {
    background: #EFBF8B;
    color: #000;
}
.pw-link{
    color: #EFBF8B;
    transition: .3s;
}
.pw-link:hover {
    color: #a98b6b;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1750px;
    }
}
@media (max-width: 1200px) {
    .purpose-img {
        margin-top: 0;
        padding-bottom: 100px;
        margin-right: 0;
    }
    .vision{
        padding-top: 200px;
    }
}
@media (max-width: 996px) {
    .main-title{
        font-size: 1.5rem;
    }
    .ms-30 {
        margin-left: 50px;
    }
    .hexagon-section{
        padding-top: 250px;
    }
    .purpose-img {
        margin-top: 0;
    }
    .footer img{
        opacity: .5;
    }
    .purpose{
        padding-bottom: 0;
    }
    .purpose:before{
        display: none;
    }
}
@media (max-width: 768px) {
    .hexagon-animate .img{
        max-width: max-content;
        width: 100%;
        padding: 30px;
    }
    .rv-card-txt{
        padding-top: 100px;
    }
    .rv-card-txt h2{
        font-size: 3rem;
    }
    .rv-card-txt h3{
        font-size: 1.5rem;
    }
    .section-one .l-top{
        top: -81px;
    }
    .vision{
        padding-top: 200px;
    }
    .section-one .l-bottom{
        bottom: -768px;
    }
    .section-one-grd{
        height: 150px;
    }
    .main-title{
        font-size: 1.5rem;
    }
    .ms-30 {
        margin-left: 100px;
    }
    .hexagon-section{
        padding-top: 100px;
    }
    .purpose-img {
        margin-top: 0;
    }
    .principles{
        padding: 150px 0 0;
    }
    .purpose-img img{
        width: 30%;
    }
    .portfolio-t .txt {
        font-size: 1.5rem;
    }
    .company .title{
        font-size: 2rem;
    }
    .footer{
        padding-top: 150px;
    }
    .company {
        padding: 150px 0 150px;
    }
    .portfolio-sections{
        height: 1500px;
    }
    .about-home{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.fp-scroller{
    overflow: hidden;
}
.two {
    background: green;
}

@keyframes detailsIn {
    0% { opacity: 0; transform: translateY(100px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes detailsOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100px);
    }
}
.portfolio-sections.anim-details-in {
    animation: detailsIn 0.8s ease-out forwards;
    display: block !important;
}
.portfolio-sections.anim-details-out {
    animation: detailsOut 0.6s ease-in forwards;
    display: block !important;
}