/* ===================================
                About
   =================================== */

/*
    Theme Name: Product
    Theme URI:
    Author: Themes Industry
    Author URI:
    Description: One Page , Multi Parallax Template
    Tags: One page, multi page, multipurpose, parallax, creative, html5

 */

/***************Table of Content**************/
/*  - Fonts
    - General Classes
    - Preloader
    - Scroll bar
    - Header And Navigation
    - Slider
    - About Yoga
    - Types of Yoga
    - Gallery
    - Training Vedio
    - Clients
    - Blog
    - Contact
    - Map
    - Footer
    - Price Page
    - Schedule Page
    - Gallery Page
    - Blog Page
    - About Yoga Page
    - Contact Us Page
    - Media Queries   */


/*IMPORT FONTS*/
/*@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&amp;display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@500&display=swap');

/*@font-face {
    font-family: j-Regular;
    src: url('../fonts/j-Regular/j-Regular.eot');
    src: url('../../fonts/j-Regular/j-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../../fonts/j-Regular/j-Regular.woff') format('woff'), url('../fonts/j-Regular/j-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/


body {
    background-color: white;
    overflow-x: hidden;
}

.white_text {
    color: #ffffff;
}

a:hover {
    color: #ffffff;
}

/***********PRELOADER**************/
.loader1 {
    overflow: hidden !important;
}

#loading-area {
    /*width: 100%;
    height: 100%;*/
    background-color: white;
    /*position: fixed;*/
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 999999;
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center;
    /*-webkit-animation: 1.5s rotate infinite;
    animation: 1.5s rotate infinite;
    animation-direction: alternate-reverse;*/
}

/************SCROLLBAR************/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #990033;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.5, transparent), to(transparent));
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

