/*
|-----------------------------------------------------------------
| PABLO BELL ONE GLOBAL CONCEPT
|-----------------------------------------------------------------
| START DATE: 13th August 2024
| Main CSS Stylesheet
|-----------------------------------------------------------------
*/


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

/* HTML5 display-role reset for older browsers */
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;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
    width: 100%;
}

button {
    border: none;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
    outline: none;
}

:root {
    --primary: #0E1628;
    --blue-color: #5C81AE;
    --green-color: #a4c519;
    --gray-color: #9AA1B3;

    --base-brand: #ee7e01;
    --personal-brand: #a4c519;
    --private-brand: #000000;
    --business-brand: #014086;
    --xclusive-brand: #003624;
    --secondary-1-brand: #007168;
    --secondary-2-brand: #b8061f;
    --white: #ffffff;
}



/* html,
body {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: normal;
    line-height: normal;
    scroll-behavior: smooth;
    background: (var(--white));
    color: var(--primary);
    box-sizing: border-box;
}


html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    box-sizing: border-box;
}  */

*,
html,
body,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
}


body {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
    background: (var(--white));
    /* background: url("/assets/images/bg-img.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--primary);

    &::-webkit-scrollbar {
        width: 0.375rem !important;
        height: 0.375rem !important;
        @apply bg-gray-300;
    }

    &::-webkit-scrollbar-thumb {
        border-radius: 0.25rem !important;
        @apply bg-primary;
    }

    &.white-scrollbar {
        &::-webkit-scrollbar-thumb {
            border-radius: 0.25rem !important;
            @apply bg-white;
        }
    }
}

img {
    image-rendering: crisp-edges;
}

.my-container {
    max-width: 124rem;
    margin: 0 auto;
}

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

/* Custom text size classes */
.text-6xl {
    font-size: 6.4rem !important;
}

.text-5xl {
    font-size: 4.8rem !important;
}

.text-4xl {
    font-size: 3.6rem !important;
}

.text-3xl {
    font-size: 3.2rem !important;
}

.text-2xl {
    font-size: 2.4rem !important;
}

.text-xl {
    font-size: 2.0rem !important;
}

.text-lg {
    font-size: 1.8rem !important;
}

.text-base {
    font-size: 1.6rem !important;
}

.text-sm {
    font-size: 1.4rem !important;
}

.text-xs {
    font-size: 1.2rem !important;
}


.flex-1 {
    flex: 1 1 0%;
}

.btns {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.btn {
    background: #5C81AE;
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-weight: 500;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #5C81AECC;
    transform: scale(1.1);
}

.btn-outlined {
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-weight: 500;
    color: #5C81AE;
    border: 1px solid #5C81AE;
    background: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-outlined:hover {
    background: #5C81AE1A;
    transform: scale(1.1);
}

.btn-white {
    background: #FFFFFF;
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-weight: 500;
    color: #5C81AE;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-white:hover {
    background: #FFFFFFCC;
    transform: scale(1.1);
}

.btn-white-outlined {
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-white-outlined:hover {
    background: #FFFFFF1A;
    transform: scale(1.1);
}

.world {
    width: 100%;
    /* max-height: 57rem; */
    /* max-width: 144rem;
    margin: 0 auto; */
    margin: 2rem auto;

    img {
        width: 100%;
        /* max-height: 57rem; */
        /* height: 100%; */
        object-fit: cover;
    }
}

/* ACCORDION */
.faq {
    padding: 7rem 5rem;

    .heading {
        max-width: 98.9rem;
        margin: 0 auto;
        text-align: center;

        h3 {
            font-weight: 700;
            font-size: 3.5rem;
            margin-bottom: 1.6rem;
        }

        p {
            color: #0E1628B2;

            a {
                font-weight: 700;
                text-decoration: underline;
            }
        }
    }
}

.accordion {
    max-width: 98.9rem;
    margin: 0 auto;
    margin-top: 3rem;
}

.accordion-item {
    margin-bottom: 10px;
    padding: 3.5rem 4rem;
    border: none;
    border-bottom: 0.5px solid #0E16284D !important;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-item:last-child {
    border: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    color: white;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
}


.accordion-header {
    font-weight: 700;
    color: var(--primary);
    font-size: 2.5rem;
}


.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 1.6rem;
    padding-bottom: 0;
    background-color: white;
}

.accordion-content p {
    margin: 0;
}

/* MISSION */
.mission {
    display: flex;
    gap: 6.4rem;
    align-items: center;
    padding: 7rem 5rem;
    margin-bottom: 8rem;

    .text h3 {
        font-weight: 700;
        font-size: 3.5rem;
        line-height: 50px;
    }

    .text p {
        margin: 2.4rem 0;
        font-size: 2rem;
        color: #0E1628B2;
        font-weight: 400;
        line-height: 3rem;
    }

    .mission-img {
        flex: 1 1 0%;
        /* max-width: 52.7rem;
        max-height: 52.7rem; */
    }

    .mission-img img {
        width: 100%;
    }
}

/* SHORT STORY */
.short-story {
    display: flex;
    gap: 6.4rem;
    align-items: start;
    padding: 0rem 5rem;
    margin-bottom: 8rem;

    .text h3 {
        font-weight: 700;
        font-size: 3.5rem;
        line-height: 50px;
    }

    hr {
        margin-bottom: 2.4rem;
        height: 2px;
        /* color: #0E16281A; */
    }

    blockquote {
        font-weight: 500;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

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

    .text p {
        margin: 2.4rem 0;
        font-size: 2rem;
        color: #0E1628B2;
        font-weight: 400;
        line-height: 3rem;
    }

    .user-display {
        display: flex;
        align-items: center;
        gap: 1.5rem;

        p {
            margin: 0;
        }

        .position {
            color: #0E1628B2;
        }
    }

    .short-story-img {
        flex: 1 1 0%;
        /* max-width: 52.7rem;
        max-height: 52.7rem; */
    }

    .short-story-img img {
        width: 100%;
    }
}

/* CLIENT SAY */
.client-say {
    padding: 0 4vw;

    h4 {
        font-weight: 700;
        font-size: 4rem !important;
        max-width: 40.5rem;
        margin: 0 auto;
    }

    p {
        margin-bottom: 3.2rem;
    }

    button {
        display: flex;
        margin: 3.2rem auto;
    }
}

/* FORMS */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    width: 100%;


    p {
        text-align: center;
        font-weight: 400;
        color: #0E1628B2;

        a {
            font-weight: 500;
            color: #5C81AE;
        }
    }

    .social-icons {
        display: flex;
        gap: 2.4rem;
        width: max-content;
        margin: 0 auto;
        align-items: center;
        justify-content: center;

        svg path {
            fill: #5C81AE;
        }
    }

    .layout {
        display: flex;
        align-items: center;
        gap: 2.4rem;
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .form-group label {
        display: block;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    /* Form inputs */
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1.6rem;
        border: none;
        border-radius: 8px;
    }

    .form-group select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form-group select option:first-child {
        color: #0E142880 !important;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #0E142880;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: 1px solid #0E1628;
        outline-offset: 1px;
    }


    .file-upload-wrapper {
        position: relative;
    }

    .file-upload-text {
        width: 100%;
        padding: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1.6rem;
        background-color: #fff;
        cursor: pointer;
    }


    .file-upload-input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

    /* Submit button */
    button[type="submit"] {
        max-width: 31rem;
        margin: 0 auto;
    }

}

.thanks {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-link {
    margin-top: -3rem;
    color: #014086;
    text-decoration: none;
    text-align: center;
    max-width: fit-content;
}

/* Circular loader styling */
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: none;
    /* Initially hidden */
    margin: 20px auto;
}

#loom-companion-mv3 {
    display: none !important;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width:480px) {
    .btns {
        flex-direction: column;
        width: 100% !important;
        margin-top: 1rem;

    }

    .btn,
    .btn-outlined,
    .btn-white,
    .btn-white-outlined {
        width: 100% !important;

    }
}

@media (max-width: 768px) {


    .mission {
        flex-direction: column;
        text-align: center;
        padding: 0rem 2rem;
        gap: 5rem;
        border-radius: 0;
        align-items: center;
    }

    .mission .text {
        align-items: center;
        order: 1;
    }

    .mission .text h3 {
        font-size: 3rem;
        line-height: normal;
    }

    .mission .text p {
        margin: 1.6rem 0;
    }

    .mission .mission-img {
        order: 2;
    }

    .mission .mission-img img {
        width: 80%;
    }

    .short-story {
        flex-direction: column;
        text-align: center;
        padding: 0rem 2rem;
        gap: 5rem;
        border-radius: 0;
        align-items: center;
    }

    .short-story .text {
        align-items: center;
        order: 1;
    }

    hr {
        width: 100%;
    }

    blockquote {
        margin-top: 0;
    }

    .short-story .text h1 {
        font-size: 3rem;
        line-height: normal;
    }

    .short-story .text p {
        margin: 1.6rem 0;
    }

    .short-story .short-story-img {
        order: 2;
    }

    .short-story .short-story-img img {
        width: 80%;
    }

    .client-say {
        /* padding: 0 2rem; */

        h4 {
            font-size: 3rem !important;
        }
    }

    .faq {
        padding: 4rem 2rem;

        .accordion-item {
            padding: 2rem 0rem;

        }

        .accordion-header {
            font-size: 2rem;
        }
    }

    .form-field {
        gap: 2.4rem;

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

@media (min-width:768px) and (max-width: 992px) {
    .mission {
        padding: 0rem 4rem;
        margin-bottom: 6.4rem;
        border-radius: 0 0 20px 20px;
        align-items: start;
    }

    .mission .text h1 {
        font-size: 3.2rem;
        line-height: normal;
    }

    .mission .mission-img img {
        width: 90%;
    }

    .client-say {
        padding: 0 4rem;
    }

    .faq {
        padding: 4rem;
    }


}