@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.bg-light {
    background-color: #fff !important;
}

.header-fixed-left-menu-btn {
    background: linear-gradient(90.68deg, #e54c48 5.04%, #e97966 103.3%);
    display: flex;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.header-fixed-left {
    display: flex;
    flex-direction: column;
    width: 100px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 9;
    background-color: #f0f0f0;
}

.header-fixed-left-menu-btn>i {
    font-size: 40px;
    color: #fff;
}

.header-fixed-left-menu-btn>i::before {
    transition: all 0.3s ease-in-out;
}

.header-fixed-left-menu-btn.active>i::before {
    content: "\F659";
    font-family: bootstrap-icons !important;
}

.header-fixed-left-social {
    display: flex;
    width: 100%;
    height: calc(100% - 300px);
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-fixed-left-social::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    bottom: 30px;
    width: 1px;
    background-color: #4c4c4c;
}

.header-fixed-left-social>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    background-color: #fff;
}

.header-fixed-left-social>ul>li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header-fixed-left-social>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #4c4c4c;
    border-radius: 50%;
    transition: .2s ease-in-out;
}

.header-fixed-left-social>ul>li>a>i {
    color: #000;
    transition: .2s ease-in-out;
}

.header-fixed-left-social>ul>li>a:hover {
    background-color: #e54c48;
    border: 1px solid transparent;
}

.header-fixed-left-social>ul>li>a:hover>i {
    color: #fff;
}

.header-fixed-left-text {
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-fixed-left-text>span {
    font-size: 14px;
    font-weight: 500;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    color: #333;
}

.header-fixed-logo {
    display: flex;
    width: 310px;
    height: 100px;
    position: fixed;
    top: 0;
    left: 100px;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.header-fixed-logo>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header-fixed-logo>a>img {
    width: 220px;
}

.header-fixed-left-menu-btn.active {
    transform: translateY(100px);
}

.header-fixed-logo.active {
    transform: translateX(-100px);
}

.header-fixed-menu {
    position: fixed;
    top: 100px;
    left: -300px;
    max-height: calc(100vh - 100px);
    width: 400px;
    background-color: #717171;
    overflow: hidden;
    overflow-y: auto;
    padding: 2.5rem;
    text-align: right;
    z-index: 8;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.header-fixed-menu::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e6e6e6;
    border-radius: 5px;
}

.header-fixed-menu::-webkit-scrollbar-thumb {
    background: #e54c48;
    border-radius: 5px;
}

.header-fixed-menu.active {
    left: 100px;
    visibility: visible;
}

.header-menu #cssmenu>ul {
    list-style: none;
    margin: 0;
    border-left: 1px solid #868686;
    border-right: 1px solid #868686;
    padding: 10px 0;
    counter-reset: my-awesome-counter;
}

.header-menu #cssmenu>ul>li {
    display: block;
    margin-left: -10px !important;
    margin-right: -10px !important;
    border-bottom: 1px solid #868686;
    counter-increment: my-awesome-counter;
    position: relative;
}

.header-menu #cssmenu>ul>li::before {
    content: counter(my-awesome-counter);
    position: absolute;
    top: 38px;
    left: 30px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    margin-right: 0.5rem;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.header-menu #cssmenu>ul>li>a {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2.5rem 1.5rem;
    justify-content: flex-end;
    text-align: right;
}

.header-menu #cssmenu>ul>li>a>span {
    display: flex;
    text-align: right;
    position: relative;
    cursor: pointer;
}

.header-menu #cssmenu>ul>li:first-child {
    border-top: 1px solid #868686;
}

.header-menu #cssmenu>ul>li>a>span::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    background-color: #868686;
    transition: .2s ease-in-out;
}

.header-menu #cssmenu>ul>li>a>span::after {
    content: "";
    position: absolute;
    height: 4px;
    margin-top: -2px;
    top: 50%;
    right: -56px;
    margin-left: 56px;
    left: 100%;
    background-color: #e54c48;
    z-index: -1;
    transition: .3s ease-in-out;
}

