%pr {
    position: relative;
}
%pa {
    position: absolute;
    content : '';
}
%flex {
    display: flex;
    flex-wrap: wrap;
}
%center {
    top: 50%;
    left: 50%;
    @include transform(translate(-50% , -50%));
    position: absolute;
    content: "";
}
//Padding Top and Bottom
.padding-top {
    padding-top: 80px;
}
.padding-bottom {
    padding-bottom: 80px;
}
@include breakpoint(md) {
    .padding-top {
        padding-top: 100px;
    }
    .padding-bottom {
        padding-bottom: 100px;
    }
}
@include breakpoint(lg) {
    .padding-top {
        padding-top: 130px;
    }
    .padding-bottom {
        padding-bottom: 130px;
    }
    .pb-lg-395 {
        padding-bottom: 395px;
    }
}
@include breakpoint(xl) {
    .pt-xl-150 {
        padding-top: 150px;
    }
    .pb-xl-150 {
        padding-bottom: 150px;
    }
    .pt-xl-175 {
        padding-top: 175px;
    }
    .pt-xl-210 {
        padding-top: 210px;
    }
}
.pr {
    position: relative;
}
/*Section Header*/
.mb-30-none {
    margin-bottom: -30px !important;
}
.mb-40-none {
    margin-bottom: -40px;
}
.oh {
    overflow: hidden;
}
/*Section-Header Starts Here*/
.section-bg {
    background: $section-bg;
}
.body-bg {
    background: $body-bg;
}
.theme-bg {
    background: $theme-color;
}
.theme-one {
    background: $theme-one;
}
.theme-two {
    background: $theme-two;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.7);
    @include transition($transition);
    visibility: hidden;
    opacity: 0;
    &.active {
        opacity: 1;
        visibility: visible;
    }
}

.ratings {
    span {
        color: $star;
    }
}
.rtl {
    direction: rtl;
}
.ltr {
    direction: ltr;
}
.pos-rel {
    position: relative;
    .container {
        position: relative;
        z-index: 1;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
    &.left-style {
        text-align: left;
    }
    p {
        margin-top: 10px;
        color: #3b3671;
    }
    @include breakpoint(md) {
        margin-bottom: 60px;
        p {
            font-size: 20px;
        }
    }
    @include breakpoint(max-md) {
        .title {
            font-size: 36px;
            font-weight: 700;
        }
    }
    @include breakpoint(max-sm) {
        .title {
            font-size: 30px;
        }
    }
}