body {
    color: white;
    overflow-x: hidden;
}

.section-aa {
    min-height: calc(100vh - 60px);
    background: #000000;
}

.section-title-sm {
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffd154 0%, #f2eac5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}
.section-title {
    text-transform: uppercase;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    /* letter-spacing: 0.5px; */
}

/* Btn custom Hover */
.btn-custom-hover {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Rovelle Uno";
    text-transform: uppercase;
    border: 2px solid #ffd154;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    color: #222222;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
    height: 32px;
}
.btn-custom-hover.danger {
    border-color: #ff4d4d;
    color: white;
}
.btn-custom-hover.success {
    border-color: #00b84d;
    color: white;
}

.btn-custom-hover .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffd154;
    z-index: 2;
    -webkit-mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    -webkit-mask-size: 3000%;
    mask-size: 3000%;
    transition: 0.5s ease;
}
.btn-custom-hover .btn-background-danger {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff4d4d;
    z-index: 2;
    -webkit-mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    -webkit-mask-size: 3000%;
    mask-size: 3000%;
    transition: 0.5s ease;
}
.btn-custom-hover .btn-background-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00b84d;
    z-index: 2;
    -webkit-mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    mask-image: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    -webkit-mask-size: 3000%;
    mask-size: 3000%;
    transition: 0.5s ease;
}

.btn-custom-hover .btn-text {
    z-index: 3;
    transition: color 0.3s ease;
}

.btn-custom-hover .arrow {
    margin-left: 4px;
    transition: color 0.3s ease;
    color: #373737;
    z-index: 3;
}

.btn-custom-hover:hover:not(:disabled) {
    color: #ffd154;
}
.btn-custom-hover.danger:hover:not(:disabled) .btn-text,
.btn-custom-hover.success:hover:not(:disabled) .btn-text {
    color: #fff;
}

.btn-custom-hover:hover .arrow {
    color: #ffd154;
}

.btn-custom-hover:hover:not(:disabled) .btn-background,
.btn-custom-hover:hover:not(:disabled) .btn-background-success,
.btn-custom-hover:hover:not(:disabled) .btn-background-danger {
    -webkit-animation: ani 0.7s steps(29) forwards;
    animation: ani 0.7s steps(29) forwards;
}

.btn-custom-hover.btn-sm {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
}

.btn-custom-hover:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.5;
}

/* Keyframes for the mask animation */
@-webkit-keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

.btn-custom {
    background: #ffd154;
    color: #222222;
    font-family: "Rovelle Uno";
    text-transform: uppercase;
    border: none !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    z-index: 0;
}
.btn-custom.btn-sm {
    font-size: 0.8rem;
    padding: 8px 15px;
}
.btn-custom:hover {
    background: #ffd154;
    color: #373737;
    filter: brightness(0.9);
}
.btn-custom::before,
.btn-custom::after {
    width: 50px;
    height: 25px;
    position: absolute;
    content: "";
    display: inline-block;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
    transform: scale(0);
    z-index: -1;
    opacity: 0;
}
.btn-custom:before {
    top: -6px;
    left: 5px;
}
.btn-custom:after {
    bottom: -6px;
    right: 5px;
}
.btn-custom:hover:before,
.btn-custom:hover:after {
    transform: none;
    opacity: 1;
}
.btn-custom:hover:before {
    background: #ffd154;
}
.btn-custom:hover:after {
    background: #ffd154;
}
.btn-custom-danger,
.btn-custom-danger:hover {
    background: #ff4d4d;
    color: white;
}
.btn-custom-danger::before,
.btn-custom-danger::after {
    background: #ff4d4d;
}
.btn-custom-danger:hover:before,
.btn-custom-danger:hover:after {
    background: #ff4d4d;
}

.about-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.5;
    color: white;
}

.section-divider-outer {
    background: black;
    padding: 8px 0;
    overflow: hidden;
    width: calc(100% + 10px);
    position: relative;
    z-index: 100;
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    white-space: nowrap;
    animation: move-left-to-right linear 10s infinite;
}
.section-divider .divider-text {
    margin: 0 18px;
    font-size: 0.8rem !important;
    line-height: 1;
}
.section-divider img {
    width: 10px;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.arrow {
    padding-left: 4px;
    font-size: 14px;
    color: #373737;
    padding-bottom: 2px;
}

/* ----- animations ----- */
/* use this one to move from left to right direction */
@keyframes move-left-to-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}
/* use this one to move from right to left direction */
@keyframes move-right-to-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ----- form ----- */
label {
    color: white;
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
label span:not(.fw-regular) {
    color: red;
    font-size: 0.8rem;
    vertical-align: super;
}
.form-control-outer {
    background: linear-gradient(90deg, #ffd154 0%, #f2eac5 100%);
    border-radius: 6px;
    padding: 1px;
}
.form-control-outer .form-control {
    background: #222222;
    border-radius: 6px;
    border: none;
    color: white;
}
.form-control-outer.socmed .form-socmed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222222;
    border-radius: 6px;
    border: none;
    color: white;
    padding: 0px 12px;
}
.form-control-outer.socmed .form-socmed img {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 10px;
    margin-right: 3px;
    width: 23px;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}
.form-control:focus {
    box-shadow: none !important;
}
::-webkit-input-placeholder {
    color: #ffffff !important;
}
::-moz-placeholder {
    color: white !important;
}
::-ms-placeholder {
    color: #ffffff !important;
}
::placeholder {
    color: #ffffff !important;
}

/* select2 */
.select2-container--default .select2-selection--single,
.select2-dropdown {
    background: #222222 !important;
}
.select2-container--default .select2-selection--single {
    border: none !important;
}
.select2-container .select2-selection--single {
    height: 40px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: white !important;
    line-height: 40px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%);
}
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: white !important;
}

/* ----- modals ----- */
.modal-aa .modal-content {
    background: linear-gradient(
        90deg,
        #3c2fc9 0%,
        #ef6e59 33.52%,
        #ffd154 67.02%,
        #f2eac5 100%
    );
    border-radius: 20px;
    padding: 20px 0;
    border: none !important;
}
.modal-aa .modal-content .modal-body {
    background: #222222;
    box-shadow: 0px 0px 24px 0px #373737;
    border-radius: 20px;
    border: none !important;
    padding: 25px 0 !important;
}

/* sm: phone - landscape */
@media (min-width: 576px) {
    .section-title {
        font-size: 3rem;
    }
    .section-title-sm {
        font-size: 1rem;
    }
}

/* md: tablet */
@media (min-width: 768px) {
}

/* lg: desktop */
@media (min-width: 992px) {
    .section-divider-outer {
        padding: 15px 0;
    }
    .section-divider .divider-text {
        font-size: 0.875rem !important;
    }
    .section-divider img {
        width: 15px;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* xl: wide */
@media (min-width: 1200px) {
}

/* super wide */
@media (min-width: 1440px) {
}
