/* variable css */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
    --primary: #111111;
    --secondary: #555555;
    --border: rgba(17, 17, 17, 0.1);
    --bg: #111111;
    --theme: #FA814D;
    --black: #111111;
    --white: #FFFFFF;
    --action: #FA814D;
}

.dark {
    --primary: #FFFFFF;
    --secondary: #999999;
    --border: rgba(255, 255, 255, 0.1);
    --bg: #171717;
}


/* typography css */


/* dm sans  */


/* bdo grotesk  */

@font-face {
    font-family: "BDOGrotesk";
    src: url("../fonts/BDOGrotesk-DemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: "BDOGrotesk";
    src: url("../fonts/BDOGrotesk-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "BDOGrotesk";
    src: url("../fonts/BDOGrotesk-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "PPEditorialNew-Italic";
    src: url("../fonts/PPEditorialNew-Ultralight.otf");
    font-weight: 200;
}

@font-face {
    font-family: "PPEditorialNew-Regular";
    src: url("../fonts/PPEditorialNew-Regular.otf");
    font-weight: 400;
}

@font-face {
    font-family: "PPEditorialNew-Italic";
    src: url("../fonts/PPEditorialNew-Italic.otf");
    font-weight: 400;
}

@font-face {
    font-family: "Tartuffo_Trial-Regular";
    src: url("../fonts/Tartuffo_Trial-Regular.otf");
    font-weight: 400;
}

@font-face {
    font-family: "Tartuffo_Trial-Regular";
    src: url("../fonts/Tartuffo_Trial-Thin.otf");
    font-weight: 300;
}

@font-face {
    font-family: "Tartuffo_Trial-Regular";
    src: url("../fonts/Tartuffo_Trial-Light.otf");
    font-weight: 300;
}

@font-face {
    font-family: "Astro-Nebula";
    src: url("../fonts/Astro-Nebula-Light.otf");
    font-weight: 300;
}

:root {
    --font_dmsans: "DM Sans", sans-serif;
    --font_bdogrotesk: "BDOGrotesk";
    --font_ppeditor: "PPEditorialNew-Italic";
    --font_ppeditorialnewregular: "PPEditorialNew-Regular";
    --font_tartuffotrial: "Tartuffo_Trial-Regular";
    --font_astronebula: "Astro-Nebula";
    --font_awesome: "Font Awesome 6 Free";
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font_dmsans);
    line-height: 1;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    color: var(--primary);
    line-height: 1.22;
    font-family: var(--font_bdogrotesk);
    font-weight: 500;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.ls-none li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}

a:hover {
    color: var(--primary);
}

button {
    background-color: transparent;
    border: 0;
}

p {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: var(--secondary);
}

@media only screen and (max-width: 1399px) {
    p {
        font-size: 20px;
        line-height: 28px;
    }
}

strong {
    font-weight: 500;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.medium {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .g-0 {
        padding-right: 15px;
        padding-left: 15px;
    }
    .row.g-0 {
        padding-right: 0;
        padding-left: 0;
    }
    br {
        display: none;
    }
}

main {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}


/* animation css */

.t_parallax_image {
    overflow: hidden;
}

@keyframes t-Bubble {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.5;
    }
    100% {
        scale: 1;
    }
}

@keyframes t-Zoom {
    0% {
        scale: 1;
    }
    50% {
        scale: 0.5;
    }
    100% {
        scale: 1;
    }
}

@keyframes t-Zoom_2 {
    0% {
        scale: 1;
    }
    50% {
        scale: 0.9;
    }
    100% {
        scale: 1;
    }
}

@keyframes t-SlideBottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes t-reveal {
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes t-fadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes t-spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes t-characters {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes t-sheen {
    50% {
        transform: translateY(-20px);
        color: var(--primary);
    }
}

@keyframes t-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


/* common css */


/* Scrollbar styling */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Utility classes for positioning */

.rr-pos-rel {
    position: relative;
}

.rr-pos-abs {
    position: absolute;
}

.rr-ov-hidden {
    overflow: hidden;
}


/* Container with max-width and padding */

.rr-container-1900 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.rr-container-1850 {
    max-width: 1850px;
    margin: 0 auto;
}

.rr-container-1750 {
    max-width: 1750px;
    margin: 0 auto;
}

.rr-container-1860 {
    max-width: 1860px;
    margin: 0 auto;
}

.rr-container-1890 {
    max-width: 1890px;
    margin: 0 auto;
}

.rr-container-1455 {
    max-width: 1455px;
    margin: 0 auto;
}

.rr-container-1897 {
    max-width: 1897px;
    margin: 0 auto;
}

.rr-container-1650 {
    max-width: 1650px;
    margin: 0 auto;
}


/* Background color classes */

.rr-bg-primary {
    background-color: var(--primary);
    /* Primary background color */
}

.rr-bg-white {
    background-color: var(--white);
    /* White background color */
}

.rr-bg-black {
    background-color: var(--black);
}

.dark .rr-bg-black {
    background-color: #171717;
}

.rr-bg-light-gray {
    background-color: #F0F0F0;
}

.dark .rr-bg-light-gray {
    background-color: #212121;
}

.rr-bg-light {
    background-color: #F8F2EF;
}

.dark .rr-bg-light {
    background-color: #111111;
    --primary: #F8F2EF;
}

.rr-text-white {
    color: var(--white);
}

.rr-text-primary {
    color: var(--primary);
}

.text-gray {
    color: #555555;
}

.dark .text-gray {
    color: #999999;
}

.rr-light {
    color: #F8F2EF;
}

.agency-body-border {
    border-right: 1px solid rgba(17, 17, 17, 0.2);
    border-left: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .agency-body-border {
    border-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 767px) {
    .agency-body-border {
        border: none;
    }
}


/* Full background image styling */

.rr-bg-full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.rr-bg-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Centering utility */

.pos-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* Parallax view styling */

.parallax-view {
    overflow: hidden;
}

.section-subtitle {
    font-family: var(--font_bdogrotesk);
    font-size: 16px;
    font-weight: 500;
    padding: 7px 8px;
    line-height: 14px;
    padding-left: 20px;
    position: relative;
    border-radius: 500px;
    color: var(--primary);
    display: inline-block;
    border: 1px solid var(--primary);
    text-transform: capitalize;
}

.section-subtitle::before {
    top: 50%;
    width: 6px;
    left: 12px;
    height: 6px;
    content: "";
    position: absolute;
    border-radius: 500px;
    background-color: currentColor;
    transform: translate(-50%, -50%);
}

.section-subtitle.sub--white {
    color: var(--white);
    border-color: var(--white);
    font-weight: 400;
}

.section-subtitle.sub--white::before {
    background-color: var(--white);
}

.section-subtitle-2 {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: var(--primary);
    display: inline-block;
}

.section-subtitle-2.rr-text-white {
    color: var(--white);
}

.section-subtitle-3 {
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    letter-spacing: -0.02em;
    display: inline-block;
    color: var(--primary);
}

.section-subtitle-4 {
    font-family: var(--font_bdogrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
}

.section-subtitle-5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
}

.go-down {
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
}

.dark .go-down {
    color: var(--black);
}


/* Section title styling with responsive font sizes */

.section-title {
    font-size: 90px;
    /* Specific font family and weight */
}

@media only screen and (max-width: 1919px) {
    .section-title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        font-size: 35px;
    }
}

.section-title.font-bdogrotesk-regular {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.section-title.font-bdogrotesk-regular-50 {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.05em;
}

@media (min-width: 1200px) {
    .section-title.font-bdogrotesk-regular-50 {
        font-size: 50px;
    }
}

.section-title.font-astronebula-light {
    font-family: var(--font_astronebula);
    font-weight: 300;
    line-height: 0.83;
    letter-spacing: -0.02em;
}

@media only screen and (max-width: 1199px) {
    .section-title.font-astronebula-light {
        line-height: 0.93;
    }
}

.font_ppeditor {
    font-family: var(--font_ppeditor);
}

.font_ppeditorialnewregular {
    font-family: var(--font_ppeditorialnewregular);
}


/* Section spacing with responsive padding */

.mb-44 {
    margin-bottom: 44px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pt159 {
    padding-top: 259px;
}

@media only screen and (max-width: 1919px) {
    .pt159 {
        padding-top: 209px;
    }
}

@media only screen and (max-width: 1399px) {
    .pt159 {
        padding-top: 159px;
    }
}

@media only screen and (max-width: 1199px) {
    .pt159 {
        padding-top: 109px;
    }
}

.marquee-text-area--padding {
    padding-top: 220px;
}

@media only screen and (max-width: 1919px) {
    .marquee-text-area--padding {
        padding-top: 209px;
    }
}

@media only screen and (max-width: 1399px) {
    .marquee-text-area--padding {
        padding-top: 159px;
    }
}

@media only screen and (max-width: 1199px) {
    .marquee-text-area--padding {
        padding-top: 109px;
    }
}

.section-spacing-200 {
    padding-top: 200px;
    padding-bottom: 200px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-200 {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-200 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-200 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-200 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-bottom-200 {
    padding-bottom: 200px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-bottom-200 {
        padding-bottom: 150px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-bottom-200 {
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-bottom-200 {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-bottom-200 {
        padding-bottom: 60px;
    }
}

.section-spacing-top-200 {
    padding-top: 200px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-top-200 {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-top-200 {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-top-200 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-top-200 {
        padding-top: 60px;
    }
}

.section-spacing-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-150 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-150 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-150 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-150 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-top-150 {
    padding-top: 150px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-top-150 {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-top-150 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-top-150 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-top-150 {
        padding-top: 60px;
    }
}

.section-spacing-bottom-150 {
    padding-bottom: 150px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-bottom-150 {
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-bottom-150 {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-bottom-150 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-bottom-150 {
        padding-bottom: 60px;
    }
}

.section-spacing-top-130 {
    padding-top: 130px;
}

@media only screen and (max-width: 1399px) {
    .section-spacing-top-130 {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-top-130 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-top-130 {
        padding-top: 60px;
    }
}

.section-spacing-bottom-130 {
    padding-bottom: 130px;
}

@media only screen and (max-width: 1399px) {
    .section-spacing-bottom-130 {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-bottom-130 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-bottom-130 {
        padding-bottom: 60px;
    }
}

.section-spacing-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-130 {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-130 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-130 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing-130 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-top {
    padding-top: 100px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-top {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-top {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-top {
        padding-top: 60px;
    }
}

.section-spacing-bottom {
    padding-bottom: 100px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing-bottom {
        padding-bottom: 90px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-spacing-bottom {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-spacing-bottom {
        padding-bottom: 60px;
    }
}


/* Container styling with full HD support */

.container {
    --bs-gutter-x: 30px;
}

@media (min-width: 1600px) {
    .container.full-hd {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
}


/* Inverted text style */

.text-invert>div {
    background-image: linear-gradient(to right, var(--primary) 50%, #CDC9C6 51%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}


/* Side info and offcanvas styling */

.offcanvas-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: 900;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.offcanvas-overlay.overlay-open {
    opacity: 0.5;
    visibility: visible;
}

.side-info-close {
    font-size: 20px;
    padding: 0;
    transition: all 0.3s linear;
    background-color: transparent;
    color: var(--black);
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    border-radius: 50%;
    line-height: 38px;
}

.dark .side-info-close {
    border-color: var(--white);
    color: var(--white);
}

.side-info-close:hover {
    transform: rotate(90deg);
}

.side-info {
    background: var(--white) none repeat scroll 0 0;
    padding: 40px 45px;
    position: fixed;
    right: 0;
    top: 0;
    width: 500px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.dark .side-info {
    background-color: #1F1F1F;
}

@media only screen and (max-width: 1199px) {
    .side-info {
        width: 460px;
    }
}

@media (max-width: 575px) {
    .side-info {
        width: 280px;
        padding: 30px 20px;
    }
}

.side-info ::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.side-info.info-open {
    opacity: 1;
    transform: translateX(0);
    /* Show side info */
}


/* Offset header and logo styling */

.offset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offset-logo {
    width: 95px;
}

@media (max-width: 575px) {
    .offset-logo {
        width: 95px;
    }
}

.offset-logo img {
    width: 100%;
}

.offset-button {
    margin-top: 40px;
}

@media (min-width: 576px) {
    .offset-button {
        display: none;
    }
}


/* Offset widget box styling */

.offset-widget-box {
    margin-top: 40px;
}

.offset-widget-box .title {
    font-size: 24px;
    line-height: 1.33;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
    .offset-widget-box .title {
        margin-bottom: 22px;
    }
}

.offset-widget-box .contact-meta>*:not(:first-child) {
    margin-top: 16px;
}

.offset-widget-box .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.offset-widget-box .contact-item span {
    color: var(--primary);
    font-weight: 500;
}

.offset-widget-box .contact-item span a:hover {
    color: var(--secondary);
}

.offset-widget-box .contact-item .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid var(--border);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary);
}


/* Mobile menu customization */

.mobile-menu {
    margin-top: 40px;
}

.mobile-menu.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mobile-menu.mean-container .mean-nav>ul>li:last-child>a {
    border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mobile-menu.mean-container .mean-nav .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: #999999;
    padding: 3px 7px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.mobile-menu.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    padding-inline-start: 0px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--primary);
    text-transform: capitalize;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    outline: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .mobile-menu.mean-container .mean-nav ul li a {
        font-size: 20px;
    }
}

.mobile-menu.mean-container .mean-nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 100%;
    height: 48px;
    justify-content: end;
    font-weight: 300;
    border: none !important;
    background-color: transparent;
}

@media only screen and (max-width: 767px) {
    .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
        height: 50px;
    }
}

.mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.mobile-menu.mean-container .mean-nav ul li li:first-child {
    border-top: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li a {
    font-size: 16px;
    text-transform: capitalize;
    border-top: none !important;
    padding: 12px 0;
    padding-inline-start: 15px;
}

.mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 58px;
}

@media only screen and (max-width: 991px) {
    .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
        height: 22px;
    }
}

.mobile-menu.mean-container .mean-nav ul li li li:last-child {
    border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li li a {
    padding-left: 40px;
}

.mobile-menu.mean-container .mean-bar {
    padding-bottom: 30px;
    background: none;
    max-height: auto;
    overflow-y: scroll;
}

.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
    width: 0;
}

.mobile-menu.mean-container a.meanmenu-reveal {
    display: none !important;
}


/* Sticky header styling */

.header-sticky {
    transition: all 0.5s;
}

.transformed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 800;
    transform: translateY(-100%);
}

.transformed .header-area__inner {
    height: 80px;
}

.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 800;
    background-color: #FFFFFF;
    transform: translateY(0%);
}

.sticky .header-area__inner {
    height: 80px;
}


/* page title style  */

.page-title-wrapper {
    margin-top: 30px;
    margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
    .page-title-wrapper {
        margin-bottom: 10px;
    }
}

.page-title-wrapper .page-title {
    font-size: 140px;
    font-weight: 400;
    line-height: 130px;
    letter-spacing: -7px;
}

@media only screen and (max-width: 1399px) {
    .page-title-wrapper .page-title {
        font-size: 120px;
        letter-spacing: -5px;
    }
}

@media only screen and (max-width: 1199px) {
    .page-title-wrapper .page-title {
        font-size: 100px;
        line-height: 110px;
        letter-spacing: -3px;
    }
}

@media only screen and (max-width: 991px) {
    .page-title-wrapper .page-title {
        font-size: 75px;
        line-height: 85px;
        letter-spacing: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .page-title-wrapper .page-title {
        font-size: 55px;
        line-height: 65px;
    }
}

@media (max-width: 575px) {
    .page-title-wrapper .page-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.page-title-wrapper .page-title span {
    font-family: var(--font_ppeditor);
}

.side-info-4 {
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    text-align: left;
    padding: 0 100px;
    overflow-y: scroll;
    background: var(--white);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.9s ease-in-out, opacity 0.9s ease-in-out;
}

.dark .side-info-4 {
    background-color: var(--black);
}

@media only screen and (max-width: 991px) {
    .side-info-4 {
        padding: 0 20px;
    }
}

.side-info-4.info-open {
    opacity: 1;
    z-index: 99999999;
    clip-path: inset(0 0 0 0);
}

.side-info-4 .offcanvas-4 .offset-header {
    padding-top: 25px;
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.side-info-4 .offcanvas-4 .offset-header h6 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.48px;
    margin-right: auto;
}

@media only screen and (max-width: 767px) {
    .side-info-4 .offcanvas-4 .offset-header h6 {
        display: none;
    }
}

.side-info-4 .offcanvas-4 .offset-header .date {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    font-family: var(--font_bdogrotesk);
    letter-spacing: -0.48px;
}

@media only screen and (max-width: 767px) {
    .side-info-4 .offcanvas-4 .offset-header .date {
        display: none;
    }
}

.side-info-4 .offcanvas-4 .offset-logo {
    width: 95px;
    margin-right: 225px;
}

@media only screen and (max-width: 767px) {
    .side-info-4 .offcanvas-4 .offset-logo {
        margin-right: 0;
    }
}

.side-info-4 .offcanvas-4 .offset-logo img {
    width: 100%;
}

.side-info-4 .offcanvas-4 .contact-meta {
    display: grid;
    margin-bottom: 92px;
    grid-template-columns: 325px auto 182px;
}

.side-info-4 .offcanvas-4 .contact-meta *:not(:first-child) {
    margin-top: 0px;
}

@media only screen and (max-width: 1919px) {
    .side-info-4 .offcanvas-4 .contact-meta {
        grid-template-columns: 200px auto 182px;
    }
}

.side-info-4 .offcanvas-4 .contact-item {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
}

.side-info-4 .offcanvas-4 .contact-item .title {
    color: #999999;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.54px;
    margin-bottom: 30px;
}

.dark .side-info-4 .offcanvas-4 .contact-item .title {
    color: #555555;
}

.side-info-4 .offcanvas-4 .contact-item .socail-media li {
    list-style: none;
}

.side-info-4 .offcanvas-4 .contact-item .socail-media li a {
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    color: var(--primary);
    letter-spacing: -0.54px;
    font-family: var(--font_bdogrotesk);
}

.side-info-4 .offcanvas-4 .contact-item .socail-media li a:hover {
    color: var(--secondary);
}

.side-info-4 .offcanvas-4 .contact-item .nav-list li {
    list-style: none;
    transform: translateY(-20px);
}

.side-info-4 .offcanvas-4 .contact-item .nav-list li a {
    color: var(--secondary);
    font-size: 90px;
    font-weight: 400;
    line-height: 100px;
    letter-spacing: -4.5px;
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 1919px) {
    .side-info-4 .offcanvas-4 .contact-item .nav-list li a {
        font-size: 80px;
    }
}

.side-info-4 .offcanvas-4 .contact-item .nav-list li a:hover {
    color: var(--primary);
}

.side-info-4 .offcanvas-4 .contact-item .info a {
    font-size: 18px;
    position: relative;
    font-weight: 400;
    line-height: 20px;
    color: var(--primary);
    font-family: var(--font_bdogrotesk);
}

.side-info-4 .offcanvas-4 .contact-item .info a::before {
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    transition: all 0.3s;
    background: currentColor;
}

.side-info-4 .offcanvas-4 .contact-item .info a:hover {
    color: #555;
}

.side-info-4 .offcanvas-4 .contact-item .info a:hover::before {
    width: 0;
}

.side-info-4 .offcanvas-4-media {
    max-width: 440px;
    height: 290px;
    right: 30px;
    bottom: 30px;
    overflow: hidden;
    position: absolute;
    border-radius: 15px;
}

.side-info-4 .offcanvas-4-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-info-4 .offcanvas-4 .side-info-close {
    width: 200px;
    height: 70px;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 29px 25px;
    border-radius: 15px;
    color: var(--primary);
    align-items: center;
    background-color: #F3F3F3;
    letter-spacing: -0.48px;
    justify-content: space-between;
    font-family: var(--font_bdogrotesk);
    border: 1px solid var(--border);
}

.dark .side-info-4 .offcanvas-4 .side-info-close {
    background-color: #1B1B1B;
}

.side-info-4 .offcanvas-4 .side-info-close:hover {
    transform: rotate(0deg);
    border-color: transparent;
    background-color: var(--black);
    color: var(--white);
}

.dark .side-info-4 .offcanvas-4 .side-info-close:hover {
    background-color: var(--white);
    color: var(--black);
}


/* inverted text style  */

.text-invert>div {
    background-image: linear-gradient(to right, var(--primary) 50%, rgba(17, 17, 17, 0.3) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}


/* theme css */

html {
    --container-max-widths: 1320px;
}

@media only screen and (max-width: 1399px) {
    html {
        --container-max-widths: 1140px;
    }
}

@media only screen and (max-width: 1199px) {
    html {
        --container-max-widths: 960px;
    }
}

@media only screen and (max-width: 991px) {
    html {
        --container-max-widths: 720px;
    }
}

@media only screen and (max-width: 767px) {
    html {
        --container-max-widths: 540px;
    }
}

body {
    background-color: #FFFFFF;
    color: var(--secondary);
}

.body-wrapper {
    background-color: var(--white);
}

.body-wrapper.dark {
    background-color: var(--black);
}

.img_anim_reveal {
    visibility: hidden;
    overflow: hidden;
}

.img_anim_reveal img {
    object-fit: cover;
    transform-origin: left;
}

.anim-reveal {
    overflow: hidden;
}

.anim-reveal-line {
    overflow: hidden;
}

.color-white {
    color: var(--white);
}

.color-black {
    color: var(--black);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.theme-bg-white {
    background-color: var(--white);
}

.theme-bg-black {
    background-color: var(--black);
}

.dark .theme-bg-black {
    background-color: #171717;
}

.theme-bg-primary {
    background-color: var(--primary);
}

.theme-bg-secondary {
    background-color: var(--secondary);
}

.theme-bg-transparent {
    background-color: transparent;
}

.theme-bg-theme {
    background-color: var(--theme);
}

.zi-1 {
    z-index: 1;
}

.zi-2 {
    z-index: 2;
}

.zi-0 {
    z-index: 0;
}

.zi--1 {
    z-index: -1;
}

.text-underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    text-decoration-skip-ink: none;
}

.header__area-6 {
    position: unset;
}

.vertically-center {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-indent-40 {
    text-indent: 40px;
}

.text-indent-50 {
    text-indent: 50px;
}

header {
    margin-bottom: -1px;
    z-index: 100;
}

section {
    margin-bottom: -1px;
}

.mb--1 {
    margin-bottom: -1px;
}

.dir-rtl {
    direction: rtl;
}

.show-light {
    display: inline-block;
}

.dark .show-light {
    display: none;
}

.show-dark {
    display: none;
}

.dark .show-dark {
    display: inline-block;
}

.line-divider-sm {
    height: 0.5px;
    background-color: var(--black-9);
}

.admin-bar header,
.admin-bar .body-wrapper {
    margin-top: 32px;
}

.swiper,
.swiper-container {
    direction: ltr;
}

.border-e-0 {
    border-inline-end: 0 !important;
}

.border-s-0 {
    border-inline-start: 0 !important;
}


/* Preloader css */

.container-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 900;
}

.container-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.container-preloader .animation-preloader .spinner {
    animation: t-spinner 1s infinite linear;
    border-radius: 50%;
    height: 9em;
    width: 9em;
    border: 10px solid var(--primary);
    border-top-color: var(--white);
    margin: 0 auto 3.5em auto;
}

.dark .container-preloader .animation-preloader .spinner {
    border-top-color: var(--black);
}

@media only screen and (max-width: 1919px) {
    .container-preloader .animation-preloader .spinner {
        height: 5em;
        width: 5em;
        border-width: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .container-preloader .animation-preloader .spinner {
        margin: 0 auto 0.2em auto;
    }
}

.container-preloader .animation-preloader .txt-loading {
    font: bold 5em "Montserrat", sans-serif;
    text-align: center;
    user-select: none;
}

.container-preloader .animation-preloader .txt-loading .characters {
    color: var(--white);
    position: relative;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .container-preloader .animation-preloader .txt-loading .characters {
        font-size: 50px;
    }
}

.container-preloader .animation-preloader .txt-loading .characters:before {
    color: var(--primary);
    content: attr(data-text);
    animation: t-characters 4s infinite;
    left: 0;
    top: 0;
    opacity: 0;
    position: absolute;
    transform: rotateY(-90deg);
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
    animation-delay: 0.8s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
    animation-delay: 1s;
}

.container-preloader .loader-section {
    background-color: var(--white);
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.dark .container-preloader .loader-section {
    background-color: var(--black);
}

.container-preloader .loader-section.section-left {
    left: 0;
}

.container-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

@keyframes t-spinner {
    to {
        transform: rotateZ(360deg);
    }
}


/* scroll css */

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

.scroll__down p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.9;
    text-transform: uppercase;
    color: var(--white);
}

.scroll__down span {
    width: 66px;
    height: 106px;
    border: 1px solid var(--black-6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 89px;
}

.scroll__down span i {
    color: var(--white);
}

.scroll__down-wrapper {
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1399px) {
    .scroll__down-wrapper {
        height: 380px;
    }
}

@media only screen and (max-width: 1199px) {
    .scroll__down-wrapper {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .scroll__down-wrapper {
        height: auto;
        padding: 40px 0;
    }
}

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 15px;
    bottom: 0px;
    z-index: 9999;
    background: var(--white);
    border-radius: 100px;
    mix-blend-mode: exclusion;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.scroll-top.showed {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.go-top-writer {
    width: 105px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    background-image: url(../imgs/writer/go-top.webp);
    background-position: right center;
    background-repeat: no-repeat;
    right: 16%;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: all 0.5s;
}

.go-top-writer:hover {
    color: var(--primary);
}

.go-top-writer.showed {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .go-top-writer br {
        display: block;
    }
}

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100px);
    transition: all 300ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    mix-blend-mode: exclusion;
    background-color: var(--black);
}

.progress-wrap::after {
    position: absolute;
    content: "\f062";
    font: var(--fa-font-solid);
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
    border-radius: 50px;
}

.dark .progress-wrap::after {
    color: var(--black);
}

.progress-wrap svg path {
    fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
    fill: var(--white);
    stroke: transparent;
    stroke-width: 5;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.light .scroll__down p {
    color: var(--black);
}

.light .scroll__down span {
    border-color: var(--white-3);
}

.light .scroll__down span i {
    color: var(--black);
}

.light.go-top-writer {
    color: var(--black);
    background-color: transparent;
    background-image: url(../imgs/writer/go-top-light.webp);
}

.light.progress-wrap {
    margin: 0;
    background-color: transparent;
}

.light.progress-wrap svg path {
    fill: var(--black);
}

.light.progress-wrap::after {
    color: var(--white);
}


/* button css */

.rr-btn-group {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font_dmsans);
}

.rr-btn-group.btn-whte .b {
    border: 1px solid white;
    color: var(--white);
}

.rr-btn-group.btn-whte .c {
    border: 1px solid white;
    color: var(--white);
}

.rr-btn-group span {
    letter-spacing: 0;
}

.rr-btn-group:hover .b {
    transform: rotate(-20deg);
}

.rr-btn-group:hover .c {
    transform: translate(-7px, 0px);
}

.rr-btn-group .b {
    padding: 9px 25px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    background-color: transparent;
    border: 2px solid var(--black);
    border-radius: 50px;
    transition: all 0.3s;
}

.rr-btn-group .c {
    padding: 9px 11px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    background-color: transparent;
    border: 2px solid var(--black);
    border-radius: 50px;
    transition: all 0.3s;
}

.rr-btn-group .c i {
    rotate: -30deg;
}

.rr-btn {
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
    padding: 25px 36px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.dark .rr-btn {
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .rr-btn {
        padding: 18px 29px;
    }
}

@media (max-width: 575px) {
    .rr-btn {
        padding: 16px 20px;
        font-size: 14px;
    }
}

.rr-btn:hover::before,
.rr-btn:focus::before {
    height: 100%;
}

.rr-btn:hover .btn-wrap .text-one,
.rr-btn:focus .btn-wrap .text-one {
    transform: translateY(-150%);
}

.rr-btn:hover .btn-wrap .text-two,
.rr-btn:focus .btn-wrap .text-two {
    top: 50%;
    transform: translateY(-50%);
    color: var(--black);
}

.dark .rr-btn:hover .btn-wrap .text-two,
.dark .rr-btn:focus .btn-wrap .text-two {
    color: var(--white);
}

.rr-btn:after {
    display: block;
    clear: both;
    content: "";
}

.rr-btn::before {
    background-color: var(--white);
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    position: absolute;
    transition: all 0.5s;
}

.dark .rr-btn::before {
    background-color: var(--black);
}

.rr-btn .btn-wrap {
    z-index: 1;
    float: left;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border: none;
}

.rr-btn .btn-wrap .text-one,
.rr-btn .btn-wrap .text-two {
    display: flex;
    align-items: center;
}

.rr-btn .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--white);
    transition: all 0.5s;
}

.dark .rr-btn .btn-wrap .text-one {
    color: var(--black);
}

.rr-btn .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--white);
    transition: all 0.5s;
}

.dark .rr-btn .btn-wrap .text-two {
    color: var(--black);
}

.rr-btn.btn-border {
    border: 1px solid rgba(17, 17, 17, 0.15);
    background-color: transparent;
    color: var(--black);
    padding: 25px 42px;
}

.rr-btn.btn-border:hover,
.rr-btn.btn-border:focus {
    border-color: transparent;
    color: white;
}

.rr-btn.btn-border:hover .text-two,
.rr-btn.btn-border:focus .text-two {
    color: #F9F9F9;
}

.rr-btn.btn-border .btn-wrap .text-one {
    color: var(--black);
}

.rr-btn.btn-border .btn-wrap .text-two {
    color: var(--white);
}

.rr-btn.btn-border-white {
    border: 1px solid rgba(252, 247, 243, 0.1);
    background-color: transparent;
}

.rr-btn.btn-white {
    border-radius: 20px;
    padding: 25px 25px;
    border-color: transparent;
    background-color: var(--white);
}

.rr-btn.btn-white::before {
    background-color: var(--primary);
}

.rr-btn.btn-white .text-one,
.rr-btn.btn-white .text-two {
    gap: 119px;
    display: flex;
}

@media only screen and (max-width: 1399px) {
    .rr-btn.btn-white .text-one,
    .rr-btn.btn-white .text-two {
        gap: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .rr-btn.btn-white .text-one,
    .rr-btn.btn-white .text-two {
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .rr-btn.btn-white .text-one,
    .rr-btn.btn-white .text-two {
        gap: 20px;
    }
}

.rr-btn.btn-white .btn-wrap .text-one {
    color: var(--primary);
}

.rr-btn.btn-white .btn-wrap .text-two {
    color: var(--white);
}

.rr-btn-plus {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    padding: 20px 50px 20px 33px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}

.dark .rr-btn-plus {
    background-color: var(--black);
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .rr-btn-plus {
        padding: 10px 20px 10px 18px;
    }
}

@media (max-width: 575px) {
    .rr-btn-plus {
        font-size: 14px;
    }
}

.rr-btn-plus:hover .icon:before,
.rr-btn-plus:focus .icon:before {
    transform: scale(30);
}

.rr-btn-plus:hover .btn-wrap .text-one,
.rr-btn-plus:focus .btn-wrap .text-one {
    transform: translateY(-150%);
}

.rr-btn-plus:hover .btn-wrap .text-two,
.rr-btn-plus:focus .btn-wrap .text-two {
    top: 50%;
    transform: translateY(-50%);
    color: var(--black);
}

.dark .rr-btn-plus:hover .btn-wrap .text-two,
.dark .rr-btn-plus:focus .btn-wrap .text-two {
    color: var(--black);
}

.rr-btn-plus .icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 48px;
}

.rr-btn-plus .icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #FFD80C;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.7s;
}

.rr-btn-plus .btn-wrap {
    z-index: 1;
    float: left;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border: none;
}

.rr-btn-plus .btn-wrap .text-one,
.rr-btn-plus .btn-wrap .text-two {
    display: flex;
    align-items: center;
}

.rr-btn-plus .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--black);
    transition: all 0.5s;
}

.dark .rr-btn-plus .btn-wrap .text-one {
    color: var(--white);
}

.rr-btn-plus .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--black);
    transition: all 0.5s;
}

.dark .rr-btn-plus .btn-wrap .text-two {
    color: var(--black);
}

.rr-btn-underline {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.02em;
    color: var(--primary);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 0px;
    white-space: nowrap;
}

.rr-btn-underline:hover::before {
    width: 0;
}

.rr-btn-underline:hover i {
    rotate: 0deg;
}

.rr-btn-underline::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: 0.3s;
}

.rr-btn-underline i {
    font-size: 17px;
    font-weight: 400;
    rotate: -50deg;
    transition: all 0.3s;
}

@keyframes mask_animation {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@keyframes mask_animation_2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

.btn-hover-default {
    transition: all 0.5s;
}

.btn-hover-default:hover {
    color: var(--black);
    background-color: var(--white);
}

.btn-hover-cross {
    overflow: hidden;
    position: relative;
    transition: all 1s;
}

.btn-hover-cross::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: var(--primary);
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-cross:hover {
    border-color: var(--primary);
    background-color: transparent;
}

.btn-hover-cross:hover::after {
    height: 120%;
    opacity: 1;
}

.btn-hover-divide {
    overflow: hidden;
    position: relative;
    transition: all 1s;
    z-index: 1;
}

.btn-hover-divide::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: var(--primary);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-divide:hover {
    border-color: var(--primary);
    background-color: transparent !important;
    border-color: transparent;
}

.btn-hover-divide:hover::after {
    height: 400%;
    opacity: 1;
}

.btn-hover-cropping {
    overflow: hidden;
    position: relative;
    transition: all 1s;
}

.btn-hover-cropping::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: var(--primary);
    transform: translateX(-50%) translateY(-50%) rotate(25deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-cropping:hover {
    border-color: var(--primary);
    background-color: transparent;
}

.btn-hover-cropping:hover::after {
    height: 400%;
    opacity: 1;
}

.btn-hover-mask {
    gap: 10px;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 5px;
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    border: 1px solid var(--white);
    z-index: 1;
}

.btn-hover-mask::after {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    position: absolute;
    content: attr(data-text);
    cursor: pointer;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--white);
    mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
    mask-size: 2300% 100%;
    animation: mask_animation_2 0.7s steps(22) forwards;
}

.btn-hover-mask:hover {
    color: var(--white);
}

.btn-hover-mask:hover::after {
    animation: mask_animation 0.7s steps(22) forwards;
}

.btn-rollover-top {
    position: relative;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-top:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 0px;
    width: 100%;
    z-index: -1;
    content: "";
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-top:hover {
    border-color: var(--primary);
    background-color: transparent;
}

.btn-rollover-top:hover::before {
    top: 0%;
    bottom: auto;
    height: 100%;
}

.btn-rollover-left {
    position: relative;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-left::before {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: "";
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}

.btn-rollover-left:hover {
    border-color: var(--primary);
    background-color: transparent;
}

.btn-rollover-left:hover::before {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-rollover-cross {
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

.btn-rollover-cross::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    transition: all 0.75s;
}

.btn-rollover-cross::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 100%;
    right: 100%;
    opacity: 0;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    transition: all 0.75s;
}

.btn-rollover-cross:hover {
    border-color: transparent;
    color: var(--primary);
}

.btn-rollover-cross:hover::before {
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.btn-rollover-cross:hover::after {
    top: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.btn-parallal-border {
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

.btn-parallal-border::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-bottom: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 5px;
    transition: all 0.75s;
}

.btn-parallal-border::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    top: 0;
    right: 0;
    opacity: 0;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: 5px;
    transition: all 0.75s;
}

.btn-parallal-border:hover {
    border-color: transparent;
    color: var(--primary);
}

.btn-parallal-border:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.btn-parallal-border:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}


/* menu css */

.main-menu.menu-dark>ul>li>a {
    color: var(--black);
}

.main-menu.menu-light>ul>li>a {
    color: var(--white);
}

.main-menu>ul {
    display: flex;
}

.main-menu>ul>li:first-child>a {
    padding-left: 0;
}

.main-menu>ul>li:last-child>a {
    padding-right: 0;
}

.main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.main-menu>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 0;
}

.main-menu>ul>li:hover>ul.dp-menu li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 100%;
}

.main-menu li {
    position: relative;
    list-style: none;
}

.main-menu li a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--primary);
    padding: 37px 15px;
    text-transform: capitalize;
}

.main-menu ul.dp-menu {
    background-color: #232529;
    padding: 18px 0px;
    width: 250px;
    position: absolute;
    inset-inline-start: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu ul.dp-menu.column-2 {
    column-count: 2;
    width: 480px;
    column-gap: 0;
}

.main-menu ul.dp-menu ul {
    background: var(--black);
    padding: 18px 0px;
    width: 300px;
    position: absolute;
    inset-inline-start: calc(100% + 10px);
    top: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu ul.dp-menu li {
    position: relative;
    padding: 0 25px;
}

.main-menu ul.dp-menu li:hover>a {
    color: var(--white);
    background-color: transparent;
}

.main-menu ul.dp-menu li:hover>ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}

.main-menu ul.dp-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    padding: 10px 0;
    background-color: transparent;
    border-radius: 8px;
    text-transform: capitalize;
}

.main-menu ul.dp-menu li a:hover {
    letter-spacing: 0.5px;
}

.main-menu ul.dp-menu li a:after {
    transform: rotate(-90deg);
    margin-left: auto;
}

.main-menu .has-mega-menu {
    position: static;
}

.main-menu li.menu-item-has-children>a:after {
    content: "\f107";
    font-family: var(--font_awesome);
    margin-inline-start: 5px;
    font-weight: 600;
    font-size: 14px;
}

.main-menu .mega-menu {
    background-color: var(--black);
    padding: 30px 50px;
    width: 100%;
    position: absolute;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 50px;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-menu {
        column-gap: 30px;
    }
}

.main-menu .mega-menu li:has(ul)>a:after {
    content: "";
}

.main-menu .mega-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.main-menu .mega-menu li a:hover {
    color: var(--white);
    background: #2C2C2F;
}

.main-menu .mega-menu .title {
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    border-bottom: 1px solid #333337;
    padding-bottom: 20px;
    margin-bottom: 20px;
    pointer-events: none;
    border-radius: 0;
}

.main-menu .mega-style-2 {
    padding: 0 15%;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
}

.main-menu .mega-style-2 .title {
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    padding-left: 30px;
}

.main-menu .mega-style-2 .title:after {
    position: absolute;
    content: "";
    width: 5000px;
    height: 1px;
    background-color: #333337;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu .mega-style-2>li:not(:first-child) {
    border-left: 1px solid #333337;
}

.main-menu .mega-style-2 ul {
    column-count: 2;
    position: relative;
    padding: 20px 0;
}

.main-menu .mega-style-2 ul:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 700px;
    background-color: #333337;
    top: 0;
    left: 50%;
    z-index: 1;
}

.main-menu .mega-style-2 ul li a {
    padding-left: 30px;
}

.main-menu .mega-style-3 {
    padding: 0 0 0 20px;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
}

.main-menu .mega-style-3 .title {
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    padding-left: 30px;
}

.main-menu .mega-style-3 .title:after {
    position: absolute;
    content: "";
    width: 5000px;
    height: 1px;
    background-color: #333337;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu .mega-style-3>li:not(:first-child) {
    border-left: 1px solid #333337;
}

.main-menu .mega-style-3>li:last-child {
    border: none;
    width: 36vw;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-style-3>li:last-child {
        width: 32vw;
    }
}

.main-menu .mega-style-3 ul {
    column-count: 2;
    position: relative;
    padding: 20px 0;
    column-gap: 0;
}

.main-menu .mega-style-3 ul:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 700px;
    background-color: #333337;
    top: 0;
    left: 50%;
    z-index: 1;
}

.main-menu .mega-style-3 ul li {
    margin: 0 10px;
}

.main-menu .mega-style-3 ul li a {
    padding-left: 20px;
}

.main-menu .mega-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.main-menu .mega-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
}

.main-menu .list-3-column ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
}

@media only screen and (max-width: 1399px) {
    .main-menu .list-3-column ul {
        column-gap: 30px;
    }
}

.main-menu .span-first-item ul li:first-child {
    grid-column: 1/-1;
    column-span: all;
}

.main-menu .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: var(--black);
    padding: 3px 7px;
    line-height: 1;
    border-radius: 2px;
    margin-inline-start: 8px;
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .main-menu-2 {
        display: none;
    }
}

.main-menu-2 li {
    display: inline-block;
    padding: 0 10px;
}

.main-menu-2 li a {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    padding: 10px;
    text-transform: capitalize;
}

.main-menu-2 li a:hover {
    color: var(--primary);
}

@media only screen and (max-width: 1399px) {
    .main-menu-2 li a {
        padding: 5px 0;
    }
}

.main-menu-3 li {
    display: inline-block;
    margin-right: 45px;
}

@media only screen and (max-width: 1199px) {
    .main-menu-3 li {
        margin-right: 25px;
    }
}

.main-menu-3 li:last-child {
    margin-right: 0;
}

.main-menu-3 li a {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.main-menu-3 li a:hover {
    color: var(--primary);
}

.main-menu-4 li {
    display: inline-block;
    margin-right: 50px;
}

.main-menu-4 li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    text-transform: uppercase;
}

.main-menu-4 li a:hover {
    color: var(--primary);
}

.mega-menu-thumb {
    width: 108%;
    aspect-ratio: 100/83;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .mega-menu-thumb {
        width: 100%;
        height: 100%;
    }
}

.mega-menu-thumb:after {
    position: absolute;
    content: "";
    width: 76%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(28, 29, 32, 0) 0%, #1C1D20 100%);
}

.mega-menu-thumb .laptop-view {
    width: 70%;
    aspect-ratio: 100/114;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    right: 70px;
    bottom: 0;
}

.mega-menu-counter__item {
    text-align: center;
    display: inline-block;
    margin-top: 35%;
    margin-left: 17%;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .mega-menu-counter__item {
        margin: 30px auto 50px;
    }
}

.mega-menu-counter__text p {
    font-size: 30px;
    line-height: 28px;
    color: var(--white);
    font-weight: 500;
}

.mega-menu-counter__number {
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--white);
    background: linear-gradient(136deg, #9479FF 0%, #FFA6D6 47.92%, #FFFCE3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
    .menu-with-number {
        display: none;
    }
}

.menu-with-number li {
    display: inline-block;
}

.menu-with-number li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    padding: 34px 40px;
    display: inline-block;
    text-transform: uppercase;
}

.menu-with-number li a:hover span {
    color: var(--white);
}

.menu-with-number li a:hover span::before {
    background-color: var(--white);
}

.menu-with-number li a.active span {
    color: var(--white);
}

.menu-with-number li a.active span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: 20px;
    top: 50%;
    background-color: var(--white);
}

.menu-with-number li a span {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 10px;
    text-align: right;
    color: #999999;
    position: relative;
    transition: all 0.5s;
}

.menu-with-number li a span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: 20px;
    top: 50%;
    transition: all 0.5s;
    background-color: var(--black-6);
}

.sidebar-menu li {
    display: block;
    padding-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
    .sidebar-menu li {
        padding-bottom: 10px;
    }
}

.sidebar-menu li a {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    padding: 10px 0;
    text-transform: uppercase;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: var(--primary);
}

@media only screen and (max-width: 1399px) {
    .sidebar-menu li a {
        padding: 5px 0;
    }
}


/* mean menu customize */

.offcanvas__menu-wrapper.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.offcanvas__menu-wrapper.mean-container .mean-nav>ul>li:last-child>a {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.offcanvas__menu-wrapper.mean-container .mean-nav .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: var(--black);
    padding: 3px 7px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    padding-inline-start: 15px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--white);
    text-transform: capitalize;
    border-top: 1px solid var(--black-4);
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    outline: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 20px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    width: 54px;
    height: 54px;
    justify-content: center;
    font-weight: 300;
    border: none !important;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 50px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
    background: var(--secondary);
    opacity: 1;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
    border-top: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 20px;
    text-transform: capitalize;
    border-top: none !important;
    padding: 12px 0;
    padding-inline-start: 30px;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        font-size: 18px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 58px;
}

@media only screen and (max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 22px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 40px;
}

.offcanvas__menu-wrapper.mean-container .mean-bar {
    padding: 0;
    background: none;
    max-height: auto;
    overflow-y: scroll;
}

.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
    width: 0;
}

.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
    display: none !important;
}

.light .main-menu li a:hover {
    color: var(--primary);
}

.light .main-menu-2 li a {
    color: var(--black);
}

.light .main-menu-2 li a:hover {
    color: var(--primary);
}

.light .main-menu-3 li a {
    color: var(--black);
}

.light .main-menu-3 li a:hover {
    color: var(--primary);
}

.light .sidebar-menu li a {
    color: var(--black);
}

.light .sidebar-menu li a:hover {
    color: var(--primary);
}

.light .menu-with-number li a {
    color: var(--black);
}

.light .menu-with-number li a:hover span {
    color: var(--black);
}

.light .menu-with-number li a:hover span::before {
    background-color: var(--black);
}

.light .menu-with-number li a span {
    color: var(--black-9);
}

.light .menu-with-number li a span::before {
    background-color: var(--black-9);
}

.light .menu-with-number li a.active span {
    color: var(--black);
}

.light .menu-with-number li a.active span::before {
    background-color: var(--black);
}


/* modal css */

.modal__dialog {
    width: 760px;
    max-width: 100%;
    margin-top: 100px;
}

@media only screen and (max-width: 991px) {
    .modal__dialog {
        width: 700px;
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__dialog {
        width: 350px;
    }
}

.modal__content {
    height: 500px;
}

@media only screen and (max-width: 767px) {
    .modal__content {
        height: 300px;
    }
}

.modal__content iframe {
    width: 100%;
    height: 100%;
}

.modal__close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
    z-index: 9;
    border-radius: 50px;
    font-size: 20px;
    color: var(--white);
    background: var(--black);
    transition: all 0.3s;
}

.modal__close:hover {
    color: var(--primary);
}

.modal__sfluence {
    width: 100%;
    height: 100%;
    padding: 60px;
}

@media only screen and (max-width: 767px) {
    .modal__sfluence {
        padding: 20px 10px;
    }
}

.modal__sfluence-area {
    width: 100vw;
    height: 100vh;
    background: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0.5);
}

.modal__sfluence-area.showed {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.modal__sfluence-area .close_btn {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 20px;
    z-index: 9;
    border-radius: 50px;
    font-size: 30px;
    color: var(--white);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__sfluence-area .close_btn:hover {
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .modal__sfluence-area .close_btn {
        right: 0;
    }
}

.modal__sfluence-area iframe,
.modal__sfluence-area video {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .modal__sfluence-area iframe,
    .modal__sfluence-area video {
        height: 300px;
        object-fit: cover;
        margin-top: 45%;
    }
}


/* cursor css */


/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 500px;
    transform: scale(0);
    transition: opacity 0.1s, transform 0.3s ease-in-out;
}

.cb-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: scale(0) rotate(10deg);
    transition: opacity 0.4s, transform 0.3s;
    color: white;
}


/* Exclusion and Blending Modes */

@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion,
    .cb-cursor.-opaque {
        mix-blend-mode: exclusion;
    }
    .cb-cursor.-exclusion:before,
    .cb-cursor.-opaque:before {
        background: white;
    }
}

.cb-cursor.-normal,
.cb-cursor.-text {
    mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
    background: currentColor;
}

.cb-cursor.-inverse {
    color: white;
}


/* Cursor Visibility and Transformations */

.cb-cursor.-visible:before {
    transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
    transform: scale(0.23);
    transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
    transform: scale(0);
}

.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
    transform: scale(1);
}

.cb-cursor.-text.-active:before {
    transform: scale(1.6);
    transition-duration: 0.2s;
}

.cb-cursor.all-element:before {
    transform: scale(1.6);
    opacity: 0.2;
    transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
    transform: scale(1.32);
}

.cb-cursor.-text:before {
    background: #000;
    opacity: 1;
    backdrop-filter: blur(10px);
    transform: scale(2);
}

.cb-cursor.-opaque.-active:before {
    transform: scale(1.2);
}

.cb-cursor.-lg:before {
    transform: scale(2);
}

.cb-cursor.-hidden:before {
    transform: scale(0);
}


/*----------------------------------------*/


/*  Context-Specific Styles  */


/*----------------------------------------*/

@supports (mix-blend-mode: exclusion) {
    .body-startup-agency .cb-cursor.-exclusion,
    .body-startup-agency .cb-cursor {
        mix-blend-mode: exclusion;
        opacity: 1;
    }
    .body-startup-agency .cb-cursor.-exclusion:before,
    .body-startup-agency .cb-cursor:before {
        background: white;
        opacity: 1;
    }
}

.cb-cursor.-small {
    mix-blend-mode: normal;
    white-space: nowrap;
}

.cb-cursor.-small::before {
    background-color: #fff;
    width: 80px;
    height: 28px;
    top: -14px;
    left: -40px;
}

.cb-cursor.-small .cb-cursor-text {
    color: black;
}

.cb-cursor.-big {
    mix-blend-mode: normal;
    white-space: nowrap;
}

.cb-cursor.-big::before {
    background-color: #fff;
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    mix-blend-mode: normal;
}

.cb-cursor.-big .cb-cursor-text {
    color: black;
}

.cb-cursor.portfolio:before {
    display: none;
}

.cb-cursor-text.portfolio {
    width: 420px;
    left: -210px;
}

@media only screen and (max-width: 1919px) {
    .cb-cursor-text.portfolio {
        width: 350px;
        left: -175px;
    }
}

@media only screen and (max-width: 1399px) {
    .cb-cursor-text.portfolio {
        width: 280px;
        left: -140px;
    }
}

.cb-cursor-text.portfolio .cb-cursor-text {
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    display: block;
    text-align: start;
}

.cb-cursor-text.portfolio .hover-display {
    width: 420px;
}

@media only screen and (max-width: 1919px) {
    .cb-cursor-text.portfolio .hover-display {
        width: 350px;
    }
}

@media only screen and (max-width: 1399px) {
    .cb-cursor-text.portfolio .hover-display {
        width: 280px;
    }
}

.cb-cursor-text.portfolio .hover-display .hover-thumb img {
    width: 100%;
}

.cb-cursor-text.portfolio .hover-display .hover-content {
    display: grid;
    gap: 10px 30px;
    grid-template-columns: 1fr auto;
    margin-top: 14px;
    text-align: start;
}

.cb-cursor-text.portfolio .hover-display .title {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.cb-cursor-text.portfolio .hover-display .date {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white);
}


/* header css */


/* header area style  */

.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area__inner {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    position: relative;
    height: 75px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 70px;
    padding: 0 30px 0 30px;
    margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
    .header-area__inner {
        display: flex;
    }
}

@media (min-width: 1650px) {
    .header-area .container.large {
        max-width: 1650px;
    }
}

.header-area .sticky,
.header-area .transformed {
    background-color: #FFFFFF;
}

.header-area .header__logo img {
    width: 100px;
}

.header-area .main-menu>ul {
    display: flex;
}

.header-area .main-menu>ul>li:hover>a {
    color: #999999;
}

.header-area .main-menu li a {
    font-size: 16px;
    font-weight: 400;
    padding: 29px 14px;
}

@media only screen and (max-width: 1399px) {
    .header-area .main-menu li a {
        padding: 29px 10px;
    }
}

.header-area .main-menu li a:hover {
    color: var(--white);
}

.header-area .search-icon {
    color: var(--primary);
}

.header-area .header__navicon {
    margin-left: auto;
}

.header-area .header__navicon i {
    font-size: 22px;
    color: var(--white);
}


/* header area 2 style  */

.header-area-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-2__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 80px;
}

