@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}



:root {
    --text-color: #0C0C0C;
}

body {
    background-color: #FFFFFF;
    color: var(--text-color);
    position: relative;
    font-family: "Open Sans", sans-serif;
    height: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
button,
a,
p {
    font-family: "Open Sans", sans-serif;
    margin: 0;

}

.animatin {
    animation-name: welcomeFadeIn, welcomeMoveIn;
    animation-duration: calc(0.9 * 1s), calc(0.7 * 1s);
    animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    animation-fill-mode: both
}

@keyframes welcomeFadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes welcomeMoveIn {
    0% {
        transform: translateY(30px)
    }

    to {
        transform: translateY(0)
    }
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}


.main-header {
    background-color: #FFFFFF;
    transition: all .3s ease-in;
}

.navbar {
    justify-content: space-between !important;
    padding: 0 0px;
    position: relative;
}

.navbar-expand-xl .offcanvas {
    flex-grow: 0;
    width: fit-content;
}

.navbar-nav {
    gap: 100px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-brand img {
    width: 65px;
}

.navbar-nav .nav-item {
    text-align: center;
    width: 164px;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
    padding: 31px 0;
    height: 80px;
}

.navbar-nav .nav-link.active {
    border-bottom: 4px solid #000;
}

.hero-section {
    height: calc(100vh - 105px);
    background-color: #FFFAF3;

    position: relative;
}

.hero-box {
    text-align: center;
    padding-top: 200px;
}

.hero-box h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 96px;
    color: #010101;
    margin-bottom: 30px;
    animation-name: welcomeFadeIn, welcomeMoveIn;
    animation-duration: calc(0.9 * 1s), calc(0.7 * 1s);
    animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    animation-fill-mode: both
}

.hero-box p {
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    animation-name: welcomeFadeIn, welcomeMoveIn;
    animation-duration: calc(0.9 * 1s), calc(0.7 * 1s);
    animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    animation-fill-mode: both
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);

    height: 180px;
}

.hero-shape img {
    height: 0%;
}

.section {
    padding: 70px 0;
}

.title {
    margin-bottom: 50px;
}

.home-projects-section .title h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 54px;
    width: 70%;
    animation-name: welcomeFadeIn, welcomeMoveIn;
    animation-duration: calc(0.9 * 1s), calc(0.7 * 1s);
    animation-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    animation-fill-mode: both
}

.title span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #686868;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;

}

.home-projects-section .row {
    justify-content: space-between;
}

.home-projects-section .col-md-4 {
    width: 30.8%;
    margin-bottom: 45px;
}

.home-projects-section .col-md-6 {
    width: 48.1%;
    margin-bottom: 45px;

}

.home-projects-section .col-md-12 {
    margin-bottom: 15px;

}

.imgSm {
    display: none;
}

.home-projects-box {
    cursor: pointer;
}

.home-projects-box:hover .home-projects-box-info {
    opacity: 1;
    visibility: visible;
}

.home-projects-box:hover .home-projects-box-img img {
    filter: grayscale(1);
}

.home-projects-box-title {
    padding: 20px 0;
}

.home-projects-box-title h3 {
    font-size: 20px;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home-projects-box-title h3 span {
    font-weight: 500;

}



.lg-p {
    font-size: 24px !important;
    line-height: 34px !important;

}

.home-projects-box-title p {
    font-size: 16px;
    line-height: 24px;
    color: #908C8E;
}

.home-projects-box-img {
    position: relative;
    overflow: hidden;
}

.home-projects-box-img img {
    width: 100%;
    transition: all .3s ease-in;
    min-height: 591px;

}

.releted-project-section .home-projects-box-img img {

    object-fit: cover;
}

.home-projects-box-info {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, #1B1B1B 100%);

    /* background: linear-gradient(rgb(95 90 90 / 68%), #3a3838f7 100%); */
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in;
}

.home-projects-box-info a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;

}

