:root {
    --on-surface: #121212;
    --line: #E5E5E5;
    --background: hsl(0, 0%, 96%);
    --surface: #F5F5F2;
    --blue: #2868D8;
    --critical: #EB4D4D;
    --success: #198754;
    /*
    --primary: #094330;
    --secondary: #21AB48;
    --gradient: #21AB48;
    */
    --primary: #01579B;
    --primary-rgb:1, 87, 155;
    --secondary: #2196F3;
    --secondary-rgb: 33, 150, 243;
    --gradient: #1976d2;
    --gradient-rgb: 25, 118, 210;
    --orange: #EA603F;
    --white: #FFFFFF;
    --deep-purple: #15143B;
    --dark: #0F1E37;
    --grey: #3F4B5F;
    --dark-blue: #173363;
    --dark-purple: #130E38;
    --placehover: #B1B1B1;
    --yellow: #F2C94C;
    --neutral: #E3F2FD;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: var(--on-surface);
    line-height: 26px;
    scroll-behavior: smooth; }

#content {
    overflow: hidden; }

* {
    box-sizing: border-box; }

html {
    line-height: 1;
    /* 1 */ }

body {
    margin: 0;
    overflow-x: hidden; }

::-webkit-scrollbar {
    width: 6px;
    border-radius: 4px; }

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; }

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; }

main {
    display: block; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0; }

hr {
    box-sizing: content-box;
    /* 1 */
    height: 1px;
    /* 1 */
    overflow: visible;
    /* 2 */ }

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */ }

li {
    list-style: none; }

a {
    background-color: transparent;
    color: var(--on-surface) !important;
    text-decoration: none; }

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;}

b,
strong {
    font-weight: bolder; }

code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */ }

small {
    font-size: 80%; }

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }

sub {
    bottom: -0.25em; }

sup {
    top: -0.5em; }

img {
    border-style: none; }

button {
    cursor: pointer; }

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */ }

button,
input {
    /* 1 */
    overflow: visible; }

input {
    outline: none;
    border: 1px solid transparent; }
input:focus {
    border: 1px solid var(--secondary); }

button,
select {
    /* 1 */
    text-transform: none; }

button:focus,
select:focus {
    outline: 0;
    box-shadow: none; }

input:focus {
    outline: 0; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

fieldset {
    padding: 0.35em 0.75em 0.625em; }

legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */ }

progress {
    vertical-align: baseline; }

textarea {
    overflow: auto; }

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */ }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto; }

[type="search"] {
    outline-offset: -2px;
    /* 2 */ }

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */ }

details {
    display: block; }

summary {
    display: list-item; }

template {
    display: none; }

[hidden] {
    display: none; }

.container {
   /*max-width: 1322px;*/
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto; }

.icon-on-surface::before {
    color: var(--on-surface); }

.icon-gradient::before {
    color: var(--gradient); }

.icon-white::before {
    color: var(--white); }
.select-arrow-none select {
    -webkit-appearance: none;
    outline: none;
    border: 1px solid transparent; }
.select-arrow-none select:focus {
    border: 1px solid var(--blue); }

.col-xl-2-5 {
    flex: 0 0 20%;
    max-width: 20%; }

.text-on-surface {
    color: var(--on-surface); }

.text-secondary {
    color: var(--secondary) !important; }

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

.text-neutro{
    color: var(--neutral) !important;
}
.text-gray {
    color: var(--grey) !important; }

.text-line {
    color: var(--line) !important; }

.text-surface {
    color: var(--surface); }

.text-blue {
    color: var(--blue); }

.text-critical {
    color: var(--critical); }

.text-orange {
    color: var(--orange); }

.text-gradient {
    color: var(--gradient); }

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

.text-placehover {
    color: var(--placehover); }

.text-yellow {
    color: var(--yellow); }

.text-deep-purple {
    color: var(--deep-purple); }

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-gradient-blue {
    background: linear-gradient(136deg, #5473DC 0%, #8BF7FF 100%); }

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

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

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

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

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

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

.heading1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 88px; }

.heading2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 68px; }

.heading3 {
    font-size: 44px;
    font-weight: 700;
    line-height: 50px; }

.heading4 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px; }

.heading5 {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px; }

.heading6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;}

.heading7 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;}

.body1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; }

.body2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; }

.body3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; }

.text-button {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;}

.text-button-small {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;}

.text-button-uppercase {
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase; }

.text-sub-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase; }

.text-sub-heading2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 2.8px;
    text-transform: uppercase; }

.caption1 {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px; }

.caption2 {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px; }

.fs-300 {
    font-size: 300px; }

.fs-150 {
    font-size: 150px; }

.fs-100 {
    font-size: 100px; }

.fs-70 {
    font-size: 70px; }

.fs-60 {
    font-size: 60px; }

.fs-52 {
    font-size: 52px; }

.fs-48 {
    font-size: 48px; }

.fs-42 {
    font-size: 42px; }

.fs-36 {
    font-size: 36px; }

.fs-32 {
    font-size: 32px;
    line-height: 34px; }

.fs-28 {
    font-size: 28px; }

.fs-24 {
    font-size: 24px; }

