﻿@font-face {
    font-family: MainFont;
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/main/eot/IRANSansWeb_Light.eot');
    src: url('../fonts/main/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/main/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/main/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/main/ttf/IRANSansWeb_Light.ttf') format('truetype');
}

html, body {
    font-family: MainFont;
    direction: rtl;
    margin: 0;
    font-size: 14px;
}

body {
    background: #e9e6eb;
}

input, select, pre, textarea, button {
    font-family: inherit;
    outline: none;
}

a {
    text-decoration: none;
    color: #008aff;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center !important;
    justify-self: center !important
}

.clear-both {
    clear: both;
}

.app-only {
    display: none;
}

.main-container {
    min-width: 1008px;
}

.header {
    background: rgb(175,93,133);
    background: linear-gradient(180deg, rgba(175,93,133,1) 0%, rgba(77,51,117,1) 100%);
    padding: 40px;
    position: relative;
    overflow-x: hidden;
    box-shadow: 0 0 100px #ffffffb8 inset;
}

.top-menu {
    background: #ffffff1c;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: grid;
    align-items: center;
    grid-template-columns: auto 3fr 1fr;
    grid-column-gap: 15px;
    justify-items: end;
    position: relative;
    z-index: 1;
}
    .top-menu .top-logo {
        font-size: 0;
    }

    .top-menu .top-logo > img {
        max-height: 48px;
    }

    .top-menu a {
        color: #fff;
    }

    .top-menu > div {
        text-align: left;
    }

    .top-menu ul {
        list-style: none;
        margin: 0;
        display: grid;
        grid-auto-flow: column;
        justify-content: end;
    }

        .top-menu ul li {
            margin-left: 45px;
        }

            .top-menu ul li a {
                border-bottom: 2px solid transparent;
                transition: all .3s ease-in-out;
            }

                .top-menu ul li a:hover {
                    border-bottom: 2px solid #fff;
                    text-shadow: 0 0 2px #fff;
                }

.login-btn {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 7px;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 5px 13px;
    align-items: center;
    transition: padding .3s ease-in-out;
}

    .login-btn:hover {
        padding: 5px 25px;
    }

.header-bg-helper-1 {
    position: absolute;
    top: 0;
    left: -50%;
    bottom: 0;
    right: 0;
    background-image: url('../images/bg-art.svg');
    background-repeat: no-repeat;
    background-position: center left;
    opacity: .1;
}

.header-bg-helper-2 {
    position: absolute;
    top: 0;
    left: 0%;
    bottom: 0;
    right: -50%;
    background-image: url('../images/bg-art.svg');
    background-repeat: no-repeat;
    background-position: center right;
    opacity: .1;
}

.header-title {
    display: grid;
    grid-template-columns: 3fr 2fr;
    margin-top: 5%;
    padding: 60px;
    color: #fff;
    grid-column-gap: 25px;
    z-index: 1;
    position: relative;
}

    .header-title .links {
        margin-top: 75px;
        display: grid;
        grid-template-columns: auto auto;
        grid-column-gap: 15px;
        justify-content: center;
    }

        .header-title .links a {
            border: 2px solid #fff;
            border-radius: 10px;
            padding: 5px 10px;
            text-align: center;
            color: #fff;
        }

            .header-title .links a.alt {
                color: #975475;
                background: #fff;
            }


.main-content {
    margin: 50px;
    margin-top: -75px;
    padding: 25px;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    background: #ffffffa6;
    border-radius: 45px;
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: 0 0 15px -11px #000;
}


    .main-content .top-image {
        max-width: 50%;
    }

.promo {
    color: #4D3375;
}

.promo-items {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 15px;
}

    .promo-items .line {
        width: 5px;
        height: 100%;
        background: #4D3375;
        margin: 0 50px;
        border-radius: 5px;
    }

.promo-item {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 15px;
    border-radius: 20px;
    border: 2px solid #4D3375;
    grid-column-gap: 12px;
    margin-top: 35px;
    position: relative;
    align-items: center;
    width: 70%;
    transition: all .3s ease-in-out;
}

    .promo-item:hover {
        box-shadow: 0 0 0 1px #000;
        cursor: default;
        background: #fbf3f8;
    }

.first-col .promo-item::before {
    content: "";
    position: absolute;
    left: -50px;
    top: calc(50% - 1px);
    right: calc(100% + 2px);
    height: 2px;
    background: #4D3375;
}

.first-col .promo-item::after {
    content: "";
    position: absolute;
    left: calc(100% + 50px);
    top: calc(50% - 9px);
    right: calc(100% + 44px);
    height: 15px;
    width: 15px;
    background: #4D3375;
    border-radius: 50%;
    border: 3px solid #fff;
}

.first-col .promo-item {
    float: left;
}

.second-col .promo-item {
    grid-template-columns: auto 1fr;
    align-items: start;
}

    .second-col .promo-item > div {
        text-align: right;
    }

.promo-item > div {
    font-size: 110%;
    text-align: left;
}

    .promo-item > div div {
        font-weight: bold;
    }

    .promo-item > div p {
        font-size: 75%;
        opacity: .9;
        height: 36px;
        overflow: hidden;
    }

