/*
    -- Table of Content --

    * # Preloader
    * # Margin
    * # InfoBox
    * # Breadcrumb
    * # Header
    * # About
    * # Project
    * # Project Details
    * # Credentials
    * # Service
    * # Blog
    * # Contact
    * # Footer
    * Responsive

*/
:root {
    --primary_color: #5b78f6;
    --dark: #323232;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
    color: #9f9f9f;
    background: #0f0f0f;
    line-height: 19.2px;
    overflow-x: hidden;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
.text-right {
    text-align: right;
}
/* .container {
    max-width: 1170px;
} */

.gap-24 {
    gap: 24px;
}
.h-full {
    height: 100%;
}

/* # Preloader */
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #111;
    transform-origin: bottom;
    z-index: 111111;
}

.preloader .black_wall {
    height: 100%;
    background-color: #222;
    transform-origin: top;
    animation: preloader_slide 0.5s ease-in-out 0s 1 normal both;
}

.preloader .loader {
    width: 100%;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--primary_color);
    transform-origin: left;
    animation: loader_running 3s ease-in-out 1s infinite normal both;
}

.preloader.off {
    animation: preloader_slide 0.5s ease-in-out 0s 1 reverse both;
}

/* # Margin */
.mt-24 {
    margin-top: 24px;
}
.mb-24 {
    margin-bottom: 24px;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.flex-1 {
    flex: 1;
}
.theme-btn {
    background: var(--dark);
    color: #fff;
    display: inline-block;
    transition: 0.3s;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
}
.theme-btn:hover {
    background: #fff;
    color: var(--dark);
}
.shadow-box {
    position: relative;
    border-radius: 30px;
    background: #0f0f0f;
}
.shadow-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(to right, rgb(255 255 255 / 15%), rgb(255 255 255 / 1%)); */
    background: linear-gradient(
        120deg,
        rgb(255 255 255 / 12%),
        rgb(255 255 255 / 1%)
    );
    content: "";
    z-index: -1;
    border-radius: 30px;
    margin: -1px;
}
.service-area
    .service-content-wrap
    .service-content-inner
    .service-item::before,
.shadow-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 30px;
    opacity: 0.25;
}
.shadow-box * {
    z-index: 2;
    position: relative;
}

.section-heading {
    color: #ffffff;
    font-size: 74px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: -01px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    justify-content: center;
}
.section-heading img {
    display: block;
}

/* # InfoBox */
.info-box {
    padding: 24px;
}
.credential-area .credential-sidebar .overlay-link,
.contact-area .contact-form .overlay-link,
.project-details-wrap .project-about-2 .overlay-link,
.project-details-wrap .project-infos-wrap .overlay-link,
.projects-area .project-item .overlay-link,
.about-area .about-edc-exp .overlay-link,
.about-area .about-image-box .overlay-link,
.about-area .about-me-box .overlay-link,
.info-box .overlay-link {
    left: 0;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    z-index: 9;
}
.credential-area .credential-sidebar .bg-img,
.contact-area .contact-form .bg-img,
.project-details-wrap .project-about-2 .bg-img,
.project-details-wrap .project-infos-wrap .bg-img,
.projects-area .project-item .bg-img,
.about-area .about-edc-exp .bg-img,
.about-area .about-image-box .bg-img,
.about-area .about-me-box .bg-img,
.info-box .bg-img {
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-box > img {
    display: block;
    margin: auto auto 16px auto;
}
.info-box .infos h4 {
    color: #bcbcbc;
    font-size: 12px;
    opacity: 0.5;
    margin-bottom: 6px;
    text-transform: uppercase;
    margin-top: 8px;
}
.info-box .infos h1 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.info-box .about-btn {
    opacity: 0.2;
    transition: 0.3s;
    display: inline-block;
}
.info-box:hover .about-btn {
    opacity: 1;
}
.info-box .inner-profile-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 22px;
    margin-bottom: 16px;
}
.info-box .inner-profile-icons.shadow-box:before {
    opacity: 0.1;
}
.info-box .inner-profile-icons.shadow-box:after {
    opacity: 0.5;
}
.info-box .inner-profile-icons a {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
}
.info-box .inner-profile-icons a:hover {
    background: #ffffff;
    color: #0f0f0f;
}
.info-box .inner-profile-icons a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(40px);
}
.info-box .inner-profile-icons a i {
    font-size: 32px;
}
.info-box.about-services-box .icon-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
    margin-top: 46px;
}
.info-box.about-services-box .icon-boxes i {
    font-size: 40px;
    color: #ffffff;
}
.info-box.about-client-box .clients .client-item {
    position: relative;
    border-radius: 30px;
    text-align: center;
    flex: 1;
    padding: 42px 30px 42px 30px;
}
.info-box.about-client-box .clients .client-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 30px;
}
.info-box.about-client-box .clients .client-item h1 {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 17px;
    line-height: 1.2;
    letter-spacing: -1px;
}
.info-box.about-client-box .clients .client-item p {
    font-size: 12px;
    color: #bcbcbc;
    opacity: 0.5;
    margin: 0;
    text-transform: uppercase;
}
.info-box.about-contact-box {
    padding-bottom: 42px;
    padding-top: 83px;
}
.info-box.about-contact-box h1 {
    font-size: 44px;
    line-height: 52px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.info-box.about-contact-box h1 span {
    color: var(--primary_color);
}
.info-box.about-contact-box .about-btn {
    position: absolute;
    display: block;
    right: 30px;
    bottom: 35px;
    opacity: 1;
    transition: 0.3s;
    color: #fff !important;
}
.info-box.about-contact-box:hover .about-btn {
    opacity: 1;
}
.info-box.about-contact-box .star-icon {
    position: absolute;
    left: 30px;
    top: 0;
    opacity: 0.5;
    margin: 0;
}
.info-box.about-profile-box,
.info-box.about-blog-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* # Breadcrumb */
.breadcrumb-area {
    padding-top: 77px;
}
.breadcrumb-area .breadcrumb-content p {
    color: #bcbcbc;
    opacity: 0.7;
    margin-bottom: 24px;
}
.breadcrumb-area .breadcrumb-content .section-heading {
    font-size: 56px;
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.breadcrumb-area .breadcrumb-content .section-heading img {
    display: initial;
}

/* # Header */
.header-area {
    margin-top: 10px;
}

.header-area .logo {
    display: inline-block;
    z-index: 16;
}
.header-area .logo img {
    display: block;
}
.header-area .navbar {
    margin: 0;
    padding: 0;
}
.header-area .navbar .theme-btn {
    display: none;
}
.header-area .navbar .menu {
    display: flex;
    align-items: center;
    gap: 49px;
    margin: 0;
    padding: 0;
}
.header-area .navbar .menu li a {
    font-size: 16px;
    color: #676767;
    transition: 0.3s;
    display: block;
    /* padding: 26px 0px; */
}
.header-area .navbar .menu li.active a,
.header-area .navbar .menu li a:hover {
    color: #ffffff;
}
.header-area .show-menu {
    display: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    width: 25px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 16;
}
.header-area .show-menu span {
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    transition: 0.4s;
}
.header-area .show-menu.active span:first-child {
    transform: translate3d(0px, 6px, 0px) scale(1, 1) rotate(45deg) scale(1, 1);
}
.header-area .show-menu span:last-child {
    transform-origin: left;
}
.header-area .show-menu.active span:last-child {
    transform: translate3d(4px, -2px, 0px) scale(1, 1) rotate(-45deg)
        scale(1, 1);
}
.header-area .show-menu.active span:nth-child(2) {
    transform: scale(0);
}

/* # About */

.about-area {
    padding-top: 80px;
}
.about-area .about-me-box {
    position: relative;
    padding: 35px 35px;
    /* display: flex; */
    /* align-items: flex-start; */
    /* gap: 30px; */
    height: 100%;
}
.about-area .about-me-box .img-box {
    width: 224px;
    height: 224px;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(90deg, #3c58e3 -15%, #c2ebff 58%, #5ab5e2 97%); */
    border-radius: 30px 0 30px 0;
    flex: none;
}
.about-area .about-me-box .img-box img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.about-area .about-me-box .infos {
    padding-top: 30px;
    position: initial;
}
.about-area .about-me-box .infos h4 {
    color: #bcbcbc;
    opacity: 0.7;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}
.about-area .about-me-box h1 {
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 15px;
}
.about-area .about-me-box .infos p {
    letter-spacing: 0.3px;
    margin: 0;
}
.about-area .about-me-box .infos .about-btn {
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0.2;
    transition: 0.3s;
}
.about-me-box .about-btn {
    display: block;
    /* position: absolute; */
    right: 30px;
    bottom: 30px;
    opacity: 0.2;
    transition: 0.3s;
}

.about-area .about-me-box:hover .about-btn {
    opacity: 1;
}

.about-area .about-me-box:hover .infos .about-btn {
    opacity: 1;
}
.about-area .about-credentials-wrap .banner {
    padding: 17px 25px;
    margin-bottom: 24px;
}
.marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 19px;
    overflow-x: hidden;
}

.marquee .marquee-scroll {
    /* position: absolute;
    white-space: nowrap;
    will-change: transform;
    font-size: 12px;
    animation: scroll-left 15s linear infinite; */
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 40s linear infinite;
}

.marquee-scroll span {
    padding-right: 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.about-area .about-credentials-wrap .banner .marquee b {
    color: #fff;
    font-weight: 400;
}
.about-area .about-credentials-wrap .banner .marquee img {
    display: inline-block;
    margin: 0 5px;
}
.about-area .about-credentials-wrap > .gx-row > * {
    flex: 1;
    width: 50%;
}

.about-area .about-image-box {
    width: 370px;
    flex: none;
    padding: 24px;
    border-radius: 30px;
}
.about-area .about-image-box .image-inner {
    background: linear-gradient(90deg, #3c58e3 -15%, #c2ebff 58%, #5ab5e2 97%);
    border-radius: 30px;
}
.about-area .about-image-box img {
    display: block;
    border-radius: 30px;
}
.about-area .about-details {
    flex: 1;
}
.about-area .about-details .about-details-inner {
    padding: 115px 60px 30px 30px;
    position: relative;
}
.about-area .about-details .about-details-inner img {
    position: absolute;
    left: 30px;
    top: 0;
}
.about-area .about-details .about-details-inner h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
}
.about-area .about-details .about-details-inner p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 25px;
    margin: 0;
    font-size: 16px;
}
.about-area .about-edc-exp {
    padding: 30px;
}
.about-area .about-edc-exp h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 23px;
}
.about-area .about-edc-exp ul li + li {
    margin-top: 32px;
}
.about-area .about-edc-exp ul li .date {
    color: #bcbcbc;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}
.about-area .about-edc-exp ul li h2 {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 7px;
}
.about-area .about-edc-exp ul li .type {
    color: #bcbcbc;
    font-size: 14px;
    opacity: 0.6;
    font-weight: 400;
    margin: 0;
}

.main-aboutpage .about-area .about-contact-box {
    padding-top: 102px;
}

/* # Project */
.projects-area {
    padding-top: 65px;
}
.projects-area .container > .section-heading {
    display: none;
}
.projects-area .section-heading {
    justify-content: center;
    margin-bottom: 15px;
}
.projects-area .project-item {
    margin-bottom: 24px;
    padding: 16px 16px 26px 16px;
}
.projects-area .project-item .project-img {
    border-radius: 30px;
    margin-bottom: 13px;
}
.projects-area .project-item .project-img img {
    display: block;
    border-radius: 30px;
}
.projects-area .project-item .project-info p {
    color: #bcbcbc;
    opacity: 0.5;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 2px;
    margin-top: 5px;
}
.projects-area .project-item .project-info h1 {
    font-size: 22px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    margin: 0;
}
.projects-area .project-item .project-btn {
    opacity: 0.2;
    transition: 0.3s;
    display: inline-block;
}
.projects-area .project-item:hover .project-btn {
    opacity: 1;
}

/* # Project Details */
.project-details-wrap .project-details-img {
    height: 550px;
    position: relative;
    margin-bottom: 50px;
}
.project-details-wrap .project-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-details-wrap .project-infos-wrap {
    position: relative;
    gap: 100px;
    padding: 36px;
}
.project-details-wrap .project-infos-wrap img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.project-details-wrap .project-infos-wrap .bg-img {
    transform: translateX(0);
}
.project-details-wrap .project-infos-wrap .project-details-info {
    position: relative;
    padding: 24px;
}

.project-details-wrap .project-about-2 .left-details:before,
.project-details-wrap .project-infos-wrap .project-details-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 30px;
}
.project-details-wrap .project-infos-wrap .project-details-info p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.56;
    margin-bottom: 20px;
}
.project-details-wrap .project-infos-wrap .project-details-info p:last-child {
    margin-bottom: 0;
}
.project-details-wrap .project-infos-wrap .project-details-info h3 {
    color: #bcbcbc;
    opacity: 0.5;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.1px;
    margin-bottom: 13px;
}
.project-details-wrap .project-details-2-img {
    height: 400px;
    border-radius: 30px;
}
.project-details-wrap .project-details-3-img img,
.project-details-wrap .project-details-2-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.project-details-wrap .project-details-3-img {
    height: 480px;
    position: relative;
    border-radius: 30px;
}
.project-details-wrap .project-about-2 {
    padding: 36px;
    gap: 80px;
}
.project-details-wrap .project-about-2 .left-details {
    position: relative;
    flex: none;
    padding: 30px 54px;
    width: 290px;
}
.project-details-wrap .project-about-2 .left-details img {
    position: absolute;
    right: 40px;
    top: 0;
}
.project-details-wrap .project-about-2 .left-details ul li + li {
    margin-top: 27px;
}
.project-details-wrap .project-about-2 .left-details ul li p {
    color: #bcbcbc;
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 10px;
}
.project-details-wrap .project-about-2 .left-details ul li h4 {
    color: #ffffff;
    opacity: 0.9;
    font-size: 18px;
    margin: 0;
}
.project-details-wrap .project-about-2 .right-details h3 {
    font-size: 18px;
    color: #bcbcbc;
    opacity: 0.5;
    margin-bottom: 17px;
}
.project-details-wrap .project-about-2 .right-details p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.56;
    margin-bottom: 26px;
}
.project-details-wrap .project-about-2 .right-details p:last-child {
    margin-bottom: 0;
}
.project-details-wrap .big-btn {
    margin-top: 100px;
    color: #fff;
    font-size: 44px;
    opacity: 0.9;
    display: block;
    line-height: 1.2;
    padding: 38px 57px;
    transition: 0.3s;
}
.project-details-wrap .big-btn:hover {
    background: #ffffff;
    color: #0f0f0f;
}

