/* Form */
label {
    font-weight: 500;
}

.form-label {
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: .45rem .9rem;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none;
    }
}

.form-control[type=file] {
    overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control:focus {
    color: #6c757d;
    background-color: #fff;
    border-color: #bbbec2;
    outline: 0;
    box-shadow: none;
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control::-webkit-input-placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-control::placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f3f3f3;
    opacity: 1;
}

.form-check {
    display: block;
    min-height: 1rem;
    padding-left: 1.612em;
    margin-bottom: 0;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.612em;
}

.form-check-input {
    width: 1.312em;
    height: 1.312em;
    margin-top: .194em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #ced4da;
    appearance: none;
    transition: background-color .15s ease-in-out, background-position .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-check-input {
        -webkit-transition: none;
        transition: none;
    }
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input:active {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: #c8cbcf;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.form-switch {
    padding-left: 2.5em;
}

.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23dee2e6'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-switch .form-check-input {
        -webkit-transition: none;
        transition: none;
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23c8cbcf'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

/* Helpers */

.bg-soft-warning {
    background-color: rgba(247, 184, 75, .18) !important;
}

.bg-soft-success {
    background-color: rgba(10, 179, 156, .1) !important;
}

.border-dashed {
    border-style: dashed !important;
}

.link-secondary {
    color: var(--dark-gray);
    font-weight: 500;
}

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

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

.fs-13 {
    font-size: 13px !important;
}

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

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

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

.fs-22 {
    font-size: 22px !important;
}

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

.fw-semibold {
    font-weight: 600 !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
    color: var(--dark-gray);
    font-weight: 500;
}

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

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

.text-primary {
    color: #727cf5 !important;
}

.text-info {
    color: #39afd1 !important;
}

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

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

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

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

.float-right {
    float: right !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.login-pages {
    align-items: center;
    display: flex;
    min-height: 100vh;
}

.error-pages {
    align-items: center;
    display: flex;
    min-height: 100vh;
}

.text-error {
    color: var(--black);
    text-shadow: #dfe0e2;
    font-size: 80px;
    margin-bottom: 20px;
}

.card {
    border: 1px solid var(--b-border-color);
    margin-bottom: 24px;
}

.card-header,
.card-title {
    margin-top: 0;
}

.card-header {
    padding: 0.75rem 1.5rem;
    margin-bottom: 0;
    border-bottom: none
}

/* Btns */

.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: #6c757d;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .45rem 5rem;
    font-size: .8rem;
    border-radius: .15rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        transition: none
    }
}

.btn:hover {
    color: #6c757d
}

.btn-warning {
    color: var(--black);
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.btn-warning:hover {
    color: var(--black);
    background-color: #ffc626;
    border-color: #ffc31a
}

.btn-check:focus + .btn-warning,
.btn-warning:focus {
    color: var(--black);
    background-color: #ffc626;
    border-color: #ffc31a;
    box-shadow: 0 0 0 .2rem rgba(224, 169, 11, .5)
}

.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
    color: var(--black);
    background-color: #ffc933;
    border-color: #ffc31a
}

.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(224, 169, 11, .5)
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: var(--black);
    background-color: #ffbc00;
    border-color: #ffbc00
}

.form-switch-md .form-check-input {
    width: 40px;
    height: 20px;
    margin-right: 5px;
    position: relative;
    vertical-align: text-bottom;
}

.login-pages i {
    color: var(--yellow);
    text-shadow: rgb(255 200 87 / 30%) 5px 1px, rgb(255 200 87 / 20%) 10px 3px;
    font-size: 85px;
    margin-bottom: 20px;
}

.page-wrapper {
    position: relative;
}