.fs-20 {
    font-size: 20px; }

.fs-18 {
    font-size: 18px; }

.fs-14 {
    font-size: 14px; }

.fs-12 {
    font-size: 12px; }

.fs-10 {
    font-size: 10px; }

.fw-700 {
    font-weight: 700; }

.fw-600 {
    font-weight: 600; }

.fw-500 {
    font-weight: 500; }

.fw-400 {
    font-weight: 400; }

.pb-100 {
    padding-bottom: 100px; }

.pb-80 {
    padding-bottom: 80px; }

.pb-70 {
    padding-bottom: 70px; }

.pb-60 {
    padding-bottom: 60px; }

.pb-40 {
    padding-bottom: 40px; }

.pb-36 {
    padding-bottom: 36px; }

.pb-32 {
    padding-bottom: 32px; }

.pb-24 {
    padding-bottom: 24px; }

.pb-20 {
    padding-bottom: 20px; }

.pb-16 {
    padding-bottom: 16px; }

.pb-14 {
    padding-bottom: 14px; }

.pb-12 {
    padding-bottom: 12px; }

.pb-8 {
    padding-bottom: 8px; }

.pb-4 {
    padding-bottom: 4px !important; }

.pt-100 {
    padding-top: 100px; }

.pt-80 {
    padding-top: 80px; }

.pt-70 {
    padding-top: 70px; }

.pt-60 {
    padding-top: 60px; }

.pt-40 {
    padding-top: 40px; }

.pt-36 {
    padding-top: 36px; }

.pt-32 {
    padding-top: 32px; }

.pt-24 {
    padding-top: 24px; }

.pt-20 {
    padding-top: 20px; }

.pt-16 {
    padding-top: 16px; }

.pt-14 {
    padding-top: 14px; }

.pt-12 {
    padding-top: 12px; }

.pt-8 {
    padding-top: 8px; }

.pt-4 {
    padding-top: 4px !important; }

.mt-100 {
    margin-top: 100px; }

.mt-80 {
    margin-top: 80px; }

.mt-60 {
    margin-top: 60px; }

.mt-40 {
    margin-top: 40px; }

.mt-32 {
    margin-top: 32px; }

.mt-24 {
    margin-top: 24px; }

.mt-20 {
    margin-top: 20px; }

.mt-16 {
    margin-top: 16px; }

.mt-12 {
    margin-top: 12px; }

.mt-8 {
    margin-top: 8px; }

.mt-4 {
    margin-top: 4px !important; }

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

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

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

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

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

.mb-4 {
    margin-bottom: 4px !important; }

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

.ml-40 {
    margin-left: 40px; }

.ml-28 {
    margin-left: 28px; }

.ml-24 {
    margin-left: 24px; }
.ml-16 {
    margin-left: 16px; }
.ml-12 {
    margin-left: 12px; }
.ml-8 {
    margin-left: 8px; }
.ml-4 {
    margin-left: 4px !important; }
.ml-2 {
    margin-left: 2px !important; }
.pl-100 {
    padding-left: 100px; }
.pl-70 {
    padding-left: 70px; }
.pl-64 {
    padding-left: 64px; }
.pl-55 {
    padding-left: 55px; }
.pl-40 {
    padding-left: 40px; }
.pl-36 {
    padding-left: 36px; }
.pl-32 {
    padding-left: 32px; }
.pl-28 {
    padding-left: 28px; }
.pl-24 {
    padding-left: 24px; }
.pl-20 {
    padding-left: 20px; }
.pl-16 {
    padding-left: 16px; }
.pl-12 {
    padding-left: 12px; }
.pl-9 {
    padding-left: 9px; }
.pl-8 {
    padding-left: 8px; }
.pl-4 {
    padding-left: 4px !important; }
.pr-80 {
    padding-right: 80px; }
.pr-64 {
    padding-right: 64px; }
.pr-55 {
    padding-right: 55px; }
.pr-40 {
    padding-right: 40px; }
.pr-36 {
    padding-right: 36px; }
.pr-32 {
    padding-right: 32px; }
.pr-28 {
    padding-right: 28px; }
.pr-24 {
    padding-right: 24px; }
.pr-20 {
    padding-right: 20px; }
.pr-16 {
    padding-right: 16px; }
.pr-12 {
    padding-right: 12px; }
.pr-8 {
    padding-right: 8px; }
.pr-4 {
    padding-right: 4px !important; }
.p-40 {
    padding: 40px; }
.p-36 {
    padding: 36px; }
.p-32 {
    padding: 32px; }
.p-28 {
    padding: 28px; }
.p-24 {
    padding: 24px; }
.p-16 {
    padding: 16px; }
.p-14 {
    padding: 14px; }
.p-12 {
    padding: 12px; }

.p-8 {
    padding: 8px; }

.p-4 {
    padding: 4px !important; }

.hidden {
    visibility: hidden; }

.flex-column {
    display: flex;
    flex-direction: column; }

.flex-wrap {
    flex-wrap: wrap; }

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center; }

.flex-item-center {
    display: flex;
    align-items: center; }

.flex-columns-item-center {
    display: flex;
    flex-direction: column;
    align-items: center; }

.flex-columns-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }

.flex-columns-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }

