@import "reset.css";
@import "font.css";
@import "icons.css";

/**
--------------------------------------------------------------------------------------
------------------------ ************ Public Css ************ ------------------------
--------------------------------------------------------------------------------------
**/

html {
    scroll-behavior: smooth;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

#main_page .container {
    width: 970px;
}

.container-fluid {
    width: 100%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

a {
    text-decoration: none;
    color: #000;
}

body {
    font-family: Estedad;
    background-color: #ffffff;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/**
-------------------------------------------------------------------
--------------- ************ Main Page ************ ---------------
-------------------------------------------------------------------
**/

/**
----------------------------------------
-------- ******* Header ******* --------
----------------------------------------
**/

#header {
    padding: 20px 0 15px 0;
}

#header > .container {
    width: unset;
    display: table;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    float: right;
}

.logo img {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
}

.main_menu {
    float: right;
    margin: 0 50px 0 0;
}

.main_menu ul li {
    float: right;
    padding: 4px 20px 10px 20px;
    position: relative;
    cursor: pointer;
    font-size: 15px;
}

.main_menu ul li:hover, .main_menu ul li a:hover {
    color: orange;
}

.main_menu ul li ul.sub_menu {
    position: absolute;
    width: 200px;
    background: white;
    top: 40px;
    right: 5px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    border-radius: 5px;
    padding: 15px;
    display: none;
    z-index: 9999;
}

ul.sub_menu li {
    padding: 3px 0 !important;
    display: block;
    float: unset;
    font-size: 14px;
    border-bottom: 1px solid #f6f6f6;
}

ul.sub_menu li:last-child {
    border-bottom: unset;
}

.main_menu ul li:hover ul.sub_menu {
    display: block;
}

/**
----------------------------------------
-------- ******* Header ******* --------
----------------------------------------
**/

#top_section {
    background-color: #f6f6f6;
    padding: 20px 0 0 0;
}

#top_section > .container {
    display: table;
    width: unset;
}

.top_section_image {
    width: 300px;
    float: right;
}

.top_section_detail {
    width: calc(100% - 300px);
    float: left;
    padding: 40px 100px 0 0;
}

.top_section_title {
    font-size: 30px;
    font-weight: 700;
    color: #2e2e2e;
}

.top_section_bio {
    margin: 10px 0 0 0;
}

.top_section_cta {
    float: right;
}

.reserve_cta {
    margin: 0 0 0 15px;
}

.top_section_cta a {
    background: #af4b29;
    color: #ffffff;
    font-size: 14px;
    padding: 5px 20px;
    display: table;
    border-radius: 4px;
    margin: 20px 0 0 0;
    transition: 0.3s ease;
}

.top_section_cta a:hover {
    background: #ac3c16;
}

.reserve_event a {
    background: #303a7f;
    animation: blinkingText 1s infinite;
}

@keyframes blinkingText {
    0% {
        background-color: #303a7f;
    }
    49% {
        background-color: #303a7f;
    }
    60% {
        background-color: #0017b9;
    }
    99% {
        background-color: #0017b9;
    }
    100% {
        background-color: #303a7f;
    }
}

.main_title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.main_excpert {
    font-size: 14px;
    text-align: center;
    color: #878787;
    margin: 0 0 20px 0;
}

#services {
    padding: 50px 0;
}

.row_services {
    margin: 0 -10px;
}

.main_col_service {
    width: 33.33%;
    float: right;
    padding: 10px;
}

.main_box_service {
    border-radius: 5px 15px 5px 15px;
    overflow: hidden;
    position: relative;
}

.main_box_service img {
    transition: 0.5s ease;
}

.main_box_service:hover img {
    transform: scale(1.1);
}

.main_title_service {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgb(0 0 0 / 75%);
    color: #ffffff;
    font-size: 15px;
    padding: 10px;
    font-weight: 500;
    transition: 0.5s ease;
}

.main_box_service:hover .main_title_service {
    background-color: rgb(49 59 128 / 80%);
}

