@font-face {
    font-family: "Vazir";
    src: url(../fonts/Vazir.eot);
    src: url(../fonts/Vazir.eot?#iefix) format("eot"), url(../fonts/Vazir.woff2) format("woff2"), url(../fonts/Vazir.woff) format("woff");
    font-weight: 400;
}

* {
    font-size: 16px;
    font-family: Vazir;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 2rem;
}

h1,
h2,
h1 strong {
    font-size: 20px;
    font-weight: 700;
}
.admin-menu{
	position:fixed;
	display:flex;
	justify-content:space-around;
	background-color:black;
	width:100%;
	top:0px;
}
.admin-menu a{
	text-decoration:none;
	color:white;
	font-size:14px;
}
#menu {
    background-color: #09c;
    border-radius: 10px;
    height: 50px;
    padding: 0 10px;
}

#menu ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: 100%;
}

#menu li {
    float: right;
    display: inline;
    position: relative;
    margin: 0 10px;
    padding: 0;
    list-style: none;
}

#menu a {
    display: block;
    line-height: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

#menu a.dropdown-arrow:after {
    content: "\25BE";
    margin-left: 5px;
}

#menu li a:hover {
    color: #09c;
    background: #f2f2f2;
}

#menu input {
    display: none;
    margin: 0;
    padding: 0;
    height: 50px;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

#menu label {
    display: none;
    line-height: 50px;
    text-align: right;
    position: absolute;
    right: 35px;
}

#menu label:before {
    font-size: 1.6em;
    content: "\2261";
    margin-left: 20px;
}

#menu li:hover {
    display: block;
}

.phone-mobile {
    display: none;
}

.heads {
    margin: 10px;
}

#searchform{
    margin-top: 3px;
    text-align: center;
}

#searchsubmit , #s {
    width: 70%;
    padding: 0;
    margin: 4px 0;
    height: 30px;
    background-color: #f8f9fb;
    border: none;
}

#s{
    border-radius: 0 8px 8px 0;
    padding-right: 20px;
}

#searchsubmit {
    width: 28%;
    background-color: #87ceeb;
    color: #fff;
    border-radius: 8px 0 0 8px;
}

#searchsubmit:hover {
    background-color: #20b2aa;
}

