:root {
    --main: #6B2B7A;
    --main-light: #BE67CE;
    --main-dark: #3F1940;
    --main-gradient: linear-gradient(180deg, #BE67CE, #6B2B7A);
    --main-dark-gradient: linear-gradient(180deg, #6B2B7A, #3F1940);
    --sub-main: #465096;
    --light-gray: #f2f2f2;
    --gray: #e6e6e6;
    --dark-gray: #a1a1a1;
    --pinky: #e16656;
    --bright-yellow: #fedd42;
    --darker: #1e2832;
    --black: #000000;
    --dot-size: 8px;
    --main-radius: 0.75rem;
    --main-form-radius: 0.5rem;
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--black);
    width: 100vw;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.fw-500 {
    font-weight: 500;
}

.rounded-end-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.rounded-start-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

button, button:focus {
    outline: 0;
    box-shadow: unset !important;
    background: transparent;
    border: 0;
}

input:focus {
    outline: 0;
    box-shadow: unset !important;
}

h1, h2, h3, h4 {
    text-transform: capitalize;
}

.h1, h1 {
    font-size: 3.5rem;
}

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

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

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

.bg-sub-main {
    background: var(--sub-main) !important;
}

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

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

.btn-main {
    background: var(--main-gradient) !important;
    color: #ffffff;
    transition: all 1s ease-out;
}

.btn-main:hover {
    background: var(--main-dark-gradient) !important;
    color: #ffffff;
}

.btn-sub-main {
    background: var(--sub-main) !important;
    color: #ffffff;
    transition: all 1s ease-out;
}

.btn-sub-main:hover {
    background: var(--main) !important;
    color: #ffffff;
}

.btn-light-gray {
    background: var(--light-gray) !important;
}

.btn-light-gray:hover {
    background: var(--dark-gray) !important;
}

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

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

.text-sub-main {
    color: var(--sub-main) !important;
}

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

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

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

.py-6 {
    padding-block: 6rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.small {
    font-size: 0.875rem;
}

.x-small {
    font-size: 0.75rem;
}

.rounded-main {
    border-radius: var(--main-radius) !important;
}

.rounded-main-form {
    border-radius: var(--main-form-radius) !important;
}

.object-fit-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.fw-600 {
    font-weight: 600;
}

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

header .nav-item:hover .show-on-hover, header .nav-item.active .show-on-hover {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .nav-item:hover .show-on-hover .dot {
    background: var(--dark-gray);
}

header .nav-item.active .show-on-hover .dot {
    background: var(--main);
}

.show-on-hover {
    display: none;
    align-items: center;
    justify-content: center;
}

.dot {
    display: inline-block;
    height: var(--dot-size);
    width: var(--dot-size);
    border-radius: 50%;
}

.dot.center-dot {
    height: calc(var(--dot-size) + 2px);
    width: calc(var(--dot-size) + 2px);
}

.home-bg {
    position: absolute;
    top: -15vw;
    right: 0;
    height: 61vw;
    z-index: -1;
}

.footer-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    z-index: -1;
}

[dir='rtl'] .pe-0 {
    padding-left: 0 !important;
    padding-right: auto !important;
}

[dir='rtl'] .ps-1 {
    padding-left: auto !important;
    padding-right: 0.25rem !important;
}

[dir='rtl'] .ps-2 {
    padding-left: auto !important;
    padding-right: 0.5rem !important;
}

@media screen and (min-width: 1920px) {
    body {
        font-size: 25px;
    }
}

@media screen and (min-width: 1600px) {
    body {
        font-size: 20px;
    }
}

@media screen and (min-width: 1440px) {
    body {
        font-size: 18px;
    }
}

@media screen and (min-width: 1280px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    body {
        font-size: 14px;
    }

    footer {
        background: var(--light-gray);
        background-size: unset;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .header-logo {
        height: 30px;
    }

    .help-img {
        width: 300px; 
        height: auto;
        -o-object-fit: cover;
        object-fit: cover;
    }
}