@charset "UTF-8";

header{
    background: var(--white);
    box-shadow: 0px 6px 10px var(--shadow);
    height: 100px;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
    display: block;
	transition: all linear 300ms;
}
header.sticky {
    height: 75px;
}

header .logo{
    font-size: 4.5rem;
}
header .logotype{
    font-size: 10rem;
    top:0.2rem
}
header .logotype:before {
    height: 75px !important;
    line-height: 75px !important;
	font-size: 190px;
    display: block;
    margin-top: 13px;
	transition: all linear 300ms;
}

header.sticky .logotype:before {
    margin-top: 2px;
    font-size: 162px;
}

header .bht-logo-logotype:before {
    font-size: 103px;
	    display: block;
    overflow: hidden;
	transition: all linear 300ms;
}
header.sticky .bht-logo-logotype:before {
    height: 70px;
}

div#mobile-menu {
    margin-top: 17px;
	transition: all linear 300ms;
}

.sticky div#mobile-menu {
    margin-top: 3px;
}

header div.menu-wrp ul{
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--dark);

}
header div.menu-wrp ul li{
    display: inline-block;
	font-family:iranyekan;
    margin: 0 1rem;
}
header div.menu-wrp ul li>a:not(:only-child):after {
    color: #07939a;
    content: '\79';
    font-family: hedayat !important;
    vertical-align: bottom;
    margin-right: 5px;
}
header div.menu-wrp ul li.is-active>a:not(:only-child):after {
    content: '\76';

}
header div.menu-wrp ul li ul{
    position: fixed;
    top: 99px;
    right: 0;
    left: 0;
    height: 75px;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    display: block;
    transition: all ease-in-out 50ms;
    transform: translatex(-100%);
    transform-origin: top right;
    padding: 0 10rem;
    padding-top: 1.5rem;

}
header.sticky div.menu-wrp ul li ul{
top: 75px;
}
header div.menu-wrp ul li ul li{
	opacity:0.1;
	transform: translatex(-80px);
	transition: all ease-in-out 200ms;
}
header div.menu-wrp ul li ul li:nth-child(1){
	transition-delay: 80ms
}
header div.menu-wrp ul li ul li:nth-child(2){
	transition-delay: 110ms
}
header div.menu-wrp ul li ul li:nth-child(3){
	transition-delay: 140ms
}
header div.menu-wrp ul li ul li:nth-child(4){
	transition-delay: 170ms
}
header div.menu-wrp ul li ul li:nth-child(5){
	transition-delay: 200ms
}
header div.menu-wrp ul li ul li:nth-child(6){
	transition-delay: 230ms
}
header div.menu-wrp ul li ul li:nth-child(7){
	transition-delay: 260ms
}
header div.menu-wrp ul li ul li:nth-child(8){
	transition-delay: 290ms
}
header div.menu-wrp ul li ul li:nth-child(9){
	transition-delay: 310ms
}

@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
    header div.menu-wrp ul li ul{
        -webkit-backdrop-filter: blur(2rem);
        backdrop-filter: blur(2rem);
        background: rgba(0,0,0,0.2);
    }
}

header div.menu-wrp ul li.is-active ul{
    transform: translatex(0);
}
header div.menu-wrp ul li.is-active ul li{
	opacity:1;
	transform: translatex(0px);
}
header div.menu-wrp ul li.is-active a {
    color: var(--primary);
}

header div.menu-wrp ul li.is-active ul li a {
    color: white;
}


header div.menu-wrp ul li ul li{
    color: var(--white);
    font-weight: 700;

}

header .search-form-wrp{
    position: fixed;
    top: 0;
    height: 75px;
    left: 0;
    width: 60%;
    z-index: 4;
    transition: all linear 200ms;
    transform: translateX(-100%);
}

header .search-form-wrp.is-active{
    transform: translateX(0);
}

header .search-form-wrp input[type="text"]{
    background: none;
    text-align: center;
    border-bottom: 1.5px solid #00000019;
}

