﻿
@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/Doran FaNum/woff/DoranFaNum-Thin.woff') format('woff'), url('../fonts/Doran FaNum/woff2/DoranFaNum-Thin.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Doran FaNum/woff/DoranFaNum-Light.woff') format('woff'), url('../fonts/Doran FaNum/woff2/DoranFaNum-Light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Doran FaNum/woff/DoranFaNum-Regular.woff') format('woff'), url('../fonts/Doran FaNum/woff2/DoranFaNum-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Doran FaNum/woff/DoranFaNum-Medium.woff') format('woff'), url('../fonts/Doran FaNum/woff2/DoranFaNum-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/Doran FaNum/woff/DoranFaNum-Bold.woff') format('woff'), url('../fonts/Doran FaNum/woff2/DoranFaNum-Bold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Doran FaNum/woff/DoranFaNum-ExtraBold.woff') format('woff'), url('../fonts/Doran FaNum/woff2/DoranFaNum-ExtraBold.woff2') format('woff2');
    font-display: swap;
}


:root {
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Doran, sans-serif;
    background-color: #f8f8f8;
}

.Eng {
    font-family: 'Segoe UI';
}

a {
    text-decoration: none;
}


header {
    background-color: #202020;
}

.header {
    /* position: relative; */
    /*  height: 73px;*/
    z-index: 1;
}

    .header .logo {
        display: inline-block;
        padding: 5px 5px 5px 0;
    }

        .header .logo img {
            height: 42px;
            width: auto;
        }

header .menu.mobile-menu {
    overflow: hidden;
}

    header .menu.mobile-menu .backdrop {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 25%;
        background: #b4b4b485;
        backdrop-filter: blur(3px);
        filter: blur(3px);
        transform: matrix(-1, 0, 0, 1, 0, 0);
        z-index: 3;
    }

    header .menu.mobile-menu nav {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #fff;
        height: 100vh;
        z-index: 3;
        width: 75%;
        text-align: right;
        padding: 30px 45px;
        box-shadow: 0 0 5px #ccc;
        overflow-y: auto;
    }

    header .menu.mobile-menu ul {
        margin-top: 66px;
    }

        header .menu.mobile-menu ul li {
            border-top: 1px solid #e2e2e2;
            font-weight: 300;
        }

            header .menu.mobile-menu ul li:last-child {
                border-bottom: 1px solid #e2e2e2;
            }

            header .menu.mobile-menu ul li a {
                color: var(--darkGray);
                font-size: 17px;
                font-weight: 500;
                line-height: 61px;
                font-weight: 300;
            }

