@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
    --primary: #1C1C25;
    --secondary: #797E88;
    --border: #E5E5E5;
    --theme: #6421FF;
    --black: #1C1C25;
    --black-2: #4f5259;
    --white: #FFFFFF;
    --white-2: #A7ACB5;
    --action: #6421FF;
}

/* typography css */

/* inter  */

/* general sans  */

@font-face {
    font-family: "GeneralSans-Semibold";
    src: url("../fonts/GeneralSans-Semibold.otf");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "GeneralSans-Medium";
    src: url("../fonts/GeneralSans-Medium.otf");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "GeneralSans-Italic";
    src: url("../fonts/GeneralSans-Italic.otf");
    font-weight: 400;
    font-display: swap;
    font-style: italic;
}

:root {
    --font_inter: "Inter", sans-serif;
    --font_generalsanssemibold: "GeneralSans-Semibold";
    --font_generalsansmedium: "GeneralSans-Medium";
    --font_generalsansitalic: "GeneralSans-Italic";
    --font_awesome: "Font Awesome 6 pro";
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font_inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}

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_generalsanssemibold);
    font-weight: 600;
}

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

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;
}

strong {
    font-weight: 500;
}

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

img {
    max-width: 100%;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}

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

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;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        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;
}

.rr-container-1350 {
    max-width: 1350px;
}

.rr-container-1410 {
    max-width: 1410px;
}

/* 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%;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-relative {
    position: relative;
}

/* 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-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 20px;
    position: relative;
    border-radius: 50px;
    color: var(--theme);
    display: inline-flex;
    border: 1px solid var(--border);
    text-transform: uppercase;
    background-color: var(--white);
    letter-spacing: 0.05em;
}

.section-subtitle .start-shape {
    display: inline-flex;
    align-items: center;
}

.section-subtitle .start-shape:before {
    content: "";
    width: 3px;
    height: 3px;
    background-color: var(--theme);
    display: inline-block;
    border-radius: 50%;
}

.section-subtitle .start-shape:after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--theme);
    display: inline-block;
    border-radius: 50%;
    margin: 0 7px;
}

.section-subtitle .end-shape {
    display: inline-flex;
    align-items: center;
}

.section-subtitle .end-shape:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--theme);
    display: inline-block;
    border-radius: 50%;
    margin: 0 7px;
}

.section-subtitle .end-shape:after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: var(--theme);
    display: inline-block;
    border-radius: 50%;
}

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

.section-subtitle.subtitle-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: 44px;
}

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

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

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

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

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

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
}

/* Section spacing with responsive padding */

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

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

@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: 120px;
}

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

@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: 120px;
}

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

@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: 100%;
        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: 120px;
}

@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;
}

@media (min-width: 1301px) {
    .mobile-menu {
        display: none;
    }
}

.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%;
    -o-object-fit: cover;
    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-wrapper {
    background-color: var(--white);
}

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

.body-wrapper.page-inner {
    background-color: #EEF0F6;
}

.img-reveal-anim {
    visibility: hidden;
    overflow: hidden;
}

.img-reveal-anim img {
    -o-object-fit: cover;
    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;
    -webkit-text-decoration-skip-ink: none;
    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 */

.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #201F50;
    z-index: 99999999999999;
}

.loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: #000;
}

.loader-wrap .loader-wrap-heading .load-text {
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    z-index: 20;
}

@media only screen and (max-width: 767px) {
    .loader-wrap .loader-wrap-heading .load-text {
        font-size: 50px;
    }
}

.load-text span {
    animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
    animation-delay: 0s;
}

.load-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* 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: 50px;
    width: 50px;
    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);
    background-color: var(--theme);
}

.progress-wrap::after {
    position: absolute;
    content: "\f062";
    font: var(--fa-font-solid);
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: var(--white);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    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(--theme);
    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: 19px 34px;
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
    border-radius: 100px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    white-space: nowrap;
}

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

@media only screen and (max-width: 767px) {
    .rr-btn {
        padding: 16px 29px;
        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;
    gap: 10px;
    align-items: center;
}

.rr-btn .btn-wrap .text-one {
    position: relative;
    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%;
    color: var(--white);
    transition: all 0.5s;
}

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

.rr-btn.btn-white {
    border-color: transparent;
    background-color: var(--white);
}

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

.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.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-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);
    -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
    mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
    -webkit-mask-size: 2300% 100%;
    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%;
}

.circle-text {
    width: 140px;
    height: 140px;
    position: relative;
    border-radius: 100px;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

@media only screen and (max-width: 991px) {
    .circle-text {
        width: 120px;
        height: 120px;
    }
}

.circle-text .text {
    width: 100%;
    height: 100%;
    padding: 10px;
    position: absolute;
    animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

.circle-text .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* play-btn style */

.play-btn {
    position: relative;
}

.play-btn:after,
.play-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid var(--theme);
    animation-name: popupBtn;
    animation-duration: 1.8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.play-btn:before {
    animation-delay: 0.8s;
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* 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: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;
    border-radius: 15px;
}

.main-menu ul.dp-menu.column-2 {
    -moz-column-count: 2;
    column-count: 2;
    width: 480px;
    -moz-column-gap: 0;
    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: 7px;
    font-weight: 700;
    font-size: 16px;
}

.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);
    -moz-column-gap: 50px;
    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 {
        -moz-column-gap: 30px;
        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 {
    -moz-column-count: 2;
    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 {
    -moz-column-count: 2;
    column-count: 2;
    position: relative;
    padding: 20px 0;
    -moz-column-gap: 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);
    -moz-column-gap: 50px;
    column-gap: 50px;
}

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

.main-menu .span-first-item ul li:first-child {
    grid-column: 1/-1;
    -moz-column-span: all;
    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;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    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;
        -o-object-fit: cover;
        object-fit: cover;
        margin-top: 45%;
    }
}

/* header css */

/* header area style  */

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

.header-area .header-top {
    background-color: #222056;
}

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

.header-area .header-top-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-area .header-note .text {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
}

.header-area .header-note .title {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    margin-right: 5px;
    display: inline-block;
}

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

@media only screen and (max-width: 991px) {
    .header-area .header-social {
        display: none;
    }
}

.header-area .header-social a {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-area .header-social a:hover {
    color: var(--white-2);
}

.header-area .header-main {
    background-color: var(--white);
}

.header-area .header-main.rr-bg-gray {
    background-color: #EEECF9;
}

.header-area .header-main-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    height: 110px;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .header-area .header-main-inner {
        height: 90px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area .header-main-inner {
        height: 80px;
    }
}

.header-area .header-main-bg {
    position: absolute;
    height: 100%;
    width: -moz-max-content;
    width: max-content;
    top: 0;
    right: calc(100% - 300px);
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .header-area .header-main-bg {
        right: calc(100% - 200px);
    }
}

.header-area .header-main-bg img {
    height: 100%;
}

.header-area .header-main-bg:before {
    position: absolute;
    content: "";
    width: 5000px;
    height: 100%;
    top: 0;
    right: 100%;
    background-color: var(--theme);
}

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

.header-area .header-logo {
    margin-right: auto;
}

.header-area .header-logo img {
    width: 187px;
}

@media only screen and (max-width: 1199px) {
    .header-area .header-logo img {
        width: 157px;
    }
}

@media only screen and (max-width: 767px) {
    .header-area .header-logo img {
        width: 127px;
    }
}

.header-area .header-nav {
    margin-right: 25px;
}

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

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

.header-area .main-menu li a {
    font-size: 16px;
    font-weight: 600;
    padding: 7px 14px;
    background-color: transparent;
    border-radius: 30px;
}

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

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

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

.header-area .call-box {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
    padding: 12px 38px;
    background-color: var(--theme);
    border-radius: 50px;
}

.header-area .call-box a:hover {
    color: var(--white-2);
}

.header-area .side-toggle {
    width: 50px;
    height: 50px;
    background-color: #F4F0FE;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--action);
    transition: all 0.3s;
}

.header-area .side-toggle:hover {
    background-color: var(--action);
    color: var(--white);
}

.header-area .side-toggle.rr-bg-white {
    background-color: var(--white);
}

.header-area .side-toggle.rr-bg-white:hover {
    background-color: var(--action);
    color: var(--white);
}

/* header-2 area style  */

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

.header-2-area .header-2-top {
    background-color: var(--theme);
    border-radius: 5px;
    margin: 5px;
}

@media only screen and (max-width: 767px) {
    .header-2-area .header-2-top {
        display: none;
    }
}

.header-2-area .header-2-top-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

@media only screen and (max-width: 991px) {
    .header-2-area .header-2-top-inner {
        justify-content: center;
    }
}

.header-2-area .header-2-contact-meta {
    display: flex;
    align-items: center;
}

.header-2-area .header-2-contact-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.header-2-area .header-2-contact-item .icon {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .header-2-area .header-2-contact-item .icon {
        font-size: 14px;
    }
}

.header-2-area .header-2-contact-item .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .header-2-area .header-2-contact-item .text {
        font-size: 14px;
    }
}

.header-2-area .header-2-contact-item .text a:hover {
    color: var(--white-2);
}

.header-2-area .header-2-contact-item:not(:first-child) {
    border-left: 1px solid #926FFD;
    padding-left: 30px;
    margin-left: 30px;
}

@media only screen and (max-width: 1199px) {
    .header-2-area .header-2-contact-item:not(:first-child) {
        padding-left: 20px;
        margin-left: 20px;
    }
}

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

@media only screen and (max-width: 991px) {
    .header-2-area .header-2-social {
        display: none;
    }
}

.header-2-area .header-2-social .text {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .header-2-area .header-2-social .text {
        font-size: 14px;
    }
}

.header-2-area .header-2-social a {
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-2-area .header-2-social a:hover {
    color: var(--white-2);
}

.header-2-area .header-2-main {
    background-color: #E3E3F8;
    border-radius: 5px;
    margin: 5px;
}

.header-2-area .header-2-main-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    height: 100px;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .header-2-area .header-2-main-inner {
        height: 90px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-2-area .header-2-main-inner {
        height: 80px;
    }
}

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

.header-2-area .header-2-logo {
    margin-right: auto;
}

.header-2-area .header-2-logo img {
    width: 154px;
}

@media only screen and (max-width: 1199px) {
    .header-2-area .header-2-logo img {
        width: 134px;
    }
}

@media only screen and (max-width: 767px) {
    .header-2-area .header-2-logo img {
        width: 124px;
    }
}

.header-2-area .header-2-nav {
    margin-right: 25px;
}

.header-2-area .main-menu>ul {
    display: flex;
    gap: 22px;
}

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

.header-2-area .main-menu li a {
    font-size: 16px;
    font-weight: 600;
    padding: 7px 14px;
    background-color: transparent;
    border-radius: 30px;
}

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

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

@media only screen and (max-width: 767px) {
    .header-2-area .header-2-cta {
        display: none;
    }
}

.header-2-area .call-box {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
    padding: 12px 38px;
    background-color: var(--theme);
    border-radius: 50px;
}

.header-2-area .call-box a:hover {
    color: var(--white-2);
}

.header-2-area .side-toggle {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--action);
    transition: all 0.3s;
}

.header-2-area .side-toggle:hover {
    background-color: var(--action);
    color: var(--white);
}

/* header-3 area style  */

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

.header-3-area .header-3-top {
    background-color: var(--theme);
    border-radius: 0 0 30px 30px;
}

@media only screen and (max-width: 1399px) {
    .header-3-area .header-3-top {
        border-radius: 0;
    }
}

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

.header-3-area .header-3-top-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-3-area .header-3-note .text {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
}

.header-3-area .header-3-note .title {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    margin-right: 5px;
    display: inline-block;
}

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

@media only screen and (max-width: 991px) {
    .header-3-area .header-3-social {
        display: none;
    }
}

.header-3-area .header-3-social a {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-3-area .header-3-social a:hover {
    color: var(--white-2);
}

.header-3-area .header-3-main {
    background-color: #FFFFFF;
}

.header-3-area .header-3-main-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    height: 110px;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .header-3-area .header-3-main-inner {
        height: 90px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-3-area .header-3-main-inner {
        height: 80px;
    }
}

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

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

.header-3-area .header-3-logo img {
    width: 187px;
}

@media only screen and (max-width: 1199px) {
    .header-3-area .header-3-logo img {
        width: 157px;
    }
}

@media only screen and (max-width: 767px) {
    .header-3-area .header-3-logo img {
        width: 127px;
    }
}

.header-3-area .header-3-nav {
    margin-right: 25px;
}

.header-3-area .main-menu>ul {
    display: flex;
    gap: 22px;
}

.header-3-area .main-menu>ul>li:hover>a {
    color: var(--theme);
    background-color: rgba(100, 33, 255, 0.1);
}

.header-3-area .main-menu li a {
    font-size: 16px;
    font-weight: 600;
    padding: 7px 14px;
    background-color: transparent;
    border-radius: 30px;
}

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

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

@media only screen and (max-width: 767px) {
    .header-3-area .header-3-cta {
        display: none;
    }
}

.header-3-area .call-box {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
    padding: 12px 38px;
    background-color: var(--theme);
    border-radius: 50px;
}

.header-3-area .call-box a:hover {
    color: var(--white-2);
}

.header-3-area .side-toggle {
    width: 50px;
    height: 50px;
    background-color: rgba(100, 33, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--action);
    transition: all 0.3s;
}

.header-3-area .side-toggle:hover {
    background-color: var(--action);
    color: var(--white);
}

/* footer css */

/* footer area style  */

.footer-area {
    background-color: #12112A;
}

.footer-newsletter-box {
    border-top: 1px solid #201F3D;
    border-bottom: 1px solid #201F3D;
}

.footer-newsletter-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    display: grid;
    gap: 30px 60px;
    grid-template-columns: 1fr 520px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .footer-newsletter-wrapper {
        grid-template-columns: 1fr 460px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-newsletter-wrapper {
        grid-template-columns: 1fr;
    }
}

.footer-newsletter-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .footer-newsletter-content {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .footer-newsletter-content {
        flex-direction: column;
    }
}

.footer-newsletter-content .icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    background-color: var(--theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .footer-newsletter-content .icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
        padding: 20px;
    }
}

.footer-newsletter-content .content {
    margin-top: 1px;
}

.footer-newsletter-content .title {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    color: var(--white);
}

@media only screen and (max-width: 1199px) {
    .footer-newsletter-content .title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-newsletter-content .title {
        font-size: 20px;
    }
}

.footer-newsletter-content .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #A9A9AA;
    margin-top: 14px;
}

.footer-subscribe-form {
    width: 100%;
    background-color: var(--white);
    border-radius: 100px;
    padding: 5px 5px 5px 30px;
}

@media (max-width: 575px) {
    .footer-subscribe-form {
        padding: 15px 15px 10px 15px;
        border-radius: 10px;
    }
}

.footer-subscribe-form .input-field {
    display: grid;
    gap: 20px 10px;
    grid-template-columns: 1fr auto;
    align-items: center;
}

@media (max-width: 575px) {
    .footer-subscribe-form .input-field {
        grid-template-columns: 1fr;
    }
}

.footer-subscribe-form .input-field input {
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
    width: 100%;
}

.footer-subscribe-form .input-field input::-moz-placeholder {
    color: var(--black);
}

.footer-subscribe-form .input-field input::placeholder {
    color: var(--black);
}

.footer-subscribe-form .input-field .rr-btn {
    padding: 16px 34px;
}

.footer-widget-wrapper {
    padding-top: 120px;
    padding-bottom: 80px;
    display: grid;
    gap: 50px 60px;
    grid-template-columns: 287px 244px auto auto;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .footer-widget-wrapper {
        grid-template-columns: 1fr 1fr;
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widget-wrapper {
        grid-template-columns: 1fr;
    }
}

.footer-widget-wrapper>* {
    position: relative;
}

.footer-widget-wrapper>*:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #201F3D;
    top: 0;
    left: -60px;
}

@media only screen and (max-width: 1399px) {
    .footer-widget-wrapper>*:before {
        left: -55px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-widget-wrapper>*:before {
        display: none;
    }
}

.footer-widget-wrapper>*:first-child:before {
    display: none;
}

.footer-logo img {
    width: 161px;
}

.footer-text {
    margin-top: 23px;
}

.footer-text .text {
    font-weight: 500;
    color: #9DA0AD;
}

.footer-social {
    margin-top: 23px;
    display: flex;
    gap: 7px;
    align-items: center;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background-color: #1E1C40;
    border-radius: 50%;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-social a:hover {
    color: var(--white);
    background-color: var(--theme);
}

.footer-widget-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--white);
}

.footer-meta-list {
    margin-top: 22px;
    display: grid;
    gap: 17px;
}

.footer-meta-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #9DA0AD;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-meta-list li .icon {
    color: var(--theme);
    width: 18px;
    line-height: 26px;
}

.footer-meta-list li a:hover {
    color: var(--white);
}

.footer-nav-list {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.footer-nav-list li {
    list-style: none;
}

.footer-nav-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: flex;
    gap: 13px;
    align-items: center;
}

.footer-nav-list li a:hover {
    color: var(--white-2);
}

.footer-nav-list li a i {
    color: var(--theme);
    font-size: 18px;
}

.footer-blog-wrapper-box {
    margin-top: 30px;
}

.footer-blog-wrapper {
    display: grid;
    gap: 20px;
}

.footer-blog {
    display: grid;
    gap: 20px;
    grid-template-columns: 80px 1fr;
    align-items: flex-start;
}

.footer-blog .thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-blog .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-blog .content {
    margin-top: 3px;
}

.footer-blog .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--white);
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-blog .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: var(--white);
    margin-top: 6px;
}

.footer-blog .title a:hover {
    color: var(--white-2);
}

.footer-blog .blog-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--theme);
    display: inline-flex;
    gap: 7px;
    margin-top: 8px;
}

.copyright-area-inner {
    display: grid;
    gap: 10px 60px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 27px;
    padding-bottom: 27px;
}

@media only screen and (max-width: 991px) {
    .copyright-area-inner {
        grid-template-columns: auto;
        justify-content: center;
    }
}

.copyright-text .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
}

.copyright-text .text a:hover {
    color: var(--white-2);
}

.copyright-link {
    display: flex;
    gap: 5px 30px;
    flex-wrap: wrap;
}

.copyright-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.copyright-link a:hover {
    color: var(--white-2);
}

/* footer-2 area style  */

.footer-2-area {
    background-color: #0E143D;
    position: relative;
    z-index: 1;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-2-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer-2-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(7, 11, 42, 0.71);
}

.footer-2-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-2-title {
    font-weight: 600;
    font-size: 150px;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white);
    -webkit-text-stroke: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 23px;
    margin-bottom: 15px;
}

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

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

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

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

@media (max-width: 575px) {
    .footer-2-title {
        font-size: 40px;
        letter-spacing: 0.1em;
        -webkit-text-stroke: 1px;
    }
}

.footer-2-widget-wrapper {
    display: grid;
    gap: 50px 60px;
    grid-template-columns: 358px auto 244px;
    justify-content: space-between;
    background-color: #0C173D;
    border: 1px solid #192346;
    border-radius: 20px 20px 0 0;
    padding: 80px 120px 72px 80px;
}

@media only screen and (max-width: 1199px) {
    .footer-2-widget-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 30px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-2-widget-wrapper {
        grid-template-columns: 1fr;
        padding: 20px 20px;
    }
}

.footer-2-widget-wrapper>* {
    position: relative;
}

.footer-2-widget-wrapper>*:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #2B3369;
    top: 0;
    left: -104px;
}