@media only screen and (max-width: 1199px) {
    .header-area-2__inner {
        height: 70px;
        gap: 10px;
    }
}

.header-area-2__inner>*:nth-child(1) {
    margin-inline-end: auto;
}

.header-area-2 .sticky,
.header-area-2 .transformed {
    background-color: #FCF7F3;
}

.header-area-2 .header__logo img {
    width: 100px;
}

.header-area-2 .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 21px 17px;
    color: var(--primary);
}

.header-area-2 .main-menu li a:hover {
    color: var(--secondary);
}

.header-area-2 .main-menu>ul>li:hover>a {
    color: var(--white);
}

.header-area-2 .side-toggle .bar-icon {
    width: 25px;
    height: 12px;
}

.header-area-2 .side-toggle .bar-icon span {
    background-color: var(--black);
    height: 2px;
    border-radius: 500px;
}

.header-area-2 .side-toggle .bar-icon span:nth-child(1) {
    margin-left: 7px;
    width: 18px;
}

.header-area-2 .side-toggle .bar-icon span:nth-child(3) {
    margin-left: 17px;
    width: 8px;
}

.header-inner .header-area-2__inner {
    border-bottom: 1px solid var(--border);
}

.header-inner .main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.header-inner .header__navicon {
    gap: 10px;
    display: flex;
    align-items: center;
}

