@charset "utf-8";
/**css reset*/

html, body, div, input, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    transition: all 0.4s ease-in-out;
    font-family: IRANSans;
}

body {
    direction: rtl;
    font-family: IRANSans;
    font-size: 10pt;
    color: #eeeeee;
    background-color: #ecf0f1;
    transition: all 0.4s ease-in-out;
    box-sizing: border-box;
    cursor: context-menu;
}

hr {
    background-image: linear-gradient(to left, transparent, #ff6d46, transparent);
    border: 0;
    height: 1px;
    margin: 10px 0 20px 0;
    box-sizing: content-box;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #eeeeee;
}

i {
    vertical-align: middle;
}

.clear {
    clear: both;
}

.off {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

.pointer {
    cursor: pointer;
}

.w50 {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 5px);
}

/********************************** ANIMATION *****************************************/
.animation_set {
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.animation_start {
    animation-play-state: running !important;
}

.animation_delay_1 {
    animation-delay: 0.5s;
}

.animation_delay_2 {
    animation-delay: 1.0s;
}

.animation_delay_3 {
    animation-delay: 1.5s;
}

.animation_delay_4 {
    animation-delay: 2.0s;
}

.animation_delay_5 {
    animation-delay: 2.5s;
}

.animation_delay_6 {
    animation-delay: 3.0s;
}

.animation_delay_7 {
    animation-delay: 3.5s;
}

.animation_delay_8 {
    animation-delay: 4.0s;
}

.animation_fade_in {
    opacity: 0.0;
    animation-name: anim_fade_in;
    animation-play-state: paused;
}

@keyframes anim_fade_in {
    0% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.animation_fade_in_up {
    position: relative;
    opacity: 0.0;
    top: 100px;
    animation-name: anim_fade_in_up;
    animation-play-state: paused;
}

@keyframes anim_fade_in_up {
    0% {
        opacity: 0.0;
        top: 100px;
    }
    100% {
        opacity: 1.0;
        top: 0;
    }
}

.animation_fade_zoom {
    transform: scale(2.0, 2.0);
    opacity: 0.0;
    animation-name: anim_fade_zoom;
    animation-play-state: paused;
}

@keyframes anim_fade_zoom {
    0% {
        transform: scale(2.0, 2.0);
        opacity: 0.0;
    }
    100% {
        transform: scale(1.0, 1.0);
        opacity: 1.0;
    }
}

.animation_border_from_left {
    margin-right: 100%;
    width: 0;
    animation-name: anim_border_from_left;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_left {
    0% {
        margin-right: 100%;
        width: 0;
    }
    100% {
        margin-right: 0;
        width: 100%;
    }
}

.animation_border_from_top {
    height: 0;
    animation-name: anim_border_from_top;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_top {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.animation_border_from_right {
    width: 0;
    animation-name: anim_border_from_right;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_right {
    0% {
        width: 0;
    }
    100% {
        width: 100%;

    }
}

.animation_border_from_bottom {
    height: 0;
    animation-name: anim_border_from_bottom;
    animation-duration: 0.5s;
    animation-play-state: paused;
}

@keyframes anim_border_from_bottom {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.animation_width_main {
    width: 100%;
    right: 0;
    height: 100vh;
    overflow: hidden;
    animation-name: anim_width_main;
    animation-play-state: paused;
}

@keyframes anim_width_main {
    0% {
        width: 100%;
        right: 0;
        height: 100vh;
        overflow: hidden;
    }
    100% {
        width: calc(100% - 340px);
        right: 60px;
        height: auto;
        overflow: auto;
    }
}

@keyframes anim_width_main_res {
    0% {
        width: 100%;
        right: 0;
        height: 100vh;
        overflow: hidden;
    }
    100% {
        width: calc(100% - 60px);
        right: 60px;
        height: auto;
        overflow: auto;
    }
}

.animation_width_menu {
    width: 0;
    animation-name: anim_width_menu;
    animation-play-state: paused;
}

@keyframes anim_width_menu {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

.animation_width_call {
    width: 0;
    animation-name: anim_width_call;
    animation-play-state: paused;
}

@keyframes anim_width_call {
    0% {
        width: 0;
    }
    100% {
        width: 280px;
    }
}

/******************************  MENU SIDE  ***********************************/
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 15px 0 0 0;
    box-sizing: border-box;
    overflow: auto;
    z-index: 999;
    opacity: 1;
    background: #c7004cbb;
}

.side-menu .fa-times {
    display: inline-block;
    cursor: pointer;
    font-size: 14pt;
    margin: 0 15px;
    vertical-align: top;
    text-align: right;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    padding: 6px 9px 0 0;
    box-sizing: border-box;
    float: left;
}

.side-menu .call_holder {
    text-align: center;
}

.menu_holder {
    display: block;
    /*width: 60px;*/
    height: 100vh;
    background: #444444;
    overflow: hidden;
    text-align: center;
    padding-top: calc(50vh - 175px);
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
}

.menu_holder a {
    display: block;
    color: #eeeeee;
    font-size: 20px;
    padding: 20px 0;
    height: 70px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 #FFAAAA;
    transition: all 0.8s ease-in-out;
}

.menu_holder a:hover {
    transition: all 0.8s ease-in-out;
    box-shadow: inset -80px 0 0 #C7004C;
}

.menu_holder .selected {
    background: #C7004C;
    cursor: context-menu;
}

.menu_holder .bar {
    margin-bottom: 40px;
}

.menu_holder .open_contact {
    display: none;
}

/******************************  MAIN HOLDER  ***********************************/

.main_holder {
    display: block;
    /*width: calc(100% - 340px);*/
    /*overflow: auto;*/
    position: absolute;
    top: 0;
    /*right: 60px;*/
}

.main_holder .home {
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main_holder .home .main_img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.background {
    display: block;
    width: calc(70% - 10px);
    height: 100vh;
    background: #C7004C99;
    position: relative;
    top: -100vh;
    float: left;
}

.background .main_title_holder {
    position: relative;
    text-align: center;
    top: 30%;
    right: -35px;
    width: calc(100% - 100px);
    height: 224px;
}

.background .main_title {
    display: inline-block;
    position: relative;
    color: #eeeeee;
    /*border: 3px solid #eeeeee;*/
    width: calc(100% - 15px);
    height: 100%;
    padding: 40px 5px 20px 5px;
    box-sizing: border-box;
}

.border_top,
.border_bottom {
    display: block;
    height: 3px;
    background: #eeeeee;
}

.border_right,
.border_left {
    display: inline-block;
    width: 3px;
    background: #eeeeee;
}

.border_right {
    vertical-align: top;
}

.border_left {
    vertical-align: bottom;
}


.introduce .background {
    width: 100%;
}

.introduce .back_intro_img .background .main_title_holder {
    position: relative;
    text-align: center;
    top: 35%;
    right: 50px;
    height: 170px;
}

.experience .back_intro_img .background .main_title {
    color: #eeeeee;
    /*border: 3px solid #eeeeee;*/
    width: 400px;
    padding: 40px 5px 20px 5px;
}

.background .main_title .site_title {
    width: calc(100% - 35px);
    margin-right: 35px;
}

.introduce .back_intro_img .background .main_title .site_title {
    width: 100%;
    text-align: center;
    margin: auto;
}

.background .main_title .site_title span {
    display: inline-block;
    height: 60px;
    font-size: 12pt;
    font-weight: 600;
}

.background .main_title .site_title i {
    margin: 0 5px;
    font-size: 8px;
}

.background .main_title .site_title .about {
    display: inline-block;
    font-size: 10pt;
    margin-top: 25px;
}

.background .main_title .side_title {
    width: 47px;
    background: #eeeeee;
    float: right;
}

.background .main_title .side_title span {
    position: absolute;
    transform: rotate(-90deg);
    color: #444444;
    top: 97px;
    right: -104px;
    background: aliceblue;
    padding: 5px 15px 5px 16px;
    opacity: 0.9;
}

.intro_title {
    width: calc(100% - 100px);
    margin: 60px auto;
}

.intro_title i {
    display: inline-block;
    width: 30px;
    vertical-align: top;
    color: #928f8f;
    margin-top: 4px;
    font-size: 12pt;
}

.intro_title .title_left {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    text-align: justify;
    line-height: 2;

}

.intro_title .title_left span {
    display: block;
    font-weight: lighter;
    margin-bottom: 5px;
}

.intro_title .title_left .title_bold {
    font-weight: 600;
    margin-bottom: 10px;
}

.intro_title .title_left .title_english {
    text-align: left;
}

.call_holder {
    display: block;
    /*width: 280px;*/
    height: 100vh;
    background: #C7004C;
    overflow: auto;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
}

.call_holder_width {
    width: 280px;
}

.call_holder_light {
    background: #eeeeee;
}

.call_holder .tel,
.side-menu .tel {
    display: block;
    text-align: center;
}

.call_holder .title,
.side-menu .title {
    display: block;
    margin: 30px 0;
    font-weight: 600;
    color: #eeeeee;
}

.call_holder_light .title {
    color: #444444;
}

.call_holder .input,
.side-menu .input {
    display: block;
    border: none;
    border-bottom: 1px solid #FFAAAA;
    background: none;
    width: 200px;
    padding: 5px;
    box-sizing: border-box;
    direction: ltr;
    color: #eeeeee;
    margin: 0 auto;
}

.call_holder_light .input {
    border-bottom: 1px solid #959697;
    background: #eeeeee;
    color: #444444;
}

.call_holder .input:focus,
.side-menu .input:focus {
    border-bottom: 1px solid #eeeeee;
}

.call_holder_light .input:focus {
    border-bottom: 1px solid #444444;
}

.call_holder .btn_call,
.side-menu .btn_call {
    display: inline-block;
    width: 200px;
    text-align: center;
    margin: 30px auto 30px auto;
}

.call_holder .btn_call .btn_icon,
.side-menu .btn_call .btn_icon {
    width: 50px;
    background: #FFAAAA;
    float: right;
    padding: 10px 0;
    color: #C7004C;
    font-size: 13px;
    box-sizing: border-box;
}

.call_holder_light .btn_call .btn_icon {
    background: #959697;
    color: #444444;
}

.call_holder .btn_call .btn_title,
.side-menu .btn_call .btn_title {
    width: calc(100% - 55px);
    background: #444444;
    float: right;
    padding: 10px 0;
    color: #eeeeee;
    border-right: 2px solid #444444;
    box-shadow: inset 0 0 0 #C7004C;
    transition: all 1s ease-in-out;
}

.call_holder_light .btn_call .btn_title {
    background: #C7004C;
    color: #eeeeee;
    border-right: 2px solid #C7004C;
    box-shadow: inset 0 0 0 #FFAAAA;
}

.call_holder .btn_call .btn_title:hover,
.side-menu .btn_call .btn_title:hover {
    background: #FFAAAA;
    color: #C7004C;
    border-right: 2px solid #C7004C;
    box-shadow: inset -200px 0 0 #FFAAAA;
}

.call_holder_light .btn_call .btn_title:hover {
    background: #444444;
    color: #eeeeee;
    border-right: 2px solid #eeeeee;
    box-shadow: inset -200px 0 0 #444444;
}

.call_holder .social,
.side-menu .social {
    display: block;
    text-align: center;
}

.call_holder .social .title,
.side-menu .social .title {
    display: inline-block;
    margin: 50px 0 20px 0;
}

.call_holder .social .social_icons,
.side-menu .social .social_icons {
    display: block;
    font-size: 20px;
    margin: 5px;
}

.call_holder .social .social_icons i,
.side-menu .social .social_icons i {
    padding: 0 10px;
    color: #ededed;
}

.call_holder .social .social_icons i:hover,
.side-menu .social .social_icons i:hover {
    color: #FFAAAA;
}

.call_holder_light .social .social_icons i {
    color: #444444;
}

.call_holder_light .social .social_icons i:hover {
    color: #C7004C;
}

.call_holder .phone,
.side-menu .phone {
    margin: 40px 0;
}

.call_holder .phone a,
.side-menu .phone a {
    display: block;
    margin: 15px 0;
    color: #ededed;
    text-decoration: none;
}

.call_holder .phone a:hover,
.side-menu .phone a:hover {
    color: #FFAAAA;
}

.call_holder_light .phone a {
    color: #444444;
}

.call_holder_light .phone a:hover {
    color: #C7004C;
}

.call_holder .phone i,
.side-menu .phone i {
    margin: 0 5px;
    color: #FFAAAA;
}

.call_holder_light .phone i {
    color: #C7004C;
}

.call_holder .copyright,
.side-menu .copyright {
    display: block;
    width: 280px;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    background: #9c033e;
    font-size: 8pt;
    color: #FFAAAA;
}

.call_holder_light .copyright {
    background: #dedddd;
    color: #444444;
}

.main_holder .introduce {
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #575656;
}

.main_holder .introduce .back_intro_img {
    display: block;
    width: 50%;
    height: 100vh;
    float: right;
}

.main_holder .introduce .introduce_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_holder .introduce .background_intro {
    width: 50%;
    height: 100vh;
    background: #575656;
    float: right;
}

.main_holder .experience {
    position: relative;
    background: #ffffff;
    height: 100vh;
}

.main_holder .experience .background_intro {
    width: calc(100% - 350px);
    height: auto;
    background: #ffffff;
    float: right;
    color: #444444;
}

.main_holder .experience .ex_images {
    width: 350px;
    background: #ffffff;
    float: right;
    margin-top: 50px;
}

.main_holder .experience .ex_images .ex_img {
    display: block;
    width: calc(100% - 20px);
    height: 200px;
    background: #ffffff;
    object-fit: cover;
    margin: 20px 0 20px 20px;
}

.btn {
    display: inline-block;
    position: absolute;
    bottom: 25px;
    right: 0;
    text-align: center;
    width: 180px;
    background: #C7004C;
    padding: 10px 15px;
    color: #eeeeee;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.btn:hover {
    background: #444444;
    color: #eeeeee;
    cursor: pointer;
    padding-right: 45px;
}

.btn i {
    font-size: 8pt;
    margin-right: 10px;
}

.work {
    position: relative;
    background: #ffffff;
    height: 100vh;
    width: 100%;
    padding: 30px 0 0 0;
    box-sizing: border-box;
    overflow: hidden;
}

.work .work_images {
    display: inline-block;
    width: 500px;
    vertical-align: top;
    height: 50vh;
}

.work .work_images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin: 10px 40px 50px 40px;
    position: relative;
    border: 1px solid #e7e6e6;
}

.work .work_images .i_holder {
    display: inline-block;
    position: relative;
    background: #f181ac;
    margin: 10px;
    padding: 5px 20px;
    right: 30px;
    bottom: 100px;
}

.work .work_images i {
    cursor: pointer;
    margin: 0 10px;
    padding: 0 10px;
}

.work .work_text {
    display: inline-block;
    width: calc(100% - 590px);
    vertical-align: middle;
    height: 50vh;
    color: #676662;
    text-align: center;
    line-height: 2.5;
    margin-right: 60px;
}

.work .work_text span {
    display: inline-block;
    color: #676662;
    text-align: right;
}

.work .work_text .main_title {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 30px;
}

.work .work_slide {
    text-align: center;
    margin-top: 150px;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    overflow: auto;
}

.work .work_slide img {
    display: inline-block;
    width: 80px;
    height: 70px;
    object-fit: cover;
    margin-right: 5px;
    border: 1px solid #e7e6e6;
}

.call_me {
    width: 100%;
    height: 100vh;
    background: #d9d8d8;
    overflow: hidden;
}

.call_me .call_back {
    background: #2f2d2d;
    height: 400px;
    margin-top: 80px;
    position: relative;
}

.call_me .call_back .img_background {
    display: inline-block;
    background: #C7004C;
    width: 450px;
    height: 250px;
    object-fit: cover;
    margin: -30px 60px;
    position: relative;
}

.call_me .call_back .img_background .text_img {
    position: absolute;
    top: 40%;
    left: 20%;
    text-align: center;
}

.call_me .call_back img {
    display: inline-block;
    width: 450px;
    height: 250px;
    object-fit: cover;
    z-index: 999;
    opacity: 0.3;
}

.call_me .btn {
    position: unset;
}

.form_holder_holder {
    position: absolute;
    left: 70px;
    top: 60px;
    width: calc(100% - 550px);
    height: 400px;
}

.form_holder {
    display: inline-block;
    /*border: 3px solid #eeeeee;*/
    width: calc(100% - 15px);
    height: 100%;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.form_holder .title {
    display: inline-block;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14pt;
}

.form_holder .input {
    display: block;
    background: none;
    border-bottom: 1px solid #787676;
    color: #eeeeee;
    padding: 10px 20px;
    margin-bottom: 20px;
    width: calc(100% - 50px);
}

.form_holder textarea {
    display: block;
    background: none;
    border: none;
    border-bottom: 1px solid #787676;
    color: #eeeeee;
    padding: 10px 20px;
    margin-bottom: 20px;
    max-width: calc(100% - 50px);
    min-width: calc(100% - 50px);
    font-family: IRANSans;
    font-size: 10pt;
    outline: none;
    max-height: 100px;
    min-height: 100px;
}

.form_holder .btn:hover {
    padding: 10px 30px;
}

.panel_menu_btn_holder {
    height: 0;
    display: none;
}

.panel_menu_btn_holder .panel_menu_btn {
    display: inline-block;
    position: relative;
    left: 280px;
    top: 50px;
    background: #f7f1f1;
    padding: 20px 10px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    box-shadow: 4px 0 4px rgba(0, 0, 0, 0.15);
}

.panel_menu_btn_holder .panel_menu_btn:hover {
    box-shadow: 4px 0 4px rgba(0, 0, 0, 0.25);
}

.panel_menu_btn_holder .panel_menu_btn i {
    transition: all 0.6s ease-in-out;
}


.holder_scroll {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 60px);
    overflow: hidden;
}

.holder_scroll_btn {
    display: inline-block;
    vertical-align: middle;
}

.holder_scroll_btn i {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #C7004C;
}

.holder_scroll_btn i:hover {
    color: #6e7585;
}

/*********************************   -- RESPONSIVE --   *************************************/

@media screen and (max-width: 1160px) {
    .work .work_images {
        display: block;
        width: calc(100% - 30px);
        height: 290px;
        margin-bottom: 20px;
    }

    .work .work_images img {
        height: 290px;
        margin: 0 15px;
    }

    .work .work_images .i_holder {
        right: 5px;
        bottom: 50px;
    }

    .work .work_text {
        display: block;
        width: calc(100% - 20px);
        margin-top: 0;
        margin-right: 10px;
        height: 150px;
    }

    .work .work_text span {
        height: 250px;
        overflow: auto;
    }

    .work .work_text .main_title {
        margin-bottom: 5px;
        height: 0;
    }

    .call_me .call_back .img_background {
        width: 380px;
    }

    .call_me .call_back img {
        width: 380px;
    }

    .form_holder_holder {
        width: calc(35% - 10px);
    }

}

@media screen and (max-width: 1100px) {
    .call_holder {
        display: none;
    }

    .menu_holder .open_contact {
        display: block;
    }

    .animation_width_main {
        animation-name: anim_width_main_res;
    }
}

@media screen and (max-width: 800px) {

    .main_holder .experience .ex_images {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .main_holder .experience .ex_images .ex_img {
        display: inline-block;
        margin-right: 20px;
        width: calc(50% - 45px)
    }

    .main_holder .experience .background_intro {
        display: block;
        width: 100%;
        height: auto;
    }

    .intro_title {
        width: calc(100% - 25px);
        margin: 40px 20px;
    }

    .call_me .call_back .img_background {
        display: none;
    }

    .call_me {
        padding-left: 5px;
    }

    .form_holder_holder {
        width: calc(100% - 50px);
        left: 0;
        right: 0;
        margin: auto;
    }

    .intro_title .title_left span {
        margin-left: 15px;
    }

    .main_holder .introduce {
        height: auto;
    }

    .main_holder .introduce .back_intro_img {
        display: block;
        width: 100%;
        height: 350px;
    }

    .introduce .background {
        top: -350px;
        height: 350px;
    }

    .main_holder .introduce .background_intro {
        display: block;
        width: 100%;
        height: auto;
    }

    .introduce .back_intro_img .background .main_title_holder {

    }
}

@media screen and (max-width: 730px) {

    .main_holder .experience {
        height: auto;
    }

    .main_holder .experience .ex_images .ex_img {
        display: block;
        margin-right: 20px;
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 600px) {

    .home .background {
        width: calc(85% - 10px);
    }

    .home .background .main_title_holder {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width: 560px) {
    .form_holder .btn {
        width: 120px;
    }
}

@media screen and (max-width: 530px) {
    .work .work_slide {
        text-align: center;
        overflow: auto;
    }
}

@media screen and (max-width: 430px) {
    .work .work_images .i_holder {
        padding: 5px 5px;
    }

    .work .work_images i {
        padding: 0;
    }
}
