/* 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;
}

.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;
}

.flex-right {
    align-items: right !important;
    justify-content: right;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.gap-1 {
    gap: 1rem !important;
}

.gap-2 {
    gap: 1.5rem !important;
}

.gap-3 {
    gap: 3rem !important;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.p-relative {
    position: relative;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mt-45 {
    margin-top: 4rem !important;
}

.mt-5{
    margin-top: 3%;
}

.mt-6{
    margin-top: 6.8%;
    margin-left: 3%;
}

.mt-8{
    margin-top: 11%;
    margin-right: 2%;
}

.mt-55{
    margin-top: 12.2%;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.text-center {
    text-align: center;
}

.w-16 {
    width: 16.66666667%;
}

.w-33{
    width: 33.3333333%;
}

.w-50{
    width: 45%;
}

.d-block {
    display: block;
}



/* Button css*/

.btn_hover1 {
    display: inline-block;
    overflow: hidden;
    border-radius: 6px !important;
    border: 1.5px solid #f94807 !important;
    color: #fff;
    z-index: 1;
    letter-spacing: 0.8px;
    cursor: pointer;
    margin-top: -20px;
}

