body{
    font-family: Arial, tahoma, "Times New Roman";
    font-size: 12px;
    font-weight: normal;
    line-height: 1.8em;
    text-align: left;
    direction: ltr;
    background: #fff;
    color: #515151;
}
a, a:visited{
    text-decoration: none;
    color: #6c3a77;
    transition: all 0.3s;
}
a:hover, a:active, a:focus{
    color: #a63dbd;
    text-decoration: none;
}
/*.nav{
    display: inline-block;
}*/
#tak-top {
    min-height: 55px;
    overflow: hidden;
    padding: 0;
    /*width: 100%;*/
}

#tak-top .list1 li {
    position: relative;
    padding: 0 8px;
    margin: 0;
    text-align: center;
    display: inline-block;
}
#tak-top .list1 li a{
    padding:0;
}
#tak-top .list1 li:after {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 50%;
    background: #b9b9b9;
    top: 0;
    bottom: 0;
    margin: auto;
}
#tak-top .list1 li:last-child:after{
    display: none;
}

#top-nav {
    background: #532b5c;
    min-height: 70px;
    color: #fff;
    /*width: 100%;*/
    z-index: 9999999;
    /*display: inline-block;*/
    position: relative;
}
#top-nav .navbar-toggle {
    color: #fff;
    background: #462139;
    margin: 20px 0;
}
#top-nav .navbar-toggle .icon-bar{
    background: #fff;
}
#top-nav nav.navbar {
    margin: 0;
    padding: 0;
    border-radius: 0;
    height: auto;
    min-height: auto;
    border: none;
}
#top-nav .navbar-nav {
    width: 100%;
    -webkit-box-orient: horizontal;
    flex-direction: row;
}
#top-nav .navbar-nav a {
    color: #fff;
    padding: 20px 10px 25px;
    border-top: 5px solid transparent;
    transition: all 0.3s;
}
#top-nav .navbar-nav li:hover > a {
    background-color: #472050;
    border-color: #f1e4d1;
}

#top-nav .navbar-nav a:hover, #top-nav .navbar-nav a:focus {
    background-color: #472050;
    border-color: #f1e4d1;
}
#top-nav .navbar-nav ul a:hover, #top-nav .navbar-nav ul a:focus {
    background-color: #323232;
    border-color: #f1e4d1;
}
#top-nav .nav .open > a, #top-nav .nav .open > a:hover, #top-nav .nav .open > a:focus {
    background-color: #472050;
    border-color: #f1e4d1;
}
#top-nav .navbar-nav li:hover > ul.dropdown-menu{
    display: block;
    position: absolute;
    /*transform: translate3d(0px, 70px, 0px);*/
    top: 0px;
    left: 0px;
    will-change: transform;
    top: 70px;
}
#top-nav .navbar-nav ul{
    padding:10px 0;
}
#top-nav .navbar-nav ul.dropdown-menu:after {
    content: "";
    position: absolute;
    top: -12px;
    left: 10px;
    border: 6px solid;
    border-color: transparent transparent #404040;
    z-index: 9999;
}
#top-nav .navbar-nav .dropdown-menu a {
    border: none;
    padding: 10px 15px;
    white-space: inherit;
}
#top-nav .navbar-nav ul ul {
    right: 100%;
    position: absolute;
    top: 0;
    background: #3e2134;
    width: 220px;
    display: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
#top-nav .navbar-nav ul li {
    width: 100%;
}
#top-nav .navbar-nav ul li:hover ul{
    display: block;
}