.item-start {
    align-items: flex-start; }

.item-end {
    align-items: flex-end; }

.d-flex {
    display: flex; }

.row-gap-60 {
    row-gap: 60px; }

.row-gap-40 {
    row-gap: 40px; }

.row-gap-32 {
    row-gap: 32px; }

.row-gap-24 {
    row-gap: 24px; }

.row-gap-20 {
    row-gap: 20px; }

.row-gap-12 {
    row-gap: 12px; }

.row-gap-6 {
    row-gap: 6px; }

.row-gap-4 {
    row-gap: 4px; }

.gap-80 {
    gap: 80px; }

.gap-60 {
    gap: 60px; }

.gap-40 {
    gap: 40px; }

.gap-30 {
    gap: 30px; }

.gap-24 {
    gap: 24px; }

.gap-20 {
    gap: 20px; }

.gap-16 {
    gap: 16px; }

.gap-12 {
    gap: 12px; }

.gap-10 {
    gap: 10px !important; }

.gap-8 {
    gap: 8px !important; }

.gap-4 {
    gap: 4px !important; }

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

.text-right {
    text-align: right; }

.text-left {
    text-align: left; }

.text-justify {
    text-align: justify; }

.text-upper {
    text-transform: uppercase; }

.w-350 {
    width: 350px; }

.w-120 {
    width: 120px; }

.w-100 {
    width: 100%; }

.h-100 {
    height: 100%; }

.w-60 {
    width: 60px; }

.h-60 {
    height: 60px; }

.w-48 {
    width: 48px; }

.h-48 {
    height: 48px; }

.w-40 {
    width: 40px; }

.h-40 {
    height: 40px; }

.w-30 {
    width: 30px; }

.h-30 {
    height: 30px; }

.w-28 {
    width: 28px; }

.h-28 {
    height: 28px; }

.w-24 {
    width: 24px; }

.h-24 {
    height: 24px; }

.w-1 {
    width: 1px; }

.h-120 {
    height: 120px; }

.h-88 {
    height: 88px; }

.h-80 {
    height: 80px; }

.h-44 {
    height: 44px; }

.bora-100 {
    border-radius: 100px; }

.bora-50 {
    border-radius: 50%; }

.bora-48 {
    border-radius: 48px; }

.bora-40 {
    border-radius: 40px; }

.bora-24 {
    border-radius: 24px; }

.bora-20 {
    border-radius: 20px; }

.bora-16 {
    border-radius: 16px; }

.bora-12 {
    border-radius: 12px; }

.bora-8 {
    border-radius: 8px; }

.bora-4 {
    border-radius: 4px; }

.border-blue-1px {
    border: 1px solid var(--blue); }

.border-blue-2px {
    border: 2px solid var(--blue); }

.border-green-2px {
    border: 2px solid var(--primary); }

.border-grey-1px {
    border: 1px solid var(--grey); }

.border-grey-2px {
    border: 2px solid var(--grey); }

.border-white-2px {
    border: 2px solid var(--white); }

.border-transparent {
    border: 1px solid transparent; }

.border-none {
    border: none; }

.border-line-1px {
    border: 1px solid var(--line); }

.border-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2); }

.line-x {
    width: 100%;
    height: 1px;
    background-color: var(--line); }

.line-y {
    height: 100%;
    width: 1px;
    background-color: var(--line); }

.outline-none {
    outline: none; }

.display-none {
    display: none; }

.display-block {
    display: block; }

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

.display-inline-flex {
    display: inline-flex; }

.hidden {
    visibility: hidden; }

.overflow-hidden {
    overflow: hidden; }

.hover-underline:hover {
    text-decoration: underline; }

.text-underline {
    text-decoration: underline; }

.pointer {
    cursor: pointer; }

.hover-scale {
    transition: all ease 0.8s;
    cursor: pointer; }
.hover-scale:hover {
    transform: scale(1.05); }

.hover-button-black {
    transition: all ease 0.5s;
    cursor: pointer; }
.hover-button-black:hover {
    background-color: var(--on-surface) !important;
    color: #FFFFFF !important; }

.hover-bg-white {
    transition: all ease 0.5s;
    cursor: pointer; }
.hover-bg-white i {
    transition: all ease 0.5s; }
.hover-bg-white:hover {
    background-color: var(--white);
    color: var(--on-surface); }
.hover-bg-white:hover i {
    color: var(--on-surface); }

.hover-bg-gradient {
    transition: all ease 0.5s;
    cursor: pointer; }
.hover-bg-gradient:hover {
    background-color: var(--gradient) !important; }

.hover-bg-success {
    transition: all ease 0.5s;
    cursor: pointer; }
.hover-bg-success:hover {
    background-color: var(--success); }

.hover-text-green {
    transition: all ease 0.3s;
    cursor: pointer; }
.hover-text-green:hover {
    color: var(--secondary); }

.hover-text-success {
    transition: all ease 0.3s;
    cursor: pointer; }
.hover-text-success:hover {
    color: var(--success); }

.hover-text-orange {
    transition: all ease 0.3s;
    cursor: pointer; }
.hover-text-orange:hover {
    color: var(--orange); }

.hover-border-white {
    transition: all ease 0.3s;
    cursor: pointer; }
.hover-border-white:hover {
    border: 1px solid var(--white);
    opacity: 0.9; }

.hover-opacity:hover {
    opacity: 0.9; }

.hover-bg-blue {
    transition: all ease 0.3s;
    cursor: pointer; }
.hover-bg-blue:hover {
    background-color: var(--secondary);
    color: var(--white); }

.hover-border-blue {
    transition: all ease 0.3s;
    cursor: pointer;
    border: 2px solid transparent; }
.hover-border-blue:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue); }