.logo,
.phone {
    max-width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img,
.phone img {
    width: 100%;
}

header {
    width: 95%;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    width: 93%;
    border-bottom: 1px grey solid;
    border-top: 1px grey solid;
    height: 60px;
    margin: 10px auto;
}

.wpt_breadcrumbs {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wpt_breadcrumbs a {
    text-decoration: none;
    margin: 0 15px;
}

main {
    width: 95%;
    border-radius: 15px;
    box-shadow: 0 5px 15px #999;
    padding: 5px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}
.parts{
    border-bottom:1px dashed grey;
    margin:25px 0px;
    padding:25px 0px;
    text-align:justify;
}
.parts h2 {
   
    text-align:center;
    margin:20px;
    padding:10px;
    background-color:skyblue;
    color: white;
    border-radius: 20px;
}
.parts h2 strong{
	font-weight:700;
	font-size:20px;
}

.parts h3{
    text-align:right;
    margin:20px;
    padding:10px;
    background-color:#f5f5f5;
    border-right: 8px solid green;
    border-bottom: 1px solid green;
    border-radius: 15px;
    
}


.parts a{
    display: inline-block;
    text-decoration: none;
    padding:3px;
    
}
.parts a:hover {
  background-color:green;
  color:white;
  border-radius:5px;
  border-bottom: none;
}
.parts ol li,.parts ul li{
  list-style:none;
  margin:10px;
  border: 1px solid rgba(238,238,238,.7);
  border-radius: 10px;
  box-shadow: inset 0 0 6px black;
  padding: 10px;
}



.parts ol li::before{
    content: "👈";
    font-size:20px;
    color:orange;
    padding:5px;    
}

.parts ul li::before{
    content: "\2611";
    font-size:30px;
    color:green;
    padding:5px;
    
}

blockquote {
    padding:2px;
    margin:2px 10px;
	border:1px solid orange;
	border-right:10px solid orange;
    border-radius:12px;
    text-align:right;
}

blockquote a{
    border-bottom:none;
}

.popup-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-image img {
    max-width: 100%;
    max-height: 100%;
}

.popup-image .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.popup-image .image-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}


.parts:nth-child(even) {
    background-color:#f8f9fb;
    border-radius:15px;
}

tr:nth-child(even){
    background-color:lightgrey;
    border-radius:15px;
    
}

.parts p{
    padding:15px;
}


td,tr{
    border:1px solid lightgrey;
    text-align:center;
    padding:2px;
}

tr a , td a{
  border-bottom:none;
    
}

aside {
    width: 25%;
    height: auto;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-box-shadow: 0 0 6px 1px rgba(224, 224, 224, 1);
    -moz-box-shadow: 0 0 6px 1px rgba(224, 224, 224, 1);
    box-shadow: 0 0 6px 1px rgba(224, 224, 224, 1);
}

aside a {
    text-decoration: none;
}

aside li {
    list-style-type: none;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fb;
    border-radius: 10px;
}

aside li:hover {
    background-color: #87ceeb;
}

.side_titr,
.strongs-title {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 12px 5%;
    background: #3e5062;
    color: #fff;
    font-size: 15px;
    border-radius: 10px;
}

.side_boxs {
    width: 100%;
    height: auto;
}

.side_boxs ul li {
    width: 90%;
    height: auto;
    padding: 12px 5%;
    line-height: 21px;
}

.side_boxs ul li img {
    width: 70px;
    height: 70px;
    float: right;
    margin: 6px 0 0 10px;
    border:1px solid lightgrey;
    border-radius:7px;
    background-color: #fff;
}

.side_boxs ul li a {
    color: #404040;
}

.strongs {
    padding: 10px;
}

.strongs strong {
    line-height: 60px;
    border: 1px solid lightgray;
    font-size: 14px;
    padding: 10px;
    margin: 10px 5px;
    border-radius: 5px;
}

article {
    width: 75%;
    margin: 10px;
    padding: 5px;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 20%;
    height: 150px;
    margin: 10px;
}

.thumbnail img {
    width: 90%;
    height: 150px;
    padding: 5px;
    border:1px solid lightgrey;
    border-radius:10px;
    background-color:#f8f9fb;
    
}

h1 {
    
    width: 100%;
    margin: 25px 10px;
    padding: 20px 10px;
    text-align: center;
}

.h2-expert {
    width: 100%;
    font-size: 16px;
    padding-right: 20px;
	
}

.hat {
    font-size: 40px;
    color: #000;
    opacity: 0.5;
    margin: 5px 10px;
}

hr {
    color: #000;
}

.expert {
    width: 75%;
    height: 150px;
    padding: 10px;
    margin: 10px;
    background-color: #f8f9fb;
    text-align: justify;
    border-radius: 10px;
}

.tel {
    width: 90%;
    position: relative;
    margin: 15px auto;
}

.tel img {
    width: 100%;
    height: 100%;
}

.tel p {
    position: absolute;
    top: 15%;
    left: 10%;
   
    text-align: center;
    color: white;
    font-size:18px;
    width: 100%;
}

.tel p::before{
    content:"برای مشاوره: "; 
    color: yellow;
    font-size:18px;
}

.content {
    text-align: justify;
    margin: 20px 0;
    padding: 10px;
}
.center{
    text-align:center;
}

.content a {
    text-decoration: none;
}

.mortabet {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
    width: 90%;
    height: auto;
    margin: 10px auto;
}

.related {
    background-color: #f4f4f4;
    height: 550px;
    margin: 25px 0;
}

.pmortabet {
    width: 100%;
    margin: 20px;
    height: 60px;
    text-align: center;
    font-size: 18px;
}

.boxmortabet {
    width: 23%;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 4px 6px lightgray;
    overflow: hidden;
    margin: auto;
    border-radius: 15px;
    padding: 15px;
    background-color: #fff;
}

.boxmortabet img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    border:1px solid lightgrey;
    background-color:#f8f9fb;
    
}
.p-relate{
    max-height: 180px;
    margin:0;
    overflow:hidden;
}
.p-relate p{
    font-size: 12px;
    text-align: justify;
    line-height: 1.3rem;
}