.dropdown-menu{
    display: none;
    min-width: 160px;
}
.dropdown-toggle::after{
    display: none;
}
#top-nav .dropdown-menu {
    min-width: 220px;
    background-color: #404040;
    border-top: 1px solid #47254e;
    padding: 0;
    border-bottom: 2px solid #2b2b2b;
}
#top-nav .navbar-brand {
    padding: 7px 10px;
    overflow: hidden;
    height: auto;
    margin: 0;
    position: relative;
}
#top-nav .navbar-brand a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0.3;
    /*width: 0;*/
    //transition: all 0.3s;
    /*border-radius: 100%;*/
    transform: scaleX(0);
}
#top-nav .navbar-brand a:hover:after{
    width: 100%;
    animation-name: logo-animate;
    animation-duration: 1s;
}
@keyframes logo-animate {
    0% { opacity: 0.1; transform: scaleX(0); }
    50% { opacity: 0.2; transform: scaleX(1.5); }
    55% { opacity: 0.1; transform: scaleX(1.5) }
    100% { opacity: 0; transform: scaleX(1.5) }
}
#headline-news li{
    display: none;
}
#headline-news li:first-child{
    display: inline-block;
}
#headline-news .arrow{
    color: #ba50d2;
}
#headline-news a{
    padding: 0;
}
#headline-news .widget-headline-post{
    height: 25px;
}
#search{
    text-align: left;
}
#search input[type="text"] {
    width: 0;
    padding: 0;
    transition: all 0.3s;
    background: #eee;
    box-shadow: none;
    border-radius: 3px;
    border: none;
}
#search button[type="submit"] {
    position: relative;
    width: 35px;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: #fff;
    height: 35px;
}
#search button[type="submit"]:after {
    position: absolute;
    content: "\f002";
    font-family: FontAwesome;
    color: #532b5c;
    left: 0;
    font-size: 16px;
    top: 0;
    background: #e5e5e5;
    border-radius: 100%;
    padding: 5px 9px 6px;
}
#search:hover input[type="text"], #search input[type="text"]:focus{
    width: 100%;
    padding: 5px 10px;
}
#search input[type="text"]:focus {
    box-shadow: inset 0 0 5px #aaa;
    background: #f5f5f5;
}

#tak-slideshow {
    margin-top: -35px;
}
#tak-slideshow .camera_wrap{
    float: none;
}
#tak-slideshow .camera_caption > div {
    padding: 10px 20px;
    text-align: center;
    background: transparent;
}
#tak-slideshow .camera_caption {
    color: #fff;
    padding: 20px 10px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