@media only screen and (max-width: 1399px) {
    .footer-2-widget-wrapper>*:before {
        left: -90px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-2-widget-wrapper>*:before {
        display: none;
    }
}

.footer-2-widget-wrapper>*:first-child:before {
    display: none;
}

.footer-2-logo img {
    width: 182px;
}

@media only screen and (max-width: 1199px) {
    .footer-2-logo img {
        width: 152px;
    }
}

.footer-2-text {
    margin-top: 28px;
}

.footer-2-text .text {
    font-weight: 500;
    color: #A4A7BF;
}

.footer-2-social {
    margin-top: 24px;
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-2-social a {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    color: var(--theme);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-2-social a:hover {
    color: var(--white);
    background-color: var(--theme);
}

.footer-2-widget-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--white);
}

.footer-2-meta-list {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.footer-2-meta-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #A4A7BF;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-2-meta-list li .icon {
    color: var(--theme);
    width: 18px;
    margin-top: -1px;
}

.footer-2-meta-list li a:hover {
    color: var(--white);
}

.footer-2-nav-list {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.footer-2-nav-list li {
    list-style: none;
}

.footer-2-nav-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #A4A7BF;
    display: flex;
    gap: 13px;
    align-items: center;
}

.footer-2-nav-list li a:hover {
    color: var(--white);
}

.footer-2-nav-list li a i {
    color: var(--theme);
    font-size: 16px;
}

.copyright-2-area-inner {
    display: grid;
    gap: 10px 60px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px 14px;
    background-color: var(--theme);
    border-radius: 0 0 20px 20px;
}

@media only screen and (max-width: 991px) {
    .copyright-2-area-inner {
        grid-template-columns: auto;
        justify-content: center;
    }
}

.copyright-2-text .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
}

.copyright-2-text .text a:hover {
    color: var(--white-2);
}

.copyright-2-link {
    display: flex;
    gap: 5px 30px;
    flex-wrap: wrap;
}

.copyright-2-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.copyright-2-link a:hover {
    color: var(--white-2);
}

/* footer-3 area style  */

.footer-3-area {
    background-color: #12112A;
}

.footer-3-newsletter-wrapper {
    padding-top: 78px;
    padding-bottom: 80px;
    display: grid;
    gap: 30px 60px;
    grid-template-columns: 1fr 520px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .footer-3-newsletter-wrapper {
        grid-template-columns: 1fr 460px;
        padding-top: 48px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-3-newsletter-wrapper {
        grid-template-columns: 1fr;
    }
}

.footer-3-newsletter-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .footer-3-newsletter-content {
        gap: 20px;
    }
}

.footer-3-newsletter-content .icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    background-color: var(--theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .footer-3-newsletter-content .icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
        padding: 20px;
    }
}

.footer-3-newsletter-content .content {
    margin-top: 1px;
}

.footer-3-newsletter-content .title {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    color: var(--white);
}

@media only screen and (max-width: 1199px) {
    .footer-3-newsletter-content .title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-3-newsletter-content .title {
        font-size: 20px;
    }
}

.footer-3-newsletter-content .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #A9A9AA;
    margin-top: 14px;
}

.footer-3-subscribe-form {
    width: 100%;
    background-color: var(--white);
    border-radius: 100px;
    padding: 5px 5px 5px 30px;
}

.footer-3-subscribe-form .input-field {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-3-subscribe-form .input-field input {
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
    width: 100%;
}

.footer-3-subscribe-form .input-field input::-moz-placeholder {
    color: var(--black);
}

.footer-3-subscribe-form .input-field input::placeholder {
    color: var(--black);
}

.footer-3-subscribe-form .input-field .rr-btn {
    padding: 16px 34px;
}

.footer-3-widget-wrapper-box {
    border-top: 1px solid #201F3D;
    border-bottom: 1px solid #201F3D;
}

.footer-3-widget-wrapper {
    display: grid;
    gap: 50px 60px;
    grid-template-columns: 287px 244px auto auto;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .footer-3-widget-wrapper {
        grid-template-columns: 1fr 1fr;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-3-widget-wrapper {
        grid-template-columns: 1fr;
    }
}

.footer-3-widget-wrapper>* {
    position: relative;
}

.footer-3-widget-wrapper>*:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #201F3D;
    top: 0;
    left: -60px;
}

@media only screen and (max-width: 1399px) {
    .footer-3-widget-wrapper>*:before {
        left: -55px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-3-widget-wrapper>*:before {
        display: none;
    }
}

.footer-3-widget-wrapper>*:first-child:before {
    display: none;
}

.footer-3-widget-box {
    padding-top: 75px;
    padding-bottom: 75px;
}

@media only screen and (max-width: 1199px) {
    .footer-3-widget-box {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.footer-3-logo img {
    width: 161px;
}

.footer-3-text {
    margin-top: 23px;
}

.footer-3-text .text {
    font-weight: 500;
    color: #9DA0AD;
}

.footer-3-social {
    margin-top: 23px;
    display: flex;
    gap: 7px;
    align-items: center;
}

.footer-3-social a {
    width: 50px;
    height: 50px;
    background-color: #1E1C40;
    border-radius: 50%;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-3-social a:hover {
    color: #1E1C40;
    background-color: var(--white);
}

.footer-3-widget-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--white);
}

.footer-3-meta-list {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.footer-3-meta-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #9DA0AD;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-3-meta-list li .icon {
    color: var(--theme);
    width: 18px;
    margin-top: -1px;
}

.footer-3-meta-list li a:hover {
    color: var(--white);
}

.footer-3-nav-list {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.footer-3-nav-list li {
    list-style: none;
}

.footer-3-nav-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: flex;
    gap: 13px;
    align-items: center;
}

.footer-3-nav-list li a:hover {
    color: var(--white-2);
}

.footer-3-nav-list li a i {
    color: var(--theme);
    font-size: 18px;
}

.footer-3-blog-wrapper-box {
    margin-top: 30px;
}

.footer-3-blog-wrapper {
    display: grid;
    gap: 20px;
}

.footer-3-blog {
    display: grid;
    gap: 20px;
    grid-template-columns: 80px 1fr;
    align-items: flex-start;
}

.footer-3-blog .thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-3-blog .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-3-blog .content {
    margin-top: 3px;
}

.footer-3-blog .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--white);
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-3-blog .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: var(--white);
    margin-top: 6px;
}

.footer-3-blog .title a:hover {
    color: var(--white-2);
}

.footer-3-blog .blog-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--theme);
    display: inline-flex;
    gap: 7px;
    margin-top: 8px;
}

.copyright-3-area-inner {
    display: grid;
    gap: 10px 60px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 27px;
    padding-bottom: 27px;
}

@media only screen and (max-width: 991px) {
    .copyright-3-area-inner {
        grid-template-columns: auto;
        justify-content: center;
    }
}

.copyright-3-text .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
}

.copyright-3-text .text a:hover {
    color: var(--white-2);
}

.copyright-3-link {
    display: flex;
    gap: 5px 30px;
    flex-wrap: wrap;
}

.copyright-3-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.copyright-3-link a:hover {
    color: var(--white-2);
}

/* hero css */

/* hero area style  */

.hero-area {
    margin-top: 155px;
    padding: 30px 30px 0;
}

@media only screen and (max-width: 1919px) {
    .hero-area {
        margin-top: 135px;
        padding: 20px 20px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-area {
        margin-top: 125px;
        padding: 10px 10px 0;
    }
}

@media (max-width: 575px) {
    .hero-area {
        margin-top: 80px;
    }
}

.hero-area-inner {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .hero-area-inner .slide-button-bg {
        display: none;
    }
}

.hero-area-inner .left-btn-bg {
    position: absolute;
    width: 88px;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    max-width: -moz-max-content;
    max-width: max-content;
    z-index: 2;
}

.hero-area-inner .right-btn-bg {
    position: absolute;
    width: 88px;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    max-width: -moz-max-content;
    max-width: max-content;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    .hero-nav {
        position: absolute;
        bottom: 10px;
        z-index: 2;
        display: flex;
        gap: 10px;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }
}

.hero-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    background: var(--theme);
    box-shadow: none;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .hero-nav-btn {
        width: 50px;
        height: 50px;
    }
}

.hero-nav-btn:hover {
    background-color: #EBEBF5;
    color: var(--theme);
}

.slider-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    z-index: 3;
}

@media only screen and (max-width: 991px) {
    .slider-button-prev {
        position: static;
        transform: none;
    }
}

.slider-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    z-index: 3;
}

@media only screen and (max-width: 991px) {
    .slider-button-next {
        position: static;
        transform: none;
    }
}

.swiper-slide-active .hero-slide-bg img {
    transform: scale(1.12);
}

.hero-slide {
    position: relative;
    z-index: 3;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1919px) {
    .hero-slide {
        height: 650px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-slide {
        height: 580px;
    }
}

.hero-slide-bg {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-slide-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(34, 32, 86, 0.3984) 0%, rgba(5, 3, 47, 0.83) 100%);
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
    transition: all 8s ease-out 0s;
}

.hero-slide-tag {
    font-family: var(--font_generalsanssemibold);
    font-weight: 600;
    font-size: 128px;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    position: absolute;
    bottom: 148px;
    right: 312px;
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    z-index: -1;
}