/* desktop */
header .desktop-menu {
    display: none;
    width: 100%;
}

    header .desktop-menu nav {
        vertical-align: middle;
        width: 100%;
    }

    header .desktop-menu ul {
        padding: 8px 0;
        direction: ltr;
        margin: 0px 0px 0px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        header .desktop-menu ul li {
            display: inline-block;
            text-align: center;
            height: 40px;
            line-height: 16px;
            padding: 0 10px;
            direction: rtl;
            display: flex;
            align-items: center;
        }


            header .desktop-menu ul li span {
                display: block;
            }

                header .desktop-menu ul li span.eng {
                    font-family: Lato, sans-serif;
                    font-size: 12px;
                }

                header .desktop-menu ul li span.Split {
                    height: 16px;
                    width: 1px;
                    background-color: #FFF;
                    margin: 0px 8px;
                }

            header .desktop-menu ul li:last-child {
                border: none;
            }

            header .desktop-menu ul li a {
                color: rgba(255,255,255,0.9);
                line-height: 16px;
                vertical-align: middle;
                font-weight: 100;
                text-decoration: none;
                display: flex;
                align-items: center;
            }

            header .desktop-menu ul li:hover a {
                color: rgba(255,255,255,1);
            }
/* hamburger menu */
header .menuToggleOuter {
    position: relative;
}

header .hamburger-menu {
    position: absolute;
    right: 0;
    top: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 99;
}

    header .hamburger-menu.open {
        position: fixed;
        right: 40px;
        top: 25px;
    }

    header .hamburger-menu span {
        color: red;
    }

    header .hamburger-menu:hover {
        cursor: pointer;
    }

    header .hamburger-menu .menu-item {
        display: block;
        height: 2px;
        margin-bottom: 10px;
        transition: all 0.3s ease-in-out;
        background-color: #fff;
        width: 29px;
    }

        header .hamburger-menu .menu-item:last-child {
            margin-bottom: 0;
        }

    header .hamburger-menu.open .menu-item {
        margin: 0 0 1px;
        background-color: #000;
    }

        header .hamburger-menu.open .menu-item:first-child {
            transform: rotate(45deg);
            transform-origin: 10px;
        }

        header .hamburger-menu.open .menu-item:nth-child(2) {
            opacity: 0;
        }

        header .hamburger-menu.open .menu-item:nth-child(3) {
            transform: rotate(-45deg);
            transform-origin: 10px;
        }


.MH-Section {
    padding: 40px 0px;
}

    .MH-Section .text-box {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
    }

    .MH-Section .h-hr {
        width: 100%;
        height: 1px;
        background-color: #000;
        margin: 5px 0px;
    }

    .MH-Section .h-hr-brown {
        background-color: #a38766;
        display: block;
    }

    .MH-Section.Section1 {
        text-align: center;
    }

        .MH-Section.Section1 .text-box1 {
            width: 280px;
        }

        .MH-Section.Section1 h1, .MH-Section.Section1 h2 {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            font-weight: 800;
            margin: 0px;
        }

        .MH-Section.Section1 h1, .MH-Section.Section1 h2 {
            font-size: 1.73rem;
        }

            .MH-Section.Section1 h1 strong, .MH-Section.Section1 h2 strong {
                color: #b39776;
                line-height: 4.5rem;
            }

            .MH-Section.Section1 h1 strong {
                font-size: 4.2rem;
            }

            .MH-Section.Section1 h2 strong {
                font-size: 3.5rem;
            }

            .MH-Section.Section1 h1 span {
                font-size: 1.45rem;
            }

            .MH-Section.Section1 h2 span {
                font-weight: 600;
            }

    .MH-Section.Section2 {
        background-image: url("../images/Introduction_Top.jpg"), url("../images/Introduction_Bottom.jpg");
        background-repeat: no-repeat, repeat;
        background-position: center top,center center;
        background-size: contain,contain;
        direction: rtl;
        padding: 150px 0px 0px 0px;
    }

        .MH-Section.Section2 .Introduction-titr-box {
            width: 280px;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
            color: #000;
            background-color: #FFF;
        }

            .MH-Section.Section2 .Introduction-titr-box .head-text {
                padding: 10px;
            }

                .MH-Section.Section2 .Introduction-titr-box .head-text p {
                    color: #000;
                    text-align: center;
                    line-height: 1.3rem;
                    font-size: 0.8rem;
                    font-weight: 800;
                    margin: 0px;
                }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Eng {
                        padding: 5px 5px 0px 5px;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Eng {
                        padding: 10px 10px 0px 10px;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Farsi {
                        padding: 10px 0px 10px 10px;
                        font-size: 0.71rem;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p strong {
                        font-size: 0.9rem !important;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p .color1 {
                        color: #000;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p .color2 {
                        color: #b39776;
                    }

            .MH-Section.Section2 .Introduction-titr-box img {
                display: inline-block;
                width: 350px;
                height: auto;
            }

        .MH-Section.Section2 .Introduction-img-box {
            width: 280px;
            color: #FFF;
            /* background-color: #FFF;*/
        }

            .MH-Section.Section2 .Introduction-img-box img {
                width: 280px;
            }

        .MH-Section.Section2 .Introduction-text-box {
            background-color: #000;
            width: 280px;
            padding: 0px 0px 20px 0px;
        }

            .MH-Section.Section2 .Introduction-text-box p {
                color: #FFF;
                margin: 10px 0px;
                font-weight: 700;
                font-size: 1.2rem;
                line-height: 2rem;
            }

                .MH-Section.Section2 .Introduction-text-box p strong {
                    color: #b39776;
                    font-size: 1.3rem !important;
                }

                .MH-Section.Section2 .Introduction-text-box p.Eng {
                    direction: ltr;
                    text-align: justify;
                    font-size: 1.1rem;
                }

                .MH-Section.Section2 .Introduction-text-box p.Farsi {
                    direction: rtl;
                    text-align: justify;
                }

                .MH-Section.Section2 .Introduction-text-box p.Farsi1 {
                    font-weight: 700;
                }

                .MH-Section.Section2 .Introduction-text-box p.Farsi2 {
                    font-weight: 300;
                }

    .MH-Section.Section3 {
        text-align: center;
    }

        .MH-Section.Section3 .carouselLoop {
            overflow: hidden;
        }

            .MH-Section.Section3 .carouselLoop .scrolling-wrapper {
                cursor: grab;
            }

                .MH-Section.Section3 .carouselLoop .scrolling-wrapper .card {
                    margin: 0 13px;
                    min-width: unset;
                }

            .MH-Section.Section3 .carouselLoop .item img {
                width: 300px;
            }

            .MH-Section.Section3 .carouselLoop.loopOne {
            }

        .MH-Section.Section3 img.logo-large {
            width: 110px;
            height: auto;
            margin: 15px auto;
        }

        .MH-Section.Section3 .Farsi {
            direction: rtl;
        }

        .MH-Section.Section3 .Eng, .MH-Section.Section3 .Farsi {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            font-weight: 800;
            line-height: 1rem;
            margin: 0px;
        }

        .MH-Section.Section3 .Eng, .MH-Section.Section3 .Farsi {
            font-size: 1.22rem;
        }

            .MH-Section.Section3 .Eng strong, .MH-Section.Section3 .Farsi strong {
                color: #b39776;
                line-height: 2.5rem;
            }

                .MH-Section.Section3 .Eng strong span, .MH-Section.Section3 .Farsi strong span {
                    color: #000;
                    font-size: inherit;
                    line-height: 4rem;
                    word-spacing: 0px;
                }

            .MH-Section.Section3 .Eng strong {
                font-size: 1.3rem;
            }

            .MH-Section.Section3 .Farsi strong {
                font-size: 2.72rem;
                line-height: 5rem;
            }

            .MH-Section.Section3 .Eng span {
                font-size: 1.4rem;
                line-height: 2rem;
            }

    .MH-Section.Section4 {
        text-align: center;
        margin: 0px;
        height: 80vh;
        padding: 60px 0px 40px 0px;
        position: relative;
    }


        .MH-Section.Section4 video {
            position: absolute;
            z-index: 1;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .MH-Section.Section4 .container-fluid {
            position: absolute;
            z-index: 2;
            bottom: 30px;
            left: 0px;
            width: 100%;
        }

        .MH-Section.Section4.Lasting-Outputs {
            display: flex;
            align-items: end;
        }

            .MH-Section.Section4.Lasting-Outputs .content-box {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin-bottom: 30px;
            }

            .MH-Section.Section4.Lasting-Outputs .text-box {
                width: 100%;
            }

            .MH-Section.Section4.Lasting-Outputs img {
                width: 120px;
                height: auto;
            }

            .MH-Section.Section4.Lasting-Outputs p {
                color: #FFF;
                font-weight: 700;
                margin: 0px;
                line-height: 2rem;
            }

                .MH-Section.Section4.Lasting-Outputs p.Farsi {
                    font-size: 1rem;
                    font-weight: 600;
                }

                .MH-Section.Section4.Lasting-Outputs p.Eng {
                    font-size: 1rem;
                }

.Play-box {
    display: flex;
    align-items: center;
    /* margin-bottom: 25px;*/
}

    .Play-box span {
        margin-right: 10px;
        font-size: 12px;
    }

.video-button {
    background-color: #a38766;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    cursor: pointer;
}

    .video-button.Play-Icon {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAnCAYAAACFSPFPAAABl0lEQVRYhc2YvUoDQRDHf8YUNiI+goVa2PkEURQCVhZi4SP4DNr7BJJC/CgEbUTTWIjESizsbILYaJHOD0SwUE4GZiFoErOb2bv9V1fc7v1uZudjZyjLMlRlYAGYByaAb+ARuAAugS8iy8GMARvAdJfPtYBd4DomjsAMA1s9QNp1C+wAT7FgqsC6xxpx3xlwBHxYwpSAiucaseQyUAMW5YesYMQyh8DoAHs8ANtA0wKmPugmgETBlR7y59BNSgYgqKsq6roVTRP+mxhZ5rdaGnU3KcA4eaWC2DBo5q73kwrygHF6BQ60vGSdXsgTxuleD/qfVFAEDGqZBrDXngqsQttXkgrm1ELVomGcRrQurqUA47QKTKYCI25bSgVGNJsSzHhKMC8pwdylAiNJ8DQVGCmizaAmyFCf2mKcE9qRGahjbSoCpmvVzhPm334mD5i+O73YMF49cCyYoNuBNYyE6jFwEjJCsYIxuVEKzHsqd+2yTqdmAta+Afu9QjUEpuEJE20+k9zkCp3pbQJTXd7LbabnnouddgI/LC6TVijypNUAAAAASUVORK5CYII=');
        background-position: 11px center;
    }

    .video-button.Pause-Icon {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgEAYAAAAj6qa3AAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAAAAAAAAPlDu38AAAAJcEhZcwAAAGAAAABgAPBrQs8AAAAHdElNRQfnCxQQIhdXeRDUAAABUElEQVRo3mNgGAUjGzASq/BqyNWQqyFsbHyL2bX+fGluZgpkeMwoEhv7f87/qv+lkpIYBrsxxjFGPHvGUMXA9O/44sUfNvyUZE2pq9Neo71Ge82vXwNtD8kB8HTJHesLHzo6/jv8X8D4sLyc5JA+wJjwX76zUzpG5aiBQEXFQNsDA0xEm7yEQY0pJy6OVAfBwaH/hozN8fGDxh5YgBGr8MmT27cvXvz/n2yHQYGMjKqqvj4jTnvpZQ8MEJ8ChikYDYCBdsBAg9EAGGgHDDQYDYCBdsBAg9EAGGgHDDQYDYCBdsBAg9EAGGgHDDQYDYCBdsBAg9EAGGgHDDQYDYCBdsBAg9EAGGgHDDQgOgDgExBkAkYNRjMG1adPB4s9JAcAbOaFXIcxpP1/xthGhH562UNqAMCmnGAzL4RiCiYPU//h0a9Y5hv19YPFnlEwCiAAAIxMuJ48sJN0AAAAAElFTkSuQmCC');
        background-position: 9px center;
    }
/* 
popup-video
 */
.popup-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

    .popup-video .backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.89);
        z-index: 11;
    }

        .popup-video .backdrop .close {
            cursor: pointer;
            position: fixed;
            top: 15px;
            right: 15px;
            color: #fff;
            font-size: 35px;
            font-weight: 400;
            width: 32px;
            height: auto;
        }

        .popup-video .backdrop .content {
            position: fixed;
            width: 90vw;
            height: 90vh;
            top: 4vh;
            left: 4vw;
            border: 2px solid #fff;
            border-radius: 18px;
            z-index: 12;
        }

            .popup-video .backdrop .content iframe {
                border-radius: 18px;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .popup-video .backdrop .content .aparat-frame {
                height: 100%;
                width: 100%;
            }

                .popup-video .backdrop .content .aparat-frame > span {
                    display: none !important;
                }
/* aparat styles */
.MH-Section.Section5 {
    text-align: center;
    padding: 40px 0px 20px 0px !important;
}

    .MH-Section.Section5 .Farsi {
        direction: rtl;
    }

    .MH-Section.Section5 .Eng, .MH-Section.Section5 .Farsi {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        font-weight: 800;
        line-height: 1rem;
        margin: 0px;
    }

    .MH-Section.Section5 .Eng, .MH-Section.Section5 .Farsi {
        font-size: 1rem;
    }

        .MH-Section.Section5 .Eng strong, .MH-Section.Section5 .Farsi strong {
            color: #b39776;
            line-height: 5rem;
        }

            .MH-Section.Section5 .Eng strong span, .MH-Section.Section5 .Farsi strong span {
                color: #000;
                font-size: inherit;
                line-height: 4rem;
                word-spacing: 0px;
            }

        .MH-Section.Section5 .Eng strong {
            font-size: 2.42rem;
        }

        .MH-Section.Section5 .Farsi strong {
            font-size: 1.8rem;
            line-height: 2.7rem;
        }

        .MH-Section.Section5 .Eng span {
            font-size: 1rem;
            line-height: 2rem;
        }

        .MH-Section.Section5 .Farsi span {
            word-spacing: 4px;
        }

.Resume-bg-color {
    background-color: #181818;
}


.MH-Section.Section5 .Resume-Scroll {
    height: 90vh;
    width: calc(calc( 100%)+15px);
    overflow: hidden;
    position: relative;
    /*margin: 30px 0px;*/
    padding: 0px 0px 10px 0px;
    margin: 0px;
}

    .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area {
        /*    position: relative;
        margin-right: -15px;
        overflow-y: auto;
        height: 100%;*/

        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 100%;
        overflow-y: auto;
        scrollbar-gutter: stable both-edges;
    }

        .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area:hover,
        .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area:active,
        .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area:focus {
            overflow-y: scroll;
        }

        .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area::-webkit-scrollbar {
            width: 0px;
            background-color: #252526;
        }

        .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area::-webkit-scrollbar-thumb {
            background-color: #282829;
        }

        .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area::-webkit-scrollbar-thumb {
            background-color: #3e3f42;
            border: 1px solid #202021;
            background-clip: content-box;
        }

            .MH-Section.Section5 .Resume-Scroll .Resume-Scroll-Area ::-webkit-scrollbar-thumb:hover {
                background-color: #a8bbbf;
                cursor: pointer;
            }

.MH-Section.Section5 .Resume-Spliter {
    margin: 70px 0px;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.MH-Section.Section5 .Resume-instance {
    /* border-top: 1px solid #000;*/
    padding: 10px 15px 0px 15px;
    margin: 30px auto;
    min-height: 90vh;
}

.MH-Section.Section5 .Resume-instance-img {
    width: 100%;
}

.MH-Section.Section5 .Resume-instance .text-box .project-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #000;
    border-radius: 25px;
    direction: rtl;
    justify-content: space-around;
    padding: 15px 0px;
}

    .MH-Section.Section5 .Resume-instance .text-box .project-head .Spliter {
        width: 1px;
        height: 80px;
        background-color: #000;
        display: none;
    }

    .MH-Section.Section5 .Resume-instance .text-box .project-head img {
        width: 90%;
        height: auto;
        margin: 5px auto;
    }

.MH-Section.Section5 .Resume-instance p {
    text-align: justify;
    direction: rtl;
    font-size: 1.2rem;
    color: #000;
    line-height: 2rem;
    padding: 20px 0px;
}

    .MH-Section.Section5 .Resume-instance p strong {
        color: #cea069;
    }

.MH-Section.Section6, .MH-Section.Section7, .MH-Section.Section8, .MH-Section.Section9 {
    text-align: center;
    margin: 0px;
    height: auto;
    padding: 60px 0px 70px 0px;
    position: relative;
    display: flex;
    align-items: center;
}

    .MH-Section.Section6 .row, .MH-Section.Section7 .row, .MH-Section.Section8 .row, .MH-Section.Section9 .row {
        height: 100%;
    }

    .MH-Section.Section6 .video-button, .MH-Section.Section7 .video-button, .MH-Section.Section8 .video-button, .MH-Section.Section9 .video-button {
        border: 3px solid #FFF;
    }

        .MH-Section.Section6 .video-button.Play-Icon, .MH-Section.Section7 .video-button.Play-Icon, .MH-Section.Section8 .video-button.Play-Icon, .MH-Section.Section9 .video-button.Play-Icon {
            background-position: 10px center;
        }

    .MH-Section.Section6 .container-fluid, .MH-Section.Section7 .container-fluid, .MH-Section.Section8 .container-fluid, .MH-Section.Section9 .container-fluid {
        position: absolute;
        z-index: 3;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        color: #FFF;
    }

        .MH-Section.Section6 .container-fluid .row, .MH-Section.Section7 .container-fluid .row, .MH-Section.Section8 .container-fluid .row, .MH-Section.Section9 .container-fluid .row {
            height: 95%;
        }

    .MH-Section.Section6 .container, .MH-Section.Section7 .container, .MH-Section.Section8 .container, .MH-Section.Section9 .container {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        color: #FFF;
        display: flex;
        align-items: center;
    }

    .MH-Section.Section6 video, .MH-Section.Section7 video, .MH-Section.Section8 video, .MH-Section.Section9 video {
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .MH-Section.Section6 h2, .MH-Section.Section7 h2, .MH-Section.Section8 h2, .MH-Section.Section9 h2 {
        font-size: 1.3rem;
        line-height: 2.1rem;
        font-weight: 700;
    }

        .MH-Section.Section6 h2 strong, .MH-Section.Section7 h2 strong, .MH-Section.Section8 h2 strong, .MH-Section.Section9 h2 strong,
        .MH-Section.Section6 h3 strong, .MH-Section.Section7 h3 strong, .MH-Section.Section8 h3 strong, .MH-Section.Section9 h3 strong {
            color: #a38766;
        }

        .MH-Section.Section6 h2.Farsi, .MH-Section.Section7 h2.Farsi, .MH-Section.Section8 h2.Farsi, .MH-Section.Section9 h2.Farsi {
            direction: rtl;
            font-size: 2.22rem;
            text-align: justify;
            letter-spacing: -0.04em;
        }

        .MH-Section.Section6 h2.Eng, .MH-Section.Section7 h2.Eng, .MH-Section.Section8 h2.Eng, .MH-Section.Section9 h2.Eng {
            direction: ltr;
            text-align: justify;
            margin-bottom: 20px;
            line-height: 1.7rem;
            letter-spacing: 0.03em;
        }

        .MH-Section.Section8 h2.Eng {
            margin-bottom: 10px;
        }

    .MH-Section.Section6 h3.Eng, .MH-Section.Section7 h3.Eng, .MH-Section.Section8 h3.Eng, .MH-Section.Section9 h3.Eng {
        direction: ltr;
        text-align: left;
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .MH-Section.Section6 p, .MH-Section.Section7 p, .MH-Section.Section8 p, .MH-Section.Section9 p {
        font-size: 0.7rem;
        line-height: 1.3rem;
        text-align: justify;
        margin-bottom: 8px;
    }

        .MH-Section.Section6 p.Farsi, .MH-Section.Section7 p.Farsi, .MH-Section.Section8 p.Farsi, .MH-Section.Section9 p.Farsi {
            direction: rtl;
        }

    .MH-Section.Section6 .Film-Text {
        width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

.MH-Section.Section7 {
}

.MH-Section.Section8 {
}

.MH-Section.Section9 {
}

.MH-Section.Section10 {
    background-color: #dfdfdf;
}

    .MH-Section.Section10 .services-titr {
        font-weight: 800;
        direction: rtl;
    }

        .MH-Section.Section10 .services-titr p {
            color: #000;
        }

            .MH-Section.Section10 .services-titr p strong {
                color: #a38766;
            }

            .MH-Section.Section10 .services-titr p.Farsi {
                font-size: 2.5rem;
                text-align: right;
                direction: rtl;
            }

            .MH-Section.Section10 .services-titr p.Eng {
                font-size: 2.5rem;
                text-align: left;
                direction: ltr;
            }

    .MH-Section.Section10 .scrolling-wrapper {
        display: flex;
        overflow: hidden;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        direction: rtl;
    }

        .MH-Section.Section10 .scrolling-wrapper::-webkit-scrollbar {
            display: none;
        }

        .MH-Section.Section10 .scrolling-wrapper .card {
            min-width: unset;
            width: 85%;
        }

    .MH-Section.Section10 .Services-list-item {
        display: inline-block;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background-color: #FFF;
        border-radius: 20px;
        padding: 40px;
        margin: 10px;
    }

        .MH-Section.Section10 .Services-list-item .service-text-box {
            height: 300px;
            width: 183px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

            .MH-Section.Section10 .Services-list-item .service-text-box .Top-container {
                height: 130px;
                display: flex;
                align-items: end;
                justify-content: center;
            }

            .MH-Section.Section10 .Services-list-item .service-text-box .Bottom-container {
                height: 130px;
                display: flex;
                align-items: start;
                justify-content: center;
            }


        .MH-Section.Section10 .Services-list-item a {
            background-color: #000;
            color: #FFF;
            padding: 5px 10px;
            border-radius: 30px;
            font-size: 1.2rem;
            line-height: 2rem;
            font-weight: 800;
        }

    .MH-Section.Section10 .Services-list .Services-list-item .logo-white-black {
        background-image: url("../images/Logo-brown.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        width: 60px;
        height: 60px;
        display: inline-block;
        border-radius: 12px;
    }

    .MH-Section.Section10 .Services-list-item .service-text-box p {
        color: #000;
        font-weight: 800;
        line-height: 2rem;
        margin: 0px;
    }

        .MH-Section.Section10 .Services-list-item .service-text-box p.Eng {
            font-size: 1.6rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: -0.04em;
        }

        .MH-Section.Section10 .Services-list-item .service-text-box p.Farsi {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .MH-Section.Section10 .Services-list-item .service-text-box p strong {
            font-size: 2rem !important;
            font-weight: inherit;
            font-size: inherit;
        }


.MH-Section.Section11 {
    background-image: url("../images/Customers_top.jpg"), url("../images/Customers_bottom.jpg");
    background-repeat: no-repeat, repeat;
    background-size: 300% auto;
    background-position: center -150px;
    direction: rtl;
    padding-top: 180px;
}

    .MH-Section.Section11 .Customers_Top {
        padding: 50px 0px 10px 0px;
    }

        .MH-Section.Section11 .Customers_Top .Customers_Text_Box {
            background-color: rgba(0,0,0,0.5);
            border-radius: 16px;
            border: 1px solid #cea069;
            padding: 30px 30px 60px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 90%;
            margin: unset;
            margin-left: auto;
            margin-right: auto;
        }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box img {
                width: 120px;
                height: auto;
                margin: 10px auto 30px auto;
            }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box p {
                color: #FFF;
                font-weight: 700;
                margin: 0px;
                text-align-last: center;
            }

                .MH-Section.Section11 .Customers_Top .Customers_Text_Box p strong {
                    color: #cea069;
                    font-size: inherit;
                    font-weight: inherit;
                    display: inline;
                }

                .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Farsi {
                    font-size: 1.26rem;
                    line-height: 2rem;
                    direction: rtl;
                    text-align: right;
                    margin-bottom: 10px;
                    font-weight: 700;
                    letter-spacing: 0.03em;
                }

                .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Eng {
                    font-size: 1.46rem;
                    line-height: 1.9rem;
                    letter-spacing: -0.04em;
                    direction: ltr;
                }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box span.h-hr {
                background-color: #cea069 !important;
            }

    .MH-Section.Section11 .Customers_Bottom {
        padding: 30px 0px;
    }

        .MH-Section.Section11 .Customers_Bottom .Customer-item {
            background-color: #FFF;
            border-radius: 12px;
            border: 1px solid #a38766;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90%;
            height: 120px;
            padding: 20px;
            margin: 10px auto;
        }

            .MH-Section.Section11 .Customers_Bottom .Customer-item .logo-part {
                width: 100%;
                height: auto;
                display: inline-block;
            }


.page-head .bread-crumb {
    padding: 30px 20px;
    margin: 0px;
    direction: rtl;
}

    .page-head .bread-crumb .spliter {
        width: 2px;
        height: 18px;
        background-color: #000;
        display: block;
        margin: 0px 7px;
        position: relative;
    }

    .page-head .bread-crumb .bread-crumb-text {
        line-height: 30px;
        display: block;
        font-weight: 700;
        font-size: 1.1rem;
    }

.contact-us-page {
    margin-bottom: 60px;
}

    .contact-us-page .contact-us-titr {
        line-height: 40px;
    }

        .contact-us-page .contact-us-titr p {
            padding: 0px;
            margin: 0px;
        }

        .contact-us-page .contact-us-titr .Eng-Description {
            font-family: Lato, sans-serif;
            direction: ltr;
            text-align: justify;
            font-weight: 700;
            font-size: 1.315rem;
        }

        .contact-us-page .contact-us-titr .Eng-Description-medium {
            font-family: Lato, sans-serif;
            direction: ltr;
            text-align: justify;
            font-weight: 700;
            font-size: 1.315rem;
            line-height: 2rem;
        }

        .contact-us-page .contact-us-titr .Persian-Description {
            font-family: "Doran", sans-serif;
            direction: rtl;
            text-align: justify;
            font-weight: 600;
            font-size: 1.47rem;
        }

        .contact-us-page .contact-us-titr .Persian-Description-medium {
            font-family: "Doran", sans-serif;
            direction: rtl;
            text-align: justify;
            font-weight: 600;
            font-size: 1.2rem;
        }

    .contact-us-page .input-box {
        padding: 20px;
        margin: 20px 0px;
        direction: ltr;
    }

        .contact-us-page .input-box input[type="text"] {
            padding: 10px;
            margin: 15px 0px;
            border-radius: 5px;
            border: 1px solid #aeaca7;
            width: 100%;
            background-color: transparent;
            text-align: left;
        }

        .contact-us-page .input-box input[type="number"] {
            padding: 10px;
            margin: 15px 0px;
            border-radius: 5px;
            border: 1px solid #aeaca7;
            width: 100%;
            background-color: transparent;
            text-align: left;
        }

        .contact-us-page .input-box textarea {
            padding: 10px;
            margin: 15px 0px;
            border-radius: 5px;
            border: 1px solid #aeaca7;
            width: 100%;
            background-color: transparent;
            text-align: left;
        }

.success-pay-page .input-box select {
    padding: 10px;
    margin: 15px 0px;
    border-radius: 5px;
    border: 1px solid #aeaca7;
    width: 100%;
    background-color: transparent;
    text-align: left;
}

.contact-us-page .input-box select.Request-Types {
    padding: 8px;
    margin: 11px 0px;
    border-radius: 5px;
    border: 1px solid #aeaca7;
    width: 100%;
    background-color: transparent;
    text-align: left;
}


.contact-us-page .btn-submit-comment {
    background: #b39776;
    color: #fff;
    padding: 10px 75px;
    font-size: 16px;
    display: inline-block;
    border-radius: 8px;
    margin: 0px;
}

    .contact-us-page .btn-submit-comment input {
        background-color: transparent;
        color: #FFF;
        border: none;
        font-size: 18px;
        padding-right: 5px;
    }

.contact-top-content {
    margin: 80px 0px 0px 0px;
}

footer {
    padding: 30px 0px 0px 0px;
    direction: rtl;
    background-color: #202020;
    position: relative;
    margin-top: -70px;
    text-align: center;
    overflow: hidden;
}

    footer .container {
        margin: 20px auto 25px auto;
    }

    footer .col {
        padding: 0px 10px;
    }

    footer a {
        color: #fceb08;
        text-decoration: none;
        cursor: pointer;
    }

        footer a:hover {
            color: #FFF;
        }

    footer .about-surprise {
        display: flex;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        justify-content: start;
    }

    footer .enamad-frame {
        background-color: #FFF;
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: unset;
    }

    footer img {
        height: 60px;
        width: auto;
        margin-left: auto;
        margin-bottom: 5px;
    }

    footer p {
        color: #FFF;
        font-size: 15px;
        font-weight: 300;
        padding: 10px 0px 10px 15px;
        text-align: justify;
        line-height: 30px;
    }

    footer .footer-copyright {
        padding: 2px 0px;
        background: #a18666;
        position: relative;
    }

    footer .desinger-box {
        background-color: #a18666;
        padding: 79px 30px 10px 30px;
        bottom: -25px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        position: relative;
        left: 0px;
        right: 0px;
    }

        footer .desinger-box p {
            font-size: 15px;
            line-height: 26px;
            padding: 0px;
        }

        footer .desinger-box .desinger-alert {
            width: 80px;
            height: 40px;
            background-color: #202020;
            position: absolute;
            top: 0px;
            left: 0px;
            right: 0px;
            margin-left: auto;
            margin-right: auto;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            display: flex;
            align-items: start;
            justify-content: center;
            color: #FFF;
        }

            footer .desinger-box .desinger-alert svg {
                margin-top: 5px;
            }

    footer .desinger-name {
        background-image: url('../images/designer_sign.svg'),url('../images/designer_sign.svg');
        background-repeat: no-repeat,no-repeat;
        background-position: left center,right center;
        text-align: center;
        display: inline-block;
        margin: 0px auto;
        padding: 5px 10px;
    }


    footer .desinger-box .desinger-alert .alert-sign-L {
        overflow: hidden;
        width: 30px;
        height: 25px;
        top: 0px;
        margin-left: 110px;
        position: absolute;
    }

        footer .desinger-box .desinger-alert .alert-sign-L:before {
            content: '';
            width: 200%;
            height: 200%;
            border-top-left-radius: 14px;
            position: absolute;
            display: block;
            top: 0px;
            left: 0px;
            box-shadow: -36px -35px 0 0 #202020;
        }

    footer .desinger-box .desinger-alert .alert-sign-R {
        overflow: hidden;
        width: 30px;
        height: 25px;
        top: 0px;
        margin-right: 110px;
        position: absolute;
    }

        footer .desinger-box .desinger-alert .alert-sign-R:before {
            content: '';
            width: 200%;
            height: 200%;
            border-top-right-radius: 14px;
            position: absolute;
            display: block;
            top: 0px;
            right: 0px;
            box-shadow: 36px -35px 0 0 #202020;
        }


    footer .desinger-box .alert-box-L {
        overflow: hidden;
        width: 30px;
        height: 25px;
        bottom: 0px;
        right: -29px;
        margin-left: 97px;
        position: absolute;
    }

        footer .desinger-box .alert-box-L:before {
            content: '';
            width: 200%;
            height: 200%;
            border-bottom-left-radius: 14px;
            position: absolute;
            display: block;
            bottom: 0px;
            left: 0px;
            box-shadow: -36px 35px 0 0 #a18666;
        }

    footer .desinger-box .alert-box-R {
        overflow: hidden;
        width: 30px;
        height: 25px;
        bottom: 0px;
        left: -29px;
        margin-right: 97px;
        position: absolute;
    }

        footer .desinger-box .alert-box-R:before {
            content: '';
            width: 200%;
            height: 200%;
            border-bottom-right-radius: 14px;
            position: absolute;
            display: block;
            bottom: 0px;
            right: 0px;
            box-shadow: 36px 35px 0 0 #a18666;
        }





@media (min-width: 360px) {
    .MH-Section {
        padding: 40px 0px;
    }

        .MH-Section .text-box {
            width: 100%;
        }

        .MH-Section .h-hr {
            margin: 5px 0px;
        }

        /*Section1*/
        .MH-Section.Section1 .text-box1 {
            width: 320px;
        }

        .MH-Section.Section1 h1, .MH-Section.Section1 h2 {
            font-size: 0.92rem;
        }

            .MH-Section.Section1 h1 strong, .MH-Section.Section1 h2 strong {
                line-height: 3rem;
            }

            .MH-Section.Section1 h1 strong {
                font-size: 2.24rem;
            }

            .MH-Section.Section1 h2 strong {
                font-size: 1.86rem;
            }

            .MH-Section.Section1 h1 span {
                font-size: 0.78rem;
            }

        /*End section1*/

        /*Section2*/
        .MH-Section.Section2 {
            padding: 150px 0px 0px 0px;
        }

            .MH-Section.Section2 .Introduction-titr-box {
                width: 340px;
                border-top-left-radius: 30px;
                border-top-right-radius: 30px;
            }

                .MH-Section.Section2 .Introduction-titr-box .head-text p {
                    line-height: 1.3rem;
                    font-size: 0.8rem;
                }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Eng {
                        padding: 5px 5px 0px 5px;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Farsi {
                        font-size: 0.71rem;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p strong {
                        font-size: 0.9rem !important;
                    }

            .MH-Section.Section2 .Introduction-img-box {
                width: 340px;
            }

                .MH-Section.Section2 .Introduction-img-box img {
                    width: 340px;
                }

            .MH-Section.Section2 .Introduction-text-box {
                width: 340px;
                padding: 0px 0px 20px 0px;
            }

                .MH-Section.Section2 .Introduction-text-box p {
                    font-size: 1rem;
                    line-height: 1.6rem;
                }

                    .MH-Section.Section2 .Introduction-text-box p strong {
                        font-size: 1rem !important;
                    }

                    .MH-Section.Section2 .Introduction-text-box p.Eng {
                        font-size: 1rem;
                    }

        /*end Section2*/

        /*Section3*/
        .MH-Section.Section3 .Eng, .MH-Section.Section3 .Farsi {
            font-size: 0.9rem;
        }

            .MH-Section.Section3 .Eng strong, .MH-Section.Section3 .Farsi strong {
                line-height: 2rem;
            }

                .MH-Section.Section3 .Eng strong span, .MH-Section.Section3 .Farsi strong span {
                    line-height: 2rem;
                }

            .MH-Section.Section3 .Eng strong {
                font-size: 1.3rem;
            }

            .MH-Section.Section3 .Farsi strong {
                font-size: 1.27rem;
                line-height: 2.4rem;
            }

            .MH-Section.Section3 .Eng span {
                font-size: 0.9rem;
                line-height: 2rem;
            }

        .MH-Section.Section3 img.logo-large {
            width: 110px;
            margin: 15px auto;
        }

        /*End Section3*/

        .MH-Section.Section4 {
            height: 80vh;
        }

            .MH-Section.Section4 video {
                /* object-fit: contain;*/
            }

            .MH-Section.Section4.Lasting-Outputs .content-box {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin-bottom: 30px;
            }

            .MH-Section.Section4.Lasting-Outputs .text-box {
                width: 100%;
            }

            .MH-Section.Section4.Lasting-Outputs img {
                width: 120px;
                height: auto;
            }

            .MH-Section.Section4.Lasting-Outputs p {
                line-height: 2rem;
            }

                .MH-Section.Section4.Lasting-Outputs p.Farsi {
                    font-size: 1rem;
                }

                .MH-Section.Section4.Lasting-Outputs p.Eng {
                    font-size: 1rem;
                }

    .video-button {
        width: 40px;
        height: 40px;
        background-size: 16px auto;
    }

        .video-button.Play-Icon {
            background-position: 11px center;
        }

        .video-button.Pause-Icon {
            background-position: 9px center;
        }

    .MH-Section.Section5 {
        padding: 40px 0px 20px 0px !important;
    }

        .MH-Section.Section5 .Eng strong, .MH-Section.Section5 .Farsi strong {
            line-height: 2.5rem;
        }

            .MH-Section.Section5 .Eng strong span, .MH-Section.Section5 .Farsi strong span {
                line-height: 2.5rem;
            }

        .MH-Section.Section5 .Eng strong {
            font-size: 2rem;
        }

        .MH-Section.Section5 .Resume-instance .text-box .project-head {
            flex-direction: column;
            justify-content: center;
            padding: 15px 0px;
        }

            .MH-Section.Section5 .Resume-instance .text-box .project-head .Spliter {
                height: 80px;
                display: none;
            }

            .MH-Section.Section5 .Resume-instance .text-box .project-head img {
                width: 90%;
                height: auto;
                margin: 5px auto;
            }

        .MH-Section.Section5 .Resume-instance p {
            font-size: 0.9rem;
            line-height: 1.8rem;
        }

        .MH-Section.Section5 .Eng span {
            font-size: 1rem;
        }

        .MH-Section.Section5 .Farsi strong {
            font-size: 1.8rem;
            line-height: 2.7rem;
        }

        .MH-Section.Section5 .Eng, .MH-Section.Section5 .Farsi {
            font-size: 0.8rem;
        }

        .MH-Section.Section5 .Resume-instance {
            padding: 10px 15px 0px 15px;
            margin: 40px auto;
        }

    .MH-Section.Section6, .MH-Section.Section7, .MH-Section.Section8, .MH-Section.Section9 {
        padding: 60px 0px 70px 0px;
    }

        .MH-Section.Section6 .video-button.Play-Icon, .MH-Section.Section7 .video-button.Play-Icon, .MH-Section.Section8 .video-button.Play-Icon, .MH-Section.Section9 .video-button.Play-Icon {
            background-position: 10px center;
        }

        .MH-Section.Section6 .Film-Text {
            width: 340px;
        }

        .MH-Section.Section6 h2, .MH-Section.Section7 h2, .MH-Section.Section8 h2, .MH-Section.Section9 h2 {
            font-size: 1.2rem;
            line-height: 2.1rem;
        }

            .MH-Section.Section6 h2.Farsi, .MH-Section.Section7 h2.Farsi, .MH-Section.Section8 h2.Farsi, .MH-Section.Section9 h2.Farsi {
                font-size: 1.3rem;
            }

            .MH-Section.Section6 h2.Eng, .MH-Section.Section7 h2.Eng, .MH-Section.Section8 h2.Eng, .MH-Section.Section9 h2.Eng {
                margin-bottom: 20px;
                line-height: 1.7rem;
            }

        .MH-Section.Section6 h3.Eng, .MH-Section.Section7 h3.Eng, .MH-Section.Section8 h3.Eng, .MH-Section.Section9 h3.Eng {
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .MH-Section.Section6 p, .MH-Section.Section7 p, .MH-Section.Section8 p, .MH-Section.Section9 p {
            font-size: 0.7rem;
            line-height: 1.3rem;
            margin-bottom: 8px;
        }

    .MH-Section.Section10 .scrolling-wrapper .card {
        width: 85%;
    }

    .MH-Section.Section10 .services-titr p.Farsi {
        font-size: 2rem;
    }

    .MH-Section.Section10 .services-titr p.Eng {
        font-size: 2rem;
    }

    .MH-Section.Section11 .Customers_Bottom .Customer-item {
        width: 90%;
        height: 120px;
        margin: 10px auto;
    }

    .MH-Section.Section11 .Customers_Top .Customers_Text_Box {
        width: 90%;
    }

    .MH-Section.Section11 {
        background-size: 300% auto;
        background-position: center -150px;
        padding-top: 180px;
    }

        .MH-Section.Section11 .Customers_Top .Customers_Text_Box {
            margin: 0px auto;
        }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box img {
                width: 120px;
                margin: 10px auto 30px auto;
            }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Eng {
                font-size: 1.46rem;
                line-height: 1.9rem;
                letter-spacing: -0.04em;
            }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Farsi {
                font-size: 1.26rem;
                line-height: 2rem;
                letter-spacing: 0.03em;
            }
}

@media (min-width: 768px) {
    .MH-Section .text-box {
        width: 468px;
    }

    .MH-Section.Section1 .text-box1 {
        width: 400px;
    }

    .MH-Section.Section5 .Eng strong, .MH-Section.Section5 .Farsi strong {
        line-height: 5rem;
    }

        .MH-Section.Section5 .Eng strong span, .MH-Section.Section5 .Farsi strong span {
            line-height: 4rem;
        }

    .MH-Section.Section5 .Eng strong {
        font-size: 2.42rem;
    }

    .MH-Section.Section10 .scrolling-wrapper .card {
        width: 45%;
    }

    .MH-Section.Section10 .services-titr p.Farsi {
        font-size: 2rem;
    }

    .MH-Section.Section10 .services-titr p.Eng {
        font-size: 2rem;
    }

    .MH-Section.Section11 .Customers_Bottom .Customer-item {
        width: 100%;
        height: 120px;
        margin: 15px auto;
    }

    .MH-Section.Section11 {
        background-position: center top;
        background-size: contain,contain;
        padding-top: 180px;
    }

        .MH-Section.Section11 .Customers_Top .Customers_Text_Box {
        }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box img {
                width: 140px;
                margin: 10px auto 40px auto;
            }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Eng {
                line-height: 2.6rem;
                font-size: 1.76rem;
                letter-spacing: 0.015em;
            }

            .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Farsi {
                font-size: 1.26rem;
                line-height: 2rem;
                letter-spacing: 0.03em;
            }
}

@media (min-width: 992px) {

    .header {
        padding: 0px;
        direction: rtl;
    }

    header .menuToggleOuter {
        display: none;
    }

    header .hamburger-menu,
    header .mobile-menu {
        display: none;
    }

    header .desktop-menu {
        display: block;
    }

        header .desktop-menu ul li a {
            font-size: 14px;
        }

    .MH-Section {
        padding: 60px 0px;
    }

        .MH-Section .text-box {
            width: 668px;
        }

        .MH-Section .h-hr {
            margin: 10px 0px;
        }

        /*Section1*/
        .MH-Section.Section1 .text-box1 {
            width: 500px;
        }

        .MH-Section.Section1 h1, .MH-Section.Section1 h2 {
            font-size: 1.73rem;
        }

            .MH-Section.Section1 h1 strong, .MH-Section.Section1 h2 strong {
                line-height: 4.5rem;
            }

            .MH-Section.Section1 h1 strong {
                font-size: 4.2rem;
            }

            .MH-Section.Section1 h2 strong {
                font-size: 3.5rem;
            }

            .MH-Section.Section1 h1 span {
                font-size: 1.45rem;
            }

        /*End section1*/

        /*Section2*/
        .MH-Section.Section2 {
            padding: 500px 0px 0px 0px;
        }

            .MH-Section.Section2 .Introduction-titr-box {
                width: 768px;
                border-top-left-radius: 40px;
                border-top-right-radius: 40px;
            }

                .MH-Section.Section2 .Introduction-titr-box .head-text p {
                    line-height: 1.6rem;
                    font-size: 0.9rem;
                }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Eng {
                        padding: 10px 10px 0px 10px;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p.Farsi {
                        font-size: 0.81rem;
                    }

                    .MH-Section.Section2 .Introduction-titr-box .head-text p strong {
                        font-size: 1.25rem !important;
                    }

            .MH-Section.Section2 .Introduction-img-box {
                width: 768px;
            }

                .MH-Section.Section2 .Introduction-img-box img {
                    width: 370px;
                }


            .MH-Section.Section2 .Introduction-text-box {
                width: 768px;
                padding: 0px 0px 20px 0px;
            }

                .MH-Section.Section2 .Introduction-text-box p {
                    font-size: 1.2rem;
                    line-height: 2rem;
                }

                    .MH-Section.Section2 .Introduction-text-box p strong {
                        font-size: 1.3rem !important;
                    }

                    .MH-Section.Section2 .Introduction-text-box p.Eng {
                        font-size: 1.1rem;
                    }

        /*End Section2*/

        .MH-Section.Section3 .Eng, .MH-Section.Section3 .Farsi {
            font-size: 1.22rem;
        }

            .MH-Section.Section3 .Eng strong, .MH-Section.Section3 .Farsi strong {
                line-height: 5rem;
            }

                .MH-Section.Section3 .Eng strong span, .MH-Section.Section3 .Farsi strong span {
                    line-height: 4rem;
                }

            .MH-Section.Section3 .Eng strong {
                font-size: 2.83rem;
            }

            .MH-Section.Section3 .Farsi strong {
                font-size: 2.72rem;
                line-height: 5rem;
            }

            .MH-Section.Section3 .Eng span {
                font-size: 1.4rem;
                line-height: 2rem;
            }

        .MH-Section.Section3 img.logo-large {
            width: 180px;
            margin: 30px auto;
        }

        .MH-Section.Section4 {
            height: 100vh;
        }

            .MH-Section.Section4.Lasting-Outputs .content-box {
                align-items: center;
                flex-direction: row;
                justify-content: start;
                margin-bottom: 80px;
            }

            .MH-Section.Section4.Lasting-Outputs .text-box {
                width: 500px;
            }

            .MH-Section.Section4.Lasting-Outputs img {
                width: 160px;
                height: auto;
            }

            .MH-Section.Section4.Lasting-Outputs p {
                line-height: 2.4rem;
            }

                .MH-Section.Section4.Lasting-Outputs p.Farsi {
                    font-size: 1.5rem;
                }

                .MH-Section.Section4.Lasting-Outputs p.Eng {
                    font-size: 1.5rem;
                }

    .video-button {
        width: 50px;
        height: 50px;
        background-size: 19px auto;
    }

        .video-button.Play-Icon {
            background-position: 16px center;
        }

        .video-button.Pause-Icon {
            background-position: 12px center;
        }

    .MH-Section.Section5 {
        padding: 60px 0px 20px 0px !important;
    }

        .MH-Section.Section5 .Eng strong, .MH-Section.Section5 .Farsi strong {
            line-height: 5rem;
        }

            .MH-Section.Section5 .Eng strong span, .MH-Section.Section5 .Farsi strong span {
                line-height: 4rem;
            }

        .MH-Section.Section5 .Eng strong {
            font-size: 2.42rem;
        }

        .MH-Section.Section5 .Resume-instance .text-box .project-head {
            flex-direction: row;
            justify-content: space-around;
            padding: 15px 0px;
        }

            .MH-Section.Section5 .Resume-instance .text-box .project-head .Spliter {
                height: 80px;
                display: inline-block;
            }

            .MH-Section.Section5 .Resume-instance .text-box .project-head img {
                width: 340px;
                height: auto;
                margin: 0px;
            }

        .MH-Section.Section5 .Resume-instance p {
            font-size: 1.2rem;
            line-height: 2rem;
        }

        .MH-Section.Section5 .Eng span {
            font-size: 1.2rem;
        }

        .MH-Section.Section5 .Farsi strong {
            font-size: 2.33rem;
            line-height: 5rem;
        }

        .MH-Section.Section5 .Eng, .MH-Section.Section5 .Farsi {
            font-size: 1.1rem;
        }

        .MH-Section.Section5 .Resume-instance {
            padding: 10px 15px 0px 15px;
            margin: 40px auto;
        }

    .MH-Section.Section6 .video-button.Play-Icon, .MH-Section.Section7 .video-button.Play-Icon, .MH-Section.Section8 .video-button.Play-Icon, .MH-Section.Section9 .video-button.Play-Icon {
        background-position: 14px center;
    }

    .MH-Section.Section6, .MH-Section.Section7, .MH-Section.Section8, .MH-Section.Section9 {
        padding: 60px 0px 40px 0px;
    }

        .MH-Section.Section6 .Film-Text {
            width: 540px;
        }

        .MH-Section.Section6 h2, .MH-Section.Section7 h2, .MH-Section.Section8 h2, .MH-Section.Section9 h2 {
            font-size: 2rem;
            line-height: 3.4rem;
        }

            .MH-Section.Section6 h2.Farsi, .MH-Section.Section7 h2.Farsi, .MH-Section.Section8 h2.Farsi, .MH-Section.Section9 h2.Farsi {
                font-size: 2.22rem;
            }

            .MH-Section.Section6 h2.Eng, .MH-Section.Section7 h2.Eng, .MH-Section.Section8 h2.Eng, .MH-Section.Section9 h2.Eng {
                margin-bottom: 40px;
                line-height: 2.5rem;
            }

        .MH-Section.Section6 h3.Eng, .MH-Section.Section7 h3.Eng, .MH-Section.Section8 h3.Eng, .MH-Section.Section9 h3.Eng {
            margin-bottom: 40px;
            font-size: 1.2rem;
        }

        .MH-Section.Section6 p, .MH-Section.Section7 p, .MH-Section.Section8 p, .MH-Section.Section9 p {
            font-size: 1.1rem;
            line-height: 1.8rem;
            margin-bottom: 15px;
        }

    .MH-Section.Section10 .scrolling-wrapper .card {
        width: 23%;
    }

    .MH-Section.Section11 .Customers_Top .Customers_Text_Box {
        width: 550px;
        margin: 50px auto;
    }

    .MH-Section.Section11 {
        background-position: center top;
        background-size: contain,contain;
        padding-top: unset;
    }

        .MH-Section.Section11 .Customers_Top .Customers_Text_Box img {
            width: 150px;
            margin: 10px auto 40px auto;
        }

        .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Eng {
            line-height: 2.6rem;
            font-size: 1.76rem;
            letter-spacing: 0.04em;
        }

        .MH-Section.Section11 .Customers_Top .Customers_Text_Box p.Farsi {
            line-height: 2.6rem;
            font-size: 1.82rem;
            letter-spacing: 0.04em;
        }
}

@media (min-width: 1200px) {
    .MH-Section .text-box {
        width: 768px;
    }

    .MH-Section.Section1 .text-box1 {
        width: 600px;
    }

    .MH-Section.Section10 .scrolling-wrapper .card {
        width: 23%;
    }

    .MH-Section.Section10 .services-titr p.Farsi {
        font-size: 2.5rem;
    }

    .MH-Section.Section10 .services-titr p.Eng {
        font-size: 2.5rem;
    }

    .MH-Section.Section11 .Customers_Top .Customers_Text_Box {
        padding: 50px 50px 70px 50px;
    }
}

@media (min-width: 1400px) {


    .MH-Section.Section10 .scrolling-wrapper .card {
        width: 23%;
    }
}
