:root {
    --c_primary: #00E4FE;
    --c_secondary: #33B4FF;
    --c_dark_primary: #002033;
    --c_text: #464646;
    --c_text_dark: #1d1d1d;
    --c_heading: #101010;
    --c_dark: #141414;
    --c_black: #000000;
    --c_white: #ffffff;
    --c_gradient: transparent linear-gradient(270deg, var(--c_secondary) 0%, var(--c_primary) 100%) 0% 0% no-repeat padding-box !important;
    --transition: all 0.3s ease-in-out 0s;
    --shadow: 0 0px 23px #00000021;
    --c_opacity: #006EEF50;
    --c_gray: #f7f7f7;
}

/***** Reset Css | Start *****/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

body {
    background-color: var(--c_white);
    overscroll-behavior: none;
    font-family: 'Product Sans';
}

:is(body, p, li) {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--c_text)
}

:is(p, li) small {
    font-size: 16px;
    display: block;
}

a,
a:hover {
    outline: 0;
    text-decoration: none;
    transition: var(--transition)
}

.hd_1 :where(h1, h2, h3, h4, h5, h6),
h1,
.fs_h1 {
    font-size: 56px
}

.hd_2 :where(h1, h2, h3, h4, h5, h6),
h2 {
    font-size: 44px
}

.hd_2_1 :where(h1, h2, h3, h4, h5, h6) {
    font-size: 40px
}

.hd_3,
.hd_3 :where(h1, h2, h3, h4, h5, h6),
h3 {
    font-size: 30px
}

.hd_3_1 :where(h1, h2, h3, h4, h5, h6) {
    font-size: 36px
}

.hd_4 :where(h1, h2, h3, h4, h5, h6),
h4 {
    font-size: 26px
}

.hd_5 :where(h1, h2, h3, h4, h5, h6),
h5 {
    font-size: 24px
}

.hd_6 :where(h1, h2, h3, h4, h5, h6),
h6 {
    font-size: 22px
}

.hd_7 :where(h1, h2, h3, h4, h5, h6) {
    font-size: 20px
}

:is(h1, h2, h3, h4, h5, h6) {
    color: var(--c_heading);
    font-weight: 700;
    line-height: 1.3;
    margin: 0
}

:is(h1, h2, h3, h4, h5, h6) strong {
    font-weight: 900;
}

:is(h1, h2, h3, h4, h5, h6).fw_400 {
    font-weight: 400;
}

:is(p, ol, ul, li, figure) {
    margin: 0
}

figure {
    line-height: 0;
}

figure figcaption {
    line-height: 1.5;
}

:where(p, ol, ul, li, h1, h2, h3, h4, h5, h6):not(:last-child) {
    margin-bottom: 15px
}

.bg_gray {
    background-color: var(--c_gray)
}

ul {
    padding: 0;
    list-style: none
}

img {
    max-width: 100%
}

.u_spc {
    padding-top: 80px;
    padding-bottom: 80px
}

.ut_spc {
    padding-top: 80px
}

.ub_spc {
    padding-bottom: 80px
}

.uh_spc {
    padding-top: 30px;
    padding-bottom: 30px
}

.uht_spc {
    padding-top: 30px
}

.uhb_spc {
    padding-bottom: 30px
}

.m_40 {
    margin: 40px 0;
}

.mt_40 {
    margin-top: 40px;
}

.mb_40,
body:not(.home) .s_head {
    margin-bottom: 40px;
}

.text_center {
    text-align: center
}

.text_white,
.text_white :where(*:not(.btn)) {
    color: var(--c_white);
}

.text_white p {
    font-weight: 300
}

.inherit,
.s_h .inherit,
.m_h .inherit {
    color: inherit;
    text-decoration: none;
}

.inhrt_undr {
    color: inherit;
    text-decoration: underline;
}

.stcky_tp {
    position: sticky;
    top: 90px;
}

.fullbox_link {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    inset: 0;
    margin: auto;
}

.conta_iner {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto
}

.side_conta_iner {
    width: calc(100% - (100% - 90%) / 2);
    max-width: calc(100% - (100% - 1170px) / 2);
    margin: 0 0 0 auto;
}

main {
    overflow: clip;
}

.content,
.nv_spc {
    padding-top: 95px;
}

.m_h p {
    font-size: 22px
}

.s_h p {
    font-size: 20px
}

.s_h h2:has(strong),
.s_h h1:has(strong) {
    font-weight: 300;
}

.s_h p a,
.m_h p a {
    color: var(--c_primary)
}

.s_h p a:hover,
.m_h p a:hover {
    text-decoration: underline
}

.s_h :is(h1, h2, h3, h4, h5, h6),
.s_h .fs_h1 {
    font-weight: 600
}

.s_h :is(h1, h2, h3, h4, h5, h6).fw_400 {
    font-weight: 400;
}

.s_h p.itlc {
    font-size: 24px;
    font-weight: 500;
    color: var(--c_text_dark)
}

.s_h>.btn,
.m_h>.btn {
    margin-top: 25px;
}

.br {
    display: block;
}

.c_primary {
    color: var(--c_primary)
}

.c_secondary {
    color: var(--c_secondary)
}

.mb_0 {
    margin-bottom: 0;
}

.blk_span {
    display: block;
}

.juicer-feed .j-message p {
    color: #666;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.juicer-feed .j-meta {
    margin-top: 15px;
}

.juicer-feed .j-meta a {
    color: #3a3a3a
}

.juicer-feed.modern .j-text {
    padding: 15px 15px 15px 15px;
}

/* Buttons */
button {
    font-family: var(--font_ProductSans);
    cursor: pointer;
}

.btn {
    font-size: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font_ProductSans);
    transition: var(--transition);
    padding-inline: 20px;
    padding-block: 5px;
    position: relative;
    width: -moz-fit-content;
    white-space: nowrap;
    width: fit-content;
    box-shadow: none;
    overflow: hidden;
    cursor: pointer;
    gap: 8px;
    z-index: 1;
    border: 1px solid var(--c_primary);
    color: var(--c_black);
    border-radius: 50px;
    background: none;
}

.btn span.play::before {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--c_primary);
    position: relative;
    left: 2px;
}

.btn span.callIcon::before {
    background-size: 20px;
    background-image: url('https://media.apptunix.com/wp-content/uploads/2024/05/16060748/call_icon.svg')
}

.hdrfrm_btn {
    min-height: 45px;
    height: 45px;
    font-size: 16px;
    min-width: 150px;
}

.btn:hover span::before {
    filter: brightness(0) invert(1)
}

.btn.sm {
    font-size: 15px;
    min-height: 45px;
    padding-inline: 20px;
}

.btn:hover span.play::before {
    filter: none
}

.btn.xsm {
    font-size: 14px;
    min-height: 40px;
    padding-inline: 15px;
}

.btn-primary {
    border: 1px solid var(--c_primary);
    background: none;
}

.btn-primary:before {
    content: "";
    background: var(--c_primary);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    transition: 0.5s all;
    border-radius: 30px;
}

.btn-primary span {
    position: relative;
    color: var(--c_black);
}

.btn-primary:hover span {
    color: var(--c_primary);
}

.btn-primary:hover::before {
    height: 0;
    transition: 0.5 all;
}

.btn-primary:hover {
    color: var(--c_white);
}

.btn-primary:hover img {
    filter: brightness(0) invert(1);
}


.btn-white {
    color: var(--c_black);
    background: var(--c_white)
}

.btn-white.br {
    display: flex;
    color: var(--c_white);
    background: transparent;
    border: 1px solid var(--c_white);
}

.btn-white.br span {
    background: var(--c_white)
}

.btn-white.br span:before {
    filter: none
}

.btn-white span {
    background: var(--c_primary)
}

.btn-white span:before {
    filter: brightness(0) invert(1)
}

.btn-white:hover span.play:before {
    filter: brightness(0) invert(1);
}

.btn.btn-white:not(.br)::after {
    filter: brightness(0);
}

.btn-black {
    color: var(--c_white);
    background: var(--c_black)
}

.btn-black span {
    background: var(--c_white)
}

.btn-black:hover span:before {
    filter: none
}

.btn-black.br {
    display: flex;
    color: var(--c_black);
    background: transparent;
    border: 1px solid var(--c_black);
}

.btn-black.br span {
    background: var(--c_black)
}

.btn-black.br span:before {
    filter: brightness(0) invert(1)
}

.btn-black.br::after {
    filter: brightness(0)
}

.btn-video {
    color: var(--c_primary);
    background: var(--c_white);
    border: 1px solid var(--c_primary);
    padding-right: 50px !important;
}

.btn-video span {
    animation: none;
    border: 3px solid #00649eb0
}

.btn-primary.btn-video {
    color: var(--c_white);
}

.btn-video::after {
    content: unset !important;
}

.btn span.play {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}

.btn-video span::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 3px solid transparent;
    border-top: 3px solid var(--c_primary);
    border-right: 3px solid var(--c_primary);
    animation: ringRotate 4s linear infinite;
    border-radius: 50%
}

@keyframes pulse-animation2 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .3)
    }

    100% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0)
    }
}

@keyframes iconMove5 {
    0% {
        -webkit-transform: translateX(0) rotate(-90deg);
        transform: translateX(0) rotate(-90deg)
    }

    30% {
        opacity: 0
    }

    31% {
        -webkit-transform: translateX(1.25rem) rotate(-90deg);
        transform: translateX(1.25rem) rotate(-90deg)
    }

    32% {
        -webkit-transform: translateX(-1.25rem) rotate(-90deg);
        transform: translateX(-1.25rem) rotate(-90deg)
    }

    84% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) rotate(-90deg);
        transform: translateX(0) rotate(-90deg)
    }
}