@media only screen and (max-width: 1919px) {
    .hero-slide-tag {
        font-size: 88px;
        bottom: 118px;
        right: 222px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-slide-tag {
        font-size: 68px;
        bottom: 98px;
        right: 202px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slide-tag {
        font-size: 48px;
        bottom: 48px;
        right: auto;
        left: 10px;
    }
}

@media (max-width: 575px) {
    .hero-slide-tag {
        display: none;
    }
}

.hero-content {
    max-width: 750px;
    margin-left: auto;
}

@media only screen and (max-width: 1919px) {
    .hero-content {
        max-width: 670px;
        margin-right: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-content {
        max-width: 540px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content {
        margin-right: 0;
    }
}

.hero-content .hero-subtitle {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
}

.hero-content .title-wrapper {
    margin-top: 12px;
}

.hero-content .hero-title {
    font-family: var(--font_generalsanssemibold);
    font-weight: 600;
    font-size: 66px;
    line-height: 1.18;
    color: var(--white);
}

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

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

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

@media (max-width: 575px) {
    .hero-content .hero-title {
        font-size: 34px;
    }
}

.hero-content .hero-title span {
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-content .text-wrapper {
    margin-top: 17px;
}

.hero-content .text {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

@media only screen and (max-width: 1199px) {
    .hero-content .text {
        font-size: 16px;
        line-height: 26px;
    }
}

.hero-content .btn-wrapper {
    margin-top: 43px;
}

/* hero 2 area style  */

.hero-2-area {
    margin-top: 155px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .hero-2-area {
        margin-top: 145px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-2-area {
        margin-top: 135px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-2-area {
        margin-top: 90px;
    }
}

.hero-2-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-2-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-2-inner {
    padding-top: 165px;
    padding-bottom: 204px;
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 660px auto;
    align-items: center;
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .hero-2-inner {
        padding-top: 135px;
        grid-template-columns: 610px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-2-inner {
        padding-top: 105px;
        padding-bottom: 164px;
        grid-template-columns: 470px auto;
    }
}

@media only screen and (max-width: 991px) {
    .hero-2-inner {
        padding-top: 85px;
        padding-bottom: 114px;
        grid-template-columns: auto;
    }
}

.hero-2-content .text {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.42;
    color: var(--white);
}

@media only screen and (max-width: 1919px) {
    .hero-2-content .text {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-2-content .text {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-2-content .text {
        font-size: 16px;
    }
}

.hero-2-content .btn-wrapper {
    margin-top: 53px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-2-content .text-wrapper {
    margin-top: 28px;
}

.hero-2-title {
    font-weight: 600;
    font-size: 56px;
    line-height: 1.18;
    color: var(--white);
}

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

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

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

.hero2-shape-1 {
    position: absolute;
    width: 23px;
    height: 23px;
    content: "";
    background-color: var(--theme);
    border-radius: 50%;
    right: calc(100% + 69px);
    top: 79px;
    animation: hero2-shape-1 5s infinite;
}

@keyframes hero2-shape-1 {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero2-shape-2 {
    position: absolute;
    width: 49px;
    height: 49px;
    content: "";
    background-color: rgba(100, 33, 255, 0.28);
    border-radius: 50%;
    right: calc(100% + 105px);
    bottom: 127px;
    animation: t-SlideBottom 5s infinite;
}

.hero2-shape-3 {
    position: absolute;
    width: 10px;
    height: 10px;
    content: "";
    background-color: var(--white);
    border-radius: 50%;
    left: 712px;
    top: 166px;
    animation: hero2-shape-3 7s infinite;
}

@keyframes hero2-shape-3 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(70px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-2-thumb-wrapper {
    width: 672px;
    aspect-ratio: 100/84;
    overflow: hidden;
    position: absolute;
    top: 90px;
    right: -60px;
}

@media only screen and (max-width: 1919px) {
    .hero-2-thumb-wrapper {
        right: 0;
        width: 622px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-2-thumb-wrapper {
        width: 502px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-2-thumb-wrapper {
        position: relative;
        top: 0;
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-2-thumb-wrapper {
        width: 100%;
    }
}

.hero-2-thumb-wrapper .thumb-shape-1 {
    position: absolute;
    right: 0;
    top: 13px;
    width: 93%;
}

.hero-2-thumb-wrapper .thumb-shape-2 {
    position: absolute;
    right: 26px;
    top: 0;
    width: 84%;
}

.hero-2-thumb-wrapper .thumb-shape-3 {
    position: absolute;
    left: 0;
    top: 37px;
    width: 90%;
    aspect-ratio: 100/80;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-mask-image: url(../imgs/shape/shape-9.webp);
    mask-image: url(../imgs/shape/shape-9.webp);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* hero-3 area style  */

.hero-3-area {
    margin-top: 156px;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 1919px) {
    .hero-3-area {
        margin-top: 136px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-3-area {
        margin-top: 126px;
    }
}

@media (max-width: 575px) {
    .hero-3-area {
        margin-top: 80px;
    }
}

.hero-3-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-3-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 1px);
    background: linear-gradient(90deg, rgba(34, 32, 86, 0.3984) 0%, rgba(5, 3, 47, 0.83) 100%);
    top: 0;
    left: 0;
    display: none;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .hero-3-bg:before {
        display: block;
    }
}

.hero-3-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-3-inner {
    display: grid;
    gap: 0px 60px;
    grid-template-columns: 1fr 425px;
    align-items: flex-end;
}

@media only screen and (max-width: 991px) {
    .hero-3-inner {
        grid-template-columns: 1fr;
    }
}

.hero-3-content {
    max-width: 705px;
    margin-left: -70px;
    position: relative;
    z-index: 1;
    padding: 227px 0;
}

@media only screen and (max-width: 1919px) {
    .hero-3-content {
        padding: 127px 0;
        margin-left: 0;
        max-width: 605px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-3-content {
        max-width: 455px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-3-content {
        padding: 87px 0;
    }
}

.hero-3-content:before {
    position: absolute;
    content: "";
    width: 3000px;
    height: calc(100% + 1px);
    background-color: rgba(255, 255, 255, 0.02);
    right: -75px;
    top: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

@media only screen and (max-width: 991px) {
    .hero-3-content:before {
        display: none;
    }
}

.hero-3-content .title-wrapper {
    margin-top: 26px;
}

.hero-3-content .hero-3-title {
    font-weight: 600;
    font-size: 72px;
    line-height: 1.11;
    color: var(--white);
}

@media only screen and (max-width: 1919px) {
    .hero-3-content .hero-3-title {
        font-size: 62px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-3-content .hero-3-title {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .hero-3-content .hero-3-title {
        font-size: 34px;
    }
}

.hero-3-content .hero-3-title span {
    font-family: var(--font_generalsansitalic);
    font-weight: 400;
    font-style: italic;
}

.hero-3-content .text-wrapper {
    margin-top: 31px;
}

.hero-3-content .text-wrapper .text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: var(--white);
}

@media only screen and (max-width: 1199px) {
    .hero-3-content .text-wrapper .text {
        font-size: 16px;
    }
}

.hero-3-content .btn-wrapper {
    margin-top: 56px;
    display: flex;
    gap: 15px 30px;
    flex-wrap: wrap;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .hero-3-content .btn-wrapper {
        margin-top: 36px;
    }
}

.hero-3-content .rr-btn {
    padding: 17px 45px;
}

.hero-3-content .mail-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
    display: inline-flex;
    gap: 15px;
    align-items: center;
}

.hero-3-content .mail-link:hover {
    color: var(--white-2);
}

.hero-3-content .mail-link i {
    width: 52px;
    height: 52px;
    background-color: var(--white);
    color: var(--theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-3-contact-wrap {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 6px 58px 0px rgba(0, 0, 0, 0.28);
    padding: 23px 30px 30px;
    margin-bottom: -28px;
}

@media only screen and (max-width: 1199px) {
    .appointment-3-contact-wrap {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .appointment-3-contact-wrap {
        padding: 18px 20px 20px;
    }
}

.appointment-3-contact-wrap form {
    border-top: 1px solid #EFEFEF;
    margin-top: 13px;
    padding-top: 27px;
}

.appointment-3-contact-wrap form .submit-btn {
    margin-top: 20px;
}

.appointment-3-contact-wrap form .rr-btn {
    padding: 14px 34px;
    width: 100%;
    border-radius: 5px;
}

.appointment-3-contact-wrap .contact-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
}

@media only screen and (max-width: 767px) {
    .appointment-3-contact-wrap .contact-title {
        font-size: 20px;
    }
}

.appointment-3-formwrap {
    display: grid;
    gap: 22px 0px;
}

.appointment-3-formfield label {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--black);
    margin-bottom: 11px;
}

.appointment-3-formfield input,
.appointment-3-formfield textarea {
    width: 100%;
    height: 50px;
    outline: none;
    background: #F6F6F7;
    border: none;
    border-radius: 5px;
    padding: 17px 20px;
    color: var(--black);
    transition: all 0.5s;
    font-size: 14px;
    line-height: 17px;
}

.appointment-3-formfield input:focus,
.appointment-3-formfield textarea:focus {
    background: #F6F6F7;
}

.appointment-3-formfield input::-moz-placeholder,
.appointment-3-formfield textarea::-moz-placeholder {
    color: var(--secondary);
}

.appointment-3-formfield input::placeholder,
.appointment-3-formfield textarea::placeholder {
    color: var(--secondary);
}

.appointment-3-formfield textarea {
    height: 95px;
    resize: none;
}

/* about css */

/* about area style  */

.about-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: auto 680px;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .about-area-inner {
        grid-template-columns: auto 520px;
    }
}

@media only screen and (max-width: 991px) {
    .about-area-inner {
        grid-template-columns: auto;
    }
}

.about-thumb-wrappper {
    padding-left: 80px;
    position: relative;
    max-width: 630px;
    width: 100%;
    aspect-ratio: 100/97;
}

@media only screen and (max-width: 1199px) {
    .about-thumb-wrappper {
        padding-left: 30px;
    }
}

.about-thumb-1 {
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
}

.about-thumb-1 img {
    border-radius: 20px;
}

.about-thumb-content-wrapper {
    position: absolute;
    left: 0;
    bottom: 70px;
}

@media only screen and (max-width: 1199px) {
    .about-thumb-content-wrapper {
        bottom: 30px;
        width: 44%;
    }
}

.about-thumb-info {
    width: 260px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 21px 38px 0px rgba(12, 10, 21, 0.15);
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 35px 40px 35px;
    margin-bottom: 16px;
}

@media only screen and (max-width: 1199px) {
    .about-thumb-info {
        padding: 20px 20px 20px;
        width: 180px;
    }
}

.about-thumb-info .number {
    font-weight: 700;
    font-size: 48px;
    line-height: 0.8;
    color: var(--theme);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .about-thumb-info .number {
        font-size: 38px;
    }
}

.about-thumb-info .text {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .about-thumb-info .text {
        font-size: 14px;
    }
}

.about-thumb-2 {
    width: 260px;
    border-radius: 15px;
    overflow: hidden;
    display: inline-block;
    border: 7px solid var(--white);
    box-shadow: 0px 10px 36px 2px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 1199px) {
    .about-thumb-2 {
        border-width: 3px;
        width: 180px;
    }
}

.about-content .title-wrapper {
    margin-top: 19px;
}

.about-content .text-wrapper {
    margin-top: 32px;
}

.about-content .features-wrapper {
    margin-top: 30px;
}

.about-content .feature-box {
    display: flex;
    gap: 25px;
}

@media (max-width: 575px) {
    .about-content .feature-box {
        flex-direction: column;
    }
}

.about-content .feature-box:not(:first-child) {
    margin-top: 32px;
}

.about-content .feature-box .thumb {
    width: 85px;
    min-width: 85px;
    height: 85px;
    background-color: #F1EDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 3px;
}

.about-content .feature-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .about-content .feature-box .title {
        font-size: 20px;
    }
}

.about-content .feature-box .text {
    margin-top: 12px;
}

.about-content .btn-wrapper {
    margin-top: 45px;
}

/* about-process-group style  */

.about-process-group {
    position: relative;
    z-index: 1;
}

.about-process-group-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #F5F6F6;
    z-index: -1;
}

.about-process-group-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-process-group-bg .area-shape-1 {
    width: 28%;
    position: absolute;
    top: 187px;
    left: -206px;
    z-index: -1;
}

.about-process-group-bg .area-shape-1 img {
    animation: t-SlideBottom 6s infinite;
}

.about-process-group-bg .area-shape-2 {
    width: 19%;
    position: absolute;
    bottom: 35px;
    right: -120px;
}

.about-process-group-bg .area-shape-2 img {
    animation: t-SlideBottom 6s infinite;
}

/* about-2 area style  */

.about-2-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: auto 675px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .about-2-area-inner {
        grid-template-columns: auto 525px;
    }
}

@media only screen and (max-width: 991px) {
    .about-2-area-inner {
        grid-template-columns: auto;
    }
}

.about-2-thumb-wrapper {
    width: 100%;
    max-width: 648px;
    position: relative;
}

.about-2-thumb-wrapper .main-img {
    margin-left: 75px;
    border-radius: 9px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .about-2-thumb-wrapper .main-img {
        margin-left: 25px;
    }
}

.about-2-thumb-wrapper .main-img img {
    width: 100%;
}

.about-2-thumb-wrapper .info-text {
    background-color: var(--theme);
    padding: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    bottom: 75px;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .about-2-thumb-wrapper .info-text {
        bottom: 25px;
        margin-right: 20px;
    }
}

.about-2-thumb-wrapper .info-text:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background-color: #360E94;
    top: 99%;
    left: 51px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

@media only screen and (max-width: 1199px) {
    .about-2-thumb-wrapper .info-text:before {
        left: 11px;
        width: 15px;
        height: 15px;
    }
}

.about-2-thumb-wrapper .info-text .number {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 44px;
    line-height: 0.91;
    color: var(--white);
}

.about-2-thumb-wrapper .info-text .text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-left: 15px;
    padding-left: 16px;
    position: relative;
}

.about-2-thumb-wrapper .info-text .text:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 30px;
    background-color: var(--white);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about-2-content .title-wrapper {
    margin-top: 19px;
}

.about-2-content .text-wrapper {
    margin-top: 31px;
}

.about-2-content .feature-list {
    margin-top: 24px;
}

.about-2-content .feature-list ul {
    -moz-column-count: 2;
    column-count: 2;
    display: inline-block;
    -moz-column-gap: 94px;
    column-gap: 94px;
}

@media only screen and (max-width: 1199px) {
    .about-2-content .feature-list ul {
        -moz-column-gap: 44px;
        column-gap: 44px;
    }
}

@media (max-width: 575px) {
    .about-2-content .feature-list ul {
        -moz-column-count: auto;
        column-count: auto;
    }
}

.about-2-content .feature-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: var(--primary);
    display: flex;
    gap: 15px;
    align-items: center;
}

.about-2-content .feature-list li i {
    color: var(--theme);
}

.about-2-content .btn-wrapper {
    margin-top: 28px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    display: flex;
    gap: 20px 47px;
    align-items: center;
}

@media (max-width: 575px) {
    .about-2-content .btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about-2-content .review-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-2-content .review-box .clients {
    display: flex;
}

.about-2-content .review-box .clients img {
    width: 70px;
    height: 70px;
    border: 5px solid var(--white);
    border-radius: 100%;
    box-shadow: 0px 9px 18px 0px rgba(24, 16, 16, 0.05);
}

.about-2-content .review-box .clients img:not(:first-child) {
    margin-left: -27px;
}

.about-2-content .review-box .number {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: var(--black);
    display: inline-block;
}

.about-2-content .review-box .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 5px;
    color: var(--theme);
}

/* about-3 area style  */

.about-3-inner {
    margin: 0 40px;
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .about-3-inner {
        margin: 0 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-3-inner {
        margin: 0 15px;
    }
}

.about-3-inner .btn-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) {
    .about-3-inner .btn-wrapper {
        bottom: 50%;
        transform: translate(-50%, 50%);
    }
}

.about-3-inner .btn-wrapper .wrapper-bg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 610px;
}

@media only screen and (max-width: 1919px) {
    .about-3-inner .btn-wrapper .wrapper-bg {
        max-width: 450px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-3-inner .btn-wrapper .wrapper-bg {
        max-width: 310px;
    }
}

@media only screen and (max-width: 767px) {
    .about-3-inner .btn-wrapper .wrapper-bg {
        display: none;
    }
}

.about-3-inner .circle-text {
    width: 170px;
    height: 170px;
}

@media only screen and (max-width: 1919px) {
    .about-3-inner .circle-text {
        width: 140px;
        height: 140px;
    }
}

@media only screen and (max-width: 1199px) {
    .about-3-inner .circle-text {
        width: 100px;
        height: 100px;
    }
}

.about-3-inner .circle-text .text {
    padding: 13px;
}

@media only screen and (max-width: 1199px) {
    .about-3-inner .circle-text .text {
        padding: 7px;
    }
}

.about-3-inner .main-img {
    border-radius: 26px;
    min-height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .about-3-inner .main-img {
        border-radius: 15px;
    }
}

/* service css */

/* service area style  */

.service-area {
    position: relative;
    z-index: 1;
}

.service-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-area-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(5, 3, 59, 0.85);
}

.service-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-header {
    text-align: center;
}

.service-header .title-wrapper {
    margin-top: 19px;
}

.service-header .section-title {
    color: var(--white);
}

.services-wrapper-box {
    margin-top: 58px;
}

.services-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 991px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .services-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.service-box {
    padding: 29px 29px 22px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(77.5px);
    backdrop-filter: blur(77.5px);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .service-box {
        padding: 19px 19px 22px;
    }
}

.service-box:hover:before {
    left: -63px;
    top: -81px;
    opacity: 1;
}

.service-box:before {
    position: absolute;
    content: "";
    width: 212px;
    height: 212px;
    left: -163px;
    top: -181px;
    background: #6421FF;
    filter: blur(125px);
    z-index: -1;
    transition: all 0.5s;
    opacity: 0;
}

.service-box .thumb {
    position: relative;
}

.service-box .thumb .main-img {
    width: 100%;
    border-radius: 150px 25px 150px 25px;
}

@media only screen and (max-width: 1199px) {
    .service-box .thumb .main-img {
        border-radius: 20px;
    }
}

.service-box .service-logo {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
}

@media only screen and (max-width: 1199px) {
    .service-box .service-logo {
        width: 60px;
        height: 60px;
        padding: 15px;
        top: 10px;
        left: 10px;
    }
}

.service-box .service-btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    position: absolute;
    background-color: var(--theme);
    padding: 15px 16px;
    right: 25px;
    bottom: 25px;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    width: 46px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .service-box .service-btn {
        right: 10px;
        bottom: 10px;
    }
}

.service-box .service-btn:hover {
    padding: 15px 25px;
    width: -moz-max-content;
    width: max-content;
    color: var(--white);
}

.service-box .service-btn:hover .btn-text {
    width: auto;
    padding-right: 4px;
    transform: translateX(0);
    opacity: 1;
}

.service-box .service-btn .btn-text {
    width: 0px;
    white-space: nowrap;
    transition: all 0.5s ease-in-out;
    transform: translateX(80%);
    opacity: 0;
}

.service-box .service-btn .btn-icon {
    transition: all 0.5s ease-in-out;
}

.service-box .content {
    margin-top: 24px;
}

.service-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    color: var(--white);
}

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

.service-box .title a:hover {
    color: var(--white-2);
}

.service-box .text {
    color: var(--white);
    margin-top: 8px;
}

/* service-2 area style  */

.service-2-header {
    text-align: center;
}

.service-2-header .title-wrapper {
    margin-top: 19px;
}

.services-2-wrapper-box {
    margin-top: 58px;
}

.services-2-wrapper {
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .service-2-nav {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .service-2-nav {
        margin-top: 30px;
    }
}

.service-2-nav-btn {
    width: 70px;
    height: 70px;
    border: 1px solid #EBECF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--theme);
    background: var(--white);
    box-shadow: 0px 18px 66px rgba(107, 111, 118, 0.15);
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .service-2-nav-btn {
        width: 50px;
        height: 50px;
    }
}

.service-2-nav-btn:hover {
    border-color: transparent;
    background-color: var(--theme);
    color: var(--white);
    box-shadow: none;
}

.service-2-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 40px);
}

@media only screen and (max-width: 1919px) {
    .service-2-button-prev {
        position: static;
        transform: none;
    }
}

.service-2-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 40px);
}

@media only screen and (max-width: 1919px) {
    .service-2-button-next {
        position: static;
        transform: none;
    }
}

.service-2-box {
    padding: 50px 35px 50px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .service-2-box {
        padding: 30px 20px 30px;
    }
}

.service-2-box:hover .service-logo {
    background-color: var(--theme);
}

.service-2-box:hover .service-logo img {
    filter: invert(0) brightness(10) contrast(10);
}

.service-2-box:hover .rr-btn {
    background-color: var(--theme);
}

.service-2-box:hover .rr-btn .text-one {
    color: var(--white);
}

.service-2-box .area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-2-box .area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-2-box .service-logo {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-inline: auto;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .service-2-box .service-logo {
        width: 60px;
        height: 60px;
        padding: 15px;
        top: 10px;
        left: 10px;
    }
}

.service-2-box .content {
    margin-top: 34px;
}

.service-2-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .service-2-box .title {
        font-size: 20px;
    }
}

.service-2-box .text {
    margin-top: 17px;
}

.service-2-box .rr-btn {
    margin-top: 23px;
    background-color: white;
    border-color: transparent;
    padding: 16px 33px;
}

.service-2-box .rr-btn .text-one {
    color: var(--black);
}

/* service-3 area style  */

.service-3-area {
    position: relative;
    z-index: 1;
}

.service-3-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.service-3-area-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(6, 4, 70, 0.76);
}

.service-3-area-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70px;
    background-color: var(--theme);
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 2px, 0 100%);
}

@media only screen and (max-width: 1919px) {
    .service-3-area-bg:after {
        height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .service-3-area-bg:after {
        height: 20px;
    }
}

.service-3-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-3-header {
    text-align: center;
}

.service-3-header .title-wrapper {
    margin-top: 19px;
}

.service-3-header .section-title {
    color: var(--white);
}

.service-3-header .text-wrapper {
    margin-top: 32px;
}

.service-3-header .text-wrapper .text {
    color: #A7ACB6;
    max-width: 712px;
    margin-inline: auto;
}

.services-3-wrapper-box {
    margin-top: 63px;
}

.services-3-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 991px) {
    .services-3-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .services-3-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.service-3-box {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .service-3-box {
        padding: 20px;
    }
}

.service-3-box:hover:before {
    opacity: 1;
    left: -63px;
    top: -81px;
}

.service-3-box:before {
    position: absolute;
    content: "";
    width: 212px;
    height: 212px;
    left: 113px;
    top: 131px;
    background-color: #6421FF;
    filter: blur(125px);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
}

.service-3-box .btn-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.service-3-box .service-3-logo {
    width: 100px;
    height: 100px;
    padding: 15px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

@media only screen and (max-width: 1199px) {
    .service-3-box .service-3-logo {
        width: 60px;
        height: 60px;
    }
}

.service-3-box .rr-btn {
    padding: 14px 25px;
    background-color: transparent;
    border-color: #42448C;
}

.service-3-box .rr-btn:hover .text-two {
    color: var(--white);
}

.service-3-box .rr-btn:before {
    background-color: var(--theme);
}

.service-3-box .title {
    font-family: var(--font_inter);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.21;
    color: var(--white);
    margin-top: 24px;
}

@media only screen and (max-width: 1199px) {
    .service-3-box .title {
        font-size: 20px;
    }
}

.service-3-box .title a:hover {
    color: var(--white-2);
}

.service-3-box .text {
    color: #D0D0D0;
    margin-top: 8px;
}

.service-3-box .thumb {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 23px;
}

.service-3-box .thumb img {
    width: 100%;
}

/* service-4 area style  */

.services-4-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .services-4-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .services-4-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.service-4-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 34px 40px 40px;
}

@media only screen and (max-width: 1199px) {
    .service-4-box {
        padding: 24px 20px 30px;
    }
}

.service-4-box .title {
    font-family: var(--font_ineter);
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
}

@media only screen and (max-width: 1199px) {
    .service-4-box .title {
        font-size: 20px;
    }
}

.service-4-box .text {
    margin-top: 12px;
}

.service-4-box .thumb {
    margin-top: 23px;
}

.service-4-box .thumb img {
    width: 100%;
    min-height: 140px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.service-4-box .feature-list {
    margin-top: 20px;
}

.service-4-box .feature-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    display: flex;
    align-items: flex-start;
}

.service-4-box .feature-list li i {
    color: var(--theme);
    margin-right: 11px;
    line-height: inherit;
}

.service-4-box .btn-wrapper {
    margin-top: 21px;
}

.service-4-box .rr-btn {
    padding: 16px 25px;
}

/* service-details area style  */

.service-details-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 1fr 560px;
}

@media only screen and (max-width: 1199px) {
    .service-details-area-inner {
        grid-template-columns: 1fr 380px;
    }
}

@media only screen and (max-width: 991px) {
    .service-details-area-inner {
        grid-template-columns: 1fr;
    }
}

.service-details-content .title-wrapper {
    margin-top: 19px;
}

.service-details-content .text-wrapper {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.service-details-content .text-wrapper .text.highlight {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.66;
    color: var(--black);
}

.service-details-content .btn-wrapper {
    margin-top: 33px;
}

.service-details-thumb {
    border-radius: 20px;
    overflow: hidden;
}

.service-details-thumb img {
    width: 100%;
}

/* key-service area style  */

.key-service-area {
    position: relative;
    z-index: 1;
}

.key-service-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.key-service-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.key-service-content {
    background-color: var(--white);
    max-width: 680px;
    border-radius: 20px;
    padding: 33px 40px 29px;
}

@media only screen and (max-width: 1199px) {
    .key-service-content {
        padding: 23px 20px 19px;
    }
}

.key-service-content .key-service-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

@media only screen and (max-width: 1199px) {
    .key-service-content .key-service-title {
        font-size: 24px;
    }
}

.service-list {
    margin-top: 25px;
    border-top: 1px solid var(--border);
    padding-top: 26px;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

@media only screen and (max-width: 1199px) {
    .service-list {
        margin-top: 20px;
        padding-top: 21px;
    }
}

@media only screen and (max-width: 767px) {
    .service-list {
        -moz-column-count: unset;
        column-count: unset;
    }
}

.service-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--black);
    display: flex;
    gap: 10px;
}

.service-list li i {
    color: var(--theme);
    line-height: inherit;
}

/* project css */

/* project area style  */

.project-header {
    text-align: center;
}

.project-header .title-wrapper {
    margin-top: 19px;
}

.project-wrapper-box {
    margin-top: 55px;
}

.project-wrapper-box .project-tab .nav-tabs {
    justify-content: center;
    gap: 10px 40px;
    border: none;
}

.project-wrapper-box .project-tab .nav-link {
    padding: 0;
    border: none;
}

.project-wrapper-box .project-tab .nav-link.active .tab-btn {
    border-color: var(--primary);
}

.project-wrapper-box .project-tab .tab-btn {
    font-family: var(--font_inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--primary);
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    display: inline-block;
    transition: all 0.5s;
}

.project-wrapper-box .project-tab .tab-btn .number {
    color: var(--theme);
}

.project-wrapper-box .tab-content {
    margin-top: 41px;
}

.project-wrapper .swiper {
    overflow: visible;
}

.project-box {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.project-box:hover .content-wrapper {
    opacity: 1;
}

.project-box .thumb img {
    width: 100%;
}

.project-box .content-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    z-index: 1;
}

.project-box .content-wrapper:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #190F31;
    top: 0;
    left: 0;
    opacity: 88%;
    z-index: -1;
}

.project-box .title {
    font-family: var(--font_generalsanssemibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: var(--white);
}

.project-box .title a:hover {
    color: var(--white-2);
}

.project-box .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    max-width: 405px;
    margin-inline: auto;
    margin-top: 16px;
    color: var(--white);
}

.project-box .rr-btn {
    padding: 16px 37px;
    margin-top: 33px;
    margin-inline: auto;
}

/* project-2 area style  */

.project-2-area {
    background-color: #EFF1F9;
    margin: 0 30px;
    border: 10px solid var(--white);
    border-radius: 20px;
}

@media only screen and (max-width: 1399px) {
    .project-2-area {
        margin: 0 15px;
        border-width: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .project-2-area {
        border-width: 2px;
    }
}

.project-2-header {
    text-align: center;
}

.project-2-header .title-wrapper {
    margin-top: 19px;
}

.project-2-wrapper-box {
    margin-top: 59px;
}

.project-2-wrapper {
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .project-2-nav {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .project-2-nav {
        margin-top: 30px;
    }
}

.project-2-nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--theme);
    background: var(--white);
    box-shadow: 0px 18px 66px 3px rgba(107, 111, 118, 0.15);
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .project-2-nav-btn {
        width: 50px;
        height: 50px;
    }
}

.project-2-nav-btn:hover {
    border-color: transparent;
    background-color: var(--theme);
    color: var(--white);
    box-shadow: none;
}

.project-2-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 40px);
}

@media only screen and (max-width: 1919px) {
    .project-2-button-prev {
        position: static;
        transform: none;
    }
}

.project-2-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 40px);
}

@media only screen and (max-width: 1919px) {
    .project-2-button-next {
        position: static;
        transform: none;
    }
}

.project-2-box {
    background-color: var(--white);
    padding: 30px 30px 24px;
    border-radius: 15px;
    transition: all 0.5s;
}

@media only screen and (max-width: 1919px) {
    .project-2-box {
        padding: 20px 20px 19px;
    }
}

