@import url('https://fonts.googleapis.com/css2?family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap');


:root {
    --green: #004F44;
    --dark: #1F2126;
    --gray: #ADADAF;
    --light-green: #E8EDED;
}

body {
    background-color: #FAFAFA;
    font-family: "Radio Canada Big", sans-serif;
    color: var(--dark);
}

body.only-content{
    margin-bottom: 100px;
}
body.only-content :where(
    .header,
    .footer,
    .payment-slider,
    .pages-slider
) {
    display: none !important;
}

.header {
    position: absolute;
    z-index: 350;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #A2BEBA;
    padding: 10px 0px;
    transition: all .4s;
}

.header-fixed {
    background-color: var(--green);
    height: 77px;
    position: fixed;
    top: -75px;
    transform: translateY(75px);
    transition: opacity .3s, background-color .3s;
    transition: all .4s;
    z-index: 500;
    border-bottom: unset;
}

.header-bg {
    display: flex;
    align-items: center;
}

.logo-white {
    display: none;
}

.header-fixed .logo-color {
    display: none;
}

.header-fixed .logo-white {
    display: block;
}

.header-logo {
    max-width: 320px;
}

.header-fixed .header-logo {
    max-width: 245px;
}

.header-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header-menu-item img {
    max-height: 26px;
}

.side-action img {
    max-height: 25px;
}

.slider {
    position: relative;
    z-index: 50;
}

.slider-bg {
    display: flex;
    align-items: center;
}

.slider-left {
    width: 50%;
    background-color: var(--light-green);
    height: 100dvh;
    min-height: 500px;
}

.slider-right {
    width: 50%;
}

.slider-right img {
    height: 100dvh;
    object-fit: cover;
    width: 100%;
    min-height: 500px;
}

.slider-front {
    padding-top: 94.66px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
}

.slider-small-head h6 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
}

.slider-head h1 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
}

.slider-btn {
    display: flex;
    align-items: center;
    background-color: var(--green);
    border-radius: 20px;
    padding: 14px 18px;
    width: fit-content;
    color: white;
    text-decoration: none;
    column-gap: 12px;
    margin-top: 25px;
    transition: all .3s;
}

.slider-btn:hover {
    opacity: 0.7;
    transition: all .3s;
}

.slider-btn img {
    max-width: 22px;
}

.content {
    margin-top: 90px;
}

.content-small-head {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
}

.content-big-head {
    margin-top: 8px;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 37px;
}

.content-card {
    position: relative;
    transition: transform 0.3s ease-out;
    margin-top: 75px;
}

.content-card-text {
    position: absolute;
    bottom: 25px;
    padding: 0px 25px;
    z-index: 60;
}