@keyframes ringRotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0)
    }

    15% {
        transform: translateX(-12%) rotate(-5deg)
    }

    30% {
        transform: translateX(10%) rotate(3deg)
    }

    45% {
        transform: translateX(-8%) rotate(-3deg)
    }

    60% {
        transform: translateX(6%) rotate(2deg)
    }

    75% {
        transform: translateX(-3%) rotate(-1deg)
    }

    100% {
        transform: translateX(0)
    }
}

.btn_center {
    margin-inline: auto;
}

/* Forms */
.form_control {
    margin-bottom: 15px
}

label {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
    display: block
}

input,
select,
textarea,
.form .select2 .select2-selection {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: var(--c_black);
    background-color: var(--c_white);
    font-family: var(--font_ProductSans);
    border: 1px solid #b1b3b873;
    border-radius: 30px;
    box-shadow: none;
    outline: 0
}

:is(input, select, textarea):-internal-autofill-selected,
:is(input, select, textarea):-webkit-autofill {
    color: var(--c_black) !important;
    background-color: var(--c_white) !important
}

input,
select,
.form .select2 .select2-selection {
    height: 50px
}

input {
    padding: 5px 20px
}

input[type=file] {
    padding-left: 0
}

input[type=file]::file-selector-button {
    height: 50px;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    color: #000;
    margin-right: 20px
}

select,
.form .select2 .select2-selection {
    padding: 0 40px 0 20px;
    appearance: none;
    background-image: url('https://media.apptunix.com/wp-content/uploads/2024/04/26084346/arrow-2.svg');
    background-size: 12px;
    background-position: right 20px center;
    background-repeat: no-repeat;
}

textarea {
    height: 120px;
    padding: 15px 20px;
    resize: none
}

textarea.form_control {
    margin-bottom: 0;
}

textarea.form_control::-webkit-scrollbar {
    width: 0;
    height: 0;
}

input:focus,
select:focus,
textarea:focus,
.form .select2 .select2-selection:focus {
    border-color: var(--c_primary)
}

:is(input, select, textarea)::placeholder {
    color: var(--c_text);
    opacity: 1
}

/* :is(input,select,textarea)::placeholder { color: currentColor;opacity:1} */
.empty_value {
    border-color: red !important
}

label.error,
span.not_valid_no {
    color: red;
    font-size: 12px;
    font-weight: 500;
    display: inline;
    margin-bottom: 0;
    display: none !important;
}

.form_control .iti.iti--allow-dropdown {
    width: 100%
}

.btn_wrap {
    position: relative;
    width: max-content
}

.btn_wrap>input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    padding: 0 !important;
}

.form_btn {
    margin-top: 30px;
}

.form_btn .btn[type=submit] {
    color: var(--c_white);
    background: var(--c_primary);
    border-radius: 5px;
    min-width: 160px;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 20px;
    min-height: 50px;
    border: unset;
}

.form_btn .btn[type=submit]:hover {
    color: var(--c_white);
    background: var(--c_secondary)
}

/* Form Version2 */
.form.v2 :is(input:not(.btn, [type=checkbox]), select, textarea) {
    border-radius: 0;
    border: none;
    color: var(--c_black);
    border-bottom: solid 1px #e8e8e8;
    padding: 10px 0;
    background-color: transparent;
    font-weight: 500;
    font-size: 16px;
}

.form.v2 :is(input:not(.btn):not([type=checkbox]), select, textarea):-internal-autofill-selected,
.form.v2 :is(input:not(.btn):not([type=checkbox]), select, textarea):-webkit-autofill {
    color: var(--c_white) !important;
    background-color: transparent !important
}

.form.v2 :is(input:not(.btn, [type=checkbox]), select, textarea):focus {
    border-color: var(--c_primary)
}

.form.v2 :is(input:not(.btn, [type=checkbox]), select, textarea)::placeholder {
    color: var(--c_black);
    opacity: 80%;
}

.form.v2 :is(input:not(.btn, [type=checkbox]), select, textarea).empty_value {
    border-color: red !important
}

.form.v2 :is(input:not(.btn, [type=checkbox]), select) {
    height: 50px
}

.form.v2 select {
    padding-right: 35px !important;
    background-position: right 10px center;
    background-image: url('https://media.apptunix.com/wp-content/uploads/2025/04/08073325/arrow-2_wht.png');
    background-size: 12px
}

.form.v2 select option {
    color: var(--c_black)
}

.form.v2 select:invalid,
form.v2 select option:first-child {
    color: var(--c_white);
}

.form.v2 :is(textarea) {
    height: 80px
}

.form.v2 .iti__selected-dial-code {
    margin-left: 2px;font-weight: 500;
}

.form.v2 .iti__selected-flag {
    padding-left: 0
}

.form.v2 .iti__flag-container {
    height: 50px;
    bottom: auto;
}

.form.v2 .iti__arrow {
    margin-left: 4px;
    border-top-color: var(--c_black);
}

.form.v2 .iti__arrow--up {
    border-bottom-color: var(--c_black);
}

.form_checkbox {
    margin-top: 20px
}

.form_checkbox label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
    gap: 5px
}

.form_checkbox label:not(:last-child) {
    margin-bottom: 15px
}

.form_checkbox label input[type=checkbox] {
    height: 22px;
    width: 22px;
    appearance: none;
    color: var(--c_text_dark);
    border: 2px solid #0079bf42;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

.form_checkbox label input[type=checkbox]::before {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 11px;
    border: solid var(--c_primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.form_checkbox label input[type=checkbox]:checked::before {
    opacity: 1;
    visibility: visible
}

.rangesldr input,
.cm_white_mode .rangesldr input {
    width: auto;
    border: unset !important;
    height: auto !important;
    color: transparent !important
}

.frm_updtn .form_control {
    width: 49%
}

.frm_updtn {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap
}

.form.v2 .iti--separate-dial-code .iti__selected-dial-code {
    color: var(--c_black)
}

.contactForm_grid .form.v2 label.error,
.contactForm_grid .form.v2 span.not_valid_no {
    display: none !important
}

.rangesldr .slider-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: #007bff2e;
    border-radius: 3px;
    margin-top: 10px;
    cursor: pointer;
    overflow: visible !important;
}

.form_control.rangesldr {
    text-align: left;
}

.rangesldr .slider-thumb {
    position: absolute;
    top: -2px;
    width: 10px;
    height: 10px;
    background: #007bff;
    border-radius: 50%;
    transform: translateX(-50%);
    cursor: grab;
}

.sub_msg:empty {
    display: none;
}

.sub_msg {
    margin-top: 12px;
}

.alert {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    border: 1px solid transparent;
    padding: 12px 15px;
    border-radius: 4px;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

/**white mode css**/
.cm_white_mode .form.v2 :is(input:not(.btn, [type=checkbox]), select, textarea) {
    color: var(--c_black);
    border-bottom-color: #000
}

.cm_white_mode .contactForm_grid .rt :is(h2, input:not(.btn, [type=checkbox]), textarea, select).empty_value {
    border-bottom-color: red !important
}

.cm_white_mode .form.v2 input::placeholder,
.cm_white_mode .form.v2 textarea::placeholder {
    color: var(--c_black) !important
}

.cm_white_mode .iti--separate-dial-code .iti__selected-dial-code {
    color: var(--c_black)
}

.cm_white_mode .address_slider .address_slide figure img {
    filter: brightness(0)
}

.cm_white_mode .address_thumbs figure.slick-current {
    border-color: #006eef
}

.cm_white_mode.contactForm_sc {
    background: var(--c_white);
}

.cm_white_mode .contactForm_grid .lt.text_white :where(:not(.btn)) {
    color: var(--c_black)
}

.cm_white_mode .form_control.rangesldr label {
    color: var(--c_black)
}

.cm_white_mode .map_frame img {
    opacity: .1
}

.cm_white_mode .contactForm_grid .rt {
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    border: unset;
    box-shadow: 0 3px 24px #00000017
}

.cm_white_mode .form.v2 .iti--separate-dial-code .iti__selected-dial-code {
    color: var(--c_black)
}

.cm_white_mode .form.v2 .iti__arrow {
    margin-left: 4px;
    border-top-color: var(--c_black);
}

.cm_white_mode .form.v2 .iti__arrow--up {
    border-bottom-color: var(--c_black);
}

.cm_white_mode .form.v2 select {
    background-image: url('https://media.apptunix.com/wp-content/uploads/2024/04/26084346/arrow-2.svg');
}

.cm_white_mode .contactForm_grid .rt h2 {
    color: var(--c_black);
}

/**header form css**/
.header_form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

.header_form textarea {
    height: 100px;
}

.header_form input,
.header_form select {
    height: 45px;
}

.btn_wrap .btn::after {
    content: unset;
}

section[id*="previous_sc"],
section[id*="next_sc"] {
    scroll-margin-top: 30px;
}

/* Reset Responsive */
@media(max-width:1600px) {
    .u_spc {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .ut_spc {
        padding-top: 60px
    }

    .ub_spc {
        padding-bottom: 60px
    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1,
    .fs_h1 {
        font-size: 48px
    }
}

@media(max-width:1400px) {

    .hd_2 :where(h1, h2, h3, h4, h5, h6),
    h2 {
        font-size: 42px
    }

    .hd_2_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 40px
    }

    .hd_3,
    .hd_3 :where(h1, h2, h3, h4, h5, h6),
    h3 {
        font-size: 30px
    }

    .hd_3_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 36px
    }

    .hd_4 :where(h1, h2, h3, h4, h5, h6),
    h4 {
        font-size: 26px
    }

    .hd_5 :where(h1, h2, h3, h4, h5, h6),
    h5 {
        font-size: 24px
    }

    .hd_6 :where(h1, h2, h3, h4, h5, h6),
    h6 {
        font-size: 22px
    }

    .hd_7 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 20px
    }
}

@media(max-width:1200px) {
    .form.v2 :is(input:not(.btn, [type=checkbox]), select) {
        height: 40px
    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1,
    .fs_h1 {
        font-size: 42px
    }

    .hd_2 :where(h1, h2, h3, h4, h5, h6),
    h2,
    .hd_2_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 40px
    }

    .hd_3 :where(h1, h2, h3, h4, h5, h6),
    h3 {
        font-size: 24px
    }

    .hd_3_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 30px
    }

    .hd_4 :where(h1, h2, h3, h4, h5, h6),
    h4 {
        font-size: 22px
    }

    .hd_5 :where(h1, h2, h3, h4, h5, h6),
    h5 {
        font-size: 20px
    }

    .hd_6 :where(h1, h2, h3, h4, h5, h6),
    h6 {
        font-size: 20px
    }

    .hd_7 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 20px
    }

    .s_h p {
        font-size: 18px
    }

    .s_h p.itlc {
        font-size: 20px;
    }

    .m_h p {
        font-size: 20px
    }

    :is(body, p, li) {
        font-size: 16px
    }

    .s_h>.btn {
        margin-top: 24px
    }

    :is(p, li) small {
        font-size: 14px;
    }
}