.col_service {
    width: 16.66%;
    float: right;
    padding: 10px;
}

.box_service {
    border-radius: 5px 15px 5px 15px;
    overflow: hidden;
    position: relative;
    height: 110px;
    background: #e4e4e4;
}

.title_service {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgb(255 255 255 / 75%);
    color: #000000;
    font-size: 12px;
    padding: 2px;
    font-weight: 600;
    transition: 0.3s ease;
}

.box_service:hover .title_service {
    background-color: rgb(255 165 0 / 75%);
    color: #ffffff;
    text-shadow: 0 0 5px hsl(39deg 100% 36%);
}

#events {
    padding: 50px 0;
}

.col_event {
    width: 33.33%;
    float: right;
    padding: 10px;
}

.img_event img {
    border-radius: 5px;
}

.title_event {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
}

.date_event {
    font-size: 13px;
    color: #9f9f9f;
    line-height: 22px;
}

#blog {
    padding: 50px 0;
}

.col_blog {
    width: 25%;
    float: right;
    padding: 10px;
}

.img_blog img {
    border-radius: 5px;
}

.title_blog {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
}

.excerpt_blog {
    font-size: 13px;
    color: #9f9f9f;
    line-height: 22px;
}

#footer {
    padding: 5px 0 30px 0;
}

.footer_text {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: #b9b9b9;
    margin: 4px 0;
}

.footer_text a {
    font-weight: 500;
    color: #b9b9b9;
}

/**
-------------------------------------------------------------------
--------------- ************ Main Page ************ ---------------
-------------------------------------------------------------------
**/

/**
-------------------------------------------------------------------
--------------- ************ From Page ************ ---------------
-------------------------------------------------------------------
**/

#main_form {
    padding: 50px 0;
}

.form_container {
    width: 560px;
}

.about_meeting {
    margin: 20px 0;
}