/* # Credentials */
.credential-area {
    padding-top: 80px;
}
.credential-area .gx-row {
    gap: 80px;
}
.credential-area .credential-sidebar {
    width: 370px;
    flex: none;
    position: sticky;
    top: 15%;
}
.credential-area .credential-sidebar .shadow-box {
    padding: 24px 24px 34px 24px;
}
.credential-area .credential-sidebar::after {
    opacity: 0.25;
}
.credential-area .credential-sidebar .img-box {
    background: linear-gradient(90deg, #3c58e3 -15%, #c2ebff 58%, #5ab5e2 97%);
    border-radius: 30px;
    margin-bottom: 40px;
}
.credential-area .credential-sidebar .img-box img {
    display: block;
    margin: auto;
    border-radius: 30px;
}
.credential-area .credential-sidebar p {
    color: #bcbcbc;
    opacity: 0.5;
    font-size: 16px;
    margin-bottom: 34px;
}
.credential-area .credential-sidebar h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 26px;
}
.credential-area .credential-sidebar .social-links {
    gap: 10px;
    margin-bottom: 36px;
}
.credential-area .credential-sidebar .social-links li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    line-height: 55px;
    color: #fff;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.01)
    );
    transition: 0.3s;
}
.credential-area .credential-sidebar .social-links li a:hover {
    background: #ffffff;
    color: #0f0f0f;
}
.credential-area .credential-sidebar .theme-btn {
    width: 100%;
}

.credential-area .credential-content .credential-about {
    padding-bottom: 110px;
}
.credential-area .credential-edc-exp h2,
.credential-area .credential-content .credential-about h2 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}
.credential-area .credential-content .credential-about h2 {
    margin-bottom: 37px;
}
.credential-area .credential-content .credential-about p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.56;
    margin-bottom: 30px;
}
.credential-area .credential-content .credential-about p:last-child {
    margin-bottom: 0;
}
.credential-area .credential-experience,
.credential-area .credential-education {
    margin-bottom: 85px;
}
.credential-area .credential-edc-exp h2 {
    margin-bottom: 22px;
}
.credential-area
    .credential-edc-exp
    .credential-edc-exp-item
    + .credential-edc-exp-item {
    margin-top: 58px;
}
.credential-area .credential-edc-exp .credential-edc-exp-item h4 {
    color: #bcbcbc;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
}
.credential-area .credential-edc-exp .credential-edc-exp-item h3 {
    font-size: 18px;
    color: var(--primary_color);
}
.credential-area .credential-edc-exp .credential-edc-exp-item h5 {
    font-size: 14px;
    color: #bcbcbc;
    opacity: 0.6;
    font-weight: 400;
}
.credential-area .credential-edc-exp .credential-edc-exp-item p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.56;
}
.credential-area .skills-wrap h2 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.credential-area .skills-wrap .skill-items {
    grid-template-columns: 1fr 1fr;
}
.credential-area .skills-wrap .skill-item {
    width: 50%;
}
.credential-area .skills-wrap .skill-item .percent {
    color: #bcbcbc;
    opacity: 0.6;
    display: block;
    font-weight: 500;
    margin-bottom: 9px;
}
.credential-area .skills-wrap .skill-item .name {
    color: #ffffff;
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 4px;
}
.credential-area .skills-wrap .skill-item p {
    color: #bcbcbc;
    opacity: 0.6;
    font-size: 14px;
    margin: 0;
}
.credential-area .awards-wrap {
    padding-top: 100px;
}
.credential-area .awards-wrap.skills-wrap .skill-items {
    grid-template-columns: 1fr;
}
.credential-area .awards-wrap.skills-wrap .skill-item {
    width: 100%;
}

