﻿@font-face {
    font-family: 'Vazirmatn';
    src: url('/fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
body,
* {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.hero {
    padding: 80px;
    background: #f8f9fc;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #1f2937;
}

.hero-title-red {
    font-size: 60px;
    font-weight: 800;
    color: #ff004f;
}

.hero-desc {
    margin-top: 20px;
    font-size: 20px;
    line-height: 2;
    color: #555;
}

.hero-image {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}


.brand-logo {
    height: 250px;
    transition: .3s;
}

    .brand-logo:hover {
        transform: scale(1.05);
    }