header .search-form-wrp button{
    background: none;
    color: var(--dark);
    position: relative;
    top: 10px;
    margin-right: 1rem;
}
header .search-form-wrp .close-btn{
    position: fixed;
    left: 3rem;
    top: 1.7rem;
}

main{

}

main section.introduction, .post-header{
    position: relative;
}
main section.introduction .slide:before, .post-header:before{
    position: absolute;
    display: block;
    content: ' ';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
	transition: all linear 200ms;
    backdrop-filter: blur(20px);
}
main section.introduction:hover .slide:before {
    background: rgba(0,0,0,.6);
}

main section.introduction #surtitle, main section.introduction .surtitle{
    margin-top: 10vh;
}

main section .news:before{
    content: "\71";
    display: block;
    position: absolute;
    top: 5px;
    right: 4%;
    font-family: "hedayat" !important;
    color: #fff;
    background: var(--primary);
    width: 19px;
    height: 19px;
    border-radius: 50%;
    line-height: 17px;
    font-size: 14px;
    text-align: center;
}

main section .event:hover .event-date{
    background: var(--primary) !important;
}

main section .nicescroll{
    height: 100vh;
}

main section .bottom-caption{
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 0.9rem;
    display: block;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.8), rgba(0,0,0,0.8));
}

.playpause{
    position: absolute;
    top:50%;
    right: 50%;
    display: inline-block;
    transform: translate(50%,-80%);
    z-index: 2;
    font-size: 5rem;
    cursor: pointer;
}

.bg-secondary-top:before{
    position: absolute;
    content: '';
    display: block;
    top: 0;
    right: 0;
    left: 0;
    height: 35%;
    background: var(--secondary);
}
div#play {
    position: relative;
    top: 0.6rem;
}
.mehrab:before{
    content: '';
    display: block;
    width: 100px;
    height: 300px;
    position: absolute;
    top:-63px;
    right: -42px;
    background: url("../img/mehrabaabi.png") no-repeat;
    background-size: contain;
}

.city-info{
    background: url("../img/path-bg.png") center no-repeat;
    min-height: 240px;
    background-size: contain;
}
#IranMap .map .province{
    position: relative;
    display: block;
}

#IranMap .map .province path.city.is-active{

}
#IranMap .map .province path.city{
    transition: all ease-in 1s;
    transform-origin: top left;
}
#IranMap .map .province path.city.not-active{
    opacity: 0;
    visibility: hidden;
}

.bg-envelop{
    background: url("../img/envelop.png") no-repeat top left;
	background-size: 270px;
}
.push-1{
    position: relative;
    right: 1rem;
}
.pull-1{
    position: relative;
    right: -1rem;
}
.bg-white-gradient{
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0), rgba(255,255,255,0),rgba(255,255,255,0),rgba(255,255,255,0));
}

.footer-menu-wrp ul li{
    font-size: 1.3rem;
    font-weight: 900;
    padding-bottom: 1.2rem;
}
.footer-menu-wrp ul li ul{
    padding-top: 0.5rem;
}
.footer-menu-wrp ul li ul li{
    font-size: 1rem;
    font-weight: 400;
    padding: 0.3rem  0;
	font-family:iranyekan;
}

.section-header{
    display: inline-block;
    position: relative;
}
.section-header:before{
    content: '';
    display: block;
    position: absolute;
    top: 0.9rem;
    right: -5rem;
    width: 50px;
    height: 30px;
    background: url(../img/tarh4.png) no-repeat;
    z-index: 2;
    background-size: 100%;
    transform: scale(-1,1);
}
.section-header:after{
    content: '';
    display: block;
    position: absolute;
    top: 0.9rem;
    left: -5rem;
    width: 50px;
    height: 30px;
    background: url(../img/tarh4.png) no-repeat;
    z-index: 2;
    background-size: 100%;
}

.page-numbers {
    min-width: 35px;
    height: 35px;
    background: var(--dark);
    display: inline-block;
    line-height: 35px;
    font-weight: bold;
    margin: 0 5px;
    vertical-align: TOP;
    border-radius: 5px;
    padding: 0 5px;
}

.page-numbers.current {
    background: var(--warning);
}