.title_about_meeting {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.about_meeting ul li {
    font-size: 15px;
    padding: 1px 0;
    list-style: disc;
    list-style-position: inside;
}

.title_form {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.row_form {
    padding: 6px 0;
}

.row_form label {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin: 0 0 3px 0;
}

.row_form input, .row_form select {
    width: 100%;
    font-family: Estedad;
    outline: none;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    background: #f6f6f6;
    font-size: 15px;
    padding: 6px 10px;
}

.row_form textarea {
    width: 100%;
    font-family: Estedad;
    outline: none;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    background: #f6f6f6;
    font-size: 15px;
    padding: 6px 10px;
    min-height: 150px;
}

.row_form button {
    font-family: Estedad;
    outline: none;
    border: 1px solid #e89600;
    border-radius: 3px;
    background: orange;
    font-size: 15px;
    padding: 6px 30px;
    display: table;
    margin: 0 auto;
    color: #fff;
}

.row_form input:focus,
.row_form textarea:focus {
    border: 1px solid #e89600;
}

.row_form button:hover {
    background: #e89600;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.sign {
    width: 200px;
    margin: 0 auto 20px auto;
}

.message {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.message_after_reserve {
    text-align: center;
}

.button_telegram a {
    background-color: #2593d3;
    color: #ffffff;
    font-size: 15px;
    padding: 10px 20px;
    display: table;
    margin: 15px auto 5px auto;
    border-radius: 3px;
}

.return_home {
    text-align: center;
    font-size: 15px;
    margin: 10px 0 0 0;
}

.return_home a {
    color: #0066ff;
}

.refid {
    text-align: center;
    font-size: 15px;
}

.error_message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin: 0 0 5px 0;
}

.workshop_page {
    width: 550px;
}

.content_of_workshop p {
    font-size: 15px;
    font-weight: 300;
    text-align: justify;
    margin: 0 0 10px 0;
}

.price_of_workshop {
    font-size: 14px;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #565656;
}

.price_of_workshop span {
    color: red;
    text-decoration: line-through;
    margin: 0 5px;
}

.invitation_image {
    margin: 20px auto;
    border: 2px solid #f7ebe3;
    padding: 10px;
    border-radius: 5px;
}

.invitation_image img {
    border-radius: 5px;
}

/**
-------------------------------------------------------------------
--------------- ************ From Page ************ ---------------
-------------------------------------------------------------------
**/

/**
--------------------------------------------------------------
--------------- ************ Blog ************ ---------------
--------------------------------------------------------------
**/

.header_blog {
    border-bottom: 2px solid #f1f1f1;
    padding: 0 0 10px 0;
}

.header_blog .avatar {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    float: right;
}

.header_blog .content {
    width: calc(100% - 80px);
    min-height: auto;
    padding: 0 30px 0 0;
    float: right;
}

.header_blog .name {
    font-size: 18px;
    font-weight: 700;
}

.header_blog .bio {
    font-size: 13px;
    margin: 5px 0 15px 0;
}

.post_row {
    margin: 30px 0;
    border-bottom: 1px solid rgb(235, 235, 235);
}

.post_row:last-child {
    border-bottom: unset;
}

.post_image {
    float: right;
    width: 350px;
}

.page_image_thumbnail {
    float: unset;
    width: 100%;
}

.page_image_thumbnail img {
    border-radius: 5px;
}

.post_detail_left {
    float: right;
    width: calc(100% - 350px);
    padding: 0 30px 0 0;
}

.page_title {
    padding: 20px 0 0 0;
    font-size: 25px;
    font-weight: 600;
}

.page_title a {
    font-size: 25px;
    font-weight: 600;
}

.page_content {
    line-height: 28px;
    margin: 20px 0;
    font-weight: 300;
    font-size: 17px;
    color: #515151;
    text-align: justify;
}

.page_content h1 {
    font-size: 22px;
}

.page_content h2 {
    font-size: 20px;
}

.page_content h3 {
    font-size: 18px;
}

.page_content h4 {
    font-size: 16px;
}

.page_content h5 {
    font-size: 14px;
}

.page_content h6 {
    font-size: 12px;
}

.page_content a {
    color: #3030ff;
}

.page_content p {
    font-weight: 300;
    margin-bottom: 10px;
}

.page_content ul li {
    list-style: disc;
    list-style-position: inside;
}

.page_content ol li {
    list-style-position: inside;
}

.page_content img {
    width: auto !important;
    margin: 20px 0;
    border-radius: 5px;
}

.page_content a img {
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

.alignleft {
    float: left;
    margin: 0 15px 15px 0 !important;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.alignright {
    float: right;
    margin: 0 0 15px 15px !important;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.page_share {
    margin: 30px 0;
}

.page-share-title {
    font-size: 15px;
    font-weight: 500;
    color: #676767;
    padding: 6px 0;
    margin-left: 8px;
}

.page-share-item {
    margin: 0 4px;
}

.page-share-item a {
    background-color: #f3f3f3;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    display: inline-flex;
    transition: 0.2s ease;
    color: #000000;
    width: 35px;
    height: 35px;
}

.page-share-item a:hover {
    border: 1px solid #515151;
    color: #515151;
    background-color: #fff;
}

.page-share-item i {
    padding: 7px 8px;
    display: inline-block;
}

.readMore {
    padding-top: 6px;
}

.readMore a {
    border-radius: 40px;
    font-size: 14px;
    padding: 7px 20px;
    border: 1px solid orange;
    background-color: #fff;
    color: orange;
    transition: 0.2s ease-in;
}

.readMore a:hover {
    background-color: orange;
    color: #fff;
}

.blog-meta {
    margin: 20px 0 0 0;
}

.blog-meta li {
    font-size: 13px;
    color: #909090;
}

.blog-meta i {
    font-size: 17px;
    margin-left: 6px;
    display: inline-flex;
}

.blog-category {
    margin-left: 25px;
}

.blog-category-value {
    margin-right: 5px;
}

.blog-category-value a {
    color: #909090;
    transition: 0.2s ease;
}

.blog-category-value a:hover {
    color: #3c629c;
}

/**
--------------------------------------------------------------
--------------- ************ Blog ************ ---------------
--------------------------------------------------------------
**/

/**
------------------------------------------------------------------
--------------- ************ Comments ************ ---------------
------------------------------------------------------------------
**/

.title-comment {
    font-size: 26px;
    font-weight: 600;
}

#respond {
    position: relative;
    margin: 0 -10px;
}

.comment-author img {
    float: right;
    overflow: hidden;
    border-radius: 100%;
    width: 45px;
    height: 45px;
}

.comment-author cite.fn {
    font-style: inherit;
    font-size: 14px;
    padding-right: 15px;
    padding-top: 5px;
    display: table;
    font-weight: 700;
    color: #071d56;
}

.comment-author span.says {
    display: none;
}

.commentmetadata a {
    font-size: 12px;
    color: gray;
    padding-right: 10px;
}

.comment-body {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.comment-author-nemoudar .comment-body {
    background: #f9f9f9 !important;
    border: 1px solid #ebebeb !important;
    box-shadow: 1px 1px 10px #dbdbdb !important;
}

.wpb_animate_when_almost_visible {
    opacity: 1 !important;
}

.subscription-form {
    width: 500px !important;
}

#footer .subscription-form {
    width: 100% !important;
}

ul.children .comment-body {
    position: relative;
}

.comment-body p {
    padding-right: 60px;
    font-size: 14px;
    font-weight: 300;
    padding-top: 5px;
    color: #000000;
}

.reply {
    text-align: left;
    line-height: 15px;
}

.comment-reply-link {
    color: #071d56;
    font-size: 14px;
    font-weight: 300;
}

.single-comment ul.children {
    padding-right: 30px;
}

.form-submit {
    text-align: left;
}

.logged-in-as {
    margin: 10px 10px 0 10px;
}

.logged-in-as a {
    font-size: 13px;
    font-weight: 300;
    color: #515151;
}

.logged-in-as a:last-child {
    color: #3030ff;
    margin-right: 15px;
}

#cancel-comment-reply-link {
    padding: 3px 10px 4px;
    color: #fff;
    background: #071d56;
    border-radius: 5px;
    font-weight: 300;
    margin-top: 10px;
    margin-right: 10px;
}

ul.children {
    padding-right: 40px;
}

li.comment {
    list-style: none;
    padding: 10px 15px;
}

ul.children li.comment {
    padding: 0;
}

.content-comments {
    padding: 20px 40px 20px 50px;
}

.comment-awaiting-moderation {
    font-style: inherit;
    font-size: 13px;
    color: #008103;
    font-weight: 300;
    padding-right: 15px;
}

.comment-reply-title {
    font-size: 15px;
    font-weight: 300;
    padding: 10px 15px;
}

.inputSpacing {
    padding: 10px;
}

.colm6 {
    width: 50%;
}

.col50 label {
    font-size: 14px;
    color: #515151;
}

.col-comment label {
    font-size: 14px;
    color: #515151;
}

.col-comment {
    padding: 10px;
}

.image-post img {
    width: 100%;
}

.comment-date {
    font-size: 12px;
    color: #9b9b9b;
    font-weight: 300;
    position: absolute;
    left: 10px;
    top: 10px;
}

.comment-text {
    border-radius: 5px;
    border: 1px solid rgb(235, 235, 235);
    background-color: rgb(248, 247, 251);
    padding: 10px 8px;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 300;
    margin-top: 6px;
}

.textarea-height {
    height: 150px;
}

.buttonSpacing {
    float: unset !important;
}

.buttonSpacing button {
    margin: 30px auto 30px auto;
    display: table;
    background: #00b749;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 10px 35px;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    font-family: Estedad;
    box-shadow: 0 1px 5px 1px #dddddd;
}

.buttonSpacing button:hover {
    background: #00923a;
}

.comment-form label {
    font-size: 14px !important;
    color: #515151 !important;
}

.comment-form input {
    border-radius: 5px !important;
    border: 1px solid rgb(235, 235, 235) !important;
    background-color: #fff !important;
    padding: 10px 8px !important;
    width: 100% !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    margin-top: 5px !important;
    margin-left: 8px !important;
}

.comment-form textarea {
    border-radius: 5px !important;
    border: 1px solid rgb(235, 235, 235) !important;
    background-color: #fff !important;
    padding: 10px 8px !important;
    width: 100% !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    margin-top: 6px !important;
    height: 150px !important;
}

.comment-form input[type=submit] {
    margin: 0 auto !important;
    display: table !important;
    background: #00b749 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #fff !important;
    padding: 10px 35px !important;
    border-radius: 5px !important;
    transition: 0.3s !important;
    border: none !important;
    width: auto !important;
    font-family: Estedad !important;
    box-shadow: 0 1px 5px 1px #dddddd !important;
}

.comment-form-cookies-consent, .comment-form-comment-subscribe {
    display: none;
}

/**
------------------------------------------------------------------
--------------- ************ Comments ************ ---------------
------------------------------------------------------------------
**/
/**
-------------------------------------------------------------------
------------ ************ همکاری با کارگاه ************ ------------
-------------------------------------------------------------------
**/
.collaboration_first_section {
    margin: 20px 0 0 0;
}

.collaboration_first_section_col {
    float: right;
    width: 50%;
}

.collaboration_first_section_col img {
    border-radius: 10px;
}

.collaboration_form {
    padding: 0 0 0 30px;
}

/**
-------------------------------------------------------------------
------------ ************ همکاری با کارگاه ************ ------------
-------------------------------------------------------------------
**/
@media only screen and (max-width: 599px) {
    .container, .workshop_page {
        width: 100% !important;
    }

    #main_form {
        padding: 30px 20px;
    }

    /*------------------------- BLOG -------------------------*/
    #main_page {
        padding: 0 10px;
    }

    .blog_title:before {
        width: 25px;
        height: 38px;
        margin: 0 0 0 7px;
    }

    .blog_title {
        font-size: 20px;
    }

    .web_app_link {
        font-size: 14px;
        padding: 6px 15px;
        margin: 0;
    }

    .page_share > .pull-left,
    .page_share > .pull-right {
        float: unset;
    }

    .page-share-title {
        float: unset;
        text-align: center;
    }

    .page_share ul {
        display: table;
        margin: 0 auto;
    }

    .readMore {
        margin: 20px auto 0 auto;
        display: table;
    }

    .footer_menu ul li {
        float: unset;
        text-align: center;
    }

    .colm6 {
        width: 100%;
    }

    .page_title {
        font-size: 21px;
    }

    /*------------------------- BLOG -------------------------*/
    .container {
        padding: 0 10px;
    }

    .top_section_detail {
        width: 100%;
        padding: 0 0 40px 0;
        text-align: center;
    }

    .top_section_cta a {
        margin: 20px auto 0 auto;
    }

    .top_section_image {
        margin: 0 auto;
        float: unset;
    }

    .logo {
        float: unset;
        margin: 0 auto;
        display: table;
    }

    .main_menu {
        float: unset;
        margin: 10px auto 0 auto;
        display: table;
    }

    .main_menu ul li {
        padding: 0 5px;
        font-size: 14px;
    }

    .main_col_service, .col_event, .col_blog,
    .post_image {
        width: 100%;
    }

    .col_service {
        width: 50%;
    }

    .box_service {
        height: 105px;
    }

    .post_detail_left {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .top_section_cta {
        float: unset;
        margin: 0 !important;
    }

    .reserve_event a {
        margin: 12px auto 0 auto;
    }

    .collaboration_first_section_col {
        width: 100%;
    }

    .collaboration_form {
        padding: 0 0 20px 0;
    }
}
