/* ============================ 1.Defualt CSS ======================= */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}
::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
    scrollbar-width: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
:root {
    --e-global-color-primary: #FF2424;
    --e-global-color-black: #000000;
    --e-global-color-white: #FFFFFF;
    --e-global-color-gray: #A8A9AD;
    --e-global-color-dark-gray: #222222;
    --e-global-color-light-gray: #F5F6F7;
    --e-global-color-background: #EAE5E0;
    --e-global-typography-primary-font-family: "Outfit", sans-serif;
}
.container {
    max-width: 1290px;
    width: 100%;
    margin: auto;
    padding: 0 12px;
}
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-50%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* ============================ 2.Header CSS ======================= */
header {
    position: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}
header.scrolled {
    background-color: var(--e-global-color-black);
    transition: 0.3s ease;
}
header.scrolled .preview-header {
    padding: 25px 30px;
}
.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 80px;
}
.preview-nav ul {
    display: flex;
    gap: 60px;
    position: relative;
}
.preview-nav li {
    list-style: none;
}
.preview-nav li a {
    text-transform: uppercase;
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.preview-nav li a:hover {
    color: var(--e-global-color-primary);
}
.site-btn {
    position: relative;
    overflow: hidden;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    padding: 0px 30px;
    text-decoration: none;
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    border: 2px solid var(--e-global-color-primary);
    z-index: 1;
    transition: color 0.4s ease;
}
.site-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--e-global-color-white);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}
.site-btn:hover {
    color: var(--e-global-color-primary);
}
.site-btn:hover::before {
    left: 0;
}
.site-btn p,
.site-btn img {
    position: relative;
    z-index: 2;
    margin: 0;
}
.site-btn:hover img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(71%) saturate(6231%) hue-rotate(352deg) brightness(107%) contrast(100%);
}
.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-white);
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 10px;
}
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    font-size: 28px;
    width: 52px;
    height: 52px;
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-white);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.site-logo img {
    max-width: 190px;
    width: 100%;
}
/* ============================ 3.Hero CSS ======================= */
.hero-section {
    position: relative;
    min-height: 935px;
    background: url('../image/hero-section.png') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}
