/* Admin Exit Button Styles (migrated from Blade) */
.admin-exit-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: var(--main-bg, #628EAB);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    animation: admin-exit-pop 0.7s cubic-bezier(.4,2,.6,1);
}
.admin-exit-btn:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 40px 0 rgba(0,0,0,0.22);
}
@keyframes admin-exit-pop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
.admin-exit-cross {
    width: 32px;
    height: 32px;
    position: relative;
}
.admin-exit-cross:before, .admin-exit-cross:after {
    content: '';
    position: absolute;
    left: 15px;
    top: 4px;
    width: 4px;
    height: 24px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.2s;
}
.admin-exit-cross:before {
    transform: rotate(45deg);
}
.admin-exit-cross:after {
    transform: rotate(-45deg);
}
.admin-exit-btn:active .admin-exit-cross:before,
.admin-exit-btn:active .admin-exit-cross:after {
    background: #eaeaea;
}
/*
Theme Name: Orizan
Author: wordpressriver
Author URI: https://themeforest.net/user/wordpressriver
Description: Agznko - Creative Agency and Portfolio Html Template 
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Hide Quill toolbars globally */
.ql-toolbar {
    display: none !important;
}

/* Disable text selection globally */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #628eab;
    --theme2: #ffd531;
    --header: #121212;
    --text: #f5f5f4cc;
    --border: #2a2a2a;
    --body-bg: #121212;
    --bg: #171717;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

    /* === Preloader (upgraded) === */
    .preloader {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999999;
        pointer-events: auto;
    }
    .preloader-bg{
        position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.92) 100%); backdrop-filter: blur(6px);
    }
    .preloader-inner{
        position: relative; z-index: 2; text-align: center; color: #fff; display:flex; flex-direction:column; align-items:center; gap:12px;
    }
    .preloader-logo{ width: 92px; height: 92px; object-fit:contain; border-radius:18px; box-shadow: 0 10px 30px rgba(0,0,0,0.6); background: linear-gradient(135deg,#2f4858,#628eab); padding:12px }
    .preloader-ring{
        position: absolute; width: 170px; height: 170px; border-radius: 50%;
        background: conic-gradient(rgba(255,255,255,0.14), rgba(255,255,255,0.02));
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px));
        animation: spinSlow 3.6s linear infinite;
        z-index: 1; opacity: 0.95;
    }
    .preloader-text{ font-size: 14px; color: rgba(255,255,255,0.9); font-weight:600; letter-spacing:0.6px }
    .preloader-percent{ font-size: 18px; font-weight:700; color: #ffd531; text-shadow: 0 2px 8px rgba(0,0,0,0.6) }

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

    .preloader.preloader-done { opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; }

    /* small screens */
    @media (max-width: 480px){
        .preloader-logo{ width:72px; height:72px }
        .preloader-ring{ width: 130px; height: 130px }
    }

    /* make sure ring sits centered behind inner content */
    .preloader-inner::before{ content: ''; position:absolute; width:100%; height:100%; left:0; top:0 }

    /* end preloader */

.theme-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--theme);
    /* color: var(--header); */
    color: white;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 400;
    padding: 22px 40px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    /* overflow: hidden; */
    text-align: center;
    border-radius: 120px;
    line-height: 1;
    font-family: "Roboto", sans-serif;
}
.theme-btn::after {
    content: "";
    background-color: var(--white);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
    border-radius: 120px;
}
.theme-btn i {
    margin-left: 10px;
}
.theme-btn:hover {
    background-color: var(--white);
    color: var(--header);
}
.theme-btn:hover::after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
@media (max-width: 767px) {
    .theme-btn {
        padding: 20px 32px;
    }
}
@media (max-width: 575px) {
    .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.theme-btn-2 {
    font-size: 16px;
    display: inline-block;
    font-weight: 700;
    color: var(--theme);
    text-transform: capitalize;
}
/* Prevent buttons from visually shrinking on hover: disable transform scaling
   and keep padding stable. Keeps hover color/clip effects intact. */
.theme-btn {
    -webkit-transform: none !important;
    transform: none !important;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.theme-btn:hover {
    -webkit-transform: none !important;
    transform: none !important;
    /* lock padding on hover so button size doesn't change */
    padding: 22px 40px !important;
}
.theme-btn-2 i {
    margin-left: 10px;
}
.theme-btn-2:hover {
    color: var(--theme2);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

input:focus {
    color: var(--white);
    outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 100px;
    font-weight: 800;
    line-height: 120%;
}

h2 {
    font-size: 40px;
    line-height: 120%;
    font-weight: 700;
}
@media (max-width: 575px) {
    h2 {
        font-size: 36px;
    }
    .theme-btn:hover { padding: 20px 32px !important; }
}

h3 {
    font-size: 24px;
    font-weight: 600;
}
    .theme-btn:hover { padding: 18px 30px !important; font-size: 14px !important; }
@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

.about-wrapper .about-image-items {
    margin-top: 30px;
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .about-wrapper .about-image-items {
        margin-right: 0;
    }
}
.about-wrapper .about-image-items .support-content {
    background-color: var(--theme);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}
.about-wrapper .about-image-items .support-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--header);
}
.about-wrapper .about-image-items .support-content .text-area {
    margin-top: 30px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-wrapper .about-image-items .support-content .text-area p {
    font-size: 16px;
    color: var(--header);
    font-weight: 400;
}
.about-wrapper .about-image-items .support-content .text-area .icon {
    display: inline-block;
    min-width: 48px;
    min-height: 48px;
    border-radius: 48px;
    text-align: center;
    line-height: 48px;
    color: var(--white);
    background-color: var(--header);
}
.about-wrapper .about-image-items .support-content .text-area .icon i {
    transform: rotate(-40deg);
}
.about-wrapper .about-image-items .about-image-2 {
    position: relative;
}
.about-wrapper .about-image-items .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.about-wrapper .about-image-items .about-image.style-2 {
    position: relative;
}
.about-wrapper .about-image-items .about-image.style-2 img {
    object-fit: cover;
}
.about-wrapper .about-content {
    margin-left: 70px;
    margin-top: 30px;
}
@media (max-width: 1600px) {
    .about-wrapper .about-content {
        margin-left: 0;
    }
}
.about-wrapper .about-content .about-icon-items {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}
.about-wrapper .about-content .about-icon-items .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme);
    color: var(--header);
    font-size: 24px;
    position: relative;
}
.about-wrapper .about-content .about-icon-items .icon .line-bar {
    position: absolute;
    bottom: -68px;
    left: 50%;
    transform: translateX(-50%);
}
.about-wrapper .about-content .about-icon-items .content {
    flex-basis: 80%;
}
.about-wrapper .about-content .about-icon-items .content h3 {
    margin-bottom: 5px;
}

.about-wrapper-2 .about-video-image {
    position: relative;
    margin-top: 30px;
    height: 460px;
}
.about-wrapper-2 .about-video-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.about-wrapper-2 .about-video-image .video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    background-color: var(--theme);
    font-size: 24px;
    font-weight: 600;
    color: var(--header);
    padding: 16px 30px;
    text-transform: capitalize;
    border-radius: 32px;
    line-height: 1;
}
.about-wrapper-2 .about-video-image .video-text i {
    margin-left: 10px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header);
    color: var(--white);
    font-size: 14px;
}
.about-wrapper-2 .about-video-image .video-text.ripple::before,
.about-wrapper-2 .about-video-image .video-text.ripple::after {
    width: 150px;
    height: 53px;
    border-radius: 100px;
}
.about-wrapper-2 .abour-right-items {
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    background: #1d1d1d;
    margin-top: 30px;
    padding: 24px;
}
.about-wrapper-2 .abour-right-items .content-box {
    padding: 24px;
    background-color: var(--theme);
    border-radius: 12px;
}
.about-wrapper-2 .abour-right-items .content-box:last-child {
    background-color: var(--white);
}
.about-wrapper-2 .abour-right-items .content-box:not(:last-child) {
    margin-bottom: 24px;
}
.about-wrapper-2 .abour-right-items .content-box h3 {
    color: var(--header);
    margin-bottom: 5px;
}
.about-wrapper-2 .abour-right-items .content-box p {
    color: var(--header);
}

.about-wrapper-3 .about-image {
    max-width: 526px;
    position: relative;
}
.about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
}
.about-wrapper-3 .about-image .video-box {
    width: 115px;
    height: 108px;
    line-height: 108px;
    background-color: var(--theme);
    border-radius: 12px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-wrapper-3 .about-image .video-box .video-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header);
    color: var(--white);
    display: inline-block;
    font-size: 22px;
}
.about-wrapper-3 .about-content .about-content-items {
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .about-content-items {
        flex-wrap: wrap;
        gap: 25px;
    }
}
.about-wrapper-3 .about-content .about-content-items .content h3 {
    margin-bottom: 5px;
}
.about-wrapper-3 .about-content .about-content-items .content:not(:last-child) {
    margin-bottom: 25px;
}
.about-wrapper-3 .about-content .about-content-items .growth-content {
    border-radius: 12px;
    background-color: var(--theme);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-wrapper-3
    .about-content
    .about-content-items
    .growth-content
    .text-left
    h3 {
    color: var(--header);
}
.about-wrapper-3
    .about-content
    .about-content-items
    .growth-content
    .text-left
    p {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
}
.about-wrapper-3 .about-content .about-content-items .growth-content .icon {
    text-align: center;
}
.about-wrapper-3
    .about-content
    .about-content-items
    .growth-content
    .icon
    .arrow-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header);
    color: var(--white);
    display: inline-block;
    transition: all 0.4s ease-in-out;
    margin: 0 auto;
}
.about-wrapper-3
    .about-content
    .about-content-items
    .growth-content
    .icon
    .arrow-icon:hover {
    background-color: var(--white);
    color: var(--header);
}
.about-wrapper-3 .about-content .about-content-items .growth-content .icon h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--header);
    font-family: "Roboto", sans-serif;
    margin-top: 15px;
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}
@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.brand-text {
    position: relative;
    margin-bottom: 50px;
}
.brand-text::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 86px;
    background-color: var(--border);
    top: 8px;
}
@media (max-width: 1399px) {
    .brand-text::before {
        display: none;
    }
}
.brand-text::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 945px;
    background-color: var(--border);
    top: 8px;
    right: 0;
}
@media (max-width: 1399px) {
    .brand-text::after {
        display: none;
    }
}
.brand-text h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme);
    padding-left: 110px;
}