@media(max-width:992px) {

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1,
    .fs_h1 {
        font-size: 36px
    }

    .hd_2 :where(h1, h2, h3, h4, h5, h6),
    h2,
    .hd_2_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 30px
    }

    .hd_3 :where(h1, h2, h3, h4, h5, h6),
    h3 {
        font-size: 24px
    }

    .hd_3_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 26px
    }

    .hd_4 :where(h1, h2, h3, h4, h5, h6),
    h4 {
        font-size: 18px
    }

    .s_h p {
        font-size: 16px
    }

    .s_h p.itlc {
        font-size: 18px;
    }

    .m_h p {
        font-size: 18px
    }

    .u_spc {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .ut_spc {
        padding-top: 40px
    }

    .ub_spc {
        padding-bottom: 40px
    }

    .uh_spc {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .uht_spc {
        padding-top: 20px
    }

    .uhb_spc {
        padding-bottom: 20px
    }

    .br:not(.btn) {
        display: initial
    }
}

@media(max-width:767px) {
    .s_h p.itlc {
        font-size: 16px;
    }

    .hd_1 :where(h1, h2, h3, h4, h5, h6),
    h1,
    .fs_h1 {
        font-size: 26px
    }

    .hd_2 :where(h1, h2, h3, h4, h5, h6),
    h2 {
        font-size: 22px
    }

    .hd_2_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 22px
    }

    .hd_3_1 :where(h1, h2, h3, h4, h5, h6) {
        font-size: 24px
    }

    .btn,
    .btn.sm {
        font-size: 14px;
        min-height: 45px;
        padding-inline: 20px;
    }

    :where(p, ol, ul, li, h1, h2, h3, h4, h5, h6):not(:last-child) {
        margin-bottom: 10px
    }

    .mt_40 {
        margin-top: 30px
    }

    .mb_40,
    body:not(.home) .s_head {
        margin-bottom: 30px
    }

    input,
    select,
    textarea {
        font-size: 14px;
    }

    input,
    select {
        height: 40px
    }

    textarea {
        height: 100px;
        border-radius: 20px;
    }

    input {
        padding: 5px 15px;
    }

    select {
        padding: 0 35px 0 15px;
        background-size: 10px;
        background-position: right 12px center;
    }

    .form_control {
        margin-bottom: 15px;
    }

    .form.v2 :is(input:not(.btn, [type=checkbox]), select, textarea) {
        font-size: 14px
    }

    .form.v2 .form_control {
        margin-bottom: 10px
    }

    .form.v2 :is(textarea) {
        height: 50px
    }

    .form_btn .btn[type=submit] {
        font-size: 16px
    }

    .form_checkbox label:not(:last-child) {
        margin-bottom: 10px
    }

    .form_checkbox label {
        font-size: 12px
    }

    .form.v2 select {
        background-size: 14px;
        background-position: right 5px center;
        padding-right: 25px !important
    }

    .form.v2 .iti__selected-dial-code {
        font-size: 14px
    }

    .s_h>.btn {
        margin-top: 20px
    }

    .content,
    .nv_spc {
        padding-top: 85px;
    }
}

/***** Reset Css | End *****/


