@font-face {
    font-family: Yekan-regular;
    src: url(Assets/Fonts/Yekan-Regular.woff2) format('woff2'),
        url(Assets/Fonts/Yekan-Regular.woff) format('woff');
    font-display: swap;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Yekan-normal;
    src: url(Assets/Fonts/Yekan-Normal.woff2) format('woff2'),
        url(Assets/Fonts/Yekan-Normal.woff) format('woff');
    font-display: swap;
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Yekan-bold;
    src: url(Assets/Fonts/Yekan-Bold.woff2) format('woff2'),
        url(Assets/Fonts/Yekan-Bold.woff) format('woff');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Yekan-regular;
    direction: rtl;
    font-feature-settings: "ss02";

}

@media (min-width: 768px) {
    body {
        font-size: 20px;
    }
}


@media (min-width: 1024px) {
    body {
        font-size: 15px;
    }
}


a {
    color: #007aff;
}


.navbar-section {
    background-color: #f0f0f0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-height: 5vh;
    padding: 20px 0;

}

#brand {
    font-family: Yekan-bold;
}

.navbar-center-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.navbar-section-links {
    color: #1a1a1a;
    text-decoration: none;

}

.navbar-center-section>.navbar-section-links:hover {
    border-bottom: #1a1a1a 1px solid;
    transition: all 200ms;
    margin: 0 10px;
}

#navbar-phonenumber {
    font-family: Yekan-bold;
}

.main-section {
    min-height: 100vh;
}

.footer-section {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
}

.footer-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 2vh 0;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-list-title {
    font-family: Yekan-normal;
}

.footer-list-links {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
}

.footer-list-links:hover {
    transition: all 200ms;
    margin: 3px 0px;
    font-size: 15px;
}

.footer-lic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lic {
    box-shadow: 1px 0px 10px 0.5px;
    padding: 25px 10px;
    display: flex;
    margin: 20px 10px;
    background-color: #ffffff;
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.lic>img {
    width: 50px;
}

.lic:hover {
    transform: translateY(-5px);
    transition: all 200ms;
}
