/*****RESET START*****/
textarea:focus,
input:focus {
    outline: none;
}

input,
textarea {
    outline: none;
    border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


input[type="number"] {
    -moz-appearance: textfield;
}

input,
select,
textarea {
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
    border-radius: 0;
}

/*****RESET END*****/




.mainpage{
    background-color: var(--bg-light);
}
/*************/

.mb-120{
    margin-bottom: 120px;
}

@media (max-width: 1024px) {
    .mb-120{
        margin-bottom: 60px;
    }
}
/*************/
.animation-btn{
    background: var(--gold-gradient-bg);
    background-size: 200% 200%;
    animation: moveGradient 4s linear infinite;
    animation-play-state: paused;
    transition: background-position 0.4s ease-out;
}

@media (min-width: 1024px) {
    .animation-btn:hover{
        animation-play-state: running;
    }
}


@keyframes moveGradient {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 100% 0;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0 100%;
    }
    100% {
        background-position: 0 0;
    }
}

/*************/

.text-gradient {
    background: var(--gold-gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/***********/
.mart-btn{
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    text-transform: none;
    text-decoration: none;
    margin: 0;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .mart-btn{
        padding: 10px 24px;
        font-size: 16px;
    }
}

.mart-btn:hover{
    color: #fff;
}


/***********/

.section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .section-header{
    margin-bottom: 16px;
    }
}

/***********/

/* LIGHTBOX START */

body .lb-container {
    padding: 24px 24px 0;
}

body .lb-outerContainer {
    background-color: transparent;
}

body .lightbox .lb-image {
    border: none;
}

body .lightbox a.lb-nav {

}

body .lightbox a.lb-prev, body .lightbox a.lb-next {
    width: 48px;
    height: 48px;
    background-image: none;
    background: #fff;
    border: 1px solid #28282826;
    position: absolute;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

body .lightbox a.lb-prev {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

body .lightbox a.lb-next {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

body .lightbox a.lb-prev:before, body .lightbox a.lb-next:before {
    display: block;
    content: "";
    width: 28px;
    height: 28px;
    background-position: center;
    background-size: cover;
    opacity: 0.6;
}

body .lightbox a.lb-prev:hover:before, body .lightbox a.lb-next:hover:before {
    opacity: 1;
}

body .lightbox a.lb-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 14H7M12.8333 19.8333L7 14L12.8333 8.16666' stroke='%23282828'  stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

body .lightbox a.lb-next:before {
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 14H21M15.1667 19.8333L21 14L15.1667 8.16666' stroke='%23282828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

body .lb-data .lb-close {
    position: absolute;
    top: -28px;
    right: 28px;
    width: 42px;
    height: 42px;
}

body .lb-data .lb-close:before {
    display: block;
    content: '';
    width: 42px;
    height: 42px;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.5 31.5L21 21M21 21L10.5 10.5M21 21L31.5 10.5M21 21L10.5 31.5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    font-size: 20px;
    color: #fff;
}

body .lb-data .lb-details {
    width: 100%;
}

body .lb-data .lb-number {
    display: none !important;
}

body .lb-data .lb-caption {
    font-weight: 400;
    font-size: 17px;
    line-height: 140%;
    color: #FFFFFF99;
    padding: 0 24px;
    display: block !important;
    width: 100%;
}

body .lightboxOverlay {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 600px) {

    body .lb-container {
        padding: 15px 15px 0;
    }

    body .lb-data .lb-caption {
        padding: 0 15px;
    }

    body .lightbox a.lb-prev, body .lightbox a.lb-next {
        width: 30px;
        height: 30px;
    }
}

/* LIGHTBOX END */