@keyframes waveIn {
    from {
        opacity: 0;
        transform: scale(.3) translate(-20px, 10px)
    }

    50% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

@-webkit-keyframes blinker {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    12%,
    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14%,
    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    100%,
    20% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

@-webkit-keyframes animation1 {
    0% {
        opacity: .1;
        -webkit-transform: translateX(-50%) scale(.4);
        transform: translateX(-50%) scale(.4)
    }

    70% {
        opacity: .6;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: .3;
        -webkit-transform: translateX (-50%) scale(.5);
        transform: translateX(-50%) scale(.5)
    }
}

@-webkit-keyframes animation2 {
    0% {
        opacity: .3;
        -webkit-transform: translateX(-50%) scale(.6);
        transform: translateX(-50%) scale(.6)
    }

    70% {
        opacity: .8;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: .1;
        -webkit-transform: translateX(-50%) scale(.7);
        transform: translateX(-50%) scale(.7)
    }
}

@keyframes scaleup {
    0% {
        transform: scale(.8)
    }

    100% {
        transform: scale(1.1)
    }
}

/*Header*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fdf9f800;
    z-index: 99;
}

.darkHeader {
    background: #000;
    border-bottom: 1px solid #272727;
    z-index: 99;
}

.dropdown-toggle::after {
    position: absolute;
    top: 15px;
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff1a;
    border-radius: 36px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 5px 10px;
}

.menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 8px 30px;
}

.menu>li:hover {
    background: #ffffff29 0% 0% no-repeat padding-box;
    border-radius: 36px;
    opacity: 1;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.menu>li:has(.tp_btn):hover {
    background: unset;
    border-radius: 0;
    backdrop-filter: unset;
}

.menu-icon {
    display: block;
    font-size: 25px;
    cursor: pointer;
    margin: 0;
}

.menu li {
    margin: 0;
}

.menu a {
    display: block;
    font-size: 16px;
    font-weight: 300;
    transition: 0.2s all ease-in-out;
    color: var(--c_white);
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    top: -15px;
    position: relative;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--c_white);
}

.logo img {
    max-width: 110px;
}

.hd_mrrt {
    display: none;
}

#menu-toggle {
    display: none;
}
 .menu a {
  padding: 0;
}

.tp_btn {
    background: transparent;
    border: 1px solid var(--c_primary);
    color: var(--c_black);
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    position: relative;
    transition: 0.5s all;
    overflow: hidden;
}

.tp_btn:before {
    content: "";
    background: var(--c_primary);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: 0;
    transition: 0.5s all;
    border-radius: 30px;
}

.tp_btn:hover::before {
    height: 0;
    transition: 0.5s all;
}

.top_header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    padding: 8px 0 0;
}

.tphdr_cntnct {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tphdr_cntnct p a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.tphdr_cntnct figure {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.tphdr_cntnct p {line-height: normal;}

.tphdr_cntnct figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* .industry_drp {
    display: none;
    position: absolute;
    top: 41px;
    left: 0;
    background: #1a1c21;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    clip-path: inset(0px -10px -10px -10px);
}

.menu li:hover .industry_drp {
    display: block;
} */
.menu li {
  padding: 5px 20px;
}

.mnu_arow {
    transition: ease-in-out 0.2s;
    opacity: 0;
    position: absolute;
    right: 0px;
}

.industry_drp li a:hover .mnu_arow {
    right: -25px;
    opacity: 1;
}

.industry_drp li {
    padding: 0 20px;
}
.industry_drp li:not(:last-child){margin-bottom: 12px;}
.industry_drp li a {
    display: flex;
    gap: 12px;
    align-items: center;
    white-space: nowrap;
    position: relative;font-size: 16px;font-weight: 300;
}

.industry_drp li a .icon-ecm {
    width: 30px;
    height: 30px;
    background: #00e5ff padding-box;
    padding: 5px;
    border-radius: 5px;
}

.whatsappBtm nav .whtsap_icn {
    display: none;
}

.whtsap_clck {
    height: 40px;
    width: 40px;
    z-index: 11;
    opacity: 1;
    overflow: hidden;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
    background: #4fce5d;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.menu > li:hover {
  background: #ffffff29 0% 0% no-repeat padding-box;
  border-radius: 36px;
  opacity: 1;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

@media (max-width:992px) {
    .tphdr_cntnct p a {
        font-size: 12px;
    }
.dark_body_theme .menu-icon{color: var(--c_white);}
.tp_btn{font-size: 14px;}
.logo img {
    max-width: 100px;
}
.menu a{margin-left: 0;padding: 12px 0;font-size: 14px;}
.menu li {
    padding: 0;
}
.industry_drp li a{padding: 10px;font-size: 14px;}
.industry_drp li:not(:last-child){margin-bottom: 0;}
.industry_drp li a .icon-ecm{width: 25px;height: 25px;}
.menu li:hover .industry_drp{display: block;}
.menu > li:hover {
    background: unset;
    border-radius: 0;
}
    .hd_mrrt {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .tphdr_cntnct figure {
        width: 14px;
        height: 14px;
    }

    .top_header {
        gap: 10px;
    }

    .top_header>figure>img {
        max-width: 14px;
    }
}

/*Header*/

/***** Footer | Start *****/
.ftr_bx {
    padding-bottom: 0;
}

.ftr_main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.ftr_main .ft {
    width: 33.3%;
}

.ftr_main .ft li span {
    cursor: pointer;
    color: #000;
}

.ftr_main .ft_lyt p {
    padding: 20px 0 30px;
    font-size: 16px;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.ftr_main .ft_lyt .contact_bx p {
    padding: 0;
    font-size: 16px;
}

.ftr_main .ft_lyt .contact_bx p a {
    color: #000;
}

.ftr_main .ft_lyt .contact_bx {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left-color: var(--c_black);
}

.ftr_main .ft_lyt .contact_bx:not(:last-child) {
    margin-bottom: 10px;
}

.ftr_main .ft_lyt h2.cotct {
    margin-bottom: 10px;
}

.ftr_main .ft h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.ftr_main .ft li {
    font-size: 15px;
    font-weight: 500;
}

.ftr_main .inpt_bx {
    display: flex;
    height: 47px;
    margin-top: 24px;
}

.ftr_main .inpt_bx input {
    border-radius: 5px;
    border: none;
    padding: 12px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 73%;
}

.ftr_main .inpt_bx .btn {
    padding: 8px 27px;
    font-size: 16px;
    min-height: 50px;
    border-radius: 0 8px 8px 0;
}

.ftr_main .inpt_bx .btn::before {
    border-radius: 0 8px 8px 0;
}

.subscrb_mn>h2+p {
    color: var(--c_black);
    font-size: 16px;
    font-weight: 300;
}

.confm_msg {
    color: var(--c_black);
    font-size: 14px;
    margin-top: 12px;
}

.ftr_main .social_icns {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: start;
    margin-top: 45px;
}

.ftr_main .social_icns li {
    width: 43px;
    height: 43px;
    background-color: var(--c_primary);
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
}

.ftr_main .social_icns li a {
    color: var(--c_black);
    font-size: 21px;
}

.btm_ftr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #a1a1a1;
    margin-top: 50px;
    padding: 8px 0;
}

.btm_ftr ul li {
    margin: 0;
}

.btm_ftr ul li a {
    color: #000;
    font-size: 14px;
    font-weight: 300;
}

.btm_ftr p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    color: #000;
    font-weight: 300;
}

.btm_ftr p span {
    font-size: 25px;
    position: relative;
    top: 3px;
}

.btm_ftr ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta_lhs .sb_hd h2 {
    font-size: 40px;
    margin-bottom: 5px;
}

@media (max-width:992px) {
    .ftr_main .ft {
        width: 100%;
    }

    .btm_ftr p {
        justify-content: center;
    }

    .btm_ftr,
    .btm_ftr ul {
        display: block;
        text-align: center;
    }

    .ftr_main {
        display: block;
        text-align: center;
        padding-bottom: 0px;
    }

    .btm_ftr {
        margin-top: 30px;
    }

    .ft ul,
    .ft_lyt {
        margin-bottom: 30px;
    }

    .ftr_main .ft li:not(:last-child) {
        margin-bottom: 5px;
    }

    .ftr_main .ft li,
    .ftr_main .ft_lyt .contact_bx p {
        font-size: 14px;
    }

    .ftr_main .ft_lyt .contact_bx figure {
        width: 15px;
        height: 15px;
    }

    .ftr_main .ft_lyt .contact_bx:not(:last-child) {
        margin-bottom: 5px;
    }

    .ftr_main .ft_lyt p {
        padding: 15px 0;
    }
}

@media (max-width:767px) {
    .ftr_main .inpt_bx .mn_btn {
        min-height: 40px;
        height: 40px;
    }
}

/***** Footer | End *****/

/**Footer Form**/
.iti input {
    padding-left: 75px !important;
}
.projct_inmind h2 span {
    background: var(--c_primary);
    width: 125px;
    height: 88px;
    display: inline-flex;
    border-radius: 50px;
    position: relative;
}

.projct_inmind h2 span:before {
    position: absolute;
    content: "";
    background-image: url('https://www.uaeappdevelopers.com/wp-content/uploads/2024/02/arrow.svg');
    filter: brightness(0);
    width: 33px;
    height: 22px;
    inset: 0;
    margin: auto;
    transform: rotate(-45deg);
    background-size: contain;
}

.projct_inmind h2 {
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 8px;
}

.home_ftrfrm_mn {
    background: var(--c_white);
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.home_ftrfrm_mn:before {
    position: absolute;
    content: "";
    background-image: url('https://www.uaeappdevelopers.com/wp-content/uploads/2026/02/footerform_bg.png');
    width: 249px;
    height: 517px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    left: 210px;
    background-position: bottom;
}

.home_ftrfrm_lt {
    width: 40%;
}

.home_ftrfrm_rt {
    width: 45%;
}

.home_ftrfrm_rt h2 {
    font-size: 24px;
}

.home_ftrfrm_lt>p {
    color: #000;
    font-weight: 300;
}

.uae_adrs {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 100px;
}

.uae_adrs figure {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
}

.adrs_dtls {
    width: 80%;
}

.adrs_dtls p {
    color: #000;
    font-size: 18px;
    font-weight: 300;
}

.adrs_dtls h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.adrs_dtls a img {
    max-width: 15px;
    display: inline-flex;
}

.adrs_dtls a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c_black);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.uae_adrs figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width:1300px) {
    .projct_inmind h2 {
        font-size: 110px;
    }
}

@media (max-width:1200px) {
    .home_ftrfrm_mn:before {
        content: unset;
    }

    .projct_inmind h2 span {
        width: 60px;
        height: 50px;
    }

    .projct_inmind h2 {
        font-size: 60px;
        letter-spacing: 0;
    }

    .projct_inmind h2 span:before {
        width: 18px;
        height: 12px;
        background-repeat: no-repeat;
    }

    .uae_adrs {
        display: none;
    }
}

@media (max-width:992px) {
    .projct_inmind h2 {
        font-size: 30px;
    }

    .home_ftrfrm_mn {
        padding: 30px 20px;
    }

    .home_ftrfrm_lt {
        width: 100%;
    }

    .home_ftrfrm_rt {
        width: 100%;
    }

    .projct_inmind h2 span {
        width: 35px;
        height: 25px;
    }

}

/**Footer Form**/

/*Home Portfolio*/
.home_prtflio_sc.theme-dark * {
    color: #fff;
}

.home_prtflio_mn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home_prtflio_otr {
    background: linear-gradient(131.68deg, #345A5E -32.95%, #0D0D10 16.44%);
    border-radius: 30px;
    padding: 40px 30px;
}

.home_prtflio_lt {
    width: 32%;
    margin: 0;
}

.home_prtflio_rt {
    width: 62%;
}

.home_prtflio_lt li {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.home_prtflio_lt li figure {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c_white);
    padding: 10px;
}

.home_prtflio_lt li h3 {
    font-size: 18px;
    font-weight: 500;
}

.home_prtflio_lt li:not(:last-child) {
    margin-bottom: 50px;
}

.home_prtflio_lt li.active figure {
    background: var(--c_primary);
}

.home_prtflio_lt li.active h3 {
    color: var(--c_primary);
}

.home_prtflio_rt li:not(.active) {
    display: none;
}

.home_prtflio_rt li {
    margin: 0;
}

.home_prtflio_inr {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 390px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    z-index: 1;
}

.home_prtflio_inr:before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(22, 24, 26, 0) -0.05%, rgba(0, 175, 206, 0.5) -0.05%, #16181A 113.39%);
    inset: 0;
    margin: auto;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.home_prtflio_inr .cntnt figure {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    max-height: 80px;
}

.home_prtflio_inr .cntnt figure img {
    max-height: 80px;
    max-width: 130px;
}

.home_prtflio_inr .cntnt {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.prtflio_nmbrs {
    background: #1A1A1D;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 25px;
    position: relative;
    margin-top: 15px;
}

.prtflio_nmbrs_lst strong {
    font-size: 30px;
    display: block;
}

.prtflio_nmbrs_lst {
    width: 48%;
}

.prtflio_nmbrs_lst span {
    font-weight: 300;
    opacity: 90%;
    font-size: 15px;
}

.home_prtflio_inr .cntnt h3 {
    font-size: 24px;
    width: 60%;
    font-weight: 500;
}

.prtflio_nmbrs:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 1px;
    height: 70%;
    inset: 0;
    margin: auto;
    opacity: 7%;
}

.home_prtflio_inr .cntnt h4 img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.home_prtflio_inr .cntnt h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 500;
}

.home_prtflio_rt li:hover .prtflio_nmbrs {
    background: var(--c_white);
}

.home_prtflio_rt li:hover .prtflio_nmbrs_lst * {
    color: var(--c_black);
}

.home_prtflio_inr .cntnt p {
    font-size: 14px;
    line-height: 1.6;
    width: 80%;
}

@media (max-width:1200px) {
    .home_prtflio_rt {
        width: 100%;
    }

    .home_prtflio_lt {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow: auto;
        gap: 15px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .home_prtflio_lt::-webkit-scrollbar {
        height: 2px;
    }

    .home_prtflio_lt li:not(:last-child) {
        margin-bottom: 0;
    }

    .home_prtflio_lt li figure {
        display: none;
    }

    .home_prtflio_lt li {
        white-space: nowrap;
    }

    .home_prtflio_lt li h3 {
        font-size: 15px;
    }

    .home_prtflio_inr .cntnt h3 {
        font-size: 20px;
        width: 100%;
    }

    .home_prtflio_inr .cntnt p {
        width: 100%;
    }

    .home_prtflio_inr .cntnt h4 img {
        width: 15px;
        height: 15px;
    }

    .home_prtflio_inr .cntnt figure img {
        max-height: 60px;
        max-width: 90px;
    }

    .prtflio_nmbrs {
        padding: 10px 15px;
    }

    .prtflio_nmbrs_lst strong {
        font-size: 20px;
    }

    .prtflio_nmbrs_lst span {
        font-size: 14px;
        line-height: 1.3;
        display: inline-flex;
    }

    .home_prtflio_inr {
        padding: 20px;
    }

    .home_prtflio_inr .cntnt h4 {
        gap: 5px;
        font-size: 14px;
        font-weight: 300;
    }
}

@media (max-width:767px) {
    .home_prtflio_otr {
        padding: 20px 10px;
    }
}

/*Home Portfolio*/

/*FAQ Design 1**/
.faqnwdsgn_ryt > li {
  border-radius: 8px;
  border: 2px solid #70707033;
  padding: 15px;
}
.faqnwdsgn_ryt >li h3{margin: 0;display: flex;align-items: center;position: relative;justify-content: space-between;}
.faqnwdsgn_ryt >li p{font-size: 16px;font-weight: 300;}
.faqnwdsgn_ryt >li .accordion_pnel{margin-top: 15px;}
.faqnwdsgn_ryt >li ul,.faqnwdsgn_ryt >li ol{padding-left: 20px;}
.faqnwdsgn_ryt >li ul li,.faqnwdsgn_ryt >li ol li {font-size: 14px;font-weight: 300;}
.faqnwdsgn_ryt >li ul li{list-style: disc;}
.faqnwdsgn_ryt >li ul li:not(:last-child),.faqnwdsgn_ryt >li ol li:not(:last-child){margin-bottom: 5px;}
.faqnwdsgn_ryt >li h3::after, .faqnwdsgn_ryt >li h3::before {content: "";display: block;
    width: 20px;
    height: 4px;
    background: #fff;
    position: absolute;
    right: 20px;
    border-radius: 50px;
}
.faqnwdsgn_ryt >li h3::after {
    transform: rotate(90deg);
    transition: 0.2s ease;
}
.faqnwdsgn_ryt >li h3::after,
.faqnwdsgn_ryt >li h3::before {
  background: #0b0301;
}
.faqnwdsgn_ryt >li.active .accordion_pnel{display: block;}
.faqnwdsgn_ryt > li.active h3::after{transform: rotate(180deg);}
.theme-dark .faqnwdsgn_ryt >li h3::after,.theme-dark .faqnwdsgn_ryt >li h3::before {background: var(--c_white);}
@media (max-width:1200px) {
.faqnwdsgn_ryt >li h3::after, .faqnwdsgn_ryt >li h3::before{right: -12px;width: 15px;height: 3px;}
.faqnwdsgn_ryt >li{padding: 10px 20px 10px 10px;}
.faqnwdsgn_ryt >li h3{padding-right: 10px;font-size: 16px;}
.faqnwdsgn_ryt >li p{font-size: 14px;line-height: 1.4;}
}
/*FAQ Design 1**/

/***** Faq | Start *****/
[data_accordion],
[data_tab],
[data_modal] {
    cursor: pointer
}

[data_accordion_pnl],
[data_modal_value],
[data_tab_pnl] {
    display: none
}

[data_accordion_pnl].active,
[data_tab_pnl].active {
    display: block !important
}

.acdn_mn {
    border-bottom: solid 1px #cbcbcb
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 20px 0;
    position: relative;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
}

.panel-title::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    font-size: 30px;
}

.panel-title.active::after {
    content: "\f068"
}

.panel-body {
    padding-bottom: 20px
}

.panel-title.active {
    color: var(--c_primary)
}

.panel-title.active::after {
    color: var(--c_primary)
}

.acdn_mn .panel-body ol li {
    list-style-position: inside
}

.rtl .faq_grid .accordn_bx .panel-title::after {
    right: auto;
    left: 30px;
}

.rtl .faq_grid .accordn_bx .panel-title {
    flex-direction: row-reverse;
    padding: 20px 30px 20px 80px;
}

@media screen and (max-width:1200px) {
    .panel-title {
        font-size: 20px;
        padding: 16px 30px 16px 0
    }

    .panel-title::after {
        font-size: 22px
    }
}

@media screen and (max-width:992px) {
    .panel-title {
        font-size: 18px;
        padding: 15px 30px 15px 0
    }
}

@media screen and (max-width:767px) {

    .panel-title,
    .panel-title::after {
        font-size: 16px
    }
}

/* Faq Section | Start */
.faq_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px
}

.faq_grid .accordn_bx {
    width: 100%
}

.home_faq_nv li {
    font-size: 18px;
    margin: 0;
    color: #FFFFFF66;
    font-weight: 500;
    position: relative;
}

.home_faq_nv li:after {
    position: absolute;
    content: "";
    background: transparent;
    width: 100%;
    height: 3px;
    bottom: -22px;
    right: 0;
    left: 0;
    margin: auto;
}

.home_faq_nv li.active:after {
    background: var(--c_primary);
}

.home_faq_nv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 2px solid #FFFFFF4D;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.home_faq_nv li.active {
    color: var(--c_white);
}