.page-start {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.page1 {
    padding: 100px 0;
}

.page1 img {
    width: 35%;
    height: 100%;
}

.page1 h3 {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.page-start .sub-content {
    font-size: 16px;
    color: #636e72;
    font-weight: 500;
    line-height: 25px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-start .btn {
    margin-top: 1px;
}

.page-start-text {
    font-size: 12px;
    line-height: 12px;
    color: #636e72;
    font-weight: 500;
}

@media screen and (max-width: 575px) {
    .page-start {
        padding: 20px 0;
    }
}

@media (max-width: 575px) {
    .page1 img {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .page1 h3 {
        font-size: 40px;
        font-weight: 700;
    }
}

@media screen and (max-width: 991px) {
    .page-start .sub-content {
        font-size: 14px;
        line-height: 25px;
        margin-top: 10px;
    }
}

.btn-light {
    color: var(--black);
    background-color: #dfe0e2;
    border-color: #dfe0e2;
}

.btn-light:hover {
    color: var(--black);
    background-color: #d3d3d3;
    border-color: #d3d3d3;
}

.btn-light:focus,
.btn-light.focus {
    color: var(--black);
    background-color: #d3d3d3;
    border-color: #d3d3d3;
    box-shadow: 0 0 0 0.2rem rgba(165, 175, 191, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: var(--black);
    background-color: #d3d3d3;
    border-color: #d3d3d3;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
    color: var(--black);
    background-color: #d3d3d3;
    border-color: #d3d3d3;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(165, 175, 191, 0.5);
}

.bg-light {
    background: #dfe0e2 !important;
}

/* Landing Page */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --secondary-color: #FFFF;
    --accent-color: #FFC857;
    --accent-secondary-color: #9EFF8C;
    --white-color: #FFFFFF;
    --divider-color: #3B545024;
    --dark-divider-color: #FFFFFF3D;
    --error-color: rgb(230, 87, 87);
    --default-font: "Plus Jakarta Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #ffffff;
    background-color: #1770c8;
}

*::selection {
    color: #ffffff;
    background-color: #1770c8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 0;
    font-weight: 400;
    color: #404A60;
    background-color: #ffffff;
    overflow-x: hidden;
}

section, footer {
    overflow-x: hidden;
}

a,
button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    outline: 0;
    transition: all 0.35s ease-in-out;

}

a i,
button i {
    transition: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

a:hover,
button:hover {
    text-decoration: none;
    border: 0;
    outline: 0;
}

button {
    cursor: pointer;
}

button:focus {
    box-shadow: none;
}

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

html,
body,
div,
h1,
h2,
h4,
h5,
p,
a,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
}

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

a,
button {
    font-size: 16px;
    line-height: 1.2;
    color: #222E48;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    letter-spacing: uppercase;
}

a:hover,
button:hover {
    color: #000000;
}

p,
li,
span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: #1c1c1c;
}

.cmn-display {
    font-size: 45px;
    font-weight: 600;
    color: #1C1C1C;
}

@media screen and (max-width: 1399px) {
    .cmn-display {
        font-size: 48px;
    }
}

@media screen and (max-width: 1199px) {
    .cmn-display {
        font-size: 39px;
    }
}

@media screen and (max-width: 991px) {
    .cmn-display {
        font-size: 36px;
    }
}

@media screen and (max-width: 575px) {
    .cmn-display {
        font-size: 30px;
    }
}

@media screen and (max-width: 480px) {
    .cmn-display {
        font-size: 28px;
    }
}

h1,
h2,
h4,
h5 {
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    color: #222E48;
    letter-spacing: inherit;
}

h1 {
    font-weight: 600;
    font-size: 48px;
}

h2 {
    font-weight: 600;
    font-size: 40px;
}

h4 {
    font-weight: 600;
    font-size: 24px;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

.fs-small {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1399px) {
    h4 {
        font-size: 22px;
    }
}

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

    h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 36px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }
}

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

    h2 {
        font-size: 26px;
    }
}

.mt_60 {
    margin-top: 60px !important;
}

@media (max-width: 991px) {
    .mt_60 {
        margin-top: 48px !important;
    }
}

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

.btn {
    border: none;
}

.btn:active {
    border: none;
}