#tak-slideshow .cameraContents:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/pattern_1.png) repeat;
    content: "";
    z-index: -1;
    opacity: 0.5;
}
#tak-slideshow a.btn.readmore {
    background: #fff;
    padding: 5px 40px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 20px;
}
#tak-slideshow a.btn.readmore:hover {
    background: #532b5c;
    color: #fff;
}
#tak-slideshow .camera_wrap .camera_pag .camera_pag_ul{
    text-align: center;
}
#tak-slideshow .camera_pag {
    display: none;
}
#tak-slideshow .camera_wrap {
    margin-bottom: 0px !important;
    height: 450px !important;
}
#tak-slideshow h3{
    font-size: 20px !important;
    margin-bottom: 20px;
}
#tak-slideshow h3 a {
    color: #fff;
}
#tak-slideshow h3 a:hover {
    color: #eea5ff;
}
#tak-latest-news {
    background: #532b5c;
    padding: 25px 0;
    color: #fff;
}
#tak-latest-news .widget-title *, #tak-top1 .widget-title *, #tak-top2 .widget-title *, #tak-middle-top .widget-title *, #tak-bottom-middle .widget-title *{
    font-size: 24px !important;
    text-align: center;
    padding: 20px 0;
}
#tak-latest-news a{
    color: #fff;
}
#tak-latest-news li > a:hover, #tak-latest-news li > a:focus {
    text-decoration: none;
    background-color: transparent;
    color: #eb7978;
}
#tak-latest-news li a{
}
#tak-latest-news li a i {
    font-size: 9px;
    margin-left: 5px;
    vertical-align: middle;
}
#tak-latest-news .headline li{
    margin-bottom: 30px;
    clear: both;
}
#tak-latest-news .headline li img {
    transition: all 0.3s;
}
#tak-latest-news .headline li:hover img {
    /* opacity: 0.8; */
    /*transform: scale(1.03);*/
}
#tak-latest-news .headline li a {
    font-size: 17px;
    margin-bottom: 5px;
    padding: 5px 0;
}
#tak-latest-news .headline .post-image {
    float: right;
    margin-left: 15px;
    width: 30%;
}
#tak-top1{
    direction: ltr;
    padding:25px 0;
}
#tak-top1 .widget-title, #tak-top2 .widget-title, #tak-middle-top .widget-title, #tak-bottom-middle .widget-title{
    color: #532b5c;
}
#tak-top1 .owl-item a {
    font-size: 15px;
    color: #532b5c;
    display: block;
}
#tak-top1 .owl-item a:hover {
    color: #a63dbd;
}
.widget-carousel .customNavigation i {
    font-size: 35px;
}
.widget-carousel .customNavigation {
    margin-top: 20px;
}
.widget-carousel .carousel-prev:hover, .widget-carousel .carousel-next:hover{
    background: #f1f1f1;
}
#tak-top2{
    background: #f2e5d2;
    padding: 25px 0 50px;
}
#tak-content .entry-content .media-image {
    /*float: left;
    margin-right: 20px;
    vertical-align: top;
    display: inline-block;*/
    border: 3px solid #ccc;
    margin-bottom: 20px;
}
#tak-content .entry-lead{
    overflow: hidden;
}
#tak-content .entry-lead p {
    background: #f7f7f7;
    padding: 10px;
    margin-bottom: 15px;
    border-right: 5px solid #532b5c;
    color: #532b5c;
    display: block;
    font-size: 14px;
    line-height: 2em;
}
#tak-content .entry-title{
    border-bottom:1px solid #ccc;
    padding: 10px 0;
    font-size: 20px !important;
    color: #532b5c;
    margin-bottom: 0px;
}
#tak-content .entry-headline {
    color: #888;
}
#tak-content .footer-meta {
    color: #888;
    margin: 20px 0;
    clear: both;
}
#tak-top2 .col .widget-content {
    background: #fff;
    padding: 25px 15px 15px;
    height: 240px;
    overflow-y: auto;
}
.nav > li > a:hover, .nav > li > a:focus {
    background-color: transparent;
}
/*#tak-top2 .col ul li{
    padding: 0 10px;
}*/
#tak-top2 .col ul li a {
    display: block;
    position: relative;
    font-weight: bold;
    padding: 5px 15px;
}
#tak-top2 .col ul li a:hover {
    padding-right: 18px;
}
#tak-top2 .col ul li a:after{
    content: "\f104";
    position: absolute;
    left: 0;
    font-family: FontAwesome;
}
#tak-top2 .col ul li a:hover:after {
    content: "\f100";
}
#tak-top2 .col .widget-title:before {
    position: absolute;
    content: "";
    background: #532b5c;
    width: 70px;
    height: 70px;
    left: 15px;
    bottom: -15px;
    z-index: 9;
}
#tak-top2 .col .widget-title:after {
    position: absolute;
    content: "\f2bb";
    color: #f2e5d2;
    font-size: 35px;
    font-family: FontAwesome;
    top: 22px;
    left: 34px;
    z-index: 9;
}
#tak-top2 .widget-title{
    position: relative;
}
#tak-top2 .widget-title > * {
    padding: 10px 0 10px 95px;
    text-align: left;
}
#tak-top2 .col .widget_schools .widget-title:after {
    content: "\f0b1";
}
#tak-top2 .col .widget_research .widget-title:after {
    content: "\f15b";
    right: 34px;
}
#tak-top2 .col .widget_cultural .widget-title:after {
    content: "\f19d";
    right: 26px;
}