.home_faq_nv li:before {
    position: absolute;
    content: "";
    background: transparent;
    clip-path: polygon(0 0, 49% 100%, 100% 0);
    width: 15px;
    height: 7px;
    bottom: -28px;
    right: 0;
    left: 0;
    margin: auto;
}

.home_faq_nv li.active:before {
    background: var(--c_primary);
}

.faq_grid .accordn_bx:not(:only-child) {
    width: calc(50% - (30px / 2))
}

.faq_grid .accordn_bx .panel-title {
    font-size: 20px;
    font-weight: 400;
    padding: 20px 80px 20px 30px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--c_white);
}

.faq_grid .accordn_bx:not(:only-child) .panel-title {
    min-height: 110px;
}

.faq_grid .accordn_bx .acdn_mn {
    border-bottom: none;
    background-color: #00E4FE1A;
    border-radius: 20px
}

.faq_grid .accordn_bx .acdn_mn * {
    transition: unset
}

.faq_grid .accordn_bx .acdn_mn:not(:last-child) {
    margin-bottom: 30px
}

.faq_grid .accordn_bx .panel-title::after {
    content: "";
    width: 19px;
    height: 36px;
    position: absolute;
    background-image: url('https://media.apptunix.com/wp-content/uploads/2025/04/25051653/longArrow_icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    right: 30px
}

.faq_grid .accordn_bx .panel-title.active {
    color: var(--c_white)
}

.faq_grid .accordn_bx .panel-title.active::after {
    transform: scaleY(-1)
}

.faq_grid .accordn_bx .panel-body {
    padding: 0 30px 30px;
    transform: none
}

.faq_grid .accordn_bx :is(.panel-body, .panel-body p, .panel-body li) {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--c_white);
}

.faq_grid .accordn_bx :is(.panel-body, .panel-body p, .panel-body li) strong {
    font-weight: 500
}

.faq_grid .accordn_bx .panel-body li:not(:last-child) {
    margin-bottom: 5px;
}

.faq_grid .accordn_bx .panel-body ul {
    list-style: disc;
    padding-left: 20px;
}

.rtl .faq_grid .accordn_bx .panel-body ul {
    padding-left: 0;
    padding-right: 20px;
}