.header-menu #cssmenu>ul>li>a:hover>span::before,
.header-menu #cssmenu>ul>li.current_page_item>a>span::before {
    width: 0;
}

.header-menu #cssmenu>ul>li>a:hover>span::after,
.header-menu #cssmenu>ul>li.current_page_item>a>span::after {
    margin-left: 0;
    left: -20px;
}

.page-wrapper {
    padding-left: 100px;
}

.home-slider-wrapper {
    height: 100vh;
    background-color: #f0f0f0;
}

.home-slider-image {
    display: flex;
    width: 100%;
    height: 100%;
}

.home-category-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.home-category-content {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - (2rem * 2) / 3);
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    -webkit-transition: box-shadow linear .5s;
    -o-transition: box-shadow linear .5s;
    -webkit-transition: -webkit-box-shadow linear .5s;
    transition: -webkit-box-shadow linear .5s;
    transition: box-shadow linear .5s;
    transition: box-shadow linear .5s, -webkit-box-shadow linear .5s;
    border-radius: 0.5rem;
}

.home-category-content>a {
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    text-decoration: none !important;
    width: 100%;
    z-index: 1;
}

.home-category-ikon {
    display: flex;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1;
}

.home-category-ikon>img {
    width: 100%;
    height: 100%;
}

.home-category-content.title {
    gap: 0;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    background-color: #fff;
}

.home-category-content.title>span {
    font-size: 50px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 200;
}

.home-category-content.title>strong {
    font-size: 45px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.home-category-wrapper {
    margin: 6rem 0;
}

.home-category-content::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    -webkit-transition: -webkit-transform linear .2s;
    transition: -webkit-transform linear .2s;
    -o-transition: -o-transform linear .2s;
    transition: transform linear .2s;
    transition: transform linear .2s, -webkit-transform linear .2s, -o-transform linear .2s;
    -webkit-transform: translate(101%, 0);
    -o-transform: translate(101%, 0);
    transform: translate(101%, 0);
}