.home-projects-box-info a img {
    min-height: auto;
    height: auto;
}

.home-projects-box-info-lg a {
    width: 55%;
}

.home-projects-box-info a h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #FFFAF3;
    margin-bottom: 10px;
    text-transform: uppercase;


}

.home-projects-box-info a p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.home-projects-box-info a img {
    width: 18px;
}

.pagingInfo {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1em;


}

.testimonials-author-info {
    display: flex;
    gap: 50px;
    align-items: center;
}

.testimonials-author-info .testimonials-author-img img {
    width: 92px;
    height: 92px;
}

.testimonials-author-info h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 20px;
}

.testimonials-author-info span {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.home-testimonials-section {
    background-color: #FFFAF3;
    padding: 150px 0;
}

/* .home-testimonials-section .title {
    padding-left: 50px;
} */

.testimonials-author-thought {
    font-size: 40px;
    line-height: 54px;
    padding: 0 60px;
}

.slick-arrow .next {
    position: absolute;
    right: -86px;
    top: 50%;
    transform: translate(0, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F5E5D1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease-in;
}

.slick-arrow .next svg {

    transition: all .3s ease-in;
}

.slick-arrow .next:hover {
    background-color: #000;
}

.slick-arrow .next:hover svg path {
    fill: #fff;
}

.slick-arrow .prev {
    display: none;
}

.home-client-section {
    padding-top: 140px !important;
    padding-bottom: 50px !important;
}

.client-massage {
    text-align: center;

}

.client-massage span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #686868;


    display: inline-block;
}

.client-massage p {
    font-size: 40px;
    margin-top: 20px;
}

.slide-card {
    background-color: #FFFAF3;
    padding: 30px;
    height: 220px;
}

.slide-card .card-heading {
    margin-bottom: 30px;
}

.slide-card .card-content p {
    font-size: 14px;
    line-height: 20px;
    color: #464646;

}

.home-cards-section {
    padding-bottom: 140px;
}

.home-cards-section .slick-slide {
    margin: 0 10px;
}

.footer-section {
    background-color: #000;
}

.footer-box-one {
    width: 80%;
}

.footer-box-one p {
    font-size: 40px;
    line-height: 54px;
    color: #fff;
}

.footer-box-one p a {
    font-weight: 500;
    color: #fff;


}

.footer-section .col-md-12 {
    margin-bottom: 70px;
}

.footer-download-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-download-box span {
    font-size: 24px;
    line-height: 32px;
    color: #fff;

}

.socil-icon {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-info a {
    font-size: 20px;
    line-height: 29px;
    color: #FFFFFF;
}

.contact-info .svg-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;

}

.contact-info .svg-icon svg {
    color: #0C0C0C;
    width: 18px;
}

#animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* Ensure the animation is on top */
    background-color: #FFFAF3;
    display: flex;
    justify-content: center;
    align-items: center;
}

#animation-container video,
#animation-container img {
    width: 125px;
    height: 90px;

    object-fit: cover;
}

#page-content {
    display: none;
    /* Hide the page content initially */
}


/* project page design */

.project-hero {
    height: 400px;
    background-color: #FFFAF3;
}

.project-details-section {
    margin-top: -300px;
    padding-bottom: 40px;
}

.snaps-project-details-section {
    padding-bottom: 90px;
}

.project-details-section .row .col-md-8 {
    width: 66.4%;
}

.projects-details-hero {
    margin-bottom: 30px;
}

.projects-details-hero span {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
}

.projects-details-hero h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;


    margin-bottom: 20px;
}

.projects-details-hero img {
    width: 100%;
}

.crafting-box {
    padding-top: 70px;
}

.project-details-box {
    margin-bottom: 40px;
}

.project-details-box-outcome {
    margin: 0 200px
}

.treebo-project-details-box {
    padding-top: 100px;
}

.treebo-project-section {
    padding-bottom: 100px;
}