.brand-section .brand-slider {
    margin-right: -20%;
}
@media (max-width: 1199px) {
    .brand-section .brand-slider {
        margin-right: 0;
    }
}

.lets-talk-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
    .lets-talk-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.lets-talk-wrapper h2 {
    font-size: 32px;
}

.contact-box-items {
    background-color: #171717;
    border-radius: 12px;
    text-align: center;
    padding: 40px;
}
.contact-box-items .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    margin: 0 auto;
}
.contact-box-items .content {
    margin-top: 30px;
}

.contact-wrapper .map-items .googpemap iframe {
    width: 100%;
    border-radius: 12px;
    height: 740px;
}
.contact-wrapper .contact-content {
    background-color: #171717;
    padding: 60px 40px;
    border-radius: 12px;
}
.contact-wrapper .contact-content .contact-form-items {
    margin-top: 30px;
}
.contact-wrapper .contact-content .contact-form-items .form-clt span {
    color: var(--text);
    text-transform: capitalize;
    display: block;
    font-size: 16px;
    margin-bottom: 20px;
}
.contact-wrapper .contact-content .contact-form-items .form-clt input,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    color: var(--text);
    padding: 18px 20px;
    width: 100%;
    background-color: transparent;
    border: none;
    border: 1px solid var(--border);
}
.contact-wrapper
    .contact-content
    .contact-form-items
    .form-clt
    input::placeholder,
.contact-wrapper
    .contact-content
    .contact-form-items
    .form-clt
    textarea::placeholder {
    color: var(--text);
}
.LogoImg{
    width:56px; 
    height:56px; 
    object-fit:cover; 
    border-radius:10px; 
    display:block;
}
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
}

.faq-wrapper .faq-image {
    max-width: 540px;
}
.faq-wrapper .faq-image img {
    width: 100%;
    height: 100%;
}
.faq-wrapper .faq-content .accordion-item {
    border: none !important;
    background-color: var(--white);
}
    .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 400;
    color: var(--white);
    border: none !important;
    border-radius: 0;
    box-shadow: none;
    background-color: #171717;
    /* use consistent vertical padding so hover/collapse don't change size */
    padding: 25px 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
}
@media (max-width: 1199px) {
    .faq-wrapper
        .faq-content
        .accordion-item
        .accordion-header
        .accordion-button {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .faq-wrapper
        .faq-content
        .accordion-item
        .accordion-header
        .accordion-button {
        font-size: 18px;
        padding: 20px 20px 0;
    }
}
.faq-wrapper
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button
    span {
    margin-right: 20px;
}
.faq-wrapper
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button::after {
    content: "\f324";
    font-family: "Font Awesome 6 Pro";
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    color: var(--white);
    font-size: 16px;
}
.faq-wrapper
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)::after {
    content: "\f325";
    font-family: "Font Awesome 6 Pro";
    background: transparent;
    font-weight: 500;
    color: var(--theme);
}
.faq-wrapper
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button.collapsed {
    border: 1px solid rgba(42, 42, 42, 0.3);
    box-shadow: var(--box-shadow);
    /* keep same padding as non-collapsed so size stays stable */
    padding: 25px 30px;
    color: var(--white);
    background-color: #171717;
}

/* Lock hover/focus styling to avoid layout shifts */
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button:hover,
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button:focus {
    padding: 25px 30px !important;
    transform: none !important;
    outline: none !important;
}
.faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-left: 30px;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.7019607843);
    background-color: #171717;
    padding-bottom: 28px;
}
.faq-wrapper .faq-content-2 {
    margin-right: 50px;
}
@media (max-width: 1199px) {
    .faq-wrapper .faq-content-2 {
        margin-right: 0;
    }
}
.faq-wrapper .faq-content-2 .faq-client-items {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(42, 42, 42, 0.32);
    background: #171717;
    margin-top: 50px;
}
.faq-wrapper .faq-content-2 .faq-client-items .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}
.faq-wrapper .faq-content-2 .faq-client-items .client-info .content h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.faq-wrapper .faq-content-2 .faq-client-items .client-info .content span {
    font-size: 16px;
}

.counter-items {
    text-align: center;
}
.counter-items h2 {
    font-size: 80px;
    font-weight: 600;
}
.counter-items p {
    font-size: 18px;
}
.counter-items.style-2 h2 {
    -webkit-text-stroke: 1px #628eab;
    -webkit-text-fill-color: transparent;
}

.scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 20px;
}
.scrolling-wrap .comm {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 30px;
    cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
    font-size: 160px;
    font-weight: 400;
    line-height: 150%;
    text-transform: uppercase;
    color: #2a2a2a;
}
.scrolling-wrap .comm .text-custom-storke {
    -webkit-text-stroke: 1px rgb(42, 42, 42);
    -webkit-text-fill-color: transparent;
}
.scrolling-wrap:hover .comm {
    animation-play-state: paused;
}
@media (max-width: 991px) {
    .scrolling-wrap .comm {
        gap: 20px;
    }
    .scrolling-wrap .comm .cmn-textslide {
        font-size: 90px;
        line-height: 100px;
    }
    .scrolling-wrap .comm img {
        width: 70px;
    }
}
@media (max-width: 575px) {
    .scrolling-wrap .comm {
        gap: 20px;
    }
    .scrolling-wrap .comm .cmn-textslide {
        font-size: 60px;
        line-height: 65px;
    }
    .scrolling-wrap .comm img {
        width: 70px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes scroll2 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%);
    }
}
.digital-marketing {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 20px;
}
.digital-marketing .comm {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 30px;
    cursor: pointer;
}
.digital-marketing .comm .cmn-textslide {
    font-size: 80px;
    font-weight: 600;
    line-height: 110px;
    opacity: 25%;
    transition: all 0.5s;
    text-transform: capitalize;
}
.digital-marketing .comm .cmn-textslide .serial-badge {
    padding: 7px 15px;
    width: 80px;
    line-height: initial;
    font-size: 16px;
    border: 1px solid #454750;
    border-radius: 100px;
    gap: 10px !important;
    text-align: center;
}
.digital-marketing .comm .cmn-textslide .serial-badge i {
    transform: rotate(-40deg);
    color: var(--theme);
}
.digital-marketing .comm .cmn-textslide .digital-thumb {
    max-width: 330px;
    max-height: 235px;
    margin: -150px auto 0;
    transform: scale(0);
    visibility: hidden;
    transition: all 0.6s;
}
.digital-marketing .comm .cmn-textslide .digital-thumb img {
    width: 100%;
    height: 100%;
}
.digital-marketing .comm .cmn-textslide:hover {
    opacity: 1;
}
.digital-marketing .comm .cmn-textslide:hover .digital-thumb {
    transform: scale(1);
    visibility: visible;
}
@media (max-width: 1199px) {
    .digital-marketing .comm {
        display: flex;
        align-items: center;
        animation: scroll 40s linear infinite;
        gap: 30px;
        cursor: pointer;
    }
    .digital-marketing .comm .cmn-textslide {
        font-size: 48px;
        line-height: 110px;
    }
    .digital-marketing .comm .cmn-textslide .digital-thumb {
        max-width: 230px;
        max-height: 235px;
        margin: -150px auto 0;
    }
}
@media (max-width: 991px) {
    .digital-marketing .comm {
        gap: 16px;
        cursor: pointer;
    }
    .digital-marketing .comm .cmn-textslide {
        font-size: 36px;
    }
    .digital-marketing .comm .cmn-textslide .digital-thumb {
        max-width: 170px;
        max-height: 105px;
        margin: -100px auto 0;
    }
}

.text-slie-reverse .comm {
    display: flex;
    align-items: center;
    animation: scroll 80s linear infinite;
}

.digital-software .comm .cmn-textslide {
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
}
.digital-software .comm img {
    width: 65px;
}
@media (max-width: 575px) {
    .digital-software .comm .cmn-textslide {
        font-size: 30px;
        font-weight: 700;
        line-height: 58px;
    }
    .digital-software .comm img {
        width: 55px;
    }
}