.faq_grid .accordn_bx .acdn_mn:has(.panel-title.active) {
    background: linear-gradient(to bottom, #00E4FE1A 40%, var(--c_primary) 140%);
}

.faq_new_sc {
    background: #000a16;
}

.faq_new_sc .s_head h2 {
    color: var(--c_white);
}

.faq_grid .accordn_bx :is(.btn) {
    margin-top: 20px;
}

.cm_white_mode .faq_grid .accordn_bx .acdn_mn {
    background-color: var(--c_white);
    box-shadow: 0 3px 24px #00000017
}

.cm_white_mode .faq_grid .accordn_bx .panel-title {
    color: var(--c_black);
}

.cm_white_mode .faq_grid .accordn_bx .panel-title::after {
    filter: brightness(0);
    top: 15px;
}

.cm_white_mode .faq_grid .accordn_bx .acdn_mn:has(.panel-title.active) {
    background: var(--c_white)
}

.cm_white_mode .faq_grid .accordn_bx .panel-title.active {
    color: var(--c_black)
}

.cm_white_mode .faq_grid .accordn_bx:not(:only-child) .panel-title {
    min-height: 90px
}

.cm_white_mode .faq_grid .accordn_bx :is(.panel-body, .panel-body p, .panel-body li) {
    color: var(--c_black);
}

.cm_white_mode.faq_new_sc .s_head h2 {
    color: var(--c_black);
}

.cm_white_mode.faq_new_sc {
    background-color: var(--c_white);
}

.faq_grid:not(.active) {
    display: none;
}

@media screen and (max-width:1399px) {
    .faq_grid .accordn_bx .panel-title {
        font-size: 19px;
        font-weight: 400;
        padding: 20px 90px 20px 25px
    }

    .faq_grid .accordn_bx:not(:only-child) .panel-title {
        min-height: 95px;
    }

    .faq_grid .accordn_bx .panel-title::after {
        width: 16px;
        height: 30px;
        right: 20px
    }

    .faq_grid .accordn_bx .acdn_mn {
        border-radius: 10px
    }

    .faq_grid .accordn_bx .panel-body {
        padding: 0 25px 25px
    }
}

@media screen and (max-width:1200px) {
    .home_faq_nv {
        flex-wrap: nowrap;
        gap: 15px;
        overflow: auto;
        margin-bottom: 25px;
    }

    .home_faq_nv::-webkit-scrollbar {
        height: 2px;
    }

    .home_faq_nv li {
        font-size: 16px;
        white-space: nowrap;
    }

    .faq_grid {
        gap: 16px
    }

    .faq_grid .accordn_bx .acdn_mn:not(:last-child) {
        margin-bottom: 16px
    }

    .faq_grid .accordn_bx .panel-title {
        font-size: 18px;
        padding: 15px 90px 15px 20px
    }

    .faq_grid .accordn_bx:not(:only-child) .panel-title {
        min-height: 80px;
    }

    .faq_grid .accordn_bx .panel-body {
        padding: 0 20px 20px
    }
}

@media screen and (max-width:992px) {

    .faq_grid .accordn_bx,
    .faq_grid .accordn_bx:not(:only-child) {
        width: 100%
    }

    .faq_grid .accordn_bx .panel-title::after {
        width: 12px;
        height: 25px
    }

    .home_faq_nv li:before,
    .home_faq_nv li:after {
        content: unset;
    }
}

@media screen and (max-width:767px) {
    .faq_grid .accordn_bx .panel-title {
        font-size: 14px;
        line-height: 1.45;
        padding: 14px 45px 14px 15px
    }

    .faq_grid .accordn_bx:not(:only-child) .panel-title {
        min-height: 70px;
    }

    .faq_grid .accordn_bx .panel-title::after {
        right: 15px
    }

    .faq_grid .accordn_bx .panel-body {
        padding: 0 15px 15px
    }

    .faq_grid .accordn_bx .panel-body p {
        font-size: 13px
    }
}

/* Faq Section | End */

/***** Tabbing css | Start *****/
.tbbng_btn {
    border: unset;
    background: var(--c_white);
    box-shadow: var(--shadow);
    padding: 22px 15px;
    border-radius: 10px;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    text-transform: uppercase
}

.tbbng_otr {
    display: flex;
    align-items: stretch;
    justify-content: space-between
}

.tbbng_btn.active {
    background: var(--c_gradient);
    color: var(--c_white)
}

.tbbng_btn.active {
    background: var(--c_gradient);
    color: var(--c_white)
}

.mbl_tbng {
    display: none;
}

@media screen and (max-width: 767px) {
    .mbl_tbng {
        display: block;
        width: 100% !important;
        margin: 20px 0 0
    }

    .mbl_tbng+.tab-pane.active {
        display: none !important
    }

    .mbl_tbng.active+.tab-pane {
        display: block !important;
        background: var(--c_white);
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 10px 10px 20px 20px;
        margin-bottom: 20px
    }

    .tbbng_otr {
        display: none
    }

    .mbl_tbng:first-child {
        margin-top: 0
    }
}

/***** Tabbing css | End *****/

/***** Video Section | Start *****/
.video1_grid .slick-list {
    margin-inline: -10px;
    margin-block: -50px;
    padding-block: 50px
}

.video1_grid .slick-track {
    display: flex
}

.video1_grid .slick-next {
    right: -25px
}

.video1_grid .slick-prev {
    left: -25px
}

.video1_slide {
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    margin-inline: 10px;
    height: auto !important;
    background: var(--c_white);
    box-shadow: var(--shadow);
    position: relative
}

.video1_slide a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0
}

.video1_slide figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video1_slide h3 {
    padding: 30px 25px
}

.video1_slide figure {
    position: relative;
}

.video1_slide figure:before {
    position: absolute;
    content: "";
    background-image: url('https://media.apptunix.com/wp-content/uploads/2025/04/10100033/ukplyicon.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin: auto;
    inset: 0;
}

@media screen and (max-width:1200px) {
    .video1_slide h3 {
        font-size: 18px;
        padding: 25px 15px
    }
}

/***** Video Section | End *****/

/***** Modal Common Css | Start *****/
.modal_open {
    padding: 0;
    overflow: hidden
}

.modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-x: hidden;
    background: rgba(0, 0, 0, .6);
    overflow-y: auto;
    z-index: 999;
    outline: 0
}

.modal_dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 40px);
    width: calc(100% - 20px);
    pointer-events: none;
    position: relative;
    margin: 20px auto;
    max-width: 900px
}

.modal_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--c_white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    pointer-events: auto;
    border-radius: 20px;
    position: relative
}

.modal_body {
    padding: 10px
}

.modal_close {
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    position: absolute;
    background-color: var(--c_primary);
    transition: var(--transition);
    color: var(--c_black);
    border-radius: 50%;
    border: none;
    z-index: 5
}

.modal_close:hover {
    background-color: red
}

@media screen and (max-width:767px) {
    .modal_content {
        border-radius: 10px
    }

    .modal_close {
        width: 24px;
        height: 24px;
        font-size: 12px
    }
}

/***** Modal Common | End *****/

/***** Video Popup | Start *****/
.video_modal .modal_body iframe {
    display: flex;
    border: none;
}

.video_modal .modal_close {
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
}

/***** Video Popup | End *****/

/***** Pagination | Start *****/
.navigation ul li.active {
    background: var(--c_gradient)
}

.navigation ul {
    display: flex;
    align-items: stretch;
    gap: 5px
}

.navigation {
    display: flex;
    justify-content: flex-end;
    width: 100%
}

.navigation ul li.active {
    background: var(--c_gradient)
}

.navigation ul li {
    background: #e5e5e5;
    box-shadow: unset;
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c_white);
    font-size: 14px;
    padding: 2px;
    margin-bottom: 0
}

.navigation ul li.active a {
    color: #066da9
}

.navigation ul li a {
    color: #acacac;
    background: var(--c_white);
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.navigation ul li:hover,
.navigation ul li:hover a {
    background: var(--c_gradient);
    color: var(--c_white)
}

.navigation ul li:hover a::after,
.navigation ul li:hover a::before {
    border-color: var(--c_white)
}

.navigation ul li.active a::after,
.navigation ul li.active a::before {
    border-color: #066da9
}

.last-pgntn a::before {
    content: "";
    position: absolute;
    display: inline-block;
    border-right: 2px solid;
    border-bottom: 2px solid;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    border-color: #acacac;
    left: 0;
    right: -3px;
    margin: 0 auto
}

.last-pgntn a::after {
    content: "";
    position: absolute;
    display: inline-block;
    border-right: 2px solid;
    border-bottom: 2px solid;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    border-color: #acacac;
    left: 7px
}

.navigation ul li.first-pgntn a,
.navigation ul li.last-pgntn a {
    color: transparent
}

.navigation ul li:hover a::after,
.navigation ul li:hover a::before {
    border-color: #fff
}

.navigation ul li.active a::after,
.navigation ul li.active a::before {
    border-color: #066da9
}

.first-pgntn a::before {
    content: "";
    position: absolute;
    display: inline-block;
    border-left: 2px solid;
    border-top: 2px solid;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    border-color: #acacac;
    left: 0;
    right: -7px;
    margin: 0 auto
}

.first-pgntn a::after {
    content: "";
    position: absolute;
    display: inline-block;
    border-left: 2px solid;
    border-top: 2px solid;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    border-color: #acacac;
    left: 9px
}

/***** Pagination | End *****/

/* Trusted Section | Start */
.trusted_list {
    position: relative;
}

.trusted_list h2 {
    font-size: 22px;
    font-weight: 900;
}

.trusted_list ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 30px
}

.trusted_list ul li {
    margin: 0;
    display: inline-flex
}

.trusted_list ul li figure {
    width: 85px;
    display: inline-flex
}

.trusted_list ul li figure img {
    transition: var(--transition);
    filter: invert(20%) sepia(23%) saturate(8%) hue-rotate(10deg) brightness(99%) contrast(96%);
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left center;
    object-position: left center;
    max-height: 75px;
    width: 100%
}

.trusted_list ul li:hover figure img {
    filter: unset;
    transform: scale(1.1)
}

@media screen and (max-width:1200px) {
    .trusted_list ul {
        justify-content: center;
        margin-top: 10px
    }
}

@media screen and (max-width:767px) {
    .trusted_list ul li figure {
        width: 50px
    }

    .trusted_list ul li:last-child figure {
        width: 40px
    }

    .trusted_list ul {
        margin-top: -5px;
        gap: 15px
    }
}

/* Trusted Section | End */
/*404 page */
.nt_fnd_sc a {
    background-color: #26387a;
    color: var(--c_white);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 25px;
    padding-inline: 30px;
}

.nt_fnd_sc figure {
    width: 800px;
    margin: 0 auto;
}

.nt_fnd_sc img {
    width: 100%;
}

@media (max-width:1200px) {
    .nt_fnd_sc figure {
        width: 60%;
        height: 100%;
    }
}