#tak-middle-top{
    padding: 10px 0 30px;
}
#tak-middle-top .intro-text {
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 40px;
}
#tak-middle-top .intro-text {
    padding-bottom: 25px;
    position: relative;
    font-size: 14px;
}
.intro-text{
    padding-bottom: 25px;
    position: relative;
    font-size: 14px;
    margin-bottom: 40px !important;
}
.intro-text:before {
    position: absolute;
    content: "";
    width: 60%;
    height: 3px;
    background: #d9d7e4;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.intro-text:after {
    position: absolute;
    content: "\f0d7";
    font-family: FontAwesome;
    font-size: 35px;
    bottom: -25px;
    left: 0;
    right: 0;
    color: #d9d7e4;
}

#tak-middle-top .intro-text:before {
    position: absolute;
    content: "";
    width: 60%;
    height: 3px;
    background: #d9d7e4;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#tak-middle-top .intro-text:after {
    position: absolute;
    content: "\f0d7";
    font-family: FontAwesome;
    font-size: 35px;
    bottom: -25px;
    left: 0;
    right: 0;
    color: #d9d7e4;
}
#tak-middle-top ul li {
    width: 19%;
    margin: 0 0 10px;
    padding: 0;
}
#tak-middle-top ul li a{
    font-size: 14px;
    color: #494949;
}
#tak-middle-top ul li a:hover{
    color: #ce4a9e;
}
#tak-middle-top ul li i {
    font-size: 25px;
    color: #d9d7e4;
    vertical-align: middle;
    transition: all 0.3s;
}
#tak-middle-top ul li a:hover i{
    color: #ce4a9e;
}
#tak-middle-center {
    background: #532b5c;
    padding: 25px 0 30px;
    color: #fff;
    background: #532b5c url(../img/back1.jpg) center left no-repeat;
    background: linear-gradient(to left, #532b5c 50%, transparent), #532b5c url(../img/back1.jpg) center left no-repeat;
}
@media(min-width: 1900px){
    #tak-middle-center {
        background: linear-gradient(to left, #532b5c 70%, transparent), #532b5c url(../img/back1.jpg) center left no-repeat;
    }
}

#tak-middle-center a{
    color: #fff;
}
#tak-middle-center a:hover{
    color: #fe99db;
    border-bottom: 1px solid;
}
.about-jz .intro-text-2{
    padding: 15px 0;
    font-size: 14px;
}
.about-jz ul li a{
    padding: 0px;
    display: inline-block;
    border-bottom: 1px solid transparent;
}
.about-jz ul li{
    padding: 5px;
}

#tak-middle-bottom{
    margin: 30px 0;
}
#tak-middle-bottom #middle-bottom{
    position: relative;
}
#tak-middle-bottom .widget-title {
    text-align: left;
    width: auto;
    background: #532b5c;
    color: #fff;
    float: right;
    padding: 50px 20px;
    position: relative;
    margin: -30px 0 -20px;
}
#tak-middle-bottom .widget-title:after {
    content: "";
    position: absolute;
    background: #532b5c;
    width: 40px;
    height: 100%;
    top: 0;
    transform: skewX(-15deg);
    left: -20px;
}
#tak-middle-bottom .widget-content {
    /* padding: 25px 0; */
    position: absolute;
    right: 200px;
}
#tak-middle-bottom #middle-bottom {
    position: relative;
    z-index: 1;
    padding: 30px 0 20px;
}
#tak-middle-bottom #middle-bottom:before {
    content: "";
    position: absolute;
    left: 90%;
    height: 100%;
    width: 1000%;
    background: #532b5c;
    top: 0;
    z-index: -1;
    bottom: 0;
    display: inline-block;
}
#tak-middle-bottom .sanjesh-style ul li {
    width: 24%;
    margin: 0 0 10px;
    padding: 0;
}
#tak-middle-bottom .sanjesh-style ul li i {
    vertical-align: middle;
    margin-left: 5px;
}

#tak-bottom-middle {
    padding: 10px 0 30px;
}