.footer-widgets-wrapper {
    padding: 50px 0 80px;
    position: relative;
    z-index: 9;
}
.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-weight: bold;
    color: var(--white);
    font-size: 32px;
    display: inline-block;
}
@media (max-width: 767px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 23px;
    }
}
@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 20px;
    }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    gap: 10px;
    margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    display: inline-block;
    background-color: #2a2a2a;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper
    .single-footer-widget
    .footer-content
    .social-icon
    a:hover {
    background-color: var(--theme);
    color: var(--header);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text {
    margin-top: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h4 {
    font-size: 20px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-transform: lowercase;
    text-decoration: underline;
}
.footer-widgets-wrapper
    .single-footer-widget
    .footer-content
    .contact-text
    h4
    a {
    color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h5 {
    font-size: 20px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-transform: lowercase;
}
.footer-widgets-wrapper
    .single-footer-widget
    .footer-content
    .contact-text
    h5
    a {
    color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
}
.footer-widgets-wrapper
    .single-footer-widget
    .footer-content
    .footer-input
    input {
    outline: none;
    width: 100%;
    color: rgba(245, 245, 244, 0.6);
    background-color: transparent;
    border: none;
    font-size: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.footer-widgets-wrapper
    .single-footer-widget
    .footer-content
    .footer-input
    input::placeholder {
    color: rgba(245, 245, 244, 0.6);
}
.footer-widgets-wrapper
    .single-footer-widget
    .footer-content
    .footer-input
    .newsletter-btn {
    background-color: #2a2a2a;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
    text-transform: capitalize;
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    display: table;
    transition: all 0.4s ease-in-out;
    position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
    font-size: 18px;
    color: var(--text);
    position: relative;
    font-weight: 400;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
    background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover::before {
    opacity: 1;
    visibility: visible;
    color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
    padding-left: 25px;
    color: var(--theme);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .footer-bottom .footer-bottom-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}
.footer-bottom p {
    color: var(--white);
    font-weight: 400;
}
.footer-bottom p a {
    color: var(--theme);
    font-weight: 400;
    text-decoration: underline;
}

.footer-right-content {
    padding-top: 80px;
    margin-right: -350px;
    text-align: center;
}
@media (max-width: 1899px) {
    .footer-right-content {
        margin-right: -75px;
    }
}
@media (max-width: 1399px) {
    .footer-right-content {
        margin-right: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.footer-right-content h2 {
    font-size: 40px;
    text-align: center;
}
.footer-right-content .radius-btn {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--border);
    margin: 50px auto 0;
    padding-top: 50px;
}
.footer-right-content .radius-btn i {
    display: block;
    transform: rotate(-40deg);
    margin-bottom: 5px;
}
.footer-right-content .radius-btn:hover {
    background-color: var(--theme);
    color: var(--header);
}
.footer-right-content h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-top: 50px;
}
.footer-right-content p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}

.footer-section.style-2 {
    position: relative;
    z-index: 9;
}
.footer-section.style-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #1d1d1d;
    z-index: -1;
    left: 73%;
}
@media (max-width: 1399px) {
    .footer-section.style-2::before {
        left: 0;
    }
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.text-align-c {
    text-align: center;
}
.text-align-r {
    text-align: right;
}
.about-work .title {
    color: rgb(50, 96, 124);
    margin-bottom: 20px;
}
.about-work-lists {
    width: 100%;
    justify-content: center;
}
.about-work-lists li {
    font-size: 20px;
    font-weight: 700;
    color: rgb(42, 100, 136);
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.buttons{
    display: flex;
    justify-content: center;
}

.hero-btn {
    font-family: "Kanit", sans-serif !important;
    border-radius: 12px;
    background-color: #fff;
    font-weight: 600;
    padding: 12px;
    transition: all 0.4s ease-in-out;
}
.hero-btn:hover {
    background-color: rgba(28, 50, 64, 1);
    color: #fff;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}
.header-main .logo {
    font-size: 20px;
}
.main-menu {
}
.header-main .main-menu ul {
    margin-bottom: 0;
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 32px;
}
.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}
.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 14px;
}
.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 240px;
    background: #120f0f;
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 6px solid var(--theme);
}
.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}
.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
    color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
    width: 1000px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb {
    position: relative;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button
    .theme-btn {
    padding: 14px 20px;
    color: var(--header) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0px !important;
    background-color: var(--theme);
    line-height: initial;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button
    .theme-btn:hover {
    color: var(--header) !important;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button
    .theme-btn:hover::before {
    background-color: var(--header) !important;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb::before {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(20, 19, 19, 0)),
        to(#5e5ef6)
    );
    background: linear-gradient(
        to bottom,
        rgba(99, 92, 92, 0) 0%,
        #252527 100%
    );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb:hover
    .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb:hover
    .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-thumb
    img {
    width: 100%;
}
.header-main
    .main-menu
    ul
    li
    .has-homemenu
    .homemenu-items
    .homemenu
    .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}
.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.header-main .header-right {
    gap: 24px;
}
@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}
.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    border-bottom: 1px solid #2a2a2a;
}
@media (max-width: 767px) {
    .header-1 .header-right {
        gap: 15px;
    }
}
.header-1 .header-right .header-button {
    display: flex;
    align-items: center;
    gap: 0;
}
.header-1 .header-right .header-button .search-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--header);
    display: inline-block;
}
.header-1 .header-right .header-button .theme-btn {
    padding: 19px 30px;
}
@media (max-width: 1399px) {
    .header-1 .header-right .header-button .theme-btn {
        display: none;
    }
}
.header-1 .header-right .sidebar__toggle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--header);
}
.price-btn {
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: 0.3s;
}
.price-btn:hover {
    color: rgba(28, 50, 64, 1);
}
.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: #181818;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.offcanvas__info {
    background: var(--bg) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__logo a img {
    width: 280px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    ul
    li:not(:last-child) {
    margin-bottom: 15px;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    ul
    li
    .offcanvas__contact-icon {
    margin-right: 20px;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    ul
    li
    .offcanvas__contact-icon
    i {
    color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    .header-button
    .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--text);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    .social-icon
    a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}
@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}
.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
}
.breadcrumb-wrapper .arrow-shape {
    position: absolute;
    top: 50px;
    left: 50px;
}
.breadcrumb-wrapper .circle-shape {
    position: absolute;
    top: -25%;
    right: 0;
}
.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 100px 0 50px;
    z-index: 9;
    text-align: center;
}
@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        padding: 140px 0;
    }
}
@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        padding: 110px 0;
    }
}
@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        padding: 130px 0 80px;
    }
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading {
        padding: 100px 0 60px;
    }
}
.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 56px;
    position: relative;
    z-index: 9;
    font-weight: 600;
    text-transform: uppercase;
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 42px;
    }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    justify-content: center;
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--theme);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-image {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.breadcrumb-wrapper .page-heading .breadcrumb-image img {
    width: 100%;
    height: 100%;
    max-width: 336px;
}

.error-content h2 {
    font-weight: 600;
    font-size: 320px;
    color: var(--theme);
    line-height: 1;
}
.error-content h2 span {
    color: var(--white);
}
@media (max-width: 1199px) {
    .error-content h2 {
        font-size: 300px;
    }
}
@media (max-width: 991px) {
    .error-content h2 {
        font-size: 200px;
    }
}
@media (max-width: 575px) {
    .error-content h2 {
        font-size: 110px;
    }
}
.error-content h3 {
    font-weight: 700;
    font-size: 40px;
}
.error-content p {
    max-width: 640px;
    margin: 20px auto 0;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}
.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(191, 247, 71, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}
.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}
.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    transition: 0.6s;
    background-color: #2a2a2a;
    opacity: 1;
    border-radius: 10px;
    position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: 0.6s;
    position: relative;
    width: 40px;
}

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

/* background */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.nice-select {
    background-color: transparent;
    border: transparent;
    float: initial;
    overflow: initial;
    height: initial;
    padding: 0;
    display: inline-flex;
    align-items: center;
    line-height: 150%;
    width: 100%;
    border: none;
}
.nice-select:focus,
.nice-select:hover {
    border-color: transparent;
}
.nice-select::after {
    height: 8px;
    width: 8px;
    right: -25px;
    top: 15px;
    border-color: var(--header);
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
}
.nice-select .list {
    width: initial;
    background-color: var(--theme);
    box-shadow: none;
    overflow: initial;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    width: 100%;
    top: 100%;
    padding: 0;
    max-height: 50vh;
    overflow-x: auto;
    right: -50px;
}
.nice-select .list::-webkit-scrollbar {
    width: 2px;
    opacity: 1;
    display: block;
}
.nice-select .list::-webkit-scrollbar-button,
.nice-select .list::-webkit-scrollbar-thumb {
    background: var(--header);
}
.nice-select .option {
    background-color: transparent;
    font-size: 16px;
    line-height: 150%;
    padding: 4px 5px;
    min-height: initial;
    font-weight: 500;
}
.nice-select .option:hover,
.nice-select .option:focus,
.nice-select .option.selected.focus {
    background-color: transparent;
}
.nice-select .current {
    font-weight: 500;
    color: var(--header);
}

.page-nav-wrap ul li {
    display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border: 1px solid var(--border);
    color: var(--white);
    border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}
@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}
.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
    border: none;
    background-color: transparent;
    color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
    border: none;
    background-color: transparent;
    color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid transparent;
}

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

.hero-1 {
    position: relative;
}
@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 75px;
    }
}
@media (max-width: 991px) {
    .hero-1 .hero-content h1 {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 44px;
    }
}
.hero-1 .hero-content h1 span {
    color: rgba(28, 50, 64, 1);
    text-decoration: underline;
}
@media (max-width: 575px) {
    .hero-1 .hero-content h1 img {
        width: 80px;
    }
}
.hero-1 .hero-content p {
    max-width: 600px;
    font-size: 20px;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .hero-1 .hero-content p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content p {
        font-size: 16px;
    }
}
.hero-1 .hero-image {
    margin-top: 50px;
}
.hero-1 .hero-image img {
    width: 100%;
    height: 100%;
}
.hero-1 .hero-counter {
    padding: 40px;
    background-color: rgba(28, 50, 64, 1);
    display: inline-block;
    width: 340px;
    position: absolute;
    top: 120px;
    right: 172px;
}
@media (max-width: 1600px) {
    .hero-1 .hero-counter {
        right: 0;
    }
}
@media (max-width: 1600px) {
    .hero-1 .hero-counter {
        position: static;
        max-width: 1500px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-counter {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}
.hero-1 .hero-counter .counter-items {
    text-align: center;
    margin-bottom: 30px;
}
@media (max-width: 1600px) {
    .hero-1 .hero-counter .counter-items {
        margin-bottom: 0;
    }
}
.hero-1 .hero-counter .counter-items:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--header);
}
@media (max-width: 1600px) {
    .hero-1 .hero-counter .counter-items:not(:last-child) {
        padding-bottom: 0;
        border: none;
    }
}
.hero-1 .hero-counter .counter-items h2 {
    font-size: 80px;
    font-weight: 600;
    color: var(--header);
}
@media (max-width: 991px) {
    .hero-1 .hero-counter .counter-items h2 {
        font-size: 55px;
    }
}
.hero-1 .hero-counter .counter-items p {
    text-transform: uppercase;
    color: var(--header);
    font-weight: 400;
}

.TextSpanInHeroContent{
    font-size: 40px; 
    color: #628eab; 
    font-weight: 600;
}