.project-2-box:hover {
    box-shadow: 0px 18px 28px 3px rgba(23, 27, 33, 0.08);
}

.project-2-box:hover .thumb:before {
    opacity: 1;
}

.project-2-box:hover .thumb .action-btn {
    opacity: 1;
    top: 50%;
}

.project-2-box .thumb {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.project-2-box .thumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    transition: all 0.5s;
}

.project-2-box .thumb img {
    width: 100%;
}

.project-2-box .thumb .action-btn {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    opacity: 0;
}

.project-2-box .circle-arrow-btn {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--theme);
    font-size: 18px;
}

.project-2-box .circle-arrow-btn:hover {
    color: var(--black);
}

.project-2-box .circle-arrow-btn:hover i {
    transform: rotate(0);
}

.project-2-box .circle-arrow-btn i {
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.project-2-box .content {
    margin-top: 27px;
}

.project-2-box .subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    color: var(--theme);
}

.project-2-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.33;
    margin-top: 6px;
}

@media (max-width: 575px) {
    .project-2-box .title {
        font-size: 20px;
    }
}

.project-2-box .text {
    margin-top: 13px;
}

/* project-3 area style  */

.project-3-wrapper {
    display: grid;
    gap: 24px 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .project-3-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.project-3-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.project-3-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 13, 0) 0%, #1B0A2C 73.94%);
    top: 0;
    left: 0;
    opacity: 0.75;
    z-index: 1;
}

.project-3-box:hover .area-bg {
    opacity: 1;
    top: 0;
    left: 0;
}

.project-3-box:hover .btn-wrapper {
    margin-bottom: 0;
}

.project-3-box .area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50px;
    left: -50px;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s;
}

.project-3-box .area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-3-box .thumb img {
    width: 100%;
}

.project-3-box .content-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 50px;
    display: flex;
    align-items: flex-end;
    z-index: 3;
}

@media only screen and (max-width: 1199px) {
    .project-3-box .content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .project-3-box .content-wrapper {
        padding: 20px;
    }
}

.project-3-box .content {
    overflow: hidden;
}

.project-3-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.42;
    color: var(--white);
    text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
    .project-3-box .title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .project-3-box .title {
        font-weight: 600;
        font-size: 16px;
    }
}

.project-3-box .title a:hover {
    color: var(--white-2);
}

.project-3-box .btn-wrapper {
    margin-bottom: -80px;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .project-3-box .btn-wrapper {
        margin-bottom: 0;
    }
}

.project-3-box .rr-btn {
    margin-top: 22px;
    padding: 16px 32px;
}

.project-3-footer {
    text-align: center;
    margin-top: 60px;
}

@media only screen and (max-width: 1919px) {
    .project-3-footer {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .project-3-footer {
        margin-top: 40px;
    }
}

.project-3-footer .pagination-wrapper {
    text-align: center;
}

.rr-pagination {
    display: inline-flex;
    gap: 10px;
}

.rr-pagination a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
}

.rr-pagination a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/* project-details area style  */

.project-details-thumb-wrapper {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 386px;
}

@media only screen and (max-width: 991px) {
    .project-details-thumb-wrapper {
        grid-template-columns: 1fr;
    }
}

.project-details-thumb {
    border-radius: 20px;
    overflow: hidden;
}

.project-details-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 200px;
}

.project-details-meta {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 40px 44px;
}

@media only screen and (max-width: 1199px) {
    .project-details-meta {
        padding: 20px 20px 24px;
    }
}

.project-details-meta .meta-block-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

.project-details-meta .meta-wrapper {
    margin-top: 29px;
}

.project-details-meta .meta-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.project-details-meta .meta-box:not(:first-child) {
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 21px;
}

.project-details-meta .meta-box .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background-color: rgba(100, 33, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--theme);
    margin-top: 3px;
}

.project-details-meta .meta-box .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.project-details-meta .meta-box .text {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
    margin-top: 5px;
}

.project-details-thumb-wrapper+.proeject-details-info {
    margin-top: 43px;
}

.proeject-details-info {
    margin-top: 56px;
}

.proeject-details-info .info-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

@media only screen and (max-width: 1199px) {
    .proeject-details-info .info-title {
        font-size: 24px;
    }
}

.proeject-details-info .text-wrapper {
    margin-top: 16px;
    display: grid;
    gap: 26px;
}

.proeject-details-info .gallery-wrapper {
    margin-top: 43px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 767px) {
    .proeject-details-info .gallery-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .proeject-details-info .gallery-wrapper {
        grid-template-columns: 1fr;
    }
}

.proeject-details-info .gallery-wrapper img {
    border-radius: 20px;
}

/* project-4 area style  */

.project-4-header {
    display: grid;
    gap: 25px 60px;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
}

@media only screen and (max-width: 991px) {
    .project-4-header {
        grid-template-columns: 1fr;
    }
}

.project-4-header .title-wrapper {
    margin-top: 19px;
}

.project-4-header .btn-wrapper {
    margin-bottom: 11px;
}

@media only screen and (max-width: 991px) {
    .project-4-header .btn-wrapper {
        margin-bottom: 0;
    }
}

.project-4-wrapper-box {
    margin-top: 59px;
}

/* project-5 area style  */

.project-5-area {
    margin: 0 40px;
    border: 10px solid var(--white);
    border-radius: 20px;
    filter: drop-shadow(0px 11px 30px rgba(24, 11, 37, 0.1));
    overflow: hidden;
}

@media only screen and (max-width: 1399px) {
    .project-5-area {
        margin: 0 15px;
        border-width: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .project-5-area {
        border-width: 2px;
    }
}

.project-5-area {
    position: relative;
    z-index: 1;
}

.project-5-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #EBEBF5;
    top: 0;
    left: 0;
    z-index: -1;
}

.project-5-area-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(235, 235, 245, 0.61);
}

.project-5-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-5-area-inner {
    position: relative;
    z-index: 1;
}

.project-5-area-inner .area-shape-1 {
    position: absolute;
    bottom: 0;
    left: -204px;
    z-index: -1;
}

.project-5-header {
    text-align: center;
}

.project-5-header .title-wrapper {
    margin-top: 19px;
}

.project-5-wrapper-box {
    margin-top: 58px;
}

@media only screen and (max-width: 1199px) {
    .project-5-active {
        overflow: visible;
    }
}

.project-5-active .swiper-slide-duplicate-next .project-5-box {
    transform: scale(0.74);
    transform-origin: right;
}

@media only screen and (max-width: 991px) {
    .project-5-active .swiper-slide-duplicate-next .project-5-box {
        transform: none;
    }
}

.project-5-active .swiper-slide-prev .project-5-box {
    transform: scale(0.74);
    transform-origin: right;
}

@media only screen and (max-width: 991px) {
    .project-5-active .swiper-slide-prev .project-5-box {
        transform: none;
    }
}

.project-5-active .swiper-slide-active .project-5-box .content-wrapper {
    opacity: 1;
}

.project-5-active .swiper-slide-next .project-5-box {
    transform: scale(0.74);
    transform-origin: left;
}

@media only screen and (max-width: 991px) {
    .project-5-active .swiper-slide-next .project-5-box {
        transform: none;
    }
}

.project-5-active .swiper-slide-duplicate-prev .project-5-box {
    transform: scale(0.74);
    transform-origin: left;
}

@media only screen and (max-width: 991px) {
    .project-5-active .swiper-slide-duplicate-prev .project-5-box {
        transform: none;
    }
}

.project-5-pagination.swiper-pagination-progressbar {
    position: relative;
    height: 7px;
    width: 560px;
    margin-top: 60px;
    background-color: var(--white);
    border-radius: 10px;
    margin-inline: auto;
}

@media only screen and (max-width: 1199px) {
    .project-5-pagination.swiper-pagination-progressbar {
        width: 470px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .project-5-pagination.swiper-pagination-progressbar {
        width: 100%;
    }
}

.project-5-pagination .swiper-pagination-progressbar-fill {
    background: var(--theme);
    border-radius: 10px;
}

.project-5-wrapper {
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .project-5-nav {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .project-5-nav {
        margin-top: 30px;
    }
}

.project-5-nav-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--theme);
    background: var(--white);
    box-shadow: 0px 12px 19px rgba(20, 8, 33, 0.05);
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .project-5-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

.project-5-nav-btn:hover {
    border-color: transparent;
    background-color: var(--theme);
    color: var(--white);
    box-shadow: none;
}

.project-5-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% - 40px);
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .project-5-button-prev {
        position: static;
        transform: none;
    }
}

.project-5-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 40px);
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .project-5-button-next {
        position: static;
        transform: none;
    }
}

.project-5-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.9s;
}

.project-5-box:hover .content-wrapper {
    opacity: 1;
}

.project-5-box .thumb img {
    width: 100%;
}

.project-5-box .content-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.5s;
    z-index: 1;
}

@media (max-width: 575px) {
    .project-5-box .content-wrapper {
        padding: 15px;
    }
}

.project-5-box .content-wrapper:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(23, 13, 45, 0.79);
    top: 0;
    left: 0;
    z-index: -1;
}

.project-5-box .content {
    background-color: var(--white);
    border-radius: 20px;
    padding: 29px 30px 31px;
    width: 100%;
}

@media (max-width: 575px) {
    .project-5-box .content {
        padding: 24px 15px 26px;
    }
}

.project-5-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

@media (max-width: 575px) {
    .project-5-box .title {
        font-size: 20px;
    }
}

.project-5-box .title a:hover {
    color: var(--black-2);
}

.project-5-box .tag {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    margin-top: 8px;
}

.project-5-box .details-btn {
    width: 107px;
    height: 107px;
    background-color: var(--theme);
    border-radius: 100%;
    font-size: 24px;
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30%;
}

@media (max-width: 575px) {
    .project-5-box .details-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* pricing css */

/* pricing area style  */

.pricing-area {
    position: relative;
    z-index: 1;
}

.pricing-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #EBEBF5;
    top: 0;
    left: 0;
    z-index: -1;
}

.pricing-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pricing-area-inner {
    position: relative;
}

.pricing-area-inner .area-shape-1 {
    position: absolute;
    left: calc(100% + 61px);
    width: -moz-max-content;
    width: max-content;
    top: 217px;
}

.pricing-area-inner .area-shape-1 img {
    animation: t-SlideBottom 5s infinite;
}

.pricing-area-inner .area-shape-2 {
    position: absolute;
    left: calc(100% + 158px);
    width: -moz-max-content;
    width: max-content;
    top: 103px;
}

.pricing-header {
    text-align: center;
}

.pricing-header .title-wrapper {
    margin-top: 19px;
}

.pricing-wrapper-box {
    margin-top: 59px;
}

.pricing-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .pricing-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.price-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 80px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .price-box {
        padding: 70px 15px 30px;
    }
}

.price-box.bordered {
    border: 1px solid var(--border);
}

.price-box.standard {
    position: relative;
    z-index: 1;
}

.price-box.standard .area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.price-box.standard .area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.price-box.standard .icon {
    background-color: var(--white);
    border-color: transparent;
}

.price-box.standard .package-name {
    color: var(--white);
}

.price-box.standard .price {
    color: var(--white);
}

.price-box.standard .text {
    color: var(--white);
}

.price-box.standard .pack-limit {
    background-color: #FFFFFF;
    border-color: #F1EDF6;
}

.price-box.standard .feature-list li {
    color: var(--white);
}

.price-box.standard .rr-btn {
    background-color: var(--white);
    border-color: var(--white);
}

.price-box.standard .rr-btn:before {
    background-color: var(--theme);
}

.price-box.standard .rr-btn:hover .text-two {
    color: var(--white);
}

.price-box.standard .rr-btn .text-one {
    color: var(--theme);
}

.price-box .package-tag {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 33px;
    background-color: var(--theme);
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.price-box .icon {
    width: 100px;
    height: 100px;
    border: 1px solid #EAE3F5;
    padding: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

@media only screen and (max-width: 1199px) {
    .price-box .icon {
        width: 80px;
        height: 80px;
    }
}

.price-box .package-name {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.23;
    color: var(--black);
    margin-top: 34px;
}

@media only screen and (max-width: 1199px) {
    .price-box .package-name {
        font-size: 20px;
    }
}

.price-box .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    color: var(--black);
    margin-top: 7px;
}

.price-box .price .value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .price-box .price .value {
        font-size: 40px;
    }
}

.price-box .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 14px;
}

.price-box .pack-limit {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid #E5E5E5;
    box-shadow: inset 0px 4px 8px 1px rgba(92, 52, 152, 0.33);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    border-radius: 100px;
    padding: 8px 23px;
    color: var(--black);
    margin-top: 26px;
}

.price-box .btn-wrapper {
    margin-top: 28px;
}

.price-box .rr-btn {
    width: 100%;
}

.price-box .feature-list {
    text-align: start;
    margin-top: 37px;
}

.price-box .feature-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    list-style: none;
    display: flex;
    align-items: flex-start;
}

.price-box .feature-list li:before {
    content: "";
    display: inline-block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    background-color: currentColor;
    border-radius: 50%;
    margin: 15px 9px;
}

/* progress css */

/* progress area style  */

.progress-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 1fr 600px;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .progress-area-inner {
        grid-template-columns: 1fr;
    }
}

.progress-thumb-wrappper {
    max-width: 640px;
    position: relative;
    aspect-ratio: 100/87;
}

.progress-thumb-wrappper .progress-thumb-1 {
    width: 47%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    overflow: hidden;
}

.progress-thumb-wrappper .progress-thumb-1 img {
    width: 100%;
}

.progress-thumb-wrappper .progress-thumb-2 {
    width: 47%;
    position: absolute;
    top: 46px;
    right: 0;
    border-radius: 30px;
    overflow: hidden;
}

.progress-thumb-wrappper .progress-thumb-2 img {
    width: 100%;
}

.progress-thumb-wrappper .progress-thumb-3 {
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--white);
    filter: drop-shadow(0px 6px 45px rgba(27, 30, 41, 0.22));
}

.progress-thumb-wrappper .progress-thumb-3 img {
    width: 100%;
}

.progress-content .title-wrapper {
    margin-top: 19px;
}

.progress-content .text-wrapper {
    margin-top: 32px;
}

.progress-wrapper-box {
    margin-top: 29px;
}

.progress-wrapper {
    display: grid;
    gap: 26px;
}

.progress-box .progress-title {
    display: flex;
    justify-content: space-between;
}

.progress-box .progress-title span {
    float: right;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: var(--black);
}

.progress-box .progress-category {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    display: inline-block;
    margin-bottom: 11px;
}

.progress-box .progress {
    height: 16px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #D5E0F5;
    padding: 4px;
}

.progress-box .progress-bar {
    background-color: var(--theme);
    border-radius: 10px;
}

/* testimonial css */

/* testimonial area style  */

.testimonial-area {
    position: relative;
    z-index: 1;
}

.testimonial-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #EBEBF5;
    top: 0;
    left: 0;
    z-index: -1;
}

.testimonial-area-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(235, 235, 245, 0.61);
}

.testimonial-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-header {
    text-align: center;
}

.testimonial-header .title-wrapper {
    margin-top: 19px;
}

.testimonial-wrapper-box {
    margin-top: 58px;
    margin-left: 10px;
    margin-right: 10px;
}

.testimonial-active {
    overflow: visible;
}

.testimonial-active .swiper-slide-duplicate-next .testimonial-item {
    transform: translate(0px, 53px) rotate(-12deg);
}

@media only screen and (max-width: 991px) {
    .testimonial-active .swiper-slide-duplicate-next .testimonial-item {
        transform: none;
    }
}

.testimonial-active .swiper-slide-prev .testimonial-item {
    transform: translate(0px, 53px) rotate(-12deg);
}

@media only screen and (max-width: 991px) {
    .testimonial-active .swiper-slide-prev .testimonial-item {
        transform: none;
    }
}

.testimonial-active .swiper-slide-next .testimonial-item {
    transform: translate(0px, 53px) rotate(12deg);
}

@media only screen and (max-width: 991px) {
    .testimonial-active .swiper-slide-next .testimonial-item {
        transform: none;
    }
}

.testimonial-active .swiper-slide-duplicate-prev .testimonial-item {
    transform: translate(0px, 53px) rotate(12deg);
}

@media only screen and (max-width: 991px) {
    .testimonial-active .swiper-slide-duplicate-prev .testimonial-item {
        transform: none;
    }
}

.testimonial-active .swiper-pagination-progressbar {
    position: relative;
    height: 7px;
    width: 560px;
    margin-top: 50px;
    background-color: var(--white);
    border-radius: 10px;
    margin-inline: auto;
}

@media only screen and (max-width: 1199px) {
    .testimonial-active .swiper-pagination-progressbar {
        width: 470px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-active .swiper-pagination-progressbar {
        width: 100%;
    }
}

.testimonial-active .swiper-pagination-progressbar-fill {
    background: var(--theme);
    border-radius: 10px;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 30px;
    padding: 50px 50px;
    filter: drop-shadow(0px 19px 32px rgba(23, 19, 37, 0.06));
    transition: all 0.9s;
}

@media only screen and (max-width: 1199px) {
    .testimonial-item {
        padding: 30px 30px;
    }
}

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

.testimonial-item .author {
    display: flex;
    gap: 20px 25px;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .testimonial-item .author {
        gap: 20px 20px;
    }
}

.testimonial-item .avatar {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .testimonial-item .avatar {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }
}

.testimonial-item .name {
    font-family: var(--font_generalsanssemibold);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
}

.testimonial-item .post {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--theme);
    margin-top: 5px;
}

.testimonial-item .text-wrapper {
    margin-top: 32px;
}

.testimonial-item .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #4B4D50;
}

.testimonial-item .icon-n-rating {
    margin-top: 27px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.testimonial-item .rating {
    font-size: 16px;
    color: var(--theme);
    border: 1px solid #E2E2E2;
    border-radius: 50px;
    padding: 14px 19px;
    display: inline-flex;
    gap: 2px;
}

/* testimonial-2 area style  */

.testimonial-2-area {
    position: relative;
    z-index: 1;
}

.testimonial-2-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #EBEBF5;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.testimonial-2-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-2-area-bg .area-shape-1 {
    width: 36%;
    position: absolute;
    top: -33px;
    right: -4%;
}

.testimonial-2-area-bg .area-shape-1 img {
    animation: t-SlideBottom 6s infinite;
}

.testimonial-2-header {
    text-align: center;
}

.testimonial-2-header .title-wrapper {
    margin-top: 19px;
}

.testimonial-2-wrapper-box {
    margin-top: 59px;
}

.testimonial-2-item {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px 40px 0;
    display: flex;
    gap: 20px 40px;
}

@media only screen and (max-width: 1199px) {
    .testimonial-2-item {
        padding: 30px 30px 0;
        gap: 20px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-2-item {
        flex-direction: column;
        padding: 20px 20px 0;
    }
}

.testimonial-2-item .avatar {
    width: 270px;
    min-width: 270px;
    height: 292px;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .testimonial-2-item .avatar {
        width: 190px;
        min-width: 190px;
        height: 252px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-2-item .avatar {
        width: 150px;
        min-width: 150px;
        height: 182px;
    }
}

.testimonial-2-item .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1000px 1000px 0 0;
}

.testimonial-2-item .icon {
    width: 64px;
    height: 64px;
    background-color: var(--theme);
    border: 8px solid var(--white);
    border-radius: 50px;
    font-size: 22px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
}

@media only screen and (max-width: 767px) {
    .testimonial-2-item .icon {
        width: 44px;
        height: 44px;
        border-width: 3px;
        font-size: 16px;
        top: 0;
        left: 0;
    }
}

.testimonial-2-item .content {
    margin-top: 2px;
}

.testimonial-2-item .name {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
}

.testimonial-2-item .post {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--theme);
    margin-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}