.project-details-box b {

    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: #4E4E4E;
}

.project-details-box h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;

    margin-bottom: 10px;
    color: #1E1E1E;

}

.project-details-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #4E4E4E;
}

.project-details-box .row .col-md-12 {
    margin-bottom: 15px;
}

.design-process {
    background-color: #EDF0F9;
    height: 320px;
    border-radius: 6px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 30px;
}

.design-process-item {
    width: 120px;
    height: 120px;
    background-color: #E2E9FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-process-item p {
    font-size: 18px;
    line-height: 26px;
}

.wireframes-project-section {
    background-color: #242223;
}

.wireframes-project-section-2 {

    background-color: #fff;
    padding-top: 0;
}

.wireframes-project-section .title,
.wireframes-project-section-2 .title {
    padding: 0 225px;
}

.wireframes-project-section-2 .title {
    margin-bottom: 80px;
}

.wireframes-project-section .title h2,
.wireframes-project-section-2 .title h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #fff;
    margin-bottom: 20px;


}

.wireframes-project-section-2 .title h2 {
    color: #1E1E1E !important;
}

.wireframes-project-section .title p,
.wireframes-project-section-2 .title p {
    font-size: 16px;
    line-height: 28px;
    color: #fff
}

.wireframes-project-section-2 .title p {
    color: #1E1E1E;
}

.wireframes-project-section img {
    width: 100%;
}

.visual-direction-section,
.visual-direction-section-2 {
    padding: 60px 0;
    padding-top: 120px;
}

.visual-direction-section .title,
.visual-direction-section-2 .title {
    width: 68%;
    margin: 0 auto 120px auto;
}

.visual-direction-section .title h2,
.visual-direction-section-2 .title h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: #1E1E1E;
    margin-bottom: 20px;

}

.visual-direction-section-2 .title h2 {
    text-align: start;
}

.visual-direction-section .title p,
.visual-direction-section-2 .title p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #4E4E4E;

}

.visual-direction-section-2 .title p {
    text-align: start;
}

.visual-direction-section .row img,
.visual-direction-section .row video,
.visual-direction-section-2 .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-direction-section-2 .row .col-md-12 {
    margin-bottom: 20px;
}

.visual-direction-section-2 .row .col-md-12 .img-1 {
    height: 781px;
}

.visual-direction-section-2 .row .col-md-12 .img-2 {
    height: 505px;
}

.visual-direction-section-2 .row .col-md-12 .img-3 {
    height: 100%;
}

.visual-direction-section-2 .row .col-md-12 .img-4,
.visual-direction-section-2 .row .col-md-12 .img-5,
.visual-direction-section-2 .row .col-md-12 .img-6 {
    height: 514px;
}




.visual-direction-box {
    display: flex;
    justify-content: center;
    background-color: #EDF0F9;
    padding: 20px;
    height: 100%;
}

.visual-direction-text {
    padding: 40px 0;
}

.visual-direction-text p {
    font-size: 16px;
    line-height: 28px;
    color: #4E4E4E;

}

.visual-direction-search {
    background-color: #FFFFFF;
    padding-top: 20px;
    border-radius: 24px;
    text-align: center;
    width: 72%;
    overflow: hidden;
}

.visual-direction-search h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #211A1E;


}