.hero-1 .circle-item {
    width: 170px;
    height: 170px;
    line-height: 179px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    position: absolute;
    right: 30%;
    top: 70%;
}
@media (max-width: 991px) {
    .hero-1 .circle-item {
        display: none;
    }
}
.hero-1 .circle-item .circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    top: -4%;
    left: 7%;
    animation: cir36 10s linear infinite;
}
.hero-1 .circle-item .border-line {
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 76px;
    height: 76px;
    line-height: 76px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-1 .circle-item .border-line .arrow-icon {
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(28, 50, 64, 1);
    color: var(--header);
    display: inline-block;
}
.hero-1 .circle-item .border-line .arrow-icon i {
    transform: rotate(-40deg);
}

.hero-2 .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
@media (max-width: 1199px) {
    .hero-2 .hero-content {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.hero-2 .hero-content h1 span {
    text-decoration: underline;
    color: var(--theme);
}
@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 75px;
    }
}
@media (max-width: 991px) {
    .hero-2 .hero-content h1 {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 44px;
        margin-bottom: -10px;
    }
}
@media (max-width: 575px) {
    .hero-2 .hero-content h1 img {
        width: 80px;
    }
}
.hero-2 .hero-content .content {
    flex-basis: 35%;
}
@media (max-width: 1199px) {
    .hero-2 .hero-content .content {
        flex-basis: 100%;
    }
}
.hero-2 .hero-content .content p {
    font-size: 20px;
    margin-left: -50px;
}
@media (max-width: 1199px) {
    .hero-2 .hero-content .content p {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-content .content p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .hero-2 .hero-content .content p {
        font-size: 16px;
    }
}
.hero-2 .hero-content .content .theme-btn {
    border-radius: 12px;
    margin-top: 60px;
    margin-left: 50px;
}
@media (max-width: 1199px) {
    .hero-2 .hero-content .content .theme-btn {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-content .content .theme-btn {
        margin-top: 30px;
    }
}
.hero-2 .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.hero-2 .hero-counter .counter-items {
    text-align: center;
    background-color: #1d1d1d;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}
.hero-2 .hero-counter .counter-items:not(:last-child) {
    margin-bottom: 10px;
}
.hero-2 .hero-counter .counter-items h2 {
    font-size: 80px;
    color: var(--white);
    line-height: 1;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .hero-2 .hero-counter .counter-items h2 {
        font-size: 55px;
    }
}
.hero-2 .hero-counter .counter-items p {
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .hero-2 .hero-counter .counter-items p {
        font-size: 16px;
    }
}
.hero-2 .hero-counter .counter-items:hover {
    background-color: var(--theme);
    color: var(--header);
}
.hero-2 .hero-counter .counter-items:hover h2 {
    color: var(--header);
}
.hero-2 .hero-counter .counter-items.active {
    background-color: var(--theme);
    color: var(--header);
}
.hero-2 .hero-counter .counter-items.active h2 {
    color: var(--header);
}

.hero-3 {
    padding: 120px 0 240px;
    position: relative;
}
.hero-3 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.hero-3 .hero-bg img {
    width: 100%;
    height: 100%;
}
.hero-3 .hero-content h6 {
    font-size: 20px;
    color: var(--theme);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-3 .hero-content h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 60px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 50px;
    }
}
.hero-3 .hero-content h1 span {
    text-decoration: underline;
    color: var(--theme);
}
.hero-3 .hero-content p {
    font-size: 20px;
}
.hero-3 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}
@media (max-width: 767px) {
    .hero-3 .hero-content .hero-button {
        margin-top: 35px;
        flex-wrap: wrap;
    }
}
.hero-3 .hero-content .hero-button .theme-btn {
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
}
.hero-3 .hero-content .hero-button .theme-btn.style-2 {
    background-color: transparent;
    color: var(--white);
    border: 2px solid #2a2a2a;
}
.hero-3 .hero-content .hero-button .theme-btn.style-2:hover {
    color: var(--header);
}
.hero-3 .hero-image-items {
    position: relative;
}
.hero-3 .hero-image-items .hero-image {
    max-width: 410px;
    position: relative;
}
.hero-3 .hero-image-items .hero-image img {
    width: 100%;
    height: 100%;
}
.hero-3 .hero-image-items .hero-image-2 {
    position: absolute;
    right: 0;
    top: 137px;
}
@media (max-width: 991px) {
    .hero-3 .hero-image-items .hero-image-2 {
        right: 70px;
    }
}
@media (max-width: 767px) {
    .hero-3 .hero-image-items .hero-image-2 {
        right: initial;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-image-items .hero-image-2 {
        height: 200px;
    }
    .hero-3 .hero-image-items .hero-image-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.hero-3 .hero-image-items .hero-image-2 img {
    border-radius: 16px;
}
.hero-3 .hero-image-items .hero-image-3 {
    position: absolute;
    bottom: -138px;
    right: 0;
    max-width: 297px;
}
@media (max-width: 991px) {
    .hero-3 .hero-image-items .hero-image-3 {
        right: 80px;
    }
}
@media (max-width: 767px) {
    .hero-3 .hero-image-items .hero-image-3 {
        right: 0;
        bottom: 0;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-image-items .hero-image-3 {
        right: initial;
        left: 0;
    }
}
.hero-3 .hero-image-items .hero-image-3 img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
}
.hero-3 .hero-image-items .circle-item {
    width: 170px;
    height: 170px;
    line-height: 179px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    position: absolute;
    right: 0;
    top: -50px;
}
@media (max-width: 991px) {
    .hero-3 .hero-image-items .circle-item {
        display: none;
    }
}
.hero-3 .hero-image-items .circle-item .circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    top: -4%;
    left: 7%;
    animation: cir36 10s linear infinite;
}
.hero-3 .hero-image-items .circle-item .border-line {
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 76px;
    height: 76px;
    line-height: 76px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-3 .hero-image-items .circle-item .border-line .arrow-icon {
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--header);
    display: inline-block;
}
.hero-3 .hero-image-items .circle-item .border-line .arrow-icon i {
    transform: rotate(-40deg);
}
.hero-3 .hero-image-items .client-image {
    position: absolute;
    bottom: -24%;
    left: 8%;
    text-align: center;
}
.hero-3 .hero-image-items .client-image h5 {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    margin-top: 20px;
}
.hero-3 .hero-image-items .client-image h5 span {
    color: var(--theme);
    font-weight: 600;
    font-size: 24px;
}

.hero-4 {
    padding: 120px 0 120px;
    position: relative;
}
.hero-4 .number-list {
    display: grid;
    gap: 12px;
    position: absolute;
    right: 40px;
    top: 120px;
}
@media (max-width: 1199px) {
    .hero-4 .number-list {
        display: none;
    }
}
.hero-4 .number-list li {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background-color: #1d1d1d;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
.hero-4 .number-list li:hover {
    background-color: var(--theme);
    color: var(--header);
}
.hero-4 .number-list li.active {
    background-color: var(--theme);
    color: var(--header);
}
.hero-4 .hero-content {
    position: relative;
    z-index: 9;
}
.hero-4 .hero-content h6 {
    font-size: 20px;
    color: var(--theme);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-4 .hero-content h1 {
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .hero-4 .hero-content h1 {
        font-size: 75px;
    }
}
@media (max-width: 991px) {
    .hero-4 .hero-content h1 {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    .hero-4 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-4 .hero-content h1 {
        font-size: 44px;
    }
}
.hero-4 .hero-content h1 .video-img {
    position: relative;
}
.hero-4 .hero-content h1 .video-img img {
    border-radius: 120px;
}
.hero-4 .hero-content h1 .video-img .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    line-height: 52px;
    border-radius: 50%;
    background-color: var(--header);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    text-align: center;
}
.hero-4 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}
@media (max-width: 767px) {
    .hero-4 .hero-content .hero-button {
        margin-top: 35px;
        flex-wrap: wrap;
    }
}
.hero-4 .hero-content .hero-button .theme-btn {
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    border: 2px solid transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2 {
    background-color: transparent;
    color: var(--white);
    border: 2px solid #2a2a2a;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2:hover {
    color: var(--header);
}
.hero-4 .hero-content .counter-items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}
@media (max-width: 1199px) {
    .hero-4 .hero-content .counter-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.hero-4 .hero-content .counter-items .counter-content h2 {
    font-size: 64px;
    font-weight: 600;
    color: var(--white);
}
.hero-4 .hero-content .counter-items .counter-content h2 span {
    color: var(--theme);
}
.hero-4 .hero-content .counter-items .counter-content p {
    font-size: 16px;
    color: var(--white);
}
.hero-4 .hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .hero-4 .hero-image {
        display: none;
    }
}
.hero-4 .client-image {
    max-width: max-content !important;
    margin-top: -160px;
    text-align: center;
    /* max-height: 20px; */
    max-width: 20px;
}
@media (max-width: 1199px) {
    .hero-4 .client-image {
        display: none;
    }
}
.hero-4 .client-image h5 {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    margin-top: 20px;
}
.hero-4 .client-image h5 span {
    color: var(--theme);
    font-weight: 600;
    font-size: 24px;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

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

.threedot{
    display: -webkit-box;        /* создаём блочный контейнер для текста */
    -webkit-box-orient: vertical;/* вертикальная ориентация */
    -webkit-line-clamp: 3;       /* показывать только 3 строки */
    overflow: hidden;            /* скрываем всё, что не помещается */
    text-overflow: ellipsis;  
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .mean-container .mean-nav > ul .homemenu-items {
        flex-wrap: wrap;
    }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
    position: relative;
}
@media (max-width: 1199px) {
    .mean-container .mean-nav > ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px;
    }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button
    .theme-btn {
    padding: 12px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb
    .demo-button
    .theme-btn:hover {
    color: var(--white) !important;
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb::before {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(20, 19, 19, 0)),
        to(#5e5ef6)
    );
    background: linear-gradient(
        to bottom,
        rgba(99, 92, 92, 0) 0%,
        #252527 100%
    );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb:hover
    .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.mean-container
    .mean-nav
    > ul
    .homemenu-items
    .homemenu
    .homemenu-thumb:hover
    .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

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

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none;
}
.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

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

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.news-box-items {
    margin-top: 30px;
}
.news-box-items .news-image {
    position: relative;
    overflow: hidden;
}
.news-box-items .news-image img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
    border-radius: 8px;
}
.news-box-items .news-image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 1s;
    overflow: hidden;
}
.news-box-items .news-content {
    margin-top: 20px;
}
.news-box-items .news-content p {
    margin-bottom: 5px;
}
.news-box-items .news-content h3 {
    font-size: 32px;
}
.news-box-items .news-content h3 a:hover {
    color: rgba(28, 50, 64, 1);
}
.news-box-items .news-content .news-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-box-items .news-content .news-btn .link-btn {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    display: inline-block;
}
.news-box-items:hover .news-image img:nth-child(2) {
    width: 100%;
    visibility: visible;
}
.news-box-items:hover .news-content .news-btn .arrow-icon,
.news-box-items:hover .news-content .news-btn .link-btn {
    color: rgba(28, 50, 64, 1);
}

.news-card-items-2 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 767px) {
    .news-card-items-2 {
        flex-wrap: wrap;
    }
}
.news-card-items-2 .news-image {
    max-width: 306px;
}
.news-card-items-2 .news-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.news-card-items-2 .news-content {
    max-width: 300px;
}
.news-card-items-2 .news-content span {
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 15px;
}
.news-card-items-2 .news-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .news-card-items-2 .news-content h3 {
        font-size: 25px;
    }
}
.news-card-items-2 .news-content h3 a:hover {
    color: var(--theme);
}
.news-card-items-2 .news-content .news-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-card-items-2 .news-content .news-btn .link-btn {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    display: inline-block;
}
.news-card-items-2:hover .news-content .news-btn .arrow-icon,
.news-card-items-2:hover .news-content .news-btn .link-btn {
    color: rgba(28, 50, 64, 1);
}

.news-list-wrapper .news-list-area .news-list-items {
    display: flex;
    align-items: center;
    background-color: #171717;
    padding: 12px;
    border-radius: 12px;
    gap: 24px;
}
@media (max-width: 1399px) {
    .news-list-wrapper .news-list-area .news-list-items {
        flex-wrap: wrap;
        padding: 20px;
    }
}
.news-list-wrapper .news-list-area .news-list-items:not(:last-child) {
    margin-bottom: 24px;
}
.news-list-wrapper .news-list-area .news-list-items .thumb {
    max-width: 306px;
}
.news-list-wrapper .news-list-area .news-list-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.news-list-wrapper .news-list-area .news-list-items .content {
    max-width: 500px;
    padding-right: 30px;
}
.news-list-wrapper .news-list-area .news-list-items .content span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 5px;
}
.news-list-wrapper .news-list-area .news-list-items .content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .news-list-wrapper .news-list-area .news-list-items .content h3 {
        font-size: 28px;
    }
}
.news-list-wrapper .news-list-area .news-list-items .content h3 a:hover {
    color: var(--theme);
}
.news-list-wrapper .news-list-area .news-list-items .content p {
    font-size: 16px;
}
.news-list-wrapper .news-list-area .news-list-items .content .news-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-list-wrapper
    .news-list-area
    .news-list-items
    .content
    .news-btn
    .link-btn {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    display: inline-block;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 480px;
    border-radius: 12px;
}
.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .post-list {
    gap: 30px;
    margin-bottom: 20px;
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .post-list
    li {
    font-size: 14px;
    font-weight: 500;
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .post-list
    li
    i {
    color: var(--theme);
    margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content p {
    color: var(--text);
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 600;
}
@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        font-size: 28px;
    }
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    h3
    a:hover {
    color: var(--theme);
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: #171717;
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .hilight-text
    p {
    font-weight: 600;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
    color: var(--text);
    line-height: 162%;
    font-size: 20px;
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .hilight-text
    svg {
    float: right;
    margin-top: -30px;
}
.news-details-area
    .blog-post-details
    .single-blog-post
    .post-content
    .details-image
    img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud span {
    display: inline-block;
    font-weight: 600;
    color: var(--text);
    margin-right: 15px;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: #171717;
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    color: var(--text);
}
@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 16px;
    color: var(--text);
}
.news-details-area
    .blog-post-details
    .tag-share-wrap
    .social-share
    a:not(:last-child) {
    margin-right: 10px;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}
.news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
}
.news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}
.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 22px;
    }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid var(--border);
}
@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.news-details-area
    .blog-post-details
    .comments-area
    .blog-single-comment
    .content
    .head
    .con
    h5 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
}
.news-details-area
    .blog-post-details
    .comments-area
    .blog-single-comment
    .content
    .head
    .con
    h5
    a {
    color: var(--white);
}
.news-details-area
    .blog-post-details
    .comments-area
    .blog-single-comment
    .content
    .head
    .star
    i {
    color: var(--theme);
    font-size: 14px;
}
.news-details-area
    .blog-post-details
    .comments-area
    .blog-single-comment
    .content
    .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: #171717;
    color: var(--theme);
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt span {
    color: var(--text);
    display: inline-block;
    margin-bottom: 10px;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 16px 20px;
    font-weight: 500;
    border-radius: 8px;
    color: var(--text);
}
.news-details-area
    .blog-post-details
    .comment-form-wrap
    .form-clt
    input::placeholder,
