/*
===============================================
           CSS Table of Content
===============================================
1)  reset css
2)  global css
3)  spacing css
4)  extend css
5)  list-style css
6)  animation css
7)  typography css
8)  preloader css
9)  buttons css
10) badge css
11) table css
12) form css
13) card css
14) modal css
15) accordion css
16) nav-tabs css
17) pagination css
18) header css
19) footer css
20) inner-banner css
21) banner css
22) service css
23) service-details css
24) ticker css
25) about css
26) project css
27) project-details css
28) message css
29) brand css
30) newsletter css
31) testimonial css
32) team css
33) team-details css
34) faq css
35) blog css
36) blog-details css
37) pricing css
38) overview css
39) gallery css
40) video css
41) choose css
42) contact css
=========================================== */
/* === global css start === */
/* === reset css start === */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&amp;family=Roboto:wght@400;500;600;700&amp;family=Prata&amp;display=swap");

:root {
    --primary: #345770;
    --secondary: #943032;
    --secondary-two: #FF6600;
    --dark-700: #171931;
    --dark-800: #4A3F35;
    --dark-900: #0B0D26;
    --dark: #020101;
    --light-000:#ffffff;
    --light-100: #eef1f6;
    --light-200: #D0D0D0;
    --border-color: #D0D0D0;
    --display-font: "Urbanist", serif;
    --body-font: "Roboto", sans-serif;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

:where([draggable=true]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
}

*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark-800);
    font-size: 1rem;
    padding: 0;
    margin: 0;
    font-weight: 400;
    position: relative;
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
}

body.home-four {
    background-image: url(../images/elements/body-bg.png);
}

main {
    display: block;
}

footer {
    margin-top: auto;
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
}

select {
    cursor: pointer;
}

dt {
    margin-left: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
    opacity: 0.15;
}

pre {
    font-family: monospace, monospace;
    font-size: inherit;
}

address {
    font-style: inherit;
}

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

button {
    cursor: pointer;
}

*:focus {
    outline: none;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

span {
    display: inline-block;
}

p, li, span {
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    color: inherit;
}

a, button {
    cursor: revert;
}

a:hover {
    text-decoration: none;
}

strong {
    font-weight: 700;
}

a:hover {
    color: var(--primary);
}

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

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

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer;
    -webkit-appearance: button;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
    cursor: default;
}

:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

option {
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

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

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

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type=number] {
    -moz-appearance: textfield;
}

label[for] {
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[contenteditable]:focus {
    outline: auto;
}

table {
    border-color: inherit;
    border-collapse: collapse;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: bold;
}

/* === reset css end === */
.text-primary {
    color: var(--primary) !important;
}

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

.text-h {
    color: var(--dark-900) !important;
}

.text-p {
    color: var(--dark-800) !important;
}

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

/* background color css start */
.bg-primary {
    background-color: var(--primary) !important;
}

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

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

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

/* background color css end */
.section-top {
    padding-bottom: 3.75rem;
}

@media (max-width: 1399px) {
    .section-top {
        padding-bottom: 3.125rem;
    }
}

@media (max-width: 991px) {
    .section-top {
        padding-bottom: 2.5rem;
    }
}

.tj {
    text-align: justify;
}

.section-top-title-two {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.section-title {
    font-family: var(--display-font);
    font-size: 2.625rem;
    font-weight: 700;
}

@media (max-width: 1399px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
}

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

.rounded-sm {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* === global css end === */
/* === spacing css start === */
.mt-30 {
    margin-top: 1.875rem;
}

.mt-40 {
    margin-top: 2.5rem;
}

.mt-60 {
    margin-top: 3.75rem;
}

.pt-30 {
    padding-top: 1.875rem;
}

.pt-40 {
    padding-top: 2.5rem;
}

.pt-60 {
    padding-top: 3.75rem;
}

.pt-120 {
    padding-top: 7.5rem;
}

@media (max-width: 1399px) {
    .pt-120 {
        padding-top: 6.25rem;
    }
}

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 5rem;
    }
}

@media (max-width: 767px) {
    .pt-120 {
        padding-top: 4.375rem;
    }
}

@media (max-width: 575px) {
    .pt-120 {
        padding-top: 3.125rem;
    }
}

.pb-120 {
    padding-bottom: 7.5rem;
}

@media (max-width: 1399px) {
    .pb-120 {
        padding-bottom: 6.25rem;
    }
}

@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 5rem;
    }
}

@media (max-width: 767px) {
    .pb-120 {
        padding-bottom: 4.375rem;
    }
}

@media (max-width: 575px) {
    .pb-120 {
        padding-bottom: 3.125rem;
    }
}

.pb-100 {
    padding-bottom: 6.25rem;
}

@media (max-width: 1399px) {
    .pb-100 {
        padding-bottom: 5rem;
    }
}

@media (max-width: 991px) {
    .pb-100 {
        padding-bottom: 4.375rem;
    }
}

@media (max-width: 767px) {
    .pb-100 {
        padding-bottom: 3.75rem;
    }
}

