:root {
    --animate-duration: 1s
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-duration: calc(var(--animate-duration)*.8);
    animation-duration: calc(var(--animate-duration)*.8)
}

@media (prefers-reduced-motion:reduce),
print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important
    }
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__heartBeat {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration)*1.3);
    animation-duration: calc(var(--animate-duration)*1.3);
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

:root {
    --bs-white-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, .15), hsla(0, 0%, 100%, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, .175);
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca
}

*,
:after,
:before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
     :root {
        scroll-behavior: smooth
    }
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0;
    text-align: var(--bs-body-text-align)
}

hr {
    border: 0;
    border-top: 1px solid;
    color: inherit;
    margin: 1rem 0;
    opacity: .25
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: 0
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
    .h1,
    h1 {
        font-size: 2.5rem
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
    .h2,
    h2 {
        font-size: 2rem
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
    .h3,
    h3 {
        font-size: 1.75rem
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
    .h4,
    h4 {
        font-size: 1.5rem
    }
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-bottom: 1rem;
    margin-top: 0
}

ul {
    margin-bottom: 1rem;
    margin-top: 0;
    padding-left: 2rem
}

ul ul {
    margin-bottom: 0
}

a {
    color: var(--bs-link-color);
    text-decoration: underline
}

a:hover {
    color: var(--bs-link-hover-color)
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

img,
svg {
    vertical-align: middle
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

button,
select {
    text-transform: none
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[type=button],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

textarea {
    resize: vertical
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    -webkit-appearance: button;
    font: inherit
}

.list-inline {
    list-style: none;
    padding-left: 0
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.img-fluid {
    height: auto;
    max-width: 100%
}

.container,
.container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1)
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0
}

@media (min-width:576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }
}

@media (min-width:768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }
}

@media (min-width:992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
}

.form-label {
    margin-bottom: .5rem
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    color: #212529;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control:focus {
    background-color: #fff;
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    color: #212529;
    outline: 0
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    -webkit-margin-end: .75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    color: #212529;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    padding: .375rem .75rem;
    pointer-events: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

.form-select {
    -moz-padding-start: calc(.75rem - 3px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-position: right .75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    color: #212529;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem 2.25rem .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .form-select {
        transition: none
    }
}

.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    outline: 0
}

.form-select[multiple] {
    background-image: none;
    padding-right: .75rem
}

.form-select:disabled {
    background-color: #e9ecef
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529
}

.form-check {
    display: block;
    margin-bottom: .125rem;
    min-height: 1.5rem;
    padding-left: 1.5em
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    height: 1em;
    margin-top: .25em;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    vertical-align: top;
    width: 1em
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    outline: 0
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E")
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E");
    border-color: #0d6efd
}

.form-check-input:disabled {
    filter: none;
    opacity: .5;
    pointer-events: none
}

.form-check-input:disabled~.form-check-label {
    cursor: default;
    opacity: .5
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    background-color: var(--bs-btn-bg);
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    color: var(--bs-btn-color);
    cursor: pointer;
    display: inline-block;
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    text-align: center;
    text-decoration: none;
    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-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    color: var(--bs-btn-hover-color)
}

.btn:focus-visible {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    box-shadow: var(--bs-btn-focus-box-shadow);
    color: var(--bs-btn-hover-color);
    outline: 0
}

.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
    color: var(--bs-btn-active-color)
}

.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: var(--bs-btn-focus-box-shadow)
}

.btn:disabled {
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    color: var(--bs-btn-disabled-color);
    opacity: var(--bs-btn-disabled-opacity);
    pointer-events: none
}

.collapse:not(.show) {
    display: none
}

.dropdown {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    border-bottom: 0;
    border-left: .3em solid transparent;
    border-right: .3em solid transparent;
    border-top: .3em solid;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: #212529;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: 0.375rem;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-link-color: #212529;
    --bs-dropdown-link-hover-color: #1e2125;
    --bs-dropdown-link-hover-bg: #e9ecef;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    background-clip: padding-box;
    background-color: var(--bs-dropdown-bg);
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
    color: var(--bs-dropdown-color);
    display: none;
    font-size: var(--bs-dropdown-font-size);
    list-style: none;
    margin: 0;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    position: absolute;
    text-align: left;
    z-index: var(--bs-dropdown-zindex)
}

.dropdown-item {
    background-color: transparent;
    border: 0;
    clear: both;
    color: var(--bs-dropdown-link-color);
    display: block;
    font-weight: 400;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    width: 100%
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--bs-dropdown-link-hover-bg);
    color: var(--bs-dropdown-link-hover-color)
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-dropdown-link-active-bg);
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none
}

.dropdown-item:disabled {
    background-color: transparent;
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none
}

.dropdown-menu.show {
    display: block
}

.accordion {
    --bs-accordion-color: #212529;
    --bs-accordion-bg: #fff;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.375rem;
    --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #212529;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #0c63e4;
    --bs-accordion-active-bg: #e7f1ff
}

