@font-face { font-family: "Volte"; font-style: normal; font-weight: 300; src: local("Volte Light"), url("./assets/fonts/Volte-Light.woff") format("woff"); }
@font-face { font-family: "Volte"; font-style: normal; font-weight: 400; src: local("Volte Regular"), url("./assets/fonts/Volte.woff") format("woff"); }
@font-face { font-family: "Volte"; font-style: normal; font-weight: 500; src: local("Volte Medium"), url("./assets/fonts/Volte-Medium.woff") format("woff"); }
@font-face { font-family: "Volte"; font-style: normal; font-weight: 600; src: local("Volte Semibold"), url("./assets/fonts/Volte-Semibold.woff") format("woff"); }
@font-face { font-family: "Volte"; font-style: normal; font-weight: 700; src: local("Volte Bold"), url("./assets/fonts/Volte-Bold.woff") format("woff"); }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    background-color: rgb(245, 245, 245);
    padding-top: 185px;
    font-family: "Volte", sans-serif;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: white;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 30px -20px #00000000;
    transition: .3s;
}

header.fixed-active {
    box-shadow: 0 0 50px -20px #00000070;
}

header img {
    max-width: 150px;
}

main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

main h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 35px;
}

main h2 span {
    font-weight: bold;
    font-size: 75px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 25px;
    perspective: 1000px;
}

.project-list .project-item {
    width: 100%;
    position: relative;
    will-change: transform;
}

.project-list .project-item img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 15px;
    height: 450px;
    will-change: transform;
}

.project-list .project-item .blurred-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 450px;
    border-radius: 30px;
    z-index: -1;
    background: no-repeat center/cover;
    filter: blur(31px);
    opacity: 0;
    transition: 0.4s;
}

@media only screen and (hover: hover){
    .project-list .project-item:hover .blurred-img {
        opacity: 1;
        top: 20px;
    }
}

.project-list .project-item .project-info .left .project-name {
    font-size: 35px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    max-width: 25vw;
}

.project-list .project-item .project-info {
    padding: 0 20px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.project-list .project-item .project-info .left {
    display: flex;
    flex-direction: column;
}

.project-list .project-item .project-info .left .location {
    display: flex;
    align-items: center;
}

.project-list .project-item .project-info .left .location svg {
    width: 28px;
}

.project-list .project-item .project-info .left .location span {
    color: #7f7f7f;
    font-weight: 500;
    margin-left: 5px;
}

.project-list .project-item .project-info .go-project {
    color: #000;
    font-size: 19px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 5px 30px -14px #00000000;
    transition: .3s;
}

.project-list .project-item .project-info .go-project span {
    width: 0px;
    overflow: hidden;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 7px;
    margin-top: 2px;
    opacity: 0;
}

.project-list .project-item .project-info .go-project svg {
    width: 29px;
}

@media only screen and (hover: hover){
    .project-list .project-item:hover .project-info .go-project span {
        width: 93px;
        opacity: 1;
    }
}


footer {display: flex;flex-direction: column;background: #fff;padding: 40px 15px 30px;align-items: center;margin-top: 85px;border-radius: 45px 45px 0 0;}

footer .logo {width: 185px;margin-bottom: 25px;}

footer .links {

display: flex;

flex-direction: column;
}

footer .links .link-item {

color: #000;

font-size: 22px;

position: relative;
}

footer .cc {font-size: 17px;margin-top: 35px;color: gray;}

footer .cc br { 

}
footer .links .link-item + .link-item {
    margin-top: 20px;
}

footer .links .link-item + .link-item:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    height: 1px;
    background: #0000002e;
    width: 32px;
}

footer h1 {
    font-size: 17px;
    color: gray;
    font-weight: 400;
}
main > .project-name {
    font-size: 55px;
}

main .iframe-container {overflow: hidden;border-radius: 20px;height: 640px;position: relative;}

main .iframe-container.full-iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    border-radius: 0;
}

main .iframe-container.full-iframe iframe {
    width: 100%;
    height: 100%;
}

main .iframe-container .full-screen {
    position: absolute;
    right: 6px;
    top: 6px;
    background: #000;
    width: 20px;
    height: 20px;
    display: none;
}