/**********SCROLL TO TOP**********/
.scroll-top-arrow {
    font-size: 30px;
    line-height: 45px;
    color: #fff !important;
    display: none;
    height: 45px;
    width: 45px;
    padding: 0;
    position: fixed;
    bottom: 50px;
    left: 50px;
    text-align: center;
    text-decoration: none;
    z-index: 99;
    -webkit-transition: 0.5s;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    border-radius: 100%;
    background-size: 200% auto;
    background-image: -webkit-gradient(linear, left top, left top, from(#990033), color-stop(51%, #990033), to(#990033));
    background-image: -o-linear-gradient(left, #8579e0 0%, #d043ca 51%, #8579e0 100%);
    background-image: linear-gradient(to left, #030305 0%, #99003351%, #4c4b51 100%);
}

    .scroll-top-arrow:hover {
        background-position: left center;
    }

/**********NAVBAR AFTER SCROLL*******/
.sticky-bottom {
    position: relative;
    background: #fff;
    padding-top: 15px;
}

.navbar-appear {
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    left: 0;
    overflow: auto;
    background: #ffffff;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fixed-top {
    background-color: #ffffff;
}

.navbar.fixed-menu {
    width: 100%;
    /*padding: 15px 70px 15px 70px;*/
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    left: 0;
    /*overflow: auto;*/
    background: #ffffff;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    height: auto;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.navbar-light .navbar-nav .nav-link.active:before, .square:hover .navbar-light .navbar-nav .nav-link.active:after {
    width: 100%;
}

/***********NAVBAR FOR LARGE SCREEN*********/
.logo_icon {
    position: absolute;
    left: 49%;
    top: 3%;
    z-index: 11;
    -webkit-animation: 1.2s rotate infinite;
    animation: 1.2s rotate infinite;
    animation-direction: alternate-reverse;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

header .navbar {
    z-index: 1;
    position: relative;
    /*left: 9%;
    left: 9%;*/
    top: 0px;
    background-color: white !important;
    padding-left: 0;
    padding-left: 0;
    width: 100%;
}

header .circle {
    /*height: 105px;*/
    width: 105px;
    background-color: white;
    position: absolute;
    left: 50%;
    left: 50%;
    top: 13px;
    -webkit-transform: translate(-50%,-1%);
    -ms-transform: translate(-50%,-1%);
    transform: translate(-50%,-1%);
    z-index: 1;
}

header .nav-link {
    margin-left: 11px;
    margin-left: 11px;
}

.logo {
    text-align: center;
    /*margin-left: auto;*/
    /*margin-left: auto;*/
    /*margin-left: auto;*/
    /*margin-top: 8px;*/
    margin-top: -30%;
    max-height: 120px;
}

/*****************NAVBAR HOVER EFFECT***************/
a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    -webkit-transition: 0.5s color ease;
    -o-transition: 0.5s color ease;
    transition: 0.5s color ease;
    text-decoration: none;
}

    a.before:before, a.after:after {
        content: "";
        -webkit-transition: 0.5s all ease;
        -o-transition: 0.5s all ease;
        transition: 0.5s all ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        position: absolute;
    }

    a.before:before, a.after:after {
        height: 2.2px;
        width: 0;
        background: #990033 !important;
    }

.navbar-light .navbar-nav .nav-link:hover {
    background: #990033 !important;
    /*text-decoration: underline;*/
    color: white !important;
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Cairo', sans-serif;
    /* padding: 2px !important; */
    letter-spacing: 0;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px 10px 15px;
}

.navdivider10 {
    display: none;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .nav-link {
        color: #fff;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
        margin-left: -35px;
    }

    .navbar-light .navbar-nav .nav-link {
        color: white !important;
    }

        .navbar-light .navbar-nav .nav-link:hover {
            background: #f3f2f2 !important;
            /* text-decoration: underline; */
            color: black !important;
            color: aliceblue;
        }
}
/*************MODEL WINDOW FOR NAVBAR FOR SMALL SCREEN***********/

.outer-window {
    display: none;
    color: white;
    -webkit-animation: 0.8s fadeInleft;
    animation: 0.8s fadeInleft;
}

.inner-window {
    background-color: white;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 111111111;
}

.outer-window .navbar {
    position: relative;
    background-color: transparent !important;
}

.outer-window .nav-link {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-family: 'Cairo', sans-serif !important;
    cursor: pointer;
}

    .outer-window .nav-link:hover {
        background: -webkit-linear-gradient( 0deg, #149047 10%, #040404 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.outer-window .nav-item a {
    text-align: center;
    padding: 15px;
}

.outer-window .navbar-nav {
    margin-top: 10%;
}

.logo_display {
    display: none;
}

.my-tog-btn {
    display: none;
}

    .my-tog-btn span {
        background-color: black;
        margin-bottom: 5px;
        height: 2px;
        width: 100%;
    }

.outer-window .close-outerwindow {
    position: absolute;
    left: 10%;
    top: 3%;
    z-index: 1111;
}

    .outer-window .close-outerwindow i {
        color: #145a35;
        font-size: 25px;
    }

/****************ABOUT YOGA SECTION*****************/
#about_yoga {
    padding-top: 70px;
    /*padding-bottom: 125px;*/
    overflow: hidden !important;
}

.img-sc {
    position: relative;
    padding-left: 50px;
    padding-bottom: 50px;
}

.about_img {
    padding: 3%;
    background-color: #f6f6f6;
    position: relative;
}

.margin_aboutimg {
    /*margin-left: 10%;*/
}

.about_img img {
    height: 100%;
    width: 100%;
    min-height: 340px;
}

.blue_rectangle {
    /*position: absolute;
    width: 60%;
    height: 67%;
    bottom: 1%;
    background-color: #990033;*/
}

.colored_heading {
    font-family: 'Cairo', sans-serif !important;
    font-size: 20px;
    color: #990033;
    margin-bottom: 0;
    letter-spacing: 0;
}

.about-heading {
    text-align: left;
    margin-top: 70px;
}

.heading {
    font-size: 22px;
    font-family: 'Cairo', sans-serif !important;
    color: #990033;
    font-weight: 600;
}

.margin_heading {
    margin-top: 30px;
    margin-bottom: 30px;
}

.info {
    color: #000000;
    font-size: 14px;
    font-family: 'Cairo', sans-serif !important;
    line-height: 21.1pt;
    /*text-align: justify;*/
    text-align: right;
    text-transform: capitalize;
}

.about-heading ul {
    margin-right: 5%;
}

.margin_button {
    margin-top: 30px;
}

.btn.btn-primary:hover {
    background-position: left center;
    color: #fff !important;
}

.btn.btn-primary {
    padding: 10px 39px 10px 39px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif !important;
    letter-spacing: 0.6px;
    color: white !important;
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    text-decoration: none;
    flex: 1 1 auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-size: 200% auto;
    background-image: -webkit-gradient(linear, left top, left top, from(#8579e0), color-stop(51%, #d043ca), to(#8579e0));
    background-image: -o-linear-gradient(left, #8579e0 0%, #d043ca 51%, #8579e0 100%);
    background-image: linear-gradient(to left, #252527 0%, #990033 51%, #555858 100%);
    border: none;
}

/**************TYPES OF YOGA SECTION*****************/

.card {
    background-color: #fff;
    border: 0 solid rgba(0,0,0,.125);
}

.card-body {
    padding: 0;
    min-height: 100px;
}

.cover:hover {
    border-radius: 15px;
    -webkit-box-shadow: 2px 2px 15px #e1e1e1;
    box-shadow: 2px 2px 15px #636060;
    background: #990033;
}

.cover:hover {
    border-radius: 15px;
    -webkit-box-shadow: 2px 2px 15px #e1e1e1;
    box-shadow: 2px 2px 15px #636060;
    background: #990033;
}

    .cover:hover .numbering {
        background: -webkit-linear-gradient( 180deg,rgb(255 255 255) 85%, rgb(255 255 255) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .cover:hover .card-title {
        background: -webkit-linear-gradient( 180deg,rgb(255 255 255) 85%, rgb(255 255 255) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .cover:hover .card {
        background: #990033;
    }

    .cover:hover .info {
        color: white;
    }

    .cover:hover .Services_Icons i {
        color: white;
    }

    .cover:hover p {
        color: white;
    }

.cover {
    padding: 13px;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    border-radius: 15px;
    -webkit-box-shadow: 2px 2px 15px #e1e1e1;
    box-shadow: 2px 2px 15px #e1e1e1;
    text-align: center !important;
    height: 145px;
}

    .cover .card-title {
        /*margin-top: 45px;*/
        margin-bottom: 40px;
        font-size: 16px;
        font-family: 'Cairo', sans-serif !important;
        color: rgb(33, 35, 49);
        -webkit-transition: 0.9s ease;
        -o-transition: 0.9s ease;
        transition: 0.9s ease;
    }

    .cover .numbering {
        font-size: 45px;
        font-family: 'Cairo', sans-serif !important;
        line-height: 0.867;
        background: linear-gradient(to left, #c51719 0%, #0f7f45 51%, #c41819 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-transition: 0.9s ease;
        -o-transition: 0.9s ease;
        transition: 0.9s ease;
        cursor: auto;
    }

/*****************PORTFOLIO SECTION********************/
.padding_color {
    background: white !important;
}

.small-screen {
    display: none;
}

.portfolio-heading {
    text-align: center;
    /*margin-top: 65px;*/
}

.portfolio-heading1 {
    text-align: center;
    /*margin-top: 25px;*/
}

.info_margin {
    margin-bottom: 50px;
}

.main_heading {
    font-size: 22px;
    font-family: 'Cairo', sans-serif !important;
    color: #990033;
    line-height: 1.133;
    text-align: right;
    font-weight: 600;
}

.heading_color {
    background: linear-gradient(to left, #990033 0%, #990033 51%, #990033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
    margin-bottom: 10px;
}

.text_color {
    color: rgb(33, 35, 49) !important;
}

/*PORTFOLIO MEASONRY STYLE*/
#portfolio_top {
    position: relative;
    overflow: hidden !important;
    background-color: #f6f6f6;
    /*margin-top: 125px;*/
}

    #portfolio_top::before,
    #portfolio_top::after {
        content: '';
        position: absolute;
        left: 0;
        left: 0;
        background: #fff;
        height: 90px;
        width: 100%;
    }

    #portfolio_top::after {
        bottom: 0;
    }

.text_wrap {
    /*padding: 50px 2rem 0.5rem 2rem;*/
}

/*.padding_box {
    border: 20px solid #fff;
}*/

.bottom-text > .cells {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}
/*PORTFOLIO HOVER EFFECT*/
#portfolio_top .cbp-item:hover img {
    -webkit-animation: 1 zoomeff;
    animation: 1 zoomeff;
}

@-webkit-keyframes zoomeff {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes zoomeff {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.plus {
    display: block;
    margin: 0 auto;
    height: 70px;
    width: 70px;
    position: relative;
    overflow: hidden !important;
    margin-bottom: 1rem;
}

.plus_icon {
    font-size: 65px;
}

.hover_heading {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
}

figure.snip0015 {
    font-family: 'Cairo', sans-serif !important;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    /*background-image: -webkit-linear-gradient( 190deg, #cf43ca 25%, #8579e0 50%);*/
    text-align: center;
}

figure {
    margin: 0 0 0 !important;
}

    figure.snip0015 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
    }

    figure.snip0015 img {
        opacity: 1;
        width: 100%;
        -webkit-transition: opacity 0.35s;
        -o-transition: opacity 0.35s;
        transition: opacity 0.35s;
        -webkit-transition: 1s ease;
        -o-transition: 1s ease;
        transition: 1s ease;
    }

    figure.snip0015:hover img {
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
    }

    figure.snip0015 figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 3em 3em;
        width: 100%;
        height: 100%;
    }

        figure.snip0015 figcaption::before {
            position: absolute;
            top: 50%;
            left: 30px;
            bottom: 50%;
            left: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.8);
            content: '';
            opacity: 0;
            background-color: white;
            -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
            -webkit-transition-delay: 0.6s;
            -o-transition-delay: 0.6s;
            transition-delay: 0.6s;
        }

    figure.snip0015 h3,
    figure.snip0015 p, figure.snip0015 .plus_icon {
        margin: 0 0 5px;
        opacity: 0;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s,-webkit-transform 0.35s,transform 0.35s;
    }

        figure.snip0015 h3 figcaption .plus_icon {
            word-spacing: -0.15em;
            font-weight: 300;
            text-transform: uppercase;
            -webkit-transform: translate3d(0%, 50%, 0);
            transform: translate3d(0%, 50%, 0);
            -webkit-transition-delay: 0.3s;
            -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
        }

        figure.snip0015 h3 span {
            font-weight: 800;
        }

    figure.snip0015 p {
        font-weight: 200;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    figure.snip0015 a {
        left: 0;
        left: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        color: #ffffff;
    }

    figure.snip0015:hover img {
        /*opacity: 0.15;*/
    }

    figure.snip0015:hover figcaption h3 {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    figure.snip0015:hover figcaption .plus_icon {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    figure.snip0015:hover figcaption p {
        opacity: 0.9;
        -webkit-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

    figure.snip0015:hover figcaption::before {
        background: rgba(255, 255, 255, 0);
        top: 30px;
        bottom: 30px;
        opacity: 1;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

.caption_center {
    margin-top: 150px;
}

/********************COUNTER SECTION*****************/
#counters {
    /*margin-top: 125px;*/
    overflow: hidden !important;
}

.counter-heading {
    margin-left: auto;
    text-align: center;
    margin-left: auto;
}

.info_width {
    /*max-width: 830px;*/
    width: 74%;
    text-align: center;
    margin: auto;
}

.wrapper {
    margin-top: 46%;
    cursor: pointer;
    background: #27242469;
    border-radius: 30px;
    padding-bottom: 15px;
    /*width: 85%;*/
}

.end {
    margin-left: 0 !important;
}

.counter {
    /*background-color: #ffffff;*/
    padding: 20px 0 0 0;
    border-radius: 5px;
    text-align: center;
}

.counter_plus {
    font-size: 22px;
    font-weight: 900;
    color: #990033;
}

.count-title {
    font-size: 30px;
    font-family: 'Cairo', sans-serif !important;
    color: rgba(255, 255, 255, 0);
    font-weight: bold;
    line-height: 1.333;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    /*background: linear-gradient(to left, #1c854c 0%, #c6171d 51%, #158149 100%);*/
    background: linear-gradient(to right, #efefef 0%, #ffffff 51%, #990033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrapper:hover .counter_icon {
    -webkit-animation: 1s jackInTheBox;
    animation: 1s jackInTheBox;
}

.heading_mainc {
    font-size: 22px;
    font-family: 'Cairo', sans-serif !important;
    color: #990033;
    line-height: 0.899;
    font-weight: 600;
    text-align: center;
}

.count-text {
    font-size: 16px;
    font-family: 'Cairo', sans-serif !important;
    color: white;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
}

.counter_icon {
    margin: 0 auto;
    float: none;
    display: table;
    color: white;
    font-size: 50px;
    padding-bottom: 10px;
}

.other {
    height: 1500px;
}

/*********************VEDIO MODEL WINDOW***************/
#training_vedio {
    /*margin-top: 125px;*/
    background: #f6f6f6;
    overflow: hidden !important;
    /*padding-bottom: 70px;
    padding-top: 73px;*/
}

.vedio-heading {
    text-align: left;
    margin-top: 8.5%;
    /*margin-bottom: 17.5%;*/
}

.vedio_img {
    /*margin-top: 40px;*/
}

.vedio_text {
    font-size: 36px;
    font-family: 'Cairo', sans-serif !important;
    background: -webkit-linear-gradient( 0deg, #8579e0 10%, #cf43ca 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
}

.modal-header {
    border-bottom: 1px solid #cf43ca;
    padding: 1em 1em 0 2.1em;
}

.img-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .img-list li {
        border: 5px solid transparent;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 33.33%;
        float: left;
        position: relative;
        cursor: pointer;
    }

    .img-list img {
        max-width: 100%;
        vertical-align: middle;
    }

/********************TESTIMONIAL********************/
#testimonials {
    /*margin-top: 125px;*/
    /*margin-bottom: 75px;*/
    overflow: hidden !important;
}

.testimonial-box {
    background: #f6f6f6;
    overflow: hidden;
    padding: 34px 45px 45px 45px;
    margin: 50px 10px 10px 10px;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
    cursor: pointer;
    border-radius: 10px;
    height: 320px;
}

.owl-testimonial .owl-item:not(.center) .testimonial-box:hover {
    background-color: #990033;
}

.testimonial-box:hover .quote_box {
    background-color: white;
}

.testimonial-box:hover .infot_margin {
    color: white !important;
}


.testimonial-box:hover h1 {
    color: white !important;
}

.testimonial-box:hover .quote {
    color: #990033;
}

.owl-testimonial .center .quote_box {
    background-image: -webkit-linear-gradient( 180deg, #040304 20%, #040404 100%);
}

.center .testimonial-box:before {
    content: "";
    position: absolute;
    width: 94%;
    height: 61.5%;
    top: 52px;
    left: 10px;
    background-image: -webkit-linear-gradient( 180deg, #990033 20%, #990033 100%);
    color: #ffffff;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    border-radius: 10px;
    z-index: 0;
}

.center .testimonial-box:hover:before {
    opacity: 1 !important;
}

.owl-testimonial .center .testimonial-box:hover .quote {
    background: -webkit-linear-gradient( 180deg,#252325 60%, #898894 40%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.owl-testimonial .center .testimonial-box:hover .quote_box {
    background-image: -webkit-linear-gradient( 180deg, #ffffff 20%, #ffffff 100%) !important;
}

.margin-p {
    text-align: center;
}

.testimonial_img {
    position: absolute;
    left: 1px;
    top: 50%;
    padding: 9px;
}

    .testimonial_img img {
        width: 100% !important;
        max-height: 200px;
    }

.quote {
    font-size: 30px;
    color: white;
}

.quote_box {
    border: 1px solid transparent;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    background: #990033;
    padding: 15px 10px 10px 14px;
    position: absolute;
    bottom: 83.5%;
    left: 44.5%
}

.infot_margin {
    text-align: center;
    margin-left: auto;
    margin-left: auto;
    /*padding-bottom: 40px;*/
    position: relative;
    z-index: 999;
    text-align: justify;
    direction: rtl;
    font-weight: 600;
}

.testimonial_name {
    font-size: 20px;
    font-family: 'Cairo', sans-serif !important;
    color: rgb(33, 35, 49);
    text-align: center;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0;
}

.blue_text {
    color: #990033;
}

#testimonials .text {
    position: absolute;
    text-align: center;
    top: 84%;
    left: 32%;
}

#testimonials .item {
    padding-bottom: 120px;
}

.owl-testimonial .owl-dots {
    margin-top: 40px !important;
    margin-bottom: 40px;
}

    .owl-testimonial .owl-dots .owl-dot.active span, .owl-testimonial .owl-dots .owl-dot:hover span {
        background: #990033;
    }

    .owl-testimonial .owl-dots .owl-dot span {
        background: white;
        border: 2px solid #990033;
        font-size: 30px;
        padding: 5px;
    }

.owl-testimonial .center .infot_margin {
    /*padding-top: 10px;*/
    padding-bottom: 60px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

/********************BLOG SECTION***************/
#blog {
    background-color: #f6f6f6;
    overflow: hidden !important;
    margin-top: 125px;
}

.blog_text {
    text-align: center;
    margin-bottom: 11.5%;
    margin-top: 11.5%;
}

.padding_blog {
    padding: 90px;
}

.blog_img {
    width: 100%;
    height: 100%;
}

/*****************CONTACT SECTION****************/
#contact {
    margin-top: 125px;
    margin-bottom: 125px;
    overflow: hidden !important;
}

.contact_text {
    text-align: center;
}

.contact_margin {
    margin-left: auto;
    margin-left: auto;
}

/******************MAP SECTION*******************/
#map {
    margin-bottom: 50px;
    overflow: hidden !important;
}

.mapouter {
    position: relative;
    text-align: left;
    height: 100%;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 100%;
    width: 100%;
}

.map {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/****************FOOTER SECTION*******************/
ul.footer_ul {
    list-style: none;
    display: inline-block;
    margin-top: 2%;
}

li.footer_list {
    display: inline-block;
    margin-left: 15px;
    font-size: 30px;
    color: rgb(42, 42, 42);
    cursor: pointer;
    width: 60px;
    height: 60px;
    text-align: center;
    background-color: transparent;
    border-radius: 50px;
    padding-top: 17px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

    li.footer_list:hover {
        color: white;
        background-color: #990033;
        -webkit-animation: .8s ease;
        animation: .8s ease;
    }

.footer_text {
    text-align: center;
    /*padding-bottom: 125px;*/
}


/******************************PROCESS PAGE START******************************/
.header1_img {
    background: url(../img/process/header_img1.png);
    background-attachment: fixed;
}

.img {
    height: 100%;
    width: 100%;
}

.overlay {
    /*background-image: -webkit-linear-gradient( 190deg, #cf43cade 30%, #8579e0e0 100%);*/
    background-image: -webkit-linear-gradient( 190deg, #272427c2 30%, #272427c2 100%);
}

.header_tittle1 {
    font-size: 72px;
    font-family: 'Cairo', sans-serif !important;
    color: rgb(255, 255, 255);
}

.header_tittle2 {
    font-size: 24px;
    font-family: 'Cairo', sans-serif !important;
    color: rgb(255, 255, 255);
    /*    line-height: 2;
*/
}

.header_tittle {
    text-align: center;
    padding-top: 13%;
    padding-bottom: 5.5%;
    letter-spacing: 0;
    font-weight: 100 !important;
}

/*************INFORMATION PROCESS SECTION START*****************/
#information_process {
    margin-top: 5%;
    /*margin-bottom: 130px;*/
}

.information_process {
    text-align: center;
    margin-left: auto;
    /*margin-left: auto;*/
}
/******************DETAIL PROCESS SECTION START*****************/
#detail_process {
    background: #f6f6f6;
    overflow: hidden !important;
}

.process_text {
    padding: 85px;
    text-align: center;
}

.margin-col {
    margin-top: auto;
    margin-bottom: auto;
}

.width {
    width: 350px;
    margin-left: auto;
    margin-left: auto;
}
/****IMAGE HOVER*****/
.figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left top, from(rgba(255,255,255,0)), to(rgba(255,255,255,.3)));
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.figure:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 100%;
    }
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

/******************************PRICES PAGE START******************************/
.header2_img {
    background: url(../img/header_img2.png);
    background-attachment: fixed;
}

.price-item {
    background-color: #ffffff;
    margin-top: 1.5rem;
    padding: 0;
    -webkit-box-shadow: 1px 1px 8px #e1e1e1;
    box-shadow: 1px 1px 8px #e1e1e1;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.price_header {
    background-color: #f2f2f2;
    padding: 20px 0 20px 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    border-bottom: 1px solid transparent;
}

.price_header_text {
    font-size: 18px;
    font-family: 'Cairo', sans-serif !important;
    color: rgba(51, 51, 51, 0.6);
    position: relative;
    z-index: 1;
}

.actual_price {
    font-size: 36px;
    font-family: 'Cairo', sans-serif !important;
    color: rgb(51, 51, 51);
    text-align: center;
    padding-top: 35px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    position: relative;
    z-index: 1;
}

.small_font {
    font-size: 14px;
    font-weight: bold;
}

.price-list {
    list-style: none;
    padding-left: 0;
    padding-bottom: 10px;
}

    .price-list li {
        padding: 7px;
        text-align: center;
        font-size: 15px;
        font-family: 'Cairo', sans-serif !important;
        color: rgb(51, 51, 51);
    }

.btn-green {
    padding: 10px 39px 10px 39px;
    text-align: center;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif !important;
    letter-spacing: 0;
    color: white !important;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    background-color: #990033;
    border: 1px solid white;
}

.btn-green-margin {
    margin-bottom: 35px;
}

.btn-green:hover {
    background-color: white;
    color: #990033 !important;
    border: 1px solid #990033;
}

.price-item-center:hover .actual_price {
    color: white;
}

.price-item:hover .price_header_text {
    color: white;
}

.price-item:hover .actual_price {
    color: white;
}

.colored_hover {
    position: absolute;
    height: 0;
    width: 92%;
    -webkit-transition: 0.7s ease;
    -o-transition: 0.7s ease;
    transition: 0.7s ease;
    z-index: 1;
}

.colored_hover-center {
    position: absolute;
    height: 0;
    width: 92%;
    -webkit-transition: 0.7s ease;
    -o-transition: 0.7s ease;
    transition: 0.7s ease;
    z-index: 1;
}

.price-item:hover .colored_hover {
    background-color: #990033 !important;
    height: 175px;
}

.price-item-center:hover .colored_hover-center {
    background-image: -webkit-linear-gradient( 190deg, #cf43ca 30%, #8579e0 100%);
    height: 220px;
}

.price-item-center {
    background-color: #ffffff;
    padding: 0;
    -webkit-box-shadow: 1px 1px 8px #e1e1e1;
    box-shadow: 1px 1px 8px #e1e1e1;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.price_header-center {
    padding-top: 45px;
    padding-bottom: 45px;
    background-image: -webkit-linear-gradient( 190deg, #cf43ca 30%, #8579e0 100%);
}

.color-white {
    color: #ffffff !important;
}


/******************************SCHEDULE PAGE START******************************/
.header3_img {
    background: url(../img/schedule/header_img3.png);
    background-attachment: fixed;
}

.gradient_color {
    background: -webkit-linear-gradient( 180deg,#cf43ca 30%, #8579e0 90%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.black_bold {
    color: black;
    font-weight: bold;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: inherit;
    width: 1px;
    border-top: 0 solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
}

.border_left {
    border-left: 1px solid #dee2e6;
}

.border_top {
    border-bottom: 0 solid #dee2e6 !important;
}

.item_center {
    margin-bottom: auto;
    margin-top: auto;
}

.table td {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    cursor: pointer;
}

    .table td:hover {
        background-color: #990033;
        color: white;
    }

/******************************GALLERY PAGE START******************************/
.header4_img {
    background: url(../img/portfolio/header4_img.png);
    background-attachment: fixed;
}

/*filters*/
.cbp {
    margin-top: 25px;
}

.cbp-l-filters .cbp-filter-item {
    cursor: pointer;
    margin: 15px;
    display: inline-block;
}

    .cbp-l-filters .cbp-filter-item span {
        font-size: 16px;
        font-family: 'Cairo', sans-serif !important;
        color: #212331;
        display: inline-block;
        font-weight: bold;
        -webkit-transition: 0.5s ease;
        -o-transition: 0.5s ease;
        transition: 0.5s ease;
    }

.cbp-l-filters .cbp-filter-item-active {
    cursor: default;
}

.cbp-l-filters .cbp-filter-item:hover span {
    color: #990033;
}

.cbp-l-filters .cbp-filter-item-active span,
.cbp-l-filters .cbp-filter-item:focus span {
    color: #990033;
    /*cursor: pointer;*/
}

/*portfolio hover*/
#flat-gallery .cbp-item figure:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.snip1577 *,
.snip1577:before,
.snip1577:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.snip1577 img {
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    vertical-align: top;
    height: 275px;
}

.snip1577:before,
.snip1577:after {
    position: absolute;
    top: 20px;
    left: 20px;
    content: '';
    background-color: #ffffff;
    z-index: 1;
    opacity: 0;
}

.snip1577:before {
    width: 0;
    height: 1px;
}

.snip1577:after {
    height: 0;
    width: 1px;
}

.snip1577 figcaption {
    text-align: center;
    position: absolute;
    left: 45px;
    bottom: 60px;
    padding: 15px 20px;
}

.snip1577 .icon-show {
    background-color: white;
    height: 55px !important;
    width: 55px !important;
    border-radius: 50% !important;
    padding: 14px !important;
    margin-left: auto;
    margin-left: auto;
    margin-bottom: 13px;
}

.snip1577 p {
    font-size: 18px;
    font-weight: normal;
    opacity: 0;
}

.snip1577 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    left: 0;
    z-index: 1;
}

.snip1577:hover img,
.snip1577.hover img {
    filter: alpha(opacity=20);
    opacity: 0.2;
}

.snip1577:hover:before,
.snip1577.hover:before,
.snip1577:hover:after,
.snip1577.hover:after {
    opacity: 1;
    -webkit-transition-delay: 0.1s !important;
    -o-transition-delay: 0.1s !important;
    transition-delay: 0.1s !important;
}

.snip1577:hover:before,
.snip1577.hover:before {
    width: 45px;
}

.snip1577:hover:after,
.snip1577.hover:after {
    height: 45px;
}

.snip1577:hover p,
.snip1577.hover p {
    opacity: 1;
}

.snip1577:hover p,
.snip1577.hover p {
    -webkit-transition-delay: 0.35s;
    -o-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.hover_text {
    font-size: 18px;
    font-family: 'Cairo', sans-serif !important;
    color: rgb(255, 255, 255);
}

.white_bg {
    background-color: white;
}

.hover_search {
    font-size: 24px;
    background: -webkit-linear-gradient( 180deg,#990033 30%, #000000 90%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/*******************BLOG PAGE START*******************/
.header5_img {
    background: url(../img/blog/header5-img.png);
    background-attachment: fixed;
}

.grey_bg {
    background-color: #f6f6f6;
}
/*..............SEARCH...........*/
.pt-lg-10 {
    padding-top: 7rem;
}

.btn.focus, .btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem transparent;
    box-shadow: 0 0 0 0.2rem transparent;
}

.search_outerbox {
    background-color: #f6f6f6;
    width: auto;
    height: auto;
    margin-bottom: 5%;
}

.input-group {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 60px;
    padding-right: 25px;
}

.form-control:focus {
    color: black !important;
    background-color: #fff;
    border-color: #990033;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem transparent;
    box-shadow: 0 0 0 0.2rem transparent;
}

.form-control {
    font-family: 'Cairo', sans-serif !important;
}

.btn-search {
    background-color: #990033;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #990033;
    -webkit-animation: 0.8s ease;
    animation: 0.8s ease;
}

    .btn-search:link, .btn-search:visited {
        color: #fff;
    }

    .btn-search:active, .btn-search:hover {
        background-color: #ffffff;
        color: #990033;
        border-color: #990033;
    }

/*............TOPIC..............*/
.topic_outerbox {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 12px;
}

    .topic_outerbox h2 {
        color: #333333;
        font-size: 26px;
        padding-left: 42px;
        padding-top: 30px;
        padding-bottom: 10px;
        font-family: 'Cairo', sans-serif !important;
    }

    .topic_outerbox ul {
        list-style: none;
        padding: 0;
    }

    .topic_outerbox li {
        text-decoration: none;
        color: #333333;
        padding-top: 7px;
        padding-bottom: 7px;
        font-weight: 500;
        overflow: hidden !important;
        font-family: 'Cairo', sans-serif !important;
    }

        .topic_outerbox li a {
            text-decoration: none;
            color: black;
            padding-left: 5px;
        }

            .topic_outerbox li a:hover {
                color: #990033;
            }

.dots {
    letter-spacing: 6.5px;
    font-size: 16px;
    font-weight: normal;
}

.inner-box {
    margin-left: 13%;
    margin-left: 13%;
    text-align: center
}

.inner-box1 {
    margin-left: 12%;
    margin-left: 13%;
    text-align: center;
}

.image {
    height: 100%;
    width: 100%;
}
/*.............POPULAR POST..............*/
.outer_popular {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 35px;
}

    .outer_popular h2 {
        color: #333333;
        font-size: 26px;
        padding-left: 42px;
        padding-top: 30px;
        padding-bottom: 10px;
        font-family: 'Cairo', sans-serif !important;
    }

.pt-lg-4 {
    padding-top: 2rem;
}

.popular_image {
    height: 100%;
    width: 35%;
}

.outer {
    margin-left: 13%;
    margin-left: 13%;
}

.text_post {
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: auto;
}

.main {
    color: black;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    line-height: 18px;
    letter-spacing: 0;
    font-family: 'Cairo', sans-serif !important;
}

.date {
    color: gray;
    font-size: 14px;
    margin-bottom: 4px;
    font-family: 'Cairo', sans-serif !important;
}

.text_post span {
    color: black;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    letter-spacing: 0;
    font-family: 'Cairo', sans-serif !important;
}

.main:hover {
    color: #990033;
}

.text_post span:hover {
    color: #990033;
}
/*..............TAGS.................*/
.outer_tag {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 30px;
}

.main_tag {
    color: #333333;
    font-size: 26px;
    padding-left: 42px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-family: 'Cairo', sans-serif !important;
}

span {
    display: unset;
}

.inner_tag {
    margin-left: 13%;
    margin-left: 13%;
}

.tag_text a:hover {
    color: white;
    background-color: #990033;
    border: solid 1px transparent;
}

.tag_text a {
    text-decoration: none;
    font-size: 14px;
    color: black;
    border: solid 1px #ced4da;
    padding: 5px 12px 5px 12px;
    margin-top: 9px;
    display: inline-block;
    font-family: 'Cairo', sans-serif !important;
}

.sale_img {
    width: 100%;
    height: 100%;
}

.img-area img {
    height: 100%;
    width: 100%;
}
/*..............MINIMAL POST.................*/
.text_minimal {
    padding-top: 20px;
    margin-left: 2px;
    letter-spacing: 0;
}

    .text_minimal a {
        text-decoration: none;
    }

    .text_minimal h2 {
        font-size: 19px;
        font-weight: 600;
        font-family: 'Cairo', sans-serif !important;
        color: #333333;
        letter-spacing: 0;
        -webkit-transition: 0.2s ease;
        -o-transition: 0.2s ease;
        transition: 0.2s ease;
        cursor: pointer;
        text-align: right;
        font-weight: 700;
    }

        .text_minimal h2:hover {
            color: #990033;
        }

    .text_minimal .date {
        color: grey;
        font-size: 15px;
        font-weight: 400;
        font-family: 'Cairo', sans-serif !important;
        margin-top: 0;
    }
/*.text_minimal span:hover {
        color: #990033;
    }*/
.verticle_line {
    height: 25px;
    width: 2px;
    background-color: grey;
}

.margin_1 {
    margin-right: 20px;
}

.text_minimal span {
    color: grey;
    /*cursor: pointer;*/
    margin-right: 20px;
    font-weight: 400;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    font-family: 'Cairo', sans-serif !important;
}



.text_dummy {
    color: #333333;
    font-family: 'Cairo', sans-serif !important;
    margin-top: 15px;
    letter-spacing: 0.2px;
    text-align: right;
}

.Direc {
    float: right;
}

.display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.divider {
    border: 0.1px solid #dbdbdb;
    margin-top: 3.5rem;
}

.divider1 {
    border: 0.5px solid #dbdbdb;
    margin-top: 3rem;
}

.mt-sm-10 {
    margin-top: 30px;
}
/*IMAGE*/
.min-post {
    width: 100%;
    margin: 0 auto;
    line-height: 0;
    position: relative;
}

    .min-post img {
        width: 100%;
        max-height: 235px;
        border: 1px solid #ece4e4;
    }

    .min-post article {
        position: absolute;
        top: 0;
        width: 100%;
        background: white;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1.1fr 16px 1fr 16px 0.5fr;
        grid-template-columns: 1.1fr 1fr 0.5fr;
        grid-gap: 16px;
        mix-blend-mode: lighten;
    }

.minimal_image .min-post div {
    background: black;
    height: 17.25vw;
}

.min-post div:nth-of-type(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
}

/*..........AUDIO.......*/
.mejs__container {
    margin-top: -40px;
}

.mt-10 {
    margin-top: 3.5rem;
}

/*...............PORTFOLIO..............*/
.box4 {
    position: relative;
    height: 100%;
    width: 100%;
}

    .box4:before {
        width: 0;
        height: 200%;
        background-image: -webkit-linear-gradient( 190deg, #cf43ca 35%, #8579e0 70%);
        position: absolute;
        top: 0;
        left: -250px;
        bottom: 0;
        -webkit-transform: skewX(-36deg);
        -ms-transform: skewX(-36deg);
        transform: skewX(-36deg);
        -webkit-transition: all .5s ease 0s;
        -o-transition: all .5s ease 0s;
        transition: all .5s ease 0s;
        opacity: .5;
        z-index: 1;
    }

    .box4:hover:before {
        width: 220%
    }

    .box4 .box-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        z-index: 1;
        margin-top: 100px;
        text-align: center
    }

    .box4 .icon, .box5 .icon {
        list-style: none;
        padding: 0
    }

    .box4:hover .box-content {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    .box4 .title {
        font-size: 22px;
        font-family: 'Cairo', sans-serif !important;
        font-weight: 700;
        color: #fff;
        margin: 0 0 10px;
        z-index: 1
    }

    .box4 .post {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 5px;
        font-family: 'Cairo', sans-serif !important
    }

    .box4 .icon {
        margin: 0
    }

        .box4 .icon li {
            display: inline-block
        }

        .box4 .icon li {
            display: inline-block;
            width: 35px;
            height: 35px;
            line-height: 35px;
            font-size: 28px;
            color: #FFFFFF;
            margin-left: 10px;
            -webkit-transition: all .3s ease 0s;
            -o-transition: all .3s ease 0s;
            transition: all .3s ease 0s;
            text-decoration: none;
        }

.box5 .icon, .box5 .icon li {
    display: inline-block
}

.box1 img, .box1:after, .box1:before {
    width: 100%;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.box1 .icon, .box2, .box3, .box4, .box5 .icon li a {
    text-align: center
}

    .box10:after, .box10:before, .box1:after, .box1:before, .box2 .inner-content:after, .box3:after, .box3:before, .box4:before, .box5:after, .box5:before, .box6:after, .box7:after, .box7:before {
        content: ""
    }

.box1, .box11, .box12, .box13, .box14, .box16, .box17, .box18, .box2, .box20, .box21, .box3, .box4, .box5, .box5 .icon li a, .box6, .box7, .box8 {
    overflow: hidden
}

    .box1 .title, .box10 .title, .box4 .title, .box7 .title {
        letter-spacing: 1px
    }

    .box3 .post, .box4 .post, .box5 .post, .box7 .post {
        font-style: italic
    }

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mb-30 {
    margin-bottom: 30px
}

.box1 .icon, .box1 .title {
    margin: 0;
    position: absolute
}

.box1 {
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.3);
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    position: relative
}

    .box1:after, .box1:before {
        height: 50%;
        background: rgba(0,0,0,.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
        transform: rotateZ(90deg)
    }

    .box1:after {
        top: auto;
        bottom: 0;
        -webkit-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
        transform-origin: 0 100%
    }

    .box1:hover:after, .box1:hover:before {
        -webkit-transform: rotateZ(0);
        -ms-transform: rotate(0);
        transform: rotateZ(0)
    }

    .box1 img {
        height: auto;
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }

    .box1:hover img {
        -webkit-filter: sepia(80%);
        filter: sepia(80%);
        -webkit-transform: scale(1.3) rotate(10deg);
        -ms-transform: scale(1.3) rotate(10deg);
        transform: scale(1.3) rotate(10deg)
    }

    .box1 .title {
        font-size: 19px;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        text-shadow: 0 0 1px #004cbf;
        bottom: 10px;
        left: 10px;
        opacity: 0;
        z-index: 2;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all .5s ease .2s;
        -o-transition: all .5s ease .2s;
        transition: all .5s ease .2s
    }

    .box1:hover .title {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    .box1 .icon {
        padding: 7px 5px;
        list-style: none;
        background: #004cbf;
        border-radius: 0 0 0 10px;
        top: -100%;
        left: 0;
        z-index: 2;
        -webkit-transition: all .3s ease .2s;
        -o-transition: all .3s ease .2s;
        transition: all .3s ease .2s
    }

    .box1:hover .icon {
        top: 0
    }

    .box1 .icon li {
        display: block;
        margin: 10px 0
    }

        .box1 .icon li a {
            display: block;
            width: 35px;
            height: 35px;
            line-height: 35px;
            border-radius: 10px;
            font-size: 18px;
            color: #fff;
            -webkit-transition: all .3s ease 0s;
            -o-transition: all .3s ease 0s;
            transition: all .3s ease 0s
        }

.box2 .icon li a, .box3 .icon a:hover, .box4 .icon li a:hover, .box5 .icon li a, .box6 .icon li a {
    border-radius: 50%
}

/*.............PAGINATION............*/
.page-link {
    position: relative;
    display: block;
    margin-left: -1px;
    line-height: 1.25;
    color: #333333;
    background-color: #fff;
    border: 1px solid transparent;
    font-size: 16px;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.page-item .page-link {
    z-index: 1;
    color: #fff;
    background-color: #990033;
    border-color: #990033;
    opacity: .9;
}

    .page-item .page-link:focus {
        color: white !important;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .page-item .page-link:hover {
        color: #990033;
        background-color: #ffffff;
        border-color: #990033;
        opacity: .8;
    }

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.margin_footer-top {
    padding-top: 120px !important;
}

.pagination li {
    margin: 5px;
}

.page-item.active .page-link {
    z-index: 1;
    color: #990033;
    background-color: #ffffff;
    border-color: #990033;
    opacity: .8;
}

/*******************DETAIL BLOG****************/
.header6_img {
    background: url(../img/blog/header6_img.png);
    background-attachment: fixed;
}

.minimal_image .min-post .large_post div {
    background: black;
    height: 24.8vw;
}

.blog_detail-heading {
    color: #333333;
    font-size: 26px;
    font-family: 'Cairo', sans-serif !important;
}

.text_minimal ul {
    color: #333333;
}

.mt-40 {
    margin-top: 70px;
}

.mejs__controls:not([style*='display: none']) {
    background: black;
}

.quote_text .quote {
    color: #333333;
    font-style: italic;
    font-size: 24px;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    cursor: pointer;
    width: 480px;
    margin-left: auto;
    margin-left: auto;
    margin-top: 50px;
    text-align: left;
    font-weight: 700;
    font-family: 'Cairo', sans-serif !important;
}

.quote_text:hover .quote {
    color: #990033;
}

.quote_text:hover .verticle_lineQ {
    background-color: #333333;
}

.quote_text {
    margin-bottom: 20px;
}

.verticle_lineQ {
    width: 2.3px;
    height: 75px;
    background-color: #990033;
    text-align: left;
    margin-top: -87px;
    margin-left: 38.7rem;
}

.blogN_images img {
    height: 100%;
    width: 100%;
}

.pt-6 {
    padding-top: 40px;
}

.written_outerbox {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
}

    .written_outerbox .written_img {
        width: 20%;
        border-radius: 50%;
        border: 1px solid transparent;
        margin-left: 60px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

.written_text {
    margin-top: auto;
    margin-left: 20px;
    margin-bottom: auto;
}

.main_written {
    color: #333333;
    font-size: 24px;
    font-family: 'Cairo', sans-serif !important;
}

.comment_text {
    color: #333333;
    font-size: 24px;
    text-align: center;
    font-family: 'Cairo', sans-serif !important;
}

.user_icon {
    color: lightgray;
    font-size: 65px;
    background: #f6f6f6;
    width: 100px;
    height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 50px;
    padding-left: 21px;
    padding-left: 15px;
}

.icon_text {
    margin-bottom: auto;
    margin-top: auto;
    padding-left: 20px;
}

.height {
    line-height: 25px;
    font-size: 17px;
    padding-top: 10px;
}

.font {
    font-size: 21px;
}

.icon_comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
}

.margin_days {
    font-size: 18px;
    margin-bottom: 10px;
}

.mt-6 {
    margin-top: 70px;
}

/************************ABOUT US PAGE************************/
.header8_img {
    background: url(../img/about/header8_img.png);
    background-attachment: fixed;
}

.left-0 {
    left: 10px;
}

.about_descp {
    text-align: left;
}

.gradient_rectangle {
    position: absolute;
    width: 60%;
    height: 67%;
    bottom: 1%;
    background-image: -webkit-linear-gradient( 80deg, #cf43ca 10%, #8579e0 80%);
}

.img-sc1 {
    position: relative;
    padding-left: 50px;
    padding-bottom: 50px;
}

/***************************CONTACT US PAGE*****************/
.header7_img {
    background: url(../img/header7_img.jpg);
    background-attachment: fixed;
}

.padding_button {
    padding: 13px 0 13px 0 !important;
}

.contact-list {
    padding-left: 0;
}

.margin_form {
    margin-top: auto;
    margin-bottom: auto;
}

.contact-list li {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 400;
    list-style: none;
    margin-bottom: 5px;
}

.alert-success {
    font-size: 12px;
    color: #28a745;
    display: block;
    margin-bottom: 20px;
    padding: 4px !important;
    font-family: 'Cairo', sans-serif !important;
}

.alert-danger {
    font-size: 12px;
    color: #DC3545;
    margin-bottom: 20px;
    padding: 4px !important;
    display: block;
    font-family: 'Cairo', sans-serif !important;
}

.user-danger {
    border-color: #DC3545 !important;
}

.user-success {
    border-color: #ced4da !important;
}


/*******************MEDIA QUERIES****************/

@media (min-width: 992px) and (max-width: 1021px) {
    header .nav-link {
        margin-left: 0;
        margin-left: 11px;
    }
}

@media screen and (min-width:1600px) {
    header .navbar {
        /*position: absolute;*/
        position: initial;
        left: 17%;
        left: 17%;
    }

    .logo_icon {
        position: absolute;
        left: 49.2%;
    }
}

@media screen and (max-width:1359px) {
    .minimal_image .min-post div {
        background: black;
        height: 19vw;
    }

    .inner-box {
        margin-left: 2%;
        margin-left: 2%;
        text-align: center;
    }

    .inner-box1 {
        margin-left: 2%;
        margin-left: 2%;
        text-align: center;
    }

    .snip1577 figcaption {
        left: 65px;
        bottom: 70px;
    }

    header .navbar {
        position: relative;
        /*left: -4%;
        left: 3%;
        direction: rtl;
        margin-bottom: 5px;*/
    }
}

.blue_rectangle {
    /*position: absolute;
        width: 60%;
        height: 67%;
        bottom: 1%;
        background-color: #990033;*/
}

.gradient_rectangle {
    position: absolute;
    width: 60%;
    height: 67%;
    bottom: 1%;
}

.about-heading {
    margin-top: auto;
    margin-bottom: auto;
    text-align: right;
}

.heading_font_sm {
    font-size: 40px;
}

.padding_blog {
    padding: 20px;
}

.process_text {
    padding: 25px;
}

.header_tittle {
    text-align: center;
    padding-top: 17%;
}

.header_tittle1 {
    font-size: 46px;
    text-transform: uppercase;
    padding: 10px;
}

.header_tittle2 {
    font-size: 30px;
}

.margin_bottom_price {
    margin-bottom: 20px;
}

@media screen and (width:1024px) {
    .logo_icon {
        top: 1.6%;
    }
}

@media screen and (max-width:991px) {
    header {
        display: -webkit-box;
    }

    .logo_display {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .margin_small {
        margin-top: 30px;
    }

    #information_process {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .snip1577 figcaption {
        left: 75px;
        bottom: 95px;
    }

    .blue_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 5%;
        /*background-color: #990033;*/
    }

    .gradient_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 5%;
    }

    .info {
        color: #000000;
        font-size: 12px;
        font-family: 'Cairo', sans-serif !important;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .margin_button {
        margin-top: 0;
    }

    .colored_heading {
        font-family: 'Cairo', sans-serif !important;
        font-size: 18px;
        color: #4ed0e2;
        margin-bottom: 0;
    }

    .heading {
        font-size: 40px;
        font-family: 'Cairo', sans-serif !important;
        color: #212331;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .about-heading {
        margin-top: 0;
    }

    header .circle {
        display: none;
    }

    .logo_icon {
        display: none;
    }

    #navbar_btn {
        display: block;
    }

    #my-nav1 {
        display: none;
    }

    #about_yoga {
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .logo {
        margin-top: 10px;
    }

    #exampleModal1 .modal-content {
        margin-top: 150px;
    }

    header {
        display: -webkit-box;
    }

    .my-tog-btn {
        display: -ms-inline-grid;
        display: inline-grid;
        width: 35px;
        height: auto;
        margin-left: 70%;
        padding-top: 30px;
    }

    .small-screen {
        display: block !important;
    }

    .portfolio-heading1 {
        text-align: center;
    }

    .large-screen {
        display: none;
    }

    #portfolio_top {
        position: inherit !important;
        margin-top: 0 !important;
    }

    .blog_text {
        text-align: center;
        margin-bottom: 10%;
        margin-top: 10%;
    }

    .md_heading {
        font-size: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .process_text {
        padding: 50px;
    }
}

@media (min-width:769px) and (max-width:991px) {
    .logo {
        text-align: left;
        margin-left: auto;
        margin-top: 22px;
        margin-left: 30px;
    }

    .margin_navbar-logo {
        margin-bottom: 15px;
    }

    .my-tog-btn {
        display: -ms-inline-grid;
        display: inline-grid;
        width: 25px;
        height: auto;
        margin-left: 0;
        margin-left: 30px;
    }
}

@media screen and (max-width:767px) {
    .price-item-center:hover .colored_hover-center {
        height: 242px;
    }

    .price-item:hover .colored_hover {
        height: 190px;
    }

    .about_descp {
        text-align: center;
    }

    .wow {
        visibility: visible !important;
        -webkit-animation: none !important;
        animation: none !important;
    }

    .written_outerbox .written_img {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .cbp-l-filters .cbp-filter-item {
        margin: 8px;
    }

    .margin_navbar-logo {
        margin-bottom: 15px;
    }

    #testimonials {
        margin-top: 80px;
        margin-bottom: 75px;
    }

    .owl-testimonial .owl-dots {
        margin-top: 20px !important;
    }

    .owl-theme .owl-dots .owl-dot span {
        margin: 5px 4px;
    }

    #blog {
        margin-top: 80px;
    }

    .wrapper {
        margin-top: 10px;
        cursor: pointer;
    }

    .bannar-background {
        height: 810px !important;
    }

    .testimonial_img {
        top: 70% !important;
    }

    .outer-window .navbar-nav {
        margin-top: -20px !important;
    }

    .testimonial-box h1 {
        height: 150px !important;
    }

    .diamond-year-space {
        padding-left: 9% !important;
        padding-right: 0 !important;
    }

    .timeline-row-size {
        margin: auto !important;
    }

    .owl-carousel.owl-rtl {
        direction: unset !important;
        margin: auto !important;
        text-align: center !important;
    }

    .js-news-owl-carousel {
        top: -10px !important;
    }

    .img-sc {
        padding-left: 12px;
    }

    .margin_form {
        margin-top: 40px;
        margin-bottom: auto;
        text-align: center;
    }

    .snip1577 figcaption {
        left: 10px;
        bottom: 0;
        top: 20px;
    }

    .hover_text {
        font-size: 14px;
    }

    .plus_icon {
        font-size: 50px;
    }

    .my-tog-btn {
        display: -ms-inline-grid;
        display: inline-grid;
        width: 25px;
        height: auto;
        margin-left: 0;
        /*margin-left: 30px;*/
    }

    .new_font {
        font-size: 30px
    }

    .logo {
        /*text-align: left;
        margin-left: auto;
        margin-top: 22px;
        margin-left: 30px;*/
    }

    .menu-icon {
        padding-left: 2rem;
    }

    #about_yoga {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .cover {
        text-align: center;
        margin-top: 40px;
    }

    .about-heading {
        text-align: right;
        margin-top: 0;
    }

    .heading_mainc {
        font-size: 35px;
        text-align: center;
        line-height: 1.3;
    }

    .width {
        width: 250px;
        margin-left: auto;
        margin-left: auto;
    }

    #training_vedio {
        margin-top: 80px;
    }

    .main_heading {
        font-size: 34px;
    }

    .heading {
        font-size: 35px;
        font-family: 'Cairo', sans-serif !important;
        color: #212331;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .margin_heading {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .info {
        color: #000000;
        font-size: 12px;
        font-family: 'Cairo', sans-serif !important;
        line-height: 1.7;
    }

    .margin_button {
        margin-bottom: 15px;
    }

    .cover .card-title {
        margin-top: 5px;
        margin-bottom: 18px;
    }

    .text_wrap {
        padding: 50px 2rem 0 2rem;
    }

    #counters {
        margin-top: 80px;
        overflow: hidden !important;
    }

    header .circle {
        display: none;
    }

    .logo_icon {
        display: none;
    }

    #navbar_btn {
        display: block;
    }

    #my-nav1 {
        display: none;
    }

    .blue_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 3%;
    }

    .gradient_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 3%;
    }

    .vedio-heading {
        text-align: center;
    }

    .padding_blog {
        padding: 20px;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .heading_font_sm {
        font-size: 30px;
    }

    #contact {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    #map {
        margin-bottom: 80px;
    }

    .quote_box {
        left: 42%;
    }

    .vedio_text {
        margin-top: 36px;
        font-size: 30px;
    }

    li.footer_list {
        width: 50px;
        height: 50px;
        padding-top: 13px;
    }

    li.footer_list {
        margin-left: 0;
        font-size: 15px;
    }

    #portfolio_top #portfolio-measonry {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .small-screen {
        display: block;
    }

    #portfolio_top {
        position: inherit !important;
        margin-top: 0 !important;
    }

    .portfolio-heading1 {
        text-align: center;
        margin-top: 0;
        padding-bottom: 30px;
    }

    #types_of_yoga {
        padding-bottom: 0;
    }

    #portfolio_top::after {
        bottom: auto !important;
        display: none;
    }

    .caption_center {
        margin-top: 28px;
    }

    .header_tittle2 {
        font-size: 12px;
    }

    .header_tittle1 {
        font-size: 29px;
        margin: 10px;
    }

    p:last-child {
        margin-bottom: 20px;
    }

    .banner-heading h1 {
        font-size: 45px !important;
    }

    .about_img img {
        min-height: 270px !important;
    }

    .img-sc {
        padding-bottom: 10px !important;
    }

    dl, ol, ul {
        padding: 10px 10px 10px 10px !important;
    }
}

@media (min-width: 768px) {
    .navbar-nav > li > a {
        padding: 10px 10px !important;
        font-size: 12px !important;
    }

    .margin_button {
        margin-top: 0px;
    }

    ul.nav.navbar-nav.navbar-right.top-nav a {
        padding: 5px 2px !important;
    }
}

}
/**************BLOG PAGES MEDIA QUERIES***********/
@media screen and (min-width:1600px) {
    .bg-img .text1 {
        margin-left: 20px;
    }

    .bg-img .text {
        position: absolute;
        margin-left: 18px;
    }

    .minimal_image .min-post div {
        background: black;
        height: 13.76vw;
    }

    .minimal_image .min-post .large_post div {
        background: black;
        height: 19.85vw;
    }
}

@media screen and (width:768px) {

    .colored_hover {
        width: 96%;
    }

    .colored_hover-center {
        width: 96%;
    }

    header {
        display: -webkit-box;
    }

    .logo {
        text-align: left;
        margin-left: auto;
        margin-top: 22px;
        margin-left: 30px;
    }

    .my-tog-btn {
        display: -ms-inline-grid;
        display: inline-grid;
        width: 25px;
        height: auto;
        margin-left: 0;
        margin-left: 60px;
    }

    .margin_navbar-logo {
        margin-bottom: 15px;
        height: 55px;
    }

    li.nav-item.ng-scope.active a {
        color: black !important;
    }

    .minimal_image .min-post div {
        background: black;
        height: 28.9vw;
    }

    .popular_image {
        height: 100%;
        width: 22%;
    }

    .minimal_image .min-post .large_post div {
        background: black;
        height: 27vw;
    }
}

@media screen and (max-width:1024) {
    div#Search {
        display: none !important;
    }
}

@media screen and (max-width:766px) {
    .padding_blog-img {
        padding-top: 10px;
    }

    .navbar-nav {
        background: white;
        margin-top: 32px;
    }

    .btn-model {
        padding: 9px 35px 9px 35px;
    }

    .bg-img .text1 {
        margin-top: 90px;
        text-align: center;
        padding-bottom: 3.3%;
    }

    .modal.show .modal-dialog {
        -webkit-transform: none;
        margin-top: 30px;
    }

    .input-group {
        padding-left: 10%;
        padding-left: 10%;
        text-align: left;
    }

    .inner-box {
        margin-left: 20px;
        margin-left: 5%;
    }

    .box4 .box-content {
        margin-top: 35px;
    }

    .text_post {
        margin-bottom: 15px;
    }

    .mt-10 {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .minimal_image .min-post div {
        background: black;
        height: 28.4vw;
    }

    .minimal_image .min-post .large_post div {
        background: black;
        height: 26.39vw;
    }

    .pr-6 {
        padding-left: 30px;
    }

    .box4:hover:before {
        width: 470%;
    }

    .box4 .post {
        font-size: 12px;
    }

    .box4 .icon li a {
        font-size: 22px;
    }

    .divider {
        border: 0.5px solid #dbdbdb;
    }

    .pt-lg-10 {
        padding-top: 1.5rem;
    }

    #footer {
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .footer_icon ul {
        padding-left: 0;
    }

        .footer_icon ul li {
            margin: 20px;
        }

    .verticle_lineQ {
        margin-top: -86px;
        margin-left: 21.2rem;
    }

    .quote_text .quote {
        font-size: 21px;
        width: 325px;
        margin-left: 0;
        margin-left: 0;
        margin-top: 60px;
    }

    .outer-window .nav-item a {
        padding: 9px !important;
    }

    .outer-window .nav-link {
        font-size: 19px !important;
    }

    .text1 h1 {
        font-size: 1.2rem;
        margin-left: 0;
        text-align: center;
    }

    .text1 p {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 17px;
    }

    .written_text {
        padding-bottom: 22px;
        text-align: center;
        margin-left: 0;
    }

    .written_img {
        width: 40%;
        margin-left: 100px;
    }

    .written_outerbox {
        text-align: center;
    }

        .written_outerbox .written_img {
            width: 40%;
            margin-left: 0;
        }

    .written .display {
        display: inline-block;
    }

    .icon_text {
        margin-top: auto;
        margin-bottom: auto;
    }

    .form-control {
        text-align: left;
    }

    .icon_comment {
        margin-left: 55px;
    }

    .height {
        text-align: center;
    }

    #Commitees .panel-default > .panel-heading {
        height: 350px !important;
    }

    #Commitees .profile-image div {
        display: inline-block;
        width: 100% !important;
    }

    div#Search {
        display: none;
    }
}

@media screen and (max-width:769px) {
    div#Search {
        display: none !important;
    }
}

@media screen and (max-width:992px) {
    .navbar-nav {
        background: white;
    }

    .min-post {
        margin-top: 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    .form-wrapper input {
        /*width: 71% !important;*/
    }
}
/*@media (min-width: 1700px) and (max-width: 3000px) {
    .form-wrapper input {
        width: 86% !important;
    }
}*/
/*.tp-bgimg.defaultimg {
    margin-top: 3%;
}*/
.collapse.navbar-collapse ul li {
    /*font-weight: bold;*/
}

/*section#Our_Service {
    padding-top: 115px;
}*/

.Style h1 {
    /* text-align: center; */
    /* padding: 10px; */
    /* background: #e8e2e2; */
    /* border-bottom-left-radius: 8px; */
    display: inline-block;
    color: #252a34;
    padding: 1px 30px;
    position: relative;
    top: 0;
    margin: 0;
    line-height: 1.6em;
    background: #9e98981a;
    border-left: 5px solid #4c65a4;
    border-left: 5px solid #4c65a4;
    text-align: center;
    margin-top: 40px;
    line-height: 46px !important;
}

.counter-heading.Style p {
    text-align: justify;
    padding: 10px;
    text-align: left;
}


/*********REV SLIDER BULLETS*************/
.ares.tp-bullets {
}

    .ares.tp-bullets:before {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        background: transparent;
        padding: 10px;
        margin-left: -10px;
        margin-top: -10px;
        -webkit-box-sizing: content-box;
        box-sizing: content-box
    }

.ares .tp-bullet {
    width: 13px;
    height: 13px;
    position: absolute;
    background: rgba(229,229,229,1);
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .ares .tp-bullet:hover, .ares .tp-bullet.selected {
        background: rgba(255,255,255,1)
    }

.ares .tp-bullet-title {
    position: absolute;
    font-size: 12px;
    padding: 0 10px;
    font-weight: 600;
    left: 27px;
    top: -4px;
    background: rgba(255,255,255,0.75);
    visibility: hidden;
    -ms-transform: translatex(-20px);
    transform: translatex(-20px);
    -webkit-transform: translatex(-20px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition: transform 0.3s;
    line-height: 20px;
    white-space: nowrap
}

    .ares .tp-bullet-title:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent rgba(255,255,255,0.75);
        content: " ";
        position: absolute;
        left: -10px;
        top: 0
    }

.ares .tp-bullet:hover .tp-bullet-title {
    visibility: visible;
    -ms-transform: translatex(0px);
    transform: translatex(0px);
    -webkit-transform: translatex(0px)
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
    background: rgba(255,255,255,1)
}

    .ares .tp-bullet.selected:hover .tp-bullet-title:after {
        border-color: transparent transparent transparent rgba(255,255,255,1)
    }

.ares.tp-bullets:hover .tp-bullet-title {
    visibility: hidden
}

.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
    visibility: visible;
    -ms-transform: translateX(0px) translatey(0px);
    transform: translateX(0px) translatey(0px);
    -webkit-transform: translateX(0px) translatey(0px)
}

.ares.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title {
    left: auto;
    left: 27px;
    -ms-transform: translatex(20px);
    transform: translatex(20px);
    -webkit-transform: translatex(20px)
}

    .ares.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after {
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent rgba(255,255,255,0.75) transparent transparent;
        left: auto !important;
        left: -10px !important
    }

.ares.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected:hover .tp-bullet-title:after {
    border-color: transparent rgba(255,255,255,1) transparent transparent !important
}

.ares.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title, .ares.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title {
    top: -35px;
    left: 50%;
    left: auto;
    -ms-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px);
    -webkit-transform: translateX(-50%) translateY(-10px)
}

    .ares.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after, .ares.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after {
        border-width: 10px 10px 0 10px;
        border-color: rgba(255,255,255,0.75) transparent transparent transparent;
        left: auto;
        left: 50%;
        margin-left: -10px;
        top: auto;
        bottom: -10px
    }

.ares.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected:hover .tp-bullet-title:after, .ares.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected:hover .tp-bullet-title:after {
    border-color: rgba(255,255,255,1) transparent transparent transparent
}

.ares.nav-dir-horizontal.nav-pos-ver-center .tp-bullet:hover .tp-bullet-title, .ares.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet:hover .tp-bullet-title {
    -ms-transform: translateX(-50%) translatey(0px);
    transform: translateX(-50%) translatey(0px);
    -webkit-transform: translateX(-50%) translatey(0px)
}

.ares.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title {
    top: 25px;
    left: 50%;
    left: auto;
    -ms-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    -webkit-transform: translateX(-50%) translateY(10px)
}

    .ares.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after {
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent rgba(255,255,255,0.75) transparent;
        left: auto;
        left: 50%;
        margin-left: -10px;
        bottom: auto;
        top: -10px
    }

.gallery-section {
    float: left;
    width: 100%;
}

/*.container-fluid {
    padding: 45px;
    margin-left: auto;
    margin-left: auto;
}*/

.image-gallery {
    position: relative;
    float: left;
    width: 100%;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
    padding: 10px;
}

    .image-gallery figure {
        width: 100%;
    }

        .image-gallery figure img {
            width: 100%;
            float: left;
            height: 240px;
        }

.overlay-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.Event h1 {
    font-size: 25px !important;
    font-weight: bold;
}

#Event {
    padding-top: 5%;
}