/* # Service */
.service-area {
    padding-top: 87px;
}
.service-area .container > .section-heading {
    display: none;
}
.service-area .service-sidebar {
    height: 100%;
}
.service-area .service-sidebar .service-sidebar-inner {
    height: 100%;
    padding: 91px 24px 90px 60px;
}
.service-area .service-sidebar .service-sidebar-inner ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.service-area .service-sidebar .service-sidebar-inner ul li {
    font-size: 16px;
    line-height: 16.8px;
    letter-spacing: -1%;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 50px;
}
.service-area .service-sidebar .service-sidebar-inner ul li i {
    color: #ffffff;
    font-size: 30px;
    display: block;
}
.service-area .service-content-wrap .service-content-inner {
    padding: 27px 30px;
}
.service-area .service-content-wrap .service-content-inner .service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.service-area .service-content-wrap .service-content-inner .service-item {
    width: calc(50% - 12px);
    padding: 24px 47px 59px 30px;
}
.service-area .service-content-wrap .service-content-inner .service-item h3 {
    color: #bcbcbc;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.56;
    text-transform: uppercase;
    letter-spacing: -1%;
}
.service-area .service-content-wrap .service-content-inner .service-item p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 25px;
    font-size: 14px;
    margin: 0;
}
.service-area .profile-contact-credentials-wrap .about-contact-box {
    height: 100%;
    padding-top: 102px;
}