span.comment-date {
    position: absolute;
    left: 1rem;
    top: 1rem;
}
span#ostan_b {
    color: var(--dark);
    display: block;
    position: absolute;
    top: -1rem;
    font-size: 3rem;
    font-weight: bolder;
    right:calc(50% + 42px);
    transform: translateX(50%);
	font-family: Brando;
	white-space: nowrap;
}
.counter-icon {
    font-size: 6em;
    margin-bottom: 2rem;
}

#gform_1 .gform_body {
    width: calc(100% - 50px);
    display: inline-block;
    padding-right: 7px;
}

#gform_1 label.gfield_label {
    display: none;
}
input#input_1_1 {
    width: 102%;
    height: 39px;
    padding: 0 7px;
    background: #525d63;
    border-bottom: 1px solid #20b7d4;
    color: #fff;
}
#gform_1 .gform_footer.top_label {
    display: inline-block;
    padding: 0;
    margin: 0;
}

input#gform_submit_button_1 {
    background: var(--primary);
    position: relative;
    height: 40px;
    color: var(--white);
    width: 45px;
    padding: 0;
}
img#gform_ajax_spinner_1 {
    position: absolute;
    right: 50%;
}
.over-layer-dark {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    background: rgba(0,0,0,0.75);
    transition: all linear 300ms;
    opacity: 1;
}

.over-layer-dark:hover {
    opacity: 0.3;
}
.over-title {
    position: absolute;
    right: 0.7rem;
    left: 0.7rem;
    bottom: 3rem;
    transition: all linear 300ms;
}

.link-hover:hover > .over-title {
    transform: translateY(1rem);
}

.gray-blur img {
	-webkit-filter: grayscale(70%) blur(2px);
	filter: grayscale(70%) blur(2px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.gray-blur:hover img {
	-webkit-filter: grayscale(0) blur(0);
	filter: grayscale(0) blur(0);
}

.gray-blur .caption{
    position:absolute;
    bottom:0;
    right:0;
    left:0;
    padding:5px;
    background: #000000;
    transition: all linear 200ms;
    transform:scale(1,0);
    transform-origin:bottom
}
.gray-blur:hover .caption{
    transform:scale(1,1);
}

.photo-archive{
  position: relative;
  display: inline-block;
  padding-right: 3em;
  overflow: hidden;
  color: #fff;
}

.photo-archive:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  transform: skew(-30deg);
  z-index: -1;
}

.slide a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 3;
}
.owl-prev {
    font-size: 62px;
    position: absolute;
    top: 50%;
    left:20px;
    transform: translateY(-50%);
}
.owl-next {
    font-size: 62px;
    position: absolute;
    top: 50%;
    right:20px;
    transform: translateY(-50%);
}

header div.menu-wrp ul li:hover {
    color: var(--primary);
}

header div.menu-wrp ul li a:hover{
	color: var(--primary);
	cursor:pointer;
}
header div.menu-wrp ul li ul li a:hover{
	color: var(--primary);
	cursor:pointer;
}


/* .sbi_item:nth-child(1),.sbi_item:nth-child(2),.sbi_item:nth-child(3),.sbi_item:nth-child(4),.sbi_item:nth-child(5),.sbi_item:nth-child(6) {
    transform: translateX(25%);
}

.sbi_item:nth-child(7),.sbi_item:nth-child(8),.sbi_item:nth-child(9),.sbi_item:nth-child(10),.sbi_item:nth-child(11),.sbi_item:nth-child(12) {
    transform: translateX(-25%);
} */
#sb_instagram .sbi_photo {
    position: relative;
}

.sbi_photo_wrap a span.sbi-screenreader {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3 !important;
    height: 100% !important;
    width: 100% !important;
    text-align: center !important;
    color: #fff !important;
    padding: 45% 5px !important;
    direction: rtl;
    text-indent: 0 !important;
    font-size: 16px;
    font-weight: bold;
    font-family: iranyekan;
    opacity: 0;
    transition: 300ms linear all;
}

.sbi_photo_wrap a span.sbi-screenreader:hover {
    opacity: 1;
}
#sb_instagram .sbi_photo{
	border:4px solid #fff;
}