.ares.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected:hover .tp-bullet-title:after {
    border-color: transparent transparent rgba(255,255,255,1) transparent
}

.ares.nav-dir-horizontal.nav-pos-ver-top .tp-bullet:hover .tp-bullet-title {
    -ms-transform: translateX(-50%) translatey(0px);
    transform: translateX(-50%) translatey(0px);
    -webkit-transform: translateX(-50%) translatey(0px)
}

#footer-section h1, h2, h3, h4, h5, h6 {
    color: white;
}

.dropdown-menu > li > a {
    font-family: 'Cairo', sans-serif !important;
}

.navbar-nav > li {
    float: right !important;
}

div#navbarSupportedContent1 {
    float: right;
}

header {
    /*margin-top: 1%;*/
}

div#navbarSupportedContent1 {
    /*margin-top: 2%;*/
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    background-color: #bcbdbf !important;
}

.text-md-left {
    text-align: right !important;
}

section#counters {
    /*margin-bottom: 5%;*/
}

#DynmaicSectionContainer {
    margin-top: 10%;
    margin-bottom: 5%;
}

ul.list-unstyled.list-inline {
    float: left;
}

.dropdown-menu > li > a {
    text-align: right;
}

#contact strong {
    display: flex;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif !important;
}

li.list-inline-item:hover {
    color: #18733f;
}