.accordion-button {
    align-items: center;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    color: var(--bs-accordion-btn-color);
    display: flex;
    font-size: 1rem;
    overflow-anchor: none;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    position: relative;
    text-align: left;
    transition: var(--bs-accordion-transition);
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(var(--bs-accordion-border-width)*-1) 0 var(--bs-accordion-border-color);
    color: var(--bs-accordion-active-color)
}

.accordion-button:not(.collapsed):after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform)
}

.accordion-button:after {
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    content: "";
    flex-shrink: 0;
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    transition: var(--bs-accordion-btn-icon-transition);
    width: var(--bs-accordion-btn-icon-width)
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button:after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    border-color: var(--bs-accordion-btn-focus-border-color);
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
    outline: 0;
    z-index: 3
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    color: var(--bs-accordion-color)
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius)
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius)
}

.accordion-item:not(:first-of-type) {
    border-top: 0
}

.accordion-item:last-of-type {
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius)
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius)
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius)
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)
}

.carousel,
.carousel-inner {
    position: relative
}

.carousel-inner {
    overflow: hidden;
    width: 100%
}

.carousel-inner:after {
    clear: both;
    content: "";
    display: block
}

.carousel-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
    float: left;
    margin-right: -100%;
    position: relative;
    transition: transform .6s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item.active {
    display: block
}

.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start {
    transform: translateX(-100%)
}

.carousel-control-next,
.carousel-control-prev {
    align-items: center;
    background: none;
    border: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    opacity: .5;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity .15s ease;
    width: 15%;
    z-index: 1
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next,
    .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    opacity: .9;
    outline: 0;
    text-decoration: none
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 2rem;
    width: 2rem
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")
}

.carousel-indicators {
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    list-style: none;
    margin-bottom: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    padding: 0;
    position: absolute;
    right: 0;
    z-index: 2
}

.carousel-indicators [data-bs-target] {
    background-clip: padding-box;
    background-color: #fff;
    border: 0;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    box-sizing: content-box;
    cursor: pointer;
    flex: 0 1 auto;
    height: 3px;
    margin-left: 3px;
    margin-right: 3px;
    opacity: .5;
    padding: 0;
    text-indent: -999px;
    transition: opacity .6s ease;
    width: 30px
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.placeholder {
    background-color: currentcolor;
    cursor: wait;
    display: inline-block;
    min-height: 1em;
    opacity: .5;
    vertical-align: middle
}

.placeholder.btn:before {
    content: "";
    display: inline-block
}

.clearfix:after {
    clear: both;
    content: "";
    display: block
}

.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1030
}

.overflow-hidden {
    overflow: hidden !important
}

.d-block {
    display: block !important
}