.slide p {
    transform:translateX(70vw);
    transition:all linear 500ms;
    opacity:0;
}
.slide:hover p {
    transform:translateX(0);
    opacity:1;
}

.slide button {
    transform:translateY(50px);
    transition:all linear 300ms;
    opacity:0;
}
.slide:hover button {
    transform:translateY(0px);
    opacity:1;
}
.slide .divider{
	transform:translateX(-100vw);
    transition:all linear 300ms;
	opacity:0;
}
.slide:hover .divider{
	transform:translateX(0vw);
	opacity:1;
}
.footer-link a:hover div{
    color:var(--primary);
}

#slider .owl-dots {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

#slider button.owl-dot {
    width: 20px;
    height: 20px;
    background: #d8d8d8 !important;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
}

#slider button.owl-dot.active {
    background: orange !important;
}

#slider button.owl-prev, #slider button.owl-next {
    font-size: 60px;
}

#slider .owl-item .slide{
	padding:0vh 0;
	max-height:100vh;
	min-height:100vh;
}
#slider .owl-item .container {
/*     background: rgba(0,0,0,0.6); */
    padding: 1rem 0;
}

.gm-style-iw.gm-style-iw-c {
    padding: 0 !important;
    box-shadow: 0px 0px 13px -1px rgba(255, 255, 255, 0.54) !important;
    max-height: unset !important;
    max-width: unset !important;
}

.gm-style-iw-d {
    padding: 0 !important;
    overflow: visible !important;
    display: block !important;
    max-height: unset !important;
}
button.gm-ui-hover-effect {
    z-index: 999999 !important;
    background: rgba(255,255,255,0.4) !important;
    border-radius: 50% !important;
}
#infowindow:before {
    content: "";
    background: rgba(0,0,0,0.65);
    display: block;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}
.main-event-date{
    background: rgba(255,255,255,0.7);
}

#carousel-1 button.owl-prev {
    position: absolute;
    display: block;
    font-size: 3rem !important;
    left: -15px !important;
    top: 40% !important;
}

#carousel-1 button.owl-next {
    position: absolute;
    display: block;
    font-size: 3rem !important;
    right: -15px !important;
    top: 40% !important;
}

.quote-wrp {
    border: 1.5px solid var(--warning);
    border-radius: 1.8rem;
    padding: 1.3rem 5rem;
    position: relative;
}

.quote-wrp:before {
    content: "\4e";
    font-family: hedayat !important;
    color: var(--warning);
    font-size: 5rem;
    position: absolute;
    transform: rotate(180deg);
    left: 0.5rem;
    top: -1.3rem;
}
.quote-wrp:after {
    content: "\4e";
    font-family: hedayat !important;
    color: var(--warning);
    font-size: 5rem;
    position: absolute;
    right: 0.5rem;
    bottom: -1rem;
}

#carousel-2 button.owl-prev {
    font-size: 3rem !important;
    left: -4rem;
}
#carousel-2 button.owl-next {
    font-size: 3rem !important;
    right: -4rem;
}
section.event-header{
    background-size: cover;
    background-position: center center;
}
section.event-header:before {
    content: " ";display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(15px);
    z-index: 0;
}

.tabs-nav li {
    text-align: center;
    color: #00000019;
    padding: 22px 0;
    font-weight: bolder;
    font-size: 17px;
    border-left: 1px solid #00000019;
}

.tabs-nav li:last-child {
    border-left: navajowhite;
}

.tabs-nav {
    border-bottom: 1px solid #00000019;
}

.tabs-nav li.is-active {
    color: #2f2f2f;
}
#gform_5 .gform_footer {
    display: inline-block;
    width: 100px !important;
    margin:0 !important;
    padding:0 !important;
    border:none !important;
    float: none;
    vertical-align: top;
    height: 50px;
    margin-right: -10px !important;
    overflow: hidden;
    border-radius: 4px;
}

#gform_5 .gform_body {
    display: inline-block;
    width: 450px !important;
    float: none;
}

form#gform_5 {
    display: block;
    text-align: center;
    direction: rtl;
}