.news-details-area
    .blog-post-details
    .comment-form-wrap
    .form-clt
    textarea::placeholder {
    color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: #171717;
    margin-bottom: 30px;
    border-radius: 12px;
}
.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
}
.main-sidebar .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    content: "";
    background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: #2a2a2a;
    font-size: 16px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--white);
    border-radius: 4px;
}
.main-sidebar .single-sidebar-widget .search-widget form input::placeholder {
    color: var(--white);
}
.main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--header);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 0 4px 4px 0;
}
.main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background-color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    background-color: #1d1d1d;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    font-size: 16px;
    line-height: 1;
    border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    color: var(--text);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
    transition: all 0.4s ease-in-out;
    color: var(--text);
}
.main-sidebar
    .single-sidebar-widget
    .news-widget-categories
    ul
    li:not(:last-child) {
    margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
    background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
    color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
    background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
    color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
    color: var(--header);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items:not(:last-child) {
    margin-bottom: 20px;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-thumb
    img {
    border-radius: 8px;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 5px;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    ul {
    margin-bottom: 8px;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    ul
    li {
    color: var(--text);
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    ul
    li
    i {
    color: var(--theme);
    margin-right: 5px;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    h6 {
    font-weight: 500;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    h6
    a {
    color: var(--white);
}
.main-sidebar
    .single-sidebar-widget
    .recent-post-area
    .recent-items
    .recent-content
    h6
    a:hover {
    color: var(--theme);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 14px 20px;
    line-height: 1;
    font-size: 18px;
    font-weight: 400;
    background-color: #1d1d1d;
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 0;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    border-radius: 120px;
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}
.preloader .animation-preloader {
    z-index: 1000;
}
.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}
@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}
.preloader .animation-preloader .txt-loading {
    font: bold 5em "Teko", sans-serif, "Kanit", sans-serif;
    text-align: center;
    user-select: none;
}
@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}
.preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(28, 50, 64, 1);
    position: relative;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--header);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Roboto", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}
.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: rgba(28, 50, 64, 1);
}
.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}
.preloader .loader .row {
    height: 100%;
}
.preloader .loader .loader-section {
    padding: 0px;
}
.preloader .loader .loader-section .bg {
    background-color: var(--bg);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.9);
}
.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}
@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}
.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--theme);
}

input.main-search-input::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::placeholder {
        font-size: 18px;
    }
}
.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: rgb(50, 96, 124);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: rgb(50, 96, 124);
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid rgb(50, 96, 124);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

