@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;

}

.brandlink{
    color: #1a1a1a;
    text-decoration: none;
}

.brand-cont{
    display: flex;
}

#brand {
    font-family: Yekan-bold;
}

#brandimg{
    width: 25px;
}

.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;
    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;
}

.main-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-pcf-title {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-self: center;
}

#pcf-title {
    text-align: center;
    margin: 50px 0;
    font-family: yekan-bold;
    font-size: 3rem;
}

#pcf-caption {
    color: #757575;
    text-align: center;
}

.pcf-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    justify-self: center;
    background-color: #eeeeee;
    border-radius: 16px;
    margin: 20px 0;
    padding: 5px 0;
}

.pcf-form-org {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.pcf-input {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: right;
    padding: 0 20px;
    margin: 20px 0;
}

.pcf-input-address,
.pcf-input-desc {
    width: 100%;
}

.pcf-form-input {
    font-size: 20px;
    border-radius: 16px;
    border: none;
    box-shadow: 1px 1px 2px #757575;
    padding: 0 10px;
    font-family: yekan-regular;
    font-feature-settings: "ss02";
    direction: rtl;
}

.pcf-form-input:hover {
    box-shadow: 1px 1px 5px #757575;
    transition: all 200ms;
}

.pcf-textarea {
    resize: vertical;
    padding: 10px;
}

.pcf-form-submit {
    border: none;
    background-color: #007aff;
    color: #eeeeee;
    align-self: center;
    display: flex;
    padding: 20px;
    border-radius: 16px;
    font-family: yekan-regular;
    font-feature-settings: "ss02";
}

.pcf-form-submit:hover {
    border-bottom: #6cb3ff 5px solid;
    transition: all 200ms;
}

@media (min-width: 768px) {
    .pcf-input {
        width: 100%;
    }
    .pcf-input-address,
    .pcf-input-desc {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .pcf-input {
        width: 33%;
    }
    .pcf-input-address,
    .pcf-input-desc {
        width: 100%;
    }
}