* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Regular.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Regular.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Medium.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Medium.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-DemiBold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-DemiBold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-DemiBold.ttf') format('ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Bold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Bold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-ExtraBold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-ExtraBold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-ExtraBold.ttf') format('ttf');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Black.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Black.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Black.ttf') format('ttf');
    font-weight: 900;
    font-style: normal;
}

:root {
    --p-color: #346DFE;
    --s-color: #373737;
    --w-color: #FFFFFF;
    --l-color: #E8E8E8;

}

body {
    font-family: 'iransans', sans-serif;
    background: var(--w-color);
    direction: rtl;
}

body,
input,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
    color: var(--s-color);
}

p {
    font-weight: 400;
}

.hv-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.main-title h3 {
    font-size: 28px;
    margin-right: 50px;
}

.main-title .hv-title::before {
    content: "";
    background-image: url('./assets/icons/s-title.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 40px;
    height: 28px;
    position: absolute;
    top: 4px;
    right: 0;
}

.hv-title-light h3 {
    font-size: 28px;
    margin-right: 50px;
    color: var(--w-color);
}

.main-title .hv-title-light::before {
    content: "";
    background-image: url('./assets/icons/h-title.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 40px;
    height: 28px;
    position: absolute;
    top: 4px;
    right: 0;
}


.ads-banner-s {
    display: none;
    margin-top: 40px !important;
}

.ads-banner-l img, .ads-banner-s img {
    border-radius: 32px !important;
}

.ads-banner-l {
    margin-top: 100px !important;
}


@media (max-width: 1200px) {
    .main-title {
        margin-bottom: 26px;
    }

    .main-title h3 {
        font-size: 26px;
        margin-right: 46px;
    }

    .main-title .hv-title::before,
    .main-title .hv-title-light::before {
        width: 36px;
        height: 24px;
    }
    
    .ads-banner-l {
    margin-top: 80px
}

}

@media (max-width: 992px) {

    .main-title {
        margin-bottom: 24px;
    }

    .main-title h3 {
        font-size: 24px;
        margin-right: 44px;
    }

    .main-title .hv-title::before,
    .main-title .hv-title-light::before {
        width: 32px;
        height: 22px;
    }
    
    .ads-banner-l {
    margin-top: 60px
}

}

@media (max-width: 768px) {
    .main-title {
        margin-bottom: 22px;
    }

    .main-title h3 {
        font-size: 22px;
        margin-right: 42px;
    }

    .main-title .hv-title::before,
    .main-title .hv-title-light::before {
        width: 30px;
        height: 20px;
    }
    
    .ads-banner-l {
    display: none;
}

.ads-banner-s {
    display: block;
}


}

@media (max-width: 480px) {
    .statistics {
        margin-top: 20px;
    }

    .main-title {
        margin-bottom: 18px;
    }

    .main-title h3 {
        font-size: 19px;
        margin-right: 32px;
    }

    .main-title .hv-title::before,
    .main-title .hv-title-light::before {
        width: 26px;
        height: 18px;
    }
}

@media (max-width: 390px) {
    .main-title {
        margin-bottom: 16px;
    }
}

@media (max-width: 360px) {
    .main-title {
        margin-bottom: 10px;
    }

    .main-title h3 {
        font-size: 18px;
        margin-right: 30px;
    }

    .main-title .hv-title::before,
    .main-title .hv-title-light::before {
        width: 22px;
        height: 16px;
    }
}


@media (max-width: 1400px) {
    .hv-container {
        padding: 0 48px;
    }
}

@media (max-width: 1200px) {

    .hv-btn {
        font-size: 17px;
        width: 180px;
        height: 52px;
    }
}

@media (max-width: 992px) {

    .hv-container {
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    .hv-container {
        padding: 24px;
    }
}

@media (max-width: 414px) {

    .hv-container {
        padding: 20px;
    }
}

@media (max-width: 390px) {
    .hv-btn {
        font-size: 15px;
        width: 100%;
        height: 45px;
    }
}

@media (max-width: 375px) {
    .hv-container {
        padding: 20px;
    }
}

@media (max-width: 360px) {

    .hv-container {
        padding: 16px;
    }
}