#tak-bottom-top{
    background: #f2e5d2;
    border-bottom: 7px solid #532b5c;
    padding: 25px 0;
}
#tak-middle-bottom ul li a{
    padding: 5px 15px;
}
#tak-bottom1 {
    background: #f2f1f1;
    width: 100%;
    overflow: hidden;
}
#tak-bottom2{
    background: #532b5c;
    padding:20px 0;
    color: #fff;
    overflow: hidden;
}
#tak-bottom2 .widget-title {
    padding: 0 0 15px;
}
#tak-bottom2 .col{
    border-left: 1px solid #61346b;
}
#tak-bottom2 .col:last-child {
    border: none;
}
#tak-bottom2 a {
    color: #fff;
    padding: 5px 0;
}
#tak-bottom2 a:hover {
    color: #c5549d;
}
#tak-bottom2 p{
    margin-bottom: 5px;
}


footer#footer{
    background: #472050;
    padding:15px 0;
    color: #fff;
}
footer#footer ul{
    text-align: left;
}
footer#footer ul li{
    display: inline-block;
    float: none;
}
footer#footer a{
    color: #fff;
    padding:0px 10px;
}


#backtoTop {
    border-radius: 50%;
    background: #909090;
    opacity: 0.8;
    border: none;
    z-index: 999;
    cursor: pointer;
    position: fixed;
    bottom: 100px;
    right: -5%;
    display: none;
    width: 50px;
    height: 50px;
    display: none;
    transition: all 0.5s;
    color: #fff;
}
#backtoTop:hover{
    color: #000;
    opacity: 1;
}
#backtoTop i {
    vertical-align: bottom;
}
.widget-tab .nav-tabs {
    text-align: center;
    direction: rtl;
    margin-bottom: 20px;
    border: none;
}
.widget-tab .nav-tabs li {
    float: none;
    display: inline-block;
}
.widget-tab .nav-tabs li a{
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
}
.widget-tab .nav-tabs li.active a {
    background: #532b5c;
    color: #fff;
    border: none;
}
.bg-1{
    background: #532b5c !important;
}
.bg-2{
    background: #f2e5d2 !important;
}
.bg-3{
    background: #472050 !important;
}
.breadcrumb > li > a {
    display: inline-block;
    padding: 3px 0px;
}
.breadcrumb{
    margin:0;
    background: transparent;
}
.breadcrumb > .active {
    color: #565656;
}
.breadcrumb > li + li:before {
    color: #532b5c;
}
#tak-content {
    /*margin-top: 10px;*/
    min-height: 250px;
}
#tak-left > div{
    background: #f2e5d2;
    padding: 15px;
}
#tak-left .widget{
    margin-bottom: 20px;
}
#tak-left .widget-title {
    color: #532b5c;
    border-right: 3px solid;
    padding-right: 10px;
    margin-bottom: 10px;
}
#tak-left .nav > li > a{
    padding: 5px 10px;
}
.post-view .post-info {
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0;
}
.post-view .post-info li {
    margin: 0 10px;
    color: #717171;
}
.post-view .post-info li:first-child{
    margin-right: 0;
}
.post-view .post-info li i {
    color: #532b5c;
}
#tak-content .entry-title{
    padding: 0;
    border: none;
}
#tak-content .entry-header{
    padding: 20px 0;
}
#tak-content .indicator-img {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}
#tak-content .indicator-img img{
    border: 3px solid #ccc;
}
#tak-content .footer-meta a {
    background: #f3f3f3;
    color: #777;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 13px;
    font-weight: normal;
    margin: 0 1px;
}
#tak-content .footer-meta a:hover{
    background: #532b5c;
    color: #fff;
}
#single-pagination .prev-post, #single-pagination .next-post {
    background: #f3f3f3;
    padding: 5px 20px 5px 15px;
    border-radius: 30px;
    position: relative;
}
#single-pagination .next-post {
    padding: 5px 15px 5px 20px;
}
#single-pagination .prev-post:after{
    position: absolute;
    content: "\f101";
    right: 8px;
    font-family: FontAwesome;
}
#single-pagination .next-post:after{
    position: absolute;
    content: "\f100";
    left: 8px;
    font-family: FontAwesome;
}
#comment-view {
    background: #f2e5d2;
    padding: 15px;
    margin: 25px 0;
    overflow: hidden;
}
#comments .comment {
    background: #f3e9dd;
    border: 1px solid #fff;
}
#comments .comment .meta {
    background: #532b5c;
    color: #fff;
    padding: 5px 10px;
}
#comments .comment .meta a {
    color: #de94c3;
}
#comments .comment .comment-content{
    padding: 15px;
}
#comments .comment-reply-link {
    float: left;
}
#comments .comment-reply-link:before {
    content: '\f112';
    font-family: FontAwesome;
    margin-left: 2px;
    font-size: 12px;
}
#comments .comment-content .avatar {
    font-size: 8px;
    background: #dac09d;
    padding: 15px 20px;
    border-radius: 50%;
    color: #eadbc8;
    margin: 0 0 15px 15px;
    vertical-align: middle;
}
#comments ul.child {
    padding-right: 58px;
    padding-left: 0;
}
#comments ul.child .comment .meta{
    background: #934b79;
}
#comments ul.child .media {
    margin-top: 25px;
    margin: 20px 10px 10px;
}
#respond .form-control {
    border: 1px solid #d3bc9c;
    border-radius: 0;
}
#respond .form-control:focus{
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #d2ba96;
}
.media.comment #respond {
    padding: 15px;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #532b5c;
    border-color: #461535;
}
.pagination > li > a, .pagination > li > span {
    color: #532b5c;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #ab4f8a;
}
.category-list .item-title {
    /* background: #eee; */
    /* padding: 0px 15px; */
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
#tak-content .category-list .entry-header {
    padding: 0px 0 10px;
}
#tak-content .category-list article{
    margin-bottom: 25px;
    clear: both;
    overflow: hidden;
}
#tak-content .category-list .entry-thumbnail {
    float: right;
    width: 120px;
    vertical-align: middle;
    margin-left: 15px;
    padding: 0;
}
#tak-content .category-list .post-thumbnail{
    border: 3px solid #f2e5d2;
}
#tak-content .archive-header{
    margin-bottom: 20px;
}
#archive-pagination{
    text-align: center;
}
h1 a, h2 a, h3 a, h4 a, h5 a{
    font-size: inherit;
}
.gallery-images .l-image-gallery li{
    margin: 0 !important;
    height: 120px;
}
.l-image-gallery li img {
    height: 100%;
    width: 100%;
    padding: 5px;
}
.gallery-images .l-image-gallery .first-image{
    height: 100%;
}
.l-image-gallery li a:hover img {
    transform: scale3d(1.02, 1.02, 1.02) !important;
}
.related-post-plugins{
    margin: 30px 0;
}
.related-post-plugins a {
    padding: 5px;
    display: inline-block;
    color: #484848;
    font-size: 14px;
}
.related-post-plugins a:hover {
    color: #a63dbd;
}
.related-post-plugins a:hover i {
    color: #532b5c;
}
.related-post-plugins a i {
    vertical-align: middle;
    padding-left: 5px;
    color: #f2e5d2;
    transition: all 0.3s;
}
/************ gellery page ************/
#gallery-category .category-subcategories {
    background: #fbf4eb;
}
.lg-backdrop.in, .lg-outer.lg-visible {
    z-index: 9999999;
}
/*************************************/
#tak-content .item-title {
    color: #532b5c;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.tab-style-1 li {
    float: none;
    display: inline-block;
    position: relative;
    padding: 0;
    width: 19%;
}
.tab-style-1 li a{
    padding: 20px 10px 40px;
}