/* # Blog */
.blog-area {
    padding-top: 130px;
}
.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget {
    margin-bottom: 40px;
}
.blog-sidebar
    .blog-sidebar-inner
    .blog-sidebar-widget
    .blog-sidebar-widget-inner {
    padding: 46px 30px 62px 30px;
}
.blog-sidebar .blog-sidebar-inner .search-widget .blog-sidebar-widget-inner {
    padding: 0;
}
.blog-sidebar .blog-sidebar-inner .search-widget form {
    position: relative;
    border-radius: 30px;
}
.blog-sidebar .blog-sidebar-inner .search-widget form::before,
.blog-sidebar .blog-sidebar-inner .search-widget form::after {
    border-radius: 30px;
}
.blog-sidebar .blog-sidebar-inner .search-widget form input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 19px 20px;
    border-radius: 30px;
    color: #ffffff;
}
.blog-sidebar .blog-sidebar-inner .search-widget form input:focus {
    outline: none;
    box-shadow: none;
}
.blog-sidebar .blog-sidebar-inner .search-widget form .theme-btn {
    border: none;
    border-radius: 30px;
    position: absolute;
    right: 6px;
    top: 6px;
}
.blog-sidebar .blog-sidebar-inner .categories-widget ul li,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li {
    display: block;
    margin-bottom: 24px;
}
.blog-sidebar .blog-sidebar-inner .categories-widget ul li:last-child,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li:last-child {
    margin-bottom: 0;
}
.blog-sidebar .blog-sidebar-inner .categories-widget ul li a,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li a {
    display: block;
    line-height: 25px;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
}
.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget h3 {
    color: #bcbcbc;
    opacity: 0.5;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.blog-details-area .blog-details-content .tags,
.blog-sidebar .blog-sidebar-inner .tags-widget ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-details-area .blog-details-content .tags a,
.blog-sidebar .blog-sidebar-inner .tags-widget ul li a {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
}

.blog-area .blog-items {
    padding-right: 85px;
}
.blog-area .blog-items .blog-item + .blog-item {
    margin-top: 70px;
}
.blog-area .blog-items .blog-item .img-box {
    height: 400px;
    position: relative;
    margin-bottom: 70px;
}
.blog-area .blog-items .blog-item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-area .blog-details-content .meta,
.blog-area .blog-items .blog-item .content .meta {
    display: block;
    color: var(--primary_color);
    font-size: 16px;
    letter-spacing: -1%;
    font-weight: 400;
    line-height: 16.8px;
    margin-bottom: 10px;
}
.blog-details-area .blog-details-content h1,
.blog-area .blog-items .blog-item .content h1 {
    font-size: 24px;
    line-height: 26.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.blog-area .blog-items .blog-item .content h1 a {
    color: #ffffff;
}
.blog-details-area .blog-details-content p,
.blog-area .blog-items .blog-item .content p {
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 30px;
}

.blog-details-area {
    padding-top: 130px;
}
.blog-details-area .blog-details-content {
    padding-right: 85px;
}
.blog-details-area .blog-details-content .img-box {
    margin-bottom: 70px;
}
.blog-details-area .blog-details-content .img-box img {
    display: block;
    width: 100%;
}
.blog-details-area .blog-details-content h1 {
    color: #ffffff;
}
.blog-details-area .blog-details-content .list {
    margin-bottom: 30px;
}
.blog-details-area .blog-details-content .list li {
    color: #898989;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 24px;
}
.blog-details-area .blog-details-content .list li:last-child {
    margin-bottom: 0;
}
.blog-details-area .blog-details-content .comments-and-form-wrap {
    margin-top: 70px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments-and-form-wrap-inner {
    padding: 40px 30px 40px 30px;
}
.blog-details-area .blog-details-content .comments-and-form-wrap h2 {
    font-size: 24px;
    line-height: 26.8px;
    color: #ffffff;
    letter-spacing: -1%;
    margin-bottom: 40px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #323232;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .children {
    padding-left: 80px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list
    .comment-avatar {
    width: 100px;
    height: 100px;
    position: relative;
    flex: none;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list
    .comment-avatar
    img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list
    .comment-body
    .date {
    line-height: 16.8px;
    color: var(--primary_color);
    letter-spacing: -1%;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list
    .comment-body
    h3 {
    font-size: 24px;
    line-height: 26.8px;
    color: #ffffff;
    letter-spacing: -1%;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list
    .comment-body
    p {
    color: #898989;
    font-size: 16px;
    line-height: 25px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comments
    .comment-list
    .comment-body
    .reply-btn {
    padding: 10px 22px;
    font-size: 14px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group
    textarea,
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group
    input {
    width: 100%;
    border: none;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.01)
    );
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #fff;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group {
    margin-bottom: 16px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group:last-child {
    margin-bottom: 0;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group
    textarea {
    resize: none;
    height: 145px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    button {
    border: none;
    width: 100%;
    padding: 18px 30px;
}
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group
    textarea:focus,
.blog-details-area
    .blog-details-content
    .comments-and-form-wrap
    .comment-form
    form
    .input-group
    input:focus {
    box-shadow: none;
    outline: none;
}

/* # Contact */
.contact-area {
    padding-top: 80px;
}
.contact-area .contact-form {
    position: relative;
    max-width: 765px;
    width: 100%;
}
.contact-area .contact-form .shadow-box {
    padding: 40px 40px 40px 40px;
}
.contact-area .contact-form img {
    position: absolute;
    top: 0;
    right: 50px;
}
.contact-area .contact-form h1 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 30px;
}
.contact-area .contact-form h1 span {
    color: var(--primary_color);
}
.contact-area .contact-form form .input-group + .input-group {
    margin-top: 16px;
}
.contact-area .contact-form form .input-group textarea,
.contact-area .contact-form form .input-group input {
    width: 100%;
    border: none;

    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.01)
    );
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #fff;
}
.contact-area .contact-form form .input-group textarea {
    height: 145px;
    resize: none;
}
.contact-area .contact-form form .input-group textarea:focus,
.contact-area .contact-form form .input-group input:focus {
    outline: none;
    box-shadow: none;
}
.contact-area .contact-form form .input-group button {
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    padding: 16px 30px;
}
.contact-area .contact-infos {
    width: 290px;
    flex: none;
}
.contact-area .contact-infos h3 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 29px;
}
.contact-area .contact-infos .contact-details {
    margin-bottom: 55px;
}
.contact-area .contact-infos .contact-details li {
    gap: 24px;
}
.contact-area .contact-infos .contact-details li + li {
    margin-top: 70px;
}
.contact-area .contact-infos .contact-details li .icon-box {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    flex: none;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
    color: #ffffff;
}
.contact-area .contact-infos .contact-details li .icon-box::after,
.contact-area .contact-infos .contact-details li .icon-box::before {
    border-radius: 10px;
}
.contact-area .contact-infos .contact-details li .right span {
    display: block;
    color: #bcbcbc;
    font-size: 14px;
    opacity: 0.5;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 7px;
}
.contact-area .contact-infos .contact-details li .right h4 {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 7px;
}
.contact-area .contact-infos .contact-details li .right h4:last-child {
    margin-bottom: 0;
}
.contact-area .social-links {
    gap: 20px;
}
.contact-area .social-links li a {
    width: 82px;
    height: 82px;
    display: block;
    text-align: center;
    line-height: 92px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    transition: 0.3s;
}
.contact-area .social-links li a:hover {
    background: #ffffff;
    color: #0f0f0f;
}
.contact-area .social-links li a:before,
.contact-area .social-links li a:after {
    border-radius: 50%;
}

/* # Footer */
.footer-area {
    padding-top: 128px;
    padding-bottom: 78px;
}
.main-workspage .footer-area {
    padding-top: 104px;
}
.footer-area .footer-content .logo {
    display: inline-block;
}
.footer-area .footer-content .logo img {
    display: block;
}
.footer-area .footer-content .footer-menu {
    margin: 33px 0 37px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.footer-area .footer-content .footer-menu li a {
    color: #676767;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    font-weight: 600;
    transition: 0.3s;
}
.footer-area .footer-content .footer-menu li a:hover {
    color: #fff;
}
.footer-area .footer-content .copyright {
    margin: 0;
    color: #727272;
    font-size: 14px;
    font-weight: 500;
}
.footer-area .footer-content .copyright span {
    color: var(--primary_color);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-65.3%);
    }
}

@keyframes loader_running {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    49% {
        transform: scaleX(1);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

@keyframes preloader_slide {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Responsive */
@media (max-width: 1090px) {
    .container {
        padding: 0 20px;
    }
    .about-area .about-me-box {
        padding: 40px 30px;
    }
    .about-area .about-me-box .img-box {
        width: 190px;
        height: 190px;
    }
    .about-area .about-me-box .infos {
        padding-top: 10px;
    }
    .about-area .about-me-box .infos h1 {
        font-size: 30px;
        line-height: 1.2;
    }
    .about-area .about-me-box .infos .about-btn {
        bottom: 25px;
    }
    .info-box {
        padding: 20px;
    }
    .info-box > img {
        width: 75%;
    }
    .info-box.about-services-box .icon-boxes {
        margin-bottom: 39px;
        margin-top: 31px;
    }
    .info-box .inner-profile-icons {
        padding: 16px;
    }
    .info-box .inner-profile-icons a {
        width: 62px;
        height: 62px;
    }
    .info-box .inner-profile-icons a i {
        font-size: 25px;
    }
    .info-box.about-contact-box .star-icon {
        width: auto;
    }
    .info-box.about-contact-box {
        padding-top: 74px;
    }

    .section-heading {
        font-size: 54px;
    }
    .section-heading img {
        width: 25px;
    }

    .service-area .service-sidebar .service-sidebar-inner {
        padding: 50px 24px;
        height: auto;
    }
    .service-area .service-sidebar .service-sidebar-inner ul {
        justify-content: center;
        gap: 114px;
    }
    .service-area .service-content-wrap .service-content-inner .service-item {
        width: 100%;
        padding-bottom: 30px;
    }
}

@media (max-width: 920px) {
    .about-area .container .row:first-child .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
    .about-area .about-me-box {
        margin-bottom: 24px;
    }
    .about-area .about-me-box .img-box {
        width: 224px;
        height: 224px;
    }
    .about-area .about-me-box .infos h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .info-box.about-client-box .clients .client-item {
        padding: 42px 10px 42px 10px;
    }
    .info-box.about-client-box .clients .client-item h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap {
        /* display: grid !important; */
        /* grid-template-columns: 1fr 1fr; */
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .about-area
        .container
        > .row:nth-child(2)
        .blog-service-profile-wrap
        > div {
        width: calc(50% - 12px);
    }
    .about-area
        .container
        > .row:nth-child(2)
        .blog-service-profile-wrap
        > div:nth-child(2) {
        order: 3;
    }
    .info-box.about-services-box .icon-boxes {
        gap: 40px;
    }
    .about-area .container > .row:nth-child(3) .col-md-6 {
        width: 100%;
    }
    .info-box.about-client-box {
        margin-bottom: 24px;
    }
    .section-heading {
        font-size: 36px;
        justify-content: center;
    }
    .profile-contact-credentials-wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }
    .project-details-wrap .project-about-2,
    .project-details-wrap .project-infos-wrap {
        gap: 24px;
    }
    .breadcrumb-area .breadcrumb-content .section-heading br {
        display: none;
    }
}

@media (max-width: 810px) {
    .credential-area .credential-sidebar {
        width: 300px;
    }
    .credential-area .container .gx-row {
        gap: 40px;
    }
    .about-area .about-me-wrap {
        flex-direction: column;
        gap: 40px;
        align-items: center !important;
    }
    .project-details-wrap .project-infos-wrap {
        flex-direction: column;
        padding: 50px 24px 24px 24px;
    }
    .about-area .about-details .section-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .header-area {
        padding: 20px 0;
    }

    .header-area .navbar {
        position: fixed;
        width: 100%;
        background: #0f0f0f;
        z-index: 15;
        overflow-x: hidden;
        /* height: 80px; */
        transform-origin: 50% 50% 0px;
        top: 0;
        left: 0;
        padding-top: 100px;
        padding-bottom: 24px;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        /* max-height: 0; */
        will-change: transform;

        /* transform: translate3d(0px, -11.4272px, 0px) scale(1, 1) scale(1, 0.945615); */
        transform: translate3d(0px, -300px, 0px) scale(1, 1) scale(1, 0.945615);
        transform: translate3d(0px, -300px, 0px) scale(1, 0.5) scale(1, 0.5);
        transition: 0.5s;
    }
    .header-area .navbar.active {
        opacity: 1;
        visibility: visible;
        /* height: min-content; */
        transform: translate3d(0px, 0, 0px) scale(1, 1) scale(1, 1);
        /* max-height: 90vh; */
    }
    .header-area .navbar .menu {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100%;
        gap: 30px;
    }
    .header-area .navbar .menu li a {
        padding: 0;
    }
    .header-area .navbar .theme-btn {
        display: inline-block;
        margin-top: 48px;
    }
    .header-area .gx-row > .theme-btn {
        display: none;
    }

    .header-area .show-menu {
        display: flex;
    }
    .contact-area .gx-row,
    .credential-area .container .gx-row {
        flex-direction: column;
    }
    .contact-area .contact-form {
        margin-top: 50px;
    }
    .project-details-wrap .project-about-2 .left-details,
    .contact-area .contact-form,
    .credential-area .credential-sidebar {
        width: 100%;
    }
    .about-area .about-experience {
        margin-bottom: 24px;
    }
    .projects-area .container > .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .project-details-wrap .project-about-2,
    .projects-area .container > .row .col-md-8 > .d-flex {
        flex-direction: column;
    }
    .project-details-wrap .project-details-img {
        height: 300px;
    }
    .breadcrumb-area .breadcrumb-content .section-heading {
        font-size: 36px;
    }

    .service-area .service-sidebar .service-sidebar-inner {
        padding: 50px 24px;
        width: 100%;
        margin: auto auto 30px auto;
    }
    .service-area .service-sidebar .service-sidebar-inner ul {
        gap: 50px;
        max-width: 220px;
        margin: auto;
    }
    .service-area .col-md-8 > .section-heading {
        display: none;
    }
    .service-area .container > .section-heading {
        display: flex;
        margin-bottom: 30px;
    }

    .blog-details-area,
    .blog-area {
        padding-top: 40px;
    }
    .blog-details-area .blog-details-content,
    .blog-area .blog-items {
        padding-right: 0;
    }
    .blog-area .blog-items .blog-item .img-box {
        margin-bottom: 50px;
    }
    .blog-sidebar {
        margin-top: 50px;
    }
}
@media (max-width: 585px) {
    .about-area .about-me-box {
        flex-direction: column;
    }
    .about-area .about-me-box .img-box {
        margin: auto;
        width: 100%;
        height: auto;
    }
    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap {
        grid-template-columns: 1fr;
    }
    .about-area .about-credentials-wrap > .gx-row {
        flex-wrap: wrap;
    }
    .about-area .about-credentials-wrap > .gx-row > * {
        width: 100%;
        flex: none;
    }
    .info-box > img {
        width: auto;
    }
    .info-box.about-client-box .clients {
        /* display: grid !important;
        grid-template-columns: 1fr 1fr; */
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .info-box.about-client-box .clients .client-item {
        width: calc(50% - 12px);
        flex: none;
    }
    .info-box.about-contact-box h1 {
        font-size: 30px;
        line-height: 1.2;
    }
    .contact-area .contact-form h1 {
        font-size: 34px;
    }
    .contact-area .contact-form .shadow-box {
        padding: 55px 20px 30px 20px;
    }
    .contact-area .social-links li a {
        width: 50px;
        height: 50px;
        line-height: 58px;
        font-size: 20px;
    }
    .contact-area .contact-infos .contact-details li .icon-box {
        width: 58px;
        height: 58px;
        line-height: 63px;
        font-size: 25px;
    }
    .contact-area .contact-infos .contact-details li + li {
        margin-top: 40px;
    }

    .projects-area .container > .row,
    .profile-contact-credentials-wrap {
        grid-template-columns: 1fr;
    }
    .about-area .about-image-box {
        max-width: 370px;
        width: 100%;
    }
    .about-area .about-image-box {
        padding: 15px;
    }
    .about-area .about-details .about-details-inner h1,
    .section-heading {
        font-size: 26px;
    }
    .about-area .about-details .about-details-inner {
        padding-top: 80px;
    }
    .projects-area .container > .section-heading {
        display: flex;
        margin-bottom: 40px;
    }
    .projects-area .col-md-8 .section-heading {
        display: none;
    }
    .breadcrumb-area .breadcrumb-content .section-heading {
        font-size: 24px;
    }
    .project-details-wrap .project-details-3-img,
    .project-details-wrap .project-details-2-img {
        height: 250px;
    }
    .project-details-wrap .row .col-md-6:first-child .project-details-3-img {
        margin-bottom: 24px;
    }
    .project-details-wrap .project-about-2,
    .project-details-wrap .project-about-2 .left-details {
        padding: 30px;
    }
    .project-details-wrap .big-btn {
        margin-top: 50px;
        font-size: 25px;
        padding: 30px 46px;
    }

    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap > div,
    .projects-area .project-item .project-img img {
        width: 100%;
    }
    .blog-area .blog-items .blog-item .img-box {
        height: 300px;
    }
    .blog-details-area
        .blog-details-content
        .comments-and-form-wrap
        .comments
        .children {
        padding-left: 40px;
    }
    .blog-details-area
        .blog-details-content
        .comments-and-form-wrap
        .comments
        .comment-list {
        gap: 20px;
    }
    .blog-details-area
        .blog-details-content
        .comments-and-form-wrap
        .comments
        .comment-list
        .comment-avatar {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 425px) {
    .about-area .about-me-box .infos h1 {
        font-size: 30px;
    }
    .about-area .about-me-box .infos {
        padding-right: 20px;
    }
    .info-box.about-services-box .icon-boxes {
        gap: 25px;
    }
    .info-box.about-services-box .icon-boxes i {
        font-size: 30px;
    }
    .credential-area .skills-wrap .skill-items,
    .info-box.about-client-box .clients {
        grid-template-columns: 1fr;
    }
    .footer-area .footer-content .footer-menu {
        gap: 24px;
    }
    .credential-area .credential-content .credential-about {
        padding-bottom: 70px;
    }
    .contact-area .contact-form h1 {
        font-size: 30px;
    }
    .info-box.about-client-box .clients .client-item {
        width: 100%;
    }
    .blog-details-area
        .blog-details-content
        .comments-and-form-wrap
        .comments
        .comment-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .blog-details-area
        .blog-details-content
        .comments-and-form-wrap
        .comments
        .children {
        padding-left: 0;
    }
}

/* new */
.main-nav-header {
    background: #323232;
    border-radius: 16px;
    border: 2px solid #ffffff59;
    padding: 13px 20px !important;
}
.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 20px;
}
/* .nav-link:hover,
.nav-link:active {
    background-color: #000000;
    color: #fff;
} */
.design-section {
    background-color: #272829;
    border: 1px solid #f4f4f420;
    border-radius: 16px;
    padding: 24px 40px;
}

.design-exp {
    color: #5b78f6;
}

.design-text {
    color: #9f9f9f;
    font-weight: 400;
}

.design-heading {
    font-size: 34px;
    font-weight: 500;
}

.design-see-all-btn {
    color: #bcbcbc;
    font-size: 12px;
    font-weight: 500;
}

.poster-images {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

img.banner-top {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
}

.image-main-text {
    top: 10px;
    left: 17px;
    right: auto;
    bottom: auto;
    font-size: 28px;
    font-weight: 500;
    z-index: 1;
}

.overlay.position-absolute {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, #181f2fbf, #171e2e00);
    border-radius: 10px;
}

.price-box {
    border: 2px solid #f4f4f420;
    border-radius: 14px;
    padding: 14px 0 14px 10px;
    position: relative;
}

.design-order-btn {
    font-size: 15px;
    color: #bcbcbc !important;
    font-weight: 500;
    opacity: 50%;
    transition: 0.3s ease;
}

.price {
    font-size: 14px;
    font-weight: 500;
}

.margin-sections {
    margin: 80px auto;
}
.price-box:hover .main-heading {
    color: #fff !important;
}
.main-heading {
    color: #bcbcbc !important;
}

.price-box .icon .svg-path {
    fill: #bcbcbc; /* Default fill color */
}
.price-box:hover .icon .svg-path {
    fill: #ffffff; /* Change fill color to white */
    opacity: 1; /* Ensure full opacity */
}
.navbar .nav-link {
    color: #ffffff9c !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    letter-spacing: 0.3px;
}

/* .active {
    background-color: #070708;
    border-radius: 12px;
} */

.navbar .nav-link:hover {
    background-color: #070708;
}
.navbar .nav-link:active,
.navbar .nav-link:focus-visible {
    background-color: #070708 !important;
}

.navbar .nav-link svg {
    height: 24px;
    width: 24px;
}

.navbar {
    background-color: #272829;
    border: 1px solid #f4f4f420;
    border-radius: 16px;
}

.btn-talk {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
}
.price-box::after {
    width: 2px;
    content: "";
    height: 20px;
    position: absolute;
    background: 2px #0f0f0f;
    right: -2px;
    top: 15px;
}
p.blog-heading {
    font-size: 15px;
    line-height: 20px;
    padding-top: 4px;
}
.footer-content {
    color: #fff;
}

.signature {
    width: 100%;
}

.footer-text {
    color: #bcbcbcb5;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
}

.rights-text {
    font-size: 14px;
    font-weight: 400;
    color: #bcbcbcb5;
    margin-top: 10px;
    margin-left: 8px;
}

.rights-by {
    font-weight: 500;
}

.footer-margin-top {
    margin-top: 60px !important;
}

.footer-heading {
    font-size: 16px;
    font-weight: 500;
}

.footer-border {
    border: 1px solid #f4f4f420;
    /* border-radius: 17px; */
    padding: 85px 30px 40px 30px;
}

.star-icon {
    position: absolute;
    left: 3px;
    top: -85px;
    margin: 0;
}

.custom-card {
    background-color: #222;
    border-radius: 12px;
    padding: 2rem;
    color: #bbb;
}
.custom-card h1,
.custom-card h5 {
    color: #fff;
}
.badge-custom {
    background-color: #444;
    color: #fff;
    margin-right: 0.5rem;
    border-radius: 10px;
    padding: 0.3rem 0.8rem;
}
.price-section {
    color: #222;
    background-color: #0f0;
    font-weight: bold;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
}
.btn-buy-now {
    color: #fff;
    background-color: #0f0;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
}
.client-logo {
    max-height: 40px;
}
.price-tagline {
    font-size: 14px;
    color: #9f9f9f !important;
}
.keyword-product {
    background: #b3b3b3a1;
    font-size: 12px;
    font-weight: 300;
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
}
.keyword-main-text {
    top: 10px;
    right: 17px;
    z-index: 1;
    left: auto;
}

.main-contact-section {
    padding: 40px 0;
}

.service-section {
    display: flex;
    gap: 20px;
    border-radius: 16px;
    padding: 30px 22px 30px 41px;
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
    border-left: 1px solid #4d4d4d;
}

.margin-top-spacing {
    margin-top: 75px;
    padding: 0 59px 0 0;
}
.left-section .margin-top-spacing {
    margin-top: 75px;
    padding: 0;
}
.right-heading {
    font-size: 34px;
    font-weight: 500;
}

.right-description {
    color: #bcbcbc94;
    font-weight: 500;
    font-size: 12px;
}

.left-section {
    flex: 2;
}
.right-section {
    flex: 1;
    border-radius: 16px;
    padding: 20px;
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-top: 0.75px solid #ffffff33;
    border-bottom: 0.75px solid #ffffff33;
    border-left: 0.75px solid #ffffff33;
}

.badge {
    background-color: #545454;
    margin: 20px 0 5px;
    color: #fff;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 0.75px solid #ffffff33;
}

.service-text {
    color: #9f9f9f;
    font-weight: 400;
    font-size: 20px;
    margin-top: 10px;
}

.clients svg {
    max-height: 50px;
    margin: 10px;
}

.payment-heading {
    font-size: 12px;
    font-weight: 500;
    color: #bcbcbc94;
}

.payment-detail {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #bcbcbc94;
}

.btn-proceed {
    background-color: rgba(99, 204, 57, 1);
    color: white;
    width: 100%;
    border-radius: 15px;
    padding: 10px 0 10px 10px;
    font-size: 15px;
    margin-top: 20px;
}
.btn-proceed:hover {
    background-color: #218838;
}
.payment-methods img {
    max-height: 40px;
    margin: 5px;
}

.system-image {
    height: 60px;
    width: 60px;
}

.phone-input-group .dropdown-toggle {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    background-color: transparent;
    border-radius: 0 0 0 12px;
}

.phone-input-group img {
    width: 20px;
    height: 14px;
}

.billing-details {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 12px 12px 0 0;
}
.billing-details1 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 12px 12px 0 0;
    border-top: none;
    border-bottom: none;
}
.billing-details2 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 0 0 12px 12px;
    border-left: none;
}
.billing-details3 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-top: none;
    border-bottom: none;
}
.billing-details4 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 0 0 12px 12px;
}

.form-control::placeholder,
#currentCode {
    color: #b3b3b3;
    font-size: 12px;
}

.form-label {
    font-size: 12px;
}

.form-control:focus {
    color: #b3b3b3;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
}

.payment-methods {
    background-color: #fff;
    padding: 10px;
    border-radius: 16px;
}

.summary {
    background-image: url(../images/checkout.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px 10px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.available-modes {
    font-size: 12px;
    font-weight: 400;
    color: #b3b3b3b3;
    padding: 7px;
}

.border-bottom {
    border-bottom: 1px dashed #666666b3 !important;
}

.total-amount {
    font-size: 14px;
}

.coupon-section {
    background-color: #1e1e1e;
    padding: 11px;
    border-radius: 15px;
}

.coupon-text {
    font-size: 14px;
    font-weight: 500;
    color: #b3b3b3b3;
}

.amount-section {
    top: -9px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 29px;
}
.blog-heading-section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}
.me-image {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}
.blog-main-heading {
    color: #fff;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -1px;
}
.list-type-disc {
    list-style-type: disc;
    color: #fff;
}

.blog-read {
    color: #b3b3b3b3;
}

.share-btn {
    color: rgb(188, 188, 188, 1) !important;
    font-size: 12px;
    font-weight: 400;
}

.blog-banner-section img {
    border-radius: 10px;
    margin: 20px 0px;
}

.blog-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.text-color {
    color: #6610f2;
}
.signin-popup {
    color: #fff;
    border-radius: 8px;
    max-width: 440px;
}

.modal-title {
    font-size: 34px;
    font-weight: 500;
    color: #fff;
}

.signin-popup input#email {
    background-color: #202020;
    color: #fff;
    border: 1px solid #a0a0a030 !important;
    border-radius: 12px;
    padding: 15px;
}

.signin-popup input#email::placeholder,
.create-account-input::placeholder {
    color: #a0a0a0;
    font-size: 12px;
}

.signin-popup input#email:focus {
    border: 1px solid #5b78f6 !important;
}

.btn-continue {
    background-color: #63cc39;
    color: #fff;
    border: none;
    padding: 15px 0 15px;
    border-radius: 15px;
    width: 100%;
    text-align: right;
    transition: background-color 0.3s;
}
.btn-continue svg {
    width: 150px;
    height: 24px;
}

.btn-continue:hover {
    background-color: #63cc39;
}

.modal-content {
    background-color: #2d2d2d; /* Dark background */
    border-radius: 30px;
    padding: 20px 25px;
}
.modal-header,
.modal-footer {
    border: none;
}

.or-divider {
    text-align: center;
    margin: 25px 0;
    color: #a0a0a0;
}

.or-divider::before {
    position: absolute;
    content: " ";
    width: 150px;
    left: 0px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}
.or-divider::after {
    position: absolute;
    content: " ";
    width: 150px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}
.modal-body .form-label {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.conditions-text {
    letter-spacing: 0.1px;
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}

.signup-text .create-account,
.signin-text {
    color: #63cc39;
    background: transparent;
    border: 0;
}

p.signup-text {
    font-size: 15px;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 0.1px;
    font-weight: 300;
}

.or-divider1 {
    text-align: center;
    margin: 15px 0;
    color: #a0a0a0;
}

.or-divider1::before {
    position: absolute;
    content: " ";
    width: 190px;
    left: 0px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}
.or-divider1::after {
    position: absolute;
    content: " ";
    width: 190px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}

.create-account-input {
    background-color: #070708;
    border: 0;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
}

.create-account-input:focus {
    background-color: #070708;
    box-shadow: none;
}

.dropdown-toggle::after {
    color: #fff;
}

.otp-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#otpInput {
    border: 0;
    border-radius: 15px;
    height: 75px !important;
    width: 90px !important;
    background-color: #171717;
    text-align: center;
    color: #fff;
}

.create-account-numb .dropdown-toggle {
    background-color: #070708;
    border: 0;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
}

#dropdownCountryBtn:focus {
    box-shadow: none;
}

.modal-title {
    font-size: 34px;
    font-weight: 500;
    color: #fff;
}

.signin-popup input#email {
    background-color: #202020;
    color: #fff;
    border: 1px solid #a0a0a030 !important;
    border-radius: 12px;
    padding: 15px;
}
.signin-popup input#password {
    background-color: #202020;
    color: #fff;
    border: 1px solid #a0a0a030 !important;
    border-radius: 12px;
    padding: 15px;
}

.signin-popup input#email::placeholder,
.create-account-input::placeholder {
    color: #a0a0a0;
    font-size: 12px;
}

.signin-popup input#email:focus {
    border: 1px solid #5b78f6 !important;
}