.position-relative {
    position: relative !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.order-first {
    order: -1 !important
}

.m-0 {
    margin: 0 !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.bg-transparent {
    background-color: transparent !important
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.invisible {
    visibility: hidden !important
}

@media (min-width:992px) {
    .order-lg-last {
        order: 6 !important
    }
}

.fab,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

.fa-check:before {
    content: "\f00c"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-phone:before {
    content: "\f095"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

@font-face {
    font-display: block;
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/webfa-regular-400.eot);
    src: url(../fonts/webfa-regular-400.eot) format("embedded-opentype"), url(../fonts/webfa-regular-400.woff2) format("woff2"), url(../fonts/webfa-regular-400.woff) format("woff"), url(../fonts/webfa-regular-400.ttf) format("truetype"), url(../images/webfa-regular-400.svg) format("svg")
}

.far {
    font-family: Font Awesome\ 5 Free
}

@font-face {
    font-display: block;
    font-family: Font Awesome\ 5 Brands;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/webfa-brands-400.eot);
    src: url(../fonts/webfa-brands-400.eot) format("embedded-opentype"), url(../fonts/webfa-brands-400.woff2) format("woff2"), url(../fonts/webfa-brands-400.woff) format("woff"), url(../fonts/webfa-brands-400.ttf) format("truetype"), url(../images/webfa-brands-400.svg) format("svg")
}

.fab,
.far {
    font-weight: 400
}

.fab {
    font-family: Font Awesome\ 5 Brands
}

@font-face {
    font-display: block;
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/webfa-solid-900.eot);
    src: url(../fonts/webfa-solid-900.eot) format("embedded-opentype"), url(../fonts/webfa-solid-900.woff2) format("woff2"), url(../fonts/webfa-solid-900.woff) format("woff"), url(../fonts/webfa-solid-900.ttf) format("truetype"), url(../images/webfa-solid-900.svg) format("svg")
}

.fas {
    font-family: Font Awesome\ 5 Free;
    font-weight: 900
}

body,
html {
    margin: 0;
    overflow-x: hidden !important;
    padding: 0;
    position: relative;
    width: 100%
}

section {
    overflow: hidden;
    padding: 50px 0;
    position: relative
}

header,
section {
    margin: 0 auto;
    max-width: 1920px
}

body::-webkit-scrollbar {
    width: .8em
}

body::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

body::-webkit-scrollbar-thumb {
    background-color: #dfffff;
    border-radius: 25px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-family: Zilla Slab;
    font-weight: 700
}

.h1,
h1 {
    color: #333;
    font-size: 55px
}

.h2,
h2 {
    color: #333;
    font-size: 35px
}

.h3,
h3 {
    color: #333;
    font-size: 30px
}

.h4,
h4 {
    color: #333;
    font-size: 25px
}

.h5,
h5 {
    color: #333;
    font-size: 20px
}

.h6,
h6 {
    font-size: 18px
}

.h6,
h6,
p {
    color: #333
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px
}

li,
p,
ul {
    font-family: Open Sans
}

li,
ul {
    font-size: 16px;
    list-style: none;
    padding: 0
}

a {
    text-decoration: none
}

.btn-dual-shade {
    align-items: center;
    background: linear-gradient(45deg, #ff753e, #ffb731);
    border-radius: 20px !important;
    box-shadow: none !important;
    color: #fff !important;
    display: flex;
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 280px;
    min-width: 160px;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    text-align: center;
    transition: .9s;
    width: inherit
}

.btn-dual-shade:hover {
    background: linear-gradient(45deg, #ffb731, #ff753e);
    box-shadow: 0 0 10px 3px hsla(0, 0%, 59%, .42)
}

.btn-dual-shade i {
    color: #fff;
    line-height: 1.1;
    padding: 0
}

.live-chat {
    align-items: center;
    display: flex;
    justify-content: flex-start
}

.live-chat .chat-text {
    margin: 0 10px
}

.live-chat .chat-text span {
    color: #333;
    display: block;
    font-weight: 400
}

.live-chat .chat-text .font-bold {
    font-weight: 700 !important
}

.btn-white-shade {
    align-items: center;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 20px !important;
    box-shadow: none !important;
    color: #333 !important;
    display: flex;
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 280px;
    min-width: 160px;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    text-align: center;
    transition: .9s;
    width: inherit
}

.btn-white-shade i {
    color: #fff;
    line-height: 1.1;
    padding: 0
}

.btn-white-shade.active,
.btn-white-shade:focus,
.btn-white-shade:hover {
    background: #f5b400;
    color: #fff !important
}

.btn-white-shade.active i,
.btn-white-shade:focus i,
.btn-white-shade:hover i {
    color: #ebfcfa;
    transition: all .5s ease-in
}

.form-select:focus {
    border-color: unset;
    box-shadow: none
}

.faqs .accordion-button {
    font-size: 18px
}

.faqs .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: #333;
    font-weight: 400
}

.faqs .accordion-item {
    border: none;
    border-bottom: 1px solid #c9c9c9
}

.faqs .accordion-button {
    padding: 30px 10px
}

.faqs .accordion-body {
    color: #333;
    padding: 0 20px 20px
}

.faqs .accordion-button:focus {
    border-color: unset;
    box-shadow: none
}

.hr-line {
    background: #333;
    border: 1px solid #333;
    height: 6px !important;
    margin: 20px auto 10px;
    opacity: 1;
    position: relative;
    width: 100px
}

input,
select,
textarea {
    border-radius: 0;
    box-shadow: none !important
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ffb731 !important
}

.lazyload {
    opacity: 0;
    transition: opacity .5s
}

.fa-solid,
.fas {
    font-family: Font Awesome\ 5 Free
}

section.cta-banner {
    background: linear-gradient(0deg, #dfffff, #fcfcfc)
}

section.cta-banner hr {
    margin-left: 0
}

section.cta-banner .row .sty-ad {
    width: 230px
}

section.cta-banner .live-chat {
    background-color: transparent;
    border: none
}

.bg-transparent {
    background: transparent !important
}

.bg-gradient {
    background-image: linear-gradient(0deg, #dfffff, #fcfcfc) !important
}

.ml-0 {
    margin-left: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield
}

.vector-bg-lf {
    background: url(../images/bg-vector.webp);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: auto
}

.vector-bg-rg {
    background: url(../images/bg-vector-right.webp);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: auto
}

header .top-bar {
    align-items: center;
    background: linear-gradient(0deg, #dfffff, #fcfcfc);
    display: flex;
    max-width: 100%;
    min-height: 40px;
    padding: 10px 0
}

header .top-bar a.social-icons {
    color: #333;
    display: inline-block;
    height: 20px;
    margin: 0 5px;
    max-width: 15px
}

header .top-bar ul {
    align-items: baseline;
    display: flex;
    justify-content: end;
    margin: 0
}

header .top-bar ul li {
    display: flow-root;
    margin: 0 5px;
    max-width: 230px;
    min-height: 24px;
    min-width: 10px;
    text-align: center
}

header .top-bar ul li:first-child {
    height: 24px;
    width: 235px
}

header .top-bar ul li:nth-child(3) {
    height: 24px;
    width: 135px
}

header .top-bar ul li a {
    align-items: center;
    color: #333;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400
}

header .top-bar ul li a i {
    color: #333;
    display: block;
    height: 10px;
    margin-right: 5px;
    width: 15px
}

header .top-bar ul li a i.fa-phone {
    transform: rotate(90deg)
}

.m-t-20 {
    margin-top: 20px !important
}

.m-t-30 {
    margin-top: 30px !important
}

.m-t-50 {
    margin-top: 50px !important
}

section.bg-services {
    align-items: center;
    display: flex;
    height: 500px;
    background-color: #f5b4001f;
}

section.bg-services .cover-banner {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: -1;
    display: none;
}

section.bg-services .h1,
section.bg-services p {
    color: #000
}

section.bg-services .hr-line {
    background: #fff;
    border-color: #fff;
    margin-left: 0
}

section.bg-services a {
    margin: 20px 0 !important;
    min-width: 250px
}

section.bp-sec-one p {
    font-size: 16px
}

section.bp-sec-one ul {
    padding-left: 15px
}

section.bp-sec-one ul li {
    list-style: disc;
    margin: 20px 0
}

section.bp-sec-one .calculator-form {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .22);
    padding: 20px
}

section.bp-sec-one .calculator-form .hr-line {
    margin-left: 0
}

section.bp-sec-one .calculator-form form p {
    font-size: 12px
}

section.bp-sec-one .calculator-form form p a {
    color: #9a1111;
    text-decoration: underline
}

section.bp-sec-one .calculator-form form input,
section.bp-sec-one .calculator-form form select {
    background: transparent;
    border-radius: 0;
    color: #333;
    font-size: 14px;
    position: relative
}

section.bp-sec-one .calculator-form form input::-moz-placeholder,
section.bp-sec-one .calculator-form form select::-moz-placeholder {
    color: #333
}

section.bp-sec-one .calculator-form form input::placeholder,
section.bp-sec-one .calculator-form form select::placeholder {
    color: #333
}

section.bp-sec-one .calculator-form form .fa-circle-info {
    border: 1px solid #55908c;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    height: 16px;
    line-height: 1;
    overflow: hidden;
    position: absolute;
    right: 13%;
    top: 10px;
    width: 16px
}

section.bp-sec-one .calculator-form form .fa-circle-info:before {
    background: #55908c;
    border-radius: 20px
}

section.bp-sec-one .calculator-form form .fa-chevron-down {
    align-items: center;
    background: linear-gradient(0deg, #dfffff, #fcfcfc);
    color: #55908c;
    display: flex;
    font-size: 12px;
    height: 32px;
    justify-content: center;
    position: absolute;
    right: 13px;
    text-align: center;
    top: 2px;
    width: 40px
}

section.bp-sec-one .calculator-form form .total-price {
    font-size: 18px;
    font-weight: 600
}

section.bp-sec-one .calculator-form form .border-dash {
    border-bottom: 1px dashed rgba(0, 0, 0, .251);
    margin-bottom: 10px
}

section.bp-sec-one .calculator-form form button {
    max-width: 100% !important;
    min-width: 100% !important
}

section.bp-sec-one .btn-dual-shade {
    margin-left: 0
}

section.bp-sec-two {
    background: linear-gradient(0deg, #dfffff, #fcfcfc)
}

section.bp-sec-two svg {
    margin-bottom: 10px
}

section.bp-sec-two a {
    color: #55908c;
    border-radius: 10px !important;
    font-weight: 700;
    text-decoration: underline
}

section.bp-sec-two a:hover {
    background: #f5b400;
}

section.bp-sec-two .pricing-box {
    border: 1px solid rgba(51, 51, 51, .2)
}

section.bp-sec-two .pricing-box .box-one {
    background: #f5b400;
    padding: 20px 20px 10px
}

section.bp-sec-two .pricing-box .box-one .h3,
section.bp-sec-two .pricing-box .box-one p {
    color: #fff
}

section.bp-sec-two .pricing-box .box-two {
    background: #333;
    color: #fff;
    line-height: 2;
    padding: 15px 30px 1px
}

section.bp-sec-two .pricing-box .box-two .h1 {
    font-family: Open Sans;
    padding-bottom: 10px
}

section.bp-sec-two .pricing-box ul li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    text-align: left
}

section.bp-sec-two .pricing-box ul li:before {
    background: #fff;
    border-radius: 20px;
    bottom: 0;
    content: "";
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 10px
}

section.bp-sec-two .pricing-box .box-three {
    background: #fff;
    line-height: 2;
    padding: 20px 30px
}

section.bp-sec-two .pricing-box .box-three ul li:before {
    background: #333
}

section.bp-sec-two .pricing-box .box-three .price {
    font-size: 26px;
    font-weight: 800
}

section.bp-sec-two .pricing-box .box-three .price span {
    font-size: 18px;
    font-weight: 400
}

section.bp-sec-two .call-now {
    font-family: Open Sans;
    font-size: 25px;
    font-weight: 400;
    text-align: center
}

section.bp-sec-two .call-now a {
    color: #333
}

section.bp-sec-three {
    align-items: center;
    display: flex;
    height: 385px
}

section.bp-sec-three img {
    height: 385px;
    position: absolute;
    top: 0;
    width: 50%
}

section.bp-sec-three img.left-img {
    left: 0
}

section.bp-sec-three .hr-line {
    margin-left: 0
}

section.bp-sec-three .pl-3 {
    padding-left: 4%
}

section.bp-sec-three .pr-3 {
    padding-right: 4%
}

section.reviews {
    background: url(../images/bg-vector.webp);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: auto
}

section.reviews .carousel {
    height: 300px
}

section.reviews .carousel .carousel-item {
    opacity: 0;
    transition: transform .5s ease-in-out !important
}

section.reviews .carousel .carousel-item .carousel-item-next,
section.reviews .carousel .carousel-item.active {
    display: flex;
    justify-content: space-around;
    opacity: 1
}

section.reviews .carousel .carousel-item .reviews-box {
    background: linear-gradient(0deg, #dfffff, #fcfcfc);
    padding: 20px 15px;
    width: 265px
}

section.reviews .carousel .carousel-item .reviews-box svg {
    display: block;
    margin-bottom: 10px
}

section.reviews .carousel .carousel-item .reviews-box .review-days {
    color: #333;
    font-size: 14px;
    font-style: italic
}

section.reviews .carousel .carousel-indicators {
    bottom: -20px;
    margin-bottom: 0 !important
}

section.reviews .carousel .carousel-indicators button {
    background-color: #cfcfcf !important;
    border: 0 !important;
    border-radius: 40px !important;
    bottom: -30px !important;
    height: 15px !important;
    width: 15px !important
}

section.reviews .carousel .carousel-indicators button.active {
    background: linear-gradient(45deg, #ff753e, #ffb731) !important;
    width: 60px !important
}

section.reviews .carousel .w-aut {
    background-color: #000 !important;
    border: 2px solid #686868;
    border-radius: 20px;
    bottom: 0;
    filter: invert(1);
    height: 30px;
    margin: auto;
    padding: 0 5px;
    top: 0;
    width: 30px
}

section.reviews .carousel .carousel-inner .carousel-item-start {
    transform: translateX(0)
}

section.reviews .carousel .carousel-inner .carousel-item-next {
    transform: translateX(100%)
}

section.reviews .carousel .carousel-inner .carousel-item-start.active {
    transform: translateX(-100%)
}

section.why-trust {
    align-items: center;
    background: url(../images/why-trust-1.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 600px;
    -o-object-fit: scale-down;
    object-fit: scale-down
}

section.why-trust p {
    font-size: 16px
}

section.why-trust .hr-line {
    margin-left: 0
}

section.cta-banner ul {
    line-height: 2;
    padding-left: 15px
}

section.cta-banner ul li {
    font-size: 14px
}

section.cta-banner .list-style ul li {
    font-size: 16px;
    list-style: disc
}

section.storie-alive {
    background: linear-gradient(0deg, #dfffff, #fcfcfc)
}

section.storie-alive .hr-line {
    margin-left: 0
}

section.storie-alive p {
    font-size: 16px
}

section.storie-alive svg {
    margin-bottom: 10px
}

section.portfolio .hr-line {
    margin: 20px 0
}

section.portfolio .container-fluid {
    background: linear-gradient(0deg, #dfffff, #fcfcfc);
    padding-bottom: 30px
}

section.portfolio .container-fluid .carousel img {
    margin: 10px 0
}

section.children-cover {
    background: url(../images/children-cover.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

section.children-cover .h2 {
    background: #333;
    color: #fff;
    display: table;
    margin: 0 auto 20px;
    padding: 10px 20px
}

section.children-cover .call-btn {
    justify-content: end
}

section.six-boxes .box {
    padding: 20px 38px;
    position: relative
}

section.six-boxes .box .num {
    color: rgba(51, 51, 51, .349);
    font-size: 21px
}

section.six-boxes .box:after {
    border-right: 1px solid rgba(51, 51, 51, .2);
    content: "";
    height: 90%;
    position: absolute;
    right: 0;
    top: 10px
}

section.six-boxes .box:before {
    border-bottom: 1px solid rgba(51, 51, 51, .2);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    width: 95%
}

section.six-boxes .box.border-bottom-none:before,
section.six-boxes .box.border-right-none:after {
    display: none
}

section.faq-form {
    background: linear-gradient(0deg, #dfffff, #fcfcfc)
}

section.faq-form hr {
    margin-left: 0
}

section.faq-form .accordion {
    margin-bottom: 40px
}

section.faq-form .accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(51, 51, 51, .2)
}

section.faq-form .accordion .accordion-item .accordion-header button {
    background: transparent !important;
    box-shadow: none !important;
    color: #333 !important;
    /* font-family: Zilla Slab; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px !important;
    font-weight: 700;
    padding: 25px 30px;
    position: relative
}

section.faq-form .accordion .accordion-item .accordion-header button:before {
    background: url(../images/faq-before.webp);
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    top: auto;
    width: 20px
}

section.faq-form .accordion .accordion-item .accordion-header button:after {
    filter: opacity(.3)
}

section.faq-form .accordion .accordion-item .accordion-header button:not(.collapsed):after {
    filter: opacity(.3) brightness(0);
    transform: rotate(270deg)
}

section.faq-form .accordion .accordion-item .accordion-body {
    padding: 0 0 20px
}

@media (max-width:576px) {
    section.bp-sec-one .calculator-form form .fa-circle-info {
        display: none
    }
    section.children-cover .call-btn {
        justify-content: center
    }
    .btn-dual-shade,
    .list-copyrights li,
    p {
        font-size: 16px !important
    }
}

@media (max-width:768px) {
    section.reviews .carousel {
        height: 920px
    }
    section.reviews .carousel-item .carousel-item-next,
    section.reviews .carousel-item.active {
        display: block !important;
        margin: 0 auto;
        text-align: center
    }
    section.reviews .reviews-box {
        margin: 30px auto
    }
    section.reviews .reviews-box svg {
        margin: 0 auto 20px
    }
    .live-chat {
        justify-content: center;
        margin-top: 20px
    }
    .vector-bg-lf,
    .vector-bg-rg,
    section.reviews {
        background: #fff
    }
    .btn-dual-shade,
    p {
        font-size: 16px !important
    }
}

@media (max-width:992px) {
    header {
        height: 72px
    }
    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6,
    p {
        text-align: center
    }
    header .top-bar {
        display: none
    }
    br {
        display: none
    }
    hr {
        margin-left: auto !important;
        margin-right: auto !important
    }
    section.bg-services {
        /* background: #343434; */
        height: auto;
        text-align: center
    }
    section.bg-services .cover-banner {
        display: none
    }
    section.bg-services a {
        margin: 20px auto !important
    }
    section.bp-sec-three {
        height: auto
    }
    section.bp-sec-three img {
        height: auto;
        position: relative;
        top: 0;
        width: 100%
    }
    section.why-trust {
        background: transparent;
        height: auto
    }
    .bp-sec-one a.btn-dual-shade {
        margin-left: auto
    }
    .pl-3,
    .pr-3 {
        padding: 0 !important
    }
    section.six-boxes .box:after,
    section.six-boxes .box:before {
        display: none
    }
    section.six-boxes .box .num {
        display: block;
        text-align: center
    }
    section.cta-banner .row .sty-ad {
        margin: 0 auto
    }
    .show-desktop {
        display: none !important
    }
    .vector-bg-lf,
    .vector-bg-rg,
    section.reviews {
        background: #fff
    }
}

@media (min-width:992px) {
    section.cta-banner .btn-dual-shade {
        margin: 0;
        min-width: 240px
    }
    section.reviews .carousel-control-prev {
        left: -30px
    }
    section.reviews .carousel-control-next {
        right: -30px
    }
    .show-mobile {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    section.reviews .reviews-box {
        margin: 30px auto 0;
        padding: 20px;
        text-align: center;
        width: 220px
    }
    section.reviews .reviews-box svg {
        margin: 0 auto 20px
    }
    section.reviews .carousel-control-prev {
        left: -40px
    }
    section.reviews .carousel-control-next {
        right: -40px
    }
    section.cta-banner a.btn-dual-shade {
        min-width: 200px
    }
}

@media (min-width:992px) and (max-width:1199px) {
    section.reviews .reviews-box {
        padding: 20px;
        width: 220px
    }
    section.reviews .carousel-control-prev {
        left: -20px
    }
    section.reviews .carousel-control-next {
        right: -20px
    }
    section.six-boxes .box .h4 {
        font-size: 19px
    }
    section.cta-banner .btn-dual-shade {
        margin: 0;
        min-width: 190px
    }
    .live-chat .chat-text span {
        font-size: 15px
    }
    section.cta-banner .row .sty-ad {
        width: 210px
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    section.why-trust {
        height: 460px
    }
    section.bg-services .h1 {
        font-size: 50px
    }
}

section.bg-services {
    align-items: center;
    display: flex;
    height: fit-content;
    padding: 200px 0 120px;
}

section.storie-alive,
section.bp-sec-two,
section.cta-banner {
    background: #f5b4001f;
}

section.bg-services a,
.btn-dual-shade {
    border-radius: 10px !important;
    background: #f5b400;
}

section.bg-services .h1 {
    font-family: tiempos-regular !important;
    font-weight: 500 !important;
    font-size: 45px !important;
}

section.bg-services p,
section.bp-sec-one p,
.how-order ul li,
section.bp-sec-one ul li,
p {
    line-height: normal !important;
    font-family: amazon-ember-regular !important;
    font-weight: normal !important;
    font-size: 20px !important;
}

section.bg-services a,
.btn-dual-shade {
    font-family: amazon-ember-regular !important;
    font-weight: normal !important;
    color: #1e2125 !important;
    font-size: 18px !important;
}

section.bg-services .hr-line,
.hr-line {
    display: none !important;
}

.h2 {
    font-family: tiempos-regular !important;
    font-weight: 500 !important;
    font-size: 45px !important;
    margin: 0 auto;
    text-align: center;
}

section.bp-sec-one ul li,
.how-order ul li {
    list-style: none;
    position: relative;
}

section.bp-sec-one ul li::before,
.how-order ul li::before {
    content: "✔";
    font-size: 20px !important;
    color: #ff753e;
}

section.bp-sec-one .btn-dual-shade {
    padding: 5px 20px !important;
    width: fit-content;
}

section.bp-sec-two a {
    color: #f5b400;
}

.bp-sec-two p {
    text-align: center;
}

.stop-heading {
    font-family: tiempos-regular !important;
    font-size: 25px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: tiempos-regular !important;
}

.h2 {
    width: 100%;
    max-width: 900px;
}

.cta-banner .h2 {
    text-align: left !important;
}

.about-reviews-heading-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.h3,
.h4,
h3,
h4 {
    color: #000;
    display: block;
    font-family: tiempos-regular;
}

section.about-reviews .box .h3 {
    font-weight: normal !important;
}

section.about-reviews .box .h4 {
    font-size: medium !important;
    font-weight: normal !important;
}

section.about-reviews .box p {
    margin: 20px auto !important;
    width: auto !important;
    font-size: small !important;
}

section.book-publisher p {
    text-align: center;
}

section.book-publisher .h4,
section.book-publisher .h3 {
    text-align: center;
    font-size: 21px !important;
}

section.faq-form .accordion .accordion-item .accordion-body {
    padding: 0 30px;
    padding-left: 30px;
}

@media(max-width:600px) {
    section.bp-sec-one ul li,
    .how-order ul li {
        text-align: left;
        width: 250px;
        margin: 20px auto;
    }
    section.bp-sec-one ul li {
        margin: 10px auto;
        width: 95%;
    }
    .cta-banner .h2 {
        text-align: center !important;
    }
}

#new-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #222e3e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    z-index: 999;
    font-family: Arial, sans-serif;
    transition: box-shadow 0.3s;
}

#new-nav-container.scrolled {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* ---------------- Logo ---------------- */

#new-nav-logo img {
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s;
}


/* ---------------- Nav Menu ---------------- */

#new-nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0;
    transition: all 0.3s ease;
}

#new-nav-menu li {
    display: flex;
    align-items: center;
    margin: 0;
}

#new-nav-menu li a {
    color: #fff;
    text-decoration: none;
    /* font-weight: 500; */
    font-size: 14px;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

#new-nav-menu li a:hover {
    color: #ffb703;
}


/* ---------------- Button ---------------- */

#new-nav-button {
    background-color: #ffb703;
    color: #222e3e;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: small;
    transition: background 0.3s;
}

#new-nav-button:hover {
    background-color: #e6a300;
}


/* ---------------- Hamburger ---------------- */

#new-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

#new-nav-hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}


/* ---------------- Responsive ---------------- */

@media (max-width: 992px) {
    #new-nav-menu {
  position: fixed;
  top: 70px;
  left: -100%;
  flex-direction: column;
  max-height: calc(100vh - 70px); /* screen ke andar hi rahe */
  overflow-y: auto; /* scroll enable */
  background-color: #222e3e;
  width: 100%;
  padding: 2rem 0;
  gap: 1rem;
  text-align: center;
  transition: left 0.3s ease;
}
    #new-nav-menu.active {
        left: 0;
    }
    #new-nav-hamburger {
        display: flex;
    }
    #new-nav-button {
        display: none;
    }
    #new-nav-logo img {
        height: 50px;
    }
    #new-nav-menu li,
    #new-nav-menu li a {
        height: auto;
    }
}


/* Dropdown parent */

.dropdown {
    position: relative;
}


/* Hidden submenu */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    background: #222e3e;
    min-width: 230px;
    border: 1px solid white;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


/* submenu items */

.dropdown-menu li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
}