.cmn-bg {
    background-color: #fbecd7;
    background-image: url(../images/bg.dfb74a3f33f749ec.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.cmn-bg-2 {
    background-color: #EDEDED;
    background-image: url(../images/bg.dfb74a3f33f749ec.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

@media (min-width: 1600px) {
    .unset-xxl-left {
        display: flex;
        justify-content: end;
    }

    .unset-xxl-left img {
        max-width: unset;
    }
}

.nice-select .list:hover .option:not(:hover) {
    background: #074C3E;
}

.card {
    display: flex;
    border: none;
    gap: 22px;
    padding: 24px;
}

.card .card__title {
    margin-bottom: 6px;
    color: #1c1c1c;
    font-weight: 700;
    font-size: 20px
}

.card--custom {
    background-color: #0000000a;
    border-radius: 7px 115px 7px 7px;
    padding: 65px 50px;
}

.section {
    padding: 120px 0;
}

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

.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__header .section__header-title {
    margin-bottom: 10px;
    font-weight: 700;
    color: #1C1C1C;
}

.section__header .section__header-content {
    margin: 0 auto;
    font-size: 18px;
}

.section__content .section__content-title {
    margin-bottom: 24px;
    font-weight: 700;
    color: #1c1c1c;
}

.section__content .section__content-text {
    margin-bottom: 24px;
}

.section__content .section__content-text:nth-last-of-type(1) {
    margin-bottom: 0;
    color: #1c1c1c;
}

.section__content .section__content-inner {
    margin-top: 32px;
}

.section__content ul.section__content-list li::marker,
.banner__content ul.section__content-list li::marker {
    color: #404A60;
}

.social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.number-bullet {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1C1C1C;
    color: white;
}

.social_box {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.social_box::after {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -2;
}

.social_box i {
    transition: all 0.35s ease-in-out;
    font-size: 18px;
    color: white;
}

/* .social_box:hover, .social_box:focus {
  background: #074C3E;
}
.social_box:hover span, .social_box:focus span {
  width: 150px;
  height: 150px;
}
.social_box:hover i, .social_box:focus i {
  color: white;
} */

.social_box {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_box::after {
    z-index: -2;
}

.social_box i {
    font-size: 16px;
}

.scrollToTop {
    position: fixed;
    right: 30px;
    bottom: -10px;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: #FFC857;
    font-size: 22px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    color: #1c1c1c !important;
    transition: 0.3s;
    transform: translateY(100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrollToTop:hover {
    color: #ffffff !important;
}

.scrollToTop:focus {
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    .btn_theme {
        padding: 10px 20px;
    }

    .btn_theme i {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .social_box {
        width: 32px;
        min-width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .btn_theme {
        padding: 10px 18px;
    }

    .btn_theme i {
        font-size: 13px;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion .accordion-item {
    padding: 12px 20px;
    --bs-accordion-border-width: 0;
    border-radius: 16px;
    border: 1px solid #DFE0E4;
    background: rgba(7, 76, 62, 0.05);
}

.accordion .accordion-item .accordion-body {
    color: #1C1C1C;
    padding: 12px 0 0;
    margin-top: 12px;
}

.accordion .accordion-item .accordion-body p {
    font-size: 16px;
    color: #1C1C1C;
}

.accordion .accordion-item .show .accordion-body {
    position: relative;
}

.accordion .accordion-item .show .accordion-body:before {
    content: "";
    position: absolute;
    border-top: 1px dotted #C1C4CC;
    width: 100%;
    top: 0;
    opacity: 1;
}

.accordion .accordion-button {
    padding: 0;
    position: relative;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
}

.accordion .accordion-button::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    background: #074C3E;
    color: white;
    opacity: 1;
    transition: all 0.35s ease-in-out;
}

.accordion .accordion-button:not(.collapsed) {
    --bs-accordion-btn-icon-transform: rotate(180deg);
}

.accordion .accordion-button:not(.collapsed)::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: white;
    background: #FCB650;
}

.accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: unset;
}

@media (max-width: 767px) {
    .accordion .accordion-button {
        font-size: 16px;
    }

    .accordion .accordion-button::after {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}

@keyframes previewShapeX {
    0% {
        transform: translateX(-15px);
    }
    50% {
        transform: translateX(15px);
    }
    100% {
        transform: translateX(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 299;
    border-bottom: 1px solid #0000001f;
}

.index .navbar .navbar-toggler i {
    color: #222E48;
}

.header-section .navbar {
    padding: 10px 0;
    margin: 0;
    position: relative;
    gap: 40px;
}

.header-section .navbar:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.header-section .navbar .navbar-toggler {
    font-size: x-large;
    color: #ffffff;
    border: none !important;
}

.header-section .navbar .navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}

.navbar-brand {
    margin-right: 0;
}

.main-menu.index-page .navbar-nav .nav-item .nav-link {
    color: #1C1C1C;
}

.main-menu {
    width: 100%;
    z-index: 299;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main-menu .navbar-nav {
    display: flex;
    gap: 8px;
}

.main-menu .navbar-nav .dropdown-menu {
    max-height: 420px;
    overflow-y: auto;
}

.main-menu .navbar-nav .dropdown-menu::-webkit-scrollbar {
    width: 0.4vw;
}

.main-menu .navbar-nav .dropdown-menu::-webkit-scrollbar-track {
    background-color: #cae6f7;
}

.main-menu .navbar-nav .dropdown-menu::-webkit-scrollbar-button, .main-menu .navbar-nav .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #074C3E;
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

.main-menu .navbar-nav .nav-item .nav-link {
    line-height: 1.2;
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    padding: 24px 8px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.main-menu .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    border: none;
    content: "\f4fe";
    font-family: "bootstrap-icons";
    margin-left: auto;
    transform: rotate(0deg);
    transition: all 0.35s ease-in-out;
}

.main-menu .navbar-nav .nav-item .nav-link:focus, .main-menu .navbar-nav .nav-item .nav-link:hover {
    color: #fff !important;
}

.main-menu .dropdown-item.active,
.main-menu .dropdown-item:active {
    background-color: transparent !important;
}

.main-menu .nav-right .nav-right__search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-menu .nav-right .material-symbols-outlined {
    color: #ffffff;
    cursor: pointer;
}

.main-menu .nav-right .nav-right__search-inner {
    margin-top: 30px;
    display: none;
    position: absolute;
    right: 0;
    width: 50%;
}

.main-menu .nav-right .nav-right__search-inner .inner__form {
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 6px 12px -2px rgba(88, 82, 129, 0.08);
}

.main-menu .nav-right .nav-right__search-inner .inner__form .form-control {
    padding: 16px;
    border: none;
}

.main-menu .nav-right .nav-right__search-inner .search_icon {
    padding: 16px;
    background: #074C3E;
    color: #ffffff;
    border-radius: 5px;
}

.main-menu .nav-right .nav-right__search-inner .search_icon i {
    font-size: 24px;
}

.nav-link.active {
    color: #FCB650 !important;
}

.header-active {
    position: fixed;
    top: -70px;
    transform: translateY(70px);
    transition: transform 0.5s;
    background-color: #03211B;
    left: 0;
    width: 100%;
}

.header-active .navbar:after {
    border-bottom: none;
}

.index.header-active {
    background: #FFC857;
    border-bottom: none;
}

@media (max-width: 1599px) {
    .main-menu .navbar-nav {
        gap: 4px;
    }

    .main-menu .navbar-nav .nav-item .nav-link {
        padding: 24px 8px;
    }

    .main-menu .nav-right .nav-right__search {
        gap: 16px;
    }
}

@media (min-width: 1200px) {
    .offcanvas {
        display: none;
    }

    .offcanvas-backdrop.show {
        opacity: 0;
    }

    .nav-item .dropdown-menu {
        inset-inline-start: 0;
        inset-block-start: calc(100% + 0.5rem);
        pointer-events: none;
        min-width: 230px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: #074C3E;
        margin: 0;
        text-transform: capitalize;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 30px 70px 0 rgba(0, 0, 0, 0.15);
        padding: 18px 0;
        border-radius: 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        z-index: 9;
    }

    .nav-item .dropdown-menu li {
        margin-left: 0;
        text-align: left;
    }

    .nav-item .dropdown-menu li a {
        padding: 9px 15px 9px 25px;
        line-height: 1.4;
        font-weight: 500;
        color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .nav-item .dropdown-menu li:hover a {
        color: #ffffff;
        transform: translateX(8px);
        background: transparent;
        width: 90%;
    }

    .main-menu .navbar-nav .nav-item:hover .nav-link.dropdown-toggle::after {
        content: "\f2ea";
        transform: rotate(-180deg);
    }

    .nav-item:hover > .dropdown-menu {
        inset-block-start: 100%;
        pointer-events: unset;
        visibility: visible;
        opacity: 1;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        background: transparent !important;
    }
}

@media (max-width: 1399px) {
    .navbar-brand img {
        max-width: 75% !important;
    }
}

@media (max-width: 1199px) {
    .nav-item .nav-link .dropdown-toggle.show::after {
        content: "\f2ea";
        transform: rotate(90deg);
        transition: all 0.35s ease-in-out;
    }

    .offcanvas {
        background-color: #1C1C1C;
        background-repeat: no-repeat;
        background-position: right center;
        background-size: cover;
        min-height: 100vh;
        height: 100%;
        min-width: 100%;
        width: 100%;
        overflow: clip !important;
        display: unset !important;
        border-left: none !important;
    }

    .offcanvas .offcanvas-body {
        padding: 0;
        overflow: clip;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left {
        padding: 65px 30px 40px 60px;
        overflow: hidden;
        overflow-y: auto;
        height: 100%;
        max-height: 100vh;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left::-webkit-scrollbar {
        width: 0;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .dropdown-toggle::after {
        border: none;
        content: "\f4fe";
        font-family: "bootstrap-icons";
        font-size: 24px;
        margin-left: auto;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .dropdown-toggle.show::after {
        border: none;
        content: "\f2ea";
        font-family: "bootstrap-icons";
        font-size: 30px;
        margin-left: auto;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav li a {
        color: white;
        font-size: 24px;
        font-weight: 600;
        padding: 24px 0;
        border-bottom: 1px solid rgba(233, 248, 247, 0.1254901961);
        text-transform: capitalize;
        transition: all 0.35s ease-in-out;
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        background: transparent;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav li a:hover {
        color: #FCB650;
        background: transparent;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .dropdown-menu.show {
        position: unset !important;
        margin-left: 70px !important;
        transform: translate(0px) !important;
        border: none !important;
        background: transparent;
    }

    .offcanvas .offcanvas-body .custom-nevbar__right {
        padding: 5px 30px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        gap: 60px;
    }

    .offcanvas .offcanvas-body .custom-nevbar__right .custom-nevbar__right-location {
        display: flex;
        flex-direction: column;
        gap: 20px;
        color: rgb(228, 226, 226);
    }

    .offcanvas .offcanvas-body .custom-nevbar__right .custom-nevbar__right-location p {
        font-size: 16px;
        color: rgb(228, 226, 226);
    }

    .offcanvas .offcanvas-body .custom-nevbar__right .custom-nevbar__right-location .contact {
        color: white;
    }

    .offcanvas .offcanvas-body button.close-icon {
        display: block;
        background: transparent;
        text-align: end;
        position: absolute;
        top: 16px;
        right: 24px;
        z-index: 9;
    }

    .offcanvas .offcanvas-body button.close-icon i {
        border: 1px solid #FFC857;
        border-radius: 50%;
        color: #FFC857;
        padding: 8px;
        font-size: 30px;
        transition: all 0.35s ease-in-out;
    }

    .offcanvas .offcanvas-body button.close-icon i:hover {
        border: 1px solid #ffffff;
        color: #ffffff;
    }

    .header-section .navbar {
        padding: 20px 0;
    }

    .header-section .navbar-toggler span {
        color: white;
    }

    .main-menu {
        display: block;
        height: 80vh;
        overflow-y: auto;
    }

    .main-menu::-webkit-scrollbar {
        width: 0;
    }

    .main-menu .navbar-nav {
        margin-top: 30px;
    }

    .main-menu .navbar-nav .nav-item .nav-link {
        padding: 10px 8px;
        justify-content: start;
    }

    .main-menu .navbar-nav .nav-item .nav-link:hover:before {
        display: none;
    }

    .main-menu .navbar-nav .dropdown-menu {
        background: transparent;
        border: none;
        margin-left: 30px;
    }

    .main-menu .navbar-nav .dropdown-menu li a {
        padding: 9px 15px 9px 25px;
        line-height: 1.4;
        font-weight: 500;
        text-transform: capitalize;
        transition: all 0.3s ease-in-out;
    }

    .main-menu .navbar-nav .dropdown-menu li a :hover {
        color: #FCB650;
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        background: transparent !important;
    }
}

@media (max-width: 991px) {
    .offcanvas .offcanvas-body button.close-icon i {
        padding: 7px;
        font-size: 26px;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav li a {
        font-size: 24px;
        padding: 18px 0;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .dropdown-menu.show {
        margin-left: 30px !important;
    }

    .offcanvas .offcanvas-body .custom-nevbar__right .custom-nevbar__right-location li .contact {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .offcanvas .offcanvas-body {
        overflow-y: auto;
        min-height: 100%;
        height: 100%;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left {
        padding: 85px 70px 0;
        max-height: none;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav li a {
        font-size: 20px;
        padding: 18px 0;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .dropdown-toggle.show::after, .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .dropdown-toggle::after {
        font-size: 20px;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left .custom-nevbar__nav .menu_item:first-child > a {
        padding-top: 0;
    }

    .offcanvas .offcanvas-body button.close-icon span {
        font-size: 24px;
    }

    .offcanvas .offcanvas-body .custom-nevbar__right {
        padding: 60px 70px 0;
    }

    .offcanvas .offcanvas-body .custom-nevbar__right .custom-nevbar__right-location li .contact {
        font-size: 18px !important;
    }
}

@media (max-width: 575px) {
    .main-menu .col-12 {
        max-width: 100%;
    }

    .main-menu {
        padding: 0;
    }

    .header-section .navbar .navbar-brand {
        width: 60%;
        padding-left: 0;
    }

    .header-section .navbar-toggler span {
        margin-right: 0;
    }

    .offcanvas .offcanvas-body .custom-nevbar__left {
        padding: 80px 30px 0;
    }

    .offcanvas .offcanvas-body .custom-nevbar__right {
        padding: 50px 30px 0;
    }
}

@media (max-width: 400px) {
    .header-section .navbar .navbar-brand {
        padding-left: 12px;
    }
}

@keyframes updown {
    50% {
        transform: translateY(20px);
    }
}

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

.choose-content5 .choose5-listing-info {
    margin: 40px 0;
    display: grid;
    gap: 30px;
}

.choose-content5 .choose5-listing-info .choose5-listing-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.choose-content5 .choose5-listing-info .choose5-listing-item .icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 43px;
}

.choose-content5 .choose5-listing-info .choose5-listing-item .icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.choose-content5 .choose5-listing-info .choose5-listing-item h4 {
    color: #1c1c1c;
    font-weight: 700;
}

.choose-content5 .choose5-listing-info .choose5-listing-item p {
    font-size: 16px;
    color: #1C1C1C;
}

.choose-content5 .choose5-listing-info .choose5-listing-item .line {
    opacity: 0.5;
    background: #1C1C1C;
    height: 60px;
    width: 1px;
}

@media screen and (max-width: 575px) {
    .choose-content5 .choose5-listing-info {
        margin: 24px 0;
        gap: 10px;
    }

    .choose-content5 .choose5-listing-info .choose5-listing-item {
        gap: 14px;
        align-items: normal;
    }

    .choose-content5 .choose5-listing-info .choose5-listing-item .icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .choose-content5 .choose5-listing-info .choose5-listing-item .icon img {
        width: 69px;
        height: 69px;
        object-fit: contain;
    }

    .choose-content5 .choose5-listing-info .choose5-listing-item p {
        font-size: 14px;
    }

    .choose-content5 .choose5-listing-info .choose5-listing-item .line {
        display: none;
    }
}

.choose5-thumb {
    animation: updown 2s linear infinite;
}

.choose5-thumb img {
    max-width: unset;
}

@media screen and (max-width: 1199px) {
    .choose5-thumb {
        width: 100%;
    }

    .choose5-thumb img {
        width: 100%;
        max-width: 100%;
    }
}

.download-app5 .section__content .section__content-list li::marker {
    color: #FCB650;
    font-size: 16px;
}

.frequently-asking .accordion-item .accordion-header .accordion-button {
    border-radius: 100px;
    border: 1px solid #1C1C1C;
    background: #ffff;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
}

.frequently-asking .accordion-item .accordion-header .accordion-button::after {
    background: none;
    color: #1c1c1c;
    font-size: 20px;
}

.frequently-asking .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: #FFC857;
    color: #1c1c1c;
    border: 1px solid #FFC857;
}

.frequently-asking .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    color: #1c1c1c;
}

@media screen and (max-width: 500px) {
    .frequently-asking .accordion-item .accordion-header .accordion-button {
        padding: 12px 20px;
        font-weight: 500;
        font-size: 14px;
    }

    .frequently-asking .accordion-item .accordion-header .accordion-button::after {
        font-size: 20px;
    }
}

.frequently-asking .accordion-item .accordion-body::before {
    display: none;
}

.animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.feature {
    position: relative;
}

.feature .card .card__icon {
    display: flex;
    align-items: center;
}

.feature .card .card__icon img {
    max-width: 56px;
}

.feature .card .fs-small {
    transition: 0.3s;
}

.feature .card .fs-small {
    color: #1C1C1C;
    font-size: 17px;
}

.feature .animation img:first-child {
    position: absolute;
    right: 4%;
    top: 12%;
    animation: pulse 7s infinite;
}

.feature .animation img:nth-child(2) {
    position: absolute;
    left: 3%;
    bottom: 7%;
    animation: previewShapeX 5s infinite;
}

.faq-section {
    background: white;
}

.how-works .section__content-inner {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.how-works .section__content-inner .card {
    gap: 44px;
    flex-direction: row;
    align-items: center;
    border-top: 1px dashed #C1C4CC;
    padding: 24px 0 0;
}

.how-works .section__content-inner .card:first-child {
    border-top: none;
    padding-top: 0;
}

.how-works .section__content-inner .card .card__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #1C1C1C;
    background: white;
    position: relative;
    z-index: 0;
}

.how-works .section__content-inner .card .card__icon img {
    max-width: calc(100% - 40px);
}

.how-works .section__content-inner .card .card__icon::after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 64px;
    width: 64px;
    min-width: 64px;
    border-radius: 50%;
    background-color: #FFC857;
}

.how-works .section__content-inner .card .card__icon .number-bullet {
    width: 32px;
    min-width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: -12px;
    font-size: 14px;
    font-weight: 600;
}

.how-works .section__content-inner .card .card__content {
    text-align: start;
}

.contact:after {
    display: none;
}

.reviews-details .reviews-details__area .reviews-details__part .repayment .number .bullet li::marker {
    font-size: 10px;
}

.contact {
    position: relative;
    z-index: 0;
    overflow: initial;
}

.contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1000000015;
    background: #074C3E;
    z-index: -1;
    border-radius: 0;
}

@media (max-width: 1399px) {
    .feature--tertiary .card--custom {
        padding: 28px 54px;
    }

    .how-works .how-works__thumbs img {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    p,
    li,
    span {
        font-size: 16px;
        line-height: 1.5;
    }

    a,
    button {
        font-size: 16px;
    }
}

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

    .section--space-top {
        padding-bottom: 0;
    }

    .feature .animation img {
        display: none;
    }

    .feature--tertiary .card--custom {
        background: #0000000a;
        padding: 28px 18px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    .section--space-top {
        padding-bottom: 0;
    }

    .section__header {
        margin-bottom: 10px;
    }

    .section__header .section__header-title {
        margin-bottom: 16px;
        font-size: 26px;
    }

    .section__header .section__header-content {
        font-size: 14px;
    }

    .choose-content5 p {
        font-size: 14px;
    }

    .section__content-text {
        font-size: 14px;
    }

    .card {
        padding: 12px;
        gap: 24px;
    }

    .card--custom {
        padding: 20px;
    }

    .card--custom::after {
        max-width: calc(100% - 12px);
        max-height: calc(100% - 12px);
    }
}

@media (max-width: 575px) {
    .order-1 {
        margin-top: 5px;
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {
    .how-works .section__content-inner .card {
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.service-block {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.service-block .inner-box {
    position: relative;
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 30px;
    transition: all 300ms ease;
}

.service-block .image-box {
    position: relative;
}

.service-block .image-box .image {
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 20px;
}

figure {
    margin: 0 0 1rem;
}

.service-block .image-box .image:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.service-block .image-box .icon-box {
    position: absolute;
    left: 25px;
    bottom: -10px;
    height: 90px;
    width: 90px;
    background: #FFC857;
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    transition: all 300ms ease;
}

.service-block .image-box .icon-box:before {
    position: absolute;
    bottom: 0;
    left: -10px;
    border-right: 10px solid #FFC857;
    border-bottom: 10px solid transparent;
    content: "";
}

.service-block .image-box .icon-box:after {
    position: absolute;
    bottom: 0;
    right: -10px;
    border-left: 10px solid #FFC857;
    border-bottom: 10px solid transparent;
    content: "";
}

.service-block .content-box {
    position: relative;
    padding: 35px 10px 15px;
}

.service-block .content-box .title {
    margin-bottom: 6px;
    font-weight: 700;
    color: #1c1c1c;
}

.service-block .image-box .image img {
    width: 100%;
    transition: all 300ms ease;
}

.single-check-area {
    display: flex;
    /* align-items: center; */
    gap: 9px;
    margin: 16px 0;
}

.single-check-area i {
    font-size: 20px;
    color: #FFC857;
}

.single-check-area span {
    font-weight: 700;
}

.btn {
    display: inline-block;
    font-weight: 500;
    border-radius: 50px;
    text-align: center;
    transition: all 0.7s ease-in-out;
    position: relative;
    z-index: 1;
    border: none;
    padding: 16px 32px;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
}

.btn i {
    position: relative;
    top: 3px;
    font-size: 16px;
    margin-left: 7px;
    transition: all 0.4s ease-in-out;
}

.btn:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.7s ease-in-out;
}

.btn:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn:hover:after,
.btn:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.btn.style1 {
    background-color: #1c1c1c;
}

.btn.style1:after,
.btn.style1:before {
    background: #ffff;
    color: #1C1C1C;
}

.btn.style4 {
    background-color: transparent;
    border: 1px solid #1C1C1C;
    color: #1C1C1C;
    font-weight: 500;
}

.btn.style4:after,
.btn.style4:before {
    background: #1C1C1C;
}

.btn.style4:hover {
    color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: none;
}

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

.section-title h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.section-title.dark-section h1,
.section-title.dark-section p {
    color: #1c1c1c;
}

.section-title.dark-section p {
    color: #1c1c1c;
    font-size: 18px;
}

.hero {
    background: linear-gradient(180deg, var(--accent-color) 64%, var(--secondary-color) 36%) no-repeat top center;
    background-size: 100% auto;
    padding: 160px 0 50px;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 860px;
    text-align: center;
    margin: 0 auto 30px;
    z-index: 2;
}

.hero-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-btn {
    display: flex;
}

.hero-image img {
    width: 100%;
    /* aspect-ratio: 1 / 0.573; */
    object-fit: cover;
}

@media only screen and (max-width: 991px) {

    .navbar {
        padding: 15px 0;
    }

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

    .section-title h1 {
        font-size: 65px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .hero {
        padding: 120px 0 25px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-body {
        margin-bottom: 30px;
    }

    .pricing-body {
        margin-bottom: 30px;
    }

    /* .approach-image-content{
        margin-bottom: 20px;
    } */
}

@media only screen and (max-width: 767px) {
    .section-title h1 {
        font-size: 36px;
    }

    .section-title .dark-section p {
        font-size: 16px;
    }

    .hero {
        background: linear-gradient(180deg, var(--accent-color) 80%, var(--secondary-color) 20%);
    }
}

.service-box-item {
    border-radius: 20px;
    border: 1px solid rgba(104, 119, 153, .24);
    background: #fff;
    box-shadow: 11px 15px 80px 48px rgba(10, 6, 68, .04);
    padding: 30px 30px;
    margin-top: 30px;
}

.service-box-item .service-icon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-box-item .service-icon-item .icon {
    width: 93px;
    height: 93px;
    line-height: 93px;
    text-align: center;
    border-radius: 100px;
    background-color: #FFC857;
    box-shadow: 11px 15px 80px rgba(10, 6, 68, .05);
}

.service-box-item .service-icon-item .service-image img {
    width: 100%;
    height: 100%;
}

.content-box .title {
    color: #1c1c1c;
    font-size: 24px;
}

.cta__two {
    position: relative;
    z-index: 1;
    background-image: url(../images/b.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.cta__two::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1c1c1ce0;
    opacity: 0.85;
    z-index: -2;
}

.cta__two-title h2 {
    color: #ffff;
    font-size: 44px;
}

.cta__two-title p {
    color: #f1f1f1;
    font-size: 18px;
}

.cta__two-info {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.cta__two-info-item {
    display: inline-block;
    background: #fff;
    padding: 30px 45px;
    border-radius: 6px;
    min-width: 250px;
}

.cta__two-info-item-icon {
    margin-bottom: 15px;
}

.cta__two-info-item-icon i {
    color: #1c1c1c;
    font-size: 28px;
    background: #FFC857;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: 0.4s;
}

.cta__two-info-item h6 {
    text-transform: lowercase;
}

.cta__two-info-item h6 a {
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1C;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0 95%/0 2px no-repeat;
    transition: all 400ms ease;
    margin-top: 8px;
}

.cta__two-info-item h6 a:hover {
    background-size: 100% 2px;
}

.cta__two-info-item span {
    font-size: 14px;
    font-weight: 600;
    color: #343434;
}

.subtitle-one, .subtitle-two, .subtitle-three {
    position: relative;
    text-transform: uppercase;
    color: #FFC857;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    padding-left: 55px;
    display: inline-block;
    margin-bottom: 14px
}

.subtitle-one::before, .subtitle-two::before, .subtitle-three::before {
    position: absolute;
    content: "";
    top: 12px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}

@media (max-width: 991px) {
    .lg-mb-30 {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .cta__two-title {
        text-align: center;
    }
}

@media (max-width: 1399px) {
    .cta__area-bg {
        padding: 60px 40px;
    }

    .cta__area-form form {
        gap: 25px;
    }

}

@media (max-width: 1199px) {
    .cta__area-form {
        margin-top: 30px;
    }

    .cta__area-form form {
        justify-content: start;
    }

    .cta__area-form-item {
        width: 100%;
    }

    .cta__two-info-item {
        padding: 30px 40px;
    }
}

@media (max-width: 991px) {
    .cta__area-bg {
        padding: 50px 0 50px 30px;
    }

    .cta__area-form form {
        gap: 20px;
    }

    .cta__area-form form input {
        padding-right: 10px;
    }

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

    .cta__two-info {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cta__area-form form {
        display: initial;
    }

    .cta__two-info-item {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .cta__area-bg {
        padding: 50px 0;
    }

    .cta__area-bg .pr-0 {
        padding-right: 12px;
    }
}

@media (max-width: 540px) {
    .cta__two-info {
        display: block;
    }

    .cta__two-info-item {
        display: block;
        margin-bottom: 30px;
    }

    .cta__two-info-item:last-child {
        margin: 0;
    }
}

.footer__one {
    padding-top: 70px;
    background-size: cover;
    background: #1C1C1C no-repeat center;
}

.footer__one-widget {
    margin-top: 30px;
}

.footer__one-widget h4 {
    color: #ffff;
    margin-bottom: 20px;
}

.footer__one-widget-about img {
    max-width: 160px;
}

.footer__one-widget-about p {
    color: #999999;
    max-width: 304px;
    margin: 13px 0 0;
}

.footer__one-widget-about-social {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #333334;
    max-width: 300px;
}

.footer__one-widget-about-social h6 {
    color: #ffff;
    margin-bottom: 12px;
}

.footer__one-widget-about-social ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__one-widget-about-social ul li {
    list-style: none;
}

.footer__one-widget-about-social ul li a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 14px;
    border: 1px solid #333334;
    border-radius: 50%;
    color: #ffff;
    transition: 0.4s;
}

.footer__one-widget-about-social ul li a i:hover {
    background: #FFC857;
    border-color: #1c1c1c;
}

.footer__one-widget-menu {
    margin-left: -22px;
}

.footer__one-widget-location h6 {
    color: #fff;
    margin-bottom: 9px;
}

.footer__one-widget-location-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #333334;
}

.footer__one-widget-location-item:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.footer__one-widget-location-item-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 24px;
    border: 1px solid #333334;
    border-radius: 50%;
    color: #FFC857;
}

.footer__one-widget-location-item-info span,
.footer__one-widget-location-item-info a {
    color: #999999;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    max-width: 250px;
    display: inline-block;
    transition: 0.4s;
}

.footer__one-widget-gallery {
    margin-left: 40px;
}

.footer__one-widget-gallery-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 1199px) {
    .footer__one-widget-menu {
        margin-left: 0;
    }

    .footer__one-widget-gallery {
        margin-left: 0;
    }
}

.copyright__two {
    margin-top: 100px;
    padding: 35px 0;
    text-align: center;
    border-top: 1px solid #333334;
}

.copyright__two p {
    margin: 0;
    color: #999999;
    font-size: 15px;
    line-height: 26px;
}

.copyright__two p a {
    color: #999999;
    text-decoration: underline;
    margin: 0 2px;
}

@media (max-width: 767px) {
    .cta__two-title h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .cta__two-title p {
        font-size: 16px;
    }
}

.topActive {
    bottom: 30px;
    transform: translateY(0%);
}

.theme_btn {
    overflow: hidden;
    color: #ffffff;
    background: #1C1C1C;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 18px 32px;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.theme_btn i {
    font-size: 16px;
    line-height: 1;
    margin-left: 5px;
    transition: 0.3s;
    vertical-align: middle;
}

.theme_btn::before {
    top: 0;
    width: 0;
    left: auto;
    right: 0;
    z-index: -1;
    bottom: 0;
    content: "";
    position: absolute;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.theme_btn:hover {
    color: #ffffff;
}

.theme_btn:hover::before {
    left: 0;
    width: 100%;
    right: auto;
}

.theme_btn:hover i {
    transform: translateX(10px);
}

.theme-btn_05 {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}

.theme-btn_05:hover {
    color: #ffff;
    border: 1px solid #fff;
}

.banner {
    width: 100%;
    padding-top: 155px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: initial;
    z-index: 0;
}

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

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

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFC857 url(../images/pattern-35.webp) no-repeat bottom center;
    background-size: cover;
    z-index: -1;
}

.banner .banner__content .banner__title {
    color: #1c1c1c;
    text-transform: capitalize;
    font-weight: 700;
}

.banner .banner__content .breadcrumb {
    margin-top: 24px;
    --bs-breadcrumb-item-padding-x: 4px;
}

.banner .banner__content .breadcrumb .breadcrumb-item {
    color: #ffffff;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 16px;
}

.banner .banner__content .breadcrumb .breadcrumb-item a {
    color: #1c1c1c;
    font-size: 16px;
}

.banner .banner__content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\ea50";
    font-family: "Boxicons";
    color: #1c1c1c;
    font-size: 20px;
    margin-top: 3px;
}

.banner .banner__content .breadcrumb .breadcrumb-item.active {
    color: #1c1c1c;
    font-weight: 600;
}

.list-card {
    margin-bottom: 25px;
    padding: 40px;
    border: 1px solid rgba(20, 31, 57, 0.1);
    border-radius: 10px;
    transition: all ease 0.5s;
    background-color: #ffffff;
}

.list-card h5 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 25px;
}

.list-card h1 {
    font-size: 40px;
    margin-bottom: 0;
}

.list-card h1 span {
    font-size: 16px;
    font-weight: 400;
}

.list-card .list-content {
    margin-bottom: 30px;
    /* padding-bottom: 30px; */
    border-bottom: 1px solid rgba(20, 31, 57, 0.1);
}

.list__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.list__content a {
    font-size: 16px;
    gap: 16px;
}

.social_box {
    background: #FFC857;
}

.social_box i {
    font-size: 22px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .section-title.dark-section p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .service-box-item {
        padding: 15px 15px;
    }
}

@media (max-width: 767px) {
    .footer__one {
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    .copyright__two {
        margin-top: 20px;
    }
}