.btn-continue {
    background-color: #63cc39;
    color: #fff;
    border: none;
    padding: 15px 0 15px;
    border-radius: 15px;
    width: 100%;
    text-align: right;
    transition: background-color 0.3s;
}
.btn-continue svg {
    width: 150px;
    height: 24px;
}

.btn-continue:hover {
    background-color: #63cc39;
}

.modal-content {
    background-color: #2d2d2d; /* Dark background */
    border-radius: 30px;
    padding: 20px 25px;
}
.modal-header,
.modal-footer {
    border: none;
}

.or-divider {
    text-align: center;
    margin: 25px 0;
    color: #a0a0a0;
}

.or-divider::before {
    position: absolute;
    content: " ";
    width: 150px;
    left: 0px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}
.or-divider::after {
    position: absolute;
    content: " ";
    width: 150px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}
.modal-body .form-label {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.conditions-text {
    letter-spacing: 0.1px;
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}

.signup-text .create-account,
.signin-text {
    color: #63cc39;
    background: transparent;
    border: 0;
}

p.signup-text {
    font-size: 15px;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 0.1px;
    font-weight: 300;
}

.or-divider1 {
    text-align: center;
    margin: 15px 0;
    color: #a0a0a0;
}

.or-divider1::before {
    position: absolute;
    content: " ";
    width: 190px;
    left: 0px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}
.or-divider1::after {
    position: absolute;
    content: " ";
    width: 190px;
    right: 0px;
    top: 9px;
    border: 1px solid #ffffff1a;
}

.create-account-input {
    background-color: #070708;
    border: 0;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
}

.create-account-input:focus {
    background-color: #070708;
    box-shadow: none;
}

.dropdown-toggle::after {
    color: #fff;
}

.otp-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#otpInput {
    border: 0;
    border-radius: 15px;
    height: 75px !important;
    width: 90px !important;
    background-color: #171717;
    text-align: center;
    color: #fff;
}