#DynmaicSectionContainer {
    margin-top: 10%;
}
/*////////////////////////////////////////////*/
#EventDetails .card-title {
    margin-bottom: .75rem;
    /* text-align: justify; */
    font-size: 18px;
    padding: 10px;
    font-weight: 600;
    color: #000000;
}

#EventDetails .card:hover {
    background: #efeeede0;
    box-shadow: -1px -2px 13px 0px rgb(72 69 69 / 75%);
}

#EventDetails .card-text:last-child {
    margin-bottom: 0;
    text-align: justify;
    padding: 10px;
    color: #000000;
}

#EventDetails a {
    -webkit-transition: .25s all;
    transition: .25s all;
}

#EventDetails .card {
    padding-left: auto;
    padding-right: auto;
    min-height: 500px;
    margin-top: 15px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: .25s box-shadow;
    transition: .25s box-shadow;
}

/*#EventDetails .card:focus, .card:hover {
        box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    }*/

#EventDetails .card-inverse .card-img-overlay {
    background-color: rgba(51, 51, 51, 0.85);
    border-color: rgba(51, 51, 51, 0.85);
}

#EventDetails .card-img-top {
    /*margin-top: 10px;*/
    max-height: 215px;
}

#EventDetails .col-xs-12 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#EventDetails .row {
    margin-left: auto;
    margin-right: auto;
}

