* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection{
    background: #fff;
    color: #000;
}

body {
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    padding-right: 20px;
}




@keyframes toLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes toRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes toTop {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes toBottom {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(0);
    }
}


@keyframes slideOut {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes skewIn {
    0% {
        transform: skewY(20deg);
    }
    100% {
        transform: skewY(0);
    }
}

nav *{
    animation: toLeft 3s ease-in-out forwards, toBottom 2.5s ease-out forwards, fadeIn 1s ease-in-out forwards;
}

header *{
    animation: toLeft 3s ease-in-out forwards, toTop 2.5s ease-in-out forwards, fadeIn 1s ease-in-out forwards;
}


nav {
    width: 100vw;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 30px 50px;
}

nav .left h1 {
    position: relative;
    overflow: hidden;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    width: 50px;
    height: 50px;
    color: #000;
    display: grid;
    place-items: center;
    z-index: 2;
}

nav .left h1:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaa;
    z-index: -2;
}

nav .left h1:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    animation: forwards toRight 1s ease-in-out 0.5s;
    transform: translateX(-100%);
}

nav .right ul {
    margin-right: 200px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

nav .right ul li {
    list-style: none;
    color: #ccc;
    animation: forwards fadeIn 1s, forwards slideIn 0.5s;
    transform: translateX(100px);
    opacity: 0;
    /* animation: ; */
}


nav .right ul li:nth-child(1){
    animation-delay: 1s;
}

nav .right ul li:nth-child(2){
    animation-delay: 1.1s;
}

nav .right ul li:nth-child(3){
    animation-delay: 1.2s;
}

nav .right ul li:nth-child(4){
    animation-delay: 1.3s;
}



/* Header Start */
header {
    width: 100vw;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

header .top h1 {
    font-size: 22em;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    perspective: 700px;
    /* animation: skewIn 0.5s; */
}

header .top h1 span {
    display: inline-block;
    animation: forwards fadeIn 0.5s, forwards ease-out toTop 0.5s;
    transform: translateY(100px);
    opacity: 0;
}

header .top h1 span:nth-child(1) {
    animation-delay: 0.1s;
}

header .top h1 span:nth-child(2) {
    animation-delay: 0.2s;
}

header .top h1 span:nth-child(3) {
    animation-delay: 0.3s;
}

header .top h1 span:nth-child(4) {
    animation-delay: 0.4s;
}

header .top h1 span:nth-child(5) {
    animation-delay: 0.5s;
}

header .top h1 span:nth-child(6) {
    animation-delay: 0.6s;
}



header .bottom {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
}

header .bottom .left {
    display: flex;
    gap: 30px;
    animation-duration: 3s;
}

header .bottom .left .card {
    width: 400px;
    height: 230px;
    display: flex;
    gap: 30px;
}

header .bottom .left .card .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

header .bottom .left .card .text span {
    font-size: 1em;
    font-weight: 500;
    color: #ccc;
    text-transform: uppercase;
}

header .bottom .left .card .image {
    width: 200px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    filter: brightness(0.9);
}

header .bottom .left .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .bottom .left .icon {
    padding: 0 100px;
    display: flex;
    align-items: start;
    justify-content: center;
}

header .bottom .left .icon span {
    font-size: 2em;
    padding: 20px;
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 50%;
}

header .bottom .left .h_contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    color: #bbb;
    gap: 20px;
    padding-top: 40px;
}

header .bottom .right {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    text-align: end;
    padding: 30px 0 0 0;
    height: 230px;
    font-family: "Poppins", sans-serif;
}

header .bottom .right span {
    word-spacing: 30px;
    color: #ccc;
}




.about {
    margin-top: 100px;
    width: 100vw;
    padding: 100px 70px;
    background: rgb(241 237 233);
    display: flex;
    gap: 50px;
    color: #000;
}

.about .left {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.about .left .image {
    width: 50%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}

.about .left .image img {
    height: 100%;
}

.about .right {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 100px;
}

.about .right .top {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr;
}

.about .right .top span {
    font-size: 1.5em;
    font-weight: 500;
    color: #818181;
    text-transform: uppercase;
}

.about .right .top div h1 {
    font-weight: 400;
    font-size: 3.5em;
    text-transform: capitalize;
    line-height: 105%;
}

.about .right .top h2 {
    grid-column: 1/3;
    font-size: 3.5em;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 105%;
    text-transform: capitalize;
}

.about .right .top h2:last-child {
    color: #818181;
}

.about .right .bottom {
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
}

.about .right .bottom .card {
    width: 100%;
    display: grid;
    row-gap: 30px;
    grid-template-columns: 1fr 100px;
}

.about .right .bottom .card h3{
    font-size: 1.4em;
    font-weight: 500;
    color: rgb(42, 42, 38);
}

.about .right .bottom .card span {
    font-size: 1.2em;
    font-weight: 500;
    color: rgb(92, 92, 78);
}

.about .right .bottom .card p{
    width: 50%;
    color: rgb(92, 92, 78);
}


.work{
    width: 100vw;
    padding: 100px 70px;
    background: rgb(241 237 233);
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: #000;
}

.work .row{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work .row span{
    font-size: 1.3em;
    font-weight: 500;
    color: #4e4e4e;
}

.work .cards{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.work .cards .card{
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.work .cards .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.work .cards .card.textbox{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
}

.work .cards .card.textbox h3{
    font-size: 2.5em;
    font-weight: 600;
    color: #212121;
    font-family: "Manrope", sans-serif;
}

.work .cards .card.textbox p{
    font-size: 1em;
    color: #818181;
    width: 80%;
    text-transform: uppercase;
}

.work .cards .card.special{
    grid-column: 1/3;
}



.banner{
    width: 100vw;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 100px 70px;
    background: rgb(241 237 233);
    color: #000;
}

.banner .left{
    width: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 200px;
}

.banner .left span:first-child{
    margin-top: 50px;
    color: #4e4e4e;
    font-weight: 500;
}

.banner .left span:last-child{
    font-size: 1.1em;
    font-weight: 500;
    color: #252525;
}

.banner .center{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.banner .center h1{
    font-size: 7em;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 115%;
}

.banner .center div{
    display: flex;
    gap: 30px;
    align-items: center;
}

.banner .center .image{
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner .center .image:nth-child(2){
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.banner .center .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.banner .center .bottom{
    display: flex;
    gap: 30px;
    align-items: center;
}   

.banner .center .bottom div{
    display: flex;
    gap: 0;
    align-items: end;
    flex-direction: column;
    text-align: end;
}

.banner .center .bottom div h1{
    line-height: 115%;
    text-align: end;
}

.banner .center .bottom .image{
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}

.banner .right{
    width: 70px;
}



.contact{
    width: 100vw;
    padding: 100px 70px;
    background: rgb(241 237 233);
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: #000;
}

.contact .top{
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: start;
}

.contact .top .col{
    width: 300px;
    height: 400px;
}

.contact .top .col .image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact .top .col .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact .top .col:nth-child(2){
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.contact .top .col:nth-child(2) span:first-child{
    font-size: 1.2em;
    font-weight: 500;
    color: #5d5d5d;
    text-transform: uppercase;
}

.contact .top .col:nth-child(2) span:last-child{
    /* font-size: 2em; */
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b4b4b4;
}

.contact .top .col:nth-child(2) span:last-child:hover{
    background: #808080;
}

.contact .top .col:nth-child(3){
    margin-left: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .top .col:nth-child(3) p{
    font-size: 1.2em;
    font-weight: 500;
    color: #252525;
}

.contact .bottom{
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.contact .bottom button{
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    display: flex;
    align-content: center;
    justify-content: space-between;
    width: 400px;
    height: 40px;
    background: transparent;
    color: #000;
}

.contact .bottom button span:first-child{
    font-size: 1.2em;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-content: center;
    color: #252525;
}

.contact .bottom h1{
    font-size: 8.2em;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    color: #252525;
    margin-left: 20px;
}



footer{
    width: 100vw;
    padding: 100px 70px 0 70px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
}

footer .row .col h2{
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
}

footer .row:first-child .col:first-child span{
    display: flex;
    width: 70%;
}

footer .row{
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

footer .row .col{
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding-right: 160px;
}

footer .row span{
    font-size: 1.2em;
    font-weight: 400;
    color: #818181;
    margin-top: 20px;
}

footer .row p{
    font-size: 1.2em;
    font-weight: 500;
    color: #d1d1d1;
}

footer .row:nth-child(2) .col{
    gap: 0;
}

footer .row:nth-child(2) .col:first-child span{
    margin-bottom: 0;
    line-height: 100%;
    font-size: 1em;
    color: #b4b4b4;
}


footer .row:nth-child(2) .col .social{
    display: flex;
    gap: 20px;
}

footer .row:nth-child(2) .col .social span{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5em;
    color: #b4b4b4;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid #5f5f5f;
    margin: 0;
}

footer .row:nth-child(2) .col .social span.active{
    background: #fff;
    color: #000;
}

footer .row:nth-child(2) .col .social span:hover{
    color: #000;
    background: transparent;
    border: 1px solid #fff;
}


footer .row:last-child{
    justify-content: center;
}

footer .row:last-child h1{
    font-size: 22em;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}