.hover-border-green {
    transition: all ease 0.3s;
    cursor: pointer;
    border: 2px solid transparent; }
.hover-border-green:hover {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary); }

.hover-box-shadow {
    transition: all ease 0.3s; }
.hover-box-shadow:hover {
    box-shadow: 1px 5px 20px 0 rgba(37, 82, 91, 0.2); }

.box-shadow {
    /* box-shadow: 0px 0px 5px 0px rgba(28, 36, 51, 0.15); */
    box-shadow: 2px 3px 5px 2px rgba(28, 36, 51, 0.3);
}

.box-shadow-none:hover {
    box-shadow: none; }

.icon-on-surface::before {
    color: var(--on-surface); }

.icon-white::before {
    color: var(--white) !important; }

#loadingC{ border: 6px solid var(--primary); border-radius: 50%; padding: 50px; display: table; text-align: center; min-width: 300px; min-height: 300px; margin: 0 auto;}
#loadingC .icon::before{ color: var(--primary);}
#dvgif .spinner-grow {margin-left: 4px;}
#loadingC.load{border: 6px solid var(--gradient);}
#loadingC.load .icon::before{ color: var(--gradient);}
#btnRefresh{min-height: 50px; min-width: 50px; padding: 3px 0; margin-left: 4px;}
input:not(:placeholder-shown):invalid{
    color: #121212 !important;
    box-shadow:0 0 0 1px var(--critical);}
input[type=email]{
    text-transform: lowercase;}
.button-share.text-white{ color: var(--white) !important;}
.faqs-block .list-nav{justify-content:normal; }
.list-member .item{ border: 2px solid var(--line); border-radius: 15px; margin:0 10px; padding: 60px 10px; width: 100%; }
.list-member .item .bg-img{ border-radius: 50% !important; margin:  0 auto; width: 80%;}
.list-member .item .caption1 {font-size: 16px; font-weight: 500; min-height: 98px;}
.bgFilter{ filter: opacity(.6);}
.clshadow{ text-shadow: 1px 1px 3px var(--secondary);}
.heading-b1 {color: var(--primary); font-size: 20px; font-weight: 700; line-height: 28px; margin-top: 32px;}
.btn-outline-success.cl_btn_custom{ color: var(--secondary);border-color: var(--secondary);}
#fmContactF{ width: 80%; max-width: 800px; margin: 0 auto;}
.list-feature .d-flex{align-items: center;}
.btn-outline-success.cl_btn_custom:hover {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-check:focus+.btn-outline-success.cl_btn_custom,.btn-outline-success.cl_btn_custom:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--secondary-rgb),0.5);
}
.btn-check:active+.btn-outline-success.cl_btn_custom, .btn-check:checked+.btn-outline-success.cl_btn_custom, .btn-outline-success.cl_btn_custom.active, .btn-outline-success.cl_btn_custom.dropdown-toggle.show, .btn-outline-success.cl_btn_custom:active{
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-check:active+.btn-outline-success.cl_btn_custom:focus,.btn-check:checked+.btn-outline-success.cl_btn_custom:focus,.btn-outline-success.cl_btn_custom.active:focus,.btn-outline-success.cl_btn_custom.dropdown-toggle.show:focus,.btn-outline-success.cl_btn_custom:active:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--secondary-rgb),0.5);
}
.btn-outline-success.cl_btn_custom.disabled,.btn-outline-success.cl_btn_custom:disabled {
    color: var(--secondary);
    background-color: transparent;
}
.text-success.cl_txt_custom {
    color: rgba(var(--gradient-rgb), 1) !important;
}
.icon{
    font-size: 22px !important;
    color: var(--white);
}
@keyframes showItem {
  from { transform: scale(0.2); opacity: 0; }
  to { transform: scale(1); opacity: 1; } 
}
@keyframes moveY {
  0% { transform: translateY(0); }
  50% { transform: translateY(20px); }
  100% { transform: translateY(0px); } 
}
@keyframes moveX {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0px); } 
}
.item-filter.hide { display: none; }
.item-filter.show {
  display: block;
  animation: showItem ease-in-out 0.5s; }
  
/*HEADER*/
#header {
    display: unset; }
  
  .header-menu {
    position: sticky;
    top: 0;
    z-index: 1000; }
  
  .header-menu {
    box-shadow: 0px 5px 25px rgba(58, 64, 67, 0.1);
    width: 100%; }