nav#my-nav1 {
    margin: auto;
}

.search_outerbox input {
    font-size: 15px;
}

.search_outerbox i {
    font-size: 21px;
}

a {
    cursor: pointer;
}

.pad50 {
    margin-top: 30px;
}
/*section#home {
    margin-top: 75px;
}*/
.testimonial-box h1 {
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #990033;
    font-weight: bold;
    text-align: center;
    height: 75px;
    direction: rtl;
    line-height: 25px;
    overflow: hidden;
}

ul.nav.navbar-nav.navbar-right.top-nav li a {
    font-size: 13px;
}

#contactUs p {
    line-height: 0.428571;
    color: #333;
    font-weight: 600;
    float: right;
}

#contactUs a {
    line-height: 0.428571;
    color: #990033;
    font-weight: 600;
}

#contactUs span {
    color: #000000;
    font-size: 15px;
    font-weight: 600;
}

div#contactUs {
    margin-top: 5%;
}

.requiredStar {
    color: #cc1b1b !important;
    font-size: 10px !important;
    font-weight: 600 !important;
}
/*form control */
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 0px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    z-index: 1 !important;
}

.contact_text {
    /*width: 96.4%;*/
    background: #f7f7f7;
    border: 1px solid #cccccc;
    padding: 10px;
    margin-bottom: 20px;
}

    .contact_text div {
        padding: 5px 0px 5px 35px;
        background-size: 20px auto;
        text-align: right;
    }

    .contact_text img {
        height: 28px;
    }