.testimonial-2-item .text-wrapper {
    margin-top: 18px;
}

.testimonial-2-item .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
}

@media only screen and (max-width: 1199px) {
    .testimonial-2-item .text {
        font-size: 16px;
    }
}

.testimonial-2-item .review-box {
    display: flex;
    gap: 10px 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 23px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.testimonial-2-item .site-review {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    color: var(--black);
    background-color: #F5F5F5;
    border: 1px solid #EBECF5;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.testimonial-2-item .google-review {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    color: var(--theme);
    background-color: #E5EEFF;
    border: 1px solid transparent;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

/* testimonial-4 area style  */

.testimonial-4-header {
    display: grid;
    gap: 25px 60px;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
}

@media only screen and (max-width: 991px) {
    .testimonial-4-header {
        grid-template-columns: 1fr;
    }
}

.testimonial-4-header .title-wrapper {
    margin-top: 19px;
}

.testimonial-4-header .testimonial-4-nav {
    margin-bottom: 11px;
}

@media only screen and (max-width: 991px) {
    .testimonial-4-header .testimonial-4-nav {
        margin-bottom: 0;
    }
}

.testimonial-4-wrapper-box {
    margin-top: 59px;
}

@media only screen and (max-width: 1199px) {
    .testimonial-4-wrapper-box {
        margin-top: 39px;
    }
}

.testimonial-4-nav {
    display: flex;
    gap: 10px;
}

.testimonial-4-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--theme);
    background: var(--white);
    transition: all 0.3s;
}

.testimonial-4-nav-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}

.testimonial-4-item {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px 60px;
    display: grid;
    gap: 30px 40px;
    grid-template-columns: 266px 1fr;
    align-items: flex-start;
}