#gform_5 .gform_body ul , 
 #gform_5 .gform_body ul li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

#gform_5 .gform_body ul li label {
    display: none;
}

#gform_5 .gform_body input#input_5_1 {
    width: 100%;
    background: #e2e2e2;
    height: 50px;
    text-align: center;
    color: #797979 !important;
    border-radius: 4px;
}

#gform_5 .gform_footer input#gform_submit_button_5 {
    width: 100%;
    height: 50px;
    background: var(--warning);
    font-size: 17px;
    font-family: 'iranyekan';
}
div#gform_confirmation_message_5 {
    display: inline-block;
    background: #e0e0e0;
    padding: 0.5rem 5rem;
    color: #31bcd3;
    font-family: 'iranyekan';
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
}
input#postlink {
    position: absolute;
    width: 0;
    height: 0;
}

div#copymessage {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    color:#ffffff;
    display: block;
}



/***************************/
div.maudio .audio{height:0;overflow:hidden;display:none;}
div.maudio .audio-control{
  overflow:hidden;
  margin-top:10px;
  font-size: 12px;
  font-weight: normal;
}
div.maudio .audio-control a,
div.maudio .audio-control div{
  float:left;
  margin:0 5px;
  cursor:pointer;
}
div.maudio .audio-control a{
  display:block;
  width: 50px;
  height: 50px;
  text-align:center;
  text-decoration:none;
  overflow:hidden;
}
div.maudio .audio-control a.play{
  border-radius:50%;
  background-color: var(--primary);
  background-position:10px 8px;
}
div.maudio.playing .audio-control a.play{
  background-position:11px -22px;
}
div.maudio .audio-control a.fast-reverse,
div.maudio .audio-control a.fast-forward{
  width:17px;
  height:17px;
  margin-top:7px;
  background-position:-50px 1px;
}
div.maudio .audio-control a.fast-reverse{
  background-position:-50px -59px;

}
div.maudio .audio-control a.fast-forward:hover{
  background-position:-50px -29px;
}
div.maudio .audio-control a.fast-reverse:hover{
  background-position:-50px -89px;
}

div.maudio .audio-control .progress-bar{
  width: 64%;
  height: 12px;
  margin: 18px 5px;
  border-radius:3px;
  background:#afafaf;
  overflow:hidden;
}
div.maudio .audio-control .progress-pass{
  width:0;
  height: 12px;
  margin:0;
  border-radius:3px;
  background: var(--primary);
}
div.maudio .audio-control .time-keep{
  height:30px;
  line-height:30px;
  color:#45556c;
  cursor:default;
}
div.maudio .audio-control .mute{
  width:21px;
  height:17px;
  margin-top:7px;
  background-position:0 -60px;
  display: none;
}
div.maudio .audio-control .mute.muted{
  background-position:0 -90px;
}
div.maudio .audio-control .volume-bar{
  width:50px;
  height:5px;
  margin-top:13px;
  border-radius:2px;
  background:#afafaf;
  display: none;
}
div.maudio .audio-control .volume-pass{
  width:100%;
  height:5px;
  margin:0;
  border-radius:2px;
  background:#e6183f;
}
.maudio a.play:before {content: "\53";font-family: 'hedayat';font-size: 30px;line-height: 50px;padding: 0 0px 0 5px;}

.maudio.playing a.play:before {content: "\52";padding: 0;}

.wordcloud-2{
	height: 00vh;
    padding: 0;
    page-break-after: always;
    page-break-inside: avoid;
    width: 100%;
    direction: ltr;
    text-align: left;
}

.sticky {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
        }

.main-member h3 {
    width: 90%;
    text-align: right;
    top: 65%;
    position: relative;
    right: 38px;
	transition:all linear 200ms;
}
.main-member:hover h3 {
	top:30%;
}
.main-member .excerpt {
    position: absolute;
    bottom: 10%;
    text-align: right;
    right: -8px;
    width: 61% !important;
    transform: translateX(-170%);
    transition: all linear 300ms;
}

.main-member:hover .excerpt {
    transform: translateX(0);
}