.related-a {
    display: block;
   
    text-decoration: none;
    margin:0;
}

.boxmortabet h3 {
    font-size: 16px;
    text-align: center;
}

.keys{
    display:none;
}
.comments-area strong{
	font-weight:normal;
}
.comments {
    width: 90%;
    height: auto;
    box-shadow: 2px 2px 4px 6px lightgray;
    margin: 30px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

ol,
.commentlist li {
    list-style-type: none;
}
.comments .commentlist{
    display:none;
    
}
.comments li{
    list-style-type: none;
    padding:15px;
}
.listcomment {
	width:80%;
    display: flex;
    justify-content: center;
    margin: 30px auto;
    text-align: justify;
    border: 1px solid lightgray;
    border-radius: 10px;
}
.parent{
	border-radius:15px;
	background-color: #f4f4f4;	
	margin:10px;
}

.listcomment li {
    padding: 10px;
    margin: 15px 10px;
}


#comment {
    width: 65%;
    float: left;
    max-height: 220px;
    border-radius: 10px;
    background-color: #f4f4f4;
    padding: 10px;
}
.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 10px;
    border-radius: 50%;
    background-color: #87CEEB; /* رنگ پس زمینه ابی اسمانی */
    color: white; /* رنگ متن سبز */
    text-decoration: none;
    width: 40px;
    height: 40px;
}

.page-numbers.current {
    background-color: #008000; /* رنگ پس زمینه سبز */
    color: #FFFFFF; /* رنگ متن سفید */
}



#author,
#email,
#submit {
    width: 30%;
    float: right;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    background-color: #f4f4f4;
}

#submit {
    background-color: #87ceeb;
    color: #fff;
}

#submit:hover {
    background-color: #fff;
    color: #87ceeb;
}

.comments::after {
    content: "";
    clear: both;
    display: block;
}

footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    background-color: #f4f4f4;
    padding: 30px;
}

footer p {
    text-align: justify;
}

.foots {
    box-shadow: 0 0 4px 5px grey;
    border-radius: 10px;
    margin: 20px;
    padding: 10px;
}

.foots p,
.foots li {
    font-size: 14px;
    padding: 10px;
}

.foots ul {
    padding: 10px;
}

.software{
	width:33%;
}
.footer-post-item a{
	display:flex;
	text-decoration:none;
	color:grey;
	align-items:center;
	box-shadow: inset 0 0 5px black;
	margin:3px;
	border-radius:8px;
	padding:3px;
	
}
.footer-post-item a:hover{
	background-color:skyblue;
}
.footer-post-item img{
	width:15%;
	height:15%;
	float:right;
	margin:3px;
	padding:3px;
	border-radius:8px;
}
.footer-post-item h4{
	font-size:16px;
	float:left;
	margin:3px;
	padding:3px;
}

.about-me {
    width: 33%;
}

.contact-me {
    width: 33%;
}