@media (max-width:600px) {
    .nv_spc.nt_fnd_sc {
        padding-top: 85px;
    }

    .nt_fnd_sc figure,
    .only_india .frm_updtn .form_control {
        width: 100%;
    }
}

/*404 page */
input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
}

input[type=range]::-moz-range-track {
    height: 4px;
}

/* Home Award Section | Start */
.home_awards_sc .conta_iner {
    background: var(--c_primary);
    border-radius: 25px;
    padding: 30px;
}

.awards_slider .slick-list {
    margin: 0 -6px
}

.awards_slider .slick-track {
    display: flex
}

.awards_slider .slick-slide {
    height: auto;
    padding: 0 6px;
    margin: 0;
}

.award_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    min-height: 241px;
    height: 100%;
    position: relative;
    z-index: 1;
    background: linear-gradient(var(--c_primary), var(--c_primary)) padding-box, linear-gradient(180deg, #17cce0 0, #17cce0, #0d707b, #0d707b 100%) border-box;
    border: 1px solid transparent;
}

.award_item figure {
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px
}

.award_item figure img {
    max-height: 100%
}

.award_item h3 {
    color: #171717;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px
}

.award_item p {
    color: #171717;
    font-size: 14px;
    font-weight: 300
}

@media screen and (max-width:1449px) {
    .home_awards_sc.u_spc {
        padding-bottom: 50px
    }

    .home_awards_sc .s_head h2 {
        line-height: 1.2
    }

    .award_item {
        min-height: 235px
    }

    .award_item figure {
        margin-bottom: 6px
    }

    .award_item h3 {
        margin-bottom: 5px
    }
}

@media screen and (max-width:992px) {
    .award_item {
        min-height: 1px
    }

    .home_awards_sc .s_head h2 {
        line-height: 1.5
    }

    .home_awards_sc .conta_iner {
        padding: 20px 10px;
    }
}

@media screen and (max-width:767px) {
    .awards_slider {
        display: flex;
        gap: 15px;
        flex-wrap: wrap
    }

    .awards_slider>div {
        width: calc(50% - 7.5px)
    }
}

/* Awards White Mode */
.home_awards_sc.cm_white_mode {
    background: var(--c_white);
}

.dark_sec.home_awards_sc .s_h h2,
.dark_sec.home_awards_sc .s_h p,
.dark_sec.home_awards_sc .award_item h3,
.dark_sec.home_awards_sc .award_item p {
    color: var(--c_white);
}

.dark_sec_whiteitem.home_awards_sc .s_h h2,
.dark_sec_whiteitem.home_awards_sc .s_h p {
    color: var(--c_white)
}

.dark_sec_whiteitem.home_awards_sc .award_item {
    background: var(--c_white)
}

/* Home Award Section | End */

/** Video Modal | Start **/
.video_modal .modal_dialog {
    max-width: 1000px
}

.video_modal .modal_content {
    border-radius: 0
}

.video_modal .modal_body {
    padding: 0px;
    position: relative;
    background-color: #fff
}

.video_modal .modal_body iframe {
    max-width: 100%;
    width: 100%;
    height: 500px;
}

/** Video Modal | End **/

/* Home Testimonial Section | Start */
.home_testimonial_sc.theme-dark * {
    color: #fff;
}

.home_testimonial_sc .s_head.animated_text h2 span {
    transition: none !important;
}

.s_head.animated_text h2 {
    transition: none
}

.s_head.animated_text h2 span {
    background: linear-gradient(to right, var(--c_white) 50%, rgba(255, 255, 255, .5) 50%);
    color: transparent;
    background-size: 200% 100%;
    background-position-x: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    transition: none
}

.s_head.animated_text h2 span.c_black {
    background: transparent;
    color: var(--c_black);
}

.home_testimonial_sc .s_head .custom-arrows {
    display: flex;
    align-items: center;
    gap: 30px
}

.testimonial_slider :is(.slick-prev, .slick-next) {
    top: -100px;
    transform: none;
    position: absolute
}

.testimonial_slider .slick-prev {
    right: 80px;
    left: auto
}

.testimonial_slider .slick-next {
    right: 0
}

.testimonial_slider .slick-list {
    margin: 0 -12px
}

.testimonial_slider .slick-slide {
    margin: 0 12px
}

.testi_slide {
    display: flex !important;
    gap: 25px
}

.testi_single {
    height: 400px;
    position: relative;
    border-radius: 15px;
    transition: var(--transition);
    width: calc(25% - (25px * 2 / 3));
    overflow: hidden
}

.testi_single:nth-child(2) {
    width: calc(50% - (25px * 2 / 3))
}

.testi_single figure {
    width: 100%;
    height: 100%;
    position: relative
}

.testi_single iframe {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: none
}

.testi_single figure::before {
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(199.08deg, rgba(0, 0, 0, 0) 54.57%, rgba(0, 0, 0, .8) 95.55%);
    z-index: 1
}

.testi_single figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.testi_single figure span {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c_primary);
    border-radius: 50%
}

.testi_single figure span i {
    font-size: 20px
}

.testi_single .info {
    left: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
    text-align: center;
    padding: 20px 15px;
    border: none;
    z-index: 2;
    margin: 0
}

.testi_single .info cite {
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 8px;
    line-height: 1.2;
    display: block
}

.testi_single .info p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2
}

.testimonial_slider_mob {
    display: none !important
}

@media screen and (max-width:1200px) {
    .home_testimonial_sc .s_head {
        max-width: 700px
    }

    .testimonial_slider :is(.slick-prev, .slick-next) {
        top: -90px
    }

    .testimonial_slider .slick-prev {
        right: 70px
    }
}

@media screen and (max-width:992px) {
    .home_testimonial_sc .s_head {
        max-width: 600px;
    }

    .home_testimonial_sc .s_head .custom-arrows {
        gap: 10px
    }
}

@media screen and (max-width:767px) {
    .testimonial_slider {
        display: none !important
    }

    .testimonial_slider_mob {
        display: flex !important;
        width: 100vw;
        padding: 0;
        margin-left: -5vw
    }

    .testi_single figure span {
        width: 35px;
        height: 35px
    }

    .testi_single figure span i {
        font-size: 14px
    }

    .testi_single .info p {
        font-size: 12px
    }

    .testi_single .info cite {
        font-size: 14px
    }

    .testimonial_slider .testi_single {
        border-radius: 10px
    }

    .testimonial_slider .testi_mob_slide {
        margin: 0 5px
    }

    .testimonial_slider .slick-list {
        margin: 0 -5px;
        padding: 0 50px
    }

    .s_head.animated_text h2 span {
        transition: background-position-x 1s ease-in-out
    }

    .s_head.animated_text h2 span.active {
        background-position-x: 0 !important
    }

    .home_testimonial_sc {
        position: relative;
        overflow: hidden;
    }

    .testimonial_slider :is(.slick-prev, .slick-next) {
        bottom: -60px;
        position: absolute;
        transform: translate(-50%, 0);
        width: 40px !important;
        height: 40px !important;
        top: auto
    }

    .testimonial_slider .slick-prev {
        left: calc(50% + -28px);
        right: auto
    }

    .testimonial_slider .slick-next {
        left: calc(50% - -28px);
        right: auto
    }

    .home_testimonial_sc .s_head {
        max-width: 550px
    }

    .testi_single {
        height: 250px;
        width: 100%
    }

    .testi_single:nth-child(2) {
        width: 100%
    }

    .testi_slide {
        gap: 0;
        flex-direction: column
    }

    .testi_single .info {
        padding: 15px 15px
    }

    .testi_single .info cite {
        font-size: 20px;
        margin-bottom: 5px
    }

    .award_item h3 {
        font-size: 18px
    }

    .testimonial_slider ul.slick-dots {
        background-color: rgba(0, 0, 0, .1);
        border-radius: 100px;
        height: 34px;
        display: flex;
        width: max-content;
        padding: 0 15px;
        margin-inline: auto;
        right: 5vw
    }

    .theme-dark .testimonial_slider ul.slick-dots {
        background-color: rgba(255, 255, 255, .1);
    }

    .testimonial_slider .slick-dots li button {
        background: rgba(0, 0, 0, .4);
        border-radius: 50px;
        overflow: hidden;
        position: relative
    }

    .testimonial_slider .slick-dots li.slick-active button {
        width: 26px
    }

    .testimonial_slider .slick-dots li button::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        height: 100%;
        background-color: var(--c_white);
        display: block;
        z-index: 1
    }

    .testimonial_slider .slick-dots li.slick-active button::after {
        animation: fill-to-right ease-out 5s
    }

    .testi_mob_slide .testi_single {
        height: 420px
    }
}

.home_testimonial_sc.theme-light {
    background: var(--c_white);
}

/* Home Testimonial Section | End */

/* Home Tech Section | Start */
.tech_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px
}

.tech_tab_btn {
    width: calc(24% - 25px);
    border: 1px solid var(--c_white);
    border-radius: 20px;
    margin-bottom: 0;
    padding: 30px
}

.tech_tab_btn li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: #2c88f5;
    font-size: 26px;
    font-weight: 400;
    cursor: pointer;
    gap: 20px
}

.tech_tab_btn li:not(:last-child) {
    margin-bottom: 40px
}