.header-inner .header__navicon .rr-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 11.5px 23px;
    letter-spacing: -0.64px;
}

@media (max-width: 575px) {
    .header-inner .header__navicon .rr-btn {
        display: none;
    }
}

.header-inner .side-toggle .bar-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 500px;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.4);
    transition: all 0.5s;
}

.header-inner .side-toggle .bar-icon svg * {
    transition: all 0.5s;
}

.header-inner .side-toggle .bar-icon:hover {
    background-color: var(--primary);
    border-color: transparent;
}

.header-inner .side-toggle .bar-icon:hover svg * {
    fill: var(--white);
}

.header-inner .side-toggle .bar-icon img {
    width: 15px;
}


/* header area 3 style  */

.header-area-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-3__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 100px;
    padding: 20px 25px 20px 30px;
    margin-top: 10px;
    border-radius: 20px;
    width: 950px;
    background-color: var(--white);
}

.dark .header-area-3__inner {
    background-color: var(--black);
}

@media only screen and (max-width: 1919px) {
    .header-area-3__inner {
        width: 700px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area-3__inner {
        width: 500px;
        height: 80px;
        padding: 10px 20px 10px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .header-area-3__inner {
        width: 100%;
    }
}

.header-area-3 .sticky,
.header-area-3 .transformed {
    background-color: #FFFFFF;
}

.header-area-3 .header__logo img {
    width: 100px;
}

.header-area-3 .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 29px 10px;
    color: var(--white);
}

.header-area-3 .main-menu li a:hover {
    color: var(--white);
}

.header-area-3 .search-icon {
    color: var(--primary);
}

.header-area-3 .rr-btn {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 22px 32px;
    border-radius: 20px;
    border: none;
}

.header-area-3 .rr-btn:hover {
    background-color: rgb(255, 216, 12);
}

.header-area-3 .rr-btn:before {
    background-color: rgb(255, 216, 12);
}

.header-area-3 .header__logo {
    margin-right: auto;
}

@media (max-width: 575px) {
    .header-area-3 .header__btn {
        display: none;
    }
}

.header-area-3 .header__navicon {
    position: relative;
}

.header-area-3 .side-toggle {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.5s;
    border: 1px solid rgba(17, 17, 17, 0.15);
}

.dark .header-area-3 .side-toggle {
    border-color: rgba(255, 255, 255, 0.15);
}

.header-area-3 .side-toggle:hover {
    background-color: #FFD80C;
    border-color: transparent;
}

.header-area-3 .dot {
    width: 4px;
    height: 4px;
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    transition: all 0.4s ease;
}

.header-area-3 .offcanvas-3 {
    top: 0;
    right: 0;
    height: auto;
    padding: 100px;
    position: absolute;
    border-radius: 20px;
    overflow-y: scroll;
    pointer-events: none;
    background-color: var(--white);
    transform-origin: 100% 0%;
    transition: all 0.5s ease-in;
    clip-path: inset(0% 0% 100% 100%);
    will-change: transform, opacity, filter;
    transform: translate3d(0, 0, 0) scale(0);
}

.dark .header-area-3 .offcanvas-3 {
    background-color: var(--black);
}

.header-area-3 .offcanvas-3.info-open {
    opacity: 1;
    filter: none;
    height: 990px;
    margin: -20px;
    margin-right: -25px;
    pointer-events: auto;
    width: 950px;
    overflow-y: scroll;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) scale(1);
}

@media only screen and (max-width: 1919px) {
    .header-area-3 .offcanvas-3.info-open {
        width: 700px;
        height: 100vh;
        padding: 100px 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area-3 .offcanvas-3.info-open {
        width: 500px;
        padding: 100px 30px 50px;
        margin: -10px;
        margin-right: -20px;
    }
}

@media only screen and (max-width: 991px) {
    .header-area-3 .offcanvas-3.info-open {
        width: calc(100vw - 25px);
        padding: 100px 30px 50px;
    }
}

@media (max-width: 575px) {
    .header-area-3 .offcanvas-3.info-open {
        padding: 100px 20px 50px;
    }
}

.header-area-3 .offcanvas-3 .offset-header {
    display: flex;
    align-items: center;
    padding: 29px 30px;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    background-color: #F3F3F3;
}

.dark .header-area-3 .offcanvas-3 .offset-header {
    background-color: #1B1B1B;
    border-color: rgba(255, 255, 255, 0.06);
}

@media only screen and (max-width: 1199px) {
    .header-area-3 .offcanvas-3 .offset-header {
        padding: 25px 15px;
    }
}

@media (max-width: 575px) {
    .header-area-3 .offcanvas-3 .offset-header {
        gap: 15px;
        flex-wrap: wrap;
    }
}

.header-area-3 .offcanvas-3 .offset-header h6 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.48px;
    margin-right: auto;
}

@media only screen and (max-width: 1199px) {
    .header-area-3 .offcanvas-3 .offset-header h6 {
        font-size: 15px;
    }
}

.header-area-3 .offcanvas-3 .offset-header .date {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    font-family: var(--font_bdogrotesk);
    letter-spacing: -0.48px;
}

@media only screen and (max-width: 1199px) {
    .header-area-3 .offcanvas-3 .offset-header .date {
        font-size: 15px;
    }
}

.header-area-3 .offcanvas-3 .offset-logo {
    width: 95px;
    margin-right: 100px;
}

@media only screen and (max-width: 1919px) {
    .header-area-3 .offcanvas-3 .offset-logo {
        margin-right: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area-3 .offcanvas-3 .offset-logo {
        margin-right: 20px;
    }
}

@media (max-width: 575px) {
    .header-area-3 .offcanvas-3 .offset-logo {
        width: 95px;
    }
}

.header-area-3 .offcanvas-3 .offset-logo img {
    width: 100%;
}

.header-area-3 .offcanvas-3 .contact-meta {
    display: grid;
    margin-bottom: 96px;
    grid-template-columns: 338px 1fr;
}

.header-area-3 .offcanvas-3 .contact-meta *:not(:first-child) {
    margin-top: 0px;
}

@media only screen and (max-width: 1919px) {
    .header-area-3 .offcanvas-3 .contact-meta {
        grid-template-columns: 225px 1fr;
    }
}

.header-area-3 .offcanvas-3 .contact-info {
    display: flex;
    gap: 154px;
}

.header-area-3 .offcanvas-3 .contact-info-item .title {
    color: #999999;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.54px;
    margin-bottom: 25px;
}

.header-area-3 .offcanvas-3 .contact-info-item a {
    font-size: 18px;
    position: relative;
    font-weight: 400;
    line-height: 20px;
    color: var(--primary);
    font-family: var(--font_bdogrotesk);
}

.header-area-3 .offcanvas-3 .contact-info-item a::before {
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    position: absolute;
    transition: all 0.3s;
    background: currentColor;
}

.header-area-3 .offcanvas-3 .contact-info-item a:hover {
    color: var(--secondary);
}

.header-area-3 .offcanvas-3 .contact-info-item a:hover::before {
    width: 0;
}

.header-area-3 .offcanvas-3 .contact-item {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
}

.header-area-3 .offcanvas-3 .contact-item .title {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.54px;
    color: #999999;
}

.dark .header-area-3 .offcanvas-3 .contact-item .title {
    color: #555555;
}

.header-area-3 .offcanvas-3 .contact-item .socail-media li {
    list-style: none;
}

.header-area-3 .offcanvas-3 .contact-item .socail-media li a {
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    color: var(--primary);
    letter-spacing: -0.54px;
    font-family: var(--font_bdogrotesk);
}

.header-area-3 .offcanvas-3 .contact-item .socail-media li a:hover {
    color: var(--secondary);
}

.header-area-3 .offcanvas-3 .contact-item .nav-list li {
    list-style: none;
}

.header-area-3 .offcanvas-3 .contact-item .nav-list li a {
    color: #999;
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -1.5px;
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 1919px) {
    .header-area-3 .offcanvas-3 .contact-item .nav-list li a {
        font-size: 40px;
    }
}

.header-area-3 .offcanvas-3 .contact-item .nav-list li a:hover {
    color: var(--black);
}

.dark .header-area-3 .offcanvas-3 .contact-item .nav-list li a:hover {
    color: var(--white);
}

.header-area-3 .offcanvas-3 .side-info-close {
    right: 20px;
    top: 20px;
    width: 107px;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    line-height: 20px;
    border-radius: 15px;
    gap: 15px;
    border: none;
    background: transparent;
    color: var(--primary);
    align-items: center;
    letter-spacing: -0.48px;
    font-family: var(--font_bdogrotesk);
}

.header-area-3 .offcanvas-3 .side-info-close span {
    width: 50px;
    height: 50px;
    display: flex;
    min-width: 50px;
    border-radius: 15px;
    align-items: center;
    transition: all 0.3s;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.15);
}

.dark .header-area-3 .offcanvas-3 .side-info-close span {
    border-color: rgba(255, 255, 255, 0.15);
}

.header-area-3 .offcanvas-3 .side-info-close:hover {
    transform: rotate(0deg);
}

.header-area-3 .offcanvas-3 .side-info-close:hover span {
    background: #FFD80C;
    border-color: transparent;
    color: var(--black);
}


/* header area 4 style  */

.header-area-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-4__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 80px;
    border-bottom: 1px solid var(--border);
}

.header-area-4 .sticky,
.header-area-4 .transformed {
    background-color: #FFFFFF;
}

.header-area-4 .header__logo img {
    width: 100px;
}

.header-area-4 .header__nav {
    margin-right: 90px;
}

.header-area-4 .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 32px 25px;
    text-transform: uppercase;
}

.header-area-4 .main-menu li a:hover {
    color: var(--primary);
}

.header-area-4 .main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.header-area-4 .search-icon {
    color: var(--primary);
}

.header-area-4 .rr-btn {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 26px;
    border-radius: 50px;
}

.header-area-4 .header__logo {
    margin-right: auto;
}

@media (max-width: 575px) {
    .header-area-4 .header__btn {
        display: none;
    }
}

.header-area-4 .side-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.5s;
}

.header-area-4 .side-toggle svg * {
    transition: all 0.5s;
}

.dark .header-area-4 .side-toggle svg * {
    fill: var(--white);
}

.header-area-4 .side-toggle:hover {
    background-color: var(--primary);
    border-color: transparent;
}

.header-area-4 .side-toggle:hover svg * {
    fill: var(--white);
}

.dark .header-area-4 .side-toggle:hover svg * {
    fill: var(--black);
}


/* header area 5 style  */

.header-area-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
}

.header-area-5__inner {
    display: flex;
    margin-top: 30px;
    gap: 10px;
    position: relative;
}

.header-area-5 .header__logo img {
    width: 100px;
}

.header-area-5 .header__nav {
    margin-left: 832px;
    margin-right: auto;
}