.main-member .button-slanted {
    position: absolute;
    bottom: 30px;
    left: 21px;
    transition: all linear 200ms;
    transform: translateY(100px) skewX(20deg);
}

.main-member:hover .button-slanted {
    transform: translateY(0) skewX(20deg);
}
.aparat-side:last-child {
    margin-bottom: 0 !important;
}

.aparat-side {
    margin-bottom: 1rem;
}
div#aparat-link {
    position: absolute;
    left: 0;
    top: 5.5rem;
}

span.commnet-count {
    display: block;
    position: absolute;
    top: -2px;
    right: 0;
    left: 0;
    color: #fff;
    font-size: 15px;
    text-indent: 6px;
}
.avatar-wrp img {
    float: right;
    margin-left: 10px;
    border-radius: 50%;
}

.news-img-wrp:nth-child(1) img {
    border-top-left-radius: 25%;
    border-bottom-right-radius: 25%;
	    box-shadow: 0 0rem 1rem 1px rgb(0 0 0 / 38%) !important;

}
.news-img-wrp:nth-child(2) img {
    border-bottom-left-radius: 25%;
    border-top-right-radius: 25%;
	    box-shadow: 0 0rem 1rem 1px rgb(0 0 0 / 38%) !important;

}
.news-img-wrp:nth-child(3) img {
    border-top-right-radius: 25%;
    border-bottom-left-radius: 25%;
	    box-shadow: 0 0rem 1rem 1px rgb(0 0 0 / 38%) !important;

}
.news-img-wrp:nth-child(4) img {
    border-bottom-right-radius: 25%;
    border-top-left-radius: 25%;
	    box-shadow: 0 0rem 1rem 1px rgb(0 0 0 / 38%) !important;

}
.archive-header {
    height: 40vh;
    border-radius: 0.5rem;
	position:relative;
	padding:3rem;
}
.archive-header:before {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    border-radius: 0.5rem;
	z-index:1;
}
.single-content img {
    max-width: 100%;
    height: auto;
}
#carousel_3 .owl-item{
	float:left;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(0.1) translate3d(100%, 0, 0);
    transform: scale(0.1) translate3d(100%, 0, 0);
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  


#main-menu{
  position:fixed;
  top:0;
  right:0;
  left:0;
  bottom:0;
  background: #fff;
  padding:10px 0;
  display:block;
  z-index:10;
    transition: all linear 400ms;
   transform: translateX(100%);
}
#main-menu.active{
   transform: translateX(0%);
}
.main-menu-menu ul {
    padding: 1.5rem 0 0.7rem 0;
    border-bottom: 1px solid #ccc;
}

.main-menu-menu ul li {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: bolder;
    padding: 0 1.5rem;
}
.close-wrp {
    background: #ad7d54;
    display: block;
    position: fixed;
    right: 0;
    top: 3rem;
    width: 120px;
    height: 61px;
	z-index: 13;
}
.close-wrp .hamburger {
    top: 25px;
}
.close-wrp .hamburger-inner, .close-wrp .hamburger-inner::before, .close-wrp .hamburger-inner::after {
    background: #fff;
}
.close-wrp .hamburger--squeeze.is_active .hamburger-inner,.close-wrp  .hamburger--squeeze.is_active .hamburger-inner::before, .close-wrp .hamburger--squeeze.is_active .hamburger-inner::after{
	background: #fff;
}
.main-menu-second ul {
    margin-top: 3rem;
}