.top-nav  .left-block .menu-logo { max-height: 75px;}
.menu-left-block .menu-logo { max-height: 75px;}
.icon-col-primary::before{ color: var(--primary) !important;}
.icon-col-second::before{color: var(--secondary) !important; }
  
  .header-menu .menu-center-block .nav-item {
    padding: 0 12px;
    cursor: pointer;
    position: relative;
    z-index: 1; }
  .header-menu .menu-center-block .nav-item .sub-nav {
    position: absolute;
    width: 260px;
    left: -10px;
    top: 100px;
    padding-top: 4px;
    padding-bottom: 8px;
    background-color: #fff;
    z-index: 5;
    box-shadow: 0px 5px 25px rgba(58, 64, 67, 0.1);
    opacity: 0; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item {
    padding: 16px 20px; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item a {
    position: relative;
    transition: all ease 0.3s;
    padding-top: 16px;
    padding-bottom: 16px; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 51%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--blue);
    border-radius: 6px;
    transition: all ease 0.3s; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item:hover a {
    color: var(--blue);
    padding-left: 20px; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item:hover a::before {
    width: 12px; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item.active a {
    color: var(--blue);
    padding-left: 20px; }
  .header-menu .menu-center-block .nav-item .sub-nav .sub-nav-item.active a::before {
    width: 12px; }
  .header-menu .menu-center-block .nav-item:hover .nav-link {
    color: var(--blue); }
  .header-menu .menu-center-block .nav-item:hover .sub-nav {
    top: 80px;
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.3s; }
  .header-menu #menu-mobile-block {
    z-index: 100; }
  .header-menu #menu-mobile-block .sub-nav-mobile .sub-nav-item a {
    position: relative; }
  .header-menu #menu-mobile-block .sub-nav-mobile .sub-nav-item a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.2px;
    background: var(--blue); }
  .header-menu #menu-mobile-block .sub-nav-mobile .sub-nav-item:hover > a {
    color: var(--blue); }
  .header-menu #menu-mobile-block .sub-nav-mobile .sub-nav-item.active a {
    color: var(--blue);
    padding-left: 16px; }
  .header-menu #menu-mobile-block .sub-nav-mobile .sub-nav-item.active a::before {
    width: 10px; }
  
    .header-menu #menu-mobile-block {
        position: relative; }
      .header-menu #menu-mobile-block .menu-mobile-main {
        transition: all ease-in-out 0.5s;
        overflow-x: hidden;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        z-index: 10;
        background-color: #fff; }
      .header-menu #menu-mobile-block .menu-mobile-main .menu-nav-mobile .nav-item-mobile .sub-nav-mobile {
        transition: all ease-in-out 0.5s;
        overflow: hidden;
        max-height: 0; }
      .header-menu #menu-mobile-block .menu-mobile-main .menu-nav-mobile .nav-item-mobile .sub-nav-mobile.open {
        max-height: 280px; }
      
      .header-menu #menu-mobile-block.open {
        border-top: 1px solid var(--line); }
      .header-menu #menu-mobile-block.open .menu-mobile-main {
        max-height: 320px; }

/*FOOTER*/
#footer .footer-block{
  padding-top: 10px;
  background-color: var(--primary);
}
#footer .footer-block .row {
  align-items: flex-start; }
  #footer .footer-block .row .footer-logo {
    width: 145px; }
  #footer .footer-block .row .list-social .item {
    min-width: 40px;
    width: 40px;
    height: 40px;}
    #footer .footer-block .row .list-social .item i {
      font-size: 14px;
      margin-left: 2px; }
  #footer .footer-block .row .company-contact .send-block {
    height: 46px; }
    #footer .footer-block .row .company-contact .send-block input {
      height: 100%;
      width: calc(100% - 46px);
      padding: 0 12px;
      border: 1px solid transparent;
      outline: none;
      border-radius: 8px 0 0 8px; }
      #footer .footer-block .row .company-contact .send-block input:focus {
        border: 1px solid var(--secondary); }
    #footer .footer-block .row .company-contact .send-block button {
      height: 100%;
      width: 46px;
      border: 1px solid transparent;
      outline: none;
      background-color: var(--blue);
      border-radius: 0 8px 8px 0; }
      #footer .footer-block .row .company-contact .send-block button:hover {
        background-color: #4d67fa; }

#footer .style-two .footer-block {
  background-color: #173363; }

#footer .style-three .footer-block {
  background-color: #130E38; }
  #footer .style-three .footer-block .company-contact svg path:nth-child(2),
  #footer .style-three .footer-block .company-contact svg path:nth-child(3) {
    fill: var(--gradient) !important; }
  #footer .style-three .footer-block .company-contact svg path:nth-child(4) {
    fill: var(--white) !important; }
  #footer .style-three .footer-block .company-contact .send-block button {
    background-color: var(--gradient); }
    #footer .style-three .footer-block .company-contact .send-block button:hover {
      background-color: #3234c9; }

#footer .style-four .footer-block {
  background-color: var(--deep-purple); }
  #footer .style-four .footer-block .company-contact svg path:nth-child(2),
  #footer .style-four .footer-block .company-contact svg path:nth-child(3) {
    fill: var(--success) !important; }
  #footer .style-four .footer-block .company-contact svg path:nth-child(4) {
    fill: var(--white) !important; }
  #footer .style-four .footer-block .company-contact .send-block button {
    background-color: var(--success); }
    #footer .style-four .footer-block .company-contact .send-block button:hover {
      background-color: #34c553; }

