@charset "utf-8";

@font-face {
    font-family: 'abar';
    src: url('../font/AbarLow-Bold.woff2') format('woff2'),
    url('../font/AbarLow-Bold.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'vazir';
    src: url('../font/vazirmatn\(1\).woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url('https://uploadkon.ir/uploads/f5e606_26Layer-91.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

p {
    padding: 0 !important;
    margin: 0 !important
}

a:hover {
    color: #000;
    text-decoration: none !important;
}

/* start header  */

.Header {
    align-items: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    height: 100px;
    justify-content: center;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 10;
}

.Header.has-mobile-button .MobileNav-trigger {
    display: flex;
}

.Header-inner {
    display: flex;
    justify-content: space-between;
    transition: height 0.4s ease;
    width: 80vw;
    align-items: baseline;
    background: #fff;
    border-radius: 50px;
    padding: 8px 15px;
}



.Header-nav {
    display: flex;
    flex-wrap: wrap;
    height: 0;
    max-height: 105px;
    max-width: 940px;
    overflow: hidden;
}

.Header-nav-item {
    align-items: center;
    align-self: center;
    color: #000;
    display: flex;
    flex-shrink: 0;
    font-family: vazir;
    font-size: 16px;
    padding: 0 10px;
}

.Header-nav-item:last-child {
    margin-right: 0;
}

.Header-nav-item a {
    color: black;
    text-decoration: none;
    transition: all 0.3s;
}

.Header-nav-item a:hover {
    color: #bdbdbd;
}

.Header-nav-item:hover {
    color: darkblue !important;
}

.Header-nav:hover .Header-nav-item {
    color: rgba(0, 0, 139, 0.5);
}

@media screen and (min-width: 768px) {
    .Header-nav {
        height: auto;
    }
}

.container {
    align-content: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    width: 80vw;
}

.container .card {
    background: white;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    height: 50vh;
    margin-bottom: 10%;
    width: 100%;
}

.MobileNav {
    height: calc(100% - 55px);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

.MobileNav-inner {
    background: white;
    display: flex;
    flex-direction: column;
    height: 150%;
    max-width: 100%;
    overflow-y: scroll;
    position: absolute;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
    width: 100%;
    padding : 90px 0 0 0
}

.MobileNav-inner .Button {
    letter-spacing: 1px;
    line-height: 3.8;
    margin: 20px -8px 20px;
    width: 100%;
}

.MobileNav-inner .MobileNav-trigger {
    display: none;
    position: absolute;
    right: 38px;
    top: 30px;
}

.MobileNav-item {
    color: navy;
    display: none;
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin: 26px 0;
    transition: opacity 0.3s ease;
}

.MobileNav-item.is-visible {
    display: block;
}

.MobileNav-item-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.MobileNav-item-title a {
    color: black;
    flex-shrink: 0;
    text-decoration: none;
    font-family: vazir;
    font-weight: 100;
    color: #000;
    font-size: 16px;
}

.MobileNav-item-title span {
    min-width: 32px;
    position: relative;
    width: 100%;
}

.MobileNav-item-title span::after {
    border-left: 2px solid lightgray;
    border-top: 2px solid lightgray;
    content: "";
    display: block;
    height: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-75%) rotate(225deg);
    transition: transform 0.2s ease;
    width: 14px;
}

.MobileNav-overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background 0.4s ease;
    width: 100%;
}

.MobileNav-trigger {
    align-items: center;
    align-self: center;
    cursor: pointer;
    display: none;
    flex-shrink: 0;
    height: 100%;
}

.MobileNav-trigger-inner {
    height: 12px;
    position: relative;
    width: 24px;
}

.MobileNav-trigger-inner::after {
    background: #000;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 0;
    transform-origin: 0% 50%;
    transition: transform 0.2s ease;
    width: 100%;
}

.MobileNav-trigger-inner::before {
    background: #000;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform-origin: 0% 50%;
    transition: transform 0.2s ease;
    width: 100%;
}

.MobileNav-trigger.is-active .MobileNav-trigger-inner::after {
    transform: translateY(-4px) rotate(45deg);
}

.MobileNav-trigger.is-active .MobileNav-trigger-inner::before {
    transform: translateY(3px) rotate(-45deg);
}

@media screen and (min-width: 481px) {
    .MobileNav {
        height: 100%;
        top: 0;
        z-index: 11;
    }

    .MobileNav-inner {
        padding-top: 90px;
        transform: translate(100%, 0);
        width: 375px;
    }

    .MobileNav-inner .MobileNav-trigger {
        display: block;
    }

    .MobileNav-trigger {
        display: none;
    }
}

@media screen and (min-width: 871px) {
    .MobileNav-inner {
        padding-top: 160px;
    }
}

.is-mobilenav-open {
    overflow-y: hidden;
}

.is-mobilenav-open .MobileNav {
    pointer-events: all;
}

.is-mobilenav-open .MobileNav-inner {
    transform: translate(0, 0);
    visibility: visible;
}

.is-mobilenav-open .MobileNav-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.left-header a p {
    background: #000;
    border-radius: 50px;
    padding: 6px 10px !important;
    font-family: vazir;
    font-size: 16px;
    color: #fff;
}

/* end header */
/* start menu  */
.content-menu {
    margin: 80px 0 0 0;
}

.content-menu h2 {
    font-family: abar;
    font-size: 34px;
    color: #000;
}

.content-menu h4 {
    font-family: vazir;
    font-size: 24px;
    color: #000;
}

.content-menu p {
    font-family: vazir;
    font-size: 16px;
    color: #000;
}

.btn-menu .btn-link {
    background: #fae4b8;
    padding: 5px 10px;
    border-radius: 50px;
    font-family: vazir;
    font-size: 16px;
    color: #000;
    border: 1px solid #fae4b8;
    transition: all 0.3s !important;
}

.btn-menu .btn-link:hover {
    background: none;
    padding: 5px 10px;
    border-radius: 50px;
    font-family: vazir;
    font-size: 16px;
    color: #000;
    border: 1px solid #fae4b8;

}

.btn-menu .btn-qaleb {
    background: #000;
    padding: 5px 10px;
    border-radius: 50px;
    font-family: vazir;
    font-size: 16px;
    transition: all 0.3s !important;

}

.btn-menu .btn-qaleb:hover {
    background: #bdbdbd;
}

.btn-menu .btn-qaleb:hover p {
    color: #000;
}

.btn-menu .btn-qaleb p {
    color: #fff;

}

/* end menu  */
/* start content subscription */
.content-subscription .subscription {
    background: #fff;
    border-radius: 30px;
    padding: 30px
}

.content-subscription .footer-subscription {
    background: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.text-subscription h2 {
    font-family: abar;
    font-size: 34px;
    color: #000;
}

.content-subscription .subscription h3 {
    font-family: abar;
    font-size: 26px;
    color: #000;
}

.content-subscription .subscription p {
    font-family: vazir;
    font-size: 16px;
    color: #000;
}

.content-subscription .subscription svg {
    background: #fae4b8;
    padding: 10px;
    border-radius: 10px;

}

.content-subscription .footer-subscription p {
    font-family: vazir;
    font-size: 16px;
    color: #000;
}

.content-subscription .footer-subscription span {
    font-family: vazir;
    font-size: 16px;
    color: #000;
    background: #fae4b8;
    padding: 0 10px;
    border-radius: 50px;
}

/* end content subscription */
/* start blok  */
.text-blok {
    font-family: abar;
    font-size: 34px;
    color: #000;
}

.content-blok {
    border: 1px solid #000;
    padding: 20px !important;
    border-radius: 30px;

}

.content-blok h3 {
    font-family: abar;
    font-size: 26px;
    color: #000;
}

.content-blok img {
    border-radius: 10px;
}

.content-blok p {
    font-family: vazir;
    font-size: 16px;
    color: #000;
    text-align: justify;
}

.footer-content .social-footer p {
    font-family: vazir;
    font-size: 16px;
    color: #000;
}

.footer-content {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
    padding: 30px !important;
}

.footer-content .social-footer svg {
    font-size: 16px;
    color: #fff;
    background: #000;
    padding: 10px;
    border-radius: 50px;
}

.footer-content p {
    font-family: vazir;
    font-size: 16px;
    color: #000;
    text-align: justify;
}