.innerPage {
    background: url(../../Image/patern/right-center.png) right bottom no-repeat,url(../../Image/patern/left-center.png) left bottom no-repeat, url(../../Image/paternbg.png) repeat;
    background-size: 10%, 10%, auto;
    background-color: #fff;
}

.midContent {
    background: url(../../Image/paternbg.png) repeat;
    background-size: auto;
    background-color: #fff;
    padding-left: 10rem;
    padding-right: 10rem;
}

.swiper-container-gallery {    
    margin: 20px auto;
}

.swiper-slide-container-gallery {
    text-align: center;
    height: 100%;
    max-width: 600px;
    margin: auto;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.gallery-top {
    height:auto;
    width: 100%;
}

.gallery-thumbs {
    height: auto;
    box-sizing: border-box;
    /*box-shadow: 0px 5px 10px -5px rgba(19, 157, 126, 0.5);*/
    padding: 15px 0;
    /*background: rgba(1, 177, 215, 0.1);*/
    /*border: 1px solid #fff;*/
    border-radius: 3px;
}

    .gallery-thumbs .swiper-slide {
        width: 20%;
        height: 100%;
        opacity: 0.4;
    }

    .gallery-thumbs .swiper-slide-active {
        opacity: 1;
        color: #139d7e;
    }

.swiper-slide-gallery {
    height: 500px;
}

.bk-slider {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0 100px;
}

.swiper-person {
    width: 100%;
    height: 200px;
    overflow: visible;
}

.swiper-slide-person {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0px 1px 10px rgba(120, 120, 120, 0.5);
}

.swiper-pan {
    z-index: 1
}

.swiper-img {
    border-radius: 100%;
    height: 90px;
    border: 2px solid #fff;
    box-shadow: 0 0px 15px rgba(1, 92, 167, 0.5);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.title-swiper {
    font-size: 11px;
    color: #003f7c;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.subtitle-swiper {
    font-size: 9px;
    color: #003f7c;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.swiper-slide-person.swiper-slide-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.4);
    z-index: 2;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    border-bottom: 2px solid #2fc0a0;
}

.swiper-slide-active .swiper-pan .swiper-img {
    height: 110px;
}

.swiper-slide-active .swiper-pan .title-swiper {
    font-size: 12px;
    color: #2ebc9d
}

.swiper-slide-active .swiper-pan .subtitle-swiper {
    font-size: 10px;
    color: #2ebc9d
}
/* PAGINATION */
.swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    text-align: center;
    margin-left: 0.3rem;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        color: #fff;
        background: linear-gradient(45deg, #2fc1a1, #03487e);
    }

.swiper-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: linear-gradient(45deg, #2ebc9d, #003f7c);
    border-bottom: 2px solid #fb3;
}

.swiper-pagination-person {
    bottom: 0;
    left: 0;
    right: 0;
}

.swiper-container-flip {
    width: 100%;
    height: 350px;
    padding:10px 50px 0px;
}

.swiper-slide-flip {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 350px;
}






#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #BA55D3;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #FF00FF;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.list-group-item {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .list-group-item:hover {
        background-color: rgba(43, 187, 173, 0.75);
    }

table.table th, table.table td {
    padding: 0.5rem !important;
    font-size: 12px !important;
    text-align: center !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    direction: rtl;
    font-family: IRANSans !important;
    color: #343a40 !important;
}