.search-options {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.search-options button {


    padding: 4px 10px;
    border-radius: 12px;
    border: none;
    /* height: 24px; */
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    color: #211A1E;
    transition: all .3s ease-in;
    font-family: sans-serif;


}

.search-options button:hover {
    background-color: #211A1E;
    color: #fff;
}

.visual-direction-search-footer {
    border-top: 1px solid #D9D9D9;
    /* padding: 20px 0; */
    display: flex;
}

.visual-direction-search-footer button {
    width: 50%;
    border: none;
    outline: none;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;

}

.visual-direction-search-footer button.clear-btn {
    background-color: #fff;
    color: #F11A00;
}

.visual-direction-search-footer button.apply-btn {
    background-color: #211A1E;
    color: #fff;
}

.visual-direction-box .heading {
    text-align: left;
    width: 100%;
    padding: 20px 10px;
}

.visual-direction-box .heading .tira {
    font-size: 24px;
    font-weight: 300;
    line-height: 29px;
    letter-spacing: 0.02em;
    font-family: "SchnyderMLight";
}

.visual-direction-box .heading .loves {
    font-size: 25px;
    font-weight: 500;
    line-height: 33px;


    letter-spacing: 0.02em;

}

.visual-direction-box .heading a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #211A1E;
    border-radius: 50%;

}

.visual-direction-box .heading a img {
    width: 10px;
}

.visual-direction-box .heading p {
    font-size: 10px;
    line-height: 16px;

}

.boomkmarks {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.boomkmarks button {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    font-size: 7px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: 30px;
    border: none;
    outline: none;
    color: #fff;
    font-family: sans-serif;
}

.boomkmarks .boomkmarks-img {
    width: 26px;
    height: 26px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;

}

.blog-box-one-content {
    margin-top: 10px;
}

.blog-box-one-content span {
    font-size: 7px;
    line-height: 12px;
    letter-spacing: 0.1em;
    color: #211A1E;
    display: block;
    margin-bottom: 5px;
}

.blog-box-one-content h3 {
    font-size: 13px;
    line-height: 18px;
    color: #211A1E;
    margin-bottom: 5px;
}

.blog-box-one-content p {
    font-size: 7px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.05em;
    color: #211A1E;


}

.blog-box-two-content {
    position: absolute;
    bottom: 0;
}

.blog-box-two-content h3 {
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 5px;


}

.blog-box-two-content {
    padding-left: 15px;
    padding-right: 80px;
    padding-bottom: 20px;
    background: linear-gradient(180deg, rgba(33, 26, 30, 0) 0%, rgba(33, 26, 30, 0.24) 22.92%, #211A1E 84.88%);

}

.blog-box-two-img .img {
    width: 100%;
}

.blog-box-two-content h3 span {
    font-family: "SchnyderMLight";
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-transform: uppercase;
}

.blog-box-two-content p {
    font-size: 7px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.05em;
    color: #FFFFFF;


}

.blog-box-two-content span {
    font-size: 7px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 5px;
}

.visual-direction-more-blog-box {
    padding: 25px;

}

.visual-direction-more-blog {
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
}

/* .visual-direction-more-blog-box .row .col-md-12 .visual-direction-more-blog:l {
    border: none;
} */

/* .visual-direction-more-blog-box .row .col-md-12 {
    margin-bottom: 30px;
} */

.visual-direction-more-blog-box h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #211A1E;
}

.visual-direction-more-blog-img img {
    border-radius: 6px;
}

.visual-direction-more-blog-content span {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.1em;
    color: #211A1E;
}

.visual-direction-more-blog-content h4 {
    font-size: 14px;
    line-height: 18px;
    color: #211A1E;
}

.visual-direction-more-blog-content p {
    font-size: 12px;
    line-height: 18px;
    color: #908C8E;
}

.visual-direction-end-note {
    padding: 100px 200px;
}

.visual-direction-end-note h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #1E1E1E;
    margin-bottom: 10px;


}

.visual-direction-end-note p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #4E4E4E;
}

.releted-project-section {
    background-color: #FDF5EB;
}

.releted-project-section .title h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #686868;
    text-align: center;


}

.project-footer {
    padding: 50px 0;
}

.project-footer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
}

.backbtn {
    width: fit-content;
}

.topToBottomBtn {
    position: fixed;
    bottom: 30px;
    right: 60px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F5E5D1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in;
}

.topToBottomBtn:hover {
    background-color: #000;
}

.topToBottomBtn:hover svg path {
    fill: #fff;
}