main .iframe-container .full-screen svg {
    position: absolute;
    width: 20px;
    height: 20px;
}

main .iframe-container .full-screen svg:nth-child(2) {
    display: none;
}

main .iframe-container.full-iframe .full-screen svg:nth-child(1) {
    display: none;
}

main .iframe-container.full-iframe .full-screen svg:nth-child(2) {
    display: block;
}

main .iframe-container iframe {
    width: 100%;
}

main .project-exp {
    font-size: 19px;
    max-width: 400px;
    color: #00000094;
    font-weight: 400;
    margin-bottom: 35px;
}

/* For iframe  */

.info-btn {
    margin: 0 !important;
    background: #000000f7;
    padding: 4px 16px;
    height: unset !important;
    border-radius: 35px;
    margin-top: 6px !important;
    opacity: .6;
    transition: .3s;}

.embed .buttons {background: none;}

.embed .spl.fullscreen {
    border-radius: 35px;
    position: relative;
    margin: 10px;
    opacity: 1 !important;
}

.embed .spl.fullscreen:before {
    content: "";
    position: absolute;
    background: #000000;
    z-index: -1;
    inset: -5px;
    border-radius: 35px;
    opacity: .5;
    transition: .3s;
}

.info-btn:hover {
    opacity: 1 !important;
    background: #000 !important;
}

.embed .spl.fullscreen:hover:before {
    opacity: 1;
}

/* For Model */

canvas {
    display: block;
}
#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #fff;
    z-index: 10;
    text-align: center;
}
#loader span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin: 0 0.2rem;
    background-color: #fff;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}
#loader span:nth-child(2) {
    animation-delay: 0.3s;
}
#loader span:nth-child(3) {
    animation-delay: 0.6s;
}
@keyframes bounce {
    0%,
    100%,
    80% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

main .model-3d {
    margin-top: 35px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

main .model-3d #model-canvas {}

main .model-3d #model-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

main .model-3d #model-container {
    width: 100%;
    height: 710px;
}

main .model-3d #model-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.project-list .project-item .indicator-3d {
    display: flex;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 0;
    background: #ffffff78;
    border-radius: 45px 0 0 45px;
    width: 80px;
    height: 33px;
    padding: 0 15px;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffffa8;
    border-right: 0;
}

.project-list .project-item .indicator-3d span {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: -2px;
}

.project-list .project-item .indicator-3d svg {
    width: 23px;
    height: 23px;
    margin-right: 5px;
}
@media only screen and (max-width: 768px){
    body {padding-top: 130px;}
    main .iframe-container .full-screen {
        display: block;
    }

main h2 {
    font-size: 20px;
}

main h2 span {
    font-size: 46px;
}

main {
    padding: 0 20px;
}

.project-list {grid-template-columns: repeat(1, 1fr);gap: 45px 25px;}

.project-list .project-item img {
    margin-bottom: 5px;
    border-radius: 20px;
    height: 250px;
}

.project-list .project-item .project-info {
    padding: 0 13px;
}

.project-list .project-item .project-info .left .project-name {
    font-size: 25px;
    max-width: 260px;
}

.project-list .project-item .project-info .left .location svg {
    width: 23px;
}

.project-list .project-item .project-info .left .location span {
    font-size: 13px;
    margin-top: 1px;
    margin-left: 4px;
}

.project-list .project-item .project-info .go-project svg {
    width: 25px;
}

.project-list .project-item .project-info .go-project span {
    font-size: 14px;
}

.project-list .project-item:hover .project-info .go-project span {
    width: 70px;
}
    header img {
    max-width: 120px;
}

header.fixed-active {
    height: 65px;
}

footer .logo {
    width: 150px;
}

footer .cc {
    font-size: 14px;
}

footer {
    padding: 30px 15px;
}
    main > .project-name {
    font-size: 34px;
}

main .project-exp {
    font-size: 17px;
    max-width: 300px;
}

main .iframe-container {height: 380px;}

main .iframe-container iframe {
    height: 380px;
}
    main .model-3d #model-container {
    height: 520px;
}
}