/* Show on hover (desktop) */


/* Desktop hover only */

@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

@media (max-width: 992px) {
    .dropdown {
        flex-direction: column;
    }
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
    }
    .dropdown.open .dropdown-menu {
        display: flex;
        height: auto;
        overflow: auto;
    border-bottom: 1px solid #e68a00;
    border-radius: 0;
    }
    .dropdown-menu li a {
        padding: 10px;
    }
}


/* Hamburger animation */

.rotate1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.rotate2 {
    transform: rotate(-45deg) translate(5px, -5px);
}

.fade {
    opacity: 0;
}

.dropdown-toggle::after {
    display: none;
}

section.faq-form {
    background: #f5b4001f;
}

#new-footer {
    background: #222e3e;
    color: #ffffff;
    padding: 90px 20px 40px;
    font-family: 'Poppins', sans-serif;
}


/* GRID */

.new-footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns per row */
    gap: 50px;
    max-width: 1400px;
    margin: auto;
}


/* COLUMN */

.new-footer-col {
    width: 100%;
}


/* Last 2 columns ko second row me center shift karna */

.new-footer-col:nth-child(6) {
    grid-column: 2 / 3;
}

.new-footer-col:nth-child(7) {
    grid-column: 3 / 4;
}


/* LOGO */