.tab-style-1 li:before {
    position: absolute;
    content: "";
    background: #e4e4e4;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}
.tab-style-1 li:after {
    background: #532b5c;
    position: absolute;
    content: "";
    bottom: -5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    transition: all 0.3s;
}
.tab-style-1 li.active:after{
    /*bottom: -15px;
    width: 30px;
    height: 30px;*/
    transform: scale(3);
}
.tab-style-1 li a {
    font-size: 14px;
    border-color: transparent !important;
}
.tab-style-1 li.active a, .tab-style-1 li.active a:hover {
    font-weight: bold;
    color: #532b5c !important;
    /*font-size: 15px;*/
    border: none !important;
}
.tab-style-1 .nav-tabs > li > a{
    border: none !important;
}


.tab-style-1 ul {
    border-bottom: 5px solid #e4e4e4;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.tab-style-1 .tab-content{
    background: #f9f9f9;
    border-bottom: 2px solid #e5e5e5;
    padding: 30px;
    margin: auto;
    float: none;
    font-size: 14px;
    color: #878787;
    position: relative;
    margin-top: 110px;
    line-height: 2em;
}
.tab-style-1 .tab-content:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 70px;
    left: 0;
    right: 0;
    top: -80px;
    background: #e4e4e4;
    margin: auto;
}
#sharing-buttons a {
    color: #532b5c;
}
#tak-left .widget-latest-post_list li a{
    position: relative;
    vertical-align: middle;
}
#tak-left .widget-latest-post_list li a:before {
    position: absolute;
    content: "\f0d9";
    font-family: FontAwesome;
    right: 0;
    font-size: 15px;
}

