@charset "UTF-8";
/*---

These are the styles for the variables. Variables can be applied
to any element, components, or pages. Refers to figma.

Index
- Base
- Primary
- Secondary
*/
/*-------------------------------------------*\
Base
\*-------------------------------------------*/
/*-------------------------------------------*\
Primary
\*-------------------------------------------*/
/*-------------------------------------------*\
Secondary
\*-------------------------------------------*/
/*-------------------------------------------*\
Disabled
\*-------------------------------------------*/
/*-------------------------------------------*\
Others
\*-------------------------------------------*/
/*---

These are the styles for the typography. Typography styles can be applied
to any element. Typically you'll want to use either
a `<p>`, `<span>`, or heading element:

​```html
<h1 class="heading-1">This is a title text</h1>
<span class="text-scale-lg">This is a text</span>
<p class="small">Some Text</p>
​```

Index
- Responsive Mixins
- Sizes
- Layouts
- Inputs

*/
/*-------------------------------------------*\
Responsive mixins
\*-------------------------------------------*/
/*-------------------------------------------*\
Sizes
\*-------------------------------------------*/
/*-------------------------------------------*\
Layouts
\*-------------------------------------------*/
/*-------------------------------------------*\
Inputs
\*-------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

footer {
  margin-top: auto;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}

a {
  text-decoration: none;
  line-height: 48px;
}

.content-container {
  display: grid;
  grid-template-columns: 230px 1fr;
}

.bg-primary {
  background-color: #ff6d2c;
}

.bg-base-lightest {
  background-color: #fafafa;
}

@media (max-width: 768px) {
  .bg-sm-white {
    background-color: #fff;
  }
}

.bg-white {
  background-color: #fff;
}

.bg-yellow {
  background-color: #fff9d2;
}

@media (min-width: 1024px) {
  .bg-md-primary {
    background-color: #ff6d2c;
  }
}

.bg-secondary {
  background-color: #0b2353;
}

.linear-blue {
  background: linear-gradient(270deg, rgba(11, 35, 83, 0) 33.62%, #0b2353 137.84%);
}

.linear-black {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/*---

These are the styles for the typography. Typography styles can be applied
to any element. Typically you'll want to use either
a `<p>`, `<span>`, or heading element:

```html
<h1 class="heading-1">This is a title text</h1>
<span class="text-scale-lg">This is a text</span>
<p class="small">Some Text</p>
```

Index
- Font size
- Font weight
- Text color
- Text align
- Text decoration
- Text transform
- Text overflow
- List style
- White space

*/
/*-------------------------------------------*\
Font size
\*-------------------------------------------*/
:root {
  font-size: 100%;
}

*,
h1,
h2,
h3,
p,
div,
a,
span,
label,
li,
footer {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  color: #2a2a2a;
}

a {
  color: inherit;
}