.hero-section>* {
    position: relative;
    z-index: 5;
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 7;
    padding: 0px 12px;
}
.hero-heading {
    text-align: center;
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 200px;
    font-weight: 400;
    line-height: auto;
    position: relative;
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    animation: paintReveal 1.1s cubic-bezier(.77, 0, .18, 1) forwards;
}
@keyframes paintReveal {
    to {
        clip-path: inset(0 0% 0 0);
    }
}
.hero-heading::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--e-global-color-white);
}
.hero-second-heding {
    margin-top: 30px;
    text-align: center;
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 48px;
    font-weight: 500;
    line-height: auto;
    letter-spacing: 11%;
}
.hero-img1 {
    position: absolute;
    top: 200px;
    left: 165px;
}
.hero-img2 {
    position: absolute;
    top: 135px;
    right: 452px;
}
.hero-img3 {
    position: absolute;
    bottom: 80px;
    left: 245px;
}
.hero-img4 {
    position: absolute;
    bottom: 150px;
    right: 155px;
}
.hero-img1,
.hero-img2,
.hero-img3,
.hero-img4 {
    will-change: transform;
}
/* ============================ 4.Marquee Slider CSS ======================= */
.marquee-section1 {
    margin-top: 30px;
    overflow: hidden;
}
.marquee-track4 {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}
.slider-text-star {
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 40px;
}
.marquee-text {
    font-family: var(--e-global-typography-primary-font-family);
    color: var(--e-global-color-black);
    font-size: 32px;
    font-weight: 500;
    white-space: nowrap;
}
/* ============================ 5.Pages CSS ======================= */
.second-title {
    text-align: center;
    color: var(--e-global-color-black);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
}
.pages-content {
    width: 100%;
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 2;
    padding: 0px 12px;
}
.second-paragraph {
    margin-top: 20px;
    text-align: center;
    color: var(--e-global-color-gray);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.pages-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
}
.pages-icon-info {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
    width: 100%;
    margin-top: 30px;
}
.pages-icon-img {
    width: 100%;
    max-width: 48px;
    height: 48px;
    background-color: var(--e-global-color-primary);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pages-title {
    color: var(--e-global-color-black);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}
.pages-border {
    border-right: 1px solid var(--e-global-color-white);
}
.pages-img {
    padding: 75px;
}
.pages-images {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    background-color: var(--e-global-color-background);
}
.page-details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
}
.page-details-title {
    color: var(--e-global-color-black);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.pages-photo {
    width: 100%;
}
.pages-count {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 160px;
    font-weight: 700;
    line-height: 190px;
    color: var(--e-global-color-light-gray);
}
/* ============================ 6.Expertly Section CSS ======================= */
.expertly-section {
    padding: 100px 0;
}
.expertly-section2 {
    padding-top: 0;
}
.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.2;
}
.gridrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.feature-card {
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-img img {
    width: 100%;
    display: block;
}
.feature-content {
    padding-top: 25px;
}
.feature-content h3 {
    margin-bottom: 10px;
    color: var(--3, #000000);
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}
.feature-content p {
    color: var(--4, #222222);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.bdia {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
/* ============================ 6.Marquee Section CSS ======================= */
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}
.marquee-track1 {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}
.marquee-track .slide {
    flex-shrink: 0;
    background-color: var(--e-global-color-light-gray);
    padding: 20px;
    border-radius: 20px;
}
.marquee-track .slide img {
    height: 400px;
    object-fit: cover;
    width: auto;
    display: block;
    border-radius: 12px;
}
.first-marquee {
    margin-top: 60px;
}
.second-marquee {
    margin-top: 40px;
}
.pages-photo-section {
    padding: 100px 0px;
    background-color: var(--e-global-color-background);
}
.pages-slider-paragraph {
    color: var(--4, #222222);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    padding-top: 15px;
}
/* ============================ 7.Premium Feature Section CSS ======================= */
.pages-section {
    padding: 100px 0;
}
.pages-content1 {
    width: 100%;
    max-width: 630px;
    margin: auto;
    position: relative;
    z-index: 2;
    padding: 0px 12px;
}
.pages-content1 .second-paragraph {
    margin-bottom: 15px;
}
.rowferu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.feature-box {
    background: #fff;
    border-radius: 22px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #ececec;
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.icon-box {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
    margin-bottom: 25px;
    position: relative;
}
.icon-box img {
    width: 80px;
}
.purple {
    background: rgb(124, 77, 255, 0.12);
}
.yellow {
    background: rgba(251, 188, 4, 0.12);
}
.pink {
    background: rgba(146, 49, 190, 0.12);
}
.blue {
    background: rgba(83, 193, 222, 0.12);
}
.blue-swiper {
    background: rgba(1, 137, 255, 0.12);
}
.blue-typscript {
    background: rgba(22, 119, 199, 0.12);
}
.red {
    background: rgba(244, 66, 80, 0.12);
}
.responsive {
    background: rgba(104, 177, 252, 0.12);
}
.feature-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}
.feature-tag {
    background: rgb(245, 246, 247);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000;
}
/* ============================ 7.Background Slider CSS ======================= */
.background-slider {
    background-image: url(../image/back-slider.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 840px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.back-slider {
    width: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.blur-heading {
    font-family: var(--e-global-typography-primary-font-family);
    color: var(--e-global-color-white);
    font-size: 90px;
    font-weight: 400;
    line-height: 120px;
    letter-spacing: -3%;
}
.background-slider .slider-text-star {
    white-space: nowrap;
}
/* ============================ 8.Performance Section CSS ======================= */
.demo-title {
    color: var(--5, #ffffff);
    text-align: center;
    font-size: 48px;
    line-height: 64px;
    font-weight: 600;
}
.performance-section {
    background-color: var(--e-global-color-black);
    padding: 100px 0px;
}
.performance-section h2 {
    text-align: center;
}
.performance-paragraph {
    margin-top: 20px;
    text-align: center;
    font-family: var(--e-global-typography-primary-font-family);
    color: var(--e-global-color-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.performance-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}
.performance-box {
    max-width: 300px;
    width: 100%;
    min-height: 300px;
    padding: 30px;
    background-color: var(--e-global-color-dark-gray);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    top: 0;
}
.performance-box img {
    transition: transform 0.3s ease;
}
.performance-box:hover {
    top: -10px;
    background-color: var(--e-global-color-dark-gray);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.performance-box:hover img {
    transform: scale(1.1) rotate(3deg);
}
.performance-title {
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    transition: color 0.3s ease;
}
/* ============================ 9.Responsive Section CSS ======================= */
.responsive-section {
    margin-top: 100px;
}
.responsive-grid {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.responsive-box {
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.responsive-box-icon {
    background-color: var(--e-global-color-background);
    max-width: 140px;
    min-height: 140px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.responsive-heading {
    margin-top: 20px;
    color: var(--e-global-color-black);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.responsive-paragraph-width {
    max-width: 140px;
    width: 100%;
    margin-top: 10px;
}
.responsive-paragraph {
    font-family: var(--e-global-typography-primary-font-family);
    text-align: center;
    color: var(--e-global-color-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
/* ============================ 10.Creative Section CSS ======================= */
.creative-section {
    padding: 100px 0px;
}
.creative-container {
    max-width: 850px;
    width: 100%;
    margin: auto;
}
.creative-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}
.creative-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
.creative-contain {
    padding: 40px;
    overflow: hidden;
}
.creative-title {
    color: var(--e-global-color-black);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.creative-paragraph {
    margin-top: 10px;
    color: var(--e-global-color-dark-gray);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.creative-box1 {
    background-color: #FCEFF2;
    background-image: linear-gradient(135deg, rgba(246, 107, 171, 0.2) 0%, rgba(255, 154, 140, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.creative-box2 {
    background-color: #EBF7FF;
    background-image: linear-gradient(135deg, rgba(78, 164, 245, 0.2) 0%, rgba(142, 249, 255, 0.2) 100%);
}
.creative-btn {
    width: fit-content;
    border-radius: 17px;
    padding: 5px 12px;
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 24px;
}
.creative-content-part {
    max-width: 165px;
    width: 100%;
}
.creative-box2-part {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.creative-all-box {
    width: 33.33%;
}
.creative-box3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FAF8ED;
    background-image: linear-gradient(135deg, rgba(197, 238, 108, 0.2) 0%, rgba(250, 200, 129, 0.2) 100%);
}
.phone5 {
    display: flex;
    margin: 0px auto;
}
.creative-box3 img {
    width: 100%;
    padding: 0px 40px;
}
.creative-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.elementor-option-lines1 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.elementor-icon-paragraph {
    color: var(--3, #000000);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.pages-slider-paragraph1 {
    color: var(--4, #222222);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    padding-top: 36px;
}
/* ============================ 11.Faq Section CSS ======================= */
.faq-section {
    padding: 100px 0px;
    background-color: var(--e-global-color-background);
}
.faq-container {
    margin-top: 40px;
}
.faq-item {
    background: var(--e-global-color-white);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.faq-icon i {
    display: inline-block;
    transition: transform 0.4s ease;
}
.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}
.faq-header {
    gap: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.faq-question {
    color: var(--e-global-color-black);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.faq-item.active .faq-question {
    color: var(--e-global-color-primary);
}
.faq-icon {
    color: var(--e-global-color-primary);
    font-size: 18px;
}
.faq-content {
    height: 0;
    overflow: hidden;
}
.faq-content-inner {
    border-top: 2px solid var(--e-global-color-background);
    padding: 20px;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
/* ============================ 12.Footer Section CSS ======================= */
.footer-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/footer-background.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px 40px 0px;
    position: relative;
}
.footer-heading {
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 64px;
    font-weight: 600;
    line-height: 90px;
    text-align: center;
}
.footer-button {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.footer_copyright {
    margin-top: 150px;
    text-align: center;
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.footer_copyright a {
    color: var(--e-global-color-white);
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.footer_copyright a:hover {
    color: var(--e-global-color-primary);
}
.news_ticker,
.news_ticker1 {
    overflow: hidden;
    width: 100%;
}
.news-group,
.news-group1 {
    display: flex;
    gap: 30px;
    will-change: transform;
}
.news-item {
    flex: 0 0 auto;
    max-width: 600px;
    width: 100%;
}
.news-item img {
    width: 100%;
    height: 100%;
    display: block;
}
.news-item-mobile {
    max-width: 270px;
}
.news-item-mobile img {
    height: 100%;
}
.news-item {
    background-color: var(--e-global-color-light-gray);
    padding: 20px;
    border-radius: 20px;
}
.news_ticker,
.news_ticker1,
.news-group1 {
    cursor: default !important;
}
.news-item a,
.news-item {
    cursor: pointer !important;
}
.creative-list-white .elementor-option-lines1 {
    color: #FFF;
}
/* ============================ Bottom To Top CSS ======================= */
.scroll-top {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #FF2424;
    color: #FFF;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(6px);
}
.scroll-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1440px) {
    .hero-img1 {
        top: 150px;
        left: 80px;
    }
    .hero-img2 {
        top: 135px;
        right: 100px;
    }
    .hero-img3 {
        bottom: 40px;
        left: 45px;
    }
    .hero-img4 {
        bottom: 50px;
        right: 80px;
    }
}
@media screen and (max-width: 1399px) {
    .hero-img1 {
        width: 100%;
        max-width: 120px;
    }
    .hero-img2 {
        width: 100%;
        max-width: 250px;
    }
    .hero-img3 {
        width: 100%;
        max-width: 230px;
    }
    .hero-img4 {
        width: 100%;
        max-width: 330px;
    }
    .hero-section {
        min-height: 900px;
    }
    .hero-heading {
        font-size: 180px;
    }
    .hero-second-heding {
        font-size: 45px;
    }
    .preview-header,
    header.scrolled .preview-header {
        padding: 20px 15px;
    }
    .pages-img {
        padding: 65px 60px;
    }
    .second-title,
    .demo-title {
        font-size: 45px;
        line-height: 55px;
    }
    .pages-images,
    .responsive-section {
        margin-top: 80px;
    }
    .pages-photo-section,
    .performance-section,
    .creative-section,
    .faq-section,
    .expertly-section,
    .pages-section {
        padding: 80px 0px;
    }
    .blur-heading {
        font-size: 80px;
        line-height: 110px;
    }
    .background-slider {
        min-height: 750px;
    }
    .creative-contain {
        padding: 30px;
    }
    .creative-box3 img {
        padding: 0px 30px;
    }
    .footer-background {
        padding: 100px 0px 40px 0px;
    }
    .footer_copyright {
        margin-top: 100px;
    }
    .footer-heading {
        font-size: 60px;
        line-height: 80px;
    }
}
@media screen and (max-width: 1199px) {
    .hero-img2 {
        width: 100%;
        max-width: 230px;
    }
    .hero-img3 {
        width: 100%;
        max-width: 200px;
    }
    .hero-img4 {
        width: 100%;
        max-width: 300px;
    }
    .hero-section {
        min-height: 800px;
    }
    .hero-heading {
        font-size: 160px;
    }
    .hero-second-heding {
        font-size: 42px;
    }
    .menu-toggle {
        display: flex;
        cursor: pointer;
    }
    .site-button {
        display: none;
    }
    .preview-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 100px 30px;
        gap: 30px;
        transition: 0.4s;
        z-index: 999;
    }
    .preview-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .preview-nav.active {
        right: 0;
    }
    .preview-nav li a {
        font-size: 20px;
    }
    .close-menu {
        display: flex;
    }
    .pages-img {
        padding: 50px 30px;
    }
    .elementor-ptions {
        margin-top: 30px;
    }
    .responsive-heading {
        font-size: 22px;
        line-height: 32px;
    }
    .blur-heading {
        font-size: 70px;
        line-height: 100px;
    }
    .background-slider {
        min-height: 650px;
    }
    .performance-box {
        min-height: 250px;
    }
    .performance-title {
        font-size: 20px;
        line-height: 30px;
    }
    .performance-grid,
    .responsive-grid,
    .creative-grid {
        gap: 20px;
    }
    .creative-contain {
        padding: 30px 20px;
    }
    .creative-box3 img {
        padding: 0px 20px;
    }
    .footer-heading {
        font-size: 52px;
        line-height: 72px;
    }
    .footer-background {
        padding: 80px 0px 40px 0px;
    }
    .footer_copyright {
        margin-top: 80px;
    }
}
@media screen and (max-width: 991px) {
    .hero-img1 {
        left: 50px;
    }
    .hero-img2 {
        width: 100%;
        max-width: 180px;
        right: 60px;
    }
    .hero-img3 {
        width: 100%;
        max-width: 150px;
        left: 40px;
    }
    .hero-img4 {
        width: 100%;
        max-width: 250px;
        right: 50px;
    }
    .hero-section {
        min-height: 700px;
    }
    .hero-heading {
        font-size: 150px;
    }
    .hero-second-heding {
        margin-top: 20px;
        font-size: 40px;
    }
    .pages-border {
        border-width: 0px;
    }
    .pages-img {
        padding: 40px 12px;
    }
    .pages-icons {
        gap: 40px;
    }
    .pages-count {
        font-size: 130px;
    }
    .second-title,
    .demo-title {
        font-size: 40px;
        line-height: 50px;
    }
    .pages-images,
    .responsive-section {
        margin-top: 60px;
    }
    .pages-photo-section,
    .performance-section,
    .creative-section,
    .faq-section,
    .expertly-section,
    .pages-section {
        padding: 60px 0px;
    }
    .marquee-track .slide img {
        height: 350px;
    }
    .first-marquee,
    .responsive-grid {
        margin-top: 40px;
    }
    .second-marquee {
        margin-top: 20px;
    }
    .blur-heading {
        font-size: 60px;
        line-height: 90px;
    }
    .background-slider {
        min-height: 550px;
    }
    .performance-grid,
    .creative-grid {
        flex-wrap: wrap;
    }
    .performance-box,
    .creative-all-box {
        width: 100%;
        max-width: 48%;
    }
    .footer-heading {
        font-size: 45px;
        line-height: 65px;
    }
    .footer-background {
        padding: 60px 0px 40px 0px;
    }
    .footer_copyright {
        margin-top: 60px;
    }
    .news-item {
        max-width: 500px;
    }
    .news-item-mobile {
        max-width: 250px;
    }
    .gridrow {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    .rowferu {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}
@media screen and (max-width: 767px) {
    .hero-img1,
    .hero-img2,
    .hero-img3,
    .hero-img4 {
        display: none;
    }
    .hero-section {
        min-height: 600px;
    }
    .hero-heading {
        font-size: 130px;
    }
    .hero-second-heding {
        font-size: 34px;
    }
    .pages-images {
        flex-wrap: wrap;
        gap: 20px;
        row-gap: 20px;
        padding: 50px 12px;
        margin-top: 50px;
    }
    .responsive-section {
        margin-top: 50px;
    }
    .pages-images a {
        width: 48%;
    }
    .pages-img {
        padding: 0px;
    }
    .page-details {
        margin-top: 10px;
    }
    .pages-icons {
        gap: 0px;
    }
    .pages-icons {
        flex-direction: column;
        align-items: center;
    }
    .pages-icon-info {
        max-width: 100%;
        margin-top: 10px;
        justify-content: center;
    }
    .second-title,
    .demo-title {
        font-size: 35px;
        line-height: 45px;
    }
    .pages-photo-section,
    .performance-section,
    .creative-section,
    .faq-section,
    .expertly-section,
    .pages-section {
        padding: 50px 0px;
    }
    .background-slider {
        min-height: 500px;
    }
    .performance-grid {
        margin-top: 40px;
    }
    .responsive-grid {
        flex-wrap: wrap;
    }
    .responsive-box {
        max-width: 48%;
    }
    .creative-box2-part {
        flex-direction: column;
    }
    .creative-content-part,
    .creative-image-part img,
    .creative-all-box {
        max-width: 100%;
    }
    .creative-image-part {
        max-width: 100px;
        width: 100%;
    }
    .creative-box2-part {
        margin-top: 10px;
    }
    .creative-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .creative-grid,
    .creative-button,
    .faq-container {
        margin-top: 30px;
    }
    .footer-background {
        padding: 50px 0px 40px 0px;
    }
    .footer_copyright,
    .footer-button {
        margin-top: 40px;
    }
    .footer-heading {
        font-size: 40px;
        line-height: 60px;
    }
    .blur-heading {
        font-size: 50px;
        line-height: 80px;
    }
    .news-item {
        max-width: 450px;
    }
    .news-item-mobile {
        max-width: 230px;
    }
    .feature-content {
        padding-top: 15px;
    }
    .rowferu {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media screen and (max-width: 640px) {
    .gridrow {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    .bdia {
        margin-top: 25px;
    }
}
@media screen and (max-width: 540px) {
    .hero-heading {
        font-size: 80px;
        text-align: center;
    }
    .hero-heading::after {
        height: 6px;
        bottom: 6px;
    }
    .hero-second-heding {
        font-size: 28px;
    }
    .hero-section {
        min-height: 550px;
    }
    .pages-images a {
        width: 100%;
        border-bottom: 2px solid #ffff;
        padding-bottom: 15px;
    }
    .pages-images a:last-child {
        border: none;
        padding: 0px;
    }
    .second-title,
    .demo-title,
    .footer-heading {
        font-size: 30px;
        line-height: 40px;
    }
    .pages-images {
        margin-top: 40px;
        padding: 40px 12px;
    }
    .responsive-section {
        margin-top: 40px;
    }
    .elementor-ptions,
    .second-marquee {
        margin-top: 20px;
    }
    .pages-photo-section,
    .performance-section,
    .creative-section,
    .faq-section,
    .footer-background,
    .expertly-section,
    .pages-section {
        padding: 40px 0px;
    }
    .marquee-track .slide img {
        height: 300px;
    }
    .first-marquee,
    .responsive-grid,
    .footer_copyright,
    .footer-button {
        margin-top: 30px;
    }
    .responsive-heading {
        font-size: 20px;
        line-height: 30px;
    }
    .news-group {
        gap: 20px;
    }
    .performance-box {
        width: 100%;
        max-width: 100%;
    }
    .performance-grid {
        margin-top: 30px;
    }
    .responsive-box {
        max-width: 100%;
    }
    .faq-question {
        font-size: 18px;
        line-height: 28px;
    }
    .faq-header,
    .faq-content-inner {
        padding: 15px 12px;
    }
    .blur-heading {
        font-size: 45px;
        line-height: 75px;
    }
    .news-item {
        max-width: 400px;
    }
    .news-item-mobile {
        max-width: 200px;
    }
    .news-item {
        padding: 12px;
    }
    .scroll-top {
        width: 50px;
        height: 50px;
        right: 30px;
        bottom: 30px;
    }
    .rowferu {
        grid-template-columns: repeat(1, 1fr);
    }
}