.back-to-top {
    border-radius: 50%;
    background-color: rgba(28, 50, 64, 1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--header);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.pricing-card-items {
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    background: #171717;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.pricing-card-items .pricing-header {
    padding-bottom: 30px;
}
.pricing-card-items .pricing-header span {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 20px;
}
.pricing-card-items .pricing-header h2 {
    font-size: 80px !important;
    font-weight: 600;
}
.pricing-card-items .pricing-header h2 .editable,
.pricing-card-items .pricing-header h2 .editable strong,
.pricing-card-items .pricing-header h2 .editable b {
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}
.pricing-card-items .pricing-header h2 sub {
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}
.pricing-card-items .pricing-header p {
    margin-top: 10px;
    font-weight: 300;
}
.pricing-card-items .pricing-list {
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
    margin-bottom: 28px;
}
.pricing-card-items .pricing-list li {
    font-weight: 300;
    position: relative;
    padding-left: 20px;
    /* limit text to avoid overlapping the button — show ellipsis for overflow */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* show up to 3 lines, change if needed */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pricing-card-items .pricing-list li::before {
    position: absolute;
    top: 11px;
    left: 0;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background-color: var(--white);
}
.pricing-card-items .pricing-list li:not(:last-child) {
    margin-bottom: 20px;
}
.pricing-card-items .pricing-button {
    margin-top: auto;
}
.pricing-card-items .pricing-button .theme-btn {
    border-radius: 4px;
    width: 100%;
    border: 1px solid var(--white);
    background-color: transparent;
    color: var(--white);
    padding: 20px 40px;
}
.pricing-card-items .pricing-button .theme-btn::before,
.pricing-card-items .pricing-button .theme-btn::after {
    background-color: var(--theme);
}
.pricing-card-items .pricing-button .theme-btn:hover {
    color: var(--header);
}

.portfolio-box-items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
@media (max-width: 1199px) {
    .portfolio-box-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.portfolio-box-items .project-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}
@media (max-width: 991px) {
    .portfolio-box-items .project-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.portfolio-box-items .content {
    padding-right: 80px;
    border-right: 1px solid var(--border);
}
@media (max-width: 1199px) {
    .portfolio-box-items .content {
        padding-right: 0;
        border: none;
    }
}
.portfolio-box-items .content span {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 15px;
}
.portfolio-box-items .content h3 {
    font-size: 32px;
}
.portfolio-box-items .content h3 a:hover {
    color: var(--theme);
}
.portfolio-box-items p {
    max-width: 480px;
}
.portfolio-box-items .radius-btn {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--border);
    padding-top: 50px;
}
.portfolio-box-items .radius-btn i {
    display: block;
    transform: rotate(-40deg);
    margin-bottom: 5px;
}
.portfolio-box-items .radius-btn:hover {
    background-color: var(--theme);
    color: var(--header);
}
.portfolio-box-items .project-hover {
    width: 200px;
    height: 240px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    inset-inline-start: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    visibility: hidden;
}
.portfolio-box-items:hover .project-hover {
    opacity: 1;
    visibility: visible;
}

.portfolio-image-items {
    cursor: pointer;
    position: relative;
    margin-top: 30px;
}
.portfolio-image-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
    border-radius: 12px;
    z-index: 0;
}
@media (max-width: 575px) {
    .portfolio-image-items {
        height: 400px;
    }
}
.portfolio-image-items img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.portfolio-image-items .content {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.portfolio-image-items .content p {
    font-weight: 400;
    color: var(--white);
    margin-bottom: 5px;
    font-size: 16px;
}
.portfolio-image-items .content h3 {
    font-size: 32px;
}
.portfolio-image-items .content h3 a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0;
    text-transform: none;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.portfolio-image-items .content h3 a:hover {
    background-size: 100% 2px;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(var(--theme)),
        to(var(--theme))
    );
    background-image: linear-gradient(var(--theme), var(--theme));
    color: var(--theme);
}

.portfolio-section .portfolio-slider {
    margin-left: -10%;
    margin-right: -10%;
}

/* Full-width portfolio slider that extends to screen edges */
.portfolio-slider-fullwidth {
    position: relative !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: auto !important;
    right: auto !important;
}

.portfolio-card-items {
    margin-top: 30px;
}
.portfolio-card-items .content {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.portfolio-card-items .content .title-header span {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}
.portfolio-card-items .content .title-header h3 {
    font-size: 32px;
}
@media (max-width: 991px) {
    .portfolio-card-items .content .title-header h3 {
        font-size: 26px;
    }
}
.portfolio-card-items .content .title-header h3 a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0;
    text-transform: none;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.portfolio-card-items .content .title-header h3 a:hover {
    background-size: 100% 2px;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(var(--theme)),
        to(var(--theme))
    );
    background-image: linear-gradient(var(--theme), var(--theme));
    color: var(--theme);
}

/* Overlay content for portfolio items - added by developer */
/* ensure portfolio items and slides don't introduce accidental offsets */
.portfolio-section .portfolio-slider .swiper-slide .portfolio-image-items,
.portfolio-image-items {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.portfolio-image-items img { display: block; width: 100%; height: 100%; }
.portfolio-section .portfolio-slider .swiper-slide .portfolio-image-items .content,
.portfolio-image-items .content {
    /* ensure overlay fully covers the parent and isn't shifted */
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0,0,0,0.45) !important;
    color: #fff !important;
    /* don't lock opacity with !important here so hover can override it reliably */
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease !important;
    /* allow hover to enable pointer-events */
    pointer-events: none;
    border-radius: 12px !important; /* match image rounding */
    box-sizing: border-box !important;
    transform: none !important; /* remove any accidental shift */
    z-index: 3 !important; /* make sure overlay sits above the ::before gradient */
}
.portfolio-image-items:hover .content { opacity: 1 !important; pointer-events: auto !important; }
.portfolio-image-items .content .view-btn {
    background: var(--theme);
    border: none;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.portfolio-card-items .content .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background-color: #2a2a2a;
    color: var(--white);
}
.portfolio-card-items .content .icon:hover {
    background-color: var(--theme);
    color: var(--header);
}
.portfolio-card-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.project-details-wrapper .project-details-content h2 {
    font-size: 56px;
    font-weight: 600;
}
@media (max-width: 575px) {
    .project-details-wrapper .project-details-content h2 {
        font-size: 45px;
    }
}
.project-details-wrapper .project-category-items ul li {
    font-size: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-details-wrapper .project-category-items ul li:not(:last-child) {
    margin-bottom: 20px;
}
.project-details-wrapper .project-category-items ul li span {
    font-size: 18px;
    color: var(--text);
    text-align: right;
    display: block;
}
.project-details-wrapper .details-image {
    margin-top: 50px;
    margin-bottom: 50px;
}
.project-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.project-details-wrapper .project-content-2 h2 {
    font-size: 48px;
}
@media (max-width: 575px) {
    .project-details-wrapper .project-content-2 h2 {
        font-size: 40px;
    }
}
.project-details-wrapper .project-details-content-3 h2 {
    font-size: 40px;
}
@media (max-width: 575px) {
    .project-details-wrapper .project-details-content-3 h2 {
        font-size: 35px;
    }
}
.project-details-wrapper .project-details-content-3 .details-list-items {
    display: flex;
    gap: 100px;
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content-3 .details-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.project-details-wrapper .project-details-content-3 .details-list-items ul li {
    font-size: 18px;
}
.project-details-wrapper
    .project-details-content-3
    .details-list-items
    ul
    li:not(:last-child) {
    margin-bottom: 15px;
}
.project-details-wrapper
    .project-details-content-3
    .details-list-items
    ul
    li
    i {
    margin-right: 7px;
    color: var(--theme);
}
.project-details-wrapper .preview-area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-details-wrapper .preview-area .preview-item {
    color: var(--theme);
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.project-details-wrapper .preview-area .preview-item i {
    margin-right: 10px;
}
.project-details-wrapper .preview-area .preview-item.style-2 {
    color: var(--white);
}
.project-details-wrapper .preview-area .preview-item.style-2 i {
    margin-right: 0;
    margin-left: 10px;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}
.section-title h6 {
    color: var(--theme);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
    position: relative;
    line-height: 1;
    margin-bottom: 15px;
}
.section-title h2 span {
    color: var(--theme);
    text-decoration: underline;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.center {
    text-align: center;
    margin: 0 auto;
}

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

.section-padding {
    padding: 60px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}
.hero-section {
    padding: 120px 0;
}
.header-logo {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
}

.header-logo::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 0;
    height: 0;
    background: rgb(50, 96, 124); /* цвет вспышки */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0.6;
    z-index: 0;
}

.header-logo:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.repeir-cost {
    flex-wrap: wrap;
}
.header-logo span,
.header-logo {
    position: relative;
    z-index: 1;
}
.header-logo:hover {
    color: rgb(50, 96, 124);
}
.modal-content {
    background: var(--body-bg);
}
.service-box-items {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 32px 30px;
    border: 1px solid #2a2a2a;
    position: relative;
    background-color: var(--body-bg);
    z-index: 9;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
    .service-box-items {
        border: none;
    }
}
.service-box-items .icon {
    font-size: 40px;
    color: var(--theme);
    position: relative;
    z-index: 9;
}
.service-box-items .content {
    margin-top: 25px;
    position: relative;
    z-index: 9;
}
.service-box-items .content h3 {
    margin-bottom: 10px;
}
.service-box-items .content h3 a:hover {
    color: rgba(28, 50, 64, 1);
}
.service-box-items .content p {
    font-size: 17px;
}
.service-box-items .content .service-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-box-items .content .service-btn .link-btn {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    display: inline-block;
}
.service-box-items .content .service-btn:hover .arrow-icon,
.service-box-items .content .service-btn:hover .link-btn {
    color: rgba(28, 50, 64, 1);
}
.service-box-items.border-none {
    border-right: none;
}
.service-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--bg);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
    z-index: -1;
}
.service-box-items:hover {
    border: 1px solid rgba(28, 50, 64, 1);
}
.service-box-items:hover::before {
    transform: scale(1, 1);
    transform-origin: top center;
}
.service-box-items.style-2 {
    padding: 32px;
    border-radius: 4px;
    border: 1px solid var(--border);
    position: relative;
}
.service-box-items.style-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid var(--theme);
    border-left: 1px solid var(--theme);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    transform: initial;
}
.service-box-items.style-2::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid var(--theme);
    border-right: 1px solid var(--theme);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.service-box-items.style-2:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}
.service-box-items.style-2:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    transform: initial;
    transform-origin: initial;
}
.service-box-items.style-3::before {
    background-color: #1d1d1d;
}
@media (max-width: 1199px) {
    .service-box-items {
        border-right: 1px solid var(--theme);
    }
    .service-box-items::before {
        transform: scale(1, 1);
        transform-origin: top center;
    }
}

.service-box-items-2 {
    margin-top: 30px;
    padding: 32px;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    position: relative;
    transition: all 0.4s ease-in-out;
}
.service-box-items-2 .icon {
    font-size: 40px;
    color: var(--theme);
}
.service-box-items-2 .content {
    margin-top: 25px;
}
.service-box-items-2 .content h3 {
    margin-bottom: 15px;
}
.service-box-items-2 .content h3 a:hover {
    color: var(--theme);
}
.service-box-items-2 .content .service-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-box-items-2 .content .service-btn .link-btn {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    display: inline-block;
}
.service-box-items-2 .number {
    font-size: 56px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #2a2a2a;
    position: absolute;
    top: 40px;
    right: 40px;
}
.service-box-items-2:hover .content .service-btn .arrow-icon,
.service-box-items-2:hover .content .service-btn .link-btn {
    color: rgba(28, 50, 64, 1);
}

.service-details-wrapper .details-content h2 {
    font-size: 56px;
    font-weight: 600;
}
@media (max-width: 575px) {
    .service-details-wrapper .details-content h2 {
        font-size: 45px;
    }
}
.service-details-wrapper .details-content h3 {
    font-size: 48px;
    font-weight: 700;
}
@media (max-width: 575px) {
    .service-details-wrapper .details-content h3 {
        font-size: 40px;
    }
}
.service-details-wrapper .details-content .details-list-items {
    display: flex;
    align-items: center;
    gap: 150px;
    margin-top: 50px;
    margin-bottom: 50px;
}
@media (max-width: 991px) {
    .service-details-wrapper .details-content .details-list-items {
        gap: 30px;
        flex-wrap: wrap;
    }
}
.service-details-wrapper .details-content .details-list-items ul li {
    color: var(--white);
}
.service-details-wrapper
    .details-content
    .details-list-items
    ul
    li:not(:last-child) {
    margin-bottom: 15px;
}
.service-details-wrapper .details-image {
    border-top: 1px solid var(--border);
    padding-top: 60px;
    margin-top: 60px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .service-details-wrapper .details-image {
        padding-top: 30px;
        margin-top: 30px;
    }
}
.service-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.service-details-wrapper .details-image-2 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.service-details-wrapper .details-image-2 img {
    width: 100%;
    height: 100%;
}