#footer .style-five .footer-block {
  background-color: var(--on-surface); }

#footer .style-six .footer-block {
  background-color: var(--on-surface); }
  #footer .style-six .footer-block .company-contact svg path:nth-child(2),
  #footer .style-six .footer-block .company-contact svg path:nth-child(3) {
    fill: var(--orange) !important; }
  #footer .style-six .footer-block .company-contact svg path:nth-child(4) {
    fill: var(--white) !important; }
  #footer .style-six .footer-block .company-contact .send-block button {
    background-color: var(--orange); }
    #footer .style-six .footer-block .company-contact .send-block button:hover {
      background-color: #ff5e00; }
.waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:140px;
}
/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s;}
.parallax > use:nth-child(2) {animation-delay: -3s; animation-duration: 10s;}
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s;}
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s;}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% { 
        transform: translate3d(85px,0,0);
    }
}
/*SLIDE*/
.slider-block {
  position: relative; }
.slider-block .slider-main {
  position: relative; }
.slider-block .slider-main .slider-item {
  position: relative;
  height: 1080px; }
.slider-block .slider-main .slider-item .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;}
.slider-block .slider-main .slider-item .bg-img img {
  object-fit: cover; }
.slider-block .slider-main .slider-item .container {
  position: relative;
  height: 100%;
  z-index: 2; }
.slider-block .slider-main .slider-item .container .text-content {
  left: 10%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 15px; }

.slider-block .slider-main .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  gap: 16px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%); }
.slider-block .slider-main .slick-dots li {
  position: relative;
  border: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }
.slider-block .slider-main .slick-dots li button {
  display: none; }
.slider-block .slider-main .slick-dots li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--secondary);
  transition: 0.5s; }
.slider-block .slider-main .slick-dots li.slick-active {
  border: 1px solid var(--on-surface);
  background-color: #fff; }
.slider-block .slider-main .slick-dots li.slick-active::after {
  background-color: var(--on-surface);
  border: 1px solid var(--on-surface); }
.slider-block .prev-arrow,
.slider-block .next-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.5s;
  z-index: 10;
  opacity: 0;
  visibility: hidden; }
.slider-block .prev-arrow:hover,
.slider-block .next-arrow:hover {
  background-color: rgba(0, 0, 0, 0.6); }
.slider-block .prev-arrow {
  left: 20px; }
.slider-block .next-arrow {
  right: 20px; }
.slider-block:hover .prev-arrow,
.slider-block:hover .next-arrow {
  opacity: 1;
  visibility: visible; }
.slider-block .prev-arrow.slick-disabled,
.slider-block .next-arrow.slick-disabled {
  display: none !important; }

/*SUB SLIDE*/
.slider-block.slider-sub .container .heading-nav{ position: absolute;z-index: 1;}
.slider-block.slider-sub .slider-main .slider-item{
  height: 400px;
}
.slider-sub {
  width: 100%;
  height: 400px;
  position: relative; }
  .slider-sub .bg-img {
    width: 100%;
    height: 100%; }
    .slider-sub .bg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .slider-sub .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }
    .slider-sub .container .heading-nav, .heading-nav {
      background-color: #808792;
      border-radius: 36px;
      padding: 6px 16px;
      display: inline-flex;
      align-items: center; }
      .slider-sub .container .heading-nav i, .heading-nav i {
        margin-top: 2px;
        font-size: 10px; }
    .slider-sub .container .text-nav {
      margin-top: 75px;
      width: 50%; }
/*scroll-to-top-btn*/
.scroll-to-top-btn {
  background-color: var(--secondary) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  right: 30px;
  transition: all ease 0.3s;
  box-shadow: 0px 5px 25px rgba(58, 64, 67, 0.2);
  opacity: 0;
  visibility: hidden;
  cursor: pointer; }
  .scroll-to-top-btn i {
    color: var(--white);
    transition: all ease 0.3s; }
  .scroll-to-top-btn:hover {
    background-color: var(--on-surface); }

.scroll-to-top-btn.active {
  bottom: 110px;
  opacity: 1;
  visibility: visible;
  z-index: 100;
 }

/*payment-gateway-two*/
.payment-gateway-two .container .row.row-gap-32 > div:last-child .right {
  position: relative; }
  .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item {
    position: absolute; }
  .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(2) {
    left: 40px;
    top: 18%;
    animation: moveY 8s ease infinite; }
    .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(2) i {
      padding: 16px 12px; }
  .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3) {
    right: 0px;
    top: 30%;
    animation: moveY 8s ease infinite; }
  .payment-gateway-two.clstyle2 .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3){
    top: 55%;  }
  .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(4) {
    right: 40px;
    bottom: 0px;
    animation: moveX 8s ease infinite; }

.service-tab-style .list-nav .nav-item {
  transition: all ease 0.4s; }
.service-tab-style .list-nav .active,
.service-tab-style .list-nav .nav-item:hover {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 99px; }

/*case-studies-bloc*/
.case-studies-block.style-one .list-nav {
  flex-wrap: wrap; }
  .case-studies-block.style-one .list-nav .nav-item.active,
  .case-studies-block.style-one .list-nav .nav-item:hover {
    border-bottom: 4px solid var(--primary);
    color: var(--white);
    transition: all linear 0.3s; }

