/* Stylesheet For Own Utilities Classes */


/* For Text Color */
.text-purple {
    color: rgb(97, 92, 253) !important;
}

.text-brown {
    color: rgb(184, 101, 0) !important;
}

.text-gray {
    color: rgb(201, 201, 201) !important;
}

/* For Text Hover */
.hover-text-purple:hover {
    color: rgb(97, 92, 253) !important;
}

.hover-text-white:hover {
    color: rgb(255, 255, 255) !important;
}

.hover-text-black:hover {
    color: rgb(0, 0, 0) !important;
}

/* For Font Sizes */
.fs-7 {
    font-size: 14px !important;
}

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

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

/* For Letter Spacing */
.letter-space-1 {
    letter-spacing: 1px;
}

.letter-space-2 {
    letter-spacing: 2px;
}

.letter-space-3 {
    letter-spacing: 3px;
}

/* For Border */
.border-purple {
    border: 2px solid rgb(97, 92, 253) !important;
}

.border-gray {
    border: 2px solid rgb(201, 201, 201) !important;
}

.hover-border-purple:hover {
    border: 2px solid rgb(97, 92, 253) !important;
}

.border-top-purple {
    border-top: 2px solid rgb(97, 92, 253) !important;
}

.border-bottom-purple {
    border-bottom: 2px solid rgb(97, 92, 253) !important;
}

.border-right-purple {
    border-right: 2px solid rgb(97, 92, 253) !important;
}

.border-left-purple {
    border-left: 2px solid rgb(97, 92, 253) !important;
}

/* For Background Colors */
.bg-purple {
    background-color: rgb(97, 92, 253) !important;
}

.bg-darkgray {
    background-color: rgb(33, 37, 41) !important;
}

.bg-bron {
    background-color: #bc6ff1 !important;
}

/* For Hover Background Colors */
.hover-bg-purple:hover {
    background-color: rgb(97, 92, 253) !important;
}

/* For Buttons */
.btn-outline-purple {
    padding: 12px 33px;
    color: white;
    background-color: rgb(97, 92, 253);
    border: 1px solid transparent;
    border-radius: 45px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
}

.btn-outline-purple:hover {
    padding: 12px 33px;
    color: rgb(97, 92, 253);
    background-color: transparent;
    border: 1px solid rgb(97, 92, 253);
    border-radius: 45px;
    font-size: 16px;
    font-weight: 500;
}

.rounded-purple-btn {
    background-color: rgb(97, 92, 253);
    padding: 11px 17px;
    border-radius: 50%;
}

.rounded-purple-btn:hover {
    background-color: rgb(97, 92, 253);
}

/* For Cursors */
.cursor-pointer {
    cursor: pointer !important;
}

/* For Margin */
.m-6 {
    margin: 55px !important;
}

.my-6 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.mx-6 {
    margin-right: 55px !important;
    margin-left: 55px !important;
}

.mt-6 {
    margin-top: 55px !important;
}

.mb-6 {
    margin-bottom: 55px !important;
}

.me-6 {
    margin-right: 55px !important;
}

.ms-6 {
    margin-left: 55px !important;
}

/* For Padding */
.p-6 {
    padding: 55px !important;
}

.py-6 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.px-6 {
    padding-right: 55px !important;
    padding-left: 55px !important;
}

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

.pb-6 {
    padding-bottom: 55px !important;
}

.pe-6 {
    padding-right: 55px !important;
}

.ps-6 {
    padding-left: 55px !important;
}

/* For Transitions */
.transition-1 {
    transition: all 1s ease-in-out !important;
}

.transition-2 {
    transition: all 0.2s ease-in-out !important;
}

.transition-3 {
    transition: all 0.3s ease-in-out !important;
}

.transition-4 {
    transition: all 0.4s ease-in-out !important;
}

.transition-5 {
    transition: all 0.5s ease-in-out !important;
}

/* Section Spaces */
.section-space {
    padding-top: 155px;
    padding-bottom: 130px;
}

/* Section Text */
.section-text {
    max-width: 540px;
    margin-right: auto !important;
    margin-left: auto !important;
}