.create-account-numb .dropdown-toggle {
    background-color: #070708;
    border: 0;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
}

#dropdownCountryBtn:focus {
    box-shadow: none;
}
.signin-popup {
    color: #fff;
    border-radius: 8px;
    max-width: 440px;
}

#signInModal {
    top: 16%;
    left: 60%;
}

#createAccountModal {
    right: 0;
    top: 7%;
    left: 25%;
}
.btn-talk {
    background: #323232;
    border-radius: 14px;
}
.btn-talk:hover {
    background: #323232;
    border-radius: 14px;
}
#otpModal {
    right: 0;
    top: -7%;
    left: 25%;
}
.modal-backdrop {
    background-color: #00000069;
}
button.btn.btn-lg.btn-talk:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0px !important;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    max-width: 420px !important;
}

/* Account css start  */

.account-profile {
    border-radius: 27px;
    padding: 15px 34px 0 11px !important;
    max-width: 316px;
    height: 485px;
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-left: 1px solid #c6c6c636;
}

.account-profile .account-profile-btn {
    color: #ffffff50;
    text-align: left;
    width: 100%;
    transition: 0.3s ease;
    margin: 10px;
    padding: 15px;
    border: 1px solid;
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-radius: 12px;
    border: 1px solid #ffffff17;
    border-right: 0;
}