.copyright {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.copyright p {
    font-size: 14px;
}

footer li {
    list-style: none;
    border-bottom: 1px gray solid;
    padding: 5px;
}
.tick ,.green,.blue{
    font-size: 30px;
    color: red;
    font-weight: bold;
}

.green{
    color:green;
}
.blue{
    color:blue;
}
.number-red,.number-blue,.number-green{
    display:inline-block;
    min-width:30px;
    min-height:30px;
    border-radius:50%;
    text-align:center;
    color:white;
    background-color:red;
    font-size:18px;
}
.number-blue{
    background-color:blue;
}
.number-green{
    background-color:green;
}
section strong{
    font-weight:normal;
}

.mobile-menu {
    position: fixed;
    bottom: 40px;
    right: 0px;
    width: 100%;
    height: auto;
    display: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.mobile-menu-phone-p,
.mobile-menu-search {
    position: fixed;
    bottom: 40px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    display: none;
}

.block {
    display: flex;
}

.menu-right,
.menu-left {
    background-color: white;
    width: 50%;
    padding: 0 5px;
}
.menu-right {
    float: right;
}
.menu-left {
    float: left;
}

.foot-menu {
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    display: flex;
    justify-content: space-between;
    background-color: white;
    width: 100%;
    height: 40px;
    float: right;
    display: none;
}

.foot-menus {
    width: 25%;
    height: 40px;
	justify-content: center;
    color: black;
    font-size: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
	padding:10px;
}

.foot-menu-home a {
    color: black;
    font-size: 30px;
}
.foot-menu-search {
    font-size: 20px;
}
.mobile-menu li {
    padding: 10px;
    margin: 10px;
    font-size: 16px;
    border-radius: 7px;
    box-shadow: inset 0 0 10px black;
    list-style-type: none;
    color: black;
}
.mobile-menu a,
.foot-menu-home a {
    text-decoration: none;
    color: black;
}

.mobile-menu-phone-p-2 {
    width: 80%;
    background-color: white;
    border-radius: 15px;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    opacity: 1;
    padding: 10px;
    box-shadow: inset 0 0 10px black;
}
.mobile-menu-phone-p-2 p {
    display: flex;
    margin: auto;
    width: auto;
    padding: 20px 10px;
}
.number {
    font-size: 30px;
    text-align: center;
    box-shadow: 0 0 30px orange;
    border-radius: 10px;
    padding: 20px;
}
.p-2{
	font-size:23px;
	box-shadow: 0 0 20px green;
	text-align: center;
	border-radius: 10px;
    padding: 15px;
}

@media screen and (max-width: 800px) {
    #menu {
        position: relative;
    }

    #menu ul {
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 3;
        height: auto;
        display: none;
    }

    #menu li {
        display: block;
        float: none;
        width: auto;
    }

    #menu input,
    #menu label {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }

    #menu input {
        z-index: 4;
    }

    #menu input:checked + label {
        color: #000;
    }

    #menu input:checked + label:before {
        content: "\00d7";
    }

    #menu input:checked ~ ul {
        display: block;
    }
	.foot-menu {
        display: flex;
    }
    
    .parts img{
    width:96%;
}

    .ss-display-none {
        display: none;
    }

    .ss-display-block {
        display: block;
    }

    .ss-1-menu,
    .ss-1-content {
        width: 98%;
        display: block;
        margin: 15px auto;
        padding: 15px 5px;
        height: auto;
        
        
    }
    
    

    .ss-1-menu {
        text-align: center;
    }


    .ss-expert-img {
        width: 25%;
        padding: 0;
        margin: 0;
    }

    .ss-expert {
        width: 100%;
        padding: 10px;
        margin: 0;
        overflow: hidden;
        height:180px;
        
    }
    .hat{
        font-size:25px;
        margin-right:0;
    }
    .expert p {
        font-size: 12px;
        line-height:1.3rem;
        max-height:180px;
        
    }

    
    .content img ,.content table{
        width:90%;
        height:90%;
    }

    .ss-1-bread {
        width: 98%;
        text-align: justify;
        display: block;
        height: auto;
        margin: 0;
        padding: 0;
        font-size: 13px;
    }

    .ss-2-menu {
        width: 45%;
        margin: 7px;
        padding: 5px;
        overflow: hidden;
    }

    .ss-2-related {
        width: 47%;
        margin: 10px 1%;
        padding: 0;
        overflow: hidden;
        display: inline-block;
    }

    .ss-2-related img {
        height: 80%;
        width: 100%;
    }

    .ss-2-related p {
        padding: 5px;
    }

    .ss-2-flex {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        height: auto;
        margin: 10px auto;
        flex-wrap: wrap;
        padding: 5px;
    }
    
    

    .copyright {
        width: 100%;
        margin: auto;
    }

    #author,
    #email,
    #submit,
    #comment {
        width: 100%;
        display: block;
    }

    .tel p {
        font-size: 10px;
        top: 0px;
        right:0px;
       
    }
    .related{
        display:none;
    }
 

.tel p::before{
    content:"";
}
}

/* استایل ریسپانسیو برای ویدئوهای وردپرس */
.wp-video-shortcode,.wp-video,video {
  max-width: 100%;
  height: auto;
	margin:auto;
  width: auto\9; /* اضافه کردن کد اصلاحی برای IE9 */
}