.tech_tab_btn li::after {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-flex;
    transform: rotate(-90deg);
    transition: var(--transition);
    background-image: url('https://media.apptunix.com/wp-content/uploads/2025/04/25051653/longArrow_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: center;
    position: relative;
    visibility: hidden;
    opacity: 0
}

.tech_tab_btn li.active,
.tech_tab_btn li:hover {
    color: var(--c_white)
}

.tech_tab_btn li.active::after {
    visibility: visible;
    opacity: 1
}

.tech_tab_content {
    width: calc(76% - 25px);
    border-radius: 20px;
    overflow: hidden
}

.tech_tab_content .inner {
    height: 100%
}

.tech_tab_content .inner>div {
    padding: 30px;
    background-position: top center;
    height: 100%;
    background: linear-gradient(179deg, transparent -1.5%, #6ad8e5 146.98%);
}

.tech_tab_content .inner>div:not(.active) {
    display: none
}

.tech_tab_content h3 {
    display: none
}

.tech_tab_content ul:not(.slick-dots) {
    display: flex;
    flex-wrap: wrap;
    gap: 35px
}

.tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) {
    display: inline-flex;
    width: calc((100% / 4) - (35px * 3 / 4));
    margin: 0
}

.tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figure {
    border-radius: 15px;
    background-color: var(--c_white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 10px;
    text-align: center;
    width: 100%
}

.tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figure img {
    width: 100%;
    height: 46px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center
}

.tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figcaption {
    font-size: 16px;
    font-weight: 500;
    color: #171717;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    margin-top: 10px
}

@media screen and (max-width:1399px) {
    .tech_grid {
        gap: 30px
    }

    .tech_tab_content ul:not(.slick-dots) {
        gap: 25px
    }

    .tech_tab_btn {
        width: calc(31% - 15px);
        padding: 25px
    }

    .tech_tab_content {
        width: calc(69% - 15px)
    }

    .tech_tab_content .inner>div {
        padding: 30px
    }
}

@media screen and (max-width:1200px) {
    .tech_grid {
        gap: 20px
    }

    .tech_tab_btn {
        border-radius: 10px;
        padding: 20px 22px
    }

    .tech_tab_content {
        border-radius: 10px
    }

    .tech_tab_content .inner>div {
        padding: 25px
    }

    .tech_tab_content ul:not(.slick-dots) {
        gap: 15px
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) {
        width: calc(100% / 4 - (15px * 3 / 4))
    }

    .tech_tab_btn li {
        font-size: 22px;
        gap: 10px
    }

    .tech_tab_btn li:not(:last-child) {
        margin-bottom: 30px
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figure {
        border-radius: 10px
    }
}

@media screen and (max-width:992px) {
    .tech_tab_btn {
        display: none
    }

    .tech_tab_btn::-webkit-scrollbar {
        height: 3px;
    }

    .tech_tab_content .inner {
        height: auto
    }

    .tech_tab_content .inner>div:not(.active) {
        display: block
    }

    .tech_tab_content .inner>div:not(:last-child) {
        margin-bottom: 15px
    }

    .tech_tab_content h3 {
        display: block;
        margin-bottom: 20px
    }

    .tech_tab_content {
        width: 100%
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) {
        width: calc(100% / 5 - (15px * 4 / 5))
    }
}

@media screen and (max-width:767px) {
    .tech_tab_content h3 {
        margin-bottom: 15px;
        font-size: 22px
    }

    .tech_tab_content ul:not(.slick-dots) {
        gap: 0
    }

    .tech_tab_content .inner>div {
        padding: 20px
    }

    .tech_tab_content ul:not(.slick-dots) .slick-list {
        margin: 0 -5px
    }

    .tech_tab_content ul:not(.slick-dots) .slick-track {
        display: flex
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) {
        height: auto !important;
        margin: 0 5px
    }

    .tech_tab_content .slick-dots li button {
        opacity: .5
    }

    .tech_tab_content .slick-dots li.slick-active button {
        background-color: var(--c_white);
        opacity: 1
    }

    .tech_tab_btn {
        display: flex;
        border: 1px solid rgba(255, 255, 255, .2);
        width: 100%;
        padding: 0 20px;
        gap: 20px;
        overflow: auto
    }

    .tech_tab_btn li:not(:last-child) {
        margin-bottom: 0
    }

    .tech_tab_btn li::after {
        display: none
    }

    .tech_tab_btn li {
        font-size: 20px;
        line-height: 1;
        min-height: 70px;
        white-space: nowrap
    }

    .tech_grid {
        gap: 12px
    }

    .tech_tab_content .inner>div {
        padding: 24px 18px
    }

    .tech_tab_content h3 {
        display: none !important
    }

    .tech_tab_content .inner>div:not(.active) {
        display: none
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) {
        width: calc(100% / 3 - (12px * 2 / 3))
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figure figcaption {
        font-size: 13px;
        margin-top: 8px
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figure img {
        height: 35px
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) {
        margin: 0
    }

    .tech_tab_content .inner>div {
        border-radius: 20px
    }

    .tech_tab_content ul:not(.slick-dots) {
        gap: 12px
    }

    .tech_tab_content .inner>div:not(:last-child) {
        margin-bottom: 0
    }

    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figcaption {
        font-size: 13px;
        white-space: normal
    }
}

@media screen and (max-width:575px) {
    .tech_tab_content ul:not(.slick-dots) li:not([aria-controls], [role=presentation]) figure {
        justify-content: center
    }
}

.home_tech_sc.theme-light {
    background: var(--c_white);
}

.theme-light .tech_tab_btn {
    border-color: var(--c_primary);
}

.theme-light .tech_tab_btn li {
    color: var(--c_primary);
}

.theme-light .tech_tab_btn li.active,
.theme-light .tech_tab_btn li:hover {
    color: var(--c_black);
}

.theme-light .tech_tab_btn li::after {
    filter: brightness(0);
}

/* Home Tech Section | End */


/**Form loader css Start**/
body:has(.body-wrapper.ajax-loader) {
    overflow: hidden;
}

.body-wrapper.ajax-loader:before {
    background: rgba(255, 255, 255, 0.7);
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    content: "";
    bottom: 0;
}

.body-wrapper.ajax-loader:after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--c_primary);
    border-color: transparent var(--c_primary) transparent var(--c_primary);
    border-radius: 50%;
    animation: loader 1s linear infinite;
    z-index: 999999;
}

@keyframes loader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/**Form loader css End**/


/*container*/
.ltside_conta_iner {
    width: calc(100% - (100% - 90%) / 2);
    max-width: calc(100% - (100% - 1170px) / 2);
    margin: 0 0 0 auto;
}

@media (max-width:1200px) {
    .ltside_conta_iner {
        width: 90%;
        max-width: 1170px;
        margin: 0 auto;
    }
}

.btn_flx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/***** Common Popup | Start *****/
.cmnpopup_lt {
    width: 40%;
    display: initial;
    background: #141519;
    padding:25px;
    position: relative;
    z-index: 1;
    border: unset;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.cmnpopup_lt h2 {
    font-size: 18px;
    font-weight: 500;margin-bottom: 5px;
}

.cmnpopup_lt:after {
    content: "";
    position: absolute;
    background: url(https://www.uaeappdevelopers.ae/wp-content/uploads/2023/06/comnpopup-img.jpg) no-repeat;
    left: 0;
    bottom: 0;
    height: 70%;
    width: 100%;
    background-size: 100% 100%;
    z-index: -1;
    border-bottom-left-radius: 30px;
}

.cmnpopup_lt h3 {
    font-weight: 500;
}

.cmnpopup_rt .form_btn .btn[type=submit] {
    width: 100%;
    background: var(--c_black);
    color: var(--c_primary);
}

@media (max-width:992px) {
    .cmnpopup_lt {
        width: 100%;
        padding: 15px 25px;
        text-align: center;
        border-radius: 0;
    }

    .cmnpopup_lt h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .cmnpopup_lt:after {
        content: unset;
    }

    .cmnpopup_lt h3 {
        font-size: 18px;
    }

    .comn_frm .cotct_bx {
        overflow: hidden;
        border-radius: 20px;
    }
}

/***** Common Popup | End *****/

/***Whatsapp***/
.btm_whtsapp {
    position: fixed;
    bottom: 18px;
    left: 20px;
    z-index: 1;
}

.btm_whtinr {
    position: relative;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbb-circle {
    background-color: rgba(127, 186, 0, 0);
    border: 1px solid #4fce5d;
    border-radius: 100% !important;
    opacity: 0.5;
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation: 2.2s ease-in-out infinite animation1;
    animation: 2.2s ease-in-out infinite animation1;
    -ms-animation: animation1 2.2s ease-out;
    -ms-animation-iteration-count: infinite;
}

.cbb-circle-fill {
    background-color: #4fce5d;
    border: 1px solid #4fce5d;
    border-radius: 100% !important;
    opacity: 1;
    position: absolute;
    width: 70px;
    height: 70px;
    -webkit-animation: 1.7s ease-in-out infinite animation2;
    animation: 1.7s ease-in-out infinite animation2;
    -ms-animation: animation2 1.7s ease-out;
    -ms-animation-iteration-count: infinite;
}

.whtsap_clck {
    height: 40px;
    width: 40px;
    z-index: 11;
    opacity: 1;
    overflow: hidden;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
    background: #4fce5d;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.btm_whtsapp .whtsap_clck svg {
    height: 25px;
    animation: 2s infinite ring;
}

@keyframes animation1 {
    0% {
        opacity: 0.1;
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    70% {
        opacity: 0.6;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0.3;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes animation2 {
    0% {
        opacity: 0.3;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }

    70% {
        opacity: 0.8;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0.1;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

/***Whatsapp***/