.account-profile .account-profile-btn.active {
    background: #000 !important;
    border-radius: 12px;
    color: #fff;
}
button.account-profile-btn:hover {
    background: #000;
    border-radius: 12px;
    color: #fff;
    z-index: 9;
}

.account-profile .account-profile-btn.active .account-profile-menu-item {
    color: #fff;
}

.account-profile .account-profile-btn.active svg {
    color: #fff;
}

#accordionExample {
    gap: 20px;
}

.form-container {
    border-left: 1px solid #c6c6c636;
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-radius: 27px;
    padding: 20px;
}

.form-control.account-form-input {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
}

.form-control.account-form-input:focus {
    box-shadow: none;
    border-color: #000000 !important;
}

.save-btn {
    background-color: #63cc39;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 0;
    transition: background 0.3s ease;
    text-align: right;
}

.save-btn:hover {
    background-color: #007700;
    color: #fff;
}

.form-container-text {
    color: #ffffff50;
    font-size: 12px;
    font-weight: 400;
}

.password-container {
    position: relative;
}

#toggle-password {
    position: absolute;
    right: 10px;
    top: 14px;
    cursor: pointer;
    color: #fff;
}

span.account-profile-menu-item {
    font-size: 13px;
    font-weight: 400;
    /* color: #ffffff50; */
}

.profile-menu-item-active {
    background-color: #000 !important;
    color: #fff !important;
}

.profile-image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    object-fit: cover;
}

.account-profile .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.profile-icon {
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid;
    border-image-source: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    padding: 10px;
    border-radius: 12px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.profile-icon:hover {
    background-color: #000;
}

/* Account css end  */

/* order css start  */

.order-main-btn {
    border-radius: 15px;
    padding: 7px 15px;
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid #5b5b5b73;
    text-align: center;
}

.new-order-btn {
    font-size: 12px;
    border-radius: 12px;
    border: 0;
}

/* .active {
    background-color: #000000 !important;
    color: #fff !important;
} */

.new-order-text {
    font-size: 12px;
}

.shipped-green {
    color: #63cc39;
    font-weight: 300;
}

.mobile-app-heading {
    color: #fff;
    font-size: 28px;
    margin-top: 20px;
}

.order-banner-image {
    background: radial-gradient(
        93.54% 93.54% at 22.7% -14.46%,
        rgba(251, 188, 4, 0.2) 0%,
        rgba(251, 188, 4, 0) 100%
    );
    border-radius: 12px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.mobile-app-discription p,
.right-description p {
    color: #bcbcbc9c;
    font-size: 12px;
    line-break: anywhere;
}

.order-border-box {
    border: 1px solid #ffffff1a;
    border-radius: 12px;
    padding: 12px;
    margin-top: 25px;
}

.contact-info {
    margin-top: 15px;
}

.order-contact-text {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}

.detail-box {
    background-color: #000;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    border-radius: 12px;
    height: 125px;
}

.pagination .page-item .page-link {
    background-color: #000;
    color: #ffffff80;
    margin: 0 4px;
    border-radius: 12px;
    border: 0;
    padding: 10px 17px;
}
.pagination .page-item.active .page-link {
    color: #fbbc04;
    background-color: #000;
    border: 1px solid #fbbc04;
    border-radius: 10px;
}

.pagination .page-item.disabled .page-link {
    background-color: #444;
    color: #888;
    padding: 8px 10px;
}

.pagination .page-item .page-link.next {
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid;
    border-image-source: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    padding: 8px 10px;
}

/* order css end  */

/* create blog css start  */

.request-for-blog-container {
    height: 300px;
}
.createBlog {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
}

.create-blog-text {
    color: #ffffff50;
    font-size: 20px;
    margin-top: 10px;
}
.blog-box {
    margin: 30px auto;
}

button.btn.requestToPublishBtn {
    background: #fbbc04;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 15px;
    padding: 10px 0 10px 20px;
}

textarea#description {
    background-color: #000;
}
.cke_chrome {
    border: 1px solid #4e4e4e65 !important;
    background-color: #000 !important;
}

.cke_inner,
.cke_top {
    background-color: #000 !important;
}

.cke_toolbar_separator {
    background-color: #494949cc !important;
}

.cke_combo:after {
    border-right: 1px solid #4e4e4e !important;
}

.cke_toolgroup a.cke_button:last-child:after,
.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after {
    border-right: 1px solid #bcbcbc52 !important;
}

.cke_bottom,
span#cke_1_top {
    background-color: #000 !important;
    border-radius: 15px 15px 0 0 !important;
}
.cke_top,
span#cke_1_bottom {
    border: 1px solid #313131 !important;
    border-radius: 0 0 15px 15px !important;
}

body.cke_editable.cke_editable_themed.cke_contents_ltr.cke_show_borders {
    background-color: #d1d1d1 !important;
}

.cke_reset {
    border-radius: 20px;
}

div#cke_1_contents {
    border-radius: 0;
}

.cke_toolgroup {
    filter: brightness(1.8);
}

.cke_combo {
    filter: brightness(1.8);
}

iframe.cke_wysiwyg_frame.cke_reset {
    border-radius: 0 !important;
}

span.cke_button_icon.cke_button__cut_icon,
span.cke_button_icon.cke_button__copy_icon,
a#cke_32,
a#cke_33,
a#cke_61,
a#cke_74 {
    filter: brightness(1.8) !important;
}
.blog-input {
    background-color: #000;
    border: 0;
    padding: 10px;
    border-radius: 15px;
    color: #ffffff82;
}

.blog-input:focus {
    background-color: #000;
    box-shadow: none;
}

.blog-input::placeholder {
    color: #ffffff80;
    font-size: 12px;
    font-weight: 400;
}

.category-text {
    color: #ffffff50;
}

.category-text[value="Technology"] {
    color: #ffffff50;
}

.category-text[value="Lifestyle"] {
    color: #ffffff50;
}

.category-text[value="Travel"] {
    color: #ffffff50;
}

.form-section {
    margin: 32px 0px;
}

.upload-section {
    background-color: #000000;
    border-radius: 12px;
    padding: 34px;
    text-align: center;
}

.upload-text {
    margin: 10px 0;
    color: #fbbc04;
    font-weight: 500;
}

.upload-hint {
    color: #ffffff80;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.blog-level-text {
    color: #ffffff80;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

#saveDraftBtn {
    padding: 10px 0;
    color: #fff;
    text-align: end;
    background-color: #fbbc04;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 12px;
}

.draftBtn,
.publishBtn {
    color: #fff !important;
    font-weight: 300;
    font-size: 13px;
}

.blog-main-btn {
    background: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid;
    border-image-source: linear-gradient(
        108.49deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-radius: 16px;
    padding: 4px 25px;
}

.draftBtn1,
.publishBtn1 {
    background-color: #000;
    padding: 5px 18px;
    border-radius: 15px;
    color: #fff;
}
.draftBtn1:hover,
.publishBtn1:hover {
    background-color: #000 !important;
    padding: 5px 18px;
    border-radius: 15px;
    color: #fff;
}

.list-disc {
    list-style: disc;
    margin-left: 25px;
    color: #ffff;
}

.draft-post {
    margin: 15px 0;
}

.requestToPublishBtn1 {
    width: 100%;
    text-align: end;
    font-size: 15px !important;
}

.post-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 10px 0;
}

.draft-post-info {
    margin: 10px 5px;
}

img.draft-image {
    border-radius: 10px;
    width: 369px;
    height: 263.56px;
    object-fit: cover;
}