.promo-items .second-col {
    margin-top: 80px;
}

.promo-item img {
    max-width: 80px;
}

.second-col .promo-item::before {
    content: "";
    position: absolute;
    left: calc(100% + 2px);
    top: calc(50% - 1px);
    right: -50px;
    height: 2px;
    background: #4D3375;
}

.second-col .promo-item::after {
    content: "";
    position: absolute;
    left: calc(100% + 52px);
    top: calc(50% - 11px);
    right: -64px;
    height: 15px;
    width: 15px;
    background: #4D3375;
    border-radius: 50%;
    border: 3px solid #fff;
}

.headline {
    font-size: 200%;
    font-weight: bold;
    margin-top: 70px;
    color: #4D3375;
}

.plans {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    margin: 15px auto;
    max-width: 1200px;
}

    .plans .plan {
        padding: 25px 7px;
        border-radius: 32px;
        box-shadow: -3px 1px 6px 0px #d0d0d0;
        text-align: center;
        border: 2px solid transparent;
        cursor: default;
    }

        .plans .plan:hover {
            border: 2px solid #384456;
        }

        .plans .plan ul {
            margin: 0;
            padding: 0;
            text-align: right;
            margin-right: 25px;
            margin-top: 25px;
            margin-bottom: 55px;
            font-size: 11px;
            font-weight: bold;
        }

            .plans .plan ul li {
                padding-top: 10px;
            }

.buy-btn {
    border-radius: 16px;
    border: 1px solid #555;
    display: block;
    max-width: 120px;
    margin: 0 auto;
    cursor: default;
    padding: 6px 30px;
    margin-top: 10px;
    color: #333;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

.footer {
    background: rgb(77,51,117);
    background: linear-gradient(180deg, rgba(77,51,117,1) 0%, rgba(175,93,133,1) 100%);
    padding: 25px;
    margin-top: -85px;
}

.footer-top {
    margin-top: 25px;
    text-align: center;
    color: #fff;
}

.footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 15px;
    justify-items: center;
}

    .footer-btns a {
        border: 2px solid #fff;
        border-radius: 8px;
        background: #ffffff2e;
        color: #fff;
        display: grid;
        grid-template-columns: 48px 1fr;
        align-items: center;
        min-width: 50%;
        transition: all .3s ease-in-out;
    }

        .footer-btns a:hover {
            background: #d8b7d27d;
            text-shadow: 0 0 3px black;
            font-size: 110%;
        }

        .footer-btns a span {
            border-left: 2px solid white;
            padding: 10px;
            text-align: center;
            background: #ffffff3c;
            border-radius: 8px 0 0 8px;
            font-size: 0;
        }

.footer-middle {
    margin: 25px;
    margin-top: 50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.footer-socials .links {
    display: grid;
    justify-content: center;
    grid-auto-flow: column;
    grid-column-gap: 15px;
}

.footer-middle .menus {
    position: absolute;
    left: 85px;
    top: 10px;
    text-align: left;
}

    .footer-middle .menus a {
        color: #fff;
        display: block;
        margin-top: 15px;
    }

.footer-socials .links a img {
    border-radius: 8px;
    transition: all .3s ease-in-out;
}

    .footer-socials .links a img:hover {
        background: #52525238;
    }

.footer-bottom {
    margin: 40px;
    border: 2px solid #fff;
    background: #ffffff3d;
    padding: 25px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.contact {
    text-align: center;
    color: #fff;
}

.licenses {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    align-items: center;
    justify-content: end;
}

    .licenses > * {
        max-height: 140px;
        overflow: hidden;
        background: white;
        border-radius: 12px;
        padding: 3px;
    }

.contact img {
    max-width: 220px;
}

.news-letter {
    color: #fff;
}

.news-letter-input {
    border: 2px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    background: #fff3;
    display: inline-block;
    box-shadow: 0 0 20px inset #00000038;
}

    .news-letter-input button {
        background: none;
        border: none;
        border-left: 2px solid #fff;
        border-radius: 8px 0 0 8px;
        color: #fff;
        padding: 15px;
    }

    .news-letter-input input {
        background: none;
        border: none;
        color: #fff;
        padding: 15px;
    }

.mobile-top-menu {
    display: none;
}

.contact-page {
    background: #ffffffe0;
    padding: 25px;
    max-width: 60%;
    margin: 50px auto;
    margin-bottom: 75px;
    display: grid;
    justify-items: center;
    border-radius: 20px;
    box-shadow: 1px 10px 22px -11px #000;
}

.contact-details {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 20px;
    min-width: 50%;
}

.contact-items {
    display: grid;
    align-items: center;
}

    .contact-items > div {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-column-gap: 15px;
        border-bottom: 1px dashed #999;
        justify-items: end;
    }

.alt-contact .header {
    background: none;
}

.alt-contact .footer {
    background: none;
}

.alt-contact .main-container {
    background: linear-gradient(180deg, rgba(175,93,133,1) 0%, rgba(77,51,117,1) 100%);
}