#contactUs h1 {
    color: black;
    text-align: right;
    margin-bottom: 3%;
}

.padding {
    padding-left: 50px;
    padding-right: 50px;
}

.footer-section a:hover {
    color: #990033;
}

button.btn.btn-search {
    height: 34px;
}

.MB-70 {
    margin-bottom: 5%;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    color: white !important;
    text-decoration: none;
    background-color: #bcbdbf !important;
}

a.btn.btn-large.btn-primary.margin_button.wow.fadeInUp.ng-binding {
    float: right;
}

.dropdown-menu > li > a {
    padding: 7px 20px !important;
}

.pab70 {
    padding-bottom: 70px;
}

a {
    cursor: pointer !important;
}

.Details-heading {
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: right;
}

.Download a {
    color: #000000 !important;
}

    .Download a:hover {
        color: #137c48 !important;
        text-decoration: underline !important;
    }

@media (min-width: 768px) and (max-width: 1360px) {
    .testimonial-box h1 {
        font-size: 16px !important;
        font-weight: 700;
    }

    section#home {
        margin-top: 5% !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial-box h1 {
        font-size: 15px !important;
        font-weight: 700;
    }

    section#home {
        margin-top: 5% !important;
    }

    .nav > li > a {
        padding: 10px 4px !important;
        font-size: 13px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 12px !important;
        padding: 10px 7px 10px 10px !important;
    }

    .cover .card-title {
        font-size: 13px !important;
    }

    .main_heading {
        font-size: 25px !important;
    }

    .heading_mainc {
        font-size: 25px !important;
    }

    .heading {
        font-size: 25px;
    }
}