.view-btn {
    color: #ffffff50;
    width: 100%;
    border: 1px solid #ffffff1c;
    padding: 10px 0 10px 20px;
    border-radius: 15px;
    text-align: end;
}
.view-btn:hover {
    color: #ffffff50;
    border: 1px solid #ffffff1c;
}

form#payment-form input {
    color: #b3b3b3;
    font-size: 12px;
}
input.razorpay-payment-button {
    opacity: 0;
}
.blog-wraning-msg {
    background: #f42a2a;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff !important;
}

.thankyou-message {
    text-align: center;
    font-size: 23px;
    margin-bottom: 26px;
    color: #fff;
}
.download-soft-order {
    background: rgb(0, 0, 0) !important;
    border: none !important;
    padding: 10px 23px !important;
}

.edit-soft-order {
    background: rgb(0, 0, 0) !important;
    padding: 10px 20px;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    display: inline-block;
    margin-top: 10px;
}

.social-media-modal {
    pointer-events: auto !important;
}

.share-popup {
    position: absolute !important;
    right: 0px;
    left: 82%;
    bottom: 0;
    top: 46%;
    margin: 0;
    width: 230px !important;
}
.modal-content.share-popup-spacing {
    padding: 10px 0;
    border-radius: 10px;
}

.modal-open {
    overflow: auto !important;
    padding-right: 0px !important;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

button.btn-close {
    filter: invert(1);
}

.iti__selected-flag {
    height: 53px !important;
    padding: 0 10px !important;
}

.iti-mobile .iti__country-list {
    max-height: auto !important;
    width: auto !important;
}
/* .iti__country-list {
    left: 52%;
    top: 82%;
    bottom: 0;
} */

input#phone_n {
    padding-left: 88px !important;
}

.main-header .nav-link img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.category-icons img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

/* .fiverr-icon {
    filter: invert(1);
} */

.info-box .inner-profile-icons a:hover .fiverr-icon {
    filter: invert(1);
}

.fix-icon-width {
    width: 26px;
    height: 26px;
}

.profile-max-detail {
    height: 100%;
}

/* about us css start  */
.about-section {
    padding: 35px 15px;
}
.about-card {
    border: 1px solid #f4f4f420;
    border-radius: 30px;
    padding: 40px;
}
.about-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #bcbcbc;
}
.about-highlight {
    font-weight: 600;
    color: #0d6efd;
}

.about-us-main p,
.about-us-main ul.list-circle li {
    color: #bcbcbc;
    font-weight: 300;
    font-size: 15px;
    line-height: 30px;
}

.about-what-text {
    font-size: 20px;
    font-weight: 500;
    color: #bcbcbc;
}
.list-circle {
    list-style-type: circle;
    padding-left: 1.5rem;
}

.shipping-sub-head {
    font-size: 18px;
    font-weight: 500;
    color: #bcbcbc;
}
.modal-dialog-slideout {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog-slideout {
    transform: translateX(-30%);
}

@media (max-width: 1366px) {
    .iti-mobile .iti--container {
        top: 48% !important;
        left: 59% !important;
    }
}

@media (max-width: 1024px) {
    .modal.show .modal-dialog-slideout {
        transform: translateX(-14%);
    }
    .iti__country-list {
        left: 52%;
        top: 82%;
        bottom: 0;
    }
    #signInModal {
        top: 8%;
        left: 54%;
    }
    #createAccountModal {
        right: 0;
        top: 8%;
        left: 22%;
    }
    input#phone_n {
        padding-left: 88px !important;
    }
    .iti-mobile .iti--container {
        top: -155% !important;
    }
    .blog-main-btn {
        padding: 4px 10px;
    }
    .draft-post-info .view-btn svg {
        width: 100px !important;
    }
}

@media (max-width: 991px) {
    .blog-block-onmobile {
        display: block !important;
    }
    .blog-main-btn {
        margin: 14px 0;
    }
    #signInModal {
        left: 50%;
    }
    #createAccountModal {
        left: 20%;
    }
    .iti-mobile .iti--container {
        left: -3% !important;
    }
}
@media (max-width: 920px) {
    .info-box .inner-profile-icons svg {
        height: 15px;
    }
    .profile-max-detail {
        height: 100%;
    }
}
@media (max-width: 768px) {
    .modal.show .modal-dialog-slideout {
        transform: translateX(-12%);
    }
    .left-section .margin-top-spacing {
        margin-top: 0;
    }
    .service-section {
        display: block !important;
        padding: 16px 10px 16px 10px;
    }

    .right-section {
        padding: 8px;
    }
    .about-card {
        padding: 20px;
    }
    .profile-max-detail {
        height: 100%;
    }
    .draft-post-info .view-btn svg {
        width: 100px !important;
    }
    #signInModal {
        top: 8%;
        left: 38%;
        margin-right: 0;
    }
    #createAccountModal {
        top: 8%;
        left: 10%;
    }

    #accordionExample {
        display: block !important;
    }
    .account-profile {
        max-width: 100%;
        height: 485px;
        margin-bottom: 20px;
    }
    .download-pdf {
        display: flex;
    }
    .order-detail {
        margin-top: 20px;
    }
    .info-box.about-client-box .clients .client-item {
        padding: 20px !important;
    }
    .blog-block-onmobile {
        display: block !important;
    }

    .blog-main-btn {
        margin-bottom: 15px;
        text-align: center;
        padding: 15px 25px;
    }

    .draft-post-images {
        width: 100% !important;
    }
    .view-details-center {
        display: block !important;
        text-align: center;
    }
    .footer-margin-top {
        margin-top: 10px !important;
    }
    .iti__country-list {
        left: 30%;
    }
    input#phone_n {
        padding-left: 88px !important;
    }

    .iti-mobile .iti--container {
        top: -154% !important;
        left: 30px !important;
    }
}

@media (max-width: 500px) {
    .modal.show .modal-dialog-slideout {
        transform: translateX(-12%);
    }
    .blog-heading-section {
        padding: 10px;
    }
    .draft-post-info .view-btn svg {
        width: 150px !important;
    }

    .pending-blog-bx {
        display: block !important;
    }
    .blog-main-btn {
        padding: 10px;
    }
    .navbar.main-header {
        display: block !important;
    }
    input#phone_n {
        padding-left: 88px !important;
    }
    .iti__country-list {
        left: 0%;
    }
    #signInModal {
        top: 9%;
        left: 0%;
    }

    .save-btn svg {
        width: 154px;
    }

    #createAccountModal {
        left: 0;
    }

    .modal-content {
        padding: 13px 10px;
    }

    .modal-title {
        font-size: 28px;
    }
    .navbar .nav-link {
        margin-bottom: 10px !important;
    }
    .main-contact-section {
        padding: 20px;
    }
    .category-icons-responsive {
        display: block !important;
    }

    .design-section {
        padding: 15px;
        display: block !important;
    }

    .design-heading {
        font-size: 24px;
    }
    .order-tab-responsive {
        display: block !important;
    }

    .order-tab-responsive h4 {
        font-size: 20px;
    }

    /* .info-box{
        padding: 0;
    } */
    .info-box.about-contact-box {
        padding-bottom: 35px;
        padding-top: 83px;
        padding-left: 10px;
    }
    .info-box.about-contact-box .about-btn {
        right: 9px;
    }
    .footer-border {
        padding: 85px 0px 15px 10px;
    }
    .blog-main-heading {
        font-size: 25px;
    }

    .author-details-res li {
        font-size: 12px;
    }

    .main-profile-responsive {
        display: block !important;
    }

    .about-area .about-me-box .home-user-name {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .userprofile-details {
        text-align: center;
        margin-top: 12px;
    }
    .about-area .about-me-box {
        padding: 20px;
    }

    .manage-width {
        width: 160px;
    }
    .main-heading {
        font-size: 12px;
    }
    .design-image {
        margin-bottom: 10px;
    }
    .price-box {
        display: flex;
        justify-content: end;
    }
    .or-divider1::after {
        width: 148px;
    }
    .or-divider1::before {
        width: 148px;
    }

    .or-divider::after {
        width: 130px;
    }

    .or-divider::before {
        width: 130px;
    }

    .share-popup {
        left: 48%;
        width: 170px !important;
    }

    .modal-content.share-popup-spacing a,
    .modal-content.share-popup-spacing button {
        padding: 2px 5px;
    }
    .modal-content.share-popup-spacing {
        padding: 0px 0;
    }
}
@media (max-width: 375px) {
    .navbar .nav-link {
        margin-bottom: 10px !important;
    }
    .modal.show .modal-dialog-slideout {
        transform: translateX(-5%);
    }
}

@media (max-width: 320px) {
    .modal.show .modal-dialog-slideout {
        transform: translateX(0%);
    }
}