.case-studies-block.style-one .row { row-gap: 50px; }
  .case-studies-block.style-one .row .item-main {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .case-studies-block.style-one .row .item-main .bg-img {
      position: relative; }
      .case-studies-block.style-one .row .item-main .bg-img img {
        transition: all linear 0.3s;
        cursor: pointer; }
      .case-studies-block.style-one .row .item-main .bg-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: #121212;
        opacity: 0;
        transition: all ease 0.3s; }
    .case-studies-block.style-one .row .item-main .infor {
      margin-top: -30px;
      width: 80%;
      z-index: 1;
      box-shadow: 0px 5px 25px rgba(58, 64, 67, 0.1); }
      .case-studies-block.style-one .row .item-main .infor .category {
        letter-spacing: 1.2px; }
      .case-studies-block.style-one .row .item-main .infor .heading6 {
        transition: 0.3s; }
    .case-studies-block.style-one .row .item-main:hover .bg-img img {
      transform: scale(1.06); }
    .case-studies-block.style-one .row .item-main:hover .bg-img::after {
      opacity: 0.4; }
    .case-studies-block.style-one .row .item-main:hover .infor .heading6 {
      text-decoration: none; }
      

@media (max-width: 2200px) {
  /*SLIDE*/
  .slider-block .slider-main .slider-item {
    height: 940px; }
}

@media (max-width: 1199px) {
  .container { padding-left: 16px; padding-right: 16px; } 
  /*SLIDE*/
  .slider-block .slider-main .slider-item { height: 820px; }
}

@media (max-width: 1599px) {
  /*SLIDE*/
  .slider-block .slider-main .slider-item { height: 640px; }
}
@media (max-width: 1169px) {
  /*HEADER*/
  .header-menu .menu-center-block .nav-item { padding: 0 8px; }
  /*SLIDE*/
  .slider-block .slider-main .slider-item { height: 580px; }
  .payment-gateway-two .container .row.row-gap-32 {
    flex-direction: column-reverse;
    align-items: center; }
    .payment-gateway-two .container .row.row-gap-32 > div:last-child {
      width: 70%; }
}

@media (max-width: 1023px) {
  /*HEADER*/
  .header-menu .menu-center-block {
    display: none; }
  .header-menu .menu-right-block .menu-humburger {
    display: block;
    padding-left: 24px; }
  .header-menu .menu-right-block .menu-humburger i {
    font-size: 24px; }
  .header-menu.style-four .menu-humburger {
    display: block; }
  .header-menu.style-four .menu-humburger i {
    color: var(--white);
    font-size: 24px; }
  /*SLIDE*/
  .slider-block .prev-arrow,
  .slider-block .next-arrow {
    display: none !important; }
  /*case-studies-block.style-one */
  .case-studies-block.style-one .row .item-main .bg-img a {
    right: 20px;
    padding: 21px 10px; } 
}

@media (max-width: 991px) {
  .payment-gateway-two .container .row.row-gap-32 > div:last-child {
    width: 90%; }
    .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3) {
      right: -20px; } }
    