.new-footer-logo {
    width: 260px;
    margin-bottom: 25px;
}


/* TEXT */

.new-footer-text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #cfcfcf;
}

.new-footer-text a {
    color: #cfcfcf;
    text-decoration: none;
}


/* HEADING */

.new-footer-heading {
    margin-bottom: 18px;
    font-size: 24px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #f5b400, #fa9a0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* SOCIAL */

.new-footer-social {
    margin-top: 20px;
}

.new-footer-social a {
    display: inline-block;
    margin-right: 12px;
    background: #fff;
    color: #000;
    width: 44px;
    height: 44px;
    line-height: 44px !important;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
}

.new-footer-social a:hover {
    background: linear-gradient(135deg, #f5b400, #fa9a0a);
    transform: translateY(-5px);
}


/* LINKS */

.new-footer-links {
    list-style: none;
    padding: 0;
}

.new-footer-links li {
    margin-bottom: 12px;
}

.new-footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.new-footer-links a:hover {
    color: #e6a300;
}

.new-footer-links a:hover::after {
    width: 100%;
}


/* REVIEW */

.new-footer-review {
    font-style: italic;
    color: #cfcfcf;
    margin-bottom: 20px;
    line-height: 1.5 !important;
    font-size: 16px !important;
}


/* PAYMENT */

.new-footer-payment {
    width: 230px;
    transition: 0.3s;
}

.new-footer-payment:hover {
    transform: scale(1.05);
}


/* BOTTOM */

.new-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    padding-top: 20px;
}

.new-footer-bottom-text {
    font-size: 13px !important;
    color: white;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .new-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .new-footer-col::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .new-footer-logo {
        margin: auto;
    }
    .new-footer-social a {
        margin: 5px;
    }
}

@media (max-width: 576px) {
    #new-footer {
        padding: 70px 15px 20px;
    }
    .new-footer-logo {
        width: 90%;
    }
    .new-footer-payment {
        width: 180px;
    }
}