.Myloader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 13px solid #990033;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: auto;
    margin-top: 18%;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

li.nav-item.ng-scope.active {
    color: white !important;
    text-decoration: underline;
}

    /*span {
    color: black;
    text-align: right;
}*/
    li.nav-item.ng-scope.active a {
        color: white !important;
    }

#navbarSupportedContent1 {
    border: 1px solid #00000003;
    background: #a31846;
    padding: 6px;
    background-color: #990033;
    z-index: 1000;
}

.navbar-collapse {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover span {
    color: #f5f5f5 !important;
}

.Services_Icons i {
    width: 100%;
    color: black;
    text-align: center;
    margin: auto;
    padding: 0px;
    font-size: 45px;
    color: #990033;
}

#FAQS p {
    color: #000 !important;
}

.label-primary {
    background-color: #990033 !important;
}

.panel-title a:hover {
    color: #990033 !important;
}

.panel-body {
    /* float: right; */
    text-align: right !important;
}

.panel-title {
    text-align: right;
}

.field.field-name-body {
    margin-bottom: 5%;
}

.title {
    margin-top: 3%;
    font-weight: bold;
    margin-bottom: 3%;
}

    .title h3 {
        color: black;
        font-weight: bold;
        text-align: right;
    }

.Doc {
    /*margin-bottom: 10%;
    margin: 5% 5% 5% 5%;*/
}

.Doc_Icons {
    background-color: #FFF;
    -ms-transition: all 300ms ease-in;
    -ms-transform: scale(1);
    -moz-transition: all 300ms ease-in;
    -moz-transform: scale(1);
    border: 1px solid;
    border-radius: 50%;
    /*width: 94px;*/
    padding: 17px;
    background: #990033;
    color: white;
    margin: 5% 5% 5% 5%;
    margin-bottom: 15%;
    height: 90px;
    width: 90px;
}

    .Doc_Icons:hover {
        box-shadow: 0px 0px 15px #636161;
        z-index: 2;
        -webkit-transition: all 300ms ease-in;
        -webkit-transform: scale(1.2);
        -ms-transition: all 300ms ease-in;
        -ms-transform: scale(1.2);
        -moz-transition: all 300ms ease-in;
        -moz-transform: scale(1.2);
        transition: all 300ms ease-in;
        transform: scale(1.2);
    }

    .Doc_Icons i {
        color: white !important;
        font-size: 50px;
        text-align: center;
    }

.sub_title {
    padding-top: 5%;
    text-align: left;
    text-align: right;
}

    .sub_title a {
        color: #000000 !important;
    }

        .sub_title a:hover {
            text-decoration: underline !important;
            font-weight: 600;
        }

}

.carousel-item img {
    height: 450px !important;
}

img.d-block.w-100 {
    height: 450px;
}

ul.dropdown-menu.SubMenu {
    /*background: #990033 !important;*/
}

.dropdown-menu > li > a {
    color: black !important;
    font-weight: 600;
}

.thumbnail {
    padding: 0;
    margin-top: 5%;
    box-shadow: 2px 5px 10px 10px rgb(212 200 200);
}


a {
    color: #ccc;
}

/*-------------------------------------*/

.cf:before, .cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
}

/*-------------------------------------*/
.Search_sec a {
    color: black;
    font-weight: 800;
    float: right;
}