.main-menu-second ul li {
    padding-right: 1rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.main-menu-second ul li:before {content: "+";color: #000;background: #eaeaea;width: 25px;height: 25px;display: block;text-align: center;position: absolute;right: -1rem;line-height: 25px;border-radius: 5px;}

.main-menu-second {
    border-left: 2px solid #e4e4e4;
}
.main-menu-search {
    border-bottom: 1px solid #e4e4e4;
    width: 280px;
    padding: 0 10px;
    margin-top: 15px;
}

.main-menu-search button {
    display: inline-block;
    background: none;
    color: #ccc;
}

.main-menu-search input[type="text"] {
    width: 219px;
    height: 30px;
    vertical-align: text-bottom;
    color: #ccc;
}
.main-menu-bottom {
    position: absolute;
    bottom: 17px;
    left: 0;
    right: 0;
}

.menu-bottom-btn {
    border: 1px solid #ccc;
}
#carousel_3 .owl-dots {
    display: none;
}

.authorboxs img {
    border-radius: 50%;
    display: inline-block;
    margin-left: 15px;
}

.authorboxs-metas {
    display: inline-block;
    font-family: 'iranyekan';
    vertical-align: top;
}

.authorboxs-metas span {
    display: block;
    font-family: 'iranyekan';
}

.main-content {
    margin: 15px 15px 0 15px;
}
.content-summary {
    padding: 0;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 100%;
    
}
.content-head {
    background: #3b4b4b;
    border-radius: 15px;
    padding: 40px;
    width: 120%;
}
.content-image img {
    max-width: 100%;
    min-width: 250px;
    max-height:350px;
    position: relative;
    box-shadow: 0 5px 25px #3b4b4b9A;
    border-radius: 10px;
    margin-top: 25px;
}
.content-image {
    height: 200px;
    text-align: center;
}
.authorboxs {
    margin-bottom: 20px;
    display:none;
}
.authorboxs img {
    max-width: 100%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    max-height: 500px;
}
.authorboxs strong {
    margin-right: 5px;
    font-size: 14px;
    font-weight: 400;
}
.metainfos {
    margin-bottom: 10px;
    color: #9fa6a6;
}
.metainfos svg {
    fill: #9fa6a6;
    margin-left: 10px;
    width: 1.2em;
    position: relative;
    top: 5px;
}
.metainfos strong{
    font-weight:400;
}
.metainfos a {
    color: #5b6464;
    font-size: 14px;
    font-weight: 400;
}
.content-summary p {
    font-size: 18px;
    font-weight: 400;
    color: #5b6464;
    margin: 20px auto;
    line-height: 27px;
    padding-bottom: 50px;
    padding: 0 !important;
}
.content-summary p::after {
    content: '...';
}


.body-content {
    margin-top: 60px;
}
.body-content p {
    font-size: 16px;
    color: #5b6464;
    line-height: 30px;
}
.content-shortcode {
    color: #f55f50 !important;
}
.post-content-heading {
    font-weight: bold;
    font-size: 26px;
    color: #3b4b4b;
    margin-bottom: 25px;
}
.content-first-heading {
    margin-top: 25px;
}

.post-heading-pic {
    max-width: 100%;
}
.post-image-caption {
    font-style: italic;
    color: #5b6464;
    font-size: 14px;
    text-align: center;
    float: left;
    margin-top: 10px;
}

.post-shortcode {
    font-size: 20px;
    width: 100%;
    height: 100px;
    background: #f55f50;
    color: #ffffff;
    font-weight: bold;
    padding: 20px 30px 20px 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 15px auto;
}
.post-shortcode::before {
    content: 'â€œ';
    font-size: 150px;
    float: right;
    width: 50px;
    top: 5px;
    position: absolute;
    right: 25px;
}
.post-shortcode blockquote {
    float: left;
    width: calc(100% - 50px);
    font-size: 18px;
    font-weight: bold;
    line-height: 32px;
}

.related-links {
    margin-top: 5px;
}
.related-links strong {
    color: #9fa6a6;
    font-weight: normal;
}
.related-links-box {
    box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px 0;
    line-height: 30px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(225, 232, 232);
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.related-links-box a {
    display: inline-block;
    font-weight: normal;
    color: #5b6464;
    transition: 0.3s all ease-in;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -ms-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
}
.related-links-box a:hover {
    color: #f55f50;
}
.related-links-box a::before {
    content: '>';
    margin: auto 10px;
}
.post-tags {
    margin-top: 50px;
}
.post-tags a {
    color: #5b6464;
    background: #f4f8f8;
    margin: 5px 5px 0 0;
    padding: 5px 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
	    margin-bottom: 3px;
	   transition: .2s;
}
.post-tags a:hover {
    background-color: #e9eded;
    color: #374c52;
}
.post-meta-sharing {
    margin-top: 50px;
    width: 100%;
    margin-right: 15px;
    margin-left: 15px;
}
a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):hover {
    color: #5b6464;
    text-decoration: none;
}
.post-meta-area span {
    color: #9fa6a6;
}
.post-meta-sharing span:nth-child(n+1) {
    margin-right: 40px;
}
a.post-meta-area-comment span{
    margin-right: 0!important;
}
.post-meta-area span svg {
    width: 1.5em;
    margin-left: 7px;
    fill: #7f8484;
    height: auto;
    position: relative;
    top: 7px;
}
.sharing-box {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}
.sharing-box svg {
    fill: #7f8484;
    font-size: 25px;
    margin: auto 5px;
    width: 1em;
    height: auto;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}
.sharing-box a:hover svg{
    fill: #5b6464;
}
.sharing-box a {
    margin: auto 5px;
    float: left;

}
.print-href {
   
    margin-bottom: 5px!important;
}
.print-href span,
.print-href span svg {
    transition: 0.3s all ease-in !important;
    -webkit-transition: 0.3s all ease-in !important;
    -moz-transition: 0.3s all ease-in !important;
    -ms-transition: 0.3s all ease-in !important;
    -o-transition: 0.3s all ease-in !important;
}
.print-href:hover span {
    border-color: #4d5050;
}
.print-href:hover span svg{
    fill: #4d5050;
}

.print-href:hover span i {
    color: #ffffff;

}
a:hover .fa-twitter {
    color: #55acee !important;
}
a:hover .fa-whatsapp {
    color: #25D366 !important;
}
a:hover .fa-paper-plane {
    color: #0088cc !important;
}
.print-area {
    border: 1px solid rgb(91, 100, 100);
    color: #5b6464;
    border-radius: 21px;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    padding: 2px 12px;
    width: 95px;
    display: block;
    float: left;
    line-height: 30px;
    margin-right: 0 !important;

}
.print-area svg {
    fill: #5b6464c4;
    float: right;
    margin-right: 0px;
    margin-bottom: 0px;
    width: 1em;
    margin-left: 8px;
    margin-top: 5px;
    font-size: 20px;
	vertical-align: baseline;
}
.post-HR {
    margin: 50px auto;
    background-color: rgb(237, 237, 237);
    width: 100%;
    height: 1px;
}
.endpost-authorboxs {
    width: 100%;
    margin-bottom: 200px;
}
.endpost-authorboxs img {
    max-width: 100% !important;
}
.endpost-authorboxs-content {
    float: right;
    display: block;
    margin-right: 15px;
    max-width:85%;
}
.endpost-authorboxs-content strong {
    display: block;
    color: #5b6464;
}
.endpost-authorboxs-content p {
    display: inline;
    margin-bottom: 2px;
}
.endpost-authorboxs-content a {
    color: #9fa6a6;
}
.endpost-authorboxs-content p::before {
    content: none;
}
.endpost-authorboxs-content p::after {
    content: '.';
}
.authorPage {
    display: table;
    color: #f55f50 !important;
    border: 1px solid rgb(245, 95, 80);
    border-radius: 14px;
    padding: 3px 10px;
    font-weight: 400;
    font-size: 14px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.authorPage:hover {
    color: #ffffff !important;
    background-color: #f55f50;

}
.content-first-heading h2 {
    font-size: 1.4rem;
    font-weight: bolder;
}
.content-first-heading h3 {
    font-size: 1.2rem;
    font-weight: bolder;
}
.content-first-heading h4 {
    font-size: 1.1rem;
    font-weight: bolder;
}

blockquote {
    background: #f55f50;
    padding: 2rem 7rem 0.5rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 1rem;
    position: relative;
}

blockquote p {
    color: #fff !important;
    font-size: 1.2rem !important;
    line-height: 2rem !important;
    font-weight: 600;
}

blockquote::before {content: "\4e";font-family: 'hedayat';color: #fff;font-size: 4rem;position: absolute;top: 24px;right: 23px;}

.body-content p a {
    color: #e44636;
}
.endpost-authorboxs img {
    border-radius: 50%;
}