@media (max-width: 575px) {
    .pb-100 {
        padding-bottom: 3.125rem;
    }
}
/* === spacing css end === */
/* === extend css start === */
.custom-checkbox label::before, body {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card {
    background-color: #fff;
}

[data-label]::before {
    color: #082032;
}

.btn-close {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-close {
    justify-content: center;
}

.btn-close {
    align-items: center;
}

.card {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* === extend css end === */
/* === list-style css start === */
.check-list li + li {
    margin-top: 1.25rem;
}

.check-list li {
    position: relative;
    padding-left: 1.875rem;
}

.check-list li::before {
    position: absolute;
    top: 0.3125rem;
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f058";
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1;
}

.arrow-list li + li {
    margin-top: 1.25rem;
}

.arrow-list li {
    position: relative;
    padding-left: 1.875rem;
}

.arrow-list li::before {
    position: absolute;
    top: 0.3125rem;
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f101";
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1;
}

.line-dot-list {
    position: relative;
    margin-top: -0.625rem;
}

.line-dot-list li {
    position: relative;
    padding-left: 1.875rem;
    margin-block: 0.625rem;
}

.line-dot-list li:last-child::after {
    display: none;
}

.line-dot-list li::before {
    position: absolute;
    content: "";
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.line-dot-list li::after {
    position: absolute;
    content: "";
    top: 11px;
    left: 3px;
    width: 1px;
    height: 145%;
    background-color: var(--border-color);
    z-index: -1;
}

/* === list-style css end === */
/* === animation css start === */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
/* === animation css end === */
/* === typography css start === */
h1 {
    font-size: 2.625rem;
}

@media (max-width: 1399px) {
    h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 1199px) {
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.75rem;
    }
}

h2 {
    font-size: 1.875rem;
}

@media (max-width: 991px) {
    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 1.5rem;
    }
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

h5 {
    font-size: 0.875rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--body-font);
    color: var(--dark-900);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-family: var(--body-font);
    color: var(--dark-900);
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1.4;
    word-break: break-word;
}

p,
li,
span {
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    font-family: var(--body-font);
    font-weight: 400;
}

a:hover {
    text-decoration: none;
}

strong {
    font-weight: 500;
}

.fs-18px {
    font-size: 1.125rem !important;
}

.fs-16px {
    font-size: 1rem !important;
}

.fs-15px {
    font-size: 0.9375rem !important;
}

.fs-14px {
    font-size: 0.875rem !important;
}

.fs-12px {
    font-size: 0.75rem !important;
}

.h-font {
    font-family: var(--display-font) !important;
}

.p-font {
    font-family: var(--body-font) !important;
}

.max-18ch {
    max-width: 18ch;
}

.max-20ch {
    max-width: 20ch;
}

.max-55ch {
    max-width: 55ch;
}

.max-65ch {
    max-width: 65ch;
}

/* === typography css end === */
/* === preloader css start === */
body.loaded .preloader-holder {
    opacity: 0;
    visibility: hidden;
}

.preloader-holder {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.preloader {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: rotatePreloader 2s infinite ease-in;
}

.preloader div {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.preloader div:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0%;
    width: 10%;
    height: 10%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: var(--primary);
}

.preloader div:nth-child(1) {
    transform: rotateZ(0deg);
    animation: rotateCircle1 2s infinite linear;
    z-index: 9;
}

.preloader div:nth-child(2) {
    transform: rotateZ(36deg);
    animation: rotateCircle2 2s infinite linear;
    z-index: 8;
}

.preloader div:nth-child(3) {
    transform: rotateZ(72deg);
    animation: rotateCircle3 2s infinite linear;
    z-index: 7;
}

.preloader div:nth-child(4) {
    transform: rotateZ(108deg);
    animation: rotateCircle4 2s infinite linear;
    z-index: 6;
}

.preloader div:nth-child(5) {
    transform: rotateZ(144deg);
    animation: rotateCircle5 2s infinite linear;
    z-index: 5;
}

.preloader div:nth-child(6) {
    transform: rotateZ(180deg);
    animation: rotateCircle6 2s infinite linear;
    z-index: 4;
}

.preloader div:nth-child(7) {
    transform: rotateZ(216deg);
    animation: rotateCircle7 2s infinite linear;
    z-index: 3;
}

.preloader div:nth-child(8) {
    transform: rotateZ(252deg);
    animation: rotateCircle8 2s infinite linear;
    z-index: 2;
}

.preloader div:nth-child(9) {
    transform: rotateZ(288deg);
    animation: rotateCircle9 2s infinite linear;
    z-index: 1;
}

.preloader div:nth-child(10) {
    transform: rotateZ(324deg);
    animation: rotateCircle10 2s infinite linear;
    z-index: 0;
}

@keyframes rotatePreloader {
    0% {
        transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
    }
}

@keyframes rotateCircle1 {
    0% {
        opacity: 0;
    }

    0% {
        opacity: 1;
        transform: rotateZ(36deg);
    }

    7% {
        transform: rotateZ(0deg);
    }

    57% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle2 {
    5% {
        opacity: 0;
    }

    5.0001% {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    12% {
        transform: rotateZ(-36deg);
    }

    62% {
        transform: rotateZ(-36deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle3 {
    10% {
        opacity: 0;
    }

    10.0002% {
        opacity: 1;
        transform: rotateZ(-36deg);
    }

    17% {
        transform: rotateZ(-72deg);
    }

    67% {
        transform: rotateZ(-72deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle4 {
    15% {
        opacity: 0;
    }

    15.0003% {
        opacity: 1;
        transform: rotateZ(-72deg);
    }

    22% {
        transform: rotateZ(-108deg);
    }

    72% {
        transform: rotateZ(-108deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle5 {
    20% {
        opacity: 0;
    }

    20.0004% {
        opacity: 1;
        transform: rotateZ(-108deg);
    }

    27% {
        transform: rotateZ(-144deg);
    }

    77% {
        transform: rotateZ(-144deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle6 {
    25% {
        opacity: 0;
    }

    25.0005% {
        opacity: 1;
        transform: rotateZ(-144deg);
    }

    32% {
        transform: rotateZ(-180deg);
    }

    82% {
        transform: rotateZ(-180deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle7 {
    30% {
        opacity: 0;
    }

    30.0006% {
        opacity: 1;
        transform: rotateZ(-180deg);
    }

    37% {
        transform: rotateZ(-216deg);
    }

    87% {
        transform: rotateZ(-216deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle8 {
    35% {
        opacity: 0;
    }

    35.0007% {
        opacity: 1;
        transform: rotateZ(-216deg);
    }

    42% {
        transform: rotateZ(-252deg);
    }

    92% {
        transform: rotateZ(-252deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle9 {
    40% {
        opacity: 0;
    }

    40.0008% {
        opacity: 1;
        transform: rotateZ(-252deg);
    }

    47% {
        transform: rotateZ(-288deg);
    }

    97% {
        transform: rotateZ(-288deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

@keyframes rotateCircle10 {
    45% {
        opacity: 0;
    }

    45.0009% {
        opacity: 1;
        transform: rotateZ(-288deg);
    }

    52% {
        transform: rotateZ(-324deg);
    }

    102% {
        transform: rotateZ(-324deg);
    }

    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    z-index: 9;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    display: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    background: var(--primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* === preloader css end === */
/* === buttons css start === */
button:focus {
    outline: none;
}

.btn {
    padding: 1.0625rem 1.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 1399px) {
    .btn {
        padding: 0.9375rem 1.875rem;
    }
}

@media (max-width: 1199px) {
    .btn {
        padding: 0.75rem 1.875rem;
    }
}

@media (max-width: 575px) {
    .btn {
        padding: 0.625rem 1.5625rem;
    }
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn.btn-four {
    padding: 0.9375rem 2.5rem;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    border-color: var(--secondary)!important;
    background-color: var(--secondary)!important;
    color: var(--light-000)!important;
}

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

.btn-dark i {
    color: var(--primary);
}

.btn-dark:hover, .btn-dark:focus, .btn-dark:active {
    border-color: var(--primary);
    background-color: var(--primary);
}

.btn-dark:hover i, .btn-dark:focus i, .btn-dark:active i {
    color: #fff;
}

.btn-outline-white-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: #fff;
}

.btn-outline-white-primary:hover, .btn-outline-white-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-outline-primary {
    color: var(--dark-900);
    border-color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-secondary-primary {
    color: var(--light-000);
    border-color: var(--border-color);
}

.btn-outline-secondary-primary:hover, .btn-outline-secondary-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

[class*=btn].btn-md {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

[class*=btn].btn-sm {
    padding: 0.375rem 0.625rem;
    font-size: 0.875rem;
}

/* === buttons css end === */
/* === badge css start === */
.badge-primary {
    background-color: rgba(250, 125, 9, 0.15);
    border: 1px solid #FA7D09;
    color: #FA7D09;
}

.badge-secondary {
    background-color: rgba(134, 142, 150, 0.15);
    border: 1px solid #868e96;
    color: #868e96;
}

.badge-success {
    background-color: rgba(40, 199, 111, 0.15);
    border: 1px solid #28c76f;
    color: #28c76f;
}

.badge-danger {
    background-color: rgba(234, 84, 85, 0.15);
    border: 1px solid #ea5455;
    color: #ea5455;
}

.badge-warning {
    background-color: rgba(255, 159, 67, 0.15);
    border: 1px solid #ff9f43;
    color: #ff9f43;
}

.badge-info {
    background-color: rgba(30, 159, 242, 0.15);
    border: 1px solid #1e9ff2;
    color: #1e9ff2;
}

.badge-light {
    background-color: rgba(188, 199, 218, 0.15);
    border: 1px solid #bcc7da;
    color: #bcc7da;
}

.badge-dark {
    background-color: rgba(8, 32, 50, 0.15);
    border: 1px solid #082032;
    color: #082032;
}

.badge-base {
    background-color: rgba(250, 125, 9, 0.15);
    border: 1px solid #FA7D09;
    color: #FA7D09;
}

/* === badge css end === */
/* === table css start === */
.table thead {
    background-color: #f6f9fc;
}

.table thead th {
    border-top: 1px solid #e9ecef !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 0.75rem 1.25rem;
    color: #7991ad;
    font-size: 0.875rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    vertical-align: middle;
}

.table thead th:first-child {
    text-align: left;
}

.table thead th:last-child {
    text-align: right;
}

.table tbody td {
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 15px 20px;
    color: #666666;
    text-align: center;
    vertical-align: middle;
}

.table tbody td:first-child {
    text-align: left;
}

.table tbody td:last-child {
    text-align: right;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

[data-label] {
    position: relative;
}

[data-label]::before {
    position: absolute;
    content: attr(data-label);
    font-weight: 700;
    top: 0;
    left: 0;
    padding: 0.8125rem 0.9375rem;
    display: none;
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody tr:nth-child(odd) {
        background-color: whitesmoke;
    }

    .table-responsive--md tbody tr:last-child td {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .table-responsive--md tbody tr td {
        padding-right: 15px;
    }

    .table-responsive--md tbody tr td:last-child {
        padding-right: 15px;
    }

    .table-responsive--md tr th,
  .table-responsive--md tr td {
        display: block;
        padding-left: 45% !important;
        text-align: right !important;
    }

    .table-responsive--md tr th:first-child,
  .table-responsive--md tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--md [data-label]::before {
        display: block;
    }
}

@media (max-width: 767px) {
    .table-responsive--sm thead {
        display: none;
    }

    .table-responsive--sm tbody tr:nth-child(odd) {
        background-color: f7f7f7;
    }

    .table-responsive--sm tbody tr td {
        padding-right: 15px;
    }

    .table-responsive--sm tbody tr td:last-child {
        padding-right: 15px;
    }

    .table-responsive--sm tr th,
  .table-responsive--sm tr td {
        display: block;
        padding-left: 45% !important;
        text-align: right !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .table-responsive--sm tr th:first-child,
  .table-responsive--sm tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--sm [data-label]::before {
        display: block;
    }
}
/* === table css end === */
/* === form css start === */
.form-control {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    width: 100%;
    background-color: transparent;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    height: 3.625rem;
}

.form-control::-webkit-input-placeholder {
    color: var(--dark-800);
}

.form-control::-moz-placeholder {
    color: var(--dark-800);
}

.form-control:-ms-input-placeholder {
    color: var(--dark-800);
}

.form-control:-moz-placeholder {
    color: var(--dark-800);
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--primary) !important;
    box-shadow: 0 0 5px rgba(var(--primary), 0.35);
    color: #000;
}

.form-control[readonly] {
    background-color: #fafaf7;
}

.form-control.form-control-md {
    height: 45px;
}

.form-control.form-control-sm {
    height: 35px;
}

.form-select {
    padding: 1rem 1.25rem;
    width: 100%;
    border: 1px solid form;
    cursor: pointer;
    background-color: transparent;
    height: 3.625rem;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    color: var(--dark-800);
}

.form-select:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: none;
}

.form-select.select-sm {
    height: 2.1875rem;
    font-size: 0.875rem;
    padding: 0.3125rem;
}

textarea {
    min-height: 8.125rem !important;
    resize: none;
    width: 100%;
}

label {
    color: #000;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.input-group > .form-control,
.input-group > .select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group select {
    background-color: transparent;
    border: none;
}

.custom-radio {
    position: relative;
    padding-left: 0;
}

.custom-radio input[type=radio] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom-radio input[type=radio]:checked ~ label::before {
    border-width: 2px;
    border-color: #FA7D09;
}

.custom-radio input[type=radio]:checked ~ label::after {
    opacity: 1;
}

.custom-radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.875rem;
    font-weight: 400;
}

.custom-radio label::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #888888;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-radio label::after {
    position: absolute;
    content: "";
    top: 8px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #FA7D09;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-checkbox {
    padding-left: 1.5625rem;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox input:checked ~ label::before {
    content: "\f14a";
    color: #FA7D09;
}

.custom-checkbox label {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.custom-checkbox label::before {
    position: absolute;
    content: "\f04d";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 3px;
    left: -1.5625rem;
    font-size: 1.25rem;
    line-height: 1;
}

.form-check .form-check-input {
    border-width: 6px;
    width: 22px;
    height: 22px;
}

.form-check .form-check-input:checked {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: var(--secondary-two);
    background-image: none;
}

.form-check .form-check-label {
    margin-bottom: 0;
    padding-left: 8px;
}

/* === form css end === */
/* === card css start === */
.card {
    box-shadow: 0 3px 15px rgba(136, 152, 170, 0.1490196078);
    overflow: hidden;
}

.card .card-header {
    background-color: #fff;
    padding: 0.9375rem 1.25rem;
    border-color: #dadce0;
}

.card .card-body {
    padding: 1.25rem;
}

@media (max-width: 575px) {
    .card .card-body {
        padding: 0.9375rem;
    }
}
/* === card css end === */
/* === modal css start === */
.modal {
    z-index: 99;
}

.modal-open {
    overflow: hidden;
    overflow-y: auto;
    padding-right: 0 !important;
}

.btn-close {
    width: 18px;
    height: 18px;
    background-color: #ea5455;
    opacity: 1;
}

.btn-close:hover {
    opacity: 1;
}

.btn-close:focus {
    box-shadow: none;
}

.modal.fade .modal-dialog {
    transform: scale(0.85, 0.85) translate(0);
}

.modal.show .modal-dialog {
    transform: scale(1, 1) translate(0);
}

/* === modal css end === */
/* === accordion css start === */
.accordion-item {
    box-shadow: 0 4px 20px -1px rgba(19, 16, 34, 0.05);
    border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    -o-border-radius: 30px !important;
    border: none;
    --bs-accordion-btn-icon-transform: rotate(90deg);
}

.accordion-item + .accordion-item {
    margin-top: 1.875rem;
}

.accordion-item .accordion-header .accordion-button {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-size: 1.25rem;
    padding: 0.9375rem 1.875rem;
}

@media (max-width: 1199px) {
    .accordion-item .accordion-header .accordion-button {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .accordion-item .accordion-header .accordion-button {
        font-size: 1rem;
    }
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px 30px 0 0;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    -ms-border-radius: 30px 30px 0 0;
    -o-border-radius: 30px 30px 0 0;
}

.accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
}

.accordion-item .accordion-header .accordion-button::after {
    background-image: none;
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.accordion-item .accordion-body {
    padding: 1.25rem 1.875rem;
}

.accordion.style-pill .accordion-item {
    box-shadow: none;
    background-color: transparent;
    overflow: hidden;
}

.accordion.style-pill .accordion-item .accordion-header .accordion-button {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 0.625rem 0.625rem 0.625rem 1.875rem;
}

@media (max-width: 1399px) {
    .accordion.style-pill .accordion-item .accordion-header .accordion-button {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .accordion.style-pill .accordion-item .accordion-header .accordion-button {
        font-size: 1rem;
        padding-inline-start: 1.25rem;
    }
}

.accordion.style-pill .accordion-item .accordion-header .accordion-button::after {
    content: "+";
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
}

@media (max-width: 575px) {
    .accordion.style-pill .accordion-item .accordion-header .accordion-button::after {
        width: 1.875rem;
        height: 1.875rem;
        font-size: 1rem;
    }
}

.accordion.style-pill .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--dark-900);
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    -ms-border-radius: 30px 30px 0 0;
    -o-border-radius: 30px 30px 0 0;
    border-color: transparent;
}

.accordion.style-pill .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(0deg);
    background-color: var(--primary);
    color: #fff;
}

.accordion.style-pill .accordion-item .accordion-collapse {
    background-color: #fff;
}

.accordion.style-pill .accordion-item .accordion-body {
    padding-top: 0.625rem;
}

.accordion.style-border .accordion-item + .accordion-item {
    margin-top: 0.9375rem;
}

.accordion.style-border .accordion-item {
    background-color: transparent;
    box-shadow: none;
}

.accordion.style-border .accordion-item .accordion-header .accordion-button {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--display-font);
    font-weight: 500;
    font-size: 1.375rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding-inline: 0;
}

@media (max-width: 575px) {
    .accordion.style-border .accordion-item .accordion-header .accordion-button {
        font-size: 1.125rem;
    }
}

.accordion.style-border .accordion-item .accordion-header .accordion-button::after {
    font-size: 1rem;
}

.accordion.style-border .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--dark);
}

.accordion.style-border .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    color: var(--primary);
}

.accordion.style-border .accordion-item .accordion-body {
    padding-inline: 0;
    padding-bottom: 0;
    color: #696969;
}

.accordion.style-border .accordion-item .accordion-body p {
    color: #696969;
}

/* === accordion css end === */
/* === nav-tabs css start === */
.basic-tabs {
    border-bottom: none;
}

.basic-tabs .nav-item .nav-link {
    border: none;
    padding: 0.625rem 1.25rem;
    font-weight: 800;
    color: var(--dark-900);
    font-size: 1.125rem;
    background-color: transparent;
}

.basic-tabs .nav-item .nav-link.active {
    color: var(--primary);
}

.pill-tabs-style {
    gap: 1.25rem 1.125rem;
    border-bottom: none;
}

.pill-tabs-style .nav-item .nav-link {
    position: relative;
    background-color: #EBEBEB;
    padding: 0.5rem 2.1875rem;
    font-size: 1.125rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: #1A1D25;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pill-tabs-style .nav-item .nav-link::before {
    position: absolute;
    content: "";
    bottom: -7px;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    background-color: var(--primary);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pill-tabs-style .nav-item .nav-link.active {
    background-color: var(--primary);
    color: #fff;
}

.pill-tabs-style .nav-item .nav-link.active::before {
    opacity: 2;
}

/* === nav-tabs css end === */
/* === pagination css start === */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
    margin-top: 5rem;
}

@media (max-width: 991px) {
    .pagination {
        margin-top: 3.125rem;
    }
}

.pagination li {
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: var(--dark-900);
    font-weight: 700;
    font-size: 1.875rem;
}

@media (max-width: 991px) {
    .pagination li {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

.pagination li.active {
    border-color: var(--primary);
}

.pagination li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* === pagination css end === */
/* === header css start === */
.header-one,
.header-two,
.header-three,
.header-four {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.site-header.site-header-fixed {
    position: fixed;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.site-header.site-header-fixed .header-top {
    display: none;
}

.header-one {
    display: flex;
    flex-wrap: wrap;
}

.header-one .header-right {
    flex-grow: 1;
}

.header-one .header-top {
    padding-inline: 3.75rem;
}

@media (max-width: 1399px) {
    .header-one .header-top {
        padding-inline: 1.875rem;
    }
}

.header-one .header-bottom {
    padding: 1.25rem 3.75rem;
}

@media (max-width: 1399px) {
    .header-one .header-bottom {
        padding: 0.625rem 1.875rem;
    }
}

@media (max-width: 575px) {
    .header-one .header-bottom {
        padding: 0.3125rem 0.9375rem;
    }
}

.header-two .header-call-btn {
    margin-inline-start: 6.25rem;
}

@media (max-width: 1399px) {
    .header-two .header-call-btn {
        margin-inline-start: 2.5rem;
    }
}

@media (max-width: 1199px) {
    .header-two .header-call-btn {
        padding-inline-start: 3.75rem;
    }
}

@media (max-width: 575px) {
    .header-two .header-call-btn {
        padding-inline-start: 0;
        margin-inline-start: 0.9375rem;
    }
}

@media (max-width: 1199px) {
    .header-two .header-call-btn i {
        border-color: var(--border-color) !important;
        color: var(--dark-900) !important;
        width: 3.125rem;
        height: 3.125rem;
        margin-top: -1.5625rem;
    }
}

@media (max-width: 575px) {
    .header-two .header-call-btn i {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 1199px) {
    .header-two .header-call-btn span {
        color: var(--dark-900) !important;
    }
}

@media (max-width: 575px) {
    .header-two .header-call-btn span {
        display: none;
    }
}

.header-two .header-bottom {
    background-color: var(--primary);
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .header-two .header-bottom {
        background-color: #fff;
    }
}

.header-two .header-bottom::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 33vw;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
}

@media (max-width: 1550px) {
    .header-two .header-bottom::before {
        width: 30vw;
    }
}

@media (max-width: 1399px) {
    .header-two .header-bottom::before {
        width: 25vw;
    }
}

.header-two .header-menu > li.has-dropmenu::after {
    color: #fff;
}

.header-two .header-menu > li > a {
    color: #fff;
}

.header-three .header-top {
    background-color: var(--primary);
}

.header-three .header-bottom {
    background-color: var(--light-000);
}

.header-three .header-info li {
    color: #fff;
}

.header-three .header-info li i {
    color: #fff;
}

.header-three .header-social li span {
    color: #fff;
}

.header-three .header-social li a {
    color: var(--light-000);
}

.header-three .header-info li a:hover {
    color: var(--light-200);
}

.header-three .header-social li a:hover {
    color: var(--light-200);
}

.header-three .header-menu > li.has-dropmenu::after {
    color: var(--dark);
}

.header-three .header-menu > li > a {
    color: var(--dark);
}

.header-three .header-menu .active a {
    color: var(--secondary);
}

.header-three .header-bottom-action {
    margin-inline-start: 3.75rem;
}

@media (max-width: 1199px) {
    .header-three .header-bottom-action {
        margin-inline-start: 2.5rem;
    }
}

@media (max-width: 767px) {
    .header-three .header-bottom-action {
        margin-inline-start: 1.25rem;
    }
}

@media (max-width: 575px) {
    .header-three .header-bottom-action .header-search-btn {
        padding-inline-end: 0;
    }
}

.header-three .header-search-btn,
.header-three .btn-outline-primary,
.header-three .mobile-menu-open-btn {
    color: var(--secondary);
}


.header-three .btn-outline-primary:hover {
    color: var(--light-000);
}

.inline-menu {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3125rem 1.25rem;
}

.inline-menu li a {
    color: #EEEEEE;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.inline-menu li a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.header-four.site-header-fixed {
    background-color: var(--dark);
}

.header-four .header-top {
    background-color: #020101;
    padding-inline: 3.4375rem;
}

@media (max-width: 1399px) {
    .header-four .header-top {
        padding-inline: 0;
    }
}

.header-four .header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3125rem 1.25rem;
}

.header-four .header-info a, .header-four .header-info p {
    color: #EEEEEE;
    font-size: 1rem;
}

.header-four .header-social li a {
    color: #696969;
    font-size: 1rem;
}

.header-four .header-social li a:hover {
    color: var(--primary);
}

.header-four .header-bottom {
    padding: 0 3.4375rem;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .header-four .header-bottom {
        padding: 0;
    }
}

.header-four .header-bottom::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.header-four .header-bottom::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 70px;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
}

@media (max-width: 1399px) {
    .header-four .header-bottom::after {
        width: 15px;
    }
}

@media (max-width: 1199px) {
    .header-four .header-bottom::after {
        display: none;
    }
}

.header-four .header-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-four .logo {
    width: 360px;
}

@media (max-width: 1650px) {
    .header-four .logo {
        width: 200px;
    }
}

@media (max-width: 1399px) {
    .header-four .logo {
        width: 180px;
        padding-right: 20px;
    }
}

.header-four .header-bottom-right {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

.header-four .header-menu-part {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    padding-inline-start: 1.75rem;
    padding-inline-end: 2.5rem;
}

@media (max-width: 1399px) {
    .header-four .header-menu-part {
        padding-inline-start: 0.625rem;
        padding-inline-end: 0.9375rem;
    }
}

@media (max-width: 1199px) {
    .header-four .header-menu-part {
        padding: 0;
        background-color: transparent;
    }
}

.header-four .header-search-btn {
    width: 95px;
    text-align: center;
    color: #fff;
    font-size: 1.125rem;
}

@media (max-width: 1650px) {
    .header-four .header-search-btn {
        width: 75px;
    }
}

@media (max-width: 1199px) {
    .header-four .header-search-btn {
        padding: 0.625rem;
        width: 60px;
    }
}

.header-four .header-bottom-menu-btn {
    padding: 0.625rem 0 0.625rem 3.125rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.header-four .header-bottom-menu-btn i {
    font-size: 1.375rem;
}

@media (max-width: 1650px) {
    .header-four .header-bottom-menu-btn {
        padding: 0.625rem 0 0.625rem 1.875rem;
    }
}

@media (max-width: 1399px) {
    .header-four .header-bottom-menu-btn {
        padding: 0.625rem 0.3125rem 0.625rem 1.25rem;
    }
}

@media (max-width: 1199px) {
    .header-four .header-bottom-menu-btn {
        padding: 0.9375rem;
    }
}

.header-four .header-bottom-call-btn {
    font-size: 1.125rem;
    color: #0A1222;
    padding: 0.625rem;
}

.header-four .header-bottom-call-btn i {
    color: var(--primary);
}

@media (max-width: 1199px) {
    .header-four .header-bottom-call-btn {
        display: none;
    }
}

.header-four .header-menu {
    margin: 0;
}

.header-four .header-menu > li.has-dropmenu::after {
    top: 2.25rem;
    right: 0.3125rem;
    font-size: 0.75rem;
}

@media (max-width: 1650px) {
    .header-four .header-menu > li.has-dropmenu::after {
        top: 2.1875rem;
        right: 0;
    }
}

.header-four .header-menu > li > a {
    padding: 2rem 1.375rem;
    color: #020101;
}

@media (max-width: 1650px) {
    .header-four .header-menu > li > a {
        padding: 1.875rem 0.9375rem;
    }
}

.bg-header-logo {
    width: 315px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1399px) {
    .bg-header-logo {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .bg-header-logo {
        width: 200px;
    }
}

@media (max-width: 575px) {
    .bg-header-logo {
        width: 120px;
    }
}

.bg-header-logo img {
    max-width: 280px;
}

@media (max-width: 1399px) {
    .bg-header-logo img {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .bg-header-logo img {
        max-width: 170px;
    }
}

@media (max-width: 575px) {
    .bg-header-logo img {
        max-width: 100px;
    }
}

.header-top {
    background-color: #fff;
    padding: 0.8125rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    align-items: center;
    justify-content: space-between;
}

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

.header-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.875rem;
}

.header-info li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--dark-900);
}

.header-info li i {
    color: var(--primary);
}

.header-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9375rem;
}

.header-social li {
    font-size: 0.875rem;
    color: var(--dark-900);
}

.header-social li a:hover {
    color: var(--primary);
}

.header-bottom {
    background-color: var(--light-100);
    padding: 0.25rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.875rem;
}

@media (max-width: 1199px) {
    .header-bottom {
        padding: 0.625rem 0;
    }
}

.header-menu {
    display: flex;
    flex-wrap: wrap;
    margin: -0.625rem -1.25rem;
}

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

.header-menu li.has-dropmenu {
    position: relative;
}

.header-menu li.has-dropmenu::after {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    top: 12px;
    right: 2px;
    font-size: 13px;
}

.header-menu li.has-dropmenu:hover .dropmenu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.header-menu li a {
    color: var(--dark-900);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
}

.header-menu .dropmenu {
    position: absolute;
    top: 110%;
    left: 0;
    background-color: #fff;
    width: 261px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header-menu .dropmenu li {
    border-bottom: 1px solid #e5e5e5;
}

.header-menu .dropmenu li a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--dark-800);
    line-height: 13px;
}

.header-menu .dropmenu li a:hover {
    color: var(--primary);
}

.header-bottom-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

@media (max-width: 1199px) {
    .header-bottom-action {
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .header-bottom-action {
        gap: 0rem;
    }
}

.header-bottom-action .btn {
    padding: 0.875rem 1.5625rem;
}

@media (max-width: 575px) {
    .header-bottom-action .btn {
        display: none;
    }
}

.header-search-btn {
    color: var(--dark-900);
    font-size: 1.125rem;
    padding: 0.9375rem;
}

.header-call-btn {
    position: relative;
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    min-height: 3.75rem;
    padding-inline-start: 4.6875rem;
}

.header-call-btn:hover i {
    background-color: var(--primary);
    color: #fff;
}

.header-call-btn i {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1.875rem;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.header-call-btn span {
    font-size: 0.875rem;
    display: block;
    color: #fff;
}

.header-call-btn span.header-call-btn-number {
    font-size: 1.125rem;
    font-weight: 500;
}

.header-call-btn.style-white:hover i {
    background-color: #fff;
    color: var(--primary);
}

.header-call-btn.style-white i {
    border-color: #fff;
    color: #fff;
}

.header-call-btn.style-white span {
    color: #fff;
}

.mobile-menu-open-btn {
    color: var(--dark-900);
    font-weight: 500;
    padding: 0.625rem 0;
    display: none;
}

@media (max-width: 1199px) {
    .mobile-menu-open-btn {
        display: inline-flex;
        gap: 6px;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .mobile-menu-open-btn span {
        display: none;
    }
}

.header-search-main {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 0;
    background-color: var(--light-100);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 9;
}

.header-search-main.active {
    height: 100vh;
    opacity: 1;
    visibility: visible;
}

.header-search-main .header-search-close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2.1875rem;
    height: 2.1875rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-main .header-search-close-btn:hover {
    color: var(--primary);
}

@media (max-width: 575px) {
    .header-search-main .header-search-close-btn {
        right: 30px;
    }
}

.header-search-main .header-search-form {
    display: flex;
    width: 500px;
}

@media (max-width: 575px) {
    .header-search-main .header-search-form {
        width: 300px;
    }
}

.header-search-main .header-search-form input {
    height: 52px;
    border: 1px solid var(--border-color);
    border-right: none;
    flex-grow: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0.625rem 1.25rem;
}

.header-search-main .header-search-form input:focus {
    border-color: var(--primary);
}

.header-search-main .header-search-form button {
    width: 50px;
    height: 52px;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-sidebar {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: -350px;
    width: 320px;
    height: 100vh;
    background-color: var(--light-000);
    display: flex;
    flex-flow: column;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-top: 75px;
    padding-bottom: 50px;
    overflow-y: auto;
    z-index: 9;
}

@media (max-width: 575px) {
    .mobile-menu-sidebar {
        inset-inline-end: -105%;
        width: 100%;
    }
}

.mobile-menu-sidebar.active {
    inset-inline-end: 0;
}

.mobile-menu-sidebar .logo-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 0.3125rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-000);
}

.mobile-menu-sidebar .logo-area img {
    max-width: 180px;
}

.mobile-menu-sidebar .logo-area .mobile-menu-close-btn {
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.mobile-menu-sidebar .mobile-menu-bottom {
    padding: 1.25rem;
    margin-top: auto;
}

.mobile-menu-sidebar .header-info {
    display: flex;
    flex-flow: column;
    gap: 0.625rem;
    align-items: flex-start;
}

.mobile-menu-sidebar .header-info li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--dark);
}

.mobile-menu-sidebar .header-info li i {
    color: var(--primary);
}

.mobile-menu-sidebar .header-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9375rem;
    margin-top: 0.9375rem;
}

.mobile-menu-sidebar .header-social li {
    font-size: 0.875rem;
    color: var(--light-100);
}

.mobile-menu-sidebar .header-social li a:hover {
    color: var(--primary);
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li a {
    padding: 0.5rem 1.25rem;
    color: var(--dark);
    position: relative;
    display: block;
}

.mobile-menu li a .dropmenu-arrow {
    position: absolute;
    width: 40px;
    height: 100%;
    inset-inline-end: 0;
    inset-block-start: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li .dropmenu {
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.3125rem 0.625rem 0.3125rem 1.25rem;
}

.mobile-menu li .dropmenu li {
    border-bottom: none;
}

.mobile-menu li .dropmenu li a {
    font-size: 0.875rem;
}

/* === header css end === */
/* === footer css start === */
.footer-top {
    padding: 5rem 0;
    background-color: var(--dark-900);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 575px) {
    .footer-top {
        padding: 3.75rem 0;
    }
}

.footer-top .footer-logo {
    margin-bottom: 1.875rem;
}

.footer-top .footer-info-list {
    margin-top: 1.25rem;
}

.footer-top .footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    max-inline-size: initial;
    max-block-size: initial;
    opacity: 0.4;
    z-index: -1;
}

.footer-info-list li + li {
    margin-top: 1.25rem;
}

.footer-info-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-info-list li:hover .icon {
    background-color: var(--primary);
}

.footer-info-list li .icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-info-list li p {
    color: var(--light-200);
    width: calc(100% - 40px);
    padding-inline-start: 1.25rem;
}

.footer-info-list li p a {
    color: var(--light-200);
}

.dark-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.dark-social-list li a {
    width: 1.875rem;
    height: 1.875rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dark-social-list li a:hover {
    background-color: var(--primary);
}

.footer-contact-list li + li {
    margin-top: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    flex-wrap: wrap;
}

.footer-contact-list .icon {
    width: 1.875rem;
    height: 1.875rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-contact-list .caption {
    width: calc(100% - 30px);
    padding-inline-start: 0.625rem;
    color: #fff;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.footer-contact-list p:not(.caption) {
    width: 100%;
    color: #fff;
    margin-top: 0.3125rem;
}

.footer-img-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.footer-img-post-list li {
    width: 5rem;
    height: 5rem;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.footer-img-post-list li a {
    display: block;
}

.footer-img-post-list li a:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.footer-img-post-list li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-section-two .footer-top {
    padding-top: 215px;
}

.subscription-wrapper {
    position: relative;
    z-index: 2;
    padding: 4.375rem 3.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -135px;
}

@media (max-width: 1199px) {
    .subscription-wrapper {
        padding: 3.125rem 2.5rem;
    }
}

@media (max-width: 575px) {
    .subscription-wrapper {
        padding: 2.5rem 1.25rem;
    }
}

.subscription-wrapper .section-top-title-two,
.subscription-wrapper .section-title {
    color: #fff;
}

.subscription-wrapper .section-title span {
    display: block;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

.subscription-wrapper .subscribe-form {
    width: 500px;
}

.subscription-wrapper .subscribe-form input:focus {
    border-color: #fff;
}

.subscription-wrapper .subscribe-form button {
    background-color: #fff;
    color: var(--dark-900);
}

.subscription-wrapper-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    z-index: -1;
}

.footer-bottom {
    padding: 1.875rem 0;
    background-color: var(--dark-700);
}

.footer-logo {
    max-height: 95px;
}

.footer-title {
    color: #fff;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .footer-title {
        margin-bottom: 1.5625rem;
    }
}

.footer-menu li + li {
    margin-top: 0.9375rem;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-200);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-menu li a:hover {
    color: var(--dark);
}

.footer-menu li a i {
    color: #fff;
}

.footer-post-list .footer-single-post + .footer-single-post {
    margin-top: 1.5625rem;
}

.footer-post-list .footer-single-post {
    display: flex;
    flex-wrap: wrap;
}

.footer-post-list .footer-single-post .thumb {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.footer-post-list .footer-single-post .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.footer-post-list .footer-single-post .content {
    width: calc(100% - 80px);
    padding-inline-start: 1.25rem;
}

.footer-post-list .footer-single-post .content .title a {
    font-size: 1rem;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-post-list .footer-single-post .content .title a:hover {
    color: var(--primary);
}

.footer-post-list .footer-single-post .content span {
    color: var(--light-200);
    font-size: 0.875rem;
}

.footer-inline-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -0.3125rem -0.9375rem;
}

.footer-inline-menu li a {
    color: var(--light-200);
    padding: 0.3125rem 0.9375rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-inline-menu li a:hover {
    color: var(--primary);
}

.footer-section-three {
    position: relative;
    z-index: 1;
    background-color: var(--secondary);
}

.footer-section-three-el {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer-section-three .footer-top {
    background-color: transparent;
    position: static;
}

.footer-section-three .footer-three-subscription-tile {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--display-font);
}

@media (max-width: 1399px) {
    .footer-section-three .footer-three-subscription-tile {
        font-size: 4.125rem;
    }
}

@media (max-width: 1199px) {
    .footer-section-three .footer-three-subscription-tile {
        font-size: 3.375rem;
    }
}

@media (max-width: 991px) {
    .footer-section-three .footer-three-subscription-tile {
        font-size: 2.625rem;
    }
}

@media (max-width: 575px) {
    .footer-section-three .footer-three-subscription-tile {
        font-size: 2rem;
    }
}

.footer-section-three .footer-three-subscription-tile span {
    display: block;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

.footer-section-three .subscribe-form input {
    background-color: #0F1133;
    border-color: rgba(255, 255, 255, 0.1);
    height: 66px;
}

.footer-section-three .subscribe-form button {
    width: 46px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-section-three .footer-bottom {
    background-color: transparent;
}

.footer-section-three .footer-bottom-area {
    background-color: #722325;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 1.875rem;
}

.footer-section-four p, .footer-section-four a {
    color: #DDDDDD;
}

.footer-section-four .footer-top {
    padding-top: 5rem;
    background-color: #000000;
    padding-bottom: 0;
}

@media (max-width: 1199px) {
    .footer-section-four .footer-top {
        padding-top: 3.75rem;
    }
}

.footer-section-four .footer-top-header {
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #232222;
}

.footer-section-four .footer-top-title {
    font-weight: 700;
    color: #fff;
    font-size: 8.75rem;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1399px) {
    .footer-section-four .footer-top-title {
        font-size: 6.25rem;
    }
}

@media (max-width: 1199px) {
    .footer-section-four .footer-top-title {
        font-size: 5rem;
    }
}

@media (max-width: 575px) {
    .footer-section-four .footer-top-title {
        font-size: 3.5rem;
    }
}

.footer-section-four .footer-top-title a {
    font-style: italic;
    color: var(--secondary-two);
    font-weight: 400;
}

.footer-section-four .footer-four-item {
    padding: 3.125rem 0;
    border-right: 1px solid #232222;
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 100%;
}

@media (max-width: 767px) {
    .footer-section-four .footer-four-item {
        padding: 1.875rem 0;
    }
}

.footer-section-four .footer-four-item.first-item {
    align-items: flex-start;
}

@media (max-width: 1199px) {
    .footer-section-four .footer-four-item.first-item {
        border-right: none;
        border-bottom: 1px solid #232222;
    }
}

.footer-section-four .footer-four-item.last-item {
    border-right: none;
    padding-inline: 3.125rem;
}

@media (max-width: 1199px) {
    .footer-section-four .footer-four-item.last-item {
        padding-inline: 1.875rem;
    }
}

@media (max-width: 767px) {
    .footer-section-four .footer-four-item.last-item {
        padding-inline: 0;
    }
}

.footer-section-four .footer-four-title {
    text-transform: uppercase;
    color: #fff;
    font-family: var(--display-font);
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
}

.footer-section-four .footer-four-menu-list li + li {
    margin-top: 0.625rem;
}

.footer-section-four .footer-four-menu-list li a {
    color: #DDDDDD;
}

.footer-section-four .footer-four-menu-list li a:hover {
    color: var(--secondary-two);
}

.footer-section-four .footer-four-subscribe input {
    background-color: #181818;
    height: 60px;
    border-radius: 99px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    min-width: 405px;
    max-width: 100%;
    color: #fff;
    padding: 0.625rem 1.5625rem;
}

@media (max-width: 575px) {
    .footer-section-four .footer-four-subscribe input {
        min-width: 100%;
    }
}

.footer-section-four .form-check {
    margin-top: 1.5625rem;
}

.footer-section-four .form-check-label {
    color: #DDDDDD;
    font-weight: 500;
}

.footer-section-four .footer-top-bottom {
    padding: 1.875rem 0;
    border-top: 1px solid #232222;
}

.footer-section-four .footer-bottom {
    background-color: transparent;
    padding: 1.5625rem 0;
}

.footer-section-four .footer-bottom .copy-right-text {
    color: var(--dark);
}

.social-list-light {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9375rem;
}

.social-list-light li a {
    width: 32px;
    height: 32px;
    border: 1px solid #E2E2E2;
    color: var(--dark);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.social-list-light li a:hover {
    background-color: var(--secondary-two);
    color: #fff;
    border-color: var(--secondary-two);
}

/* === footer css end === */
/* === inner-banner css start === */
.inner-banner {
    padding-top: 18.75rem;
    padding-bottom: 9.375rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .inner-banner {
        padding-top: 14.375rem;
        padding-bottom: 6.25rem;
    }
}

@media (max-width: 1199px) {
    .inner-banner {
        padding-top: 11.25rem;
    }
}

@media (max-width: 575px) {
    .inner-banner {
        padding-top: 7.5rem;
        padding-bottom: 3.75rem;
    }
}

.inner-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(3, 3, 3, 0.65);
    opacity: 0.8;
    z-index: -1;
}

.inner-banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    z-index: -2;
}

.inner-banner .title {
    font-family: var(--display-font);
    color: #fff;
    font-size: 2.625rem;
    font-weight: 700;
}

@media (max-width: 1399px) {
    .inner-banner .title {
        font-size: 2.25rem;
    }
}

@media (max-width: 1199px) {
    .inner-banner .title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .inner-banner .title {
        font-size: 1.75rem;
    }
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.25rem;
}

@media (max-width: 575px) {
    .page-breadcrumb {
        margin-top: 0.625rem;
    }
}

.page-breadcrumb li {
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
}

@media (max-width: 575px) {
    .page-breadcrumb li {
        font-size: 1rem;
    }
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.875rem;
    margin: 0 0.9375rem;
}

.page-breadcrumb li a {
    color: #fff;
}

.page-breadcrumb li a:hover {
    color: var(--secondary);
}

/* === inner-banner css end === */
/* === banner css start === */
.banner-section {
    padding-top: 18.75rem;
    padding-bottom: 10.9375rem;
    background-color: var(--dark-900);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 1750px) {
    .banner-section {
        padding-top: 15.625rem;
        padding-bottom: 7.5rem;
    }
}

@media (max-width: 992px) {
    .banner-section {
        padding-top: 9.375rem;
        padding-bottom: 4.375rem;
    }
}

@media (max-width: 991px) {
    .banner-section {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .banner-section {
        padding-top: 7.5rem;
    }
}

.banner-section .banner-top-title {
    color: #fff;
    text-transform: uppercase;
}

.banner-section .banner-title {
    color: #fff;
    font-size: 80px;
    font-family: var(--display-font);
    max-width: 15ch;
    font-weight: 700;
}

@media (max-width: 1750px) {
    .banner-section .banner-title {
        font-size: 4.125rem;
    }
}

@media (max-width: 1399px) {
    .banner-section .banner-title {
        font-size: 3.375rem;
    }
}

@media (max-width: 1199px) {
    .banner-section .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .banner-section .banner-title {
        margin-left: auto;
        margin-right: auto;
    }
}

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

.banner-section .banner-description {
    color: #fff;
    max-width: 65ch;
    margin-top: 2.5rem;
}

@media (max-width: 1750px) {
    .banner-section .banner-description {
        max-width: 55ch;
    }
}

@media (max-width: 991px) {
    .banner-section .banner-description {
        margin-left: auto;
        margin-right: auto;
        margin-top: 1.5625rem;
    }
}

.banner-section .banner-btns {
    margin-top: 2.8125rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .banner-section .banner-btns {
        justify-content: center;
        margin-top: 1.5625rem;
    }
}

.banner-section .banner-left-line-el {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    opacity: 0.65;
    z-index: -3;
}

.banner-section .banner-man-img {
    position: absolute;
    inset-inline-end: 145px;
    inset-block-end: 0;
    z-index: -1;
}

@media (max-width: 1850px) {
    .banner-section .banner-man-img {
        inset-inline-end: 105px;
    }
}

@media (max-width: 1750px) {
    .banner-section .banner-man-img {
        max-height: 550px;
    }
}

@media (max-width: 1399px) {
    .banner-section .banner-man-img {
        max-height: 455px;
    }
}

@media (max-width: 1199px) {
    .banner-section .banner-man-img {
        max-height: 420px;
        inset-inline-end: 0;
    }
}

@media (max-width: 991px) {
    .banner-section .banner-man-img {
        position: static;
        margin-top: 2.5rem;
    }
}

.banner-section .banner-angle-img {
    position: absolute;
    width: 695px;
    height: 101%;
    inset-inline-end: 135px;
    inset-block-end: 0;
    z-index: -2;
    clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
}

@media (max-width: 1850px) {
    .banner-section .banner-angle-img {
        inset-inline-end: 95px;
    }
}

@media (max-width: 1750px) {
    .banner-section .banner-angle-img {
        inset-inline-end: 0;
    }
}

@media (max-width: 1399px) {
    .banner-section .banner-angle-img {
        width: 490px;
        inset-inline-end: 35px;
    }
}

.banner-section .banner-angle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

@media (max-width: 991px) {
    .banner-section .banner-angle-img {
        opacity: 0.35;
    }
}

.banner-section .line-shape {
    position: absolute;
    top: 0;
    inset-inline-end: 630px;
    width: 325px;
    height: 100%;
    background-color: #fff;
    opacity: 0.1;
    clip-path: polygon(75% 0%, 100% 0%, 25% 100%, 0% 100%);
    z-index: -2;
}

@media (max-width: 1850px) {
    .banner-section .line-shape {
        inset-inline-end: 590px;
    }
}

@media (max-width: 1750px) {
    .banner-section .line-shape {
        inset-inline-end: 480px;
    }
}

@media (max-width: 1399px) {
    .banner-section .line-shape {
        inset-inline-end: 375px;
        width: 235px;
    }
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.call-btn:hover i {
    background-color: var(--secondary);
}

.call-btn i {
    width: 3.75rem;
    height: 3.75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 1.25rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.call-btn span small {
    font-size: 0.875rem;
    display: block;
}

.call-btn span strong {
    font-weight: 500;
    font-size: 1.125rem;
}

.call-btn.call-btn-white span small,
.call-btn.call-btn-white span strong {
    color: #fff;
}

.banner-section-two {
    position: relative;
    padding-top: 18.75rem;
    padding-bottom: 8.75rem;
    position: relative;
    background-color: var(--dark-900);
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .banner-section-two {
        padding-top: 14.375rem;
        padding-bottom: 6.25rem;
    }
}

@media (max-width: 1199px) {
    .banner-section-two {
        padding-top: 10.625rem;
    }
}

@media (max-width: 575px) {
    .banner-section-two {
        padding-top: 8.125rem;
        padding-bottom: 3.75rem;
    }
}

.banner-section-two .banner-top-title {
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

@media (max-width: 575px) {
    .banner-section-two .banner-top-title {
        font-size: 0.875rem;
    }
}

.banner-section-two .banner-top-title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.banner-section-two .banner-title {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--display-font);
}

@media (max-width: 1750px) {
    .banner-section-two .banner-title {
        font-size: 4.125rem;
    }
}

@media (max-width: 1399px) {
    .banner-section-two .banner-title {
        font-size: 3.375rem;
    }
}

@media (max-width: 1199px) {
    .banner-section-two .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .banner-section-two .banner-title {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .banner-section-two .banner-title {
        font-size: 2.25rem;
    }
}

.banner-section-two .check-list li + li {
    margin-top: 0.625rem;
}

.banner-section-two .check-list li {
    color: var(--light-200);
}

.banner-section-two .banner-btns {
    margin-top: 2.8125rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.banner-section-two .banner-section-two-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    z-index: -1;
}

.banner-section-two .banner-section-two-angle-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    max-width: 9vw;
}

.banner-section-three {
    padding-top: 16.25rem;
    padding-bottom: 12.5rem;
    background-color: var(--dark-900);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 1399px) {
    .banner-section-three {
        padding-top: 13.75rem;
        padding-bottom: 10.625rem;
    }
}

@media (max-width: 1199px) {
    .banner-section-three {
        padding-top: 9.375rem;
        padding-bottom: 10rem;
    }
}

@media (max-width: 991px) {
    .banner-section-three {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .banner-section-three {
        padding-top: 7.5rem;
    }
}

.banner-section-three::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-900);
    opacity: 0.85;
    z-index: -2;
}

.banner-section-three .banner-top-title {
    color: var(--primary);
    text-transform: uppercase;
}

.banner-section-three .banner-title {
    color: #fff;
    font-size: 80px;
    font-family: var(--display-font);
    max-width: 15ch;
    font-weight: 700;
}

@media (max-width: 1750px) {
    .banner-section-three .banner-title {
        font-size: 4.125rem;
    }
}

@media (max-width: 1399px) {
    .banner-section-three .banner-title {
        font-size: 3.375rem;
    }
}

@media (max-width: 1199px) {
    .banner-section-three .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .banner-section-three .banner-title {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .banner-section-three .banner-title {
        font-size: 2.25rem;
    }
}

.banner-section-three .banner-description {
    color: #fff;
    max-width: 65ch;
    margin-top: 2.5rem;
}

@media (max-width: 1750px) {
    .banner-section-three .banner-description {
        max-width: 55ch;
    }
}

@media (max-width: 991px) {
    .banner-section-three .banner-description {
        margin-left: auto;
        margin-right: auto;
        margin-top: 1.5625rem;
    }
}

.banner-section-three .banner-btns {
    margin-top: 2.8125rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .banner-section-three .banner-btns {
        justify-content: center;
        margin-top: 1.5625rem;
    }
}

.banner-section-three .banner-three-social-list {
    position: absolute;
    top: 52%;
    left: 9vw;
}

@media (max-width: 1700px) {
    .banner-section-three .banner-three-social-list {
        left: 30px;
    }
}

@media (max-width: 1399px) {
    .banner-section-three .banner-three-social-list {
        display: none;
    }
}

.banner-section-three .banner-three-social-list::before {
    position: absolute;
    content: "";
    top: -100px;
    left: 50%;
    width: 1px;
    height: 72px;
    background-color: var(--primary);
}

.banner-section-three .banner-three-social-list::after {
    position: absolute;
    content: "";
    bottom: -100px;
    left: 50%;
    width: 1px;
    height: 72px;
    background-color: var(--primary);
}

.banner-section-three .banner-three-social-list li {
    margin: 10px 0;
}

.banner-section-three .banner-three-social-list li a {
    color: #fff;
    text-align: center;
}

.banner-section-three .banner-three-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    z-index: -3;
}

.banner-section-three .banner-man-img {
    position: absolute;
    inset-inline-end: 22%;
    inset-block-end: 0;
    z-index: 1;
}

@media (max-width: 1750px) {
    .banner-section-three .banner-man-img {
        max-height: 550px;
    }
}

@media (max-width: 1399px) {
    .banner-section-three .banner-man-img {
        max-height: 455px;
    }
}

@media (max-width: 1199px) {
    .banner-section-three .banner-man-img {
        max-height: 420px;
        inset-inline-end: 0;
    }
}

@media (max-width: 991px) {
    .banner-section-three .banner-man-img {
        position: static;
        margin-top: 2.5rem;
    }
}

.banner-section-three .banner-truck-img {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    z-index: -1;
}

@media (max-width: 1750px) {
    .banner-section-three .banner-truck-img {
        max-height: 550px;
    }
}

@media (max-width: 1399px) {
    .banner-section-three .banner-truck-img {
        max-height: 405px;
    }
}

@media (max-width: 1199px) {
    .banner-section-three .banner-truck-img {
        max-height: 300px;
        inset-inline-end: -100px;
    }
}

.banner-section-three .banner-angle-img {
    position: absolute;
    width: 695px;
    height: 101%;
    inset-inline-end: 135px;
    inset-block-end: 0;
    z-index: -1;
    clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
}

@media (max-width: 1850px) {
    .banner-section-three .banner-angle-img {
        inset-inline-end: 95px;
    }
}

@media (max-width: 1750px) {
    .banner-section-three .banner-angle-img {
        inset-inline-end: 0;
    }
}

@media (max-width: 1399px) {
    .banner-section-three .banner-angle-img {
        width: 490px;
        inset-inline-end: 35px;
    }
}

.banner-section-three .banner-angle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

@media (max-width: 991px) {
    .banner-section-three .banner-angle-img {
        opacity: 0.35;
    }
}

.banner-section-three .line-shape {
    position: absolute;
    top: 0;
    inset-inline-end: 630px;
    width: 325px;
    height: 100%;
    background-color: #fff;
    opacity: 0.1;
    clip-path: polygon(75% 0%, 100% 0%, 25% 100%, 0% 100%);
    z-index: -1;
}

@media (max-width: 1850px) {
    .banner-section-three .line-shape {
        inset-inline-end: 590px;
    }
}

@media (max-width: 1750px) {
    .banner-section-three .line-shape {
        inset-inline-end: 480px;
    }
}

@media (max-width: 1399px) {
    .banner-section-three .line-shape {
        inset-inline-end: 375px;
        width: 235px;
    }
}

.banner-four-item {
    position: relative;
    padding-top: 18rem;
    padding-bottom: 14.4rem;
    z-index: 1;
    text-align: center;
}

@media (max-width: 1399px) {
    .banner-four-item {
        padding-top: 15.5rem;
        padding-bottom: 150px;
    }
}

@media (max-width: 1199px) {
    .banner-four-item {
        padding-top: 7.375rem;
        padding-bottom: 150px;
    }
}

@media (max-width: 1199px) {
    .banner-four-item {
        padding-bottom: 63px;
    }
}

.banner-four-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    z-index: -1;
}

.banner-four-item .banner-four-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: -2;
}

.banner-section-four {
    position: relative;
}

.banner-section-four .banner-top-title {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--light-100);
}

@media (max-width: 1399px) {
    .banner-section-four .banner-top-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-top-title {
        font-size: 1.125rem;
    }
}

.banner-section-four .banner-sub-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--light-100);
}

@media (max-width: 1399px) {
    .banner-section-four .banner-sub-title {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-sub-title {
        display: none;
    }
}

.banner-section-four .banner-top-title i {
    transform: rotate(-45deg);
}

.banner-section-four .banner-top-title span {
    text-decoration: underline;
}

.banner-section-four .banner-title {
    font-family: var(--display-font);
    font-weight: 600;
    font-size: 3.5rem;
    color: #fff;
}

@media (max-width: 1399px) {
    .banner-section-four .banner-title {
        font-size: 4.25rem;
    }
}

@media (max-width: 1199px) {
    .banner-section-four .banner-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-title {
        font-size: 2.625rem;
    }
}

@media (max-width: 575px) {
    .banner-section-four .banner-title {
        font-size: 2.25rem;
    }
}

.banner-section-four .banner-btns {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.375rem;
    gap: 0.9375rem;
    justify-content: center;
}

@media (max-width: 1399px) {
    .banner-section-four .banner-btns {
        margin-top: 3.125rem;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-btns {
        margin-top: 30px;
    }
}

.banner-section-four .banner-four-bottom-text {
    position: absolute;
    bottom: 0;
    left: 0;
    font-weight: 600;
    font-size: 6.3rem;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    line-height: 1.15;
    opacity: 0.35;
}

@media (max-width: 1399px) {
    .banner-section-four .banner-four-bottom-text {
        font-size: 5.4rem;
    }
}

@media (max-width: 1199px) {
    .banner-section-four .banner-four-bottom-text {
        font-size: 4.5rem;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-four-bottom-text {
        font-size: 4.5rem;
    }
}

@media (max-width: 575px) {
    .banner-section-four .banner-four-bottom-text {
        font-size: 2.625rem;
    }
}

.banner-section-four .banner-four-top {
    position: absolute;
    top: 220px;
    left: 65px;
    max-width: 198px;
}

@media (max-width: 1399px) {
    .banner-section-four .banner-four-top {
        max-width: 150px;
        top: 200px;
    }
}

@media (max-width: 1199px) {
    .banner-section-four .banner-four-top {
        max-width: 100px;
        top: 100px;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-four-top {
        max-width: 60px;
        top: 70px;
        left: 35px;
    }
}

.banner-section-four .banner-four-bottom {
    position: absolute;
    right: 0;
    bottom: 50px;
    max-width: 242px;
}

@media (max-width: 1399px) {
    .banner-section-four .banner-four-bottom {
        max-width: 200px;
    }
}

@media (max-width: 1199px) {
    .banner-section-four .banner-four-bottom {
        max-width: 100px;
        bottom: 30px;
    }
}

@media (max-width: 767px) {
    .banner-section-four .banner-four-bottom {
        max-width: 70px;
        bottom: 30px;
    }
}

.banner-four-slider .slick-arrow {
    position: absolute;
    top: 50%;
    width: 65px;
    height: 65px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #fff;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1399px) {
    .banner-four-slider .slick-arrow {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 991px) {
    .banner-four-slider .slick-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .banner-four-slider .slick-arrow {
        top: 60%;
    }
}

.banner-four-slider .slick-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.banner-four-slider .slick-arrow.prev {
    left: 115px;
}

@media (max-width: 1399px) {
    .banner-four-slider .slick-arrow.prev {
        left: 50px;
    }
}

@media (max-width: 991px) {
    .banner-four-slider .slick-arrow.prev {
        left: 15px;
    }
}

.banner-four-slider .slick-arrow.next {
    right: 115px;
}

@media (max-width: 1399px) {
    .banner-four-slider .slick-arrow.next {
        right: 50px;
    }
}

@media (max-width: 991px) {
    .banner-four-slider .slick-arrow.next {
        right: 15px;
    }
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
}

.video-btn.video-btn-white i {
    background-color: #fff;
}

.video-btn.video-btn-white span {
    color: #fff;
}

.video-btn i {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--dark-900);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 10px rgba(250, 125, 9, 0.15);
}

.circle-contact-btn-main {
    position: relative;
    display: inline-flex;
}

.circle-contact-btn-main .circle-contact-btn-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-contact-btn {
    --radius: 11vmin;
    --frame-size: calc(var(--radius) / 3);
    --d-outer: calc(var(--radius) * 2);
    --d-inner: calc(var(--d-outer) - var(--frame-size));
    --font-size: calc(var(--radius) / 10);
    position: relative;
    width: var(--d-outer);
    height: var(--d-outer);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

@media (max-width: 575px) {
    .circle-contact-btn {
        --radius: 25vmin;
    }
}

.circle-contact-btn::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 100vmax;
    z-index: -1;
}

.circle-contact-btn .circle-contact-btn-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.circle-contact-btn .circle-contact-btn-text span {
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0 var(--radius);
    color: var(--primary);
}

@keyframes rotateText {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/* === banner css end === */
/* === service css start === */
.service-one:hover .thumb img {
    transform: scale(1.1, 1.1);
}

.service-one:hover .icon {
    background-color: var(--primary);
}

.service-one .thumb {
    height: 21.5625rem;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 1399px) {
    .service-one .thumb {
        height: 18.75rem;
    }
}

@media (max-width: 1199px) {
    .service-one .thumb {
        height: 15.625rem;
    }
}

.service-one .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.service-one .content {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -2.5rem;
    padding: 2.5rem 1.875rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    position: relative;
    background-color: #fff;
}

@media (max-width: 1199px) {
    .service-one .content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 1.875rem 1.25rem;
    }
}

.service-one .icon {
    width: 65px;
    height: 65px;
    position: relative;
    background-color: var(--light-100);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.service-one .icon img {
    max-height: 40px;
}

.service-one .title {
    margin-top: 0.9375rem;
    margin-bottom: 0.625rem;
}

.service-two {
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.service-two:hover .content .icon {
    background-color: var(--primary);
}

.service-two:hover .service-two-btn i {
    color: var(--primary);
}

.service-two .thumb {
    height: 20.5rem;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}

@media (max-width: 1399px) {
    .service-two .thumb {
        height: 17.5rem;
    }
}

@media (max-width: 1199px) {
    .service-two .thumb {
        height: 15.625rem;
    }
}

.service-two .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.service-two .content {
    padding: 0 2.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .service-two .content {
        padding: 0 1.875rem 1.875rem 1.875rem;
    }
}

.service-two .content .icon {
    width: 5rem;
    height: 5rem;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--light-100);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2.5rem;
    margin-bottom: 1.25rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-two .title {
    margin-bottom: 1.25rem;
}

@media (max-width: 1199px) {
    .service-two .title {
        margin-bottom: 0.9375rem;
    }
}

.service-two .service-two-btn {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.875rem;
}

@media (max-width: 1199px) {
    .service-two .service-two-btn {
        margin-top: 1.25rem;
    }
}

.service-section-three {
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.service-three {
    padding: 2.5rem 2.5rem 0 2.5rem;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.875rem;
}

@media (max-width: 991px) {
    .service-three {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .service-three {
        padding: 1.875rem 1.875rem 0 1.875rem;
    }
}

.service-three .icon {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-three p {
    margin-top: 1.25rem;
}

.service-three-icon-btn {
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    transform: translateY(1.875rem);
}

.service-three-icon-btn:hover {
    box-shadow: 0 5px 15px var(--primary);
    color: #fff;
}

.service-four {
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-flow: column;
}

@media (max-width: 1199px) {
    .service-four {
        padding: 1.5625rem;
    }
}

@media (max-width: 767px) {
    .service-four {
        align-items: center;
        text-align: center;
    }
}

.service-four:hover {
    border-color: var(--primary);
}

.service-four .icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 1.25rem;
}

.service-four .icon img {
    height: 45px;
}

.service-four p {
    margin-top: 1.25rem;
    margin-bottom: 1.875rem;
}

.service-four-icon-btn {
    font-weight: 500;
    color: var(--dark-900);
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    gap: 8px;
}

.service-four-icon-btn i {
    color: var(--primary);
}

.service-section-four {
    background-color: #fff;
}

.service-item-four {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 1.25rem 2.5rem 1.25rem;
    border-radius: 0 0 999px 999px;
    -webkit-border-radius: 0 0 999px 999px;
    -moz-border-radius: 0 0 999px 999px;
    -ms-border-radius: 0 0 999px 999px;
    -o-border-radius: 0 0 999px 999px;
    border: 2px dotted rgba(99, 103, 118, 0.3);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-item-four:hover {
    border-color: var(--secondary-two);
}

.service-item-four:hover .service-item-four-arrow {
    background-color: var(--secondary-two);
}

.service-item-four:hover .service-item-four-thumb {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-item-four:hover .service-item-four-thumb img {
    -webkit-transform: rotate(15deg) scale(1.2, 1.2);
    -ms-transform: rotate(15deg) scale(1.2, 1.2);
    transform: rotate(15deg) scale(1.2, 1.2);
}

.service-item-four .service-item-four-arrow {
    position: absolute;
    bottom: -85px;
    width: 110px;
    height: 110px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--dark);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.1875rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-item-four .service-item-four-arrow:hover {
    background-color: var(--primary);
}

.service-item-four-inner {
    padding: 3.75rem 2.8125rem 1.875rem 2.8125rem;
    background-color: #F4F4F4;
    border-radius: 0 0 999px 999px;
    -webkit-border-radius: 0 0 999px 999px;
    -moz-border-radius: 0 0 999px 999px;
    -ms-border-radius: 0 0 999px 999px;
    -o-border-radius: 0 0 999px 999px;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 1399px) {
    .service-item-four-inner {
        padding: 2.5rem 1.875rem 1.25rem 1.875rem;
    }
}

.service-item-four-title {
    font-size: 1.5rem;
}

.service-item-four-title a {
    font-family: var(--display-font);
    font-weight: 600;
}

.service-item-four-thumb {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    margin-top: 3.125rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1399px) {
    .service-item-four-thumb {
        width: 220px;
        height: 220px;
        margin-top: 1.875rem;
    }
}

.service-item-four-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-item-four-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.9375rem;
    max-width: 25ch;
    margin-inline: auto;
}

.service-bottom-four {
    text-align: center;
    margin-top: 6.25rem;
}

.service-bottom-four .service-bottom-four-area {
    display: inline-flex;
}

.service-bottom-four-left {
    background-color: var(--dark);
    padding: 0.875rem 1.5rem;
}

.service-bottom-four-left p {
    color: #fff;
}

.service-bottom-four-right {
    background-color: var(--secondary-two);
    padding: 0.875rem 1.5rem;
    border-radius: 0 999px 999px 0;
    -webkit-border-radius: 0 999px 999px 0;
    -moz-border-radius: 0 999px 999px 0;
    -ms-border-radius: 0 999px 999px 0;
    -o-border-radius: 0 999px 999px 0;
}

.service-bottom-four-right a {
    color: #fff;
}

/* === service css end === */
/* === service-details css start === */
.service-details-sidebar {
    padding: 2.5rem;
    background-color: var(--light-100);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (max-width: 575px) {
    .service-details-sidebar {
        padding: 1.5625rem;
    }
}

.service-details-sidebar-box {
    padding: 1.5625rem 1.875rem 1.875rem 1.875rem;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 1.875rem;
}

.service-details-sidebar-box ul li .active {
   color: var(--secondary);
   font-weight: 600;
}

/* === service-details css end === */
/* === ticker css start === */
.ticker-section {
    padding: 3.75rem 0;
    background-color: var(--primary);
    overflow: hidden;
}

@media (max-width: 991px) {
    .ticker-section {
        padding: 1.875rem 0;
    }
}

.ticker-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll 40s forwards linear infinite;
}

.ticker-list:hover {
    animation-play-state: paused;
}

.ticker-list li {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-family: var(--display-font);
    font-size: 2.625rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1399px) {
    .ticker-list li {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .ticker-list li {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .ticker-list li {
        font-size: 1.625rem;
    }
}

.ticker-list li img {
    max-height: 2.1875rem;
}

@-webkit-keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@-moz-keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@-ms-keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}
/* === ticker css end === */
/* === about css start === */
.about-section-one {
    position: relative;
    overflow: hidden;
}

.about-section-one .about-section-one-el {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
}

@media (max-width: 1399px) {
    .about-section-one .about-section-one-el {
        inset-inline-end: -10.9375rem;
    }
}

.about-section-two {
    position: relative;
    z-index: 1;
}

.about-section-two .about-section-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-two-item {
    padding-top: 2.1875rem;
    position: relative;
}

.about-two-item .icon {
    position: absolute;
    top: 0;
    inset-inline-start: 1.875rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two-item .content {
    padding: 2.8125rem 1.875rem 1.875rem 1.875rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.about-two-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3.125rem;
    margin-top: 2.5rem;
}

@media (max-width: 575px) {
    .about-two-bottom {
        gap: 1.25rem;
    }
}

.about-bottom-users {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.about-section-three {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-section-three .about-section-three-el {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    z-index: -1;
}

.about-three-thumb {
    position: relative;
    z-index: 1;
    padding: 27px 0 27px 27px;
}

.about-three-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(100% - 35px);
    height: 100%;
    border: 4.5px solid var(--primary);
    border-radius: 65px 0 0 65px;
    -webkit-border-radius: 65px 0 0 65px;
    -moz-border-radius: 65px 0 0 65px;
    -ms-border-radius: 65px 0 0 65px;
    -o-border-radius: 65px 0 0 65px;
    z-index: -1;
}

.about-three-thumb img {
    border-radius: 65px 0 0 65px;
    -webkit-border-radius: 65px 0 0 65px;
    -moz-border-radius: 65px 0 0 65px;
    -ms-border-radius: 65px 0 0 65px;
    -o-border-radius: 65px 0 0 65px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.about-three-thumb-content {
    position: absolute;
    inset-inline-end: -0.9rem;
    bottom: 18px;
    width: 153px;
    height: 120px;
    background-color: var(--primary);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-three-thumb-content span {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.3;
    margin-bottom: 0.3125rem;
}

.about-three-thumb-content small {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.about-three-content .check-list {
    margin: 0;
}

.about-three-content .call-btn {
    margin-top: 1.875rem;
}

.about-three-content .call-btn i {
    background-color: #fff;
    color: var(--dark-900);
}

.about-three-content .call-btn strong {
    color: var(--dark-900);
}

.about-four-content .about-four-details {
    margin-top: 2.5rem;
}

.about-four-content .pill-tabs-style {
    margin-top: 2.1875rem;
}

.about-four-content .tab-content {
    margin-top: 1.875rem;
}

.about-four-icon-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-four-icon-item-icon {
    width: 65px;
    height: 65px;
    background-color: var(--primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-four-icon-item-icon img {
    max-height: 55px;
}

.about-four-icon-item-content {
    width: calc(100% - 65px);
    padding-left: 0.9375rem;
}

/* === about css end === */
/* === project css start === */
.project-one {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.project-one + .project-one {
    margin-top: 1.875rem;
}

@media (max-width: 1399px) {
    .project-one {
        gap: 1.875rem;
        padding: 1.25rem 1.875rem;
    }
}

@media (max-width: 767px) {
    .project-one {
        justify-content: center;
        text-align: center;
        gap: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .project-one {
        padding: 1.25rem;
    }
}

.project-one:hover .thumb {
    opacity: 1;
}

.project-one:hover .icon {
    transform: rotate(-45deg);
}

.project-one .number {
    width: 65px;
    height: 65px;
    background-color: var(--light-100);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.project-one .title {
    font-size: 1.875rem;
    font-weight: 700;
    width: 20ch;
}

@media (max-width: 1399px) {
    .project-one .title {
        font-size: 1.5rem;
    }
}

@media (max-width: 1199px) {
    .project-one .title {
        width: 40ch;
    }
}

@media (max-width: 991px) {
    .project-one .title {
        width: 35ch;
        font-size: 1.25rem;
    }
}

.project-one .description {
    max-width: 40ch;
}

@media (max-width: 991px) {
    .project-one .description {
        max-width: 35ch;
    }
}

.project-one .thumb {
    width: 212px;
    height: 105px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .project-one .thumb {
        opacity: 1;
        margin-inline-start: 0;
    }
}

.project-one .icon {
    margin-inline-start: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 767px) {
    .project-one .icon {
        margin-inline-start: 0;
    }
}
/* === project css end === */
/* === project-details css start === */
.project-quote {
    position: relative;
    padding: 1.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .project-quote {
        padding: 1.25rem;
    }
}

.project-quote::after {
    position: absolute;
    content: "\f10e";
    bottom: 5px;
    inset-inline-end: 70px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 1;
    font-size: 6.25rem;
    opacity: 0.1;
}

.project-quote .thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.project-quote .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.project-quote .content {
    width: calc(100% - 90px);
    padding-inline-start: 1.375rem;
}

@media (max-width: 575px) {
    .project-quote .content {
        width: 100%;
        padding-inline-start: 0;
        margin-top: 1.25rem;
    }
}

.project-quote .quote-name {
    position: relative;
    padding-inline-start: 1.5625rem;
    font-weight: 500;
    margin-top: 0.625rem;
}

.project-quote .quote-name::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 0.9375rem;
    height: 1px;
    background-color: var(--dark-900);
}

.project-details-sidebar {
    padding-block: 2.5rem;
    padding-inline-end: 2.5rem;
    background-color: var(--light-100);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (max-width: 575px) {
    .project-details-sidebar {
        padding-block: 1.25rem;
        padding-inline-end: 1.25rem;
    }
}

.project-details-sidebar-header {
    padding-inline: 2.5rem;
}

@media (max-width: 575px) {
    .project-details-sidebar-header {
        padding-inline: 1.25rem;
    }
}

.project-details-sidebar-list li + li {
    margin-top: 1.25rem;
}

.project-details-sidebar-list li {
    padding: 0.625rem 2.5rem;
    background-color: #fff;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 575px) {
    .project-details-sidebar-list li {
        padding: 0.625rem 1.25rem;
    }
}

.project-details-sidebar-list li span:first-child {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-900);
    width: 95px;
}

.project-details-sidebar-list li span:last-child {
    width: calc(100% - 95px);
}

.project-details-sidebar-list li span.rating i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* === project-details css end === */
/* === message css start === */
.message-section-one {
    position: relative;
    z-index: 1;
}

.message-section-one .message-section-el {
    position: absolute;
    z-index: -1;
}

.message-section-one .message-section-el.message-left-el {
    top: 0;
    left: 0;
}

.message-section-one .message-section-el.message-right-el {
    bottom: 0;
    right: 0;
}

.overview-item {
    padding: 1.875rem 2.5rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    height: 100%;
}

@media (max-width: 1199px) {
    .overview-item {
        padding: 1.875rem;
    }
}

@media (max-width: 575px) {
    .overview-item {
        padding: 1.25rem;
    }
}

.overview-item .icon {
    height: 60px;
}

@media (max-width: 1399px) {
    .overview-item .icon {
        height: 50px;
    }
}

@media (max-width: 575px) {
    .overview-item .icon {
        height: 40px;
    }
}

.overview-item .amount {
    font-family: var(--display-font);
    font-size: 2.625rem;
    margin-top: 1.875rem;
    margin-bottom: 0.9375rem;
}

@media (max-width: 1399px) {
    .overview-item .amount {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .overview-item .amount {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .overview-item .amount {
        font-size: 1.625rem;
        margin-top: 1.25rem;
        margin-bottom: 0.625rem;
    }
}

@media (max-width: 575px) {
    .overview-item p {
        font-size: 0.875rem;
    }
}

.message-wrapper {
    padding-inline-start: 3.125rem;
}

@media (max-width: 991px) {
    .message-wrapper {
        padding-inline-start: 0;
    }
}

.message-wrapper .message-form {
    margin-top: 2.5rem;
}

.message-section-two-inner {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .message-section-two-inner {
        padding: 3.125rem 0;
    }
}

@media (max-width: 991px) {
    .message-section-two-inner {
        padding: 0;
    }
}

.message-section-two-inner .message-section-two-thumb {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 64%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .message-section-two-inner .message-section-two-thumb {
        position: static;
        width: 100%;
    }
}

.message-section-two-inner .message-section-two-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.message-wrapper-two {
    padding: 3.75rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 -5px 20px -1px rgba(19, 16, 34, 0.05);
}

@media (max-width: 1399px) {
    .message-wrapper-two {
        padding: 2.5rem;
    }
}

@media (max-width: 575px) {
    .message-wrapper-two {
        padding: 1.875rem;
    }
}

.message-wrapper-two .section-title {
    margin-bottom: 1.25rem;
}

.message-wrapper-two .message-form {
    margin-top: 2.5rem;
}

.message-three-thumb {
    width: 512px;
    height: 512px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .message-three-thumb {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 575px) {
    .message-three-thumb {
        width: 280px;
        height: 280px;
    }
}

.message-three-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 96%;
    height: 96%;
    background-color: var(--primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
}

@media (max-width: 575px) {
    .message-three-thumb::before {
        left: -5px;
    }
}

.message-three-thumb img {
    width: 512px;
    height: 512px;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media (max-width: 1199px) {
    .message-three-thumb img {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 575px) {
    .message-three-thumb img {
        width: 280px;
        height: 280px;
    }
}

.message-three-thumb .message-three-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.375rem;
    height: 4.375rem;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.375rem;
}

@media (max-width: 575px) {
    .message-three-thumb .message-three-video-btn {
        width: 2.8125rem;
        height: 2.8125rem;
        font-size: 0.875rem;
    }
}

.message-three-thumb-content {
    position: absolute;
    bottom: 15px;
    inset-inline-end: 0;
    width: 130px;
    height: 130px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.message-three-thumb-content::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px dashed var(--light-200);
}

.message-three-thumb-content span {
    font-size: 0.75rem;
}

.message-three-thumb-content p {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary);
}

/* === message css end === */
/* === brand css start === */
.brand-section {
    overflow: hidden;
}

.brand-item {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item img {
    display: inline-block;
}

.brand-slider .slick-list {
    margin: 0 -0.9375rem;
}

.brand-slider .brand-slide {
    padding: 0 0.9375rem;
}

.brand-section-four {
    padding-bottom: 7.5rem;
}

.brand-item-four {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(1);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.brand-item-four:hover {
    filter: grayscale(0);
    opacity: 1;
}

.brand-item-four img {
    display: inline-block;
    max-height: 65px;
}

/* === brand css end === */
/* === newsletter css start === */
.news-letter-wrapper {
    position: relative;
    overflow: hidden;
    padding: 3.75rem;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    z-index: 1;
}

@media (max-width: 991px) {
    .news-letter-wrapper {
        padding: 2.5rem 1.25rem;
    }
}

.news-letter-wrapper::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-900);
    opacity: 0.8;
}

.news-letter-wrapper-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    z-index: -1;
}

.news-letter-wrapper-inner {
    width: 505px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .news-letter-wrapper-inner {
        width: 100%;
    }
}

.news-letter-wrapper .section-title {
    color: #fff;
}

@media (max-width: 991px) {
    .news-letter-wrapper .section-title {
        text-align: center;
    }
}

.news-letter-wrapper .subscribe-form {
    margin-top: 2.1875rem;
}

.news-letter-wrapper .news-letter-icon-wrapper {
    position: absolute;
    top: 0;
    inset-inline-end: 3.75rem;
    height: 100%;
    width: 330px;
    background-color: #fff;
    clip-path: polygon(29% 0, 100% 0, 75% 100%, 0% 100%);
}

@media (max-width: 1199px) {
    .news-letter-wrapper .news-letter-icon-wrapper {
        inset-inline-end: 1.875rem;
    }
}

@media (max-width: 991px) {
    .news-letter-wrapper .news-letter-icon-wrapper {
        display: none;
    }
}

.news-letter-wrapper .news-letter-icon-wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    left: 1.25rem;
    width: 100%;
    height: 100%;
    clip-path: polygon(29% 0, 100% 0, 75% 100%, 0% 100%);
    background-color: var(--primary);
}

.news-letter-wrapper .news-letter-icon-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-height: 115px;
}

.subscribe-form {
    position: relative;
}

.subscribe-form input {
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 99px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    width: 100%;
    padding: 1.25rem 9.375rem 1.25rem 1.875rem;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.subscribe-form input::-webkit-input-placeholder {
    color: var(--light-200);
}

.subscribe-form input::-moz-placeholder {
    color: var(--light-200);
}

.subscribe-form input:-ms-input-placeholder {
    color: var(--light-200);
}

.subscribe-form input:-moz-placeholder {
    color: var(--light-200);
}

.subscribe-form input:focus {
    border-color: var(--secondary);
}

.subscribe-form button {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    height: calc(100% - 20px);
    padding: 0.625rem 1.875rem;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 99px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    text-transform: uppercase;
    font-weight: 500;
}

/* === newsletter css end === */
/* === testimonial css start === */
.testimonial-section-one {
    position: relative;
}

.testimonial-section-one .testimonial-section-one-line {
    position: absolute;
    bottom: 0;
    right: 0;
    max-inline-size: initial;
    max-block-size: initial;
}

.testimonial-section-one .testimonial-section-one-thumb {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .testimonial-section-one .section-top {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .testimonial-section-one .section-top .section-title {
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-one .content {
    padding: 2.5rem 2.5rem 4.375rem 2.5rem;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--dark-700);
}

@media (max-width: 575px) {
    .testimonial-one .content {
        padding: 1.5625rem 1.5625rem 3.75rem 1.5625rem;
        text-align: center;
    }
}

.testimonial-one .content .icon i {
    color: var(--primary);
    font-size: 3.75rem;
    padding: 9px;
}

@media (max-width: 991px) {
    .testimonial-one .content .icon i {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .testimonial-one .content .icon i {
        font-size: 2.625rem;
    }
}

.testimonial-one .content p {
    color: var(--light-200);
    font-size: 1.2rem;
}

@media (max-width: 1399px) {
    .testimonial-one .content p {
        font-size: 1.375rem;
    }
}

@media (max-width: 991px) {
    .testimonial-one .content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .testimonial-one .content p {
        font-size: 1.125rem;
    }
}

.testimonial-one .testimonial-client {
    padding-inline-start: 2.5rem;
    margin-top: -2.5rem;
}

@media (max-width: 575px) {
    .testimonial-one .testimonial-client {
        padding-inline-start: 0;
        text-align: center;
    }
}

.testimonial-one .testimonial-client .client-img {
    width: 4.5625rem;
    height: 4.5625rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.pr-1{
    text-transform: uppercase;
    font-style: italic;
    padding-top: 10px;
    color: var(--primary)!important;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .testimonial-one .testimonial-client .client-img {
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-one .testimonial-client .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.testimonial-slider-one {
    z-index: 1;
}

@media (max-width: 575px) {
    .testimonial-slider-one {
        padding-bottom: 4.375rem;
    }
}

.testimonial-slider-one .slick-arrow {
    position: absolute;
    bottom: 0.625rem;
    inset-inline-end: 0;
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
    border: 1px solid var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

@media (max-width: 575px) {
    .testimonial-slider-one .slick-arrow {
        width: 2.1875rem;
        height: 2.1875rem;
    }
}

.testimonial-slider-one .slick-arrow.prev {
    inset-inline-end: 3.4375rem;
}

@media (max-width: 575px) {
    .testimonial-slider-one .slick-arrow.prev {
        inset-inline-end: 50%;
    }
}

@media (max-width: 575px) {
    .testimonial-slider-one .slick-arrow.next {
        inset-inline-end: calc(50% - 40px);
    }
}

.testimonial-slider-one .slick-arrow:hover {
    color: #fff;
    background-color: var(--primary);
}

.testimonial-two-area {
    position: relative;
    padding: 5rem 0;
}

@media (max-width: 991px) {
    .testimonial-two-area {
        padding: 0;
    }
}

.testimonial-two-area .testimonial-two-area-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 57%;
    height: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .testimonial-two-area .testimonial-two-area-thumb {
        display: none;
    }
}

.testimonial-two-area .testimonial-two-area-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.testimonial-two-area .testimonial-two-slider-area {
    padding: 3.75rem;
    background-color: var(--dark-700);
    position: relative;
    z-index: 1;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 575px) {
    .testimonial-two-area .testimonial-two-slider-area {
        padding: 1.25rem;
    }
}

.testimonial-two-area .testimonial-two-slider-area .testimonial-one .content {
    padding: 0;
}

.testimonial-two-area .testimonial-two-slider-area .testimonial-one .testimonial-client {
    margin-top: 0;
    padding-inline-start: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.1875rem;
}

.testimonial-two-area .testimonial-two-slider-area .testimonial-one .testimonial-client .client-img {
    width: 4.375rem;
    height: 4.375rem;
}

.testimonial-two-area .testimonial-two-slider-area .testimonial-one .testimonial-client .client-details {
    width: calc(100% - 70px);
    padding-inline-start: 1.25rem;
}

@media (max-width: 575px) {
    .testimonial-two-area .testimonial-two-slider-area .testimonial-one .testimonial-client .client-details {
        width: 100%;
        padding-inline-start: 0;
        margin-top: 0.9375rem;
    }
}

.testimonial-section-three {
    position: relative;
    z-index: 1;
}

.testimonial-section-three .testimonial-section-three-el {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.testimonial-three-slider-area {
    padding: 19px 24px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 1399px) {
    .testimonial-three-slider-area {
        padding: 2.5rem;
    }
}

@media (max-width: 575px) {
    .testimonial-three-slider-area {
        padding: 1.25rem;
    }
}

.testimonial-three-slider-area .testimonial-one .content {
    padding: 0;
    background-color: #fff;
}

.testimonial-three-slider-area .testimonial-one .content p {
    color: var(--dark-800);
}

.testimonial-three-slider-area .testimonial-one .testimonial-client {
    margin-top: 0;
    padding-inline-start: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.1875rem;
}

.testimonial-three-slider-area .testimonial-one .testimonial-client .client-img {
    width: 4.375rem;
    height: 4.375rem;
}

.testimonial-three-slider-area .testimonial-one .testimonial-client .client-details {
    width: calc(100% - 70px);
    padding-inline-start: 1.25rem;
}

@media (max-width: 575px) {
    .testimonial-three-slider-area .testimonial-one .testimonial-client .client-details {
        width: 100%;
        padding-inline-start: 0;
        margin-top: 0.9375rem;
    }
}

.testimonial-three-slider-area .testimonial-one .testimonial-client .client-details p {
    margin-top: 0.3125rem;
}

.testimonial-three-slider-area .testimonial-slider-one .slick-arrow {
    color: var(--dark-900);
    border-color: var(--border-color);
}

.testimonial-three-slider-area .testimonial-slider-one .slick-arrow:hover {
    border-color: var(--primary);
    color: #fff;
}

.testimonial-section-four .testimonial-one .content {
    background-color: var(--light-100);
}

.testimonial-section-four .testimonial-one .content p {
    color: var(--dark-800);
}

.testimonial-section-four .testimonial-slider-one .slick-arrow {
    border-color: var(--border-color);
    color: var(--dark-900);
}

.testimonial-section-four .testimonial-slider-one .slick-arrow:hover {
    border-color: var(--primary);
    color: #fff;
}

.testimonial-section-five {
    position: relative;
    z-index: 1;
}

.testimonial-section-five-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    -o-object-fit: cover;
}

.testimonial-section-five .testimonial-slider-two-nav {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 1.5625rem;
}

@media (max-width: 991px) {
    .testimonial-section-five .testimonial-slider-two-nav {
        flex-flow: row;
        gap: 0.9375rem;
    }
}

.testimonial-section-five .testimonial-slider-two-nav button {
    width: 66px;
    height: 66px;
    background-color: #fff;
    color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .testimonial-section-five .testimonial-slider-two-nav button {
        width: 50px;
        height: 50px;
    }
}

.testimonial-section-five .testimonial-slider-two-nav button:hover {
    background-color: var(--secondary-two);
    color: #fff;
}

.testimonial-four-item-top {
    border-bottom: 3px solid var(--secondary-two);
}

.testimonial-four-item-top .icon {
    width: 97px;
    height: 89px;
    background-color: #fff;
    color: var(--secondary-two);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1399px) {
    .testimonial-four-item-top .icon {
        width: 87px;
        height: 79px;
    }
}

@media (max-width: 991px) {
    .testimonial-four-item-top .icon {
        width: 70px;
        height: 60px;
    }
}

.testimonial-four-item-details {
    color: #0A1222;
    font-size: 2.125rem;
    font-family: var(--display-font);
    margin-top: 1.5625rem;
}

@media (max-width: 1399px) {
    .testimonial-four-item-details {
        font-size: 1.75rem;
    }
}

@media (max-width: 991px) {
    .testimonial-four-item-details {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .testimonial-four-item-details {
        font-size: 1.25rem;
    }
}

.testimonial-four-item-details span {
    color: var(--secondary-two);
}

.testimonial-four-item-client {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.5rem;
}

.testimonial-four-item-client .thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial-four-item-client .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.testimonial-four-item-client .content {
    width: calc(100% - 72px);
    padding-left: 1.5625rem;
}

.testimonial-four-item-client .content h4 {
    font-size: 1.125rem;
    text-transform: uppercase;
}

.testimonial-four-item-client .content p span {
    color: var(--secondary-two);
}

/* === testimonial css end === */
/* === team css start === */
.team-section-one {
    overflow: hidden;
    padding-inline: 5.9375rem;
}

@media (max-width: 1399px) {
    .team-section-one {
        padding-inline: 2.5rem;
    }
}

@media (max-width: 991px) {
    .team-section-one {
        padding-inline: 0.9375rem;
    }
}

.team-one {
    padding: 1.875rem;
    background-color: #fff;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-bottom: 2px solid #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .team-one {
        padding: 1.25rem;
    }
}

.team-one:hover {
    border-color: var(--primary);
}

.team-one:hover .thumb .team-social-list {
    bottom: 20px;
    opacity: 1;
}

.team-one:hover .thumb .team-social-list li {
    transform: translateY(0) !important;
}

.team-one .thumb {
    position: relative;
    height: 295px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1620px) {
    .team-one .thumb {
        height: 250px;
    }
}

@media (max-width: 1199px) {
    .team-one .thumb {
        height: 210px;
    }
}

.team-one .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.team-one .thumb .team-social-list {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 1.25rem;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-one .thumb .team-social-list li:nth-child(1) {
    transform: translateY(10px);
}

.team-one .thumb .team-social-list li:nth-child(2) {
    transform: translateY(30px);
}

.team-one .thumb .team-social-list li:nth-child(3) {
    transform: translateY(50px);
}

.team-one .thumb .team-social-list li:nth-child(4) {
    transform: translateY(70px);
}

.team-one .team-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.team-one .team-social-list li {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-one .team-social-list li a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: 1px solid var(--primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-900);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-one .team-social-list li a:hover {
    background-color: var(--primary);
    color: #fff;
}

.team-one .content {
    text-align: center;
    margin-top: 1.875rem;
}

.team-one.style-two {
    background-color: transparent;
    border: none;
    padding: 1.875rem 2.5rem 0 2.5rem;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .team-one.style-two {
        padding: 1.875rem 1.875rem 0 1.875rem;
    }
}

.team-one.style-two:hover::before {
    background-color: var(--light-100);
    box-shadow: none;
}

.team-one.style-two::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.05);
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-one.style-two .thumb {
    height: 315px;
}

@media (max-width: 1199px) {
    .team-one.style-two .thumb {
        height: 250px;
    }
}

.team-one.style-two .content {
    margin-top: 0;
    margin-bottom: 1.875rem;
}

.team-one.style-two .content p {
    margin-top: 0.3125rem;
}

.team-one .team-social-list li a {
    border: none;
    color: var(--primary);
}

.team-two {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 2.5rem 1.25rem 2.5rem 0;
    z-index: 1;
}

@media (max-width: 1399px) {
    .team-two {
        padding: 1.875rem 1.25rem 1.875rem 0;
    }
}

@media (max-width: 1199px) {
    .team-two {
        padding: 1.25rem;
    }
}

.team-two:hover::before {
    border-color: var(--primary);
}

.team-two::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-end: 0;
    height: 100%;
    width: calc(100% - 80px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .team-two::before {
        width: 100%;
    }
}

.team-two .thumb {
    width: 11.25rem;
    height: 11.25rem;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 1399px) {
    .team-two .thumb {
        width: 9.375rem;
        height: 9.375rem;
    }
}

@media (max-width: 1199px) {
    .team-two .thumb {
        width: 100%;
        height: 12.5rem;
    }
}

.team-two .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.team-two .content {
    width: calc(100% - 11.25rem);
    padding-inline-start: 1.25rem;
}

@media (max-width: 1399px) {
    .team-two .content {
        width: calc(100% - 9.375rem);
    }
}

@media (max-width: 1199px) {
    .team-two .content {
        width: 100%;
        padding-inline-start: 0;
        margin-top: 1.25rem;
        text-align: center;
    }
}

.team-two .team-social-list {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--light-100);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top: 1.25rem;
}

.team-two .team-social-list li {
    position: relative;
}

.team-two .team-social-list li:last-child::after {
    display: none;
}

.team-two .team-social-list li::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 1px;
    height: 16px;
    background-color: var(--border-color);
    margin-top: -8px;
}

.team-two .team-social-list li a {
    padding: 0.625rem 0.9375rem;
    color: var(--primary);
}

.team-slider .slick-list,
.team-slider-two .slick-list {
    margin: -0.9375rem;
}

.team-slider .team-slide,
.team-slider-two .team-slide {
    padding: 0.9375rem;
}

.team-section-four {
    position: relative;
    z-index: 1;
}

.team-section-four .team-section-four-el {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.team-four-item {
    padding-top: 15px;
    padding-right: 15px;
}

.team-four-item:hover .team-four-item-thumb::before {
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    border-color: var(--secondary-two);
}

.team-four-item:hover .team-four-social-list {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.team-four-item-thumb {
    position: relative;
    z-index: 1;
}

.team-four-item-thumb::before {
    position: absolute;
    content: "";
    width: calc(100% - 30px);
    height: 100%;
    top: -15px;
    right: -15px;
    background-color: transparent;
    border: 1.5px dashed #00205C;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-four-item-thumb img {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    width: 100%;
    height: 435px;
    object-fit: cover;
    -o-object-fit: cover;
}

@media (max-width: 1399px) {
    .team-four-item-thumb img {
        height: 350px;
    }
}

@media (max-width: 1199px) {
    .team-four-item-thumb img {
        height: 300px;
    }
}

.team-four-item-thumb .team-four-social-list {
    position: absolute;
    top: 55%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-four-item-thumb .team-four-social-list::before {
    position: absolute;
    content: "";
    top: -14px;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: var(--secondary-two);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.team-four-item-thumb .team-four-social-list li a {
    width: 52px;
    height: 52px;
    background-color: var(--secondary-two);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-four-item-content {
    margin-top: 0.9375rem;
    text-align: center;
}

.team-four-item-title {
    font-size: 1.375rem;
}

.team-four-item-title a {
    font-family: var(--display-font);
    font-weight: 600;
}

/* === team css end === */
/* === team-details css start === */
.team-details-wrapper {
    background-color: var(--light-100);
    display: flex;
    flex-wrap: wrap;
}

.team-details-wrapper .thumb {
    width: 430px;
}

@media (max-width: 991px) {
    .team-details-wrapper .thumb {
        width: 100%;
    }
}

.team-details-wrapper .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.team-details-wrapper .content {
    width: calc(100% - 430px);
    padding: 2.5rem;
}

@media (max-width: 991px) {
    .team-details-wrapper .content {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .content {
        padding: 1.5625rem;
    }
}

.team-details-wrapper .content .designation {
    position: relative;
    padding-bottom: 0.3125rem;
    margin-top: 0.625rem;
}

.team-details-wrapper .content .designation::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.skill-bar p {
    margin-bottom: 10px;
}

.progressbar {
    position: relative;
    display: block;
    width: 100%;
    height: 8px;
    background-color: var(--light-200);
    border-radius: 99px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
}

.progressbar .bar {
    position: absolute;
    width: 0px;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary);
    overflow: hidden;
    border-radius: 99px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
}

.progressbar .label {
    position: absolute;
    top: -40px;
    left: 0;
    width: 30px;
    height: 30px;
    display: block;
    line-height: 34px;
    text-align: center;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

/* === team-details css end === */
/* === faq css start === */
.faq-img {
    position: relative;
    padding-inline-end: 9.0625rem;
    z-index: 1;
}

@media (max-width: 575px) {
    .faq-img {
        padding-inline-end: 2.8125rem;
    }
}

.faq-img::after {
    position: absolute;
    content: "";
    inset-inline-end: 7.5rem;
    bottom: 0;
    width: 1.1875rem;
    height: 18.75rem;
    background-color: var(--primary);
    z-index: -1;
}

.faq-img .faq-main-img {
    border-radius: 20px 5px 5px 20px;
    -webkit-border-radius: 20px 5px 5px 20px;
    -moz-border-radius: 20px 5px 5px 20px;
    -ms-border-radius: 20px 5px 5px 20px;
    -o-border-radius: 20px 5px 5px 20px;
}

.faq-img .faq-float-img {
    position: absolute;
    top: 2.5rem;
    inset-inline-end: 0;
    width: 18.4375rem;
    height: 25rem;
    border: 0.875rem solid #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

@media (max-width: 575px) {
    .faq-img .faq-float-img {
        width: 12.1875rem;
        height: 15.625rem;
        border-width: 0.5rem;
    }
}

.faq-section-two {
    background-color: var(--light-100);
    padding-bottom: 3.75rem;
}

.faq-four-one {
    width: 395px;
    overflow: hidden;
    border-radius: 0 0 999px 999px;
    -webkit-border-radius: 0 0 999px 999px;
    -moz-border-radius: 0 0 999px 999px;
    -ms-border-radius: 0 0 999px 999px;
    -o-border-radius: 0 0 999px 999px;
    float: right;
}

@media (max-width: 1700px) {
    .faq-four-one {
        width: 230px;
    }
}

@media (max-width: 991px) {
    .faq-four-one {
        display: none;
    }
}

.faq-four-two {
    width: 395px;
    overflow: hidden;
    border-radius: 999px 999px 0 0;
    -webkit-border-radius: 999px 999px 0 0;
    -moz-border-radius: 999px 999px 0 0;
    -ms-border-radius: 999px 999px 0 0;
    -o-border-radius: 999px 999px 0 0;
}

@media (max-width: 1700px) {
    .faq-four-two {
        width: 230px;
    }
}

@media (max-width: 991px) {
    .faq-four-two {
        display: none;
    }
}
/* === faq css end === */
/* === blog css start === */
.blog-one {
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.blog-one .thumb {
    position: relative;
    height: 300px;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.blog-img{
    position: relative;
    margin: 2.5rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 1399px) {
    .blog-one .thumb {
        height: 15.625rem;
    }
}

.blog-one .thumb .blog-date {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    background-color: var(--light-100);
    color: var(--dark-900);
    font-size: 1.125rem;
    text-transform: uppercase;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

@media (max-width: 575px) {
    .blog-one .thumb .blog-date {
        font-size: 1rem;
        width: 70px;
        height: 70px;
    }
}

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

.blog-one .content {
    padding: 1.875rem 2.5rem 2.5rem 2.5rem;
}

@media (max-width: 1399px) {
    .blog-one .content {
        padding: 1.875rem;
    }
}

.blog-one .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 1.25rem;
}

.blog-one .blog-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.blog-one .blog-meta li i {
    color: var(--dark-900);
}

.blog-one .blog-meta li span {
    margin-bottom: -1px;
}

.blog-one .blog-title {
    margin-bottom: 1.25rem;
}

.blog-one .btn {
    margin-top: 2.5rem;
}

.blog-one.style-two .content {
    padding-top: 0;
}

.blog-one.style-two .blog-meta {
    padding: 0.625rem 2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    background-color: var(--light-100);
    border-radius: 0 0 20px 20px;
    -webkit-border-radius: 0 0 20px 20px;
    -moz-border-radius: 0 0 20px 20px;
    -ms-border-radius: 0 0 20px 20px;
    -o-border-radius: 0 0 20px 20px;
}

.blog-list-post .thumb {
    position: relative;
}

.blog-list-post .thumb a {
    display: block;
}

.blog-list-post .thumb img {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    width: 100%;
}

.blog-list-post .thumb .post-date {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width: 575px) {
    .blog-list-post .thumb .post-date {
        font-size: 0.875rem;
    }
}

.blog-list-post .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
}

@media (max-width: 575px) {
    .blog-list-post .blog-meta {
        gap: 0.625rem;
    }
}

.blog-list-post .content {
    padding: 2.5rem;
    background-color: var(--light-100);
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
}

@media (max-width: 575px) {
    .blog-list-post .content {
        padding: 1.5625rem;
    }
}

.blog-list-post .title {
    margin-bottom: 1.25rem;
}

.blog-list-post .title a {
    font-size: 2.625rem;
    font-family: var(--display-font);
    font-weight: 700;
}

@media (max-width: 1399px) {
    .blog-list-post .title a {
        font-size: 2.25rem;
    }
}

@media (max-width: 1199px) {
    .blog-list-post .title a {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .blog-list-post .title a {
        font-size: 1.5rem;
    }
}

.blog-list-post .btn {
    margin-top: 1.875rem;
}

.blog-list-post + .blog-list-post {
    margin-top: 3.75rem;
}

@media (max-width: 991px) {
    .blog-list-post + .blog-list-post {
        margin-top: 2.5rem;
    }
}

.blog-four:hover .blog-four-content {
    background-color: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.11);
}

.blog-four-thumb {
    position: relative;
}

.blog-four-thumb .tags {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.4375rem 1.875rem;
    background-color: var(--secondary-two);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-four-content {
    padding: 1.875rem;
    border: 1px solid #E0E4E8;
    border-top: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .blog-four-content {
        padding: 1.25rem;
    }
}

.blog-four-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.9375rem;
}

@media (max-width: 1199px) {
    .blog-four-title {
        font-size: 1.25rem;
    }
}

.blog-four-title a {
    font-family: var(--display-font);
}

.blog-four-arrow {
    font-weight: 500;
    color: var(--dark);
    margin-top: 1.25rem;
}

.blog-four-arrow:hover {
    color: var(--secondary-two);
}

.blog-four-arrow i {
    margin-left: 0.25rem;
}

.blog-four .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 0.625rem;
}

@media (max-width: 1199px) {
    .blog-four .blog-meta {
        gap: 0.9375rem;
    }
}

.blog-four .blog-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.blog-four .blog-meta li i {
    color: var(--secondary-two);
}

.blog-four .blog-meta li span {
    margin-bottom: -1px;
}

/* === blog css end === */
/* === blog-details css start === */
.blog-details-wrapper {
    background-color: var(--light-100);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.blog-details-wrapper .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
}

@media (max-width: 575px) {
    .blog-details-wrapper .blog-meta {
        gap: 0.625rem;
    }
}

.blog-details-wrapper .blog-details-content {
    padding: 2.5rem;
}

@media (max-width: 575px) {
    .blog-details-wrapper .blog-details-content {
        padding: 1.25rem;
    }
}

.blog-details-wrapper .blog-quote {
    margin-top: 1.25rem;
}

.blog-details-wrapper .check-list li {
    margin-top: 10px;
}

.blog-details-wrapper .check-list li + li {
    margin-top: 10px;
}

.blog-details-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.blog-details-tags li span {
    font-weight: 500;
    color: var(--dark-900);
}

.blog-details-tags li a {
    padding: 0.25rem 0.75rem;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.blog-quote {
    position: relative;
    padding: 1.875rem 1.25rem 1.875rem 5.625rem;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (max-width: 575px) {
    .blog-quote {
        padding: 1.25rem;
    }
}

.blog-quote::before {
    position: absolute;
    content: "\f10d";
    top: 1.875rem;
    inset-inline-start: 1.875rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 1;
    font-size: 2.875rem;
    color: var(--primary);
}

@media (max-width: 575px) {
    .blog-quote::before {
        opacity: 0.1;
    }
}

.blog-quote p {
    font-size: 1.25rem;
}

@media (max-width: 575px) {
    .blog-quote p {
        font-size: 1rem;
    }
}

.blog-quote-name {
    position: relative;
    padding-inline-start: 5rem;
    margin-top: 1.25rem;
}

@media (max-width: 575px) {
    .blog-quote-name {
        padding-inline-start: 3.125rem;
    }
}

.blog-quote-name::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: var(--primary);
    margin-top: -1px;
}

@media (max-width: 575px) {
    .blog-quote-name::before {
        width: 40px;
    }
}

.blog-prev-next {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 3.75rem;
    padding: 1.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
}

.blog-prev-next::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 1px;
    height: 50px;
    background-color: var(--primary);
    margin-top: -25px;
}

@media (max-width: 575px) {
    .blog-prev-next::after {
        display: none;
    }
}

.blog-arrow-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .blog-arrow-item {
        width: 100%;
    }
}

.blog-arrow-item .icon {
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--light-100);
    color: var(--dark-900);
    font-size: 1.375rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

@media (max-width: 575px) {
    .blog-arrow-item .icon {
        width: 2.8125rem;
        height: 2.8125rem;
    }
}

.blog-arrow-item .icon:hover {
    background-color: var(--primary);
    color: #fff;
}

.blog-arrow-item .title {
    max-width: 13ch;
}

.blog-arrow-item.blog-next .title {
    text-align: right;
}

.comment-wrapper {
    margin-top: 3.75rem;
}

.single-comment {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.875rem;
    padding: 1.875rem;
    background-color: var(--light-100);
}

@media (max-width: 575px) {
    .single-comment {
        padding: 1.25rem;
    }
}

.single-comment .thumb {
    width: 65px;
    height: 65px;
}

.single-comment .thumb img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.single-comment .content {
    width: calc(100% - 65px);
    padding-inline-start: 1.25rem;
}

@media (max-width: 575px) {
    .single-comment .content {
        width: 100%;
        padding-inline-start: 0;
        margin-top: 1.25rem;
    }
}

.reply-btn {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark-900);
    text-transform: uppercase;
    padding: 0.1875rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.reply-btn:hover {
    background-color: #fff;
}

.reply-wrapper {
    margin-top: 3.75rem;
}

.reply-wrapper form {
    margin-top: 2.5rem;
}

.reply-wrapper form .form-control,
.reply-wrapper form .form-select {
    border-width: 2px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-box {
    padding: 1.875rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575px) {
    .blog-sidebar-box {
        padding: 1.25rem;
    }
}

.blog-sidebar-box .title {
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.blog-sidebar-search {
    position: relative;
}

.blog-sidebar-search input {
    height: 56px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 0.625rem 1.25rem;
    width: 100%;
}

.blog-sidebar-search button {
    position: absolute;
    top: 50%;
    inset-inline-end: 1.25rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--dark-900);
}

.short-blog-list .short-blog + .short-blog {
    margin-top: 1.25rem;
}

.short-blog {
    display: flex;
    flex-wrap: wrap;
}

.short-blog .thumb {
    width: 80px;
    height: 85px;
    display: block;
}

.short-blog .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.short-blog .content {
    width: calc(100% - 80px);
    padding-inline-start: 0.9375rem;
}

.short-blog .post-date {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.short-blog .post-date i {
    color: var(--primary);
    margin-inline-end: 0.3125rem;
}

.blog-category-list {
    padding: 0.625rem 1.25rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: var(--light-100);
}

.blog-category-list li {
    position: relative;
    padding-inline-start: 1.875rem;
    padding-block: 0.625rem;
}

.blog-category-list li::before {
    position: absolute;
    content: "\f07c";
    top: 10px;
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: var(--primary);
}

.blog-category-list li a {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    color: var(--dark-900);
    transition: all 0.3s;
}

.blog-category-list li a:hover {
    color: var(--primary);
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-tag-list li a {
    padding: 0.3125rem 0.9375rem;
    background-color: var(--light-100);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.3s;
}

.blog-tag-list li a:hover {
    background-color: var(--primary);
    color: #fff;
}

/* === blog-details css end === */
/* === pricing css start === */
.pricing-switcher {
    width: 8.125rem;
    display: flex;
    flex-flow: column;
    gap: 0.625rem;
}

.pricing-switcher .pricing-switcher-btn {
    border-radius: 99px;
    -webkit-border-radius: 99px;
    -moz-border-radius: 99px;
    -ms-border-radius: 99px;
    -o-border-radius: 99px;
    border: 1px solid var(--border-color);
    text-transform: capitalize;
}

.pricing-switcher .pricing-switcher-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pricing-card {
    height: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.pricing-card::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #010D14, rgba(1, 13, 20, 0));
}

.pricing-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.pricing-card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 1;
}

@media (max-width: 575px) {
    .pricing-card-overlay-content {
        padding: 1.25rem;
    }
}

.pricing-card-overlay-content .top {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.pricing-card-overlay-content .top i {
    color: #fff;
    font-size: 4.125rem;
    width: 3.75rem;
}

@media (max-width: 575px) {
    .pricing-card-overlay-content .top i {
        font-size: 3rem;
        width: 2.625rem;
    }
}

.pricing-card-overlay-content .top .title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    width: calc(100% - 3.75rem);
    padding-left: 0.9375rem;
    max-width: 15ch;
}

@media (max-width: 575px) {
    .pricing-card-overlay-content .top .title {
        width: calc(100% - 2.625rem);
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .pricing-card-overlay-content .second-title {
        font-size: 1rem;
    }
}

.pricing-card .pricing-card-social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.875rem;
}

@media (max-width: 575px) {
    .pricing-card .pricing-card-social {
        margin-top: 1.25rem;
    }
}

.pricing-card .pricing-card-social li a {
    width: 26px;
    height: 26px;
    border: 1px solid var(--light-200);
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-one {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-top: 5px solid var(--primary);
    background-color: #fff;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-flow: column;
}

.pricing-one-header {
    padding: 2.5rem 1.875rem;
    text-align: center;
    position: relative;
    background-color: #fff2e6;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}

@media (max-width: 575px) {
    .pricing-one-header {
        padding: 1.25rem 1.5625rem;
    }
}

.pricing-one-header .title {
    font-weight: 700;
    font-size: 1.875rem;
}

@media (max-width: 575px) {
    .pricing-one-header .title {
        font-size: 1.5rem;
    }
}

.pricing-one-body {
    padding: 1.25rem 2.5rem 1.875rem 2.5rem;
}

@media (max-width: 575px) {
    .pricing-one-body {
        padding: 1.5625rem;
    }
}

.pricing-one-body .price {
    font-size: 2.625rem;
    font-weight: 700;
    color: var(--dark-900);
    font-family: var(--display-font);
    margin-bottom: 0.625rem;
}

@media (max-width: 575px) {
    .pricing-one-body .price {
        font-size: 2rem;
    }
}

.pricing-one-body .price sub {
    color: var(--dark-800);
    font-weight: 400;
    font-size: 1rem;
    font-family: var(--body-font);
}

.pricing-one-body .price .yearly-price {
    display: none;
}

.pricing-one .pricing-feature-list {
    margin-top: 2.5rem;
}

.pricing-one .pricing-feature-list li + li {
    margin-top: 0.625rem;
}

.pricing-one .pricing-feature-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.125rem;
}

@media (max-width: 575px) {
    .pricing-one .pricing-feature-list li {
        font-size: 1rem;
    }
}

.pricing-one-footer {
    padding: 1.25rem 2.5rem 1.875rem 2.5rem;
    margin-top: auto;
}

@media (max-width: 575px) {
    .pricing-one-footer {
        padding: 1.25rem 1.5625rem 1.5625rem 1.5625rem;
    }
}

.pricing-section-two .pricing-switcher {
    flex-flow: row;
}

.pricing-section-two .pricing-switcher .btn {
    padding-block: 0.875rem;
    padding-inline: 2.1875rem;
}

.pricing-two {
    padding: 1.875rem 1.875rem 2.5rem 1.875rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    height: 100%;
}

.pricing-two .title {
    margin-bottom: 1.875rem;
}

.pricing-two .price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 0.625rem;
    display: inline-block;
    padding: 0.3125rem 1.875rem;
    background-color: var(--light-100);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media (max-width: 575px) {
    .pricing-two .price {
        font-size: 1.5rem;
    }
}

.pricing-two .price sub {
    color: var(--dark-800);
    font-weight: 400;
    font-size: 1rem;
    font-family: var(--body-font);
}

.pricing-two .price .yearly-price {
    display: none;
}

.pricing-two-feature-list {
    margin-bottom: 1.25rem;
    margin-top: 0.625rem;
}

.pricing-two-feature-list li + li {
    border-top: 1px solid var(--border-color);
}

.pricing-two-feature-list li {
    padding: 0.75rem 0;
}

.pricing-two-feature-list li span {
    color: var(--dark-800);
    display: none;
}

@media (max-width: 1199px) {
    .pricing-two-feature-list li span {
        display: inline-block;
    }
}

.pricing-two-feature-list li i {
    color: var(--dark-900);
}

@media (max-width: 1199px) {
    .pricing-two-feature-list li i {
        margin-inline-end: 0.3125rem;
    }
}

.pricing-two.pricing-two-main {
    text-align: left;
    padding-top: 6rem;
}

.pricing-two.pricing-two-main .price {
    padding: 0;
    background-color: transparent;
}

.pricing-two.pricing-two-main .pricing-two-feature-list li span {
    display: inline-block;
}

/* === pricing css end === */
/* === overview css start === */
.overview-section {
    position: relative;
    z-index: 1;
}

.overview-section::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-color: #fff;
}

@media (max-width: 767px) {
    .overview-section::before {
        height: 140px;
    }
}

.overview-section .overview-section-line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.35;
}

@media (max-width: 991px) {
    .overview-content {
        text-align: center;
    }
}

.overview-content .section-title {
    color: #fff;
}

.overview-content p {
    color: var(--light-200);
    margin-top: 1.25rem;
}

.overview-content .btn {
    margin-top: 2.1875rem;
}

@media (max-width: 991px) {
    .overview-content .btn {
        margin-top: 1.25rem;
    }
}

.overview-item-two {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.125rem 1.25rem 1.75rem 1.25rem;
    background-color: #1B1C28;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 575px) {
    .overview-item-two {
        justify-content: center;
    }
}

.overview-item-two .icon {
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -0.9375rem;
}

.overview-item-two .content {
    width: calc(100% - 60px);
    padding-inline-start: 2.1875rem;
}

@media (max-width: 1199px) {
    .overview-item-two .content {
        padding-inline-start: 1.25rem;
    }
}

@media (max-width: 575px) {
    .overview-item-two .content {
        width: 100%;
        padding-inline-start: 0;
        margin-top: 1.5625rem;
        text-align: center;
    }
}

.overview-item-two .content .amount {
    font-size: 2.625rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--display-font);
}

@media (max-width: 1199px) {
    .overview-item-two .content .amount {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .overview-item-two .content .amount {
        font-size: 2rem;
    }
}

.overview-item-two .content p {
    color: var(--light-200);
    margin-top: 0.5rem;
}

.overview-wrapper {
    padding-top: 5.625rem;
    position: relative;
    z-index: 2;
    margin-top: 4.375rem;
}

@media (max-width: 1199px) {
    .overview-wrapper {
        margin-top: 1.875rem;
    }
}

@media (max-width: 767px) {
    .overview-wrapper {
        padding-top: 1.875rem;
    }
}

.overview-wrapper-inner {
    position: relative;
    padding: 3.75rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .overview-wrapper-inner {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .overview-wrapper-inner {
        text-align: center;
    }
}

.overview-wrapper .section-title {
    margin-bottom: 1.25rem;
}

.overview-wrapper .about-bottom-users {
    margin-top: 1.5625rem;
}

@media (max-width: 767px) {
    .overview-wrapper .about-bottom-users {
        justify-content: center;
    }
}

.overview-wrapper .overview-wrapper-shape {
    position: absolute;
    bottom: 0;
    inset-inline-end: 1.5625rem;
    z-index: -1;
}

.overview-wrapper .overview-wrapper-man {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 1;
    height: 100%;
}

@media (max-width: 767px) {
    .overview-wrapper .overview-wrapper-man {
        display: none;
    }
}

.overview-section-four {
    margin-top: -115px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .overview-section-four {
        margin-top: 5.625rem;
    }
}

@media (max-width: 575px) {
    .overview-section-four {
        margin-top: 3.75rem;
    }
}

.overview-four-content-area {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 2.1875rem;
    align-items: center;
}

@media (max-width: 1199px) {
    .overview-four-content-area {
        padding-bottom: 0;
    }
}

.overview-four-content-area h2 {
    font-weight: 600;
}

.overview-four-content-area p {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 0.9375rem;
}

@media (max-width: 575px) {
    .overview-four-content-area p {
        font-size: 1rem;
    }
}

.overview-four-content-area img {
    width: 80px;
}

.overview-four-content-area .overview-four-content {
    width: calc(100% - 80px);
    padding-left: 30px;
}

.overview-four-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.overview-four-wrapper .overview-four-single {
    width: 50%;
    text-align: center;
    padding: 4.375rem 0.9375rem;
}

@media (max-width: 575px) {
    .overview-four-wrapper .overview-four-single {
        padding: 2.5rem 0.9375rem;
    }
}

.overview-four-wrapper .overview-four-single.overview-four-single-dark {
    background-color: var(--dark);
}

.overview-four-wrapper .overview-four-single.overview-four-single-dark h2 {
    color: var(--primary);
}

.overview-four-wrapper .overview-four-single.overview-four-single-primary {
    background-color: var(--primary);
}

.overview-four-wrapper .overview-four-single.overview-four-single-primary h2 {
    color: #fff;
}

.overview-four-wrapper .overview-four-single h2 {
    font-size: 4.375rem;
}

@media (max-width: 1399px) {
    .overview-four-wrapper .overview-four-single h2 {
        font-size: 3.25rem;
    }
}

@media (max-width: 575px) {
    .overview-four-wrapper .overview-four-single h2 {
        font-size: 2.25rem;
    }
}

.overview-four-wrapper .overview-four-single p {
    color: #fff;
    font-family: var(--display-font);
    font-weight: 600;
    font-size: 1.375rem;
}

@media (max-width: 1399px) {
    .overview-four-wrapper .overview-four-single p {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .overview-four-wrapper .overview-four-single p {
        font-size: 1rem;
    }
}
/* === overview css end === */
/* === gallery css start === */
.gallery-section {
    position: relative;
    overflow: hidden;
}

/*.gallery-section::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 210px;
    background-color: var(--dark-900);
}*/

.gallery-item {
    position: relative;
}

.gallery-item:hover .thumb img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.gallery-item:hover .content {
    bottom: 1.875rem;
    opacity: 1;
}

.gallery-item .thumb {
    height: 34.0625rem;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 1399px) {
    .gallery-item .thumb {
        height: 27.8125rem;
    }
}

@media (max-width: 1199px) {
    .gallery-item .thumb {
        height: 22.125rem;
    }
}

@media (max-width: 991px) {
    .gallery-item .thumb {
        height: 15.625rem;
    }
}

.gallery-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery-item .content {
    position: absolute;
    bottom: 0.625rem;
    left: 1.875rem;
    width: calc(100% - 3.75rem);
    padding: 1.875rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9375rem;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .gallery-item .content {
        left: 0.9375rem;
        width: calc(100% - 1.875rem);
        padding: 1.25rem;
    }
}

.gallery-item .content .gallery-item-btn {
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item.style-md::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, #0B0D26, rgba(217, 217, 217, 0));
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.gallery-item.style-md:hover::before {
    opacity: 1;
}

.gallery-item.style-md .thumb {
    height: 23.75rem;
}

@media (max-width: 1399px) {
    .gallery-item.style-md .thumb {
        height: 19.375rem;
    }
}

@media (max-width: 1399px) {
    .gallery-item.style-md .thumb {
        height: 17.5rem;
    }
}

@media (max-width: 767px) {
    .gallery-item.style-md .thumb {
        height: 13.125rem;
    }
}

.gallery-item.style-md .content {
    z-index: 1;
    background-color: transparent;
    padding: 0;
}

.gallery-item.style-md .content p {
    color: #fff;
}

.gallery-item.style-md .content h3 a {
    color: #fff;
}

.gallery-item.style-md .content h3 a:hover {
    color: var(--primary);
}

.gallery-item.style-md .content .gallery-item-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
}

#galleryTabContent .tab-pane.show .row div[class*=col-] {
    opacity: 1;
    transform: translateY(0);
}

#galleryTabContent .tab-pane .row div[class*=col-] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(1) {
    transition-delay: 0.1s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(2) {
    transition-delay: 0.2s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(3) {
    transition-delay: 0.3s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(4) {
    transition-delay: 0.4s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(5) {
    transition-delay: 0.5s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(6) {
    transition-delay: 0.6s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(7) {
    transition-delay: 0.7s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(8) {
    transition-delay: 0.8s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(9) {
    transition-delay: 0.9s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(10) {
    transition-delay: 0.1s;
}

.gallery-slider .slick-list {
    margin: 0 -0.9375rem;
}

@media (max-width: 991px) {
    .gallery-slider .slick-list {
        margin: 0 -0.625rem;
    }
}

.gallery-slider .gallery-slide {
    padding: 0 0.9375rem;
}

@media (max-width: 991px) {
    .gallery-slider .gallery-slide {
        padding: 0 0.625rem;
    }
}

.gallery-slider .gallery-slide.slick-active:not(.slick-current) .gallery .thumb {
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0;
}

.gallery-slider .gallery-slide.slick-current ~ .slick-active .gallery .thumb {
    border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
}

.gallery-section-four {
    position: relative;
    z-index: 1;
}

.gallery-section-four .gallery-section-four-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: -1;
}

/* === gallery css end === */
/* === video css start === */
.video-section-one {
    position: relative;
    z-index: 1;
}

.video-section-one::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-color: var(--light-100);
    z-index: -1;
}

@media (max-width: 991px) {
    .video-section-one::before {
        height: 120px;
    }
}

@media (max-width: 767px) {
    .video-section-one::before {
        height: 80px;
    }
}

.video-wrapper {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.video-wrapper-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.375rem;
    height: 4.375rem;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.375rem;
}

@media (max-width: 575px) {
    .video-wrapper-btn {
        width: 2.8125rem;
        height: 2.8125rem;
        font-size: 0.875rem;
    }
}
/* === video css end === */
/* === choose css start === */
.choose-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.choose-section-line {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.35;
    z-index: -1;
}

.choose-item {
    padding: 1.25rem 1.875rem;
    background-color: var(--dark-700);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-left: 1px solid var(--primary);
}

.choose-item-title {
    color: #fff;
    margin-bottom: 0.75rem;
}

.choose-item p {
    color: #fff;
}

.choose-thumb-one {
    padding-right: 30px;
    position: relative;
}

.choose-thumb-one img {
    border-radius: 50px 0 0 50px;
    -webkit-border-radius: 50px 0 0 50px;
    -moz-border-radius: 50px 0 0 50px;
    -ms-border-radius: 50px 0 0 50px;
    -o-border-radius: 50px 0 0 50px;
}

.choose-thumb-one::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background-color: var(--secondary);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.choose-thumb-two {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.875rem;
}

.choose-thumb-two .content {
    width: 190px;
    background-color: var(--primary);
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 1.875rem;
    border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
}

.choose-thumb-two .content h3 {
    color: #fff;
    font-family: var(--display-font);
    font-weight: 700;
    font-size: 4.125rem;
    margin-top: -0.625rem;
}

.choose-thumb-two .content p {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
}

.choose-thumb-two img {
    width: calc(100% - 190px);
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    border-radius: 0 50px 50px 0;
    -webkit-border-radius: 0 50px 50px 0;
    -moz-border-radius: 0 50px 50px 0;
    -ms-border-radius: 0 50px 50px 0;
    -o-border-radius: 0 50px 50px 0;
}

/* === choose css end === */
/* === contact css start === */
.contact-item {
    padding: 1.875rem;
    background-color: var(--light-100);
    height: 100%;
}

.contact-item .icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    color: var(--secondary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.contact-item .content {
    margin-top: 1.25rem;
}

.contact-item .content p {
    margin-top: 0.9375rem;
}

.contact-item .content a {
    word-break: break-all;
}

.contact-map {
    filter: grayscale(1);
}

.contact-map iframe {
    width: 100%;
    height: 650px;
    border: none;
}

@media (max-width: 1399px) {
    .contact-map iframe {
        height: 550px;
    }
}

@media (max-width: 991px) {
    .contact-map iframe {
        height: 450px;
    }
}

@media (max-width: 575px) {
    .contact-map iframe {
        height: 300px;
    }
}
/* === contact css end === */
/* === how work css start === */
.how-work-wrapper {
    position: relative;
}

.how-work-wrapper::before {
    position: absolute;
    content: "";
    top: 16px;
    left: 30px;
    width: calc(100% - 60px);
    height: 170px;
    background-color: transparent;
    border: 1.5px dashed #D7CDCD;
}

@media (max-width: 991px) {
    .how-work-wrapper::before {
        display: none;
    }
}

.how-work-item {
    position: relative;
    padding: 1.875rem 1.5625rem;
    background-color: #fff;
    border-radius: 0 0 25px 25px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    -ms-border-radius: 0 0 25px 25px;
    -o-border-radius: 0 0 25px 25px;
    box-shadow: 0 4px 23px rgba(0, 0, 0, 0.07);
    margin-top: 57px;
}

.how-work-item::before {
    position: absolute;
}

.how-work-item:hover .how-work-item-icon .icon-bg-shape.front-shape {
    opacity: 0;
}

.how-work-item:hover .how-work-item-icon .icon-bg-shape.back-shape {
    opacity: 1;
}

.how-work-item-icon {
    width: 95px;
    height: 103px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-work-item-icon .icon-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.how-work-item-icon .icon-bg-shape.back-shape {
    opacity: 0;
}

.how-work-item-content {
    text-align: center;
    margin-top: 1.25rem;
}

.how-work-item-content p {
    margin-top: 0.625rem;
}

.how-work-item-title {
    font-family: var(--display-font);
    font-weight: 600;
}

.how-work-item-count {
    position: absolute;
    left: 50%;
    top: -57px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--dark);
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* === how work css end === */
/* === call and message css start === */
.call-message-section {
    position: relative;
    z-index: 1;
}

.call-message-section .call-message-bg {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    z-index: -1;
}

.call-wrapper {
    background-color: var(--dark);
    position: relative;
    padding: 3.75rem 1.875rem;
    z-index: 1;
}

@media (max-width: 1199px) {
    .call-wrapper {
        padding: 2.5rem 1.25rem;
    }
}

.call-wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 57%;
    height: 100%;
    background-color: var(--secondary-two);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .call-wrapper::before {
        width: 53%;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    }
}

.call-wrapper-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--display-font);
}

@media (max-width: 1199px) {
    .call-wrapper-title {
        font-size: 1.75rem;
    }
}

.call-wrapper-details {
    color: #fff;
    font-weight: 500;
    margin-top: 0.9375rem;
}

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

.call-item-icon {
    width: 90px;
    height: 90px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media (max-width: 1199px) {
    .call-item-icon {
        width: 70px;
        height: 70px;
    }
}

.call-item-icon img {
    max-height: 80px;
}

@media (max-width: 1199px) {
    .call-item-icon img {
        max-height: 40px;
    }
}

.call-item-content {
    width: calc(100% - 90px);
    padding-left: 1.25rem;
}

@media (max-width: 1199px) {
    .call-item-content {
        width: calc(100% - 70px);
    }
}

.call-item-time {
    color: #fff;
    margin-bottom: 0.625rem;
}

.call-item-number {
    font-size: 2.25rem;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .call-item-number {
        font-size: 1.75rem;
    }
}

.call-item-number a {
    color: #fff;
}

.call-item-number a:hover {
    color: var(--primary);
}

.message-wrapper {
    margin-top: 2.5rem;
    position: relative;
}

.message-content-area {
    margin-top: 2.8125rem;
}

.message-content-area .message-details {
    margin-top: 1.25rem;
}

.message-content-area .message-content-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9375rem;
    margin-top: 3.4375rem;
}

.message-list-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.1875rem;
}

.message-list-item-thumb {
    width: 148px;
}

.message-list-item-list {
    width: calc(100% - 148px);
    padding-left: 1.25rem;
}

@media (max-width: 575px) {
    .message-list-item-list {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

.message-list-item .check-list li + li {
    margin-top: 0.625rem;
}

.message-list-item .check-list li {
    color: var(--dark);
    font-weight: 500;
}

.message-thumb {
    position: relative;
    z-index: 1;
}

.message-thumb::before {
    position: absolute;
    content: "";
    top: 20%;
    right: 0;
    width: 320px;
    height: 320px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
}

.message-item-wrapper {
    position: absolute;
    width: 43%;
    bottom: 0;
    right: 0;
    background-color: var(--secondary-two);
    padding: 1.875rem 3.75rem;
    z-index: 1;
    border-radius: 35px 0 0 0;
    -webkit-border-radius: 35px 0 0 0;
    -moz-border-radius: 35px 0 0 0;
    -ms-border-radius: 35px 0 0 0;
    -o-border-radius: 35px 0 0 0;
}

@media (max-width: 1700px) {
    .message-item-wrapper {
        width: 52%;
    }
}

@media (max-width: 1399px) {
    .message-item-wrapper {
        width: 57%;
        padding: 1.25rem 1.875rem;
    }
}

@media (max-width: 1199px) {
    .message-item-wrapper {
        position: static;
        width: 100%;
    }
}

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

.message-item-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: var(--primary);
    font-size: 1.75rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1399px) {
    .message-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.message-item-content {
    width: calc(100% - 80px);
    padding-left: 1.25rem;
}

@media (max-width: 1399px) {
    .message-item-content {
        width: calc(100% - 60px);
    }
}

.message-item-caption {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.message-item-contact {
    font-weight: 500;
    font-size: 1.25rem;
    color: #fff;
}

@media (max-width: 1399px) {
    .message-item-contact {
        font-size: 1rem;
    }
}

.message-item-contact a {
    color: #fff;
}

/* === call and message css end === */
/*# sourceMappingURL=main.css.map */



.thank {
    text-align: center;
    margin-top: 20%;
 
}
.thank h3{
  margin-bottom: 40px;
}
.thank .btn{
    color: white !important;
}



.wc_whatsapp_app {
    position: fixed;
    bottom: 90px;
    z-index: 9999999999;
    display: flex;
    align-items: center;
  }
  .wc_whatsapp_app:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
  
    display: block;
    width: 70px;
    height: 70px;
    
    border-radius: 50%;
  
}
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  .wc_whatsapp_app.left {
    left: 30px;
  }
  .wc_whatsapp_app.right {
    right: 12px;
    bottom: 120px;
}
  .wc_whatsapp {
    z-index: 10;
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 2px 2px 20px 8px rgba(0, 0, 0, 0.2);
    transition: all ease 0.2s;
  }
  .wc_whatsapp:hover,
  .wc_whatsapp:focus {
    box-shadow: 2px 2px 20px 8px rgba(0, 0, 0, 0.2);
    background: #179345;
  }
  .wc_whatsapp::before {
    content: "";
    display: block;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='icon' data-icon='whatsapp' class='svg-inline' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%23fff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'%3e%3c/path%3e%3c/svg%3e")
      top center no-repeat;
    height: 30px;
    margin-top: 15px;
  }
  
  
  .wc_whatsapp_secondary {
    width: 165px;
    position: absolute;
    right: 75px;
    text-align: center;
  }
  .wc_whatsapp_secondary p {
    text-transform: uppercase;
    margin-left: 15px;
    border: 1px solid #e2e2e2;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    position: relative;
    color: #263b50;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14px;
    background: #fff;
  }
  .wc_whatsapp_secondary p::before {
    left: auto;
    content: "";
    position: absolute;
    background: white;
    border-top: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
    right: -5px;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    z-index: 1;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .floating_btn2 {
    position: fixed;
    bottom: 180px;
    right: 0px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  .contact_icon2 {
    background-color: #345770;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 #373435;
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
}
  .text_icon2 {
    margin-top: 8px;
    color: white;
    font-size: 13px;
  }
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
   
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }
  
  
  .text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
  }
  .post-body ul li{
    text-transform: capitalize;
  }
  .open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
  }
  
  /* The popup form - hidden by default */
  .form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 100px;
    border: 3px solid #f1f1f1;
    z-index: 1001; /* Ensure it's higher than other elements */
  }
  .floating_btn2 {
    z-index: 1000; /* Slightly lower than the popup */
  }
  
  
  /* Add styles to the form container */
  .form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
  }
  
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
    background-color: var(--primary);
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: var(--secondary);
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }
  .bro {
    display: flex;
    column-gap: 20px;
} 
    