@media (max-width: 767px) {
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
  html,
  body {
    font-size: 14px;
    line-height: 22px; }
  .heading2 {
    font-size: 28px;
    line-height: 36px; }
  .heading3 {
    font-size: 23px;
    line-height: 32px; }
  .heading4 {
    font-size: 22px;
    line-height: 30px; }
  .heading5 {
    font-size: 20px;
    line-height: 26px; }
  .heading6 {
    font-size: 18px;
    line-height: 20px; }
  .heading7 {
    font-size: 18px;
    line-height: 20px; }
  .text-button {
    font-size: 14px;
    line-height: 20px; }
  .text-button-small {
    font-size: 12px;
    line-height: 18px; }
  .body1 {
    font-size: 18px;
    line-height: 26px; }
  .body2 {
    font-size: 16px;
    line-height: 24px; }
  .body3 {
    font-size: 14px;
    line-height: 20px; }
  .caption1 {
    font-size: 12px;
    line-height: 16px; }
  .button-share {
    padding: 10px 24px; }
  .mt-100 {
    margin-top: 60px; }
  .pt-100 {
    padding-top: 60px; }
  .pt-80 {
    padding-top: 40px; }
  .pb-80 {
    padding-bottom: 40px; }
  .pt-60 {
    padding-top: 32px; }
  .pb-60 {
    padding-bottom: 32px; }
  .pt-32 {
    padding-top: 20px; }
  .pb-32 {
    padding-bottom: 20px; }
  .pt-16 {
    padding-top: 12px; }
  .pb-16 {
    padding-bottom: 12px; }
  .pb-100 {
    padding-bottom: 60px; }
  .mb-100 {
    margin-bottom: 60px; }
  .mt-80 {
    margin-top: 28px; }
  .mt-60 {
    margin-top: 24px; }
  .mt-40 {
    margin-top: 20px; }
  .mt-32 {
    margin-top: 16px; }
  .mt-24 {
    margin-top: 16px; }
  .mt-20 {
    margin-top: 14px; }
  .mt-16 {
    margin-top: 12px; }
  .mt-12 {
    margin-top: 6px; }
  .mt-8 {
    margin-top: 6px; }
  .row-gap-60 {
    row-gap: 30px; }
  .row-gap-40 {
    row-gap: 20px; }
  .row-gap-32 {
    row-gap: 16px; }
  .row-gap-24 {
    row-gap: 12px; }
  .row-gap-20 {
    row-gap: 10px; }
  .gap-30 {
    gap: 20px; }
  .gap-24 {
    gap: 16px; }
  .gap-20 {
    gap: 14px; }
  .gap-16 {
    gap: 12px; }
  .gap-12 {
    gap: 8px; }
  .p-40 {
    padding: 30px; }
  .p-32 {
    padding: 24px; }
  .p-24 {
    padding: 16px; }     
  i.fs-300  {
    font-size: 276px;
  }
  i.fs-150 {
    font-size: 128px; }
  i.fs-100 {
    font-size: 80px; }
  i.fs-70 {
    font-size: 52px; }
  i.fs-60 {
    font-size: 44px; }
  i.fs-52 {
    font-size: 38px; }
  i.fs-48 {
    font-size: 36px; }
  /*TOP-NAV*/
  .top-nav .h-44 {
    height: 36px; }
  .top-nav .h-60 {
    height: 40px; }
  .top-nav .right-block {
    gap: 0; }
    .top-nav .right-block .call-block,
    .top-nav .right-block .line,
    .top-nav .right-block .list-social {
      display: none; }
  /*FOOTER*/
  #footer .footer-block .row .footer-logo{ width: 100px;}
  #footer .footer-block .list-social.gap-10{ gap: 5px;}
  #footer .footer-block .row{padding-bottom: 5px;}
  .waves {
    height:40px;
    min-height:40px;
  }
  /*SLIDE*/
  .slider-block .slider-main .slider-item { height: 500px; }
  /*SUB SLIDE*/
  .slider-sub {
    height: 300px; }
    .slider-sub .container .text-nav {
      margin-top: 50px;
      width: 75%; }
  .clcolumn .col {width: 100%;}
  .fs-32 {
    font-size: 28px;
    line-height: 32px; }
  .clcolumnR.flex-between{flex-direction: column;}
  .clIconHide.flex-between{display: none;}
  .clcolumnR .content-main{ margin-top: 0px;}
}

@media (max-width: 620px) {
  .payment-gateway-two .container .row.row-gap-32 > div:last-child .right {
    padding-left: 0; }
    .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(2) {
      padding: 8px 12px;
      border-radius: 16px;
      gap: 8px;
      left: 10px; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(2) i {
        font-size: 14px;
        padding: 10px 8px;
        border-radius: 12px; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(2) .text .heading7 {
        font-size: 12px;
        line-height: 16px; }
    .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3) {
      padding: 8px 12px;
      border-radius: 16px;
      gap: 8px;
      right: -10px; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3) i {
        font-size: 20px;
        padding: 0;
        border-radius: 12px; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3) .text .heading7 {
        font-size: 12px;
        line-height: 16px; }
    .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(4) {
      padding: 8px 12px;
      border-radius: 16px;
      gap: 8px; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(4) i {
        font-size: 20px;
        padding: 8px 9px;
        border-radius: 12px; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(4) .text .heading7 {
        font-size: 12px;
        line-height: 16px; } 
}
@media (max-width: 576px) {
  /*HEADER*/
  .header-menu .h-80 {
    height: 60px; }
  .header-menu .h-80 .menu-left-block .menu-logo {
    width: 120px; }
  .header-menu .h-80 .menu-right-block .icon-call,
  .header-menu .h-80 .menu-right-block .text {
    display: none; }
  .style-home-two .header-menu .menu-right-block .text-button-small,
  .style-home-two .header-menu .menu-right-block .list-social {
    display: none; }
  .header-menu.style-four .h-88 {
    height: 60px; }
  .header-menu.style-four .menu-right-block .button-block {
    display: none; }
  /*SLIDE*/
  .slider-block .slider-main .slider-item {
      height: 420px; }
    .slider-block .slider-main .slider-item .bg-img::before {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.5);
      z-index: 1; }
    .slider-block .slider-main .slider-item .container .text-content {
      top: 46%; }
    .slider-block .slider-main .slick-dots {
      bottom: 20px; }

    /*SUB SLIDE*/
    .slider-block.slider-sub .slider-main .slider-item {
        height: 300px; }

    /*payment-gateway-two*/
    .payment-gateway-two .container .row.row-gap-32 > div:last-child {
      width: 100%;
      flex: 0 0 100%;
      max-width: 100%; }
      .payment-gateway-two .container .row.row-gap-32 > div:last-child .right .feature-item:nth-child(3) {
        right: -10px; }
}

@media (max-width: 500px) {
  /*SLIDE*/
  .slider-block .slider-main .slider-item .text-content br {
    display: none; }
  /*SUB SLIDE*/
  .slider-sub .bg-img img{
    filter: brightness(0.5);
  }
  .slider-sub .container .text-nav{
    margin-top: 34px;
    width: 90%;
  }
}