.content-card-head {
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.content-card-link {
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    column-gap: 12px;
}

.content-card-link img {
    max-width: 24px;
}

.content-card-img::before {
    opacity: 0.8;
    background: linear-gradient(to bottom, #ffffff00, #000000) !important;
    content: ' ';
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.content-card:hover .content-card-img::before {
    background: linear-gradient(to bottom, #0f0f0f, #004F44) !important;
    transition: transform 0.3s ease-out;
}

.content-card:hover .content-card-link img {
    transform: translateX(10px);
}

.company {
    margin-top: 100px;
    background: var(--light-green);
    position: relative;
    z-index: 1;
    border-top: 5px solid #DAE4E4;
}

.company-body::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    background: #FAFAFA;
    width: 100%;
    height: 395px;
    z-index: -1;
    border-top: 5px solid #DAE4E4;
}

.company-text {
    text-align: center;
    margin-top: 60px;
}

.company-small-head {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
}

.company-big-head {
    margin-top: 8px;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 37px;
}

.company-btn {
    display: flex;
    align-items: center;
    background-color: var(--green);
    border-radius: 20px;
    padding: 14px 18px;
    width: fit-content;
    color: white;
    text-decoration: none;
    column-gap: 12px;
    margin-top: 25px;
    transition: all .3s;
    margin-left: auto;
    margin-right: auto;
    min-width: 150px;
    justify-content: center;
}

.company-btn img {
    max-width: 22px;
}

.footer {
    margin-top: 80px;
    margin-bottom: 20px;
}

.footer-header {
    padding: 15px 0px;
    border-top: 1px solid #A2BEBA;
    border-bottom: 1px solid #A2BEBA;
}

.footer-header-list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.footer-header-list li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--dark);
}
.footer-bottom-left{
    max-width: 310px;
}
.footer-bottom-item {
    margin-top: 6px;
}

.footer-bottom-item img {
    max-width: 16px;
}

.footer-bottom-item span {
    font-size: 15px;
    line-height: 18px;
}

.footer-bottom-item a {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    column-gap: 7px;
    font-weight: 300;
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.footer-right-head {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-right-item {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-left: auto;
}

.footer-right-item .bold {
    font-weight: 600;
    color: var(--green);
}

.footer-right-item .light {
    font-weight: 400;
    color: var(--dark);
    min-width: 95px;
}

.footer-bottom-right {
    text-align: right;
    min-width: 310px;
}

.footer-cop {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
    width: 100%;
}

.footer-cop a {
    position: relative;
    top: -5px;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: rgba(176, 144, 21, 0.6);
    opacity: 0;
    z-index: 10000;
    user-select: none;
    pointer-events: none;
}

.header-side-menu {
    height: 100dvh;
    background-color: white;
    right: 0%;
    overflow: auto;
    position: fixed;
    top: 0px;
    transform: none;
    transition: transform .2s, background-color .5s;
    width: 400px;
    z-index: 650;
    transform: translateX(40vw);
}

.toggleOpen {
    transform: translateX(-0vw);
}

.toggle-fixed {
    top: 0px;
}

.header-side-top {
    padding: 21.7px 20px;
    border-bottom: 1px solid var(--light-green);
    display: flex;
    align-items: center;
}

.header-side-logo {
    max-width: 220px;
}

.header-side-bg {
    height: 100dvh;
    background-color: black;
    opacity: 0;
    right: 0%;
    overflow: auto;
    position: fixed;
    top: 0px;
    transform: none;
    transition: transform .2s, background-color .5s;
    width: 100%;
    padding-bottom: 75px;
    z-index: 650;
    transform: translateX(-100vw);
}

.toggleBg {
    transform: translateX(0vw);
}

.header-side-close {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    justify-content: center;
    background-color: var(--light-green);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: auto;
}

.header-side-close img {
    width: 14px;
}

.header-side-center {
    padding: 20px;
    height: calc(100% - 194px);
}

.header-side-head {
    font-size: 25px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.header-side-app {
    margin-top: 25px;
}

.header-side-item {
    margin-top: 15px;
}

.header-side-item {
    max-width: 180px;
    display: block;
}

.header-side-bottom {
    padding: 20px;
    border-top: 1px solid var(--light-green);
    background-color: white;
}

.header-side-bold-text {
    font-size: 22px;
    font-weight: 700;
    display: block;
    text-decoration: none;
    color: var(--dark);
}

.header-side-light-text {
    font-size: 16px;
    font-weight: 400;
    display: block;
    text-decoration: none;
    color: var(--dark);
}

.about {
    margin-top: 100px;
}

.about-bg {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.about-left {
    width: 50%;
}

.about-right {
    width: 50%;
}

.about-head .bold {
    margin-top: 8px;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 37px;
    color: var(--green);
}

.about-head .light {
    margin-top: 8px;
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 37px;
}

.about-head {
    margin-bottom: 25px;
}

.about-desc {
    margin-bottom: 25px;
}

.about-link {
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-decoration: none;
    color: var(--green);
    font-size: 17px;
    font-weight: 500;
    transition: all .3s;
    transform: translate(0px);
}

.about-link img {
    transition: all .3s;
}

.about-link:hover img {
    transform: translate(15px);
    transition: all .3s;
}

.price {
    margin-top: 100px;
    margin-bottom: 100px;
}

.price-card {
    background-color: white;
    border: 1px solid var(--light-green);
    width: 100%;
    padding: 35px 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
    margin-top: 20px;
}

.price-card-head {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
}

.price-card-desc {
    margin-top: 10px;
    font-size: 14px;
    display: block;
    line-height: 17px;
    font-weight: 300;
}

.price-card-money {
    margin-top: 10px
}

.price-card-money .bold {
    font-size: 35px;
    font-weight: 600;
    color: var(--green);
}

.price-card-money .light {
    font-size: 14px;
    font-weight: 400;
    position: relative;
    top: -10px;
}

.price-card-line {
    background-color: var(--gray);
    height: 1px;
    width: 100%;
    margin: 10px 0px;
}
.price-card-list{
    margin-top: 20px;
}
.price-card-list ul {
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.price-card-list ul li{
    display: flex;
    column-gap: 10px;
}
.price-card-list ul li span{
    font-size: 14px;
    display: block;
    font-weight: 300;
    min-width: 180px;
}
.price-card-list ul li svg{
    min-width: 20px;
    width: 20px;
    position: relative;
    top: 6px;
}
.gold-price{
    border: 1px solid #B09015;
}
.gold-price .price-card-money .bold{
    color: #B09015;
}
.gold-price .price-card-head{
    color: #B09015;
}
.price-card-flex{
    border: 2px dashed #c91f1f;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 12px;
}
.price-card-stok{
    background-color: #c9201e1a;
    color: #c9201e;
    padding: 7px 8px;
    border-radius: 5px;
}
.price-card-stok .stok-bold{
    font-weight: 600;
}
.price-card-stok .stok-light{
    font-size: 13px;
    line-height: 14px;
}
.price-head{
    margin-bottom: 35px;
}
.price-flex{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.price-flex .old{
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-decoration: line-through;
}
.header-side-list ul{
    list-style-type: none;
    margin-bottom: 0px;
    padding-left: 0px;
}
.header-side-list ul li{
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #eeeeee;
}
.header-side-list ul li a{
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
    .header-side-menu {
        transform: translateX(80vw);
    }

    .toggleOpen {
        transform: translateX(-0vw);
    }

    .slider-right img {
        height: 80dvh;
    }

    .slider-left {
        height: 80dvh;
    }
}

@media only screen and (max-width: 992px) {
    .about-bg {
        display: block;
    }

    .about-left {
        width: 100%;
    }

    .about-right {
        width: 100%;
        margin-top: 25px;
    }

    .about-head .bold {
        font-size: 30px;
    }

    .about-head .light {
        font-size: 30px;
    }

    .about-desc p {
        font-size: 15px;
    }

    .about-head br {
        display: none;
    }

    .content-card-img img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }

    .header-side-menu {
        transform: translateX(140vw);
    }

    .toggleOpen {
        transform: translateX(-0vw);
    }

    .slider-left {
        height: 80dvh;
    }

    .slider-right img {
        height: 80dvh;
    }

    .slider-head h1 {
        font-size: 35px;
    }

    .slider-btn {
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 15px;
    }

    .slider-btn img {
        width: 18px;
    }

    .company {
        border-bottom: 5px solid #DAE4E4;
        padding-bottom: 30px;
    }

    .company-body::before {
        background-color: transparent;
        border-top: unset;
    }

    .content-right-desc {
        text-align: left;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-cop{
        display: block;
        text-align: center;
    }
    .footer-cop a{
        margin-top: 10px;
        display: block;
        width: fit-content;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-left {
        display: none;
    }

    .slider-right {
        width: 100%;
    }

    .slider-right img {
        height: 80dvh;
        min-height: 450px;
    }

    .footer-bottom {
        display: grid;
        justify-content: center;
        row-gap: 20px;
    }

    .footer-bottom-item {
        margin-left: auto;
        margin-right: auto;
        max-width: 315px;
        width: fit-content;
        text-align: center;
    }

    .footer-bottom-center {
        max-width: 100px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-bottom-right {
        text-align: center;
    }

    .footer-right-item {
        margin-right: auto;
    }

    .footer-bottom-item a img {
        display: none;
    }

    .footer-bottom-item {
        margin-bottom: 10px;
    }

    .footer-header-list li a {
        font-size: 14px;
    }

    .footer-header-list {
        column-gap: 10px;
    }

    .logo-color {
        display: none;
    }

    .logo-white {
        display: block;
        max-width: 250px;
    }

    .slider-head h1 {
        color: white;
    }

    .slider-small-head h6 {
        color: white;
    }

    .content-card-head {
        font-size: 22px;
    }

    .company-big-head {
        font-size: 25px;
        line-height: 30px;
    }

    .company-small-head {
        font-size: 16px;
    }

    .content-big-head {
        font-size: 25px;
        line-height: 30px;
    }

    .content-small-head {
        font-size: 16px;
    }

    .content-card {
        margin-top: 40px;
    }

    .content {
        margin-top: 70px;
    }

    .content-right-desc {
        font-size: 15px;
    }

    .header-fixed {
        height: unset;
    }
    .slider-small-head {
        color: white !important;
    }
}

@media only screen and (max-width: 576px) {
    .header-side-bottom{
        padding: 10px;
    }
    .header-side-bold-text{
        font-size: 18px;
    }
    .header-side-list ul li{
        padding: 0.6rem 0rem;
    }
    .header-side-center {
        padding: 10px;
    }
    .logo-white {
        max-width: 200px;
    }

    .header-menu-item img {
        max-height: 26px;
    }

    .side-action img {
        max-height: 24px;
    }

    .header-menu {
        column-gap: 15px;
    }

    .header-side-menu {
        width: 100%;
    }

}

body:not(.page-home) .pages-slider {
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: var(--light-green);
}

body:not(.page-home) .slider-pagination ul {
    margin-top: 10px;
    display: flex;
    align-items: center;
    list-style-type: none;
    justify-content: center;
    column-gap: 8px;
    padding-left: 0px;
    margin-bottom: 0px;
}

body:not(.page-home) .slider-pagination ul li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

body:not(.page-home) .slider-pagination ul .active-pagination a {
    color: var(--green) !important;
}

body:not(.page-home) .pages-body {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px;
    border: 2px solid #a2beba;
    margin-top: 60px;
}

body:not(.page-home) .pages-body-small-head h6 {
    font-size: 30px;
    font-weight: 500;
}

body:not(.page-home) .header-menu-item img:not(.header-black-icon) {
    display: none;
}
body:not(.page-home) .header-fixed .header-menu-item img:not(.header-black-icon){
    display: block;
}
body:not(.page-home) .header-fixed .header-black-icon{
    display: none;
}
@media only screen and (max-width: 992px) {
    body:not(.page-home) .pages-body {
        border: none;
        max-width: none;
        padding: 20px;
    }
}

@media only screen and (max-width: 768px) {
    body:not(.page-home) .logo-color {
        display: block;
        max-width: 200px;
    }

    body:not(.page-home) .logo-white {
        display: none;
        max-width: 250px;
    }

    body:not(.page-home) .pages-body {
        margin-top: 30px;
        padding: 0px;
    }

    body:not(.page-home) .pages-body-small-head h6 {
        font-size: 25px;
    }
}

.payment-slider{
    padding-top: 95px;
    background-color: var(--light-green);
}
.payment-grid-head{
    max-width: 1100px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.payment-grid-bg{
    max-width: 1100px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 70px;
}
.payment-grid-left{
    width: 65%;
}
.payment-grid-right{
    width: 35%;
}
.payment-grid-back{
    text-decoration: none;
    font-size: 17px;
    font-weight: 200;
    color: var(--dark);
}
.payment-grid-back svg{
    margin-right: 7px;
}
.payment-grid-text{
    margin-top: 40px;
}
.payment-grid-text h6{
    font-size: 35px;
    font-weight: 500;
}
.payment-grid-text p{
    font-size: 17px;
    font-weight: 300;
}

.payment-address-card {
    border: 1px solid #bbb;
    padding: 24px;
    background-color: #fff;
}

.payment-address-header {
    display: flex;
    align-items: center;
}

.payment-address-header-l {
    display: flex;
    align-items: center;
}

.payment-address-header-l-icon {
    font-size: 22px;
    margin-bottom: -3px;
}

.payment-address-header-l-text {
    font-weight: 500;
    font-size: 16px;
    margin-left: 5px;
}

.payment-address-header-r {
    margin-left: auto;
    text-decoration: underline;
    position: relative;
    z-index: 100;
}

.payment-address-header-r a {
    color: var(--card-color) !important;
}

.payment-address-bottom {
    margin-left: 28px;
}

.payment-address-bottom-desc {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 400;
}

.payment-address-bottom-user {
    font-size: 15px;
    font-weight: 600;
}

.payment-address-new {
    text-align: right;
    margin-top: 10px;
}

.payment-address-new a {
    font-size: 16px;
    text-decoration: none;
    color: #048204;
    font-weight: 500;
}

.payment-address-new a i {
    font-size: 20px;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.payment-grid-check .form-check {
    padding-left: 0px !important;
    position: relative;
}

.payment-grid-check .form-check input {
    position: absolute;
    left: 24px;
    top: 0;
    border: none !important;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    background-color: transparent !important;
    z-index: 50;
}

.payment-grid-check .form-check-input:checked {
    background-color: transparent !important;
    background-image: unset !important;
}

.payment-grid-check .form-check-input:focus {
    box-shadow: unset !important;
}

.payment-grid-check .form-check-label {
    width: 100%;
}

.payment-address-header-l-icon {
    min-width: 22px;
    min-height: 33px;
}

.payment-address-header-l-icon .ti::before {
    content: "\ed27";
    opacity: 1;
    transition: all .3s;
    color: #212529;
}

.payment-grid-check .form-check input[type="radio"]:checked~label .payment-address-header-l-icon i::before {
    content: "\eb80";
    opacity: 1;
    transition: all .3s;
    color: #048204;
}

.payment-grid-check .form-check input[type="radio"]:checked~label .payment-address-card {
    border-color: #048204;
    transition: all .3s;
    border-bottom: 2px solid #048204;
}

.payment-next-card{
    padding: 25px 30px;
    border: 1px solid #bbb;
    background-color: #fff;
}
.payment-next-head{
    font-weight: 500;
    font-size: 18px;
}
.payment-next-desc{
    font-weight: 300;
    font-size: 15px;
}
.payment-next-item{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-next-item-l{
    font-weight: 500;
    font-size: 18px;
}
.payment-next-item-r{
    font-weight: 300;
    font-size: 20px;
    color: var(--green);
}
.payment-next-line{
    margin-top: 15px;
    margin-bottom: 15px;
    height: 1px;
    width: 100%;
    background-color: #bbb;
}
.payment-next-button{
    margin-top: 15px;
    height: 48px;
    width: 100%;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
}
.payment-form-bg{
    border: 1px solid #bbb;
    padding: 24px;
    background-color: #fff;
}
.payment-form .form-control:not(.form-textarea) {
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
    height: 56px !important;
    border: 1px solid #bbb !important;
    background-color: #fff !important;
    position: relative !important;
    color: #2b2b38;
    font-weight: 500;
    border-radius: 1px !important;
}

.payment-form .form-control:focus {
    box-shadow: unset !important;
    border-color: #000000 !important;
    border-bottom: 2px solid black !important;
}

.payment-form .form-floating>label {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #a0a0a0;
}

.payment-form .form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: #000000 !important;
    font-weight: 500;
}

.payment-form .form-select {
    height: 56px !important;
    border: 1px solid #bbb !important;
    background-color: #fff !important;
    position: relative !important;
    color: #2b2b38;
    border-radius: 1px !important;
}

.payment-form .form-select:focus {
    box-shadow: unset !important;
    border-color: #000000 !important;
    border-bottom: 2px solid black !important;
}

.payment-form .form-textarea {
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
    height: 90px !important;
    border: 1px solid #bbb !important;
    background-color: #fff !important;
    position: relative !important;
    color: #2b2b38;
    font-weight: 500;
    border-radius: 1px !important;
}

.payment-form-head{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
}
@media only screen and (max-width: 992px) {
    .payment-grid-bg{
        column-gap: 40px;
    }
    .payment-next-card{
        padding: 20px 15px;
    }
    .payment-next-head{
        font-size: 16px;
    }
    .payment-next-desc{
        font-size: 14px;
    }
    .payment-next-item-l{
        font-size: 16px;
    }
    .payment-next-item-r{
        font-size: 16px;
    }
}
@media only screen and (max-width: 768px) {
    .payment-grid-bg{
        display: block;
    }
    .payment-grid-left{
        width: 100%;
    }
    .payment-grid-right{
        width: 100%;
        margin-top: 10px;
    }
    .payment-next-card{
        padding: 15px;
    }
    .payment-next-item{
        margin-top: 0px;
    }
    .payment-next-button{
        font-size: 15px;
        height: 40px;
    }
    .payment-address-card{
        padding: 15px;
    }
    .payment-address-header-l-text{
        font-size: 14px;
    }
    .payment-address-bottom-desc{
        font-size: 14px;
    }
    .payment-address-header-r a{
        font-size: 14px;
    }
    .payment-address-header-l-icon {
        min-width: 22px;
        min-height: 33px;
    }
    .payment-address-header-l-icon {
        font-size: 20px;
    }
    .payment-grid-back{
        font-size: 14px;
        display: none;
    }
    .payment-grid-back svg {
        margin-right: 4px;
        width: 18px;
    }
    .payment-grid-text h6{
        font-size: 25px;
    }
    .payment-grid-text p{
        font-size: 15px;
    }
    .payment-grid-text{
        margin-top: 20px;
    }
    .payment-grid-head{
        margin-top: 25px;
    }
    .payment-slider{
        padding-top: 67px;
    }
}

/*APPPAGE*/
.app-link-flex {
    margin-top: 20px;
    display: flex;
    align-items: center;
    column-gap: 25px;
    width: 100%;
    justify-content: center;
    margin-bottom: 90px;
}
.app-link-flex img{
    max-height: 52px;
}
.page-app-body{
    margin-top: -100px;
}
/**/

@media only screen and (max-width: 768px) {
    .pages-slider {
        padding-top: 100px;
        padding-bottom: 40px;
        background-color: var(--light-green);
    }
}

.modal-backdrop{
    opacity: 0.5;
}