.team-box-items {
    margin-top: 30px;
    overflow: hidden;
}
.team-box-items .team-image {
    position: relative;
}
.team-box-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.team-box-items .team-image .social-icon {
    position: absolute;
    top: 12px;
    right: -100px;
    display: grid;
    gap: 8px;
    background-color: #f5f5f4;
    padding: 8px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-box-items .team-image .social-icon .icon {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(42, 42, 42, 0.1);
    color: var(--header);
}
.team-box-items .team-image .social-icon .icon:hover {
    background-color: rgba(28, 50, 64, 1);
}
.team-box-items .team-content {
    padding: 16px;
    background-color: #1d1d1d;
    border-radius: 4px;
    text-align: center;
    margin-left: 24px;
    margin-right: 24px;
    position: relative;
    z-index: 9;
    margin-top: -50px;
    transition: all 0.4s ease-in-out;
    border-bottom: 4px solid rgba(28, 50, 64, 1);
}
.team-box-items .team-content p {
    font-size: 16px;
    font-weight: 400;
}
.team-box-items:hover .team-image .social-icon {
    right: 12px;
    opacity: 1;
    visibility: visible;
}
.team-box-items:hover .team-content {
    background-color: rgba(28, 50, 64, 1);
}
.team-box-items:hover .team-content h3 a {
    color: #fff;
}
.team-box-items:hover .team-content p {
    color: white;
    /* color: var(--header); */
}

.team-card-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
    padding: 30px;
    border-radius: 14px;
}
.team-card-items::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    border-radius: 14px;
    background-color: #1d1d1d;
    transition: all 0.35s ease-in-out;
    z-index: -1;
}
@media (max-width: 575px) {
    .team-card-items::before {
        height: 60%;
    }
}
.team-card-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.team-card-items .team-content {
    margin-top: 30px;
}
.team-card-items .team-content h3 a:hover {
    color: var(--theme);
}
.team-card-items .team-content p {
    font-size: 16px;
    font-weight: 400;
}
.team-card-items .team-content .social-icon {
    margin-top: 20px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-items .team-content .social-icon a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: var(--white);
}
.team-card-items .team-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--header);
}
.team-card-items:hover::before {
    height: 100%;
    background-color: #1d1d1d;
}
.team-card-items.active::before {
    height: 100%;
    background-color: #1d1d1d;
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.team-details-wrapper .details-content {
    margin-left: 50px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .details-content {
        margin-left: 0;
    }
}
.team-details-wrapper .details-content h2 {
    font-size: 56px;
    font-weight: 600;
}
@media (max-width: 575px) {
    .team-details-wrapper .details-content h2 {
        font-size: 42px;
    }
}
.team-details-wrapper .details-content span {
    font-size: 20px;
    display: inline-block;
}
.team-details-wrapper .details-content .team-about-info {
    margin-top: 30px;
}
.team-details-wrapper .details-content .team-about-info h3 {
    font-size: 32px;
}
.team-details-wrapper .details-content .details-info {
    margin-top: 30px;
}
.team-details-wrapper .details-content .details-info .team-details-info {
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    position: relative;
    color: var(--text);
}
.team-details-wrapper
    .details-content
    .details-info
    .team-details-info:not(:last-child) {
    margin-bottom: 20px;
}
.team-details-wrapper .details-content .details-info .team-details-info span,
.team-details-wrapper .details-content .details-info .team-details-info a {
    color: var(--white);
    position: absolute;
    left: 0;
    top: 2px;
    margin-left: 150px;
    line-height: 1;
}
@media (max-width: 575px) {
    .team-details-wrapper
        .details-content
        .details-info
        .team-details-info
        span,
    .team-details-wrapper .details-content .details-info .team-details-info a {
        position: static;
    }
}
.team-details-wrapper .details-content .portfolio-tag {
    margin-top: 30px;
}
.team-details-wrapper .details-content .portfolio-tag ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.team-details-wrapper .details-content .portfolio-tag ul li a {
    line-height: 1;
    border: 1px solid var(--white);
    padding: 7px 15px;
    border-radius: 32px;
}
.team-details-wrapper .details-content .portfolio-tag ul li a:hover {
    background-color: var(--theme);
    color: var(--header);
}
.team-details-wrapper .details-content .social-icon {
    gap: 8px;
    margin-top: 50px;
}
.team-details-wrapper .details-content .social-icon h3 {
    margin-right: 10px;
}
.team-details-wrapper .details-content .social-icon a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: var(--white);
}
.team-details-wrapper .details-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.testimonial-box-items {
    margin-top: 30px;
    background-color: #1d1d1d;
    padding: 40px 35px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #1d1d1d;
    transition: all 0.4s ease-in-out;
}
.testimonial-box-items .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.testimonial-box-items .client-info .content h5 {
    font-size: 20px;
    font-weight: 500;
}
.testimonial-box-items .client-info .content span {
    font-size: 16px;
    color: #f5f5f4;
}
.testimonial-box-items p {
    font-size: 18px;
}
.testimonial-box-items .testi-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.testimonial-box-items .testi-bottom .star {
    color: #628eab;
}
.testimonial-box-items .icon {
    position: absolute;
    top: 0;
    right: 0;
}
.testimonial-box-items:hover {
    border: 1px solid var(--theme);
}

.tesimonial-wrapper-2 .testimonial-image {
    margin-left: -10%;
}
@media (max-width: 1199px) {
    .tesimonial-wrapper-2 .testimonial-image {
        margin-left: 0;
    }
}
.tesimonial-wrapper-2 .testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.tesimonial-wrapper-2 .testimonial-content {
    margin-left: 80px;
}
@media (max-width: 1199px) {
    .tesimonial-wrapper-2 .testimonial-content {
        margin-left: 0;
    }
}
.tesimonial-wrapper-2 .testimonial-card-items {
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    background: #171717;
    padding: 32px;
    transition: all 0.4s ease-in-out;
}
.tesimonial-wrapper-2 .testimonial-card-items .testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.tesimonial-wrapper-2 .testimonial-card-items .testi-top .star {
    color: #628eab;
}
.tesimonial-wrapper-2 .testimonial-card-items .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.tesimonial-wrapper-2 .testimonial-card-items .client-info .content h5 {
    font-size: 20px;
    font-weight: 500;
}
.tesimonial-wrapper-2 .testimonial-card-items .client-info .content span {
    font-size: 16px;
    color: #f5f5f4;
}
.tesimonial-wrapper-2 .testimonial-card-items:hover {
    border: 1px solid var(--theme);
}
.tesimonial-wrapper-2 .testimonial-slider-2 {
    margin-right: -50%;
    margin-left: 10%;
    margin-top: -130px;
}
@media (max-width: 1199px) {
    .tesimonial-wrapper-2 .testimonial-slider-2 {
        margin-right: 0;
        margin-left: 0;
        margin-top: -50px;
    }
}
@media (max-width: 991px) {
    .tesimonial-wrapper-2 .testimonial-slider-2 {
        margin-top: 30px;
    }
} /*# sourceMappingURL=main.css.map */


.CallBack{
    width: 100%;
    height: 100%;
    background-color: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 20px;
}

.clean-input {
    all: unset !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

.myInput{
    width: 100% !important;
    font-size: 16px;
    background-color: #ffffff00 !important;
    border: 1px solid white !important;
    padding: 10px 20px !important;
    border-radius: 40px !important;
}

.BlockInput{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    /* padding: 0px 10vw; */
    flex-direction: column;
}

.ButtonBlock{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.MyButton{
    width: 100%;
    background-color: #628eab;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.SmallText{
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 14px;
    text-align: center;
    color: var(--text);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.glow {
  position: relative; 
  background-color: #1a1a1a; 
  color: white;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 0 90px 15px #628EAB; */
  
  /* Анимация левитации */
  animation: float 3s ease-in-out infinite alternate;
}

/* Ключевые кадры анимации */
@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}



































/* Чтобы по умолчанию модалка была скрыта */
#galleryModal {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    justify-content: center;
    align-items: center;
}

#galleryModal.show {
    opacity: 1;
}


html, body {
    height: 100% !important;
}

.modal-overlay {
    position: fixed;
    height: 100vh !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(18,18,18,0.9);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Модалка по центру с анимацией */
.modal {
  display: flex;
  flex-direction: row;
  background-color: #1a1a1a;
  border-radius: 12px;
  width: 90%;
  padding: 20px;
  max-width: 1200px;
  height: 80vh; /* <--- ключевая строка */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.modal-calc {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    border-radius: 12px;
    max-width: 1200px;
    max-width: 1200px;
    padding: 40px;
    height: max-content;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    justify-content: center;
}

.modalCallBack{
    display: flex;
    gap: 40px;
    flex-direction: row !important;
    flex-direction: column;
    background-color: #1a1a1a;
    border-radius: 12px;
    max-width: 1200px;
    max-width: 1200px;
    padding: 0px !important;
    height: max-content;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    justify-content: center;
    width: max-content;
    height: max-content;
}

.BlockInputModal{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    /* padding: 40px 10vw; */
    flex-direction: column;
}

.MainBlockInTheModalCallBack{
    padding: 40px;
}

.MainBlockInTheModalCallBack p{
    margin-bottom: 10px; 
    line-height: 1.4; 
    color: #444; 
    max-width: 470px; 
    margin: 20px 0px;
}

/* При появлении */
.modal-overlay.show .modal {
    opacity: 1;
    transform: scale(1);
}


  .modal h2 {
    margin: 0;
    font-size: 24px;
  }

  .modal p {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 20px 0;
  }

  .progress-bar {
    height: 3px;
    width: 100%;
    background-color: #3e5871;
    margin: 20px 0px;
    border-radius: 2px;
    overflow: hidden;
  }

  .progress {
    height: 3px;
    width: 20%; /* Шаг 1 из 5 */
    background-color: #628EAB;
  }

  .options {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    gap: 10px;
  }

  .option {
    flex: 1;
    background-color: #1c1c1c;
    border: 1px solid #3e5871;
    border-radius: 8px;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.3s, border 0.3s;
  }

  .option:hover {
    background-color: #2a2a2a;
  }

  .option.selected {
    background-color: #628EAB;
    border-color: #628EAB;
  }

  .option span {
    margin-top: 10px;
    font-size: 14px;
  }

  .next-btn {
    padding: 10px 40px;
    background-color: #628EAB;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }

  .next-btn:hover {
    background-color: #4a6d80;
  }

 /* Общий стиль для кнопок модалки */
.ModalButton {
    padding: 10px 40px;
    background-color: #628EAB;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin: 0 5px; /* немного отступа между кнопками */
}

.ModalButton:hover {
    background-color: #4a6d80;
}

/* .close-modal{
    opacity: 0;
} */





/* Модалка */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.show {
  opacity: 1;
}

/* .modal {
  background: #fff;
  display: flex;
  flex-direction: row;
  width: 80%;
  max-width: 1200px;
  height: 80%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
} */

/* Левая часть */
.modal-left {
  flex: 2;
  /* background-color: #000; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-left img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.swiper {
    width: 100% !important;
}

/* Правая часть */
.modal-right {
    flex: 1;
    display: flex;
    color: #111;
    padding: 20px 40px;
    gap: 50px;
    overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
}

.main-swiper,
.thumbs {
  width: 100%;
}

.main-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.modal-right h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.modal-right p {
  margin-bottom: 10px;
  line-height: 1.4;
  color: #444;
}

.modal-right button {
  margin-top: 20px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  background-color: #4c6ef5;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-right button:hover {
  background-color: #3b5bdb;
}

/* Кнопка закрытия */
.close-gallery {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #444;
  cursor: pointer;
  z-index: 10;
}

/* Мини-слайдер */
.thumbs {
  margin-top: 10px;
}

.thumbs .swiper-slide {
  width: 25%;
  opacity: 0.6;
  cursor: pointer;
}

.thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #ffffff;
    border-radius: 6px;
}

.thumbs img {
  border-radius: 6px;
}

/* Стрелки */
.swiper-button-next,
.swiper-button-prev {
  color: #4c6ef5;
}


.swiper-button-next,
.swiper-button-prev {
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15); /* полупрозрачный круг */
  backdrop-filter: blur(3px);
  transition: background-color 0.3s, transform 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important; /* размер стрелки внутри */
  color: #fff; /* белая стрелка */
  opacity: 0.9;
}

/* Ховер — чуть ярче и масштаб */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* Позиционирование по центру высоты */
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}

/* Чтобы стрелки не накладывались на контент */
.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Крестик закрытия модалки */
.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: all 0.3s ease;
  z-index: 1010;
}