.form-wrapper {
    /*width: 485px;*/
    margin-top: 2%;
}

    .form-wrapper input {
        width: 100%;
        height: 40px;
        padding: 10px 5px;
        float: right;
        font: bold 15px;
        border: 0;
        background: #eee;
        -moz-border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px;
        font-family: 'Cairo', sans-serif;
        /*text-align: center;*/
        color: black;
    }

        /*.form-wrapper input:focus {
                outline: 0;
                background: #fff;
                -moz-box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
                -webkit-box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
                box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
            }*/

        .form-wrapper input::-webkit-input-placeholder {
            color: #999;
            font-weight: normal;
            font-style: italic;
        }

        .form-wrapper input:-moz-placeholder {
            color: #999;
            font-weight: normal;
            font-style: italic;
        }

        .form-wrapper input:-ms-input-placeholder {
            color: #999;
            font-weight: normal;
            font-style: italic;
        }

    .form-wrapper button {
        overflow: visible;
        position: relative;
        float: right;
        border: 0;
        padding: 0;
        cursor: pointer;
        height: 40px;
        width: 100%;
        font: bold 15px/40px;
        color: #fff;
        text-transform: uppercase;
        background: #990033;
        -moz-border-radius: 0 3px 3px 0;
        -webkit-border-radius: 0 3px 3px 0;
        border-radius: 3px 0 0 3px;
        text-shadow: 0 -1px 0 rgba(0, 0,0, .3);
        font-family: 'Cairo', sans-serif;
    }

        .form-wrapper button:hover {
            background: #990033;
        }

        .form-wrapper button:active,
        .form-wrapper button:focus {
            background: #990033;
        }

        .form-wrapper button:before {
            content: '';
            position: absolute;
            border-width: 8px 8px 8px 0;
            border-style: solid solid solid none;
            border-color: transparent #990033 transparent;
            top: 12px;
            right: -7px;
            transform: rotate(178deg);
        }

        .form-wrapper button:hover:before {
            border-right-color: #990033;
        }

        .form-wrapper button:focus:before {
            border-right-color: #c42f2f;
        }

        .form-wrapper button::-moz-focus-inner {
            border: 0;
            padding: 0;
        }

ul.nav.navbar-nav.navbar-right {
    /* margin-top: 30px; */
    display: inline-block;
    width: 100%;
}

a.page-scroll {
    color: black;
}

.form-wrapper.cf input {
    margin: auto;
}

.mainheading {
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    color: #080808;
    text-align: center;
    font-weight: bold;
    /*text-shadow: 2px 2px 4px #726b6e;*/
    /*text-shadow: 1px 1px 0 #990033, 2px 2px 0 #990033;*/
    line-height: 15px;
}

.top-nav > li > a {
    padding: 10px 22px;
}

.sub_title i {
    margin-right: 20px;
}

.Doc {
    margin-top: 20px;
}

a.btn.btn-lg.btn-link.text-gray {
    font-size: 15px;
}

.container.middleScreen {
    margin-top: 1%;
}

.user-name {
    float: right;
    width: 100%;
    padding: 10px 0;
}

label.billing-information {
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    color: black;
}

    label.billing-information sup {
        padding: 0;
        top: -1.3em;
        left: 0;
        color: #ff0000;
        font-size: 7px;
    }

h4.page-title1.ng-binding {
    color: #990033;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 2%;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 16px;
}

.info span {
    color: black;
    text-align: justify;
    direction: rtl;
    font-weight: 600;
}

label.control-label {
    color: black;
    text-align: right;
    float: right;
}

form#Upload_form p {
    color: black !important;
    text-align: right;
}

option {
    color: black;
    text-align: center;
    font-weight: 700;
}

#Upload_form label {
    font-size: 17px;
    color: black;
    float: right;
    font-weight: 900;
}

a.btn {
    color: black;
    font-size: 15px;
    font-weight: bold;
    /* margin-left: 6px; */
}

i.fas.fa-plus {
    margin-left: 10px;
}

i.fas.fa-minus {
    margin-left: 10px;
}

.snip1515 {
    position: relative;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    color: #000000;
    text-align: center;
    line-height: 1.4em;
    font-size: 14px;
    box-shadow: none !important;
}

    .snip1515 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .snip1515 .profile-image {
        display: inline-block;
        width: 80%;
        z-index: 1;
        position: relative;
        padding: 10px;
        border: 2px solid #e8b563;
    }

        .snip1515 .profile-image img {
            max-width: 100%;
            vertical-align: top;
        }

    .snip1515 figcaption {
        width: 100%;
        /*background-color: #F2F2F2;*/
        color: #555;
        /*padding: 125px 25px 25px;*/
        margin-top: -100px;
        display: inline-block;
        margin-top: 1%;
    }

    .snip1515 h3,
    .snip1515 h4,
    .snip1515 p {
        margin: 0 0 5px;
        color: black;
    }

    .snip1515 h3 {
        font-weight: 600;
        font-size: 1.3em;
        /*font-family: 'Playfair Display', Arial, sans-serif;*/
        color: black;
    }

    .snip1515 h4 {
        color: #8c8c8c;
        font-weight: 400;
        letter-spacing: 2px;
    }



    .snip1515 .icons {
        text-align: center;
        width: 100%;
    }


    .snip1515 i:hover {
        opacity: 1;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

#Commitees p {
    color: #000 !important;
    text-align: right;
    font-size: 14px;
}

#Commitees .profile-image h1, h2 {
    color: white !important;
    text-align: right;
    font-weight: bold;
    font-size: 19px;
    /*height: 20%;*/
}

.banner-content h3 {
    text-align: right;
    font-size: 17px;
    padding-top: 10px;
    height: 60%;
    line-height: 19pt;
    font-weight: 500;
    overflow: hidden;
}

.banner-button {
    float: right;
}

.bs-example {
    margin: 20px;
}

#Commitees .panel {
    /*box-shadow: 3px 3px 5px 6px #ccc;*/
}

.Com_Details ul {
    padding: 10px;
}

#Commitees .profile-image img {
    height: 200px;
    /*width: 270px;*/
    display: block;
    margin: auto;
    padding: 10px;
    box-shadow: 3px 3px 5px 6px #eae9e9;
    float: right;
    border-radius: 10%;
}

#Commitees .panel-default > .panel-heading {
    color: #333;
    background-color: #990033;
    border-color: #ddd;
    height: 235px;
}

    #Commitees .panel-default > .panel-heading:hover {
        background-color: #000000b8;
    }

#Commitees .profile-image div {
    display: inline-block;
    width: 47%;
    margin-top: 2%;
    padding: 20px;
}

#MainContent_divMonth1:hover {
    background: #990033;
}

.diamond-month-shape.diamond-month-select:hover {
    background: #990033;
}

.title_top {
    background: #990033;
    text-align: center;
    margin-bottom: 4%;
    width: 100%;
}

    .title_top a {
        color: white;
    }

i.fas.fa-link {
    padding-left: 10px;
    color: white;
}

.nav > li > a:focus, .nav > li > a:hover {
    color: black;
}

.title_top:hover {
    background-color: #eee;
}

    .title_top:hover i.fas.fa-link {
        color: #990033;
    }

    .title_top:hover a {
        color: black !important;
    }

section.widget.widget_categories h1 {
    font-size: 25px;
    font-weight: bold;
    color: black;
    text-align: center;
}

section#portfolio-xe {
    margin-top: 5%;
}

.Captch {
    padding: 10px 0 10px 0;
}

#input_container {
    position: relative;
}

#display {
    position: absolute;
    bottom: 2px;
    right: 5px;
    width: 24px;
    height: 24px;
}

.swal-text {
    font-weight: 700;
}

a.ing {
    font-weight: 700;
}

canvas {
    display: block;
    vertical-align: bottom;
}

div#Survey {
    margin-top: 5%;
}

.vote_btn {
    padding: 5%;
}
/* ---- particles.js container ---- */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    padding: 40px 0 0;
}


.banner {
    float: left;
    width: 100%;
    position: relative;
}

.special-style-full {
    height: 100%;
    overflow: hidden;
    padding: 0;
    position: absolute;
    background-size: cover;
    width: 100%;
    z-index: 0;
}

.overlay-banner-two {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #000000;
    right: 0;
    opacity: 0.6;
    z-index: 1;
}

.parallax-style {
    background-attachment: fixed;
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    top: 0;
    left: 0;
}

.banner-text {
    float: left;
    width: 100%;
    position: relative;
    padding: 70px 0;
}

.banner-heading {
    float: left;
    width: 100%;
    position: relative;
}

    .banner-heading h1 {
        font-size: 60px;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

.banner-heading2 {
    position: relative;
    font-weight: 600;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Quicksand', sans-serif;
    color: #000;
    text-transform: uppercase;
    font-size: 25px;
}

.banner-heading_h1 {
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    float: right;
}

label.form-check-label.ng-binding.ng-scope {
    color: white;
    font-size: 17px;
    text-align: center;
    padding: 10px;
}

.bannar-background {
    width: 100%;
    height: 450px;
    background-color: rgb(81 77 77 / 65%);
}

button.survay_btn {
    padding: 7px 39px 10px 39px;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 0.6px;
    color: white !important;
    cursor: pointer;
    -o-transition: 0.5s;
    border: none;
    background-color: #990033;
}

    button.survay_btn.ng-binding:hover {
        background: white;
        color: black !important;
        font-weight: 600 !important;
        font-size: 16px !important;
    }

h4.modal-title {
    color: black;
    font-weight: 600;
}

.form-check.form-check-inline.ng-scope {
    float: right;
    padding: 0;
}

#Results .modal-header {
    display: block !important;
}

#Results button.close {
    float: left;
}

h4.modal-title.ng-binding {
    float: right;
}

video.ng-scope {
    max-height: 450px;
}

video {
    background-color: black !important;
}
/*///////////////////*/
.rept_advn_pnl_ul li.rept_advn_pnl_head {
    background-color: #990033;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.rept_advn_pnl_ul li {
    display: block;
    padding: 14px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #f3f3f3;
}

    .rept_advn_pnl_ul li.rept_advn_pnl_fot {
        background-color: #990033;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .rept_advn_pnl_ul li a {
        font-size: 13px;
        float: right;
        color: black;
    }

li.rept_advn_pnl_fot a {
    display: block !important;
    text-align: center;
    float: initial;
    color: white;
    font-size: 15px;
}

li.rept_advn_pnl_head p {
    display: block !important;
    text-align: center;
    float: initial;
    color: white;
    font-size: 17px;
}

#ServiceDirectory .main_content {
    border: 1px solid;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #ccc;
    border-top: 0;
    border-bottom: 0;
}

table.listingTable > thead > tr > th {
    font-size: 14px;
    color: #f6f6f6 !important;
    position: relative;
    text-align: right;
    font-weight: 700;
}

.ms-rtestate-field h1, h1.ms-rteElement-H1, .ms-rtestate-field h2, h2.ms-rteElement-H2 {
    line-height: 1.4;
    color: #0072C6;
}

.rept_list_detial_item_title {
    color: #990033;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    font-size: 23px;
    width: 100%;
    white-space: normal;
}

table.listingTable > tbody > tr > td label {
    font-weight: 600;
    color: #000000;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    float: right;
    text-align: right;
}

span#lblUniName {
    color: #990033;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0px;
    margin-bottom: 13px;
    display: inline-block;
    position: relative;
    font-size: 15px;
    width: 100%;
    white-space: normal;
    cursor: context-menu;
}

.rept_right_panl_inner.InstitutesList-page {
    padding: 0px 23px 24px 0;
}

#ServiceDirectory .table td:hover {
    background-color: #e4e3e3 !important;
    color: white;
}

#ServiceDirectory .form-control {
    font-size: 12px !important;
}

#ServiceDirectory select {
    margin: 0 0 0px 0 !important;
    border-radius: 5px;
}

.apexcharts-legend-series {
    text-align: right !important;
}