.home-category-content:hover::before {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.home-category-content:hover {
    -webkit-box-shadow: 0 .1429rem .6429rem .07143rem rgba(1, 2, 2, .1);
    box-shadow: 0 .1429rem .6429rem .07143rem rgba(1, 2, 2, .1);
}

.home-category-name {
    display: flex;
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-category-btn {
    display: flex;
    position: relative;
    z-index: 1;
}

.home-category-name>span {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 500;
    color: #000;
}

.home-category-btn>a {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.home-category-content.title:hover {
    box-shadow: none;
}

.home-category-content.title::before {
    display: none;
}

.home-parallax-wrapper {
    background-attachment: fixed;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: auto 100%;
    min-height: 100%;
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
}

.parallax-contain {
    height: 400px;
    position: relative;
    margin: 3rem 0;
}

.home-parallax-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
}

.home-parallax-text {
    position: absolute;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.home-parallax-text>p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    letter-spacing: 4px;
    color: #fff;
    font-weight: 300;
}

.home-parallax-text>span {
    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
}

.project-request-container-title>span {
    font-size: 60px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
}

.project-request-container-desc>span {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    display: flex;
    text-align: center;
}

.project-request-container-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-request-container-title>span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background-color: #000;
}

.project-request-container-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.form-wrapper-top {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.form-wrapper-top .form-wrapper-group {
    display: flex;
    width: calc(50% - (1.5rem) / 2);
}

.form-wrapper-group input,
.form-wrapper-group textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.form-wrapper-group input:focus,
.form-wrapper-group textarea:focus {
    border: 1px solid #000;
}

.form-wrapper-group>* {
    width: 100%;
}

.form-wrapper-group>p {
    margin: 0;
}

.form-wrapper-bottom {
    margin-bottom: 1.5rem;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit-btn input {
    border-radius: 0 !important;
    outline: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #000;
    padding: 0.5rem 2rem;
}

.form-submit-btn input:hover {
    background-color: #444;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 0;
}

.footer-container-left {
    width: 291px;
}

.footer-container-left>a,
.footer-container-left>a>img {
    display: flex;
    width: 100%;
}

.footer-wrapper {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.product-content-desc {
    text-align: center;
}

.product-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

.product-content {
    width: calc(20% - (1rem * 4) / 5);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    -webkit-transition: box-shadow linear .5s;
    -o-transition: box-shadow linear .5s;
    -webkit-transition: -webkit-box-shadow linear .5s;
    transition: -webkit-box-shadow linear .5s;
    transition: box-shadow linear .5s;
    transition: box-shadow linear .5s, -webkit-box-shadow linear .5s, transform 300ms linear 0ms;
    border-radius: 10px;
    overflow: hidden;
}

.product-content>a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-content-image {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.product-content-image>img {
    width: 100%;
    height: 100%;
    transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-content:hover .product-content-image>img {
    transform: scale(1.1);
}

.product-content-bottom {
    padding: 1rem;
}

.product-content-name>span {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: .2s ease-in-out;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-content:hover .product-content-name>span {
    color: #e54c48;
}


.product-content-desc>span {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
}

.product-content-name {
    display: flex;
    margin-bottom: 1rem;
}

.product-content-desc a {
    color: #000;
    text-decoration: none;
}

.product-content a {
    text-decoration: none !important;
}

.product-content:hover {
    box-shadow: 0 0.1429rem 0.6429rem 0.07143rem rgba(1, 2, 2, .1);
    transform: translate(0, -10px);
}

.product-page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.product-page-title>span {
    font-size: 40px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
}

.product-page-title>span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background-color: #000;
}

.post-page-container-image {
    display: flex;
    float: left;
    margin-right: 2rem;
}

.post-page-container-desc {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

.post-page-container-desc a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}

.post-page-container-image>img {
    width: 100%;
}

.post-page-container-name {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    width: calc(100% - 120px);
}

.post-page-container {
    padding: 0;
    padding-top: 120px;
    min-height: 550px;
}

.post-share-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    flex-direction: column;
    line-height: 1;
    cursor: pointer;
}

.post-page-container-text {
    position: relative;
}

.post-share-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 50%;
    background-color: #000;
}

.post-share-btn>i {
    display: flex;
    color: #fff;
}

.post-share-text {
    font-size: 15px;
    font-weight: 600;
}

.post-share-btn>button {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 0 !important;
    box-shadow: none !important;
}

.share-modal-body>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}

.share-modal-body>ul>li>a {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 300ms linear 0ms;
}

.share-modal-body>ul>li>a:hover {
    transform: translate(0, -10px);
}

.share-modal-body>ul>li>a>i {
    font-size: 20px;
    color: #fff;
}

.share-modal-body>ul>li:nth-child(1)>a {
    background-color: #4dc247;
}

.share-modal-body>ul>li:nth-child(3)>a {
    background-color: #3b5998;
}

.share-modal-body>ul>li:nth-child(2)>a {
    background-color: #000;
}

.share-modal-body>ul>li:nth-child(4)>a {
    background-color: #007bb5;
}

.share-modal-body {
    padding: 2rem 0;
}

.share-modal-content {
    border-radius: 0;
}

.share-modal-content .modal-footer button {
    display: flex;
    background-color: #000;
    padding: .5rem 2rem;
    border: none !important;
    box-shadow: none !important;
    outline: 0 !important;
    transition: .2s ease-in-out;
    border-radius: 0 !important;
}

.share-modal-content .modal-footer button:hover {
    background-color: #444;
}

.mobile-share-body {
    display: none;
}

.form-wrapper-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.form-wrapper-center .form-wrapper-group {
    width: 100%;
}

.all-category-btn,
.category-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.all-category-btn > a,
.category-back-btn > a {
    display: flex;
    padding: 0.8rem 2rem;
    background-color: #000;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.all-category-btn > a:hover,
.category-back-btn > a:hover {
    opacity: 0.8;
}

@media screen and (max-width:1025px) {
    .product-content {
        width: calc(25% - (1rem * 3) / 4);
    }
}

@media screen and (max-width:993px) {

    .header-fixed-left-social,
    .header-fixed-left-text {
        display: none;
    }

    .page-wrapper {
        padding-left: 0;
    }

    .header-fixed-left-menu-btn.active,
    .header-fixed-logo.active {
        transform: unset;
    }

    .header-fixed-menu {
        width: 100%;
    }

    .header-fixed-menu.active {
        left: 0;
    }

    .header-fixed-left {
        height: auto;
    }

    .bg-light.active {
        overflow: hidden;
    }

    .product-content:hover {
        transform: unset;
    }

    .post-page-container-image {
        display: flex;
        float: unset;
        width: 100%;
        margin: 0 !important;
        margin-bottom: 2rem !important;
    }

    .post-page-container-name {
        width: calc(100% - 80px);
    }

    .mobile-share-body {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        flex-direction: column;
        background-color: #f0f0f0;
        margin-bottom: 1.5rem;
    }

    .mobile-share-body>span {
        font-size: 17px;
        font-weight: 600;
        color: #000;
        display: flex;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .mobile-share-body>ul {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        list-style: none;
        gap: 1rem;
    }

    .mobile-share-body>ul>li>a {
        display: flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 300ms linear 0ms;
    }

    .mobile-share-body>ul>li>a:hover {
        transform: translate(0, -10px);
    }

    .mobile-share-body>ul>li>a>i {
        font-size: 20px;
        color: #fff;
    }

    .mobile-share-body>ul>li:nth-child(1)>a {
        background-color: #4dc247;
    }

    .mobile-share-body>ul>li:nth-child(3)>a {
        background-color: #3b5998;
    }

    .mobile-share-body>ul>li:nth-child(2)>a {
        background-color: #000;
    }

    .mobile-share-body>ul>li:nth-child(4)>a {
        background-color: #007bb5;
    }

    .post-share-wrapper {
        display: none;
    }

    .post-page-container {
        max-width: 80%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


@media screen and (max-width:769px) {
    .product-content {
        width: calc(33.33% - (1rem * 2) / 3);
    }

    .product-content-bottom {
        padding: 2rem 1rem;
    }

    .post-page-container {
        max-width: 100%;
    }
}


@media screen and (max-width:553px) {
    .header-fixed-menu {
        padding: 0.5rem;
    }

    .header-fixed-logo {
        width: calc(100% - 100px);
    }

    .header-fixed-logo>a>img {
        width: 100%;
    }

    .header-fixed-logo>a {
        padding: 0 1rem;
    }

    .home-category-content {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .form-wrapper-top .form-wrapper-group {
        width: 100%;
    }

    .project-request-container-desc>span {
        font-size: 13px;
    }

    .project-request-container-title>span {
        font-size: 45px;
    }

    .home-parallax-text>span {
        font-size: 23px;
    }

    .home-parallax-text>p {
        font-size: 17px;
    }

    .home-slider-wrapper {
        height: 250px;
        background-color: #f0f0f0;
        margin-top: 100px;
    }

    .home-category-content.title>strong {
        font-size: 35px;
    }

    .home-category-content.title>span {
        font-size: 45px;
    }

    .product-content {
        width: 100%;
    }

    .product-wrapper {
        padding: 1rem;
    }

    .product-page-title>span {
        font-size: 30px;
    }

    .post-page-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .post-page-container-name {
        width: 100%;
        font-size: 23px;
    }

    .post-page-container-desc {
        font-size: 12px;
        line-break: anywhere;
    }

    .header-menu #cssmenu>ul>li>a {
        font-size: 13px;
    }
}