/* flex class */
.flex {
    display: flex;
    align-items: center;
}


.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-sb {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

.flex-start {
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.flex-end {
    justify-content: flex-end !important;
}

.flex-col {
    flex-direction: column !important;
    width: 100%;
}
.pricing-card .flex-col  {
    width: calc(500% - 1px);
    align-items: right !important;
    justify-content: right;

}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

/* some gap for flex box */

.gap-1 {
    gap: 1rem !important;
}

.gap-2 {
    gap: 1.5rem !important;
}

.gap-3 {
    gap: 3rem !important;
}

.gap-20 {
    gap: 2rem !important;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.p-relative {
    position: relative;
}

/* margin class */


    /* margin top*/

.mt-1 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mt-15 {
    margin-top: 2rem !important;
}

.mt-30 {
    margin-top: 2rem !important;
}


.mt-45 {
    margin-top: 4.5rem !important;
    align-items: center;
    justify-content: center;
    font-display: center;
    padding: 12px 26px 12px 26px;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-15 {
    margin-top: 3.5rem !important;
}

.text-center {
    text-align: center;
}

.w-16 {
    width: 16.66666667%;
}

.w-33 {
    width: 29,99999999%;
    height: 100%;
    
}

.w-50 {
    width: 50%;
}

.w-66 {
    width: 66.66666666%;
    
}

.w-80 {
    width: 100%;
    height: 100%;
}

.w-100 {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}




.d-block {
    display: block;
}

/* button css*/

.btn_hover1 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    border: 1.5px solid #000000;
    color: #fff;
    z-index: 1;
    letter-spacing: 0.8px;
    background: linear-gradient(180deg, #ff7527 0%, #fabf28 100%);
    cursor: pointer;
}

.btn_hover1:before {
    border-radius: 50px;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in;
    background: linear-gradient(180deg, #685a1e66 28%, #665913 68%);
    z-index: -1;
    top: 0;
    right: 0;
}

.btn_hover1:hover::before {
    width: 0;
    background: linear-gradient(180deg, #685a1e66 28%, #665913 68%);
}