@media only screen and (max-width: 1919px) {
    .testimonial-4-item {
        padding: 40px 40px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-4-item {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

.testimonial-4-item .avatar-big {
    border-radius: 20px;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .testimonial-4-item .avatar-big {
        display: none;
    }
}

.testimonial-4-item .avatar-big img {
    width: 100%;
}

.testimonial-4-item .text-wrapper {
    margin-top: -11px;
}

.testimonial-4-item .text {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.58;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .testimonial-4-item .text {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-4-item .text {
        font-size: 18px;
    }
}

.testimonial-4-item .author-box {
    border-top: 1px solid var(--border);
    margin-top: 30px;
    padding-top: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr auto;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .testimonial-4-item .author-box {
        padding-top: 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-4-item .author-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .testimonial-4-item .author-box .icon {
        display: none;
    }
}

.testimonial-4-item .author {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial-4-item .author .avatar {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 575px) {
    .testimonial-4-item .author .avatar {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
}

.testimonial-4-item .author .name {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.testimonial-4-item .author .post {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
}

/* testimonial-3 area style  */

.testimonial-3-header {
    display: grid;
    gap: 25px 60px;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
}

@media only screen and (max-width: 991px) {
    .testimonial-3-header {
        grid-template-columns: 1fr;
    }
}

.testimonial-3-header .title-wrapper {
    margin-top: 19px;
}

.testimonial-3-header .btn-wrapper {
    margin-bottom: 11px;
}

@media only screen and (max-width: 991px) {
    .testimonial-3-header .btn-wrapper {
        margin-bottom: 0;
    }
}

.testimonial-3-wrapper-box {
    margin-top: 59px;
}

.testimonial-3-wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-3-wrapper:before {
    position: absolute;
    content: "";
    width: 971px;
    height: 220px;
    right: -10px;
    top: 48px;
    background: rgba(100, 33, 255, 0.6);
    filter: blur(90px);
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-wrapper:before {
        width: 671px;
    }
}

@media (max-width: 575px) {
    .testimonial-3-wrapper:before {
        width: 100%;
        height: 320px;
        top: auto;
        bottom: 150px;
    }
}

.testimonial-3-box {
    display: grid;
    gap: 20px 60px;
    align-items: flex-start;
    grid-template-columns: 1fr 920px;
}

@media (max-width: 1300px) {
    .testimonial-3-box {
        gap: 20px 40px;
        grid-template-columns: 1fr 700px;
    }
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-box {
        gap: 20px 40px;
        grid-template-columns: 1fr 700px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-3-box {
        grid-template-columns: 1fr 380px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-3-box {
        grid-template-columns: 1fr 310px;
        gap: 20px 20px;
    }
}

@media (max-width: 575px) {
    .testimonial-3-box {
        grid-template-columns: 1fr;
    }
}

.testimonial-3-box .thumb-wrapper {
    background-color: #ddd;
    border-radius: 20px;
    padding: 50px 50px 36px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(40, 15, 66, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-box .thumb-wrapper {
        padding: 20px 20px 16px;
    }
}

.testimonial-3-box .thumb-wrapper:before {
    position: absolute;
    content: "";
    width: 582px;
    height: 204px;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
    background: #6421FF;
    filter: blur(90px);
    z-index: -1;
}

.testimonial-3-box .thumb-wrapper .thumb {
    border: 5px solid var(--white);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 100/83;
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-box .thumb-wrapper .thumb {
        border-width: 2px;
    }
}

.testimonial-3-box .thumb-wrapper .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top left;
    object-position: top left;
}

.testimonial-3-box .thumb-wrapper .meta {
    margin-top: 23px;
}

.testimonial-3-box .thumb-wrapper .name {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-box .thumb-wrapper .name {
        font-size: 20px;
    }
}

.testimonial-3-box .thumb-wrapper .post {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    color: var(--theme);
    margin-top: 6px;
}

.testimonial-3-box .content {
    background-color: var(--white);
    position: relative;
    border-radius: 20px;
    padding: 30px 40px 30px;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-box .content {
        padding: 20px 20px 20px;
    }
}

.testimonial-3-box .content .text {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.63;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-box .content .text {
        font-size: 18px;
    }
}

.testimonial-3-thumb {
    width: 920px;
    height: 180px;
    position: absolute;
    bottom: 0;
    right: 0;
}

@media only screen and (max-width: 1399px) {
    .testimonial-3-thumb {
        height: 140px;
    }
}

@media (max-width: 1300px) {
    .testimonial-3-thumb {
        width: 700px;
    }
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-thumb {
        width: 700px;
        height: 110px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-3-thumb {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
}

.swiper-slide-thumb-active .testimonial-3-nav-thumb {
    border-color: var(--theme);
}

.testimonial-3-nav-thumb {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 10px;
    height: 100%;
    transition: all 0.9s;
}

@media only screen and (max-width: 1199px) {
    .testimonial-3-nav-thumb {
        border-radius: 10px;
        padding: 5px;
    }
}

.testimonial-3-nav-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    -o-object-position: top left;
    object-position: top left;
}

/* process css */

/* process area style  */

.process-area {
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
}

.process-header .title-wrapper {
    margin-top: 19px;
}

.process-wrapper-box {
    margin-top: 56px;
}

.process-wrapper {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    max-width: 1250px;
    margin-inline: auto;
}

@media only screen and (max-width: 991px) {
    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .process-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.process-box {
    text-align: center;
    max-width: 365px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .process-box {
        max-width: 100%;
    }
}

.process-box .thumb img {
    width: 177px;
}

@media only screen and (max-width: 1199px) {
    .process-box .thumb img {
        width: 127px;
    }
}

.process-box .content {
    margin-top: 33px;
}

.process-box .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
}

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

.process-box .text {
    margin-top: 11px;
}

.process-box .shape-start {
    position: absolute;
    width: 143px;
    top: 64px;
    left: -105px;
}

@media only screen and (max-width: 1199px) {
    .process-box .shape-start {
        width: 103px;
        left: -80px;
        top: 44px;
    }
}

@media only screen and (max-width: 991px) {
    .process-box .shape-start {
        display: none;
    }
}

.process-box .shape-end {
    position: absolute;
    width: 143px;
    top: 64px;
    right: -125px;
}

@media only screen and (max-width: 1199px) {
    .process-box .shape-end {
        width: 103px;
        right: -80px;
        top: 44px;
    }
}

@media only screen and (max-width: 991px) {
    .process-box .shape-end {
        display: none;
    }
}

/* process-2 area style  */

.process-2-header {
    text-align: center;
}

.process-2-header .title-wrapper {
    margin-top: 19px;
}

.process-2-wrapper-box {
    margin-top: 59px;
}

@media only screen and (max-width: 1919px) {
    .process-2-wrapper-box {
        margin-top: 49px;
    }
}

@media only screen and (max-width: 1199px) {
    .process-2-wrapper-box {
        margin-top: 39px;
    }
}

.process-2-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
    .process-2-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .process-2-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.process-2-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    padding: 30px 30px;
}

@media only screen and (max-width: 1199px) {
    .process-2-box {
        padding: 20px 15px;
    }
}

.process-2-box .number {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--theme);
    padding: 8px 20px;
    display: inline-block;
    border: 1px solid var(--border);
    border-radius: 30px;
}

.process-2-box .content {
    margin-top: 18px;
}

.process-2-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.45;
}

@media only screen and (max-width: 1199px) {
    .process-2-box .title {
        font-size: 20px;
    }
}

.process-2-box .thumb {
    margin-top: 24px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .process-2-box .thumb {
        margin-top: 14px;
    }
}

.process-2-box .thumb img {
    width: 100%;
}

.process-2-box .btn-wrapper {
    margin-top: 30px;
}

@media only screen and (max-width: 1199px) {
    .process-2-box .btn-wrapper {
        margin-top: 20px;
    }
}

.process-2-box .rr-btn {
    padding: 16px 29px;
    background-color: var(--white);
    border-color: var(--border);
}

.process-2-box .rr-btn:hover {
    border-color: transparent;
}

.process-2-box .rr-btn:hover .text-two {
    color: var(--white);
}

.process-2-box .rr-btn:before {
    background-color: var(--theme);
}

.process-2-box .rr-btn .text-one {
    color: var(--theme);
}

/* process-3 area style  */

.process-3-header {
    text-align: center;
}

.process-3-header .title-wrapper {
    margin-top: 19px;
}

.process-3-header .section-title {
    max-width: 730px;
    margin-inline: auto;
}

.process-3-wrapper-box {
    margin-top: 59px;
}

.process-3-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .process-3-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.process-3-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 54px 60px 53px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: grid;
    gap: 20px 40px;
    grid-template-columns: 115px 1fr;
}

@media only screen and (max-width: 1199px) {
    .process-3-box {
        padding: 24px 20px 23px;
    }
}

@media only screen and (max-width: 991px) {
    .process-3-box {
        grid-template-columns: 1fr;
    }
}

.process-3-box:before {
    position: absolute;
    content: "";
    width: 297px;
    height: 297px;
    left: -114px;
    top: -173px;
    background: var(--theme);
    filter: blur(100px);
    z-index: -1;
}

.process-3-box .number-box {
    position: relative;
}

.process-3-box .number {
    font-family: var(--font_inter);
    font-weight: 800;
    font-size: 180px;
    line-height: 1;
    color: var(--white);
    position: absolute;
    left: -104px;
    top: 23px;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .process-3-box .number {
        font-size: 130px;
        left: -54px;
    }
}

@media only screen and (max-width: 991px) {
    .process-3-box .number {
        position: static;
        font-size: 70px;
        font-weight: 700;
    }
}

.process-3-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .process-3-box .title {
        font-size: 20px;
    }
}

.process-3-box .text {
    margin-top: 12px;
}

/* appointment css */

/* appointment area style  */

.appointment-area {
    position: relative;
    z-index: 1;
    margin-top: 17px;
}

.appointment-area-inner {
    position: relative;
    padding-top: 11px;
    padding-bottom: 22px;
}

@media only screen and (max-width: 1199px) {
    .appointment-area-inner {
        padding-bottom: 0;
    }
}

.appointment-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.appointment-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.appointment-content {
    max-width: 680px;
}

.appointment-content .title-wrapper {
    margin-top: 19px;
}

.appointment-contact-wrap {
    margin-top: 49px;
}

.appointment-contact-wrap .submit-btn {
    margin-top: 30px;
}

.appointment-formwrap {
    display: grid;
    gap: 20px 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .appointment-formwrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.appointment-formwrap .span-2 {
    grid-column: span 2;
}

@media only screen and (max-width: 767px) {
    .appointment-formwrap .span-2 {
        grid-column: auto;
    }
}

.appointment-formfield {
    background-color: var(--white);
    padding: 0 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.appointment-formfield input {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
}

.appointment-formfield input:focus {
    background-color: var(--white);
}

.appointment-formfield input::-moz-placeholder {
    color: var(--black);
}

.appointment-formfield input::placeholder {
    color: var(--black);
}

.appointment-formfield i {
    font-size: 16px;
    color: var(--black);
}

.appointment-formfield select {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
}

.appointment-formfield select:focus {
    background-color: var(--white);
}

.appointment-formfield select::-moz-placeholder {
    color: var(--black);
}

.appointment-formfield select::placeholder {
    color: var(--black);
}

.appointment-formfield .nice-select {
    height: 60px;
    width: 100%;
    padding: 0;
    border: 0;
}

.appointment-formfield .nice-select .current {
    height: 60px;
    line-height: 60px;
    display: block;
    font-size: 16px;
    color: var(--black);
}

.appointment-formfield .nice-select .option {
    height: 40px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    color: var(--black);
}

.appointment-formfield .nice-select:after {
    display: none;
}

.appointment-thumb-wrappper {
    position: absolute;
    z-index: 1;
    width: 100%;
    max-width: 840px;
    aspect-ratio: 100/86;
    overflow: hidden;
    right: -205px;
    bottom: 0;
}

@media only screen and (max-width: 1399px) {
    .appointment-thumb-wrappper {
        right: -165px;
    }
}

@media only screen and (max-width: 1199px) {
    .appointment-thumb-wrappper {
        position: static;
    }
}

.appointment-thumb-1 {
    position: absolute;
    content: "";
    width: 34%;
    aspect-ratio: 100/100;
    background-color: var(--theme);
    border-radius: 30px;
    left: 18%;
    bottom: 104px;
    animation: appointment-thumb-1 5s infinite;
}

@keyframes appointment-thumb-1 {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(50px) rotate(-45deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.appointment-thumb-2 {
    position: absolute;
    width: 50%;
    bottom: 80px;
    right: 0;
}

.appointment-thumb-3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92%;
}

/* appointment-2 area style  */

.appointment-2-area-inner {
    display: grid;
    gap: 40px 40px;
    grid-template-columns: 1fr 680px;
    align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
    .appointment-2-area-inner {
        grid-template-columns: 1fr 480px;
    }
}

@media only screen and (max-width: 991px) {
    .appointment-2-area-inner {
        grid-template-columns: 1fr;
    }
}

.appointment-2-content .title-wrapper {
    margin-top: 19px;
}

.appointment-2-content .text-wrapper {
    margin-top: 22px;
}

.appointment-2-content .features-wrapper-box {
    margin-top: 43px;
}

.appointment-2-content .feature-box {
    background-color: #F3F2F8;
    border-radius: 15px;
    padding: 25px 30px 24px;
    display: flex;
    gap: 20px;
    border: 1px solid transparent;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .appointment-2-content .feature-box {
        padding: 15px 20px 14px;
    }
}

@media (max-width: 575px) {
    .appointment-2-content .feature-box {
        flex-direction: column;
    }
}

.appointment-2-content .feature-box:hover {
    border-color: var(--theme);
    background-color: var(--white);
}

.appointment-2-content .feature-box:hover .icon {
    background-color: var(--theme);
    border-color: transparent;
}

.appointment-2-content .feature-box:hover .icon img {
    filter: invert(0) brightness(10) contrast(10);
}

.appointment-2-content .feature-box:not(:first-child) {
    margin-top: 30px;
}

.appointment-2-content .feature-box .icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border: 1px solid var(--theme);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    margin-top: 5px;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .appointment-2-content .feature-box .icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
        padding: 15px;
    }
}

.appointment-2-content .feature-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .appointment-2-content .feature-box .title {
        font-size: 20px;
    }
}

.appointment-2-content .feature-box .text {
    margin-top: 10px;
}

.appointment-2-contact-wrap form {
    position: relative;
    z-index: 1;
    border-radius: 0 20px 20px 20px;
    overflow: hidden;
    padding: 40px 40px;
}

@media only screen and (max-width: 1199px) {
    .appointment-2-contact-wrap form {
        padding: 20px 20px;
    }
}

@media (max-width: 575px) {
    .appointment-2-contact-wrap form {
        border-radius: 0 0 20px 20px;
    }
}

.appointment-2-contact-wrap form .submit-btn {
    margin-top: 30px;
}

.appointment-2-contact-wrap form .rr-btn {
    padding: 21px 34px;
    width: 100%;
    border-radius: 5px;
}

.appointment-2-contact-wrap .form-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.appointment-2-contact-wrap .form-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(4, 11, 51, 0.94);
}

.appointment-2-contact-wrap .form-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.appointment-2-contact-wrap .contact-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    background-color: var(--theme);
    color: var(--white);
    padding: 17px 49px 17px 40px;
    display: inline-block;
    border-radius: 20px 20px 0 0;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .appointment-2-contact-wrap .contact-title {
        padding: 12px 29px 12px 20px;
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .appointment-2-contact-wrap .contact-title {
        width: 100%;
    }
}

.appointment-2-contact-wrap .contact-title:after {
    position: absolute;
    content: "";
    width: 40px;
    height: calc(100% - 6px);
    background-color: var(--theme);
    left: calc(100% - 5px);
    bottom: 0px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (max-width: 575px) {
    .appointment-2-contact-wrap .contact-title:after {
        display: none;
    }
}

.appointment-2-formwrap {
    display: grid;
    gap: 20px 20px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .appointment-2-formwrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.appointment-2-formwrap .span-2 {
    grid-column: span 2;
}

@media only screen and (max-width: 767px) {
    .appointment-2-formwrap .span-2 {
        grid-column: auto;
    }
}

.appointment-2-formfield input,
.appointment-2-formfield textarea {
    width: 100%;
    height: 55px;
    outline: none;
    background: rgba(18, 26, 70, 0.06);
    border: 1px solid #2E3668;
    border-radius: 5px;
    padding: 18px 20px;
    color: var(--white);
    transition: all 0.5s;
    font-size: 16px;
    line-height: 19px;
}

.appointment-2-formfield input:focus,
.appointment-2-formfield textarea:focus {
    background: rgba(18, 26, 70, 0.06);
}

.appointment-2-formfield input::-moz-placeholder,
.appointment-2-formfield textarea::-moz-placeholder {
    color: var(--white);
}

.appointment-2-formfield input::placeholder,
.appointment-2-formfield textarea::placeholder {
    color: var(--white);
}

.appointment-2-formfield textarea {
    height: 123px;
    resize: none;
}

/* team css */

/* team area style  */

.team-header {
    text-align: center;
}

.team-header .title-wrapper {
    margin-top: 19px;
}

.team-wrapper-box {
    margin-top: 59px;
}

.team-wrapper {
    display: grid;
    gap: 24px 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
    .team-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .team-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.team-box {
    border: 1px solid #E7E0F2;
    border-radius: 20px;
    padding: 30px 30px 32px;
}

@media only screen and (max-width: 1199px) {
    .team-box {
        padding: 10px 10px 22px;
    }
}

.team-box.rr-bg-white {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.team-box .thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.team-box .thumb img {
    width: 100%;
}

.team-box .social {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.team-box .social:hover .social-link {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.team-box .social:hover .bg-shape {
    transform: translateX(-50%) scale(5);
}

.team-box .social:hover .share-icon {
    opacity: 0;
}

.team-box .social .social-link {
    display: flex;
    gap: 7px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.2);
    opacity: 0;
    transition: all 0.5s;
}

.team-box .social .social-link a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--theme);
}

.team-box .social .social-link a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.team-box .social .bg-shape {
    position: absolute;
    content: "";
    width: 162px;
    height: 162px;
    background-color: #140A4A;
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.75;
    transition: all 0.5s;
}

.team-box .social .share-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--theme);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
}

.team-box .content {
    text-align: center;
    margin-top: 24px;
}

@media only screen and (max-width: 1199px) {
    .team-box .content {
        margin-top: 14px;
    }
}

.team-box .name {
    font-family: var(--font_inter);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

@media only screen and (max-width: 1199px) {
    .team-box .name {
        font-size: 20px;
    }
}

.team-box .post {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--theme);
}

/* team-2 area style  */

.team-2-wrapper {
    display: grid;
    gap: 24px 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
    .team-2-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .team-2-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.team-2-footer {
    margin-top: 60px;
}

@media only screen and (max-width: 1919px) {
    .team-2-footer {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .team-2-footer {
        margin-top: 40px;
    }
}

.team-2-footer .btn-wrapper {
    text-align: center;
}

.team-2-footer .rr-btn {
    background-color: var(--white);
    border-color: #E7E0F2;
}

.team-2-footer .rr-btn:hover .text-two {
    color: var(--white);
}

.team-2-footer .rr-btn:before {
    background-color: var(--theme);
}

.team-2-footer .rr-btn .text-one {
    color: var(--black);
}

/* team-details area style  */

.team-details-wrapper {
    background-color: var(--white);
    padding: 60px;
    border-radius: 20px;
    display: grid;
    gap: 30px 50px;
    grid-template-columns: 410px 1fr;
    align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
    .team-details-wrapper {
        padding: 20px;
        grid-template-columns: 310px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .team-details-wrapper {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}

.team-details-thumb {
    border-radius: 15px;
    overflow: hidden;
}

.team-details-thumb img {
    width: 100%;
}

.team-details-content {
    margin-top: 11px;
}

.team-details-content .name {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.22;
}

@media only screen and (max-width: 1199px) {
    .team-details-content .name {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .team-details-content .name {
        font-size: 24px;
    }
}

.team-details-content .post {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    color: var(--theme);
    margin-top: 8px;
}

.team-details-content .text-wrapper {
    margin-top: 19px;
    display: grid;
    gap: 26px;
}

.team-details-content .cta-list {
    margin-top: 33px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 767px) {
    .team-details-content .cta-list {
        grid-template-columns: 1fr;
    }
}

.team-details-content .cta-box {
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .team-details-content .cta-box {
        padding: 10px;
    }
}

.team-details-content .cta-box:hover {
    box-shadow: 0px 16px 31px 0px rgba(0, 0, 0, 0.07);
}

.team-details-content .cta-box .icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    background-color: #F1EEF4;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-details-content .cta-box .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
}

.team-details-content .cta-box .link {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .team-details-content .cta-box .link {
        font-size: 18px;
    }
}

.team-details-content .cta-box .link a:hover {
    color: var(--black-2);
}

.team-details-content .social {
    margin-top: 45px;
}

@media only screen and (max-width: 1199px) {
    .team-details-content .social {
        margin-top: 25px;
    }
}

.team-details-content .social-link {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.team-details-content .social-link a {
    width: 40px;
    height: 40px;
    background-color: #F2F2F3;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--theme);
    font-size: 14px;
}

.team-details-content .social-link a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/* team-3 area style  */

.team-3-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-3-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #EFF1F8;
}

.team-3-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-3-area-inner {
    position: relative;
}

.team-3-shape-1 {
    position: absolute;
    z-index: -1;
    top: -33px;
    left: -485px;
}

.team-3-shape-2 {
    position: absolute;
    z-index: -1;
    top: 134px;
    right: -102px;
    transform: rotate(-45deg);
}

.team-3-shape-2 img {
    animation: t-SlideBottom 6s infinite;
}

.team-3-header {
    text-align: center;
}

.team-3-header .title-wrapper {
    margin-top: 19px;
}

.team-3-header .text-wrapper {
    margin-top: 32px;
}

.team-3-header .text-wrapper .text {
    max-width: 646px;
    margin-inline: auto;
}

.team-3-wrapper-box {
    margin-top: 63px;
}

.team-3-wrapper {
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .team-3-nav {
        display: none;
    }
}

.team-3-nav-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme);
    background: var(--white);
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .team-3-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

.team-3-nav-btn:hover {
    border-color: transparent;
    background-color: var(--theme);
    color: var(--white);
    box-shadow: none;
}

.team-3-button-prev {
    position: absolute;
    bottom: 149px;
    right: calc(100% + 85px);
}

@media only screen and (max-width: 1919px) {
    .team-3-button-prev {
        position: static;
        transform: none;
    }
}

.team-3-button-next {
    position: absolute;
    bottom: 149px;
    left: calc(100% + 85px);
}

@media only screen and (max-width: 1919px) {
    .team-3-button-next {
        position: static;
        transform: none;
    }
}

.team-3-active .swiper-slide-duplicate-next .team-3-box {
    transform: translate(0px, 89px) rotate(-5deg);
}

@media only screen and (max-width: 991px) {
    .team-3-active .swiper-slide-duplicate-next .team-3-box {
        transform: none;
    }
}

.team-3-active .swiper-slide-prev .team-3-box {
    transform: translate(10px, 89px) rotate(-5deg);
}

@media only screen and (max-width: 991px) {
    .team-3-active .swiper-slide-prev .team-3-box {
        transform: none;
    }
}

.team-3-active .swiper-slide-active .team-3-box {
    border-color: transparent;
    background-color: var(--theme);
}

.team-3-active .swiper-slide-active .team-3-box .name {
    color: var(--white);
}

.team-3-active .swiper-slide-active .team-3-box .post {
    color: var(--white);
}

.team-3-active .swiper-slide-active .team-3-box .social-link a:hover {
    background-color: var(--white-2);
    color: var(--theme);
}

.team-3-active .swiper-slide-next .team-3-box {
    transform: translate(-10px, 89px) rotate(5deg);
}

@media only screen and (max-width: 991px) {
    .team-3-active .swiper-slide-next .team-3-box {
        transform: none;
    }
}

.team-3-active .swiper-slide-duplicate-prev .team-3-box {
    transform: translate(0px, 89px) rotate(5deg);
}

@media only screen and (max-width: 991px) {
    .team-3-active .swiper-slide-duplicate-prev .team-3-box {
        transform: none;
    }
}

.team-3-box {
    border: 1px solid var(--white);
    background-color: #D8DFF4;
    border-radius: 1000px 1000px 0 0;
    padding: 54px 54px 40px;
    transition: all 0.9s;
}

@media only screen and (max-width: 1199px) {
    .team-3-box {
        padding: 14px 14px 20px;
    }
}

.team-3-box .thumb {
    position: relative;
    border-radius: 1000px;
    overflow: hidden;
}

.team-3-box .thumb img {
    width: 100%;
}

.team-3-box .content {
    text-align: center;
    margin-top: 33px;
}

@media only screen and (max-width: 1199px) {
    .team-3-box .content {
        margin-top: 23px;
    }
}

.team-3-box .name {
    font-family: var(--font_inter);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

@media only screen and (max-width: 1199px) {
    .team-3-box .name {
        font-size: 24px;
    }
}

.team-3-box .post {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: var(--theme);
    margin-top: 10px;
}

.team-3-box .social-link {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 26px;
}

@media only screen and (max-width: 1199px) {
    .team-3-box .social-link {
        gap: 7px;
    }
}

.team-3-box .social-link a {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--theme);
}

@media only screen and (max-width: 1199px) {
    .team-3-box .social-link a {
        width: 40px;
        height: 40px;
    }
}

.team-3-box .social-link a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/* blog css */

/* blog area style  */

.blog-header {
    text-align: center;
}

.blog-header .title-wrapper {
    margin-top: 19px;
}

.blog-wrapper-box {
    margin-top: 59px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 698px;
    align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
    .blog-wrapper-box {
        grid-template-columns: 1fr 500px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-wrapper-box {
        grid-template-columns: 1fr;
    }
}

.blog-featured {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px 30px 32px;
}

@media only screen and (max-width: 1199px) {
    .blog-featured {
        padding: 20px 20px 22px;
    }
}

.blog-featured .thumb {
    border-radius: 10px;
    overflow: hidden;
}

.blog-featured .thumb img {
    width: 100%;
}

.blog-featured .content {
    margin-top: 30px;
}

.blog-featured .meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.blog-featured .tag {
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    padding: 5px 12px;
    text-transform: uppercase;
    background-color: rgba(62, 102, 243, 0.1);
    color: var(--theme);
    border-radius: 30px;
    font-weight: 600;
}

.blog-featured .date {
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    padding-left: 17px;
    position: relative;
}

.blog-featured .date:before {
    width: 5px;
    height: 5px;
    background-color: #C1C4CB;
    border-radius: 50%;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog-featured .title {
    font-size: 24px;
    line-height: 1.21;
    font-weight: 700;
    margin-top: 19px;
    font-family: var(--font_inter);
}

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

.blog-featured .text {
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
}

.blog-featured .blog-btn {
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    font-weight: 700;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    margin-top: 18px;
    padding: 13px 29px;
    background-color: var(--theme);
    border-radius: 50px;
}

.blog-wrapper {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
}

@media only screen and (max-width: 1199px) {
    .blog-wrapper {
        padding: 20px;
    }
}

.blog-wrapper .blog:not(:first-child) {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.blog {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media only screen and (max-width: 1199px) {
    .blog {
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .blog {
        flex-direction: column;
    }
}

.blog .thumb {
    width: 165px;
    min-width: 165px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .blog .thumb {
        width: 95px;
        min-width: 95px;
        height: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .blog .thumb {
        width: 100%;
        aspect-ratio: 100/55;
        height: auto;
    }
}

.blog .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog .meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.blog .tag {
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    padding: 5px 12px;
    text-transform: uppercase;
    background-color: rgba(62, 102, 243, 0.1);
    color: var(--theme);
    border-radius: 30px;
    font-weight: 600;
}

.blog .date {
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    padding-left: 17px;
    position: relative;
}

.blog .date:before {
    width: 5px;
    height: 5px;
    background-color: #C1C4CB;
    border-radius: 50%;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog .title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 15px;
    font-family: var(--font_inter);
}

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

.blog .text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 11px;
}

.blog .blog-btn {
    font-size: 14px;
    line-height: 17px;
    color: var(--theme);
    font-weight: 700;
    display: inline-flex;
    gap: 3px;
    align-items: center;
    margin-top: 14px;
}

/* blog-2 area style  */

.blog-2-header {
    text-align: center;
}

.blog-2-header .title-wrapper {
    margin-top: 19px;
}

.blog-2-wrapper-box {
    margin-top: 59px;
}

.blog-2-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 444px;
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .blog-2-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .blog-2-wrapper {
        grid-template-columns: 1fr;
    }
}

.blog-2 {
    box-shadow: 0px 18px 66px 3px rgba(17, 21, 29, 0.06);
    border-radius: 15px;
}

.blog-2 .thumb {
    height: 260px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.blog-2 .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-2 .content {
    border: 1px solid var(--border);
    background-color: var(--white);
    padding: 40px 40px 30px;
    border-radius: 0 0 15px 15px;
}

@media only screen and (max-width: 1199px) {
    .blog-2 .content {
        padding: 25px 20px 25px;
    }
}

.blog-2 .tag {
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding: 10px 20px;
    text-transform: uppercase;
    background-color: rgba(36, 107, 253, 0.1);
    color: var(--theme);
    border-radius: 30px;
}

.blog-2 .title {
    font-size: 24px;
    line-height: 1.33;
    font-weight: 600;
    margin-top: 17px;
    font-family: var(--font_inter);
}

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

.blog-2 .text {
    font-size: 16px;
    line-height: 26px;
    margin-top: 16px;
}

.blog-2 .meta {
    display: flex;
    gap: 10px 20px;
    align-items: center;
    margin-top: 22px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
    flex-wrap: wrap;
}

.blog-2 .date {
    display: inline-block;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
}

.blog-2 .author {
    display: inline-block;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    padding-left: 21px;
    position: relative;
}

.blog-2 .author:before {
    width: 1px;
    height: 20px;
    background-color: #DEDCF0;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog-2 .author .name {
    color: var(--theme);
}

/* blog-3 area style  */

.blog-3-area {
    position: relative;
    z-index: 1;
}

.blog-3-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #EBEDF5;
    top: 0;
    left: 0;
    z-index: -1;
}

.blog-3-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-3-area-inner {
    display: grid;
    gap: 40px 24px;
    grid-template-columns: 445px 1fr;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .blog-3-area-inner {
        grid-template-columns: 295px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .blog-3-area-inner {
        grid-template-columns: 1fr;
    }
}

.blog-3-area-inner .area-shape-1 {
    position: absolute;
    bottom: 63px;
    left: -116px;
    z-index: -1;
}

.blog-3-area-inner .area-shape-1 img {
    animation: t-SlideBottom 6s infinite;
}

.blog-3-content .title-wrapper {
    margin-top: 19px;
}

.blog-3-content .text-wrapper {
    margin-top: 22px;
}

.blog-3-content .btn-wrapper {
    margin-top: 33px;
}

.blog-3-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .blog-3-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.blog-3 {
    border-radius: 15px;
    overflow: hidden;
}

.blog-3 .thumb {
    width: 100%;
    aspect-ratio: 100/57;
    min-height: 150px;
}

.blog-3 .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-3 .content {
    background-color: var(--white);
    padding: 30px;
}

@media only screen and (max-width: 1199px) {
    .blog-3 .content {
        padding: 20px;
    }
}

.blog-3 .meta {
    display: flex;
    gap: 12px 20px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-3 .date {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-3 .date i {
    color: var(--theme);
}

.blog-3 .author {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-3 .author i {
    color: var(--theme);
}

.blog-3 .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.42;
    margin-top: 14px;
}

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

.blog-3 .title a:hover {
    color: var(--black-2);
}

.blog-3 .rr-btn {
    margin-top: 21px;
    padding: 11px 23px;
    background-color: #F0EFFF;
    border-color: #F0EFFF;
}

.blog-3 .rr-btn:hover .text-two {
    color: var(--white);
}

.blog-3 .rr-btn:before {
    background-color: var(--theme);
}

.blog-3 .rr-btn .text-one {
    color: var(--theme);
}

/* blog-list area style  */

.blog-list-area-inner {
    display: grid;
    gap: 40px 40px;
    grid-template-columns: 1fr 444px;
    align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
    .blog-list-area-inner {
        grid-template-columns: 1fr 390px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-list-area-inner {
        grid-template-columns: 1fr;
    }
}

.blog-list-wrapper {
    display: grid;
    gap: 30px;
}

.blog-4 {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.blog-4 .thumb img {
    width: 100%;
}

.blog-4 .meta {
    display: flex;
    gap: 8px 18px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-4 .date {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.blog-4 .date i {
    color: var(--theme);
}

.blog-4 .author {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.blog-4 .author i {
    color: var(--theme);
}

.blog-4 .content {
    padding: 38px 40px 40px;
}

@media only screen and (max-width: 1199px) {
    .blog-4 .content {
        padding: 23px 20px 20px;
    }
}

.blog-4 .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    margin-top: 14px;
}

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

@media (max-width: 575px) {
    .blog-4 .title {
        font-size: 20px;
    }
}

.blog-4 .title a:hover {
    color: var(--black-2);
}

.blog-4 .text {
    margin-top: 15px;
}

.blog-4 .rr-btn {
    padding: 14px 30px;
    margin-top: 28px;
}

.blog-list-footer {
    margin-top: 48px;
}

@media only screen and (max-width: 1919px) {
    .blog-list-footer {
        margin-top: 48px;
    }
}

@media only screen and (max-width: 1199px) {
    .blog-list-footer {
        margin-top: 40px;
    }
}

/* blog-sidebar style  */

.blog-sidebar-wrapper-box {
    max-width: 500px;
}

.blog-sidebar-wrapper {
    background-color: var(--white);
    border-radius: 10px;
    padding: 34px 40px 40px;
    display: grid;
    gap: 34px;
}

@media only screen and (max-width: 1199px) {
    .blog-sidebar-wrapper {
        padding: 19px 20px 20px;
    }
}

.blog-sidebar-box .sidebar-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .blog-sidebar-box .sidebar-title {
        font-size: 20px;
    }
}

.sidebar-search-box {
    margin-top: 14px;
}

.sidebar-search-box .input-field {
    border: 1px solid var(--border);
    border-radius: 5px;
    position: relative;
    padding: 13px 65px 14px 25px;
}

.sidebar-search-box .input-field input {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
    border: none;
    outline: none;
    width: 100%;
}

.sidebar-search-box .input-field .search-btn {
    width: 55px;
    height: 55px;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 5px;
    position: absolute;
    right: -1px;
    top: -1px;
}

.sidebar-blog-wrapper {
    display: grid;
    gap: 20px;
}

.sidebar-blog-wrapper-box {
    margin-top: 24px;
    margin-right: 20px;
}

@media only screen and (max-width: 1199px) {
    .sidebar-blog-wrapper-box {
        margin-right: 0;
    }
}

.sidebar-blog {
    display: flex;
    gap: 5px 18px;
    align-items: flex-start;
}

@media (max-width: 575px) {
    .sidebar-blog {
        flex-direction: column;
    }
}

.sidebar-blog .thumb {
    width: 77px;
    min-width: 77px;
    height: 77px;
    border-radius: 5px;
    overflow: hidden;
}

.sidebar-blog .thumb img {
    width: 100%;
}

.sidebar-blog .content {
    margin-top: 7px;
}

.sidebar-blog .author {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    gap: 7px;
    align-items: center;
}

.sidebar-blog .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-top: 5px;
}

.sidebar-blog .title a:hover {
    color: var(--black-2);
}

.sidebar-category-box {
    margin-top: 40px;
}

.sidebar-category-list li {
    list-style: none;
}

.sidebar-category-list li:not(:first-child) {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.sidebar-category-list li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.sidebar-category-list li a i {
    margin-left: auto;
    color: var(--theme);
}

.sidebar-gallery-box {
    margin-top: 24px;
}

.sidebar-gallery-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}

.sidebar-gallery-wrapper img {
    border-radius: 5px;
    width: 100%;
}

.sidebar-tags-box {
    margin-top: 23px;
}

.sidebar-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sidebar-tags a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: var(--black);
    border: 1px solid var(--border);
    padding: 8px 15px;
    display: inline-block;
    border-radius: 30px;
}

.sidebar-tags a:hover {
    background-color: var(--theme);
    border-color: transparent;
    color: var(--white);
}

/* blog-details area style  */

.blog-details-area-inner {
    display: grid;
    gap: 40px 40px;
    grid-template-columns: 1fr 444px;
    align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
    .blog-details-area-inner {
        grid-template-columns: 1fr 390px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-details-area-inner {
        grid-template-columns: 1fr;
    }
}

.blog-details .thumb {
    border-radius: 10px;
    overflow: hidden;
}

.blog-details .content {
    margin-top: 37px;
}

.blog-details .meta {
    display: flex;
    gap: 30px;
    align-items: center;
}

.blog-details .meta .date {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.blog-details .meta .date i {
    color: var(--theme);
}

.blog-details .meta .author {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.blog-details .meta .author i {
    color: var(--theme);
}

.blog-details .blog-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    margin-top: 9px;
}

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

@media (max-width: 575px) {
    .blog-details .blog-title {
        font-size: 20px;
    }
}

.blog-details .blog-title+.text-wrapper {
    margin-top: 16px;
}

.blog-details .text-wrapper {
    margin-top: 33px;
    display: grid;
    gap: 26px;
}

.blog-details .author-blockquote {
    border: 1px solid #CED4E8;
    border-radius: 10px;
    padding: 34px 40px 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 33px;
}

@media only screen and (max-width: 1199px) {
    .blog-details .author-blockquote {
        padding: 19px 20px 20px;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .blog-details .author-blockquote {
        flex-direction: column;
    }
}

.blog-details .author-blockquote .quote-icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    background-color: var(--theme);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 40px;
    margin-top: 5px;
}

@media only screen and (max-width: 1199px) {
    .blog-details .author-blockquote .quote-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

.blog-details .author-blockquote .text {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.36;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .blog-details .author-blockquote .text {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1199px) {
    .blog-details .author-blockquote .text br {
        display: none;
    }
}

.blog-details .author-blockquote .author {
    margin-top: 18px;
}

.blog-details .author-blockquote .name {
    font-family: var(--font_inter);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--theme);
}

@media only screen and (max-width: 1199px) {
    .blog-details .author-blockquote .name {
        font-size: 16px;
    }
}

.blog-details .author-blockquote .post {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 4px;
}

.blog-details .gallery-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 33px;
}

.blog-details .gallery-wrapper img {
    border-radius: 10px;
}

.blog-details .tags-wrapper-box {
    margin-top: 40px;
    display: flex;
    gap: 10px 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-details .tags-wrapper {
    display: flex;
    gap: 6px;
    align-items: center;
}

.blog-details .tags-wrapper .title {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
    display: inline-block;
}

.blog-details .tags-wrapper .tag {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.blog-details .social-wrapper {
    display: flex;
    gap: 13px;
    align-items: center;
}

.blog-details .social-wrapper .title {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
    display: inline-block;
}

.blog-details .social-wrapper .blog-social {
    display: inline-flex;
    gap: 20px;
}

.blog-details .social-wrapper .blog-social a {
    font-size: 16px;
}

.blog-details .social-wrapper .blog-social a:hover {
    color: var(--black);
}

.post-navigation {
    margin-top: 56px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px 30px;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 575px) {
    .post-navigation {
        flex-direction: column;
    }
}

.post-navigation .post-nav-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
    .post-navigation .post-nav-shape {
        display: none;
    }
}

.post-navigation .prev-post {
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-navigation .prev-post .thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.post-navigation .prev-post .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.post-navigation .next-post {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: row-reverse;
}

@media (max-width: 575px) {
    .post-navigation .next-post {
        flex-direction: unset;
    }
}

.post-navigation .next-post .thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.post-navigation .next-post .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.author-message {
    margin-top: 60px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 30px;
    display: flex;
    gap: 20px 30px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .author-message {
        padding: 20px 20px;
        gap: 20px 20px;
    }
}

@media (max-width: 575px) {
    .author-message {
        flex-direction: column;
        align-items: flex-start;
    }
}

.author-message .thumb {
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .author-message .thumb {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }
}

.author-message .name {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .author-message .name {
        font-size: 20px;
    }
}

.author-message .post {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    color: var(--theme);
    margin-top: 5px;
}

.author-message .text {
    margin-top: 13px;
}

.comments-wrapper-box {
    margin-top: 53px;
}

.comment-header-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

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

.comments-wrapper {
    margin-top: 33px;
}

.comment-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 575px) {
    .comment-box {
        flex-direction: column;
    }
}

.comment-box:not(:first-child) {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-top: 30px;
}

@media only screen and (max-width: 1199px) {
    .comment-box:not(:first-child) {
        padding-top: 20px;
        margin-top: 20px;
    }
}

.comment-box.replied {
    padding-left: 135px;
}

@media only screen and (max-width: 1199px) {
    .comment-box.replied {
        padding-left: 30px;
    }
}

.comment-box .thumb {
    width: 110px;
    min-width: 110px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .comment-box .thumb {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }
}

.comment-box .content {
    position: relative;
}

.comment-box .reply-btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    position: absolute;
    top: 14px;
    right: 76px;
    color: var(--theme);
}

@media (max-width: 575px) {
    .comment-box .reply-btn {
        right: 0;
    }
}

.comment-box .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
}

.comment-box .name {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    margin-top: 7px;
}

.comment-box .text {
    margin-top: 10px;
}

.comment-form-wrapper-box {
    margin-top: 60px;
}

.comment-form-wrapper {
    background-color: var(--white);
    border-radius: 10px;
    padding: 33px 40px 40px;
}

@media only screen and (max-width: 1199px) {
    .comment-form-wrapper {
        padding: 23px 20px 20px;
    }
}

.comment-form-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

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

.comment-form-box {
    margin-top: 23px;
}

.comment-form-box .submit-btn {
    margin-top: 20px;
}

.comment-form-box .rr-btn {
    width: 100%;
    border-radius: 5px;
}

.comment-formwrap {
    display: grid;
    gap: 20px 22px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .comment-formwrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.comment-formwrap .span-2 {
    grid-column: span 2;
}

@media only screen and (max-width: 767px) {
    .comment-formwrap .span-2 {
        grid-column: auto;
    }
}

.comment-formfield {
    background-color: transparent;
    padding: 0 50px 0 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    position: relative;
    border: 1px solid var(--border);
}

.comment-formfield input {
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
    background: none;
}

.comment-formfield input:focus {
    background-color: none;
}

.comment-formfield input::-moz-placeholder {
    color: var(--secondary);
}

.comment-formfield input::placeholder {
    color: var(--secondary);
}

.comment-formfield i {
    font-size: 16px;
    color: var(--secondary);
    position: absolute;
    right: 20px;
    top: 17px;
}

.comment-formfield textarea {
    width: 100%;
    height: 150px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
    line-height: 17px;
    padding: 16px 0;
    background: none;
    resize: none;
}

.comment-formfield textarea:focus {
    background-color: none;
}

.comment-formfield textarea::-moz-placeholder {
    color: var(--secondary);
}

.comment-formfield textarea::placeholder {
    color: var(--secondary);
}

.comment-formfield select {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
    background: none;
}

.comment-formfield select:focus {
    background-color: none;
}

.comment-formfield select::-moz-placeholder {
    color: var(--secondary);
}

.comment-formfield select::placeholder {
    color: var(--secondary);
}

.comment-formfield .nice-select {
    height: 50px;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
}

.comment-formfield .nice-select .current {
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 16px;
    color: var(--black);
}

.comment-formfield .nice-select .option {
    height: 40px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    color: var(--se);
}

.comment-formfield .nice-select:after {
    display: none;
}

/* counter css */

/* counter area style  */

.counter-wrapper-box {
    margin-top: -65px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .counter-wrapper-box {
        margin-top: -60px;
    }
}

.counter-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1199px) {
    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .counter-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.counter-box {
    border: 1px solid #EBECF5;
    border-radius: 20px;
    padding: 35px 40px 36px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--white);
}

@media only screen and (max-width: 1919px) {
    .counter-box {
        padding: 30px 30px 31px;
    }
}

@media (max-width: 575px) {
    .counter-box {
        padding: 20px 20px 21px;
    }
}

.counter-box .icon {
    width: 54px;
    min-width: 54px;
    margin-top: 5px;
}

@media (max-width: 575px) {
    .counter-box .icon {
        width: 44px;
        min-width: 44px;
    }
}

.counter-box .title {
    font-family: var(--font_generalsansmedium);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--black);
    display: inline-block;
    display: flex;
    gap: 7px;
    align-items: flex-end;
}

.counter-box .number {
    font-family: var(--font_generalsanssemibold);
    font-weight: 600;
    font-size: 40px;
    line-height: 29px;
    display: inline-block;
}

.counter-box .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-top: 7px;
}

/* counter-2 area style  */

.counter-2-area {
    position: relative;
    z-index: 1;
}

.counter-2-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.counter-2-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 0, 58, 0.73);
}

.counter-2-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.counter-2-wrapper {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    padding: 0 30px;
}

@media only screen and (max-width: 1199px) {
    .counter-2-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 0;
    }
}

@media only screen and (max-width: 767px) {
    .counter-2-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.counter-2-wrapper>* {
    position: relative;
}

.counter-2-wrapper>*:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    left: -80px;
}

@media only screen and (max-width: 1199px) {
    .counter-2-wrapper>*:before {
        display: none;
    }
}

.counter-2-wrapper>*:first-child:before {
    display: none;
}

.counter-2-box {
    padding: 76px 0 78px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

@media only screen and (max-width: 1919px) {
    .counter-2-box {
        padding: 56px 0 58px;
    }
}

@media only screen and (max-width: 1199px) {
    .counter-2-box {
        padding: 0;
        justify-content: center;
    }
}

.counter-2-box .icon {
    margin-top: 9px;
}

.counter-2-box .icon img {
    height: 60px;
}

.counter-2-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1919px) {
    .counter-2-box .title {
        font-size: 40px;
    }
}

.counter-2-box .title .odometer.odometer-auto-theme,
.counter-2-box .title .odometer.odometer-theme-default {
    font-family: inherit;
    line-height: inherit;
}

.counter-2-box .text {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    margin-top: 2px;
}

/* counter-3 area style  */

.counter-3-header {
    text-align: center;
}

.counter-3-header .title-wrapper {
    margin-top: 19px;
}

.counter-3-header .section-title {
    max-width: 625px;
    margin-inline: auto;
}

.counter-3-wrapper-box {
    margin-top: 59px;
}

.counter-3-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
    .counter-3-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .counter-3-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.counter-3-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: var(--white);
    padding: 142px 50px 50px;
    position: relative;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .counter-3-box {
        padding: 102px 20px 30px;
    }
}

.counter-3-box:hover {
    border-color: var(--theme);
}

.counter-3-box:hover .icon {
    background-color: var(--theme);
    border-color: var(--theme);
}

.counter-3-box:hover .icon img {
    filter: invert(0) brightness(10) contrast(10);
}

.counter-3-box .icon {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px 0 10px 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: absolute;
    top: -1px;
    left: -1px;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .counter-3-box .icon {
        width: 80px;
        height: 80px;
    }
}

.counter-3-box .icon img {
    height: 50px;
}

@media only screen and (max-width: 1199px) {
    .counter-3-box .icon img {
        height: 40px;
    }
}

.counter-3-box .title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .counter-3-box .title {
        font-size: 30px;
    }
}

.counter-3-box .text {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* cta css */

/* cta area style  */

.cta-area {
    margin: 0 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media only screen and (max-width: 1199px) {
    .cta-area {
        margin: 0 15px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-area {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-area {
        padding: 30px 10px;
    }
}

.cta-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.cta-area-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 0, 58, 0.73);
}

.cta-area-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cta-area-inner {
    display: grid;
    gap: 40px 160px;
    grid-template-columns: auto 540px auto;
    align-items: center;
}

@media only screen and (max-width: 1919px) {
    .cta-area-inner {
        grid-template-columns: auto 460px auto;
    }
}

@media only screen and (max-width: 1399px) {
    .cta-area-inner {
        grid-template-columns: auto 400px auto;
    }
}

@media only screen and (max-width: 1199px) {
    .cta-area-inner {
        grid-template-columns: auto 320px auto;
        gap: 80px 80px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-area-inner {
        grid-template-columns: auto;
        gap: 40px 80px;
    }
}

.cta-info-box .title {
    font-family: var(--font_inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
}

.cta-info-box .client-group {
    display: inline-flex;
    margin-top: 23px;
}

.cta-info-box .client-group img {
    width: 60px;
    height: 60px;
    border: 3px solid var(--black);
    border-radius: 50%;
}

@media only screen and (max-width: 1199px) {
    .cta-info-box .client-group img {
        width: 50px;
        height: 50px;
    }
}

.cta-info-box .client-group img:not(:first-child) {
    margin-left: -24px;
}

.cta-info-box .rating-box {
    margin-top: 25px;
}

.cta-info-box .rating-box .text {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    margin-top: 4px;
}

.cta-info-box .rating-star {
    display: inline-flex;
    gap: 3px;
}

.cta-info-box .rating-star i {
    color: #FFBE11;
    font-size: 16px;
    line-height: 1;
}

.cta-content {
    padding: 72px 0 80px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .cta-content {
        padding: 32px 0 40px;
    }
}

.cta-content:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(227, 231, 240, 0.1);
    top: 0;
    left: -80px;
}

@media only screen and (max-width: 1199px) {
    .cta-content:before {
        left: -40px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-content:before {
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
    }
}

.cta-content:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(227, 231, 240, 0.1);
    top: 0;
    right: -80px;
}

@media only screen and (max-width: 1199px) {
    .cta-content:after {
        right: -40px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-content:after {
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
        top: auto;
        right: auto;
    }
}

.cta-content .section-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    color: var(--white);
}

.cta-content .text-wrapper {
    margin-top: 16px;
}

.cta-content .text {
    color: #A7ACB5;
}

.cta-content .btn-wrapper {
    margin-top: 28px;
}

.cta-content .rr-btn {
    padding: 16px 40px;
}

.cta-down-option .number {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    color: var(--white);
}

@media only screen and (max-width: 1919px) {
    .cta-down-option .number {
        font-size: 44px;
    }
}

@media only screen and (max-width: 1199px) {
    .cta-down-option .number {
        font-size: 32px;
    }
}

.cta-down-option .text {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 1px;
}

@media only screen and (max-width: 1919px) {
    .cta-down-option .text {
        font-size: 14px;
    }
}

/* cta-2 area style  */

.cta-2-area-inner {
    border: 1px solid var(--theme);
    border-radius: 30px;
    display: grid;
    gap: 0px 50px;
    grid-template-columns: 1fr 550px;
}

@media only screen and (max-width: 1199px) {
    .cta-2-area-inner {
        grid-template-columns: 1fr 460px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-2-area-inner {
        grid-template-columns: 1fr;
    }
}

.cta-2-content {
    padding: 98px 0 120px 120px;
}

@media only screen and (max-width: 1199px) {
    .cta-2-content {
        padding: 48px 0 70px 70px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-2-content {
        padding: 28px 30px 50px 30px;
    }
}

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

.cta-2-content .title-wrapper {
    margin-top: 19px;
}

.cta-2-content .btn-wrapper {
    margin-top: 39px;
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
}

.cta-2-content .cta-box {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-2-content .cta-box .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--theme);
    border: 1px solid var(--theme);
}

.cta-2-content .cta-box .number {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.22;
    color: var(--theme);
}

.cta-2-content .cta-box .number a:hover {
    color: var(--black);
}

.cta-2-content .cta-box .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-top: 5px;
}

.cta-2-thumb {
    margin: 10px 10px 10px 0;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    -webkit-mask-image: url(../imgs/shape/shape-16.webp);
    mask-image: url(../imgs/shape/shape-16.webp);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

@media only screen and (max-width: 991px) {
    .cta-2-thumb {
        -webkit-mask-image: none;
        mask-image: none;
        border-radius: 0 0 30px 30px;
        margin: 0 10px 10px 10px;
    }
}

.cta-2-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* feature css */

/* feature-1 area style  */

.feature-1-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 540px 680px;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .feature-1-area-inner {
        grid-template-columns: 420px 500px;
    }
}

@media only screen and (max-width: 991px) {
    .feature-1-area-inner {
        grid-template-columns: auto;
    }
}

.feature-1-content .title-wrapper {
    margin-top: 19px;
}

.feature-1-content .text-wrapper {
    margin-top: 32px;
}

.feature-1-content .btn-wrapper {
    margin-top: 33px;
}

.feature-1-box {
    border: 1px solid var(--border);
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 40px;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .feature-1-box {
        padding: 20px 20px;
        display: flex;
        gap: 20px;
    }
}

.feature-1-box:hover {
    box-shadow: 0px 18px 66px 3px rgba(107, 111, 118, 0.15);
}

.feature-1-box:hover:before {
    left: -52px;
    top: -76px;
    opacity: 1;
}

.feature-1-box:hover .icon {
    background-color: var(--theme);
}

.feature-1-box:hover .icon img {
    filter: invert(0) brightness(10) contrast(10);
}

.feature-1-box:before {
    position: absolute;
    content: "";
    width: 145px;
    height: 145px;
    left: -152px;
    top: -176px;
    background: #6421FF;
    filter: blur(60px);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .feature-1-box:before {
        width: 115px;
        height: 115px;
    }
}

.feature-1-box:not(:first-child) {
    margin-top: 25px;
}

.feature-1-box .icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-color: #EFF0FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .feature-1-box .icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
        padding: 20px;
    }
}

.feature-1-box .content {
    margin-top: 6px;
}

@media only screen and (max-width: 1199px) {
    .feature-1-box .content {
        margin-top: 0;
    }
}

.feature-1-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .feature-1-box .title {
        font-size: 20px;
    }
}

.feature-1-box .text {
    margin-top: 9px;
}

/* feature-2 area style  */

.feature-2-area {
    position: relative;
    z-index: 1;
}

.feature-2-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.feature-2-area-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #20143C;
    opacity: 0.77;
    z-index: 1;
}

.feature-2-area-bg img {
    width: 100%;
    height: 104%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-2-content {
    text-align: center;
}

.feature-2-content .title-wrapper {
    margin-top: 19px;
}

.feature-2-content .section-title {
    color: var(--white);
}

.feature-2-wrapper-box {
    margin-top: 59px;
}

.feature-2-wrapper {
    display: grid;
    gap: 25px 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .feature-2-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature-2-box {
    border: 1px solid var(--border);
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .feature-2-box {
        padding: 20px 20px;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .feature-2-box {
        flex-direction: column;
    }
}

.feature-2-box:hover {
    box-shadow: 0px 18px 66px 3px rgba(107, 111, 118, 0.15);
}

.feature-2-box:hover:before {
    left: -52px;
    top: -76px;
    opacity: 1;
}

.feature-2-box:hover .icon {
    background-color: var(--theme);
}

.feature-2-box:hover .icon img {
    filter: invert(0) brightness(10) contrast(10);
}

.feature-2-box:before {
    position: absolute;
    content: "";
    width: 145px;
    height: 145px;
    left: -152px;
    top: -176px;
    background: #6421FF;
    filter: blur(60px);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .feature-2-box:before {
        width: 115px;
        height: 115px;
    }
}

.feature-2-box .icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-color: #EFF0FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
    .feature-2-box .icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
        padding: 20px;
    }
}

.feature-2-box .content {
    margin-top: 6px;
}

@media only screen and (max-width: 1199px) {
    .feature-2-box .content {
        margin-top: 0;
    }
}

.feature-2-box .title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
}

@media only screen and (max-width: 1199px) {
    .feature-2-box .title {
        font-size: 20px;
    }
}

.feature-2-box .text {
    margin-top: 9px;
}

/* feature-3 area style  */

.feature-3-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: auto 700px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .feature-3-area-inner {
        grid-template-columns: auto 525px;
    }
}

@media only screen and (max-width: 991px) {
    .feature-3-area-inner {
        grid-template-columns: auto;
    }
}

.feature-3-thumb-wrapper {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 100/87;
    position: relative;
}

.feature-3-thumb-1 {
    width: 67%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
}

.feature-3-thumb-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-3-thumb-2 {
    width: 47%;
    height: 66%;
    border: 5px solid var(--white);
    border-radius: 40px;
    position: absolute;
    right: 15px;
    overflow: hidden;
    top: 22%;
    transform: rotate(5deg);
    box-shadow: 0px 18px 66px 0px rgba(107, 111, 118, 0.15);
}

@media only screen and (max-width: 1199px) {
    .feature-3-thumb-2 {
        border-width: 3px;
    }
}

.feature-3-thumb-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-3-content .title-wrapper {
    margin-top: 19px;
}

.feature-3-content .text-wrapper {
    margin-top: 28px;
}

.feature-3-content .feature-list {
    margin-top: 23px;
    display: flex;
    gap: 20px 48px;
    align-items: center;
    flex-wrap: wrap;
}

.feature-3-content .feature-list ul {
    display: inline-block;
}

.feature-3-content .feature-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-3-content .feature-list li i {
    color: var(--theme);
    margin-top: 9px;
}

.feature-3-content .cta-box {
    display: flex;
    gap: 30px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .feature-3-content .cta-box {
        gap: 20px;
    }
}

.feature-3-content .cta-box .icon {
    width: 77px;
    min-width: 77px;
    height: 77px;
    background-color: #F0EDF8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1199px) {
    .feature-3-content .cta-box .icon {
        width: 67px;
        min-width: 67px;
        height: 67px;
    }
}

.feature-3-content .cta-box .icon.rr-bg-white {
    background-color: var(--white);
}

.feature-3-content .cta-box .number {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.12;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .feature-3-content .cta-box .number {
        font-size: 20px;
    }
}

.feature-3-content .cta-box .number a:hover {
    color: var(--black-2);
}

.feature-3-content .cta-box .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: var(--theme);
    margin-top: 10px;
}

.feature-3-content .btn-wrapper {
    margin-top: 29px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

/* faq css */

/* faq-project group style  */

.faq-project-group {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
}

.faq-project-group-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #0E143D;
    z-index: -1;
}

.faq-project-group-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* faq area style  */

.faq-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 1fr 622px;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .faq-area-inner {
        grid-template-columns: 1fr 512px;
    }
}

@media only screen and (max-width: 991px) {
    .faq-area-inner {
        grid-template-columns: 1fr;
    }
}

.faq-thumb-wrapper {
    width: 100%;
    max-width: 670px;
    aspect-ratio: 100/80;
    overflow: hidden;
    position: relative;
}

.faq-thumb-1 {
    width: 69%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
}

.faq-thumb-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.faq-thumb-2 {
    width: 47%;
    height: 66%;
    border: 5px solid var(--white);
    border-radius: 40px;
    position: absolute;
    right: 15px;
    overflow: hidden;
    top: 22%;
    transform: rotate(5deg);
}

@media only screen and (max-width: 1199px) {
    .faq-thumb-2 {
        border-width: 3px;
    }
}

.faq-thumb-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.faq-content .title-wrapper {
    margin-top: 19px;
}

.faq-content .section-title {
    color: var(--white);
}

.faq-accordion {
    margin-top: 49px;
}

.faq-accordion .accordion {
    display: grid;
    gap: 20px;
}

.faq-accordion .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    background-color: var(--white);
}

.faq-accordion .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    line-height: 22px;
    padding: 16px 30px;
    background-color: var(--white);
    box-shadow: none;
}

@media only screen and (max-width: 767px) {
    .faq-accordion .accordion-button {
        padding: 16px 15px;
    }
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--theme);
    color: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: var(--font_awesome);
    color: var(--black);
    font-size: 16px;
}

.faq-accordion .accordion-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--secondary);
    padding: 23px 30px 24px;
}

@media only screen and (max-width: 767px) {
    .faq-accordion .accordion-body {
        padding: 23px 15px 24px;
    }
}

/* text-slider css */

/* text-slider area style  */

.text-slider-active .swiper-wrapper {
    transition-timing-function: linear !important;
}

.text-slider-active .swiper-slide {
    width: auto;
}

.text-slider {
    padding-top: 31px;
    padding-bottom: 32px;
    background-color: var(--theme);
}

@media only screen and (max-width: 1919px) {
    .text-slider {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

@media only screen and (max-width: 1199px) {
    .text-slider {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.text-slider-item .title {
    font-size: 100px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: var(--white);
}

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

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

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

.text-slider-item .title.stroke {
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.text-slider-item .title .icon {
    font-size: 55px;
    margin-right: 38px;
}

@media only screen and (max-width: 1919px) {
    .text-slider-item .title .icon {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .text-slider-item .title .icon {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .text-slider-item .title .icon {
        font-size: 25px;
    }
}

/* text-slider area style  */

.text-slider-2-active .swiper-wrapper {
    transition-timing-function: linear !important;
}

.text-slider-2-active .swiper-slide {
    width: auto;
}

.text-slider-2 {
    padding-top: 97px;
    padding-bottom: 90px;
}

@media only screen and (max-width: 1919px) {
    .text-slider-2 {
        padding-top: 87px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .text-slider-2 {
        padding-top: 67px;
        padding-bottom: 60px;
    }
}

.text-slider-2-item .title {
    font-size: 100px;
    font-weight: 700;
    line-height: 1.21;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: var(--theme);
}

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

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

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

.text-slider-2-item .title.dark {
    color: var(--black);
}

.text-slider-2-item .title .icon {
    font-size: 55px;
    margin-right: 38px;
}

@media only screen and (max-width: 1919px) {
    .text-slider-2-item .title .icon {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .text-slider-2-item .title .icon {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .text-slider-2-item .title .icon {
        font-size: 25px;
    }
}

/* story css */

/* story area style  */

.story-header {
    text-align: center;
}

.story-header .title-wrapper {
    margin-top: 19px;
}

.story-header .section-title {
    color: var(--white);
    max-width: 890px;
    margin-inline: auto;
}

.story-thumb-wrapper {
    margin-top: 59px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.story-thumb-wrapper .play-button {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--theme);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.story-thumb-wrapper .play-button:hover {
    background-color: var(--theme);
    color: var(--white);
}

.story-thumb-wrapper .play-button:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation-name: popupBtn;
    animation-duration: 1.8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: -1;
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* story-2 area style  */

.story-2-header {
    text-align: center;
}

.story-2-header .title-wrapper {
    margin-top: 19px;
}

.story-2-header .section-title {
    max-width: 890px;
    margin-inline: auto;
}

.story-2-thumb-wrapper-box {
    margin-top: 59px;
    position: relative;
    z-index: 1;
}

.story-2-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.story-2-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.story-2-thumb-wrapper {
    border-radius: 25px;
    max-width: 1040px;
    margin-inline: auto;
    box-shadow: 0px 36px 68px 2px rgba(15, 19, 46, 0.07);
    border: 10px solid var(--white);
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .story-2-thumb-wrapper {
        border-radius: 20px;
        border-width: 5px;
    }
}

.story-2-thumb-wrapper img {
    width: 100%;
}

.story-2-thumb {
    position: relative;
    overflow: hidden;
}

.story-2-thumb:before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(16, 20, 28, 0) 0%, rgba(17, 20, 27, 0.85) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.story-2-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 200px;
}

.story-2-thumb .story-video-btn {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: var(--theme);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
}

.story-2-thumb .story-video-btn:hover {
    background-color: var(--white);
    color: var(--theme);
}

.story-2-thumb .story-video-btn:hover .icon {
    background-color: var(--theme);
    color: var(--white);
}

.story-2-thumb .story-video-btn .text {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    padding: 0px 30px 0px 40px;
    display: inline-block;
    text-transform: uppercase;
}

.story-2-thumb .story-video-btn .icon {
    font-size: 24px;
    color: var(--theme);
    padding: 10px;
    width: 60px;
    height: 60px;
    background-color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

/* brand css */

/* brand area style  */

.brand-header .text-wrapper {
    margin-top: -5px;
}

.brand-header .text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    color: var(--black);
}

.brands-wrapper-box {
    margin-top: 35px;
}

.brand-slider-active {
    margin: -40px 0;
    padding: 40px 0;
}

.brand-slider-active .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-slider-active .swiper-slide {
    width: auto;
}

.brand-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 268px;
    height: 100px;
    background-color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .brand-box {
        width: 198px;
        height: 80px;
    }
}

.brand-box:hover {
    border-color: transparent;
    box-shadow: 0px 11px 38px 0px rgba(25, 14, 50, 0.17);
}

/* brand-2 area style  */

.brand-2-area-inner {
    border: 1px solid var(--theme);
    border-radius: 30px;
    background-color: #EBEDF5;
    padding: 100px;
}

@media only screen and (max-width: 1919px) {
    .brand-2-area-inner {
        padding: 70px;
    }
}

@media only screen and (max-width: 1199px) {
    .brand-2-area-inner {
        padding: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .brand-2-area-inner {
        padding: 20px;
    }
}

.brand-2-header {
    display: grid;
    gap: 30px 60px;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
}

@media only screen and (max-width: 767px) {
    .brand-2-header {
        grid-template-columns: 1fr;
    }
}

.brand-2-header .title-wrapper {
    margin-top: 19px;
}

.brand-2-header .btn-wrapper {
    margin-bottom: 12px;
}

.brands-2-wrapper-box {
    margin-top: 59px;
}

.brands-2-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
    .brands-2-wrapper {
        gap: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .brands-2-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .brands-2-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-2-box {
    height: 100px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .brand-2-box {
        height: 80px;
    }
}

.brand-2-box:hover {
    border-color: transparent;
    box-shadow: 0px 11px 38px 0px rgba(25, 14, 50, 0.17);
}

/* brand-3 area style  */

.brand-3-area {
    position: relative;
    z-index: 1;
    margin: 0 30px;
    border-radius: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .brand-3-area {
        margin: 0 15px;
    }
}

.brand-3-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.brand-3-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.brand-3-area-inner {
    padding: 80px 0;
}

@media only screen and (max-width: 1919px) {
    .brand-3-area-inner {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .brand-3-area-inner {
        padding: 40px 0;
    }
}

.brand-3-slider-active .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-3-slider-active .swiper-slide {
    width: auto;
}

/* brand-4 area style  */

.brands-4-wrapper-box {
    margin-top: 103px;
    display: grid;
    margin-left: 33.33%;
    grid-template-columns: 1600px;
}

@media only screen and (max-width: 1919px) {
    .brands-4-wrapper-box {
        margin-top: 90px;
    }
}

@media only screen and (max-width: 1399px) {
    .brands-4-wrapper-box {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .brands-4-wrapper-box {
        margin-top: 60px;
        margin-left: 0;
        grid-template-columns: 100%;
    }
}

.brands-4-wrapper {
    padding: 53px 43px 15px;
    background-color: var(--white);
    position: relative;
    border-radius: 100px 0 0 0;
}

@media only screen and (max-width: 1199px) {
    .brands-4-wrapper {
        border-radius: 0;
        padding: 53px 0px 15px;
        margin-left: -15px;
        margin-right: -15px;
    }
}

.brands-4-wrapper:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    background-color: transparent;
    right: calc(100% - 2px);
    bottom: 0;
    border-radius: 100px;
    box-shadow: 100px 100px var(--white);
}

@media only screen and (max-width: 1199px) {
    .brands-4-wrapper:before {
        display: none;
    }
}

.brand-4-slider-active {
    margin: -40px 0;
    padding: 40px 0;
}

.brand-4-slider-active .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-4-slider-active .swiper-slide {
    width: auto;
}

.brand-4-box {
    border: 1px solid var(--border);
    border-radius: 100px;
    width: 250px;
    height: 108px;
    background-color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .brand-4-box {
        width: 198px;
        height: 80px;
    }
}

.brand-4-box:hover {
    border-color: transparent;
    box-shadow: 0px 11px 38px 0px rgba(25, 14, 50, 0.17);
}

/* breadcrumb css */

/* breadcrumb area style  */

.breadcrumb-area {
    margin-top: 155px;
    padding: 40px 40px 0;
}

@media only screen and (max-width: 1919px) {
    .breadcrumb-area {
        margin-top: 135px;
        padding: 20px 20px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .breadcrumb-area {
        margin-top: 125px;
        padding: 10px 10px 0;
    }
}

@media (max-width: 575px) {
    .breadcrumb-area {
        margin-top: 80px;
    }
}

.breadcrumb-area-inner {
    border: 10px solid var(--white);
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .breadcrumb-area-inner {
        border-width: 5px;
        border-radius: 20px;
    }
}

.breadcrumb-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.breadcrumb-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(5, 9, 26, 0) 0%, rgba(18, 7, 77, 0.95) 100%);
}

.breadcrumb-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.breadcrumb-content {
    padding-top: 173px;
    padding-bottom: 191px;
}

@media only screen and (max-width: 1919px) {
    .breadcrumb-content {
        padding-top: 133px;
        padding-bottom: 151px;
        padding-left: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .breadcrumb-content {
        padding-top: 103px;
        padding-bottom: 121px;
        padding-left: 60px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-content {
        padding-left: 0;
    }
}

.breadcrumb-content .breadcrumb-title {
    font-weight: 600;
    font-size: 54px;
    line-height: 1.35;
    color: var(--white);
}

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

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

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

@media (max-width: 575px) {
    .breadcrumb-content .breadcrumb-title {
        font-size: 34px;
    }
}

.rr-breadcrumb {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 30px;
    list-style: none;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    display: inline-flex;
    margin-top: 23px;
}

.rr-breadcrumb li {
    display: inline-block;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    color: var(--white);
}

.rr-breadcrumb li+li:before {
    padding: 0 7px;
    color: var(--white);
    content: "/ ";
}

.rr-breadcrumb li a {
    color: var(--white);
    text-decoration: none;
}

.rr-breadcrumb li a:hover {
    color: var(--white-2);
}

/* newsletter css */

/* newsletter area style  */

.newsletter-area {
    position: relative;
    z-index: 1;
    margin: 0 30px;
    border-radius: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .newsletter-area {
        margin: 0 15px;
    }
}

.newsletter-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.newsletter-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.newsletter-content {
    text-align: center;
}

.newsletter-content .title-wrapper {
    margin-top: -12px;
}

.newsletter-content .section-title {
    color: var(--white);
    max-width: 530px;
    margin-inline: auto;
}

.newsletter-content .text-wrapper {
    margin-top: 16px;
}

.newsletter-content .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
    color: var(--white);
    max-width: 710px;
    margin-inline: auto;
}

.newsletter-content .newsletter-box-form {
    margin-top: 33px;
}

.newsletter-content .demo-box-form {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-content .demo-box-form .input-field {
    background-color: var(--white);
    border-radius: 10px;
    padding: 13px 20px;
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    max-width: 260px;
}

.newsletter-content .demo-box-form .input-field i {
    color: var(--theme);
}

.newsletter-content .demo-box-form .input-field input {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    color: var(--black);
    font-size: 16px;
    line-height: 19px;
    width: 100%;
}

.newsletter-content .demo-box-form .rr-btn {
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 500;
    text-transform: unset;
}

.newsletter-content .demo-box-form .rr-btn i {
    transform: rotate(-45deg);
}

/* contact css */

/* contact area style  */

.contact-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .contact-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.contact-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px 30px 26px;
}

@media only screen and (max-width: 1199px) {
    .contact-box {
        padding: 15px 15px 21px;
    }
}

.contact-box:hover .icon {
    border-color: transparent;
    background-color: var(--theme);
    color: var(--white);
}

.contact-box .thumb {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.contact-box .thumb img {
    width: 100%;
}

.contact-box .icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--theme);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 15px 0 15px;
    transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
    .contact-box .icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.contact-box .contact-text {
    margin-top: 24px;
}

.contact-box .link {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    color: var(--black);
}

@media only screen and (max-width: 1199px) {
    .contact-box .link {
        font-size: 20px;
    }
}

.contact-box .link a:hover {
    color: var(--black-2);
}

.contact-box .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 11px;
}

.contact-form-wrapper-box {
    margin-top: 24px;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    padding: 80px;
    display: grid;
    gap: 40px 40px;
    grid-template-columns: 1fr 520px;
}

@media only screen and (max-width: 1199px) {
    .contact-form-wrapper {
        padding: 30px;
        grid-template-columns: 1fr 420px;
        gap: 40px 30px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form-wrapper {
        padding: 10px;
    }
}

.contact-form-content .section-title {
    margin-top: 19px;
}

.main-contact-wrap {
    margin-top: 44px;
}

.main-contact-wrap .submit-btn {
    margin-top: 30px;
}

.main-contact-wrap .rr-btn {
    padding: 19px 28px;
}

.contact-formwrap {
    display: grid;
    gap: 20px 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .contact-formwrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.contact-formwrap .span-2 {
    grid-column: span 2;
}

@media only screen and (max-width: 767px) {
    .contact-formwrap .span-2 {
        grid-column: auto;
    }
}

.contact-formfield {
    background-color: #F7F8FA;
    padding: 0 50px 0 20px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    position: relative;
}

.contact-formfield input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
    background: none;
}

.contact-formfield input:focus {
    background-color: none;
}

.contact-formfield input::-moz-placeholder {
    color: var(--secondary);
}

.contact-formfield input::placeholder {
    color: var(--secondary);
}

.contact-formfield i {
    font-size: 14px;
    color: var(--secondary);
    position: absolute;
    right: 20px;
    top: 17px;
}

.contact-formfield textarea {
    width: 100%;
    height: 125px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
    line-height: 17px;
    padding: 16px 0;
    background: none;
    resize: none;
}

.contact-formfield textarea:focus {
    background-color: none;
}

.contact-formfield textarea::-moz-placeholder {
    color: var(--secondary);
}

.contact-formfield textarea::placeholder {
    color: var(--secondary);
}

.contact-formfield select {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    color: var(--black);
    transition: all 0.5s;
    font-size: 16px;
    background: none;
}

.contact-formfield select:focus {
    background-color: none;
}

.contact-formfield select::-moz-placeholder {
    color: var(--secondary);
}

.contact-formfield select::placeholder {
    color: var(--secondary);
}

.contact-formfield .nice-select {
    height: 50px;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
}

.contact-formfield .nice-select .current {
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 16px;
    color: var(--black);
}

.contact-formfield .nice-select .option {
    height: 40px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    color: var(--se);
}

.contact-formfield .nice-select:after {
    display: none;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    min-height: 250px;
}

/* error css */

/* error area style  */

.error-content {
    text-align: center;
}

.error-content .thumb img {
    width: 910px;
}

@media only screen and (max-width: 1919px) {
    .error-content .thumb img {
        width: 700px;
    }
}

@media only screen and (max-width: 1199px) {
    .error-content .thumb img {
        width: 650px;
    }
}

@media only screen and (max-width: 991px) {
    .error-content .thumb img {
        width: 550px;
    }
}

@media only screen and (max-width: 767px) {
    .error-content .thumb img {
        width: 450px;
    }
}

.error-content .title-wrapper {
    margin-top: 69px;
}

@media only screen and (max-width: 1199px) {
    .error-content .title-wrapper {
        margin-top: 49px;
    }
}

.error-content .text-wrapper {
    margin-top: 12px;
}

.error-content .text {
    font-size: 20px;
    line-height: 28px;
}

@media only screen and (max-width: 1199px) {
    .error-content .text {
        font-size: 16px;
        line-height: 26px;
    }
}

.error-content .btn-wrapper {
    margin-top: 34px;
}

/*# sourceMappingURL=style.css.map */