.text-scale-2xl {
  font-size: 2.625rem;
  line-height: 52px;
}
@media (min-width: 1024px) {
  .text-scale-2xl {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .text-scale-2xl {
    line-height: 64px;
  }
}

.text-64 {
  font-size: 64px;
}

.text-size-60 {
  font-size: 2rem;
  line-height: 160%;
}
@media (min-width: 1024px) {
  .text-size-60 {
    font-size: 3.75rem;
  }
}

.text-scale-xl {
  font-size: 32px;
  line-height: 42px;
}
@media (min-width: 1024px) {
  .text-scale-xl {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .text-scale-xl {
    line-height: 64px;
  }
}

.text-scale-lg {
  font-size: 2rem;
  line-height: 42px;
}
@media (min-width: 1024px) {
  .text-scale-lg {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .text-scale-lg {
    line-height: 64px;
  }
}

.text-scale-md {
  font-size: 1.5rem;
  line-height: 40px;
}
@media (min-width: 1024px) {
  .text-scale-md {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .text-scale-md {
    line-height: 40px;
  }
}

.text-scale-2md {
  font-size: 1.25rem;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .text-scale-2md {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-scale-2md {
    line-height: 20px;
  }
}

.text-scale-2md-lh-24 {
  font-size: 1.25rem;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .text-scale-2md-lh-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-scale-2md-lh-24 {
    line-height: 24px;
  }
}

.text-scale-sm {
  font-size: 1rem;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .text-scale-sm {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-scale-sm {
    line-height: 32px;
  }
}

.text-scale-2sm {
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .text-scale-2sm {
    font-size: 1.125rem;
  }
}

.text-size-3sm {
  font-size: 0.75rem;
  line-height: 18px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .text-size-3sm {
    font-size: 0.875rem;
  }
}

.text-scale-xs {
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .text-scale-xs {
    font-size: 1rem;
  }
}

.text-size-20 {
  font-size: 1.25rem;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .text-size-20 {
    font-size: 1.25rem;
  }
}

.text-size-18 {
  font-size: 1.125rem;
  line-height: 16px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .text-size-18 {
    font-size: 1.125rem;
  }
}

.text-size-14px {
  font-size: 0.875rem;
  line-height: 22px;
}
@media (min-width: 1024px) {
  .text-size-14px {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .text-size-14px {
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .text-size-14px {
    letter-spacing: -0.02em;
  }
}

.text-size-32 {
  font-size: 2rem;
  line-height: normal;
}
@media (min-width: 1024px) {
  .text-size-32 {
    font-size: 2rem;
  }
}

.text-size-24 {
  font-size: 1.5rem;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .text-size-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-size-24 {
    line-height: 48px;
  }
}

.text-size-24-lh-32 {
  font-size: 1.5rem;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .text-size-24-lh-32 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-size-24-lh-32 {
    line-height: 32px;
  }
}

.text-size-14,
label {
  font-size: 0.875rem;
  line-height: 22px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .text-size-14,
  label {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .text-size-14,
  label {
    line-height: 22px;
  }
}

.small {
  font-size: 0.75rem;
  line-height: normal;
}
@media (min-width: 1024px) {
  .small {
    font-size: 0.75rem;
  }
}

.extra-small {
  font-size: 0.625rem;
  line-height: normal;
}
@media (min-width: 1024px) {
  .extra-small {
    font-size: 0.625rem !important;
  }
}

.text-list {
  font-size: 1rem;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .text-list {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-list {
    line-height: 20px;
  }
}

/*-------------------------------------------*\
Font Weight
\*-------------------------------------------*/
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

/*-------------------------------------------*\
Text Align
\*-------------------------------------------*/
.text-left {
  text-align: left;
}

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

@media (min-width: 1024px) {
  .text-md-left {
    text-align: left;
  }
}

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

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

/*-------------------------------------------*\
Text color
\*-------------------------------------------*/
.text-white {
  color: #fff;
}

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

.text-base {
  color: #2a2a2a;
}

.text-base-darker {
  color: #292929;
}

.text-base-darkest {
  color: #222222;
}

.text-error {
  color: #f71111;
}

.text-purple {
  color: #4318ff;
}

.text-base-10 {
  color: #6f6c7b;
}

.text-base-30 {
  color: #C0BDCD;
}

/*-------------------------------------------*\
Text Decoration
\*-------------------------------------------*/
.underline {
  text-decoration: underline;
}

.overline {
  text-decoration: overline;
}

.line-through {
  text-decoration: line-through;
}

.none {
  text-decoration: none;
}

/*-------------------------------------------*\
Text Transform
\*-------------------------------------------*/
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

/*-------------------------------------------*\
Text overflow
\*-------------------------------------------*/
.text-truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}

/*-------------------------------------------*\
List Style
\*-------------------------------------------*/
.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

.list-none {
  list-style-type: none;
}

.list-outside {
  list-style-position: outside;
}

.list-inside {
  list-style-position: inside;
}

/*-------------------------------------------*\
White-space
\*-------------------------------------------*/
.white-space-nowrap {
  white-space: nowrap;
}

.white-space-break-spaces {
  white-space: break-spaces;
}

/*-------------------------------------------*\
Others
\*-------------------------------------------*/
.italic {
  font-style: italic;
}

.text-base-10 {
  color: #6f6c7b;
}

.text-neutral-black {
  color: #111111;
}

textarea {
  resize: none;
}

input[type=text],
input[type=password],
input[type=date],
input[type=time],
input[type=email],
input[type=number],
input[type=tel],
input[type=search],
input[type=datetime-local],
select {
  display: block;
  border: 1px solid #c0bdcd;
  border-radius: 12px;
  color: #222222;
  height: 2.5rem;
  margin: 0;
  padding: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder,
input[type=datetime-local]::placeholder,
select::placeholder {
  color: #c0bdcd;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=datetime-local]:focus,
select:focus {
  outline: none;
  border-color: #c0bdcd;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled,
input[type=time]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
input[type=search]:disabled,
input[type=datetime-local]:disabled,
select:disabled {
  background-color: #F5F5F5;
}

textarea {
  border: 1px solid #c0bdcd;
  border-radius: 8px;
  color: #222222;
  resize: none; /* Supaya user nggak ubah manual */
  padding: 0.5rem;
  overflow-y: auto;
}
textarea::placeholder {
  color: #c0bdcd;
}
textarea:focus {
  outline: none;
  border-color: #c0bdcd;
}

select {
  appearance: none;
  background: url("../images/chevron-down.svg") no-repeat right;
  background-position: calc(100% - 0.5rem);
  cursor: pointer;
  height: 40px;
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  min-width: 62px;
  font-size: 0.875rem;
  padding: 0 12px;
}
@media (min-width: 1024px) {
  select {
    font-size: 0.875rem;
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.form-control {
  outline: none;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.hide-input {
  position: absolute;
  z-index: -1;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
}

.w-max-content {
  width: max-content;
}

.w-min-content {
  width: min-content;
}

.h-max-content {
  height: max-content !important;
}

.w-100 {
  width: 100% !important;
}

@media (min-width: 1024px) {
  .w-md-75 {
    width: 75%;
  }
}

@media (min-width: 1440px) {
  .w-lg-75 {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  .w-md-50 {
    width: 50% !important;
  }
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.content-min-100vh {
  min-height: calc(100vh - 80px);
}

.h-200px {
  height: 200px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .w-60 {
    width: 75%;
  }
}
@media (min-width: 1440px) {
  .w-60 {
    width: 60%;
  }
}

.w-75-xl {
  width: 100%;
}
@media (min-width: 1440px) {
  .w-75-xl {
    width: 75%;
  }
}

.w-50 {
  width: 50%;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

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

.d-grid {
  display: grid;
}

.d-block {
  display: block !important;
}

@media (min-width: 1024px) {
  .d-md-flex {
    display: flex !important;
  }
}

@media (min-width: 1024px) {
  .d-md-block {
    display: block;
  }
}

@media (min-width: 1024px) {
  .d-md-grid {
    display: grid !important;
  }
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

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

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

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

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

.flex-direction-row {
  flex-direction: row;
}

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

.justify-content-end {
  justify-content: end;
}

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

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

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

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

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

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

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

.align-content-around {
  align-content: space-around;
}

.align-content-stretch {
  align-content: stretch;
}

.align-content-between {
  align-content: space-between;
}

.overflow-unset {
  overflow: unset;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

@media (min-width: 1024px) {
  .section__wrapper {
    box-sizing: border-box;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }
}

.section__padding {
  padding: 2.625rem 5%;
}
@media (min-width: 1024px) {
  .section__padding {
    padding: 5rem 5%;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.opacity-0 {
  opacity: 0;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-50 {
  opacity: 0.5;
}

.box-sizing-border-box {
  box-sizing: border-box;
}

hr {
  margin: 0;
  opacity: 1;
}

.vertical-align-middle {
  vertical-align: middle;
}

.z-index-1 {
  z-index: 1;
}

@media (min-width: 1024px) {
  .border-radius-md-16px {
    border-radius: 16px;
  }
}

.position-relative {
  position: relative;
}

.m-auto {
  margin: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.my-bottom {
  margin-top: auto;
  margin-bottom: 0;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.mx-5 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.ml-5 {
  margin-left: 3rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.mr-5 {
  margin-right: 3rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 1rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pl-5 {
  padding-left: 3rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.pr-5 {
  padding-right: 3rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .nav--home {
    padding: 3.25rem 5% 0;
  }
}
@media (min-width: 1024px) {
  .nav-black {
    padding-inline: 5%;
  }
}

@media (min-width: 1024px) {
  .menu__mobile {
    display: none;
  }
}

.nav-link__desktop {
  display: none;
}
@media (min-width: 1024px) {
  .nav-link__desktop {
    display: flex;
    column-gap: 1.5rem;
  }
}

.sidenav__wrapper {
  display: grid;
  row-gap: 1.5rem;
  align-content: baseline;
  background: #191F2F;
  min-height: calc(100vh - 80px - 38.49px);
  height: 100%;
  box-sizing: border-box;
  padding: 1.5rem 0;
}
.sidenav__logo {
  padding: 0 2rem;
}
.sidenav__list .link-item {
  display: flex;
  height: 56px;
  padding: 0 2rem;
}
.sidenav__list .link-item span {
  color: #AEAEB2;
}
.sidenav__list .link-item.link-active {
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.2);
}
.sidenav__list .link-item.link-active span {
  color: #fff;
}

/* Popup Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  bottom: 0;
  display: grid;
  row-gap: 1rem;
  box-sizing: border-box;
  background-color: #fafafa;
  padding: 1.5rem 1rem;
  border: 1px solid #888;
  width: 100%;
  height: 90%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media (max-width: 768px) {
  .modal-content {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1024px) {
  .modal-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 20px;
    max-width: 710px;
    padding: 2.5rem;
  }
}
.modal-content--small {
  padding: 1rem;
}

.modal-form {
  overflow-y: auto;
  max-height: 80vh;
}

@keyframes modalopen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-btn {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid gray;
  text-align: center;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid #111111;
  }
}
@media (min-width: 1024px) {
  .close-btn {
    padding-inline: 1.25rem;
  }
}

.close:hover {
  color: black;
}

.upload-container {
  border: 2px dashed #ccc;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.upload-container:hover {
  border-color: #999;
}

#file-input {
  display: none;
}

.upload-btn {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.upload-btn:hover {
  background-color: #45a049;
}

.file-list {
  margin-top: 20px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.file-info {
  display: flex;
  align-items: center;
}

.file-icon {
  margin-right: 10px;
  color: #555;
}

.remove-btn {
  color: #ff4444;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-item {
  position: relative;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}

.preview-item img {
  position: absolute;
  top: 10px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.preview-item .remove-preview {
  position: absolute;
  top: 0px;
  right: 0px;
  background: white;
  color: black;
  border: 1px solid gray;
  border-radius: 50%;
  font-size: xx-small;
  text-align: center;
  width: 15px;
  height: 15px;
  padding: auto;
  margin: auto;
  cursor: pointer;
}

.error {
  color: red;
  margin-top: 5px;
}

footer * {
  color: white;
}
footer .footnote {
  border-top: 1px solid #fff;
  padding: 2rem 5%;
}

/*
Your standard form button. Typically you'll want to use either
a `<div>`, `<button>` or `<a>`, element:

​```html
<button type="button" class="usa-button">Button</button>
```

:hover    - Highlights when hovering.
:disabled - Dims the button when disabled.
--primary  - Indicates button is the primary action.
--outline  - Indicates button is the secondary action.
--icon-only - The button has only 1 icon
--big  - A bigger button

Index
- Button

*/
/*-------------------------------------------*\
Button
\*-------------------------------------------*/
button {
  border: none;
  background-color: transparent;
}

.button {
  background-color: #ff6d2c;
  border: 0;
  border-radius: 8px;
  min-width: 7.375rem;
  padding: 1rem 2rem;
  width: max-content;
  font-size: 1rem;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .button--big {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
}
.button--small {
  padding: 0;
  min-height: 32px;
  font-size: 0.875rem;
  line-height: 22px;
}
@media (min-width: 1024px) {
  .button--small {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .button--small {
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .button--small {
    letter-spacing: -0.02em;
  }
}
.button:disabled, .button[aria-disabled=true] {
  color: #fff;
  background-color: #C0BDCD;
  cursor: not-allowed;
  opacity: 1;
}

.button--outline {
  background-color: transparent;
  padding-inline: 1.25rem;
  font-weight: 500;
  color: #ff6d2c;
  border: 1px solid #ff6d2c;
  text-align: center;
}
.button--outline:visited {
  color: #ff6d2c;
}

.button--secondary {
  background-color: #0b2353;
}

.button--tertiary {
  background-color: #4318ff;
  min-width: 13rem;
  border-radius: 30px;
}

.button--upload {
  background-color: #e4f4ff;
  padding: 5px 1.5rem !important;
  font-weight: 500;
  color: #4318ff;
  border: 1px solid #e4f4ff;
  text-align: center;
  border-radius: 30px;
}

.button--white {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.button-dynamic {
  width: 100%;
}
@media (min-width: 1024px) {
  .button-dynamic {
    width: max-content;
  }
}

.accordion__body {
  position: relative;
  display: grid;
  row-gap: 12px;
  padding-left: 1.5rem;
}
.accordion__title {
  color: #fff;
}
.accordion__img {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  margin-top: 1rem;
}
.accordion__item {
  cursor: pointer;
}
.accordion__item .accordion__img {
  display: none;
}
.accordion__item.active .accordion__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ff6d2c;
  height: 100%;
  width: 6px;
}
.accordion__item.active .accordion__body p {
  opacity: 1;
  color: #fff;
}
.accordion__item.active .accordion__title {
  color: #ff6d2c;
  opacity: 1;
}
.accordion__item.active .accordion__img {
  display: block;
}
@media (min-width: 1024px) {
  .accordion__item .accordion__img {
    display: none !important;
  }
}

.how-it-works__section {
  display: grid;
  row-gap: 2.625rem;
}
@media (min-width: 1024px) {
  .how-it-works__section {
    row-gap: 5rem;
  }
}
.how-it-works__img-desktop {
  position: relative;
}
.how-it-works__img-desktop .accordion__img {
  display: none;
  position: absolute;
  inset: 0;
  object-fit: cover;
  border-radius: 16px;
  height: 100%;
  width: 100%;
}
.how-it-works__img-desktop .accordion__img.active {
  display: block;
}

.accordion-website__wrapper {
  border: 1px solid #C0BDCD;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion-website__wrapper.active {
  height: max-content;
}
.accordion-website__wrapper.active .accordion-website__content {
  height: max-content;
  opacity: 1;
  padding: 0 1rem 1rem;
}
.accordion-website__wrapper.active .accordion-website__title::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuODE2NDEgMTIuNTcyM0gxOS44MTY0IiBzdHJva2U9IiMwOTAzMjIiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}
.accordion-website__title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 1rem;
}
.accordion-website__title::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjgxNjQgNS41NzIyN1YxOS41NzIzTTUuODE2NDEgMTIuNTcyM0gxOS44MTY0IiBzdHJva2U9IiMwOTAzMjIiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.accordion-website__content {
  height: 0;
  font-size: 1rem;
  padding: 0 1rem;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .accordion-website__content {
    font-size: 1rem;
  }
}

.check__list {
  display: grid;
  row-gap: 1.5rem;
}
.check__list li {
  position: relative;
  padding-left: 2.25rem;
}
.check__list--small li {
  padding-left: 1.875rem;
}
.check__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url("../images/check-orange-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}
.check__list--white li::before {
  background-image: url("../images/check-orange-line.svg");
  filter: brightness(0) invert(1);
}

.form-page {
  display: grid;
  grid-template-areas: "name" "postcode" "mobile-number" "email" "message" "picture" "submit";
  column-gap: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .form-page {
    grid-template-areas: "name postcode" "mobile-number email" "message message" "picture picture" "submit .";
  }
}
.form-page .name {
  grid-area: name;
}
.form-page .postcode {
  grid-area: postcode;
}
.form-page .car-registration-number {
  grid-area: crn;
}
.form-page .mobile-number {
  grid-area: mobile-number;
}
.form-page .email {
  grid-area: email;
}
.form-page .message {
  grid-area: message;
}
.form-page .picture {
  grid-area: picture;
}

.form-modal {
  display: grid;
  grid-template-areas: "name" "postcode" "mobile-number" "email" "caryear" "carcolor" "damage" "service" "bookdate" "booktime" "message" "picture";
  column-gap: 2rem;
  background-color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .form-modal {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  }
}
@media (min-width: 1024px) {
  .form-modal {
    grid-template-areas: "name postcode" "mobile-number email" "caryear carcolor" "damage service" "bookdate booktime" "message message" "picture picture";
  }
}
.form-modal .name {
  grid-area: name;
}
.form-modal .postcode {
  grid-area: postcode;
}
.form-modal .car-registration-number {
  grid-area: crn;
}
.form-modal .mobile-number {
  grid-area: mobile-number;
}
.form-modal .email {
  grid-area: email;
}
.form-modal .car-year {
  grid-area: caryear;
}
.form-modal .car-color {
  grid-area: carcolor;
}
.form-modal .damage-type {
  grid-area: damage;
}
.form-modal .service-type {
  grid-area: service;
}
.form-modal .book-date {
  grid-area: bookdate;
}
.form-modal .book-time {
  grid-area: booktime;
}
.form-modal .message {
  grid-area: message;
}
.form-modal .picture {
  grid-area: picture;
}

/*-------------------------------------------*\
  Badge Component
\*-------------------------------------------*/
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: #fff;
  background-color: #575757;
}

.badge-new {
  background-color: #ff6d2c;
  color: #fff;
}

.badge-awaiting_details {
  background-color: #0b2353;
  color: #fff;
}

.badge-incomplete {
  background-color: #f71111;
  color: #fff;
}

.badge-quote_pending {
  background-color: #6f6c7b;
  color: #fff;
}

.badge-quote_received {
  background-color: #575757;
  color: #fff;
}

.badge-quote_sent {
  background-color: #919191;
  color: #fff;
}

.badge-quote_accepted {
  background-color: #28a745;
  color: #fff;
}

.badge-scheduling {
  background-color: #17a2b8;
  color: #fff;
}

.badge-schedule_change {
  background-color: #ffc107;
  color: #222222;
}

.badge-scheduled {
  background-color: #6f42c1;
  color: #fff;
}

.badge-in_progress {
  background-color: #007bff;
  color: #fff;
}

.badge-completed {
  background-color: #28a745;
  color: #fff;
}

.badge-cancelled {
  background-color: #f71111;
  color: #fff;
}

.badge-failed {
  background-color: #dc3545;
  color: #fff;
}

.badge-new-message {
  background-color: #ff6d2c;
  color: #fff;
}

.badge-dot {
  height: 10px;
  width: 10px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}

.list-dot {
  height: 4px;
  width: 4px;
  background-color: grey;
  border-radius: 50%;
  display: inline-block;
}

.our-services__section {
  display: grid;
  row-gap: 1.5rem;
}
@media (min-width: 1024px) {
  .our-services__section {
    row-gap: 4rem;
  }
}
.our-services__section .card-services {
  position: relative;
  height: 250px;
  padding: 2rem 1.75rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .our-services__section .card-services:nth-of-type(10), .our-services__section .card-services:nth-of-type(11), .our-services__section .card-services:nth-of-type(12) {
    display: none;
  }
}
.our-services__section .card-services .img-behind-text__item {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.our-services__section .card-services:hover .img-behind-text__item {
  transform: scale(1.04);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (min-width: 1024px) {
  .our-services__section .card-services {
    height: 330px;
  }
}
@media (min-width: 1440px) {
  .our-services__section .card-services {
    height: 455px;
  }
}
.our-services__section .card-services__body {
  display: grid;
  row-gap: 8px;
  align-content: end;
}
@media (max-width: 768px) {
  .our-services__section .card-services__body {
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .our-services__section .card-services__body {
    position: absolute;
    top: 45%;
    left: 1.75rem;
    right: 1.75rem;
  }
}
@media (min-width: 1440px) {
  .our-services__section .card-services__body {
    top: 70%;
  }
}

.image-gallery {
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  margin-bottom: 20px;
}

.image-gallery__main {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
}

.image-gallery__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-gallery__thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.image-gallery__thumbnail-container {
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.image-gallery__thumbnail-container.active {
  border-color: #FDC26F;
}

.image-gallery__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow-y: auto;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .image-gallery {
    flex-direction: row;
  }
  .image-gallery__main {
    flex: 1;
  }
  .image-gallery__thumbnails {
    flex-direction: column;
  }
}
.cols-2fr-1fr {
  grid-template-columns: 2fr 1fr;
}

.cols-detail {
  grid-template-columns: 2fr 0.75fr;
}

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.rg-2px {
  row-gap: 2px;
}

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

.rg-8px {
  row-gap: 8px;
}

.rg-12px {
  row-gap: 0.75rem;
}

.rg-16px {
  row-gap: 1rem;
}

@media (min-width: 1024px) {
  .rg-md-16 {
    row-gap: 1rem;
  }
}

.rg-18px {
  row-gap: 1.125rem;
}

.rg-24px {
  row-gap: 1.5rem;
}

.rg-32px {
  row-gap: 2rem;
}

.rg-42px {
  row-gap: 2.625rem;
}

@media (min-width: 1024px) {
  .rg-md-24px {
    row-gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .rg-md-32px {
    row-gap: 2rem;
  }
}

@media (min-width: 1440px) {
  .rg-lg-32px {
    row-gap: 2rem;
  }
}

.rg-48px {
  row-gap: 3rem;
}

.cg-4px {
  column-gap: 0.25rem;
}

.cg-8px {
  column-gap: 0.5rem;
}

.cg-12px {
  column-gap: 0.75rem;
}

.cg-16px {
  column-gap: 1rem;
}

.cg-24px {
  column-gap: 1.5rem;
}

.cg-32px {
  column-gap: 2rem;
}

.cg-48px {
  column-gap: 3rem;
}

@media (min-width: 1024px) {
  .cg-md-16px {
    column-gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .cg-md-32px {
    column-gap: 2rem;
  }
}

@media (min-width: 1440px) {
  .cg-lg-32px {
    column-gap: 2rem;
  }
}

.input__layout {
  display: grid;
  row-gap: 12px;
}

.input__layout_modal {
  display: grid;
  row-gap: 2px;
}

.img-behind-text__wrapper {
  position: relative;
  overflow: hidden;
}
.img-behind-text__item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.img-behind-text__item--right {
  left: unset;
  right: 0;
}

.hero__section {
  background: url(../images/hero-banner.png) no-repeat;
  background-size: auto 42rem;
  background-position: top;
  border-image-source: linear-gradient(270deg, rgba(11, 35, 83, 0) 33.62%, #0b2353 137.84%);
  border-image-slice: fill 1;
}
@media (min-width: 1024px) {
  .hero__section {
    background-size: cover;
    border-image-source: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #0b2353 100%);
  }
}
@media (min-width: 1024px) {
  .hero__header {
    width: 90%;
    margin: 0;
  }
}
.hero__bottom {
  background-color: #0b2353;
}
@media (min-width: 1024px) {
  .hero__bottom {
    background: rgba(11, 35, 83, 0.6);
  }
}
.hero__text {
  display: grid;
}
@media (min-width: 1024px) {
  .hero__text {
    grid-template-columns: 0.75fr 1fr;
    padding: 2.625rem 5%;
  }
}
.hero__buttons {
  display: grid;
  row-gap: 1rem;
}
@media (max-width: 768px) {
  .hero__buttons {
    width: max-content;
  }
  .hero__buttons .button--white {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .hero__buttons {
    display: flex;
    column-gap: 1rem;
  }
}

.cta-home__section {
  position: relative;
  height: 390px;
  background: linear-gradient(180deg, rgba(11, 35, 83, 0) 35.48%, #0b2353 69.13%);
}
@media (min-width: 1024px) {
  .cta-home__section {
    height: 400px;
    background: linear-gradient(90deg, rgba(11, 35, 83, 0) 19.31%, #0b2353 55.18%);
  }
}
.cta-home__body {
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 2rem;
  height: 100%;
}
@media (max-width: 768px) {
  .cta-home__body {
    align-content: end;
  }
}
@media (min-width: 1024px) {
  .cta-home__body {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }
}

.why-choose-us__img {
  position: relative;
}
.why-choose-us__img img:nth-of-type(2) {
  position: absolute;
  left: -100px;
  bottom: 100px;
  height: 200px;
  width: 200px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (min-width: 1024px) {
  .why-choose-us__img img:nth-of-type(2) {
    left: -70px;
  }
}
@media (min-width: 1440px) {
  .why-choose-us__img img:nth-of-type(2) {
    left: -150px;
    bottom: -40px;
    height: 300px;
    width: 300px;
  }
}

.special-offers__section {
  height: 385px;
  background: linear-gradient(180deg, rgba(255, 109, 44, 0) 35.48%, #ff6d2c 69.13%);
}
@media (min-width: 1024px) {
  .special-offers__section {
    background: linear-gradient(90deg, #ff6d2c 43.27%, rgba(255, 109, 44, 0) 80%);
  }
}
@media (max-width: 768px) {
  .special-offers__section .img-behind-text__item {
    object-position: bottom;
  }
}
@media (min-width: 1024px) {
  .special-offers__section .img-behind-text__item {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .special-offers__body {
    justify-items: center;
    align-content: end;
    height: 100%;
  }
}

.splide__arrows {
  display: flex;
  column-gap: 1rem;
}
.splide__arrow {
  position: unset !important;
  transform: unset !important;
  background: transparent !important;
  height: unset !important;
  opacity: 1 !important;
}

.testimonials__section {
  position: relative;
}
@media (min-width: 1024px) {
  .testimonials__list__wrapper {
    margin-left: 5%;
  }
}
.testimonials__list__wrapper .splide__arrows {
  padding: 1.5rem 5% 0 0;
}
@media (min-width: 1024px) {
  .testimonials__list__wrapper .splide__arrows {
    justify-content: right;
  }
}
.testimonials__list {
  padding: 0 0 2rem 1rem;
}
@media (min-width: 1024px) {
  .testimonials__list {
    background-color: #ff6d2c;
    padding: 4rem 0 2.625rem 3rem;
    border-top-left-radius: 2rem;
  }
}
.testimonials__item {
  display: grid;
  row-gap: 1rem;
  box-sizing: border-box;
  height: 100%;
  padding: 1rem;
  background-color: #efefef;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .testimonials__item {
    align-content: space-between;
    padding: 2rem 2.875rem;
    min-height: 300px;
    max-height: 350px;
  }
}

@media (min-width: 1024px) {
  .coverage__section {
    display: grid;
    row-gap: 3rem;
    padding: 5rem 5%;
  }
}
@media (max-width: 768px) {
  .coverage__header {
    padding: 2rem 5%;
  }
}
.coverage__body {
  display: grid;
  row-gap: 1.5rem;
}
@media (max-width: 768px) {
  .coverage__text {
    padding: 0 5% 2rem;
  }
}

@media (min-width: 1024px) {
  .text-with-curved-border {
    padding-left: 2.625rem;
  }
}

.text-with-curved__wrapper {
  display: grid;
  align-items: center;
}
@media (min-width: 1024px) {
  .text-with-curved__wrapper {
    column-gap: 1.5rem;
    grid-template-columns: 1fr 0.75fr;
  }
}

.bg-decorative {
  display: none;
}
@media (min-width: 1024px) {
  .bg-decorative {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 48%;
  }
}
@media (min-width: 1440px) {
  .bg-decorative {
    margin-top: -20px;
    width: unset;
  }
}

@media (min-width: 1024px) {
  .thank-you__section {
    display: grid;
    align-items: start;
    column-gap: 2rem;
    row-gap: 2rem;
    padding-block: 3rem;
  }
}
.thank-you__message {
  display: flex;
  column-gap: 1rem;
  background-color: #e0fff6;
  padding: 1rem 5%;
}
@media (min-width: 1024px) {
  .thank-you__message {
    border-radius: 12px;
    padding: 2rem;
  }
}
.thank-you__message img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .thank-you__message img {
    width: 84px;
    height: 84px;
  }
}
.thank-you__guarantee {
  padding: 1.5rem 5%;
}
@media (min-width: 1024px) {
  .thank-you__guarantee {
    border-radius: 12px;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .thank-you__form {
    padding: 1rem 5% 2.25rem;
  }
}
.thank-you__reminder {
  background-color: rgba(9, 3, 34, 0.5);
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .thank-you__reminder {
    display: grid;
    row-gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .thank-you__reminder {
    border-radius: 12px;
  }
}
.thank-you__reminder > div > div {
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .thank-you__reminder > div > div {
    padding: 0 2.25rem;
  }
}
.thank-you__faq {
  padding: 2rem 5%;
}
@media (min-width: 1024px) {
  .thank-you__faq {
    padding: 2rem 0;
  }
}
.thank-you__testimonials {
  display: flex;
  flex-direction: column;
  row-gap: 2.625rem;
}
@media (max-width: 768px) {
  .thank-you__testimonials {
    padding: 2rem 5% 3.75rem;
  }
}
@media (min-width: 1024px) {
  .thank-you__testimonials {
    padding: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .vip__section {
    display: grid;
    row-gap: 2rem;
    padding: 2rem 0 4rem;
  }
}

#cost__slider .splide__track {
  margin-left: 1rem !important;
}
@media (min-width: 1024px) {
  #cost__slider .splide__track {
    margin-left: 2.25rem !important;
  }
}
@media (max-width: 768px) {
  #cost__slider .splide__list {
    width: 95% !important;
  }
}

.cost__item {
  display: grid;
  row-gap: 1rem;
  min-height: 215px;
  padding: 0.75rem;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
}
.cost__item > div:first-child {
  height: 190px;
  overflow: hidden;
  border-radius: 12px;
}

.small-width {
  max-width: 850px;
  margin: auto;
  box-sizing: border-box;
  width: 100%;
}

.main-content {
  background-color: #F5F7FA;
}

.content-header {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1019607843);
}

.card {
  border: none;
  border-radius: 0;
}
.card-body {
  padding-block: 0;
}
.card-body a {
  border-bottom: 1px solid #F2F2F7;
}
.card-selected {
  background: #E4F4FF;
}

/* Chat Frame Styling */
.chat-frame-wrapper {
  max-height: 100%;
  height: calc(100vh - 10px); /* Adjust the 100px based on header/footer size */
  display: flex;
  flex-direction: column;
}

.chat-frame {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1rem;
  background-color: #f5f7fb;
  background-image: url(".././images/chat-background.png");
  height: calc(100% - 70px); /* Adjust height to account for input area */
  overflow-y: auto;
}

/* Base Chat Message Styling */
.chat-message {
  width: 90%;
  padding: 12px 16px;
  border-radius: 16px;
  position: relative;
  word-wrap: break-word;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  /* Inbound Message Styling (messages received) */
  /* Outbound Message Styling (messages sent) */
}
.chat-message.chat-status-failed {
  border: 1px solid #ff4d4f;
}
.chat-message::after {
  content: attr(data-time);
  display: block;
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.7;
}
.chat-message.dir-inbound-api {
  align-self: flex-start;
  background-color: #E6E6E6;
  border-bottom-left-radius: 4px;
}
.chat-message.dir-outbound-api {
  align-self: flex-end;
  background-color: #4318ff;
  border-bottom-right-radius: 4px;
}
.chat-message.dir-outbound-api p, .chat-message.dir-outbound-api time {
  color: white;
}

/* Status Indicators */
.chat-message.chat-status-delivered::before,
.chat-message.chat-status-sent::before,
.chat-message.chat-status-failed::before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 8px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Chat Input Styling */
.chat-input__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.625rem;
  background-color: #C1E0FF;
}
.chat-input__item {
  background-color: #fff;
  border-radius: 12px;
}
.chat-input__item textarea {
  border: none;
  min-height: 50px;
  max-height: 200px;
  resize: none;
  width: 98%;
  padding: 6px 1rem;
  box-sizing: border-box;
  line-height: 1.4;
}
.chat-input__item textarea::-webkit-scrollbar {
  width: 6px;
}
.chat-input__item textarea::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 12px;
}
.chat-input__item textarea::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.chat-send-button {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chat-input {
    padding: 8px 12px;
  }
  .chat-input input {
    padding: 8px 12px;
  }
}
/* Add this to your main.css file before the sourcemap comment */
.customer-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
}

.job-quote__wrapper {
  background-color: #FFF9D2;
  border-radius: 12px;
  padding: 0.75rem;
}
.job-quote__wrapper, .job-quote__list {
  display: grid;
  row-gap: 0.875rem;
}
.job-quote__item {
  position: relative;
  display: flex;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  overflow: hidden;
}
.job-quote__body {
  z-index: 1;
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  width: calc(100% - 3rem);
}
.job-quote__button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4318ff;
  border: none;
  padding: 1rem 0.625rem 1rem 2rem;
}
.job-quote__button-text {
  transform: rotate(90deg);
}

.privacy-policy__section {
  display: grid;
  row-gap: 1.5rem;
}
.privacy-policy__section * {
  color: #374659;
}
@media (min-width: 1024px) {
  .privacy-policy__section {
    row-gap: 2rem;
  }
}
.privacy-policy__section h3 {
  margin-bottom: 10px;
}

/*# sourceMappingURL=project.css.map */