/************ video and audio player style ****************/
.plyr__play-large{
    background: #532b5c;
}
.plyr__progress--played, .plyr__volume--display {
    color: #472050;
}
.plyr--video .plyr__controls button.tab-focus:focus, .plyr--video .plyr__controls button:hover {
    background: #472050;
}
.plyr input[type=range]:active::-webkit-slider-thumb{
    background: #472050;
}
.plyr input[type=range]:active::-moz-range-thumb{
    background: #472050;
}
.plyr input[type=range]:active::-ms-thumb{
    background: #472050;
}
.plyr--audio .plyr__controls button.tab-focus:focus, .plyr--audio .plyr__controls button:hover {
    background: #472050;
}
.plyr {
    max-width: 800px;
    margin: auto;
}
/********************************************************/



    /************* classes *****************/
/* margin top */
.mt-1{
    margin-top: 3px;
}
.mt-2{
    margin-top: 5px;
}
.mt-3{
    margin-top: 10px;
}
.mt-4{
    margin-top: 15px;
}
.mt-5{
    margin-top: 20px;
}
/* margin botton */
.mb-1{
    margin-bottom: 3px;
}
.mb-2{
    margin-bottom: 5px;
}
.mb-3{
    margin-bottom: 10px;
}
.mb-4{
    margin-bottom: 15px;
}
.mb-5{
    margin-bottom: 20px;
}
/* margin left */
.ml-1{
    margin-left: 3px;
}
.ml-2{
    margin-left: 5px;
}
.ml-3{
    margin-left: 10px;
}
.ml-4{
    margin-left: 15px;
}
.ml-5{
    margin-left: 20px;
}
/* margin right*/
.mr-1{
    margin-right: 3px;
}
.mr-2{
    margin-right: 5px;
}
.mr-3{
    margin-right: 10px;
}
.mr-4{
    margin-right: 15px;
}
.mr-5{
    margin-right: 20px;
}
.pd-1{
    padding: 5px;
}
.pd-2{
    padding: 10px;
}
.pd-3{
    padding: 15px;
}
.pd-4{
     padding: 20px;
}

.btn-custom-1{
    background: #fff;
    padding: 5px 40px;
    border-radius: 20px;
    font-weight: bold;
    color: #532b5c !important;
}
.btn-custom-1:hover{
    background: #e0e0e0;
    color: #a63dbd !important;
}
.btn-custom-2 {
    background: #532b5c;
    padding: 5px 40px;
    border-radius: 20px;
    font-weight: bold;
    color: #ffffff !important;
    transition: all 0.3s;
}
.btn-custom-2:hover{
    background: #e0e0e0;
    color: #a63dbd !important;
}
.block-center{
    margin: auto;
    float: none;
}
.list-inline > li {
    display: inline-block;
}