.children-page-bp-sec-one .h2 {
    text-align: left;
}

section.children-cover {
    background: url(https://www.bookcoverdesigners.co.uk/frontend/images/bg/children-cover.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-gradient {
    background: #f5b4001f !important;
}

@media(max-width:600px) {
    .children-page-bp-sec-one .h2 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .new-footer-container {
        grid-template-columns: 1fr;
        /* ek row me ek hi column */
    }
    /* reset positions warna 6th & 7th shift ho jayenge */
    .new-footer-col:nth-child(6),
    .new-footer-col:nth-child(7) {
        grid-column: auto;
    }
}

.h2 {
    margin-bottom: 20px;
}

.book-publisher .h4,
.book-publisher .h3,
.book-publisher p {
    text-align: left !important;
}

@media(max-width:600px) {
    .book-publisher .h4,
    .book-publisher .h3,
    .book-publisher p {
        text-align: center !important;
    }
}

section.faq-form .form-details {
    border: 4px solid #222e3e;
    margin-left: auto;
    max-width: 460px;
    height: fit-content;
    padding: 24px 20px;
}

section.faq-form .form-details .p-right {
    padding-right: 0;
}

section.faq-form .form-details label {
    display: block;
}

section.faq-form .form-details p {
    font-family: amazon-ember-bold;
    font-size: 20px !important;
    margin-bottom: 10px !important;
    margin-top: 0;
}

section.faq-form .form-details input,
section.faq-form .form-details select {
    cursor: pointer;
    height: 40px;
}

section.faq-form .form-details .form-control {
    border: 2px solid #eaeded;
    color: #363636;
    font-family: amazon-ember-regular;
    margin-bottom: 12px;
}

section.faq-form .form-details .form-control:focus {
    border: 2px solid #fa9a0a;
    box-shadow: unset !important;
}

section.faq-form .form-details .form-select {
    border: 2px solid #eaeded;
    color: #363636;
    font-family: amazon-ember-regular;
    margin-bottom: 12px;
}

section.faq-form .form-details .form-select:focus {
    border: 2px solid #fa9a0a;
    box-shadow: unset !important;
}

section.faq-form .form-details .checklist-box {
    color: #363636;
    -moz-column-count: 3;
    column-count: 3;
    display: block;
    font-family: amazon-ember-regular;
    margin-bottom: 12px;
}

section.faq-form .form-details .checklist-box input {
    background-color: transparent;
    border: 2px solid #eaeded;
    cursor: pointer;
    height: 18px;
    width: 18px;
}

section.faq-form .form-details .checklist-box input:checked {
    background-color: #fa9a0a;
    border: 2px solid #fa9a0a;
}

section.faq-form .form-details .checklist-box input:focus {
    border: 2px solid #fa9a0a;
    box-shadow: unset !important;
}

section.faq-form .form-details .checklist-box label {
    cursor: pointer;
    display: inline-block !important;
    font-size: 14px;
    margin-top: 3px !important;
}

section.faq-form .form-details .checklist-box .form-check {
    cursor: pointer;
}

section.faq-form .form-details .submit button {
    font-family: amazon-ember-bold;
    width: 100%;
}

@media (min-width: 1220px) and (max-width: 1399px) {
    section.faq-form .form-details .checklist-box label {
        font-size: 13px !important;
    }
}

@media (max-width: 991px) {
    section.faq-form .form-details {
        margin: 50px auto 0;
    }
    section.faq-form .form-details {
        margin-top: 40px;
    }
}

@media (max-width: 540px) {
    section.faq-form .form-details .checklist-box {
        -moz-column-count: 2;
        column-count: 2;
    }
    #children-bottom-margin-btn{
        margin-bottom: 50px;
    }
}