@media only screen and (max-width: 1399px) {
    .header-area-5 .header__nav {
        margin-left: 700px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area-5 .header__nav {
        margin-left: 0px;
    }
}

.header-area-5 .main-menu ul {
    display: block;
}

.header-area-5 .main-menu ul:hover li a {
    opacity: 0.3;
}

.header-area-5 .main-menu ul li {
    color: var(--primary);
    transition-property: opacity;
    transition-duration: 500ms;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 0;
}

.header-area-5 .main-menu ul li:not(:last-child) {
    margin-bottom: 6px;
}

.header-area-5 .main-menu ul li a {
    display: block;
    padding: 0;
}

.header-area-5 .main-menu ul li a:hover {
    opacity: 1;
    color: var(--primary) !important;
}

.header-area-5 .main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.header-area-5 .rr-btn {
    border-radius: 15px;
    padding: 14px 25px;
    background-color: var(--white);
    border-color: transparent;
}

.dark .header-area-5 .rr-btn {
    background-color: var(--black);
}

.header-area-5 .rr-btn:before {
    background-color: transparent;
}

.header-area-5 .rr-btn .text-one,
.header-area-5 .rr-btn .text-two {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.dark .header-area-5 .rr-btn .text-one,
.dark .header-area-5 .rr-btn .text-two {
    color: var(--white);
}

.header-area-5 .rr-btn .text-one::before,
.header-area-5 .rr-btn .text-two::before {
    content: "";
    bottom: 0;
    width: 100%;
    left: 0;
    height: 1px;
    position: absolute;
    transition: all 0.3s;
    background-color: var(--black);
}

.dark .header-area-5 .rr-btn .text-one::before,
.dark .header-area-5 .rr-btn .text-two::before {
    background-color: var(--white);
}

@media (max-width: 575px) {
    .header-area-5 .header__btn {
        display: none;
    }
}

.header-area-5 .side-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50%;
    transition: all 0.5s;
}

.dark .header-area-5 .side-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

.header-area-5 .side-toggle:hover {
    background-color: #FFD80C;
    border-color: transparent;
}

.header-area-5 .side-toggle:hover svg * {
    fill: var(--black);
}

.header-area-5 .side-toggle svg * {
    fill: var(--primary);
}


/* header area 7 style  */

.header-area-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F8F2EF;
}

.dark .header-area-7 {
    background-color: #111111;
}

.header-area-7.header-area-10 {
    background: transparent;
}

.header-area-7.header-area-10 .header-area-7__inner {
    gap: 0;
}

.header-area-7.header-area-10 .main-menu li a {
    text-transform: capitalize;
}

.header-area-7.header-area-10 .header__nav {
    margin-right: 424px;
}

@media only screen and (max-width: 1399px) {
    .header-area-7.header-area-10 .header__nav {
        margin-right: 100px;
    }
}

.header-area-7__inner {
    display: flex;
    align-items: center;
    gap: 98px;
    position: relative;
    height: 80px;
}

@media only screen and (max-width: 1199px) {
    .header-area-7__inner {
        height: 70px;
        gap: 10px;
    }
}

.header-area-7__inner>*:nth-child(1) {
    margin-inline-end: auto;
}

.header-area-7 .sticky,
.header-area-7 .transformed {
    background-color: #F8F2EF;
}

.header-area-7 .header__logo img {
    width: 100px;
}

.header-area-7 .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 21px 24px;
    text-transform: uppercase;
}

.header-area-7 .main-menu li a:hover {
    color: var(--secondary);
}

.header-area-7 .header__navicon {
    gap: 20px;
    display: flex;
    align-items: center;
}

.header-area-7 .header__navicon .btn-line {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary);
    letter-spacing: -0.64px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .header-area-7 .header__navicon .btn-line {
        display: none;
    }
}

.header-area-7 .header__navicon .btn-line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transition: all 0.3s;
    background-color: var(--primary);
}

.header-area-7 .header__navicon .btn-line:hover {
    color: var(--secondary);
}

.header-area-7 .header__navicon .btn-line:hover::before {
    width: 0;
}

.header-area-7 .header__navicon .rr-btn {
    padding: 15px 22px;
    font-size: 14px;
    text-transform: uppercase;
}

.header-area-7 .side-toggle .bar-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 500px;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.4);
    transition: all 0.5s;
}

.dark .header-area-7 .side-toggle .bar-icon {
    border-color: rgba(248, 242, 239, 0.4);
}

.header-area-7 .side-toggle .bar-icon:hover {
    background-color: var(--primary);
    border-color: transparent;
}

.header-area-7 .side-toggle .bar-icon:hover svg * {
    fill: var(--white);
}

.dark .header-area-7 .side-toggle .bar-icon:hover svg * {
    fill: var(--black);
}

.header-area-7 .side-toggle .bar-icon img {
    width: 15px;
}

.header-area-7 .side-toggle .bar-icon svg * {
    transition: all 0.5s;
}

.dark .header-area-7 .side-toggle .bar-icon svg * {
    fill: var(--white);
}

.header-area-14 .header__nav {
    margin-right: 90px;
}

@media only screen and (max-width: 1399px) {
    .header-area-14 .header__nav {
        margin-right: 40px;
    }
}

.header-area-14 .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 32px 25px;
    text-transform: uppercase;
}

@media only screen and (max-width: 1399px) {
    .header-area-14 .main-menu li a {
        padding: 32px 15px;
    }
}

.header-area-14 .main-menu li a:hover {
    color: var(--primary);
}

.bar-icon {
    width: 26px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    display: flex;
    transition: color 0.2s ease-out;
}

.bar-icon span {
    width: 100%;
    height: 2px;
    background: var(--primary);
    display: inline-block;
    transition: color 0.2s ease-out;
}

.bar-icon span:nth-child(2) {
    margin-left: 0px;
}

.bar-icon:hover span {
    animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

.bar-icon:hover span:nth-child(2) {
    margin-left: 0px;
    animation-delay: 0.1s;
}

.bar-icon:hover span:nth-child(3) {
    animation-delay: 0.2s;
}

.bar-icon.is-black span {
    background: var(--rr-common-black);
}

.bar-icon.is-white span {
    background: var(--rr-common-white);
}

@keyframes qode-draw {
    0%,
    100% {
        -webkit-clip-path: inset(-2px 0);
        clip-path: inset(-2px 0);
    }
    42% {
        -webkit-clip-path: inset(-2px 0 -2px 100%);
        clip-path: inset(-2px 0 -2px 100%);
    }
    43% {
        -webkit-clip-path: inset(-2px 100% -2px 0);
        clip-path: inset(-2px 100% -2px 0);
    }
}


/* header area 8 style  */

.header-area-8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-8__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 26px 0;
}

@media only screen and (max-width: 767px) {
    .header-area-8__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.header-area-8__inner>*:nth-child(2) {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .header-area-8__inner>*:nth-child(2) {
        text-align: end;
    }
}

.header-area-8__inner>*:nth-child(3) {
    text-align: end;
}

@media only screen and (max-width: 767px) {
    .header-area-8__inner>*:nth-child(3) {
        display: none;
    }
}

.header-area-8 .sticky,
.header-area-8 .transformed {
    background-color: #FFFFFF;
}

.header-area-8 .header__logo img {
    width: 112px;
}

.header-area-8 .menu-toggle {
    font-family: var(--font_bdogrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--white);
    transition: all 0.3s;
}

.header-area-8 .menu-toggle:hover {
    color: #999999;
}

.header-area-8 .rr-btn-underline {
    font-family: var(--font_bdogrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 2px;
}

.header-area-8 .rr-btn-underline:hover:before {
    width: 100%;
}

.header-area-8 .rr-btn-underline:before {
    width: 0;
}


/* header area 6 style  */

.header-area-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-6__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 90px;
}

@media only screen and (max-width: 1199px) {
    .header-area-6__inner {
        height: 80px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    }
}

.header-area-6 .sticky,
.header-area-6 .transformed {
    background-color: #FFFFFF;
}

.header-area-6 .header__logo img {
    width: 100px;
}

.header-area-6 .header__logo {
    margin-right: auto;
}

.header-area-6 .side-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.2);
    border-radius: 50%;
    transition: all 0.5s;
}

.dark .header-area-6 .side-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

.header-area-6 .side-toggle:hover {
    background-color: #FFD80C;
    border-color: transparent;
}

.header-area-6 .side-toggle:hover svg * {
    fill: var(--black);
}

.header-area-6 .side-toggle svg * {
    fill: var(--primary);
    transition: all 0.5s;
}


/* header area 17 style  */

.header-area-17 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area-17__inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    min-height: 80px;
}