.custom-highlight {
     background: #f2e5d2;
     color: #532b5c;
     margin: 0 5px;
    padding: 3px 8px;
    transition: all 0.3s;
    border-radius: 4px;
 }
.custom-highlight:hover {
    background: #dec097;
    color: #333;
    box-shadow: 0 5px 3px #ededed;
}

.btn.custom-link {
    background: #eb7978;
    color: #fff;
    padding: 5px 8px;
    font-size: 13px;
    margin: 0 5px;
    position: relative;
}
.btn.custom-link:hover {
    background: #b95e5d;
    /* color: #595959; */
    box-shadow: 0 5px 3px #dcdcdc;
}
.btn.custom-link:after {
    content: "\f14c";
    top: 0;
    bottom: 0;
    color: #fdf9f9;
    font-family: FontAwesome;
    padding-right: 5px;
    font-size: 14px;
}
.custom-quote {
    background: #fdf4e8;
    padding: 20px 35px;
    /* border: 3px solid #532b5c; */
    border-width: 0 ;
    position: relative;
    width: 40%;
    float: left;
    margin-right: 30px;
    font-size: 14px;
    line-height: 2em;
}
.custom-quote:before {
    content: "\f10e";
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 18px;
    font-family: FontAwesome;
    border-radius: 100%;
    text-align: center;
    line-height: 38px;
    color: #532b5c;
}
.custom-quote:after {
    content: "\f10d";
    position: absolute;
    left: 10px;
    bottom: 5px;
    font-size: 18px;
    font-family: FontAwesome;
    border-radius: 100%;
    text-align: center;
    line-height: 38px;
    color: #532b5c;
}
.entry-content strong {
    font-size: 13px;
    font-weight: bold;
    font-family: iransansB, iransans, Tahoma, Geneva, sans-serif!important;
    color: #444;
}
.custom-head-tag:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #dec097;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.custom-head-tag {
    border-right: 3px solid #532b5c;
    padding: 8px 20px 8px 0;
    position: relative;
    margin-bottom: 10px;
}
/*************************************/

fieldset {
    border: 1px solid #ddd !important;
    margin: 0;
    min-width: 0;
    padding: 15px;
    position: relative;
    border-radius: 4px;
    background-color: #f5f5f5;
    margin: 15px 0;
}

legend {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
    width: 35%;
    border: 1px solid #e2d6c4;
    border-radius: 4px;
    padding: 6px 10px;
    background-color: #ffe8e9;
    color: #532b5c;
}
legend {
    border-radius: 0;
    background-color: #f2e5d2;
    border-right: 5px solid #532b5c;
}
.supervision-form{

}
.supervision-form #item-message_type label{
    margin-left: 20px;
}
.supervision-form label span{
    font-weight: normal;
}
.supervision-form .form-group {
    margin-bottom: 25px;
}
.supervision-form input[type=text].form-control {
    height: 38px;
}
.supervision-form .select2-container--krajee .select2-selection--single {
    height: 38px;
}

.btn{
    transition: all 0.3s;
}
.btn-primary {
    color: #fff;
    background-color: #532b5c;
    border-color: #48233b;
    padding: 8px 20px;
}
.btn-default {
    padding: 8px 20px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #472050;
    border-color: #532b5c;
}
div.required label.control-label:after {
    content: " *";
    color: #a72727;
}
.widget-quickcontact .form-control {
    background: #472050 !important;
}


@media(min-width: 980px) {
    .gallery-images .l-image-gallery .first-image{
        height: 300px;
    }
}
@media(max-width: 760px){
    #tak-middle-top ul li {
        width: 24%;
    }
}
@media(max-width: 480px){
    #tak-middle-top ul li {
        width: 49%;
    }
    .custom-quote {
        width: 100%;
        margin: 15px 0;
    }
}