.close-modal:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.PredImg{
    flex: 1; 
    max-width: 400px; 
    overflow: hidden; 
    display: flex; 
    align-items: center;
}

@media (max-width: 1024px) and (min-width: 768px){
    .hero-content h1{
        line-height: 63px !important;
    }

    .BetweenDiv{
        gap: 40px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .glow {
        padding: 50px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .section-title-area {
        gap: 0px !important;
    }

    .theme-btn {
        padding: 20px 17px;
        border-radius: 40px;
    }

    .pricing-card-items .pricing-header h2 {
        font-size: 61px;
    }

    .modal-overlay {
        padding: 40px;
    }

    .MainBlockInTheModalCallBack{
        width: 50%;
        padding: 20px;
    }

    .PredImg img{
        height: 100% !important;
    }

    .portfolio-image-items img {
        height: 230px;
    }
}

@media (max-width: 767px) and (min-width: 425px){
    .hero-content h1{
        line-height: 40px !important;
    }

    .BetweenDiv{
        gap: 80px !important;
    }

    .hero-section {
        padding: 50px 0;
    }

    .options {
        margin: 10px 0px;
    }

    .glow {
        padding: 20px;
    }

    h2 {
        font-size: 26px;
    }

    .section-title{
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .section-title-area {
        gap: 0px !important;
    }

    .theme-btn {
        padding: 20px 17px;
        border-radius: 40px;
    }

    .pricing-card-items .pricing-header h2 {
        font-size: 61px;
    }

    .modal-overlay {
        padding: 0px;
    }

    .MainBlockInTheModalCallBack{
        width: 50%;
        padding: 20px;
    }

    .PredImg img{
        height: 100% !important;
    }

    .portfolio-image-items img {
        height: 230px;
    }

    .hero-4 .hero-content h1 {
        font-size: 35px;
    }

    .hero-4 .hero-content .counter-items {
        justify-content: center;
    }

    .theme-btn {
        font-size: 18px;
    }

    .portfolio-section .portfolio-slider {
        margin-left: 0%;
        margin-right: 0%;
    }

    .portfolio-image-items {
        height: auto;
    }

    .modal{
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .modal-right {
        padding: 10px;
    }

    .modal-right {
        gap: 10px;
    }

    .MainBlockInTheModalCallBack p{
        display: none;
    }

    .MainBlockInTheModalCallBack h2{
        font-size: 22px;
    }

    .BlockInputModal input{
        padding: 0px 16px !important;
        font-size: 14px !important;
    }

    .BlockInputModal button{
        font-size: 12px !important;
        padding: 16px 0px !important;
    }

    .BlockInputModal{
        gap: 10px !important;
    }

    .modal-overlay{
        padding: 20px !important;
    }

    .modalCallBack {
        gap: 0px !important;
    }

    .about-image{
        display: flex;
        justify-content: center !important;
    }

    .about-image img{
        width: 60% !important;
    }
}

@media (max-width: 424px) and (min-width: 375px){

    .gapClass{
        gap: 50px;
    }

    .PredImg {
        display: none !important;
    }

    .hero-content h1{
        line-height: 40px !important;
    }

    .BetweenDiv{
        gap: 80px !important;
    }

    .options {
        margin: 10px 0px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .glow {
        padding: 20px;
    }

    h2 {
        font-size: 26px;
    }

    .section-title{
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .section-title-area {
        gap: 0px !important;
    }

    .theme-btn {
        padding: 20px 17px;
        border-radius: 40px;
    }

    .pricing-card-items .pricing-header h2 {
        font-size: 61px;
    }

    .modal-overlay {
        padding: 0px;
    }

    .MainBlockInTheModalCallBack{
        width: 50%;
        padding: 20px;
    }

    .PredImg img{
        height: 100% !important;
    }

    .portfolio-image-items img {
        height: 230px;
    }

    .hero-4 .hero-content h1 {
        line-height: 42px !important;
        font-size: 42px !important;
        margin-bottom: 5px;
    }

    .hero-4 .hero-content .counter-items .counter-content h2 {
        font-weight: 900;
    }

    .TextSpanInHeroContent{
        font-size: 24px;
    }

    .hero-4 .hero-content .counter-items {
        justify-content: center;
    }

    .theme-btn {
        font-size: 18px;
    }

    .portfolio-section .portfolio-slider {
        margin-left: 0%;
        margin-right: 0%;
    }

    .portfolio-image-items {
        height: auto;
    }

    .modal{
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .modal-right {
        padding: 10px;
    }

    .modal-right {
        gap: 10px;
    }

    .MainBlockInTheModalCallBack p{
        display: none;
    }

    .MainBlockInTheModalCallBack h2{
        font-size: 42px;
    }

    .MainBlockInTheModalCallBack{
        padding: 20px;
        width: 100%;
    } 

    .MainBlockInTheModalCallBack{
        padding: 20px
    }

    .about-image {
        display: none !important;
    }

    .BlockInputModal input{
        padding: 10px 24px !important;
        font-size: 17px !important;
    }

    .BlockInputModal button{
        font-size: 17px !important;
        padding: 16px 0px !important;
    }

    .BlockInputModal{
        gap: 10px !important;
    }

    .modal-overlay{
        padding: 10px !important;
    }

    .modal-overlay.show .modal {
        gap: 10px;
    }

    .modalCallBack {
        gap: 0px !important;
    }

    .LogoImg{
        width: 50px;
        height: 50px;
    }

    .header-logo {
        font-size: 20px;
    }
}

@media (max-width: 374px) and (min-width: 320px){

    .LogoImg{
        width: 40px;
        height: 40px;
    }

    .header-logo {
        font-size: 18px;
    }

    .gapClass{
        gap: 50px;
    }

    .PredImg {
        display: none !important;
    }

    .hero-content h1{
        line-height: 40px !important;
    }

    .options {
        margin: 10px 0px;
    }

    .BetweenDiv{
        gap: 80px !important;
    }

    .hero-section {
        padding: 50px 0;
    }

    .glow {
        padding: 20px;
    }

    h2 {
        font-size: 26px;
    }

    .section-title{
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .section-title-area {
        gap: 0px !important;
    }

    .theme-btn {
        padding: 20px 17px;
        border-radius: 40px;
    }

    .pricing-card-items .pricing-header h2 {
        font-size: 49px;
    }

    .modal-overlay {
        padding: 0px;
    }

    .MainBlockInTheModalCallBack{
        width: 50%;
        padding: 20px;
    }

    .PredImg img{
        height: 100% !important;
    }

    .portfolio-image-items img {
        height: 230px;
    }

    .hero-4 .hero-content h1 {
        font-size: 46px;
    }

    .hero-content{
        text-align: center;
    }

    .hero-4 .hero-content .counter-items {
        justify-content: center;
    }

    .theme-btn {
        font-size: 18px;
    }

    .portfolio-section .portfolio-slider {
        margin-left: 0%;
        margin-right: 0%;
    }

    .portfolio-image-items {
        height: auto;
    }

    .modal{
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .modal-right {
        padding: 10px;
    }

    .modal-right {
        gap: 10px;
    }

    .MainBlockInTheModalCallBack p{
        display: none;
    }

    .MainBlockInTheModalCallBack h2{
        font-size: 30px;
    }

    .MainBlockInTheModalCallBack{
        padding: 20px;
        width: 100% !important;
    }

    .BlockInputModal input{
        padding: 10px 24px !important;
        font-size: 17px !important;
    }

    .BlockInputModal button{
        font-size: 17px !important;
        padding: 16px 0px !important;
    }

    .BlockInputModal{
        gap: 10px !important;
    }

    .modal-overlay{
        padding: 10px !important;
    }

    .modal-overlay.show .modal {
        gap: 10px;
    }

    .modalCallBack {
        gap: 0px !important;
    }

    .about-image{
        display: none !important;
    }

    /* .about-image{
        display: flex;
        justify-content: center !important;
    }

    .about-image img{
        width: 60% !important;
    } */
}