@media only screen and (max-width: 1199px) {
    .header-area-17__inner {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .header-area-17__inner {
        grid-template-columns: 1fr auto;
    }
}

.header-area-17 .header__logo {
    margin-left: 20px;
}

.header-area-17 .header__logo img {
    width: 83px;
}

.header-area-17 .header__logo .info {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    padding: 5px 0;
    border-left: 1px solid var(--primary);
    padding-left: 20px;
    margin-left: 20px;
}

@media (max-width: 400px) {
    .header-area-17 .header__logo .info {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area-17 .header__nav {
        display: none;
    }
}

.header-area-17 .main-menu>ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.header-area-17 .main-menu>ul>li:nth-child(2n) {
    border-left: 1px solid rgba(17, 17, 17, 0.15);
}

.header-area-17 .main-menu>ul>li>a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    padding: 42px 20px;
}

@media only screen and (max-width: 1919px) {
    .header-area-17 .main-menu>ul>li>a {
        padding: 32px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header-area-17 .header__btn {
        display: none;
    }
}

.header-area-17 .rr-btn-classic {
    padding: 42px 20px;
}

@media only screen and (max-width: 1919px) {
    .header-area-17 .rr-btn-classic {
        padding: 32px 20px;
    }
}

.header-area-17 .header__navicon {
    text-align: end;
}

.header-area-17 .side-toggle {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.5s;
    border: 1px solid rgba(17, 17, 17, 0.15);
    position: relative;
    margin-right: 20px;
}

.dark .header-area-17 .side-toggle {
    border-color: rgba(255, 255, 255, 0.15);
}

.header-area-17 .side-toggle:hover {
    background-color: #FB7515;
    border-color: transparent;
}

.header-area-17 .dot {
    width: 4px;
    height: 4px;
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    transition: all 0.4s ease;
}


/* footer css */


/* footer area style  */

.footer-area.footer-area-5 .footer-widget-wrapper-box {
    border-bottom: none;
}

.footer-area.footer-area-5 .footer-widget-wrapper-box::before {
    display: none;
}

.footer-area.footer-area-5 .footer-widget-box .title {
    color: #999999;
}

.dark .footer-area.footer-area-5 .footer-widget-box .title {
    color: #999999;
}

.footer-area.footer-area-5 .subscribe-form {
    max-width: 515px;
}

.footer-area.footer-area-5 .subscribe-form .input-field {
    display: flex;
    gap: 10px;
    background-color: var(--white);
    padding: 28px 30px;
    border-radius: 50px;
}

.dark .footer-area.footer-area-5 .subscribe-form .input-field {
    background-color: var(--black);
}

@media only screen and (max-width: 1919px) {
    .footer-area.footer-area-5 .subscribe-form .input-field {
        padding: 18px 30px;
    }
}

.footer-area.footer-area-5 .subscribe-form .input-field input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 22px;
    line-height: 1;
    color: var(--primary);
}

.footer-area.footer-area-5 .subscribe-form .input-field input::placeholder {
    color: rgba(17, 17, 17, 0.3);
}

.dark .footer-area.footer-area-5 .subscribe-form .input-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-area.footer-area-5 .subscribe-form .input-field i {
    rotate: -45deg;
    font-size: 20px;
    color: var(--primary);
}

.footer-area.footer-area-5 .subscription-text {
    margin-top: 23px;
}

.footer-area.footer-area-5 .subscription-text .text {
    font-size: 22px;
    line-height: 28px;
    color: var(--primary);
    max-width: 345px;
}

.footer-area.footer-area-5 .subscription-text .text a {
    position: relative;
}

.footer-area.footer-area-5 .subscription-text .text a::before {
    transition: all 0.5s;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-color: currentColor;
}

.footer-area.footer-area-5 .subscription-text .text a:hover:hover::before {
    width: 0;
}

.footer-area.footer-area-5 .copyright-text .text a {
    color: #999999;
}

.dark .footer-area.footer-area-5 .copyright-text .text a {
    color: #999999;
}

.footer-area .copyright-area-5 {
    border-top: 1px solid var(--border);
}

.footer-area .footer-widget-wrapper-box {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0px;
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .footer-area .footer-widget-wrapper-box {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area .footer-widget-wrapper-box {
        padding: 50px 0;
    }
}

.footer-area .footer-widget-wrapper-box::before {
    content: "";
    position: absolute;
    right: 795px;
    background-color: var(--border);
    width: 1px;
    height: 100%;
    top: 0;
}

@media only screen and (max-width: 1919px) {
    .footer-area .footer-widget-wrapper-box::before {
        right: 670px;
    }
}

@media only screen and (max-width: 1399px) {
    .footer-area .footer-widget-wrapper-box::before {
        right: 580px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area .footer-widget-wrapper-box::before {
        right: 480px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area .footer-widget-wrapper-box::before {
        display: none;
    }
}

.footer-area .footer-widget-wrapper-box .content .title {
    font-size: 90px;
    font-weight: 400;
    line-height: 85px;
    letter-spacing: -3.5px;
    font-family: var(--font_bdogrotesk);
    color: var(--primary);
    display: inline-block;
}

.dark .footer-area .footer-widget-wrapper-box .content .title {
    color: var(--primary);
}

@media only screen and (max-width: 1919px) {
    .footer-area .footer-widget-wrapper-box .content .title {
        font-size: 80px;
        line-height: 85px;
    }
}

@media only screen and (max-width: 1399px) {
    .footer-area .footer-widget-wrapper-box .content .title {
        font-size: 70px;
        line-height: 74px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area .footer-widget-wrapper-box .content .title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area .footer-widget-wrapper-box .content .title {
        font-size: 43px;
        line-height: 50px;
        letter-spacing: 0;
    }
}

@media (max-width: 575px) {
    .footer-area .footer-widget-wrapper-box .content .title {
        font-size: 35px;
        line-height: 45px;
    }
}

.footer-area .footer-widget-wrapper {
    display: grid;
    gap: 30px 170px;
    grid-template-columns: 1fr auto auto auto;
    justify-content: space-between;
}

@media only screen and (max-width: 1919px) {
    .footer-area .footer-widget-wrapper {
        gap: 30px 140px;
    }
}

@media only screen and (max-width: 1399px) {
    .footer-area .footer-widget-wrapper {
        gap: 30px 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area .footer-widget-wrapper {
        gap: 30px 53px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area .footer-widget-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .footer-area .footer-widget-wrapper {
        grid-template-columns: 1fr;
    }
}

.footer-area .footer-widget-box .title {
    font-size: 22px;
    line-height: 20px;
    margin-bottom: 30px;
    color: #999999;
    font-family: var(--font_dmsans);
}

.dark .footer-area .footer-widget-box .title {
    color: #555555;
}

@media only screen and (max-width: 1919px) {
    .footer-area .footer-widget-box .title {
        margin-bottom: 20px;
    }
}

.footer-area .footer-nav-list:hover li a {
    opacity: 0.3;
}

.footer-area .footer-nav-list li {
    font-size: 22px;
    line-height: 30px;
    color: var(--primary);
    transition-property: opacity;
    transition-duration: 500ms;
    list-style: none;
}

.footer-area .footer-nav-list li a {
    display: block;
}

.footer-area .footer-nav-list li a:hover {
    opacity: 1;
}

.footer-area .footer-nav-list li a:hover a strong {
    opacity: 1;
    top: -23px;
}

.footer-area .footer-nav-list li a a strong {
    opacity: 0;
    transition-property: opacity, top;
    transition-duration: 250ms;
}

.footer-area .copyright-area-inner {
    padding: 48px 0;
}

@media only screen and (max-width: 1919px) {
    .footer-area .copyright-area-inner {
        padding: 38px 0;
    }
}

@media only screen and (max-width: 1399px) {
    .footer-area .copyright-area-inner {
        padding: 28px 0;
    }
}

.footer-area .copyright-text .text {
    font-size: 22px;
    line-height: 1;
    color: var(--primary);
    text-align: center;
}

@media only screen and (max-width: 1399px) {
    .footer-area .copyright-text .text {
        font-size: 20px;
    }
}

.footer-area .copyright-text .text a {
    color: #999999;
    transition: all 0.3s;
    position: relative;
}

.dark .footer-area .copyright-text .text a {
    color: #555555;
}

.footer-area .copyright-text .text a::before {
    width: 0%;
    height: 1px;
    background-color: currentColor;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}

.footer-area .copyright-text .text a:hover {
    color: var(--black);
}

.dark .footer-area .copyright-text .text a:hover {
    color: var(--white);
}

.footer-area .copyright-text .text a:hover::before {
    width: 100%;
}


/* footer area 2 style  */

.footer-area-2 {
    margin-top: -3px;
}

.footer-area-2 .footer-widget-wrapper-box {
    position: relative;
}

.footer-area-2 .footer-widget-wrapper-box::before {
    left: 740px;
}

@media only screen and (max-width: 1399px) {
    .footer-area-2 .footer-widget-wrapper-box::before {
        left: 550px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area-2 .footer-widget-wrapper-box::before {
        left: 400px;
    }
}

.footer-area-2 .footer-widget-wrapper {
    gap: 30px 90px;
}

@media only screen and (max-width: 767px) {
    .footer-area-2 .footer-widget-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 30px 40px;
    }
}

@media (max-width: 575px) {
    .footer-area-2 .footer-widget-wrapper {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area-2 .footer-widget-box.content .title {
        font-size: 55px;
        line-height: 65px;
    }
    .footer-area-2 .footer-widget-box.content .title br {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area-2 .footer-widget-box.content .title {
        font-size: 40px;
        line-height: 45px;
    }
}

.footer-area-2 .footer-widget-box.content .title span {
    font-family: var(--font_ppeditor);
}


/* footer area 3 style  */

.footer-3-area-inner {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 780px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: -3px;
}

@media only screen and (max-width: 1919px) {
    .footer-3-area-inner {
        grid-template-columns: 1fr 680px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-3-area-inner {
        grid-template-columns: 1fr 580px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-3-area-inner {
        grid-template-columns: 1fr;
    }
}

.footer-3-logo img {
    max-width: 223px;
}

@media only screen and (max-width: 1199px) {
    .footer-3-logo img {
        max-width: 173px;
    }
}

.footer-3-link-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px 50px;
}

.dark .footer-3-link-box {
    background-color: var(--black);
}

@media only screen and (max-width: 1919px) {
    .footer-3-link-box {
        padding: 40px 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-3-link-box {
        padding: 20px 20px;
    }
}

.footer-3-social {
    margin-top: 30px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-3-social a {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--primary);
    border: 1px solid rgba(17, 17, 17, 0.15);
    padding: 21px 19px;
    border-radius: 20px;
    display: inline-block;
}

.dark .footer-3-social a {
    border-color: rgba(255, 255, 255, 0.15);
}

@media only screen and (max-width: 1199px) {
    .footer-3-social a {
        padding: 16px 19px;
    }
}

.footer-3-social a:hover {
    background-color: #FFD80C;
    border-color: transparent;
}

.footer-3-subscription-text {
    background-color: var(--white);
    border-radius: 20px;
    padding: 45px 30px 47px;
}

.dark .footer-3-subscription-text {
    background-color: var(--black);
}

@media only screen and (max-width: 1919px) {
    .footer-3-subscription-text {
        padding: 35px 30px 37px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-3-subscription-text {
        padding: 15px 20px 17px;
    }
}

.footer-3-subscription-text .text {
    font-family: var(--fotn_bdogrotesk);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--primary);
}

.footer-3-newsletter-box {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.footer-3-subscription-text {
    flex-grow: 1;
}

.footer-3-subscribe-form .input-field {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-3-subscribe-form input {
    width: 100%;
    background-color: var(--white);
    border: 0;
    outline: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--primary);
    height: 100px;
    padding: 20px 30px;
    border-radius: 20px;
}

.dark .footer-3-subscribe-form input {
    background-color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .footer-3-subscribe-form input {
        height: 80px;
        padding: 20px 20px;
    }
}

.footer-3-subscribe-form input::placeholder {
    color: var(--secondary);
}

.dark .footer-3-subscribe-form input::placeholder {
    color: #555555;
}

.footer-3-subscribe-form input:-webkit-autofill,
.footer-3-subscribe-form input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}

.footer-3-subscribe-form .subscribe-btn {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background-color: #FFD80C;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

@media only screen and (max-width: 1199px) {
    .footer-3-subscribe-form .subscribe-btn {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
}

.footer-3-subscribe-form .subscribe-btn:hover .icon .first {
    transform: translate(100%, -100%);
}

.footer-3-subscribe-form .subscribe-btn:hover .icon .second {
    transform: translate(0%, 0%);
}

.footer-3-subscribe-form .subscribe-btn .icon {
    display: inline-block;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.footer-3-subscribe-form .subscribe-btn .icon .first {
    transition: all 0.3s;
}

.footer-3-subscribe-form .subscribe-btn .icon .second {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-100%, 100%);
    transition: all 0.3s;
    box-sizing: content-box;
    padding: var(--white-space);
}


/* footer area 4 style  */

.copyright-area-4-inner {
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

@media only screen and (max-width: 1919px) {
    .copyright-area-4-inner {
        padding: 38px 0;
    }
}

@media only screen and (max-width: 1399px) {
    .copyright-area-4-inner {
        padding: 28px 0;
    }
}

.copyright-4-text .text {
    font-size: 22px;
    line-height: 1;
    color: var(--primary);
    text-align: center;
}

@media only screen and (max-width: 1399px) {
    .copyright-4-text .text {
        font-size: 20px;
    }
}

.copyright-4-text .text a {
    color: #999999;
    transition: all 0.3s;
    position: relative;
}

.copyright-4-text .text a::before {
    width: 0%;
    height: 1px;
    background-color: currentColor;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}

.copyright-4-text .text a:hover {
    color: var(--black);
}

.dark .copyright-4-text .text a:hover {
    color: var(--white);
}

.copyright-4-text .text a:hover::before {
    width: 100%;
}


/* footer area 6 style  */

.footer-area-6 .footer-area-6-inner {
    border-top: 1px solid var(--border);
}

.footer-area-6 .footer-area-6-list {
    gap: 20px;
    display: flex;
    padding: 68px 0;
    flex-wrap: wrap;
    max-width: 987px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .footer-area-6 .footer-area-6-list {
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-6 .footer-area-6-list {
        padding: 50px 0;
    }
}

.footer-area-6 .footer-area-6-list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
    list-style: none;
}

.footer-area-6 .footer-area-6-list li a {
    display: inline-block;
    position: relative;
}

.footer-area-6 .footer-area-6-list li a::before {
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    transition: all 0.3s;
    background: currentColor;
}

.footer-area-6 .footer-area-6-list li a:hover::before {
    width: 0;
}


/* footer area 7 style  */

.footer-area-7 .footer-inner-7 {
    border-top: 1px solid #D5D0CE;
}

.dark .footer-area-7 .footer-inner-7 {
    border-color: #292929;
}

.footer-area-7 .footer-widget-wrapper {
    display: grid;
    grid-template-columns: 833px 445px 540px;
}

@media only screen and (max-width: 1399px) {
    .footer-area-7 .footer-widget-wrapper {
        grid-template-columns: auto auto auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-7 .footer-widget-wrapper {
        grid-template-columns: auto;
    }
}

.footer-area-7 .logo {
    max-width: 120px;
}

.footer-area-7 .copyright-text {
    padding-top: 100px;
}

@media only screen and (max-width: 1199px) {
    .footer-area-7 .copyright-text {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area-7 .copyright-text {
        padding-top: 50px;
    }
}

.footer-area-7 .copyright-text .text {
    font-size: 20px;
    margin-top: 43px;
    font-weight: 400;
    color: var(--black);
}

.dark .footer-area-7 .copyright-text .text {
    color: #F8F2EF;
}

@media only screen and (max-width: 1199px) {
    .footer-area-7 .copyright-text .text {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-7 .copyright-text .text {
        margin-top: 15px;
    }
}

.footer-area-7 .footer-widget-box {
    padding-left: 100px;
    position: relative;
    padding-top: 94px;
    padding-bottom: 94px;
}

@media only screen and (max-width: 1199px) {
    .footer-area-7 .footer-widget-box {
        padding-left: 50px;
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area-7 .footer-widget-box {
        padding-left: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-7 .footer-widget-box {
        padding-left: 0;
        padding-top: 30px;
        padding-bottom: 10px;
    }
}

.footer-area-7 .footer-widget-box::before {
    content: "";
    top: 0;
    left: 0;
    width: 1px;
    height: 1000px;
    position: absolute;
    background-color: #D5D0CE;
}

.dark .footer-area-7 .footer-widget-box::before {
    background-color: #292929;
}

@media only screen and (max-width: 767px) {
    .footer-area-7 .footer-widget-box::before {
        display: none;
    }
}

.footer-area-7 .footer-widget-box .title {
    font-size: 24px;
    font-weight: 200;
    line-height: normal;
    margin-bottom: 36px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1199px) {
    .footer-area-7 .footer-widget-box .title {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-7 .footer-widget-box .title {
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .footer-area-7 .footer-widget-box .title {
        font-size: 22px;
    }
}

.footer-area-7 .footer-widget-box p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--primary);
}

.footer-area-7 .footer-widget-box .group {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary);
}

.dark .footer-area-7 .footer-widget-box .group {
    border-color: #F8F2EF;
}

.footer-area-7 .footer-widget-box .group input {
    width: 100%;
    border: none;
    color: var(--primary);
    font-size: 20px;
    font-weight: 400;
    padding-right: 10px;
    background: transparent;
}

.footer-area-7 .footer-widget-box .group input:focus {
    border: none;
    outline: 0;
    box-shadow: none;
}

.footer-area-7 .footer-widget-box .group input::placeholder {
    color: #999999;
}

.dark .footer-area-7 .footer-widget-box .group input::placeholder {
    color: #555555;
}

.footer-area-7 .footer-widget-box .group button i {
    color: var(--primary);
}

.dark .footer-area-7 .footer-widget-box .group button i {
    color: #F8F2EF;
}


/* footer area 8 style  */

.footer-8-inner {
    padding-top: 46px;
    padding-bottom: 195px;
}

@media only screen and (max-width: 1919px) {
    .footer-8-inner {
        padding-bottom: 145px;
    }
}

@media only screen and (max-width: 1399px) {
    .footer-8-inner {
        padding-bottom: 95px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-8-inner {
        padding-bottom: 55px;
    }
}

.footer-8-widget-wrapper {
    display: grid;
    gap: 20px 30px;
    grid-template-columns: 695px 1fr auto;
}

@media only screen and (max-width: 1919px) {
    .footer-8-widget-wrapper {
        grid-template-columns: 595px 1fr auto;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-8-widget-wrapper {
        grid-template-columns: 495px 1fr auto;
    }
}

@media only screen and (max-width: 991px) {
    .footer-8-widget-wrapper {
        grid-template-columns: 340px 1fr auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer-8-widget-wrapper {
        grid-template-columns: auto;
    }
}

.footer-8-widget-box.newsletter {
    margin-top: 1px;
}

.footer-8-widget-box.newsletter .subscribe-form {
    max-width: 400px;
}

@media only screen and (max-width: 991px) {
    .footer-8-widget-box.newsletter .subscribe-form {
        max-width: 300px;
    }
}

.footer-8-widget-box.newsletter .subscribe-form .input-field {
    gap: 10px;
    display: flex;
    padding: 0px 0px 15px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .footer-8-widget-box.newsletter .subscribe-form .input-field {
    border-color: rgba(17, 17, 17, 0.2);
}

.footer-8-widget-box.newsletter .subscribe-form .input-field input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 15px;
    line-height: 20px;
}

.rr-bg-primary .footer-8-widget-box.newsletter .subscribe-form .input-field input {
    color: var(--white);
}

.dark .rr-bg-primary .footer-8-widget-box.newsletter .subscribe-form .input-field input {
    color: var(--black);
}

.footer-8-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    text-transform: uppercase;
}

.rr-bg-primary .footer-8-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    color: #555555;
}

.dark .rr-bg-primary .footer-8-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    color: #999999;
}

.footer-8-widget-box.newsletter .subscribe-form .input-field i {
    font-size: 20px;
}

.rr-bg-primary .footer-8-widget-box.newsletter .subscribe-form .input-field i {
    color: var(--white);
}

.dark .rr-bg-primary .footer-8-widget-box.newsletter .subscribe-form .input-field i {
    color: var(--black);
}

.footer-8-widget-box-content {
    margin-top: 62px;
}

@media only screen and (max-width: 1919px) {
    .footer-8-widget-box-content {
        margin-top: 52px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-8-widget-box-content {
        margin-top: 42px;
    }
}

.footer-8-widget-box-content a {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
    transition-property: opacity;
    transition-duration: 500ms;
    display: inline-block;
}

.rr-bg-primary .footer-8-widget-box-content a {
    color: var(--white);
}

.dark .rr-bg-primary .footer-8-widget-box-content a {
    color: var(--black);
}

.rr-bg-primary .footer-8-widget-box-content a:hover {
    color: #999999;
}

.dark .rr-bg-primary .footer-8-widget-box-content a:hover {
    color: #555555;
}

.footer-8-widget-box .title {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rr-bg-primary .footer-8-widget-box .title {
    color: #555555;
}

.dark .rr-bg-primary .footer-8-widget-box .title {
    color: #999999;
}

.footer-8-widget-box .footer-nav-list {
    display: inline-block;
}

.footer-8-widget-box .footer-nav-list:hover li a {
    opacity: 0.3;
}

.footer-8-widget-box .footer-nav-list li {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
    transition-property: opacity;
    transition-duration: 500ms;
    list-style: none;
}

.rr-bg-primary .footer-8-widget-box .footer-nav-list li {
    color: var(--white);
}

.dark .rr-bg-primary .footer-8-widget-box .footer-nav-list li {
    color: var(--black);
}

.footer-8-widget-box .footer-nav-list li:not(:last-child) {
    margin-bottom: 0px;
}

.footer-8-widget-box .footer-nav-list li a {
    display: block;
}

.footer-8-widget-box .footer-nav-list li a:hover {
    opacity: 1;
}

.rr-bg-primary .footer-8-widget-box .footer-nav-list li a:hover {
    color: var(--white);
}

.dark .rr-bg-primary .footer-8-widget-box .footer-nav-list li a:hover {
    color: var(--black);
}

.footer-8-widget-box .footer-nav-list li a:hover a strong {
    opacity: 1;
    top: -23px;
}

.footer-8-widget-box .footer-nav-list li a a strong {
    opacity: 0;
    transition-property: opacity, top;
    transition-duration: 250ms;
}

.copyright-8-content {
    gap: 10px 30px;
    display: grid;
    padding: 34.5px 0;
    align-items: center;
    grid-template-columns: 695px 1fr auto;
}

@media only screen and (max-width: 1919px) {
    .copyright-8-content {
        grid-template-columns: 595px 1fr auto;
    }
}

@media only screen and (max-width: 1199px) {
    .copyright-8-content {
        grid-template-columns: 495px 1fr auto;
    }
}

@media only screen and (max-width: 991px) {
    .copyright-8-content {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .copyright-8-content {
        grid-template-columns: auto;
        padding: 20.5px 0;
    }
}

.copyright-8-content .copyright-logo img {
    max-width: 120px;
}

.copyright-8-content .copyright-text p {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
}

.rr-bg-primary .copyright-8-content .copyright-text p {
    color: var(--white);
}

.dark .rr-bg-primary .copyright-8-content .copyright-text p {
    color: var(--black);
}

.rr-bg-primary .copyright-8-content .copyright-text p a:hover {
    color: #999999;
}

.dark .rr-bg-primary .copyright-8-content .copyright-text p a:hover {
    color: #555555;
}

.copyright-8-content .copyright-privacy p {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
}

.rr-bg-primary .copyright-8-content .copyright-privacy p {
    color: var(--white);
}

.dark .rr-bg-primary .copyright-8-content .copyright-privacy p {
    color: var(--black);
}

.rr-bg-primary .copyright-8-content .copyright-privacy p a:hover {
    color: #999999;
}

.dark .rr-bg-primary .copyright-8-content .copyright-privacy p a:hover {
    color: #555555;
}


/* footer area 9 style  */

.footer-area-9 .footer-inner-9 {
    padding-top: 50px;
    border-top: 1px solid rgba(17, 17, 17, 0.2);
    padding-bottom: 200px;
}

.dark .footer-area-9 .footer-inner-9 {
    border-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1399px) {
    .footer-area-9 .footer-inner-9 {
        padding-bottom: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area-9 .footer-inner-9 {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-9 .footer-inner-9 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .footer-area-9 .footer-inner-9 {
        padding-bottom: 40px;
    }
}

.footer-area-9 .footer-widget-wrapper {
    gap: 20px;
    display: grid;
    grid-template-columns: 725px auto 78px;
}

@media only screen and (max-width: 1399px) {
    .footer-area-9 .footer-widget-wrapper {
        grid-template-columns: 625px auto 78px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area-9 .footer-widget-wrapper {
        grid-template-columns: 525px auto 78px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area-9 .footer-widget-wrapper {
        grid-template-columns: 370px auto 78px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-9 .footer-widget-wrapper {
        grid-template-columns: auto;
    }
}

.footer-area-9 .footer-widget-box.newsletter .subscribe-form {
    max-width: 400px;
}

@media only screen and (max-width: 991px) {
    .footer-area-9 .footer-widget-box.newsletter .subscribe-form {
        max-width: 300px;
    }
}

.footer-area-9 .footer-widget-box.newsletter .subscribe-form .input-field {
    gap: 10px;
    display: flex;
    padding: 0px 0px 14px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .footer-area-9 .footer-widget-box.newsletter .subscribe-form .input-field {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-area-9 .footer-widget-box.newsletter .subscribe-form .input-field input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 17px;
    line-height: 1;
    color: var(--primary);
}

.footer-area-9 .footer-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    color: #999999;
}

.dark .footer-area-9 .footer-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    color: #555555;
}

.footer-area-9 .footer-widget-box.newsletter .subscribe-form .input-field i {
    font-size: 20px;
    color: var(--primary);
}

.footer-area-9 .footer-widget-box-content {
    margin-top: 62px;
}

.footer-area-9 .footer-widget-box-content a {
    font-size: 18px;
    display: inline-block;
    color: var(--primary);
}

.footer-area-9 .footer-widget-box-content a:hover {
    color: var(--secondary);
}

.footer-area-9 .footer-widget-box .title {
    color: #999999;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 15px;
    font-family: var(--font_dmsans);
}

.dark .footer-area-9 .footer-widget-box .title {
    color: #555555;
}

.footer-area-9 .footer-nav-list {
    display: inline-block;
}

.footer-area-9 .footer-nav-list:hover li a {
    opacity: 0.3;
}

.footer-area-9 .footer-nav-list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: var(--primary);
    transition-property: opacity;
    transition-duration: 500ms;
    font-family: var(--font_dmsans);
    list-style: none;
}

.footer-area-9 .footer-nav-list li:not(:last-child) {
    margin-bottom: 4px;
}

.footer-area-9 .footer-nav-list li a {
    display: block;
}

.footer-area-9 .footer-nav-list li a:hover {
    opacity: 1;
}

.footer-area-9 .footer-nav-list li a:hover a strong {
    opacity: 1;
    top: -23px;
}

.footer-area-9 .footer-nav-list li a a strong {
    opacity: 0;
    transition-property: opacity, top;
    transition-duration: 250ms;
}

.copyright-area-9 .copyright-logo img {
    max-width: 120px;
}

.copyright-area-9 .copyright-area-inner {
    gap: 20px;
    display: grid;
    padding: 34.5px 0;
    align-items: center;
    grid-template-columns: 725px auto 110px;
}

@media only screen and (max-width: 1399px) {
    .copyright-area-9 .copyright-area-inner {
        grid-template-columns: 625px auto 110px;
    }
}

@media only screen and (max-width: 1199px) {
    .copyright-area-9 .copyright-area-inner {
        grid-template-columns: 525px auto 110px;
    }
}

@media only screen and (max-width: 991px) {
    .copyright-area-9 .copyright-area-inner {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .copyright-area-9 .copyright-area-inner {
        gap: 10px;
        grid-template-columns: auto;
        padding: 20.5px 0;
    }
}

.copyright-area-9 .copyright-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: var(--primary);
}

.copyright-area-9 .copyright-text p a:hover {
    color: var(--secondary);
}

.copyright-area-9 .copyright-privacy p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: var(--primary);
}


/* footer area 12 style  */

.footer-12-inner {
    padding-top: 46px;
    padding-bottom: 195px;
    border-top: 1px solid var(--border);
}

@media only screen and (max-width: 1919px) {
    .footer-12-inner {
        padding-bottom: 145px;
    }
}

@media only screen and (max-width: 1399px) {
    .footer-12-inner {
        padding-bottom: 95px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-12-inner {
        padding-bottom: 55px;
    }
}

.footer-12-widget-wrapper {
    display: grid;
    gap: 20px 30px;
    grid-template-columns: 695px 1fr auto;
}

@media only screen and (max-width: 1919px) {
    .footer-12-widget-wrapper {
        grid-template-columns: 595px 1fr auto;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-12-widget-wrapper {
        grid-template-columns: 495px 1fr auto;
    }
}

@media only screen and (max-width: 991px) {
    .footer-12-widget-wrapper {
        grid-template-columns: 340px 1fr auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer-12-widget-wrapper {
        grid-template-columns: auto;
    }
}

.footer-12-widget-box.newsletter {
    margin-top: 1px;
}

.footer-12-widget-box.newsletter .subscribe-form {
    max-width: 400px;
}

@media only screen and (max-width: 991px) {
    .footer-12-widget-box.newsletter .subscribe-form {
        max-width: 300px;
    }
}

.footer-12-widget-box.newsletter .subscribe-form .input-field {
    gap: 10px;
    display: flex;
    padding: 0px 0px 15px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .footer-12-widget-box.newsletter .subscribe-form .input-field {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-12-widget-box.newsletter .subscribe-form .input-field input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 15px;
    line-height: 20px;
    color: var(--primary);
}

.footer-12-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    color: #999999;
    text-transform: uppercase;
}

.dark .footer-12-widget-box.newsletter .subscribe-form .input-field input::placeholder {
    color: #555555;
}

.footer-12-widget-box.newsletter .subscribe-form .input-field input:-webkit-autofill,
.footer-12-widget-box.newsletter .subscribe-form .input-field input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}

.footer-12-widget-box.newsletter .subscribe-form .input-field i {
    font-size: 20px;
    color: var(--primary);
}

.footer-12-widget-box-content {
    margin-top: 62px;
}

@media only screen and (max-width: 1919px) {
    .footer-12-widget-box-content {
        margin-top: 52px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-12-widget-box-content {
        margin-top: 42px;
    }
}

.footer-12-widget-box-content a {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    color: var(--primary);
    text-transform: uppercase;
    transition-property: opacity;
    transition-duration: 500ms;
    display: inline-block;
}

.footer-12-widget-box-content a:hover {
    color: var(--secondary);
}

.footer-12-widget-box .title {
    font-family: var(--font_dmsans);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #999999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dark .footer-12-widget-box .title {
    color: #555555;
}

.footer-12-widget-box .footer-nav-list {
    display: inline-block;
}

.footer-12-widget-box .footer-nav-list:hover li a {
    opacity: 0.3;
}

.footer-12-widget-box .footer-nav-list li {
    font-family: var(--font_dmsans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--primary);
    text-transform: uppercase;
    transition-property: opacity;
    transition-duration: 500ms;
    list-style: none;
}

.footer-12-widget-box .footer-nav-list li:not(:last-child) {
    margin-bottom: 0px;
}

.footer-12-widget-box .footer-nav-list li a {
    display: block;
}

.footer-12-widget-box .footer-nav-list li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-12-widget-box .footer-nav-list li a:hover a strong {
    opacity: 1;
    top: -23px;
}

.footer-12-widget-box .footer-nav-list li a a strong {
    opacity: 0;
    transition-property: opacity, top;
    transition-duration: 250ms;
}

.copyright-12-content {
    gap: 10px 30px;
    display: grid;
    padding: 34.5px 0;
    align-items: center;
    grid-template-columns: 695px 1fr auto;
}

@media only screen and (max-width: 1919px) {
    .copyright-12-content {
        grid-template-columns: 595px 1fr auto;
    }
}

@media only screen and (max-width: 1199px) {
    .copyright-12-content {
        grid-template-columns: 495px 1fr auto;
    }
}

@media only screen and (max-width: 991px) {
    .copyright-12-content {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .copyright-12-content {
        grid-template-columns: auto;
        padding: 20.5px 0;
    }
}

.copyright-12-content .copyright-logo img {
    max-width: 75px;
}

.copyright-12-content .copyright-text p {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    color: var(--primary);
    text-transform: uppercase;
}

.copyright-12-content .copyright-text p a:hover {
    color: var(--secondary);
}

.copyright-12-content .copyright-privacy p {
    font-family: var(--font_dmsans);
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    color: var(--primary);
    text-transform: uppercase;
}

.copyright-12-content .copyright-privacy p a:hover {
    color: var(--secondary);
}


/* image reveal hover page css */

.our-expertise-7 .our-expertise-inner {
    border-top: 1px solid #D5D0CE;
    position: relative;
}

.dark .our-expertise-7 .our-expertise-inner {
    border-color: #292929;
}

.our-expertise-7 .section-title {
    margin-bottom: 120px;
}

@media only screen and (max-width: 1399px) {
    .our-expertise-7 .section-title {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .our-expertise-7 .section-title {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .our-expertise-7 .section-title {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .our-expertise-7 .section-title {
        margin-bottom: 30px;
    }
}

.our-expertise-7 .section-title .title {
    font-size: 180px;
    font-weight: 200;
    line-height: 170px;
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1399px) {
    .our-expertise-7 .section-title .title {
        font-size: 150px;
        line-height: 150px;
    }
}

@media only screen and (max-width: 1199px) {
    .our-expertise-7 .section-title .title {
        font-size: 100px;
        line-height: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .our-expertise-7 .section-title .title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .our-expertise-7 .section-title .title {
        font-size: 60px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .our-expertise-7 .section-title .title {
        font-size: 40px;
        line-height: 40px;
    }
}

.our-expertise-7 .our-expertise-item {
    gap: 30px;
    display: grid;
    cursor: pointer;
    padding-top: 40px;
    position: relative;
    padding-bottom: 50px;
    border-bottom: 1px solid #D5D0CE;
    grid-template-columns: 234px 930px 1fr;
}

.dark .our-expertise-7 .our-expertise-item {
    border-color: #292929;
}

@media only screen and (max-width: 1919px) {
    .our-expertise-7 .our-expertise-item {
        grid-template-columns: 234px 630px 1fr;
    }
}

@media only screen and (max-width: 1399px) {
    .our-expertise-7 .our-expertise-item {
        grid-template-columns: 234px 430px 1fr;
    }
}

@media only screen and (max-width: 1199px) {
    .our-expertise-7 .our-expertise-item {
        grid-template-columns: 200px 300px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .our-expertise-7 .our-expertise-item {
        grid-template-columns: 80px 290px 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .our-expertise-7 .our-expertise-item {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
        gap: 20px;
    }
}

.our-expertise-7 .our-expertise-item:hover span {
    margin-left: 30px;
}

.our-expertise-7 .our-expertise-item span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    display: inline-block;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}

.our-expertise-7 .our-expertise-item .title {
    z-index: 1;
    font-size: 60px;
    font-weight: 200;
    line-height: 60px;
    position: relative;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1399px) {
    .our-expertise-7 .our-expertise-item .title {
        font-size: 50px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .our-expertise-7 .our-expertise-item .title {
        font-size: 40px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .our-expertise-7 .our-expertise-item .title {
        font-size: 35px;
        line-height: 35px;
    }
}

@media (max-width: 575px) {
    .our-expertise-7 .our-expertise-item .title {
        font-size: 29px;
        line-height: 30px;
    }
}

.our-expertise-7 .our-expertise-item p {
    font-size: 20px;
    font-weight: 400;
    max-width: 370px;
    line-height: 28px;
    color: var(--primary);
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .our-expertise-7 .our-expertise-item p {
        max-width: 100%;
    }
}

.our-expertise-7 .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 99;
    width: 350px;
    height: 370px;
    overflow: hidden;
    pointer-events: none;
    will-change: transform;
    transform: translate(0%, 0%) scale(0);
}

.our-expertise-7 .hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.our-expertise-7 .active-bg {
    left: 0;
    right: 0;
    z-index: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    background: #F2EAE5;
    transform: translateY(0);
    transform-origin: top center;
    transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.dark .our-expertise-7 .active-bg {
    background-color: #1A1A1A;
}


/* branding agency page css */

.section-title-6 {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 215px;
    line-height: 0.86;
    letter-spacing: -0.09em;
    text-transform: uppercase;
}

@media only screen and (max-width: 1919px) {
    .section-title-6 {
        font-size: 165px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-title-6 {
        font-size: 155px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-title-6 {
        font-size: 115px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title-6 {
        font-size: 85px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title-6 {
        font-size: 60px;
        letter-spacing: -0.05em;
        line-height: 1;
    }
}

@media (max-width: 575px) {
    .section-title-6 {
        font-size: 38px;
    }
}


/* hero area 6 style  */

.hero-6-section-content {
    margin-top: 27px;
}

@media only screen and (max-width: 1199px) {
    .hero-6-section-content {
        margin-top: 107px;
    }
}

.hero-6-section-content .meta-list {
    max-width: 580px;
    margin-left: auto;
}

@media only screen and (max-width: 1199px) {
    .hero-6-section-content .meta-list {
        margin-left: 0;
    }
}

.hero-6-section-content .meta-list ul {
    display: grid;
    gap: 15px 40px;
    grid-template-columns: 200px 200px;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .hero-6-section-content .meta-list ul {
        grid-template-columns: 1fr;
    }
}

.hero-6-section-content .meta-list li {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--primary);
    list-style: none;
}

.hero-6-section-content .meta-list li br {
    display: block;
}

.hero-6-section-content .section-title-wrapper {
    margin-top: 51px;
}

@media only screen and (max-width: 1199px) {
    .hero-6-section-content .section-title-wrapper {
        margin-top: 41px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-6-section-content .section-title-wrapper {
        margin-top: 31px;
    }
}

.hero-6-nav {
    position: relative;
    z-index: 1;
    margin-top: 146px;
}

@media only screen and (max-width: 1919px) {
    .hero-6-nav {
        margin-top: 96px;
    }
}

.hero-6-nav .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 0 0;
    text-transform: uppercase;
    justify-content: space-between;
}

.hero-6-nav .main-menu li a:hover {
    color: var(--primary);
}

.hero-6-nav .main-menu>ul {
    gap: 40px;
}

.hero-6-nav .main-menu>ul>li {
    flex-grow: 1;
    max-width: 270px;
}

.hero-6-nav .main-menu>ul>li:hover>a {
    color: var(--secondary);
    border-color: var(--primary);
}

.dark .hero-6-nav .main-menu>ul>li:hover>a {
    border-color: var(--primary);
}

.hero-6-nav .main-menu>ul>li>a {
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .hero-6-nav .main-menu>ul>li>a {
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-6-nav .main-menu ul.dp-menu {
    min-width: 100%;
}

.hero-6-thumb {
    margin-top: 50px;
}

@media only screen and (max-width: 767px) {
    .hero-6-thumb {
        margin-top: 30px;
    }
}


/* about area 6 style  */

.about-6-section-header {
    margin-top: 193px;
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .about-6-section-header {
        margin-top: 143px;
    }
}

@media only screen and (max-width: 1399px) {
    .about-6-section-header {
        margin-top: 93px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-6-section-header {
        margin-top: 53px;
    }
}

.about-6-section-header .meta-text {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--primary);
    max-width: 435px;
    margin-inline: auto;
}

.about-6-section-header .section-title-wrapper {
    margin-top: 174px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .about-6-section-header .section-title-wrapper {
        margin-top: 124px;
    }
}

@media only screen and (max-width: 1399px) {
    .about-6-section-header .section-title-wrapper {
        margin-top: 74px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-6-section-header .section-title-wrapper {
        margin-top: 34px;
    }
}

.about-6-section-header .section-title-6 {
    text-align: center;
}

.about-6-section-content {
    display: grid;
    gap: 40px 90px;
    grid-template-columns: 1.9fr 440px 1fr;
    align-items: flex-end;
    margin-top: -241px;
}

@media only screen and (max-width: 1919px) {
    .about-6-section-content {
        margin-top: -191px;
    }
}

@media only screen and (max-width: 1399px) {
    .about-6-section-content {
        margin-top: -151px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-6-section-content {
        margin-top: 60px;
        gap: 40px 60px;
    }
}

@media only screen and (max-width: 991px) {
    .about-6-section-content {
        grid-template-columns: 1fr;
    }
}

.about-6-section-content .about-6-thumb-1 {
    margin-bottom: 7px;
}

.about-6-section-content .meta-text {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .about-6-section-content .meta-text {
        letter-spacing: 0;
    }
}

.about-6-section-content .text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: justify;
    color: var(--primary);
    margin-top: 137px;
}

@media only screen and (max-width: 1919px) {
    .about-6-section-content .text {
        margin-top: 87px;
    }
}

@media only screen and (max-width: 1399px) {
    .about-6-section-content .text {
        margin-top: 37px;
    }
}

@media only screen and (max-width: 767px) {
    .about-6-section-content .text {
        font-size: 18px;
        line-height: 26px;
    }
}

.about-6-section-content .about-6-thumb-2 {
    margin-left: auto;
    margin-bottom: 7px;
}

@media only screen and (max-width: 991px) {
    .about-6-section-content .about-6-thumb-2 {
        margin-left: 0;
    }
}


/* service area 6 style  */

.service-6-section-header {
    margin-top: 71px;
    display: grid;
    gap: 30px 60px;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
}

@media only screen and (max-width: 1919px) {
    .service-6-section-header {
        margin-top: 41px;
    }
}

@media only screen and (max-width: 1199px) {
    .service-6-section-header {
        margin-top: 21px;
    }
}

@media only screen and (max-width: 767px) {
    .service-6-section-header {
        grid-template-columns: 1fr;
    }
}

.service-6-section-header .btn-wrapper {
    margin-bottom: 6px;
}

.service-6-section-header .rr-btn-underline {
    color: var(--primary);
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    gap: 10px;
}

.service-6-section-header .rr-btn-underline span {
    margin-right: 30px;
}

.service-6-section-header .rr-btn-underline i {
    transform: rotate(0deg);
}

.service-6-section-header .rr-btn-underline::before {
    height: 1px;
}

.services-6-wrapper-box {
    margin-top: 91px;
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 1fr 1300px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 1919px) {
    .services-6-wrapper-box {
        grid-template-columns: 1fr 1100px;
        margin-top: 61px;
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 1399px) {
    .services-6-wrapper-box {
        grid-template-columns: 1fr 1000px;
    }
}

@media only screen and (max-width: 1199px) {
    .services-6-wrapper-box {
        grid-template-columns: 1fr;
        margin-top: 41px;
        margin-bottom: 40px;
    }
}

.services-6-wrapper-box .meta-text {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .services-6-wrapper-box .meta-text {
        letter-spacing: 0;
    }
}

.services-6-wrapper {
    margin-top: 3px;
    display: grid;
    gap: 50px 100px;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 767px) {
    .services-6-wrapper {
        grid-template-columns: 1fr;
    }
}

.services-6-wrapper>* {
    position: relative;
}

.services-6-wrapper>*:nth-child(2n):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--border);
    top: 0;
    left: -50px;
}

@media only screen and (max-width: 767px) {
    .services-6-wrapper>*:nth-child(2n):before {
        display: none;
    }
}

.service-box-6 {
    display: grid;
    gap: 30px 40px;
    grid-template-columns: 1fr 280px;
    border-top: 1px solid var(--border);
    padding-top: 23px;
}

@media only screen and (max-width: 1199px) {
    .service-box-6 {
        grid-template-columns: 1fr;
    }
}

.service-box-6 .title {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.service-box-6 .title a:hover {
    color: var(--secondary);
}

.service-box-6 .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-box-6 .service-list li {
    font-family: var(--font_bdogrotesk);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.05em;
    list-style: none;
    color: #999999;
}

.dark .service-box-6 .service-list li {
    color: #555555;
}

.service-box-6 .thumb {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 36px;
}

.service-box-6 .thumb img {
    width: 100%;
}

.portfolio-6-section-header {
    margin-top: 78px;
    display: grid;
    gap: 30px 60px;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
}

@media only screen and (max-width: 1919px) {
    .portfolio-6-section-header {
        margin-top: 48px;
    }
}

@media only screen and (max-width: 1199px) {
    .portfolio-6-section-header {
        margin-top: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-6-section-header {
        grid-template-columns: 1fr;
    }
}

.rr-bg-primary .portfolio-6-section-header .section-title-6 {
    color: var(--white);
}

.dark .rr-bg-primary .portfolio-6-section-header .section-title-6 {
    color: var(--black);
}

.portfolio-6-section-header .btn-wrapper {
    margin-bottom: 6px;
}

.portfolio-6-section-header .rr-btn-underline {
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    gap: 10px;
}

.rr-bg-primary .portfolio-6-section-header .rr-btn-underline {
    color: var(--white);
}

.dark .rr-bg-primary .portfolio-6-section-header .rr-btn-underline {
    color: var(--black);
}

.portfolio-6-section-header .rr-btn-underline span {
    margin-right: 30px;
}

.portfolio-6-section-header .rr-btn-underline i {
    transform: rotate(0deg);
}

.portfolio-6-section-header .rr-btn-underline::before {
    height: 1px;
}

.portfolio-6-wrapper-box {
    margin-top: -6px;
}

.portfolio-6-wrapper {
    display: grid;
    gap: 20px 20px;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 1199px) {
    .portfolio-6-wrapper {
        gap: 40px 20px;
    }
}

@media (max-width: 575px) {
    .portfolio-6-wrapper {
        grid-template-columns: 1fr;
    }
}

.portfolio-6-wrapper>*.span-2 {
    grid-column: span 2;
}

@media (max-width: 575px) {
    .portfolio-6-wrapper>*.span-2 {
        grid-column: auto;
    }
}

.portfolio-6-item {
    position: relative;
    display: block;
    cursor: pointer;
}

.portfolio-6-item:hover:before {
    opacity: 1;
    transition: all 0.3s;
}

.portfolio-6-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.6);
    opacity: 0;
    pointer-events: none;
}

.portfolio-6-item .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
    transform: translate3d(0, 0, 0) scale(0.1);
    transition: opacity 0.3s ease, clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (max-width: 1199px) {
    .portfolio-6-item .hover-image {
        width: 320px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-6-item .hover-image {
        width: 220px;
    }
}

.portfolio-6-item .hover-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.portfolio-6-item .hover-text {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

.portfolio-6-item .hover-text h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.portfolio-6-item .hover-text p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
}

.rr-bg-primary .approach-section-header .section-title-6 {
    color: var(--white);
}

.dark .rr-bg-primary .approach-section-header .section-title-6 {
    color: var(--black);
}

.approach-wrapper {
    border-top: 1px solid;
    margin-top: 93px;
}

.rr-bg-primary .approach-wrapper {
    border-color: #292929;
}

.dark .rr-bg-primary .approach-wrapper {
    border-color: #E7E7E7;
}

@media only screen and (max-width: 1199px) {
    .approach-wrapper {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .approach-wrapper {
        margin-top: 40px;
    }
}

.approach-wrapper .approach-item {
    gap: 30px;
    display: grid;
    padding-top: 60px;
    padding-bottom: 110px;
    border-bottom: 1px solid;
    grid-template-columns: 238px 820px 1fr;
}

.rr-bg-primary .approach-wrapper .approach-item {
    border-color: #292929;
}

.dark .rr-bg-primary .approach-wrapper .approach-item {
    border-color: #E7E7E7;
}

@media only screen and (max-width: 1919px) {
    .approach-wrapper .approach-item {
        grid-template-columns: 238px 600px 1fr;
    }
}

@media only screen and (max-width: 1399px) {
    .approach-wrapper .approach-item {
        grid-template-columns: 238px 400px 1fr;
    }
}

@media only screen and (max-width: 1199px) {
    .approach-wrapper .approach-item {
        grid-template-columns: 150px 320px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .approach-wrapper .approach-item {
        grid-template-columns: 120px 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .approach-wrapper .approach-item {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .approach-wrapper .approach-item {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .approach-wrapper .approach-item>*:nth-child(3) {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .approach-wrapper .approach-item>*:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }
}

.approach-wrapper .approach-item .sub-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.rr-bg-primary .approach-wrapper .approach-item .sub-title {
    color: var(--white);
}

.dark .rr-bg-primary .approach-wrapper .approach-item .sub-title {
    color: var(--black);
}

@media (max-width: 575px) {
    .approach-wrapper .approach-item .sub-title {
        font-size: 25px;
    }
}

.approach-wrapper .approach-item .title {
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.rr-bg-primary .approach-wrapper .approach-item .title {
    color: var(--white);
}

.dark .rr-bg-primary .approach-wrapper .approach-item .title {
    color: var(--black);
}

@media only screen and (max-width: 991px) {
    .approach-wrapper .approach-item .title br {
        display: none;
    }
}

@media (max-width: 575px) {
    .approach-wrapper .approach-item .title {
        font-size: 25px;
    }
}

.approach-wrapper .approach-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    max-width: 500px;
}

.rr-bg-primary .approach-wrapper .approach-item p {
    color: #999999;
}

.dark .rr-bg-primary .approach-wrapper .approach-item p {
    color: #555555;
}

.fun-fact-area .fun-fact-area-inner {
    margin-top: 93px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

@media only screen and (max-width: 1199px) {
    .fun-fact-area .fun-fact-area-inner {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .fun-fact-area .fun-fact-area-inner {
        margin-top: 40px;
    }
}

.fun-fact-area .fun-fact-wrapper {
    display: inline-flex;
    align-items: self-start;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .fun-fact-area .fun-fact-wrapper {
        flex-wrap: wrap;
    }
}

.fun-fact-area .fun-fact__item {
    border-radius: 10px;
    width: 440px;
}

@media only screen and (max-width: 1199px) {
    .fun-fact-area .fun-fact__item {
        width: 400px;
    }
}

@media only screen and (max-width: 991px) {
    .fun-fact-area .fun-fact__item {
        width: 300px;
    }
}

.fun-fact-area .fun-fact__item.has--card {
    height: 355px;
    padding: 40px;
    position: relative;
    border-radius: 10px;
    background-color: #F1F1F1;
}

.dark .fun-fact-area .fun-fact__item.has--card {
    background-color: #1A1A1A;
}

@media only screen and (max-width: 991px) {
    .fun-fact-area .fun-fact__item.has--card {
        height: 280px;
    }
}

.fun-fact-area .fun-fact__item.has--card .content {
    max-width: 207px;
}

.fun-fact-area .fun-fact__item.has--card .content h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -1px;
    color: rgba(17, 17, 17, 0.5);
}

.dark .fun-fact-area .fun-fact__item.has--card .content h6 {
    color: rgba(255, 255, 255, 0.5);
}

.fun-fact-area .fun-fact__item.has--card .content h6 span {
    color: var(--primary);
}

.fun-fact-area .fun-fact__item.has--card .content a {
    gap: 10px;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    margin-top: 170px;
    line-height: 30px;
    position: relative;
    align-items: center;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    justify-content: space-between;
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 991px) {
    .fun-fact-area .fun-fact__item.has--card .content a {
        margin-top: 100px;
    }
}

.fun-fact-area .fun-fact__item.has--card .content a span {
    margin-right: 30px;
}

.fun-fact-area .fun-fact__item.has--card .content a::before {
    bottom: 0;
    left: 50%;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    background-color: currentColor;
}

@media only screen and (max-width: 767px) {
    .fun-fact-area .fun-fact__item.has--card .content a::before {
        height: 3px;
    }
}

.fun-fact-area .fun-fact__item.has--card .content a i {
    font-weight: 600;
}

.fun-fact-area .fun-fact__item.has--card .content a:hover::before {
    width: 0;
}

.fun-fact-area .fun-fact__item .media {
    position: relative;
}

.fun-fact-area .fun-fact__item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.fun-fact-area .fun-fact__item .media .text {
    max-width: 202px;
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 1;
}

.fun-fact-area .fun-fact__item .media .text h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.5);
}

.fun-fact-area .fun-fact__item .media .text h6 span {
    color: var(--white);
}

.brand-area-6 .brand-area-6-inner ul {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .brand-area-6 .brand-area-6-inner ul {
        gap: 20px;
    }
}

.brand-area-6 .brand-area-6-inner ul li img {
    transition: all 0.3s;
}

.brand-area-6 .brand-area-6-inner ul li:hover img {
    transform: scale(1.1);
}

.call-to-action .call-to-action-inner {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .call-to-action .call-to-action-inner {
        height: inherit;
        padding: 60px 0;
    }
}

.call-to-action .call-to-action-inner .cta-btn {
    padding: 0;
    font-size: 90px;
    font-weight: 400;
    line-height: 85px;
    text-align: center;
    position: relative;
    color: var(--primary);
    display: inline-block;
    border-radius: 0;
    padding-bottom: 23px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
    background-color: transparent;
    border: none;
}

@media only screen and (max-width: 991px) {
    .call-to-action .call-to-action-inner .cta-btn {
        font-size: 60px;
        font-weight: 400;
        line-height: 60px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .call-to-action .call-to-action-inner .cta-btn {
        font-size: 40px;
        font-weight: 400;
        line-height: 50px;
        padding-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .call-to-action .call-to-action-inner .cta-btn {
        font-size: 30px;
        font-weight: 400;
        line-height: 50px;
        padding-bottom: 0px;
    }
}

.call-to-action .call-to-action-inner .cta-btn .btn-wrap .text-one,
.call-to-action .call-to-action-inner .cta-btn .btn-wrap .text-two {
    color: var(--primary);
}

.call-to-action .call-to-action-inner .cta-btn .btn-wrap .text-two {
    left: 50%;
    transform: translate(-50%, 0%);
}

.call-to-action .call-to-action-inner .cta-btn:hover .btn-wrap .text-two {
    left: 50%;
    transform: translate(-50%, -50%);
}

.call-to-action .call-to-action-inner .cta-btn::before {
    bottom: 0;
    left: 50%;
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    background-color: currentColor;
}

@media only screen and (max-width: 767px) {
    .call-to-action .call-to-action-inner .cta-btn::before {
        height: 3px;
    }
}

.call-to-action .call-to-action-inner .cta-btn:hover::before {
    width: 20%;
}

.cta-area-6 .cta-area-6-inner {
    text-align: center;
    padding-bottom: 63px;
}

.cta-area-6 .cta-area-6-inner-title {
    font-size: 215px;
    font-weight: 400;
    line-height: 185px;
    text-align: center;
    color: var(--primary);
    letter-spacing: -19.35px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 1399px) {
    .cta-area-6 .cta-area-6-inner-title {
        font-size: 180px;
        letter-spacing: -15px;
    }
}

@media only screen and (max-width: 1199px) {
    .cta-area-6 .cta-area-6-inner-title {
        font-size: 130px;
        letter-spacing: -10px;
        line-height: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-area-6 .cta-area-6-inner-title {
        font-size: 90px;
        letter-spacing: -5px;
        line-height: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-area-6 .cta-area-6-inner-title {
        font-size: 60px;
        letter-spacing: 0px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .cta-area-6 .cta-area-6-inner-title {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 45px;
    }
}

.cta-area-6 .cta-area-6-inner-title img {
    width: 280px;
    height: 160px;
    margin-top: -40px;
    display: inline-block;
}

@media only screen and (max-width: 1399px) {
    .cta-area-6 .cta-area-6-inner-title img {
        width: 220px;
        height: 130px;
        margin-top: -30px;
    }
}

@media only screen and (max-width: 1199px) {
    .cta-area-6 .cta-area-6-inner-title img {
        width: 170px;
        height: 95px;
        margin-top: -20px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-area-6 .cta-area-6-inner-title img {
        width: 110px;
        height: 66px;
        margin-top: -10px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-area-6 .cta-area-6-inner-title img {
        width: 70px;
        height: 45px;
        margin-top: -7px;
    }
}

@media (max-width: 575px) {
    .cta-area-6 .cta-area-6-inner-title img {
        width: 50px;
        height: 30px;
        margin-top: -5px;
    }
}


/* modern agency page css */

.hero-7-area .hero-7-area-inner {
    padding-top: 160px;
    padding-bottom: 120px;
}

@media only screen and (max-width: 991px) {
    .hero-7-area .hero-7-area-inner {
        padding-top: 140px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-7-area .hero-7-area-inner {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 180px;
    font-weight: 200;
    line-height: 170px;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1919px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title {
        font-size: 160px;
        line-height: 150px;
    }
}

@media only screen and (max-width: 1399px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title {
        font-size: 130px;
        line-height: 120px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title {
        font-size: 110px;
        line-height: 110px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 575px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title {
        font-size: 40px;
        line-height: 55px;
    }
    .hero-7-area .hero-7-area-content .hero-7-area-title br {
        display: none;
    }
}

.hero-7-area .hero-7-area-content .hero-7-area-title .sub-title-holder {
    position: relative;
    display: inline-block;
}

.hero-7-area .hero-7-area-content .hero-7-area-title .sub-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 131px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--primary);
    letter-spacing: -0.7px;
    display: inline-block;
    text-align: left;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 767px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title {
        position: inherit;
    }
}

@media (max-width: 575px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title {
        display: none;
    }
}

.hero-7-area .hero-7-area-content .hero-7-area-title .sub-title.right-position {
    right: 30px;
    left: auto;
    max-width: 123px;
}

@media only screen and (max-width: 991px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title.right-position {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title.right-position {
        right: inherit;
    }
}

.hero-7-area .hero-7-area-content .mobile-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-7-area .hero-7-area-content .mobile-text span {
    text-align: center;
    width: 131px;
    display: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 10px;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 1919px) {
    .hero-7-area .hero-7-area-content .mobile-text span {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-7-area .hero-7-area-content .mobile-text span {
        display: block;
    }
}

.hero-area-7 {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-area-7 .image-wrapper {
    width: 500px;
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-area-7 .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 650px;
    display: block;
}

.label-left,
.label-right {
    top: 50%;
    opacity: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    position: absolute;
    white-space: nowrap;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    transform: translateY(-50%);
    font-family: var(--font_bdogrotesk);
}

.label-left {
    left: -60px;
}

.label-right {
    right: -60px;
}

.section-4-title-wrapper {
    display: grid;
    grid-template-columns: 1fr 971px;
    gap: 30px;
}

@media only screen and (max-width: 1919px) {
    .section-4-title-wrapper {
        grid-template-columns: 1fr 870px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-4-title-wrapper {
        grid-template-columns: 1fr 750px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-4-title-wrapper {
        grid-template-columns: 1fr;
    }
}

.section-4-title-wrapper .section-4-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.section-4-title-wrapper .section-4-subtitle span {
    color: #999;
}

.section-4-title-wrapper .section-4-title {
    font-size: 60px;
    font-weight: 200;
    line-height: 60px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1399px) {
    .section-4-title-wrapper .section-4-title {
        font-size: 60px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-4-title-wrapper .section-4-title {
        font-size: 50px;
        line-height: 50px;
    }
    .section-4-title-wrapper .section-4-title br {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .section-4-title-wrapper .section-4-title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .section-4-title-wrapper .section-4-title {
        font-size: 25px;
        line-height: 30px;
    }
}

.about-uss-7 .section-4-title-wrapper {
    padding-top: 40px;
    border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.dark .about-uss-7 .section-4-title-wrapper {
    border-color: rgba(248, 242, 239, 0.15);
}

.about-uss-7__wrapper {
    gap: 50px 163px;
    display: grid;
    margin-top: 20px;
    padding-top: 150px;
    grid-template-columns: 1fr 970px;
}

@media only screen and (max-width: 1919px) {
    .about-uss-7__wrapper {
        gap: 50px 150px;
        grid-template-columns: 1fr 870px;
        padding-top: 100px;
    }
}

@media only screen and (max-width: 1399px) {
    .about-uss-7__wrapper {
        gap: 50px 60px;
        grid-template-columns: 1fr 750px;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__wrapper {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .about-uss-7__wrapper {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .about-uss-7__wrapper {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__wrapper>*:nth-child(1) {
        gap: 50px;
        flex-direction: row;
    }
}

@media only screen and (max-width: 767px) {
    .about-uss-7__wrapper>*:nth-child(1) {
        gap: 50px;
        flex-direction: column;
    }
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__wrapper>*:nth-child(1) .media {
        width: 300px;
        min-width: 300px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__wrapper>*:nth-child(1) .media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about-uss-7__wrapper>*:nth-child(2) {
    margin-top: -35px;
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__wrapper>*:nth-child(2) {
        margin-top: 0;
        flex-direction: column;
    }
}

.about-uss-7__box {
    display: flex;
    flex-direction: column;
}

.about-uss-7__box h6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

.about-uss-7__content {
    margin-top: auto;
    max-width: 420px;
    margin-left: auto;
}

@media only screen and (max-width: 1399px) {
    .about-uss-7__content {
        margin-top: 130px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__content {
        margin-top: 0;
        margin-right: auto;
        margin-left: inherit;
        max-width: 100%;
    }
}

.about-uss-7__content .over {
    font-size: 180px;
    font-weight: 200;
    line-height: 28px;
    margin-bottom: 70px;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1399px) {
    .about-uss-7__content .over {
        margin-bottom: 50px;
        font-size: 150px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__content .over {
        font-size: 120px;
        line-height: 130px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .about-uss-7__content .over {
        font-size: 80px;
        line-height: 90px;
        margin-bottom: 10px;
    }
}

.about-uss-7__content .over span {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-right: 17px;
    font-family: var(--font_dmsans);
}

.about-uss-7__content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--primary);
}

.about-uss-7__content .text {
    margin-top: 60px;
}

@media only screen and (max-width: 1199px) {
    .about-uss-7__content .text {
        margin-top: 30px;
    }
}

.about-uss-7__content .text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
}

.feature-work-7 .feature-work-7-inner {
    padding-top: 40px;
    border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.dark .feature-work-7 .feature-work-7-inner {
    border-color: rgba(248, 242, 239, 0.15);
}

.feature-work-7 .feature-work-7-wrapper {
    padding-top: 110px;
}

@media only screen and (max-width: 1399px) {
    .feature-work-7 .feature-work-7-wrapper {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .feature-work-7 .feature-work-7-wrapper {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .feature-work-7 .feature-work-7-wrapper {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-work-7 .feature-work-7-wrapper {
        padding-top: 0px;
    }
}

.feature-work-7 .feature-work-7-wrapper>* {
    gap: 30px;
    display: grid;
    padding-top: 40px;
    grid-template-columns: 235px 554px 1fr;
}

@media only screen and (max-width: 1399px) {
    .feature-work-7 .feature-work-7-wrapper>* {
        grid-template-columns: 235px 454px 1fr;
    }
}

@media only screen and (max-width: 1199px) {
    .feature-work-7 .feature-work-7-wrapper>* {
        grid-template-columns: 120px 354px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .feature-work-7 .feature-work-7-wrapper>* {
        grid-template-columns: 80px 300px 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .feature-work-7 .feature-work-7-wrapper>* {
        grid-template-columns: 50px 220px 1fr;
    }
}

@media (max-width: 575px) {
    .feature-work-7 .feature-work-7-wrapper>* {
        gap: 20px;
        padding-top: 20px;
        grid-template-columns: 1fr;
    }
}

.feature-work-7 .feature-work-7-item:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}

.dark .feature-work-7 .feature-work-7-item:not(:last-child) {
    border-color: rgba(248, 242, 239, 0.15);
}

.feature-work-7 .feature-work-7-item span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.feature-work-7 .feature-work-7-item .content .title {
    font-size: 60px;
    font-weight: 200;
    line-height: 60px;
    margin-bottom: 6px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1199px) {
    .feature-work-7 .feature-work-7-item .content .title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .feature-work-7 .feature-work-7-item .content .title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-work-7 .feature-work-7-item .content .title {
        font-size: 30px;
        line-height: 40px;
    }
}

.feature-work-7 .feature-work-7-item .content .title a:hover {
    color: var(--secondary);
}

.feature-work-7 .feature-work-7-item .content p {
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.feature-work-7 .feature-work-7-item .image {
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
}

.feature-work-7 .feature-work-7-item .image img {
    transform-origin: center;
}

.impact-area .impact-inner {
    padding-top: 177px;
}

@media only screen and (max-width: 1919px) {
    .impact-area .impact-inner {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 1399px) {
    .impact-area .impact-inner {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 1199px) {
    .impact-area .impact-inner {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .impact-area .impact-inner {
        padding-top: 60px;
    }
}

.impact-area .impact-inner .impact-media {
    position: relative;
}

.impact-area .impact-inner .small-image {
    position: absolute;
    left: 50px;
    top: -177px;
}

@media only screen and (max-width: 767px) {
    .impact-area .impact-inner .small-image {
        position: inherit;
        margin-top: 30px;
    }
}

.impact-area .impact-inner .impact-content .designation {
    top: 70px;
    right: 50px;
    font-size: 14px;
    color: #F8F2EF;
    max-width: 257px;
    font-weight: 400;
    line-height: 16px;
    position: absolute;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.dark .impact-area .impact-inner .impact-content .designation {
    color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
    .impact-area .impact-inner .impact-content .designation {
        top: 180px;
        left: 30px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .impact-area .impact-inner .impact-content .designation {
        top: 136px;
        left: 20px;
    }
}

.impact-area .impact-inner .impact-content .title {
    left: 50px;
    bottom: 20px;
    color: #F8F2EF;
    font-size: 180px;
    font-weight: 200;
    line-height: 170px;
    position: absolute;
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1399px) {
    .impact-area .impact-inner .impact-content .title {
        font-size: 120px;
        line-height: 130px;
    }
}

@media only screen and (max-width: 1199px) {
    .impact-area .impact-inner .impact-content .title {
        font-size: 100px;
        line-height: 110px;
    }
}

@media only screen and (max-width: 991px) {
    .impact-area .impact-inner .impact-content .title {
        font-size: 70px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .impact-area .impact-inner .impact-content .title {
        font-size: 50px;
        line-height: 60px;
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 575px) {
    .impact-area .impact-inner .impact-content .title {
        font-size: 28px;
        line-height: 40px;
        top: 30px;
        left: 20px;
    }
}

.award-area-7 .award-inner {
    gap: 30px;
    display: grid;
    padding-top: 40px;
    grid-template-columns: 820px 1fr;
    border-top: 1px solid rgba(17, 17, 17, 0.15);
}

@media only screen and (max-width: 1919px) {
    .award-area-7 .award-inner {
        grid-template-columns: 720px 1fr;
    }
}

@media only screen and (max-width: 1399px) {
    .award-area-7 .award-inner {
        grid-template-columns: 500px 1fr;
    }
}

@media only screen and (max-width: 1199px) {
    .award-area-7 .award-inner {
        grid-template-columns: 250px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .award-area-7 .award-inner {
        grid-template-columns: 1fr;
    }
}

.award-area-7 .award-inner .award-section .title {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

.award-area-7 .award-inner .award-content .award-list li {
    display: flex;
    font-size: 60px;
    font-weight: 200;
    line-height: 60px;
    color: var(--primary);
    align-items: baseline;
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1199px) {
    .award-area-7 .award-inner .award-content .award-list li {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .award-area-7 .award-inner .award-content .award-list li {
        font-size: 45px;
        line-height: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .award-area-7 .award-inner .award-content .award-list li {
        font-size: 35px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .award-area-7 .award-inner .award-content .award-list li {
        font-size: 30px;
        line-height: 30px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
}

.award-area-7 .award-inner .award-content .award-list li span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.award-area-7 .award-list {
    flex: 3;
    line-height: 1.8;
}

.award-area-7 .award-list span {
    font-size: 10px;
    margin-left: 8px;
    vertical-align: super;
    color: #555;
}

.fun-fact-area.fun-fact-7 .fun-fact-area-inner {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.fun-fact-area.fun-fact-7 .fun-fact__item {
    position: relative;
}

.fun-fact-area.fun-fact-7 .fun-fact__item .number {
    font-size: 60px;
    font-weight: 200;
    line-height: 60px;
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
    position: absolute;
    left: 40px;
    bottom: 30px;
}

.fun-fact-area.fun-fact-7 .fun-fact__item.has--card {
    background-color: #F2E9E5;
}

.dark .fun-fact-area.fun-fact-7 .fun-fact__item.has--card {
    background-color: #1A1A1A;
}

.cta-area-7 .cta-inner {
    padding-bottom: 70px;
}

@media (max-width: 575px) {
    .cta-area-7 .cta-inner {
        padding-bottom: 50px;
    }
}

.cta-area-7 .cta-inner .cta-designation {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color: var(--primary);
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.cta-area-7 .cta-inner .cta-title {
    font-size: 180px;
    font-weight: 200;
    margin-top: 155px;
    text-align: center;
    line-height: 170px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1399px) {
    .cta-area-7 .cta-inner .cta-title {
        font-size: 160px;
        margin-top: 120px;
        line-height: 160px;
    }
}

@media only screen and (max-width: 1199px) {
    .cta-area-7 .cta-inner .cta-title {
        font-size: 130px;
        margin-top: 100px;
        line-height: 140px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-area-7 .cta-inner .cta-title {
        font-size: 100px;
        margin-top: 70px;
        line-height: 115px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-area-7 .cta-inner .cta-title {
        font-size: 70px;
        margin-top: 50px;
        line-height: 80px;
    }
}

@media (max-width: 575px) {
    .cta-area-7 .cta-inner .cta-title {
        font-size: 50px;
        margin-top: 20px;
        line-height: 55px;
    }
}

.funding-success .funding-success-inner .sub-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-family: var(--font_bdogrotesk);
}

.funding-success .funding-success-inner .counter {
    line-height: 1;
    font-size: 580px;
    font-weight: 200;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1919px) {
    .funding-success .funding-success-inner .counter {
        font-size: 450px;
    }
}

@media only screen and (max-width: 1399px) {
    .funding-success .funding-success-inner .counter {
        font-size: 350px;
    }
}

@media only screen and (max-width: 1199px) {
    .funding-success .funding-success-inner .counter {
        font-size: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .funding-success .funding-success-inner .counter {
        font-size: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .funding-success .funding-success-inner .counter {
        font-size: 100px;
        margin-top: 50px;
        display: none;
    }
}

@media (max-width: 575px) {
    .funding-success .funding-success-inner .counter {
        font-size: 80px;
    }
}

.funding-success .funding-success-inner .number {
    line-height: 1;
    font-size: 580px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 150px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
    display: none;
}

@media only screen and (max-width: 767px) {
    .funding-success .funding-success-inner .number {
        font-size: 100px;
        margin-top: 50px;
        display: block;
    }
}

@media (max-width: 575px) {
    .funding-success .funding-success-inner .number {
        font-size: 80px;
    }
}

.funding-success .funding-success-inner .title {
    font-size: 60px;
    font-weight: 200;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font_ppeditor);
}

@media only screen and (max-width: 1199px) {
    .funding-success .funding-success-inner .title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .funding-success .funding-success-inner .title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .funding-success .funding-success-inner .title {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .funding-success .funding-success-inner .title {
        font-size: 25px;
        line-height: 35px;
    }
}


/* agency portfolio page css */

.section-title-9 {
    font-family: var(--font_bdogrotesk);
    font-size: 230px;
    font-weight: 400;
    line-height: 190px;
    letter-spacing: -16.1px;
}

@media only screen and (max-width: 1919px) {
    .section-title-9 {
        font-size: 190px;
        letter-spacing: -10px;
    }
}

@media only screen and (max-width: 1399px) {
    .section-title-9 {
        font-size: 160px;
        line-height: 160px;
        letter-spacing: -7px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-title-9 {
        font-size: 130px;
        line-height: 130px;
        letter-spacing: -5px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title-9 {
        font-size: 90px;
        line-height: 90px;
        letter-spacing: -2px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title-9 {
        font-size: 65px;
        line-height: 80px;
        letter-spacing: 0;
    }
}

@media (max-width: 575px) {
    .section-title-9 {
        font-size: 36px;
        line-height: 46px;
    }
}


/* hero area 6 style  */

.hero-9-section-content {
    margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
    .hero-9-section-content {
        margin-top: 107px;
    }
}

.hero-9-section-content .meta-list {
    max-width: 895px;
    margin-left: auto;
}

@media only screen and (max-width: 1199px) {
    .hero-9-section-content .meta-list {
        margin-left: 0;
        max-width: 100%;
    }
}

.hero-9-section-content .meta-list ul {
    display: grid;
    gap: 15px 40px;
    grid-template-columns: 169px 142px;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .hero-9-section-content .meta-list ul {
        grid-template-columns: 1fr;
    }
}

.hero-9-section-content .meta-list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -1.26px;
    color: var(--primary);
    text-transform: capitalize;
    list-style: none;
}

.hero-9-section-content .meta-list li br {
    display: block;
}

.hero-9-section-content .section-title-wrapper {
    margin-top: 55px;
    margin-bottom: 70px;
}

@media only screen and (max-width: 1199px) {
    .hero-9-section-content .section-title-wrapper {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-9-section-content .section-title-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.hero-9-nav {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

@media only screen and (max-width: 767px) {
    .hero-9-nav {
        margin-top: 30px;
    }
}

.hero-9-nav .main-menu {
    margin-left: auto;
}

.hero-9-nav .main-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 0 0;
    justify-content: space-between;
}

.hero-9-nav .main-menu li a:hover {
    color: var(--primary);
}

.hero-9-nav .main-menu>ul {
    gap: 40px;
}

.hero-9-nav .main-menu>ul>li {
    flex-grow: 1;
}

.hero-9-nav .main-menu>ul>li:hover>a {
    color: var(--secondary);
    border-color: var(--primary);
}

.hero-9-nav .main-menu ul.dp-menu {
    min-width: 100%;
}

.hero-9-nav-inner {
    border-top: 1px solid rgba(17, 17, 17, 0.2);
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .hero-9-nav-inner {
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-9-nav-inner .hero-9-nav-wrapper {
    display: flex;
    padding: 21px 0;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .hero-9-nav-inner .hero-9-nav-wrapper {
        padding: 15px 0;
    }
}

.hero-9-nav-inner .date span {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary);
    letter-spacing: -0.64px;
}

.hero-9-nav-inner .btn-line {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    color: var(--primary);
    letter-spacing: -0.64px;
    margin-left: 265px;
}

@media only screen and (max-width: 1199px) {
    .hero-9-nav-inner .btn-line {
        margin-left: 0;
    }
}

.hero-9-nav-inner .btn-line::before {
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: currentColor;
    transition: all 0.3s;
}

.hero-9-nav-inner .btn-line:hover {
    color: var(--secondary);
}

.hero-9-nav-inner .btn-line:hover::before {
    width: 0;
}


/* service-9 style  */

.service-9 .service-9-inner {
    border-top: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .service-9 .service-9-inner {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-9__content {
    gap: 50px;
    display: grid;
    grid-template-columns: 750px 1fr;
}

@media only screen and (max-width: 1399px) {
    .service-9__content {
        grid-template-columns: 550px 1fr;
    }
}

@media only screen and (max-width: 1199px) {
    .service-9__content {
        grid-template-columns: 450px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .service-9__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.service-9__info {
    display: flex;
    padding-top: 94px;
    padding-right: 50px;
    flex-direction: column;
    border-right: 1px solid rgba(17, 17, 17, 0.2);
}

.dark .service-9__info {
    border-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 991px) {
    .service-9__info {
        border-right: none;
        padding-right: 0;
    }
}

@media only screen and (max-width: 1199px) {
    .service-9__info {
        padding-top: 60px;
    }
}

.service-9__info .designation {
    max-width: 301px;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
    font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 1399px) {
    .service-9__info .designation {
        max-width: 100%;
    }
}

.service-9__info .media {
    margin-top: auto;
}

@media only screen and (max-width: 1399px) {
    .service-9__info .media {
        margin-top: 40px;
    }
}

.service-9__wrapper {
    position: relative;
}

.service-9__wrap {
    padding-top: 94px;
}

@media only screen and (max-width: 1199px) {
    .service-9__wrap {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .service-9__wrap {
        padding-top: 0;
    }
}

.service-9__wrap .title {
    font-size: 50px;
    font-weight: 400;
    max-width: 659px;
    line-height: 50px;
    margin-bottom: 80px;
    color: var(--primary);
    letter-spacing: -2.5px;
}

@media only screen and (max-width: 1199px) {
    .service-9__wrap .title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .service-9__wrap .title {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .service-9__wrap .title {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 30px;
    }
}

.service-9__wrap .btn-wrapper {
    text-align: right;
    margin-top: 230px;
}

@media only screen and (max-width: 1919px) {
    .service-9__wrap .btn-wrapper {
        margin-top: 150px;
    }
}

@media only screen and (max-width: 1399px) {
    .service-9__wrap .btn-wrapper {
        margin-top: 80px;
        text-align: left;
    }
}

@media only screen and (max-width: 991px) {
    .service-9__wrap .btn-wrapper {
        margin-top: 40px;
    }
}

.service-9__wrap .btn-explore {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary);
    letter-spacing: -0.64px;
    position: relative;
}

.service-9__wrap .btn-explore::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transition: all 0.3s;
    background-color: var(--primary);
}

.service-9__wrap .btn-explore:hover {
    color: var(--secondary);
}

.service-9__wrap .btn-explore:hover::before {
    width: 0;
}

.service-9 .service-9-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    border-top: 1px solid #CFCFCF;
}

.dark .service-9 .service-9-list {
    border-color: #545454;
}

.service-9__item {
    z-index: 1;
    width: 100%;
    display: flex;
    padding-left: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 38px;
    color: var(--primary);
    align-items: center;
    position: relative;
    justify-content: space-between;
    border-bottom: 1px solid #CFCFCF;
    transition: 0.3s transform ease-in-out, background-color 0.3s ease;
}

.dark .service-9__item {
    border-color: #545454;
}

@media (max-width: 575px) {
    .service-9__item {
        font-size: 16px;
        padding: 12px 2px;
    }
}

.service-9__item a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

.service-9__item a i {
    rotate: -45deg;
    font-size: 15px;
    color: var(--primary);
}

.service-9 .active-bg {
    left: 0;
    right: 0;
    z-index: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    background: #F1F1F1;
    transform: translateY(0);
    transform-origin: top center;
    transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.dark .service-9 .active-bg {
    background-color: #1F1F1F;
}


/* work-area-9 gallery style  */

.work-area-9 .work-area-9-inner .main-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.64px;
    transform: translateY(100%);
    font-family: var(--font_dmsans);
}

@media only screen and (max-width: 767px) {
    .work-area-9 .work-area-9-inner .main-title {
        transform: translateY(0);
        margin-bottom: 20px;
    }
}

.work-area-9 .works-9-wrapper {
    display: grid;
    gap: 150px 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
    .work-area-9 .works-9-wrapper {
        gap: 100px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .works-9-wrapper {
        gap: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper {
        grid-template-columns: auto;
        gap: 50px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(1) {
    margin-top: 924px;
    max-width: 485px;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .works-9-wrapper>*:nth-child(1) {
        margin-top: 500px;
    }
}

@media only screen and (max-width: 991px) {
    .work-area-9 .works-9-wrapper>*:nth-child(1) {
        margin-top: 250px;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper>*:nth-child(1) {
        margin-top: 0px;
        max-width: 100%;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(2) {
    margin-left: -40px;
}

@media only screen and (max-width: 1399px) {
    .work-area-9 .works-9-wrapper>*:nth-child(2) {
        margin-left: 0;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(3) {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .works-9-wrapper>*:nth-child(3) {
        max-width: 700px;
    }
}

@media only screen and (max-width: 991px) {
    .work-area-9 .works-9-wrapper>*:nth-child(3) {
        max-width: 550px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(4) {
    margin-top: 265px;
    margin-right: -40px;
}

@media only screen and (max-width: 1399px) {
    .work-area-9 .works-9-wrapper>*:nth-child(4) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper>*:nth-child(4) {
        margin-top: 0px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(5) {
    margin-left: auto;
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper>*:nth-child(5) {
        margin-left: inherit;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(6) {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .works-9-wrapper>*:nth-child(6) {
        max-width: 700px;
    }
}

@media only screen and (max-width: 991px) {
    .work-area-9 .works-9-wrapper>*:nth-child(6) {
        max-width: 550px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(8) {
    margin-top: 321px;
    margin-left: -40px;
}

@media only screen and (max-width: 1399px) {
    .work-area-9 .works-9-wrapper>*:nth-child(8) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper>*:nth-child(8) {
        margin-top: 0px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(9) {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .works-9-wrapper>*:nth-child(9) {
        max-width: 700px;
    }
}

@media only screen and (max-width: 991px) {
    .work-area-9 .works-9-wrapper>*:nth-child(9) {
        max-width: 550px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(10) {
    margin-top: 265px;
    margin-right: -40px;
}

@media only screen and (max-width: 1399px) {
    .work-area-9 .works-9-wrapper>*:nth-child(10) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper>*:nth-child(10) {
        margin-top: 0px;
    }
}

.work-area-9 .works-9-wrapper>*:nth-child(11) {
    margin-left: auto;
}

@media only screen and (max-width: 767px) {
    .work-area-9 .works-9-wrapper>*:nth-child(11) {
        margin-left: inherit;
    }
}

.work-area-9 .span-2 {
    grid-column: span 2;
}

@media only screen and (max-width: 767px) {
    .work-area-9 .span-2 {
        grid-column: auto;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .work-box__item {
        width: 100%;
    }
}

.work-area-9 .work-box__item .thumb {
    overflow: hidden;
}

.work-area-9 .work-box__item .thumb .image {
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .work-area-9 .work-box__item .thumb .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.work-area-9 .work-box__item .content {
    margin-top: 24px;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .work-box__item .content {
        margin-top: 14px;
    }
}

.work-area-9 .work-box__item .content .designation {
    font-size: 20px;
    font-weight: 400;
    max-width: 540px;
    line-height: 28px;
    color: var(--black);
    margin-bottom: 70px;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .work-box__item .content .designation {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .work-area-9 .work-box__item .content .designation {
        margin-bottom: 30px;
    }
}

.work-area-9 .work-box__item .title {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.05em;
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .work-box__item .title {
        font-size: 18px;
    }
}

.work-area-9 .work-box__item .title a:hover {
    color: var(--secondary);
}

.work-area-9 .work-box__item .tag {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.05em;
    display: block;
    font-family: var(--font_bdogrotesk);
    color: var(--primary);
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .work-box__item .tag {
        font-size: 18px;
    }
}

.work-area-9 .work-box__item .date {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.05em;
    display: block;
    font-family: var(--font_bdogrotesk);
    color: var(--primary);
}

@media only screen and (max-width: 1199px) {
    .work-area-9 .work-box__item .date {
        font-size: 18px;
    }
}


/* agency portfolio 2 page css */

.hero-area-10 .hero-area-10__inner {
    padding-top: 142px;
    padding-bottom: 100px;
    position: relative;
}

.dark .hero-area-10 .hero-area-10__inner {
    background: var(--black);
}

@media only screen and (max-width: 1199px) {
    .hero-area-10 .hero-area-10__inner {
        padding-top: 110px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-area-10 .hero-area-10__inner {
        padding-top: 90px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .hero-area-10 .hero-area-10__inner {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.hero-area-10 .hero-area-10__inner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 130%;
    background: linear-gradient(180deg, #FFD80C 6.48%, #FFF 84.06%);
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-area-10__content {
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.hero-area-10__wrapper {
    display: grid;
    margin-bottom: 190px;
    grid-template-columns: 815px auto;
}

@media only screen and (max-width: 1399px) {
    .hero-area-10__wrapper {
        margin-bottom: 150px;
        grid-template-columns: 515px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-area-10__wrapper {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-area-10__wrapper {
        grid-template-columns: 250px auto;
    }
}

@media only screen and (max-width: 767px) {
    .hero-area-10__wrapper {
        margin-bottom: 50px;
        grid-template-columns: 150px auto;
    }
}

@media (max-width: 575px) {
    .hero-area-10__wrapper {
        grid-template-columns: auto;
        gap: 20px;
    }
}

.hero-area-10__wrapper .sub-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--primary);
    font-family: var(--font_dmsans);
    position: relative;
    padding-left: 10px;
}

.hero-area-10__wrapper .sub-title::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 500px;
    background-color: var(--primary);
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.hero-area-10__wrapper .text {
    max-width: 369px;
}

.hero-area-10__wrapper .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-indent: 82px;
    color: var(--primary);
    margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .hero-area-10__wrapper .text p {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-area-10__wrapper .text p {
        text-indent: 0;
    }
}

.hero-area-10__wrapper .text .btn-line {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary);
    letter-spacing: -0.64px;
    display: inline-flex;
    gap: 20px;
    position: relative;
}

.hero-area-10__wrapper .text .btn-line::before {
    left: 0;
    content: "";
    width: 100%;
    bottom: -6px;
    height: 1px;
    position: absolute;
    transition: all 0.3s;
    background-color: var(--primary);
}

.hero-area-10__wrapper .text .btn-line:hover {
    opacity: 70%;
}

.hero-area-10__wrapper .text .btn-line:hover::before {
    width: 0;
}

.hero-area-10 .hero-area-10-title-wrap {
    position: relative;
}

.hero-area-10 .hero-area-10-title-wrap::before {
    top: -20px;
    right: 0;
    content: "+";
    font-size: 20px;
    font-weight: 3000;
    position: absolute;
    color: var(--primary);
    font-family: var(--font_awesome);
}

.hero-area-10 .hero-area-10-title-wrap::after {
    top: -20px;
    left: 0;
    content: "+";
    font-size: 20px;
    font-weight: 3000;
    position: absolute;
    color: var(--primary);
    font-family: var(--font_awesome);
}

.hero-area-10 .hero-area-10-title-wrap .pulse::before {
    bottom: 0px;
    right: 0;
    content: "+";
    font-size: 20px;
    font-weight: 3000;
    position: absolute;
    color: var(--primary);
    font-family: var(--font_awesome);
}

@media (max-width: 575px) {
    .hero-area-10 .hero-area-10-title-wrap .pulse::before {
        bottom: -15px;
    }
}

.hero-area-10 .hero-area-10-title-wrap .pulse::after {
    bottom: 0px;
    left: 0;
    content: "+";
    font-size: 20px;
    font-weight: 3000;
    position: absolute;
    color: var(--primary);
    font-family: var(--font_awesome);
}

@media only screen and (max-width: 767px) {
    .hero-area-10 .hero-area-10-title-wrap .pulse::after {
        bottom: -10px;
    }
}

@media (max-width: 575px) {
    .hero-area-10 .hero-area-10-title-wrap .pulse::after {
        bottom: -15px;
    }
}

.hero-area-10 .hero-area-10-title-wrap .title {
    font-size: 405px;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -12.15px;
    text-transform: uppercase;
    font-family: var(--font_tartuffotrial);
}

@media only screen and (max-width: 1919px) {
    .hero-area-10 .hero-area-10-title-wrap .title {
        font-size: 310px;
    }
}

@media only screen and (max-width: 1399px) {
    .hero-area-10 .hero-area-10-title-wrap .title {
        font-size: 260px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-area-10 .hero-area-10-title-wrap .title {
        font-size: 220px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-area-10 .hero-area-10-title-wrap .title {
        letter-spacing: -5px;
        font-size: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-area-10 .hero-area-10-title-wrap .title {
        letter-spacing: 0px;
        font-size: 110px;
    }
}

@media (max-width: 575px) {
    .hero-area-10 .hero-area-10-title-wrap .title {
        font-size: 60px;
    }
}

.hero-area-10 .hero-area-10-title-wrap .title span {
    font-style: italic;
    display: inline-block;
    transform: translateX(-44px);
}

@media only screen and (max-width: 1919px) {
    .hero-area-10 .hero-area-10-title-wrap .title span {
        transform: translateX(-15px);
    }
}

@media only screen and (max-width: 1399px) {
    .hero-area-10 .hero-area-10-title-wrap .title span {
        transform: translateX(0px);
    }
}

.Projects-area-10-inner {
    gap: 30px;
    display: grid;
    padding-top: 30px;
    grid-template-columns: 785px auto;
    border-top: 1px solid var(--border);
}

@media only screen and (max-width: 1919px) {
    .Projects-area-10-inner {
        grid-template-columns: 685px auto;
    }
}

@media only screen and (max-width: 1399px) {
    .Projects-area-10-inner {
        grid-template-columns: 585px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .Projects-area-10-inner {
        grid-template-columns: 450px auto;
    }
}

@media only screen and (max-width: 991px) {
    .Projects-area-10-inner {
        grid-template-columns: 300px auto;
    }
}

@media only screen and (max-width: 767px) {
    .Projects-area-10-inner {
        grid-template-columns: auto;
    }
}

.Projects-area-10-inner .Projects__content .name {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    color: var(--primary);
    padding-left: 8px;
    margin-bottom: 98px;
}

@media only screen and (max-width: 1399px) {
    .Projects-area-10-inner .Projects__content .name {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .Projects-area-10-inner .Projects__content .name {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .Projects-area-10-inner .Projects__content .name {
        margin-bottom: 30px;
    }
}

.Projects-area-10-inner .Projects__content .name::before {
    top: 50%;
    left: 0;
    width: 5px;
    content: "";
    height: 5px;
    position: absolute;
    border-radius: 500px;
    background-color: var(--primary);
    transform: translate(0px, -50%);
}

.Projects-area-10-inner .Projects__content ul li {
    color: #999999;
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    font-family: var(--font_tartuffotrial);
    list-style: none;
}

.dark .Projects-area-10-inner .Projects__content ul li {
    color: #555555;
}

@media (max-width: 575px) {
    .Projects-area-10-inner .Projects__content ul li {
        font-size: 25px;
    }
}

.Projects-area-10-inner .Projects__content ul li.active {
    color: var(--primary);
}

.Projects-area-10-inner .Projects-wrapper .title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 8px;
    position: relative;
    margin-bottom: 98px;
    color: var(--primary);
}

@media only screen and (max-width: 1399px) {
    .Projects-area-10-inner .Projects-wrapper .title {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .Projects-area-10-inner .Projects-wrapper .title {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .Projects-area-10-inner .Projects-wrapper .title {
        margin-bottom: 30px;
    }
}

.Projects-area-10-inner .Projects-wrapper .title::before {
    top: 50%;
    left: 0;
    width: 5px;
    content: "";
    height: 5px;
    position: absolute;
    border-radius: 500px;
    background-color: var(--primary);
    transform: translate(0px, -50%);
}

.Projects-area-10-inner .Projects-wrapper .Projects__item:not(:last-child) {
    margin-bottom: 100px;
}

@media only screen and (max-width: 991px) {
    .Projects-area-10-inner .Projects-wrapper .Projects__item:not(:last-child) {
        margin-bottom: 50px;
    }
}

.service-10-area .service-10__inner {
    background-color: #F1F1F1;
    padding-top: 30px;
}

.dark .service-10-area .service-10__inner {
    background-color: #171717;
}

.service-10-area .service-10__inner .sub-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 8px;
    position: relative;
    color: var(--primary);
}

.service-10-area .service-10__inner .sub-title::before {
    top: 50%;
    left: 0;
    width: 5px;
    content: "";
    height: 5px;
    position: absolute;
    border-radius: 500px;
    background-color: var(--primary);
    transform: translate(0px, -50%);
}

.service-10-area .service-10-border {
    padding-top: 30px;
    margin: 0px 30px;
    display: grid;
    grid-template-columns: 785px auto;
    border-top: 1px solid var(--border);
}

@media only screen and (max-width: 1399px) {
    .service-10-area .service-10-border {
        grid-template-columns: 515px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .service-10-area .service-10-border {
        grid-template-columns: 415px auto;
    }
}

@media only screen and (max-width: 991px) {
    .service-10-area .service-10-border {
        grid-template-columns: 250px auto;
    }
}

@media only screen and (max-width: 767px) {
    .service-10-area .service-10-border {
        grid-template-columns: 150px auto;
    }
}

@media (max-width: 575px) {
    .service-10-area .service-10-border {
        grid-template-columns: auto;
        gap: 20px;
    }
}

.service-10-area .service-10__wrapper {
    position: relative;
}

.service-10-area .btn-explore {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary);
    letter-spacing: -0.64px;
    position: relative;
    margin-top: 120px;
    display: inline-block;
}

@media only screen and (max-width: 1399px) {
    .service-10-area .btn-explore {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .service-10-area .btn-explore {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .service-10-area .btn-explore {
        margin-top: 60px;
    }
}

@media (max-width: 575px) {
    .service-10-area .btn-explore {
        margin-top: 40px;
    }
}

.service-10-area .btn-explore::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transition: all 0.3s;
    background-color: var(--primary);
}

.service-10-area .btn-explore:hover {
    color: var(--secondary);
}

.service-10-area .btn-explore:hover::before {
    width: 0;
}

.service-10-area .service-10-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.service-10-area .service-10__item {
    transition: 0.3s transform ease-in-out, background-color 0.3s ease;
}

.service-10-area .service-10__item:not(:first-child) {
    border-top: 1px solid #CFCFCF;
}

.dark .service-10-area .service-10__item:not(:first-child) {
    border-color: #414141;
}

.service-10-area .service-10__item .title {
    z-index: 1;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    padding: 19.5px 0px;
    position: relative;
    color: var(--primary);
    font-family: var(--font_tartuffotrial);
}

@media (max-width: 575px) {
    .service-10-area .service-10__item .title {
        font-size: 16px;
        padding: 12px 2px;
    }
}

.service-10-area .active-bg {
    left: 0;
    right: 0;
    z-index: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    background-color: var(--white);
    transform: translateY(0);
    transform-origin: top center;
    transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.dark .service-10-area .active-bg {
    background-color: var(--black);
}

.capabilities-area-10 .section-5-title-wrapper {
    gap: 20px;
    display: grid;
    padding-top: 30px;
    margin-bottom: 100px;
    grid-template-columns: 772px auto;
    border-top: 1px solid var(--border);
}

@media only screen and (max-width: 1919px) {
    .capabilities-area-10 .section-5-title-wrapper {
        grid-template-columns: 672px auto;
    }
}

@media only screen and (max-width: 1399px) {
    .capabilities-area-10 .section-5-title-wrapper {
        grid-template-columns: 500px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .capabilities-area-10 .section-5-title-wrapper {
        grid-template-columns: 400px auto;
    }
}

@media only screen and (max-width: 991px) {
    .capabilities-area-10 .section-5-title-wrapper {
        grid-template-columns: 220px auto;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .capabilities-area-10 .section-5-title-wrapper {
        grid-template-columns: auto;
        margin-bottom: 60px;
    }
}

.capabilities-area-10 .section-5-title-wrapper span {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 8px;
    position: relative;
    color: var(--primary);
}

.capabilities-area-10 .section-5-title-wrapper span::before {
    top: 50%;
    left: 0;
    width: 5px;
    content: "";
    height: 5px;
    position: absolute;
    border-radius: 500px;
    background-color: var(--primary);
    transform: translate(0px, -50%);
}

.capabilities-area-10 .section-5-title-wrapper .title {
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    color: var(--primary);
    max-width: 600px;
    font-family: var(--font_tartuffotrial);
}

@media (max-width: 575px) {
    .capabilities-area-10 .section-5-title-wrapper .title {
        font-size: 24px;
    }
}

.capabilities-area-10 .capabilities__wrapper {
    gap: 80px;
    display: grid;
    grid-template-columns: 1005px auto;
}

@media only screen and (max-width: 1919px) {
    .capabilities-area-10 .capabilities__wrapper {
        grid-template-columns: 800px auto;
    }
}

@media only screen and (max-width: 1399px) {
    .capabilities-area-10 .capabilities__wrapper {
        grid-template-columns: 600px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .capabilities-area-10 .capabilities__wrapper {
        grid-template-columns: 500px auto;
        gap: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .capabilities-area-10 .capabilities__wrapper {
        grid-template-columns: 360px auto;
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .capabilities-area-10 .capabilities__wrapper {
        grid-template-columns: auto;
        gap: 50px;
    }
}

.capabilities-area-10 .capabilities__content {
    display: flex;
    flex-direction: column;
}

.capabilities-area-10 .capabilities__content .number {
    line-height: 1;
    font-size: 140px;
    font-weight: 300;
    margin-top: 90px;
    letter-spacing: -4.2px;
    text-transform: uppercase;
    font-family: var(--font_tartuffotrial);
}

@media only screen and (max-width: 1399px) {
    .capabilities-area-10 .capabilities__content .number {
        font-size: 110px;
        margin-top: 30px;
        letter-spacing: -2.2px;
    }
}

@media only screen and (max-width: 1199px) {
    .capabilities-area-10 .capabilities__content .number {
        font-size: 80px;
        margin-top: 30px;
        letter-spacing: 0;
    }
}

@media only screen and (max-width: 991px) {
    .capabilities-area-10 .capabilities__content .number {
        font-size: 60px;
        margin-top: 30px;
        letter-spacing: 0;
        margin-bottom: 20px;
    }
}

.capabilities-area-10 .capabilities__content .text {
    margin-top: auto;
}

.capabilities-area-10 .capabilities__content .text .sub-title {
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 40px;
    color: var(--primary);
    font-family: var(--font_tartuffotrial);
}

.capabilities-area-10 .capabilities__content .text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--primary);
    max-width: 417px;
}


/*# sourceMappingURL=ad-style.css.map */