﻿* {
    padding: 0;
    margin: 0;
}

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

a {
    text-decoration: none;
}


a, button, input {
    outline: none;
}

a, button, input, span, textarea, h1, h2, h3, h4, h5, h6, p {
    font-family: shabnam !important;
}


body {
    direction: rtl;
    font-family: shabnam;
    background-color: #f8f8f8;
    min-height: 100vh;
    overflow-x: hidden;
}

.position-relative {
    position: relative;
}

.disabled {
    color: #AAAAAA !important;
    cursor: default;
}

.hide {
    display: none !important;
}

.bg-red-slow {
    background-color: rgba(177,31,76,.3);
}

.bg-blue-slow {
    background-color: rgba(111,176,232,.5);
}

.box-shadow-none {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

header {
    width: 100%;
    height: 80px;
    background-color: #c11b4e;
    /*#FF2C6D;*/
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 10px #c11b4e;
    -webkit-box-shadow: #c11b4e 0 0 10px;
}

    header > nav {
        width: 1480px;
        height: 80px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        max-width: 100%;
    }

        header > nav > button {
            display: none;
            width: 36px;
            height: 36px;
            border: 1px solid white;
            border-radius: 8px;
            outline: none;
            background-color: transparent;
            position: absolute;
            left: 15px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

.res-menu-line1 {
    background-color: white;
    width: 22px;
    height: 1px;
    display: block;
    transition: all .5s ease-in-out;
}

.res-menu-line2 {
    background-color: white;
    width: 22px;
    height: 1px;
    display: block;
    margin-top: 5px;
    transition: all .5s ease-in-out;
}

.res-menu-line3 {
    background-color: white;
    width: 22px;
    height: 1px;
    display: block;
    margin-top: 5px;
    transition: all .5s ease-in-out;
}

.rotA45Top {
    margin-top: 0px;
    transform: rotate(-45deg);
}

.rotA45Middle {
    display: none;
}

.rotA45Bottom {
    margin-top: 0px;
    transform: rotate(45deg);
}


header > nav > a:nth-child(1) {
    position: absolute;
    right: 0;
}

    header > nav > a:nth-child(1) > img {
        width: 260px;
    }

header > nav > div {
    height: 80px;
    display: flex;
    align-items: center;
}

    header > nav > div > ul > li {
        list-style: none;
        display: inline-block;
    }

        header > nav > div > ul > li > a, header > nav > div > ul > li > span {
            color: white !important;
            font-weight: bold;
            text-decoration: none !important;
            padding: 0 12px;
            font-size: 16px;
            line-height: 48px;
            position: relative;
            transition: all .25s ease-in-out;
            margin: 0 5px;
            display: flex;
            align-items: center;
            grid-gap: 10px;
            cursor: default;
        }



            header > nav > div > ul > li > span > ul {
                background-color: white;
                border-radius: 3px;
                width: 220px;
                position: absolute;
                right: 0;
                top: 48px;
                box-shadow: 0 0 10px #DDDDDD;
                -webkit-box-shadow: #DDDDDD 0 0 10px;
                padding: 10px 0;
                display: none;
            }

            header > nav > div > ul > li > span:hover > ul {
                display: block;
            }

            header > nav > div > ul > li > span > ul > li {
                list-style: none;
                height: 35px;
                display: flex;
                align-items: center;
            }

                header > nav > div > ul > li > span > ul > li > a {
                    color: #808080;
                    font-size: 15px;
                    padding: 0 15px;
                    text-decoration: none !important;
                    transition: all .25s ease-in-out;
                }

                    header > nav > div > ul > li > span > ul > li > a:hover {
                        color: #c11b4e;
                    }

            header > nav > div > ul > li > a > img, header > nav > div > ul > li > span > img {
                width: 10px;
                transition: all .25s ease-in-out;
                transform: rotate(-90deg);
            }

            header > nav > div > ul > li > a:hover > img, header > nav > div > ul > li > span:hover > img {
                transform: rotate(90deg);
            }

            header > nav > div > ul > li > a > span:last-child, header > nav > div > ul > li > span > span:last-child {
                display: block;
                height: 3px;
                border-radius: 20px;
                width: 0;
                background-color: white;
                position: absolute;
                bottom: 0px;
                right: 0;
                transition: all .25s ease-in-out;
            }

        header > nav > div > ul > li.active > a > span:last-child, header > nav > div > ul > li.active > span > span:last-child {
            width: 100%;
        }

        header > nav > div > ul > li > a:hover > span:last-child, header > nav > div > ul > li > span:hover > span:last-child {
            width: 100%;
        }


footer {
    background-image: url('images/footer-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: revert;
    width: 100%;
    min-height: 400px;
    padding-top: 60px;
    background-color: #c11b4e;
    box-shadow: 0 0 10px #c11b4e;
    -webkit-box-shadow: #c11b4e 0 0 10px;
}

    footer > div:nth-child(1) {
        width: 1480px;
        max-width: 100%;
        margin: auto;
        display: flex;
        align-items: flex-start;
        grid-gap: 40px;
    }

        footer > div:nth-child(1) > div {
            width: calc(100% / 3);
            display: flex;
            flex-direction: column;
        }



            footer > div:nth-child(1) > div > h3 {
                font-size: 26px;
                color: white;
                font-weight: bold;
                padding-bottom: 15px;
                border-bottom: 1px solid #DDDDDD;
            }

            footer > div:nth-child(1) > div > span {
                font-size: 16px;
                color: white;
                margin-top: 15px;
                display: flex;
                align-items: center;
                grid-gap: 10px;
            }

                footer > div:nth-child(1) > div > span > a {
                    font-size: 16px;
                    color: white;
                    display: flex;
                    align-items: center;
                    text-decoration: none;
                }

                footer > div:nth-child(1) > div > span > svg {
                    width: 25px;
                }

                footer > div:nth-child(1) > div > span:nth-child(2) > svg {
                    width: 35px;
                }

            footer > div:nth-child(1) > div > ul {
                margin-top: 5px;
            }

                footer > div:nth-child(1) > div > ul > li {
                    list-style: none;
                    margin-top: 10px;
                }

                    footer > div:nth-child(1) > div > ul > li > a {
                        font-size: 16px;
                        color: white;
                        text-decoration: none;
                        display: flex;
                        align-items: center;
                        grid-gap: 10px;
                        transition: all .25s ease-in-out;
                    }

                        footer > div:nth-child(1) > div > ul > li > a:hover {
                            color: #2ae1db;
                        }

                        footer > div:nth-child(1) > div > ul > li > a > img {
                            width: 15px;
                        }

    footer > div:nth-child(2) {
        width: 1480px;
        max-width: 100%;
        margin: auto;
        height: 1px;
        background-color: white;
        margin-top: 20px;
        opacity: .5;
    }

    footer > div:nth-child(3) {
        width: 1480px;
        max-width: 100%;
        margin: auto;
        padding: 20px 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        footer > div:nth-child(3) > span {
            color: #DDDDDD;
            font-size: 14px;
        }

        footer > div:nth-child(3) > div {
            position: absolute;
            left: 0px;
            top: 15px;
            display: flex;
            align-items: center;
            grid-gap: 10px;
        }

            footer > div:nth-child(3) > div > a {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 40px;
                width: 40px;
                background-color: #d10e4a;
                transition: all .25s ease-in-out;
                border-radius: 5px;
            }

                footer > div:nth-child(3) > div > a > svg {
                    width: 20px;
                    fill: white;
                    transition: all .25s ease-in-out;
                }

                footer > div:nth-child(3) > div > a:hover {
                    background-color: #ff6a00;
                }

                    footer > div:nth-child(3) > div > a:hover > svg {
                        fill: #2ae1db;
                    }

.svg-w25{
    width: 25px !important;
}

.bg-wheat{
    background-color: wheat;
}