/*
Theme Name: Hinza
Author URI: https://hinzaco.com/
Version: 1.0
*/
/* ---------- add font -----------------*/

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/IranSans/Light/IRANSansWeb_Light.eot') format('eot'),
    url('assets/fonts/IranSans/Light/IRANSansWeb_Light.woff') format('woff'),
    url('assets/fonts/IranSans/Light/IRANSansWeb_Light.woff2') format('woff2'),
    url('assets/fonts/IranSans/Light/IRANSansWeb_Light.ttf') format('truetype');
}

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/IranSans/Regular/IRANSansWeb.eot') format('eot'),
    url('assets/fonts/IranSans/Regular/IRANSansWeb.woff') format('woff'),
    url('assets/fonts/IranSans/Regular/IRANSansWeb.woff2') format('woff2'),
    url('assets/fonts/IranSans/Regular/IRANSansWeb.ttf') format('truetype');
}

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.eot') format('eot'),
    url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.woff') format('woff'),
    url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.woff2') format('woff2'),
    url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.ttf') format('truetype');
}

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.eot') format('eot'),
    url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.woff') format('woff'),
    url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.woff2') format('woff2'),
    url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.ttf') format('truetype');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: normal;
    src: url('assets/fonts/shabnam/ttf/Shabnam-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-FD-WOL.woff2') format('woff2'),
    url('assets/fonts/shabnam/woff/Shabnam-FD-WOL.woff') format('woff');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: bold;
    src: url('assets/fonts/shabnam/ttf/Shabnam-Bold-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-Bold-FD-WOL.woff2') format('woff2'),
    url('assets/fonts/shabnam/woff/Shabnam-Bold-FD-WOL.woff') format('woff');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/shabnam/ttf/Shabnam-Light-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-Light-FD-WOL.woff2') format('woff2'),
    url('assets/fonts/shabnam/woff/Shabnam-Light-FD-WOL.woff') format('woff');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/shabnam/ttf/Shabnam-Medium-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-FD-WOL.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('assets/fonts/shabnam/woff/Shabnam-FD-WOL.woff') format('woff');
}



:root {
    --primary-color: #003e73;
    --secondary-color: #0b72c0;
    --third-color: #f5527f;
    --third-color-dark: #f3634f;
    --accent-color: #FFC400;
    --accent-color-dark: #fea720;
    --text-color: #333333;
    --text-color-dark: #121212;
    --text-color-light: #7a7a7a;
    --border-color-light: #e6e6e6;
    --border-color-dark: #b7b7b7;
    --background-color: #f1f1f1;
    --background-color-secondary: #e5dedf;
    --text-font-family: "IranSans";
    --digits-font-family: shabnam-digits;
}

input,
input::-webkit-input-placeholder {
    font-size: 14px !important;
    font-family: var(--text-font-family) !important;
}

body , p{
    font-size: 14px;
    font-family: var(--text-font-family);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
}

/* ------------- reset css ----------------*/
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    color: var(--text-color-dark);
}

html {
    scroll-behaviour: smooth;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 0;
    background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* -------------- General / Start ------------- */
.btn {
    line-height: 1;
}

.button,
.btn .elementor-button {
    position: relative;
    background: var(--primary-color) !important;
    color: #fff;
    fill: #fff;
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all .2s ease-in-out;
    display: inline-block;
}

.btn .elementor-button * {
    line-height: 40px;
    color: #fff;
}

.button:hover,
.btn .elementor-button:hover {
    background: var(--accent-color) !important;
}

.btn-border .elementor-button {
    position: relative;
    background: transparent !important;
    color: var(--text-color);
    fill: var(--text-color);
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--text-color);
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

.btn-border .elementor-button * {
    line-height: 40px;
    color: var(--text-color);
}

.btn-border .elementor-button .elementor-button-icon {
    transform: rotate(-45deg) translate(2px, -1px);
    transition: all .5s ease-in-out;
}

.btn-border .elementor-button:hover {
    color: #fff;
    fill: #fff;
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-border .elementor-button:hover * {
    color: #fff;
}

.btn-border .elementor-button:hover .elementor-button-icon {
    transform: rotate(0deg) translate(0, 0);
}

.section {
    padding: 80px 15px;
}

.section .section-subtitle .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 30px;
    position: relative;
}

.section .section-title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 50px;
    line-height: 1.3;
    font-weight: bold;
    color: var(--text-color);
    position: relative;
    margin-bottom: 20px;
}

.section .desc * {
    font-size: 16px;
    font-family: var(--text-font-family);
    text-align: justify;
}

.section .desc {
    text-align: justify;
}

.section .desc strong,
.section .desc strong *,
.section .desc b,
.section .desc b * {
    font-weight: bold;
}

.section .desc a {
    color: var(--accent-color);
}

.section .desc ul,
.section .desc ol {
    padding-right: 20px;
    margin-right: 0;
}

.section .desc ul li:not(:last-child),
.section .desc ol li:not(:last-child) {
    margin-bottom: 5px;
}

.section .desc ul {
    list-style: disc;
}

.section .desc ol {
    list-style: arabic-indic;
}

.absolute-link {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 30px;
    right: 0;
    z-index: 1;
    opacity: 0.5;
}


.swiper {
    position: relative;
}

.swiper .swiper-pagination {
    z-index: 1 !important;
}

.text-center {
    text-align: center;
}

.form-control {
    padding: 0 15px;
    line-height: 40px;
    border: 1px solid var(--border-color-dark);
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--text-font-family);
    color: var(--secondary-color);
    text-align: right;
}

textarea.form-control {
    padding: 10px 15px;
    line-height: 26px;
    height: 98px;
}

label.resume-upload {
    display: inline-block;
    text-align: center;
    width: 92px;
    padding: 0 5px;
    line-height: 33px;
    border-radius: 5px;
    border: 1px solid var(--text-color-dark);
    background: #fff;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.wpcf7-form-control-wrap[data-name="resume"] {
    margin-right: -92px;
}

.wpcf7-spinner {
    position: absolute;
    transform: translateX(250%);
    margin: 0;
}

@media (max-width: 991.98px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .section .section-subtitle .elementor-heading-title {
        font-size: 15px;
        line-height: 1.2;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section .section-subtitle .elementor-heading-title {
        font-size: 13px;
    }
}

/* --------------General/End------------- */
/* -----------Header /Start--------------- */
.header {
    /*background: var(--primary-color);*/
    position: absolute !important;
    width: 100% !important;
    z-index: 100 !important;
    top: 0;
    right: 0;
}

.header .btn .elementor-button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.header .navbar .elementor-icon-list-items {
    gap: 10px;
}

.header .navbar .elementor-icon-list-items .elementor-icon-list-item {
}

.header .navbar .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text {
    font-family: var(--text-font-family);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.header .logo {
    max-width: 150px !important;
    height: 60px;
}

.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(300%) invert(1);
}

/* -----------Header /End--------------- */
/*----------- Footer / Start --------------*/
.footer {
    background: var(--primary-color);
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer .logo {
    max-width: 130px !important;
    height: 40px;
}

.footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

.footer .footer-title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: #fff;
}

.footer .desc * {
    color: #fff;
    opacity: 0.7;
}

.footer .footer-nav .hfe-nav-menu .hfe-menu-item {
    font-family: var(--text-font-family);
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    opacity: 0.7;
    padding-right: 0 !important;
}

.footer .footer-nav .hfe-nav-menu .hfe-menu-item:hover {
    opacity: 1;
    color: #fff;
}

.footer .socials .elementor-social-icons-wrapper .elementor-social-icon {
    background: transparent !important;
    width: auto;
    height: auto;
}

.footer .socials .elementor-social-icons-wrapper .elementor-grid-item:not(:last-child) {
    margin-left: 15px;
}

.footer .socials .elementor-social-icons-wrapper .elementor-social-icon svg {
    font-size: 24px;
    color: var(--accent-color);
    fill: var(--accent-color);
    transition: all 0.5s;
}

.footer .socials .elementor-social-icons-wrapper .elementor-social-icon:hover svg {
    fill: #fff;
}

.footer .contact-info .elementor-icon-list-item:not(:last-child) {
    padding-bottom: 10px;
}

.footer .contact-info .elementor-icon-list-item .elementor-icon-list-icon {
    height: 20px;
    align-items: center;
}

.footer .contact-info .elementor-icon-list-item .elementor-icon-list-icon svg {
    margin: 0;
    color: var(--accent-color);
    fill: var(--accent-color);
}

.footer .contact-info .elementor-icon-list-item .elementor-icon-list-text {
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    opacity: 0.7;
}

.copyright {
    background: var(--primary-color);
    padding: 10px 15px;
    font-size: 12px;
    color: #fff;
    font-family: var(--text-font-family);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright .elementor-widget-icon-list .elementor-icon-list-text,
.copyright .elementor-widget-icon-list .elementor-icon-list-text * {
    font-family: var(--text-font-family) !important;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
}

.copyright .elementor-widget-icon-list .elementor-icon-list-item {
    opacity: 0.7;
}

.copyright .elementor-widget-icon-list .elementor-icon-list-item:hover {
    opacity: 1;
}

/*----------- Footer / End --------------*/
/*----------- Blog cart / Start --------------*/
.blog-cart {
    border-radius: 20px;
    overflow: hidden;
}

.blog-cart .img-wrapper {
    display: block;
    aspect-ratio: 5/3;
    height: 100%;
}

.blog-cart .img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    max-width: inherit !important;
    object-fit: cover;
    display: block;
}

.blog-cart .info-wrapper {
    padding: 30px;
    background: var(--background-color);
}

.blog-cart .info-wrapper .blog-title {
    font-family: var(--text-font-family);
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.blog-cart:hover .info-wrapper .blog-title {
    color: var(--secondary-color);
}

.blog-cart .info-wrapper .blog-date {
    font-family: var(--text-font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 10px 0;
}

.blog-cart .info-wrapper .blog-desc {
    font-family: var(--text-font-family);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-color);
}

/*----------- Blog cart / End --------------*/
/* ----------- Home page /Start--------------- */
.hero-section {
}


/* ----------- Home page /End --------------- */
/* ----------- About page /Start --------------- */


/* ----------- About page /End --------------- */
/* ----------- Contact page /Start --------------- */


/* ----------- Contact page /End --------------- */
/* ----------- Service page /Start --------------- */


/* ----------- Service page /End --------------- */
/* ----------- Product list page /Start --------------- */

.product-archive,
.project-archive,
.single-product,
.single-project {
    padding: 60px 0;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.archive-header {
    margin-bottom: 40px;
}

.archive-title {
    margin: 0 0 15px;
}

.archive-description {
    max-width: 800px;
}

.product-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.product-card,
.project-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}

.product-card__image,
.project-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card__image img,
.project-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img,
.project-card:hover .project-card__image img {
    transform: scale(1.04);
}

.product-card__placeholder,
.project-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.product-card__content,
.project-card__content {
    padding: 24px;
}

.product-card__title,
.project-card__title {
    margin: 10px 0;
    font-size: 24px;
}

.product-card__title a,
.project-card__title a {
    color: inherit;
    text-decoration: none;
}

.product-card__categories,
.project-card__categories,
.product-single__categories,
.project-single__categories {
    font-size: 14px;
}

.product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.product-card__button,
.project-card__button {
    display: inline-block;
    margin-top: 15px;
}

.product-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.product-single__image img,
.project-single__featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

.project-single__featured-image {
    margin-bottom: 35px;
}

.product-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.product-single__footer {
    margin-top: 40px;
}

.product-navigation,
.project-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.archive-pagination {
    margin-top: 40px;
}

@media (max-width: 900px) {
    .product-grid,
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-single__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* ----------- Product list page /End --------------- */
/* ----------- Product single page /Start --------------- */


/* ----------- Product single page /End --------------- */
/* ----------- Project list page /Start --------------- */


/* ----------- Project list page /End --------------- */
/* ----------- Project single page /Start --------------- */


/* ----------- Project single page /End --------------- */
/*------------ 404 page / Start --------------*/
.txt-404 * {
    font-family: var(--text-font-family) !important;
}

.img-404 {
    transform: scale(1.2);
    animation: scale 3s infinite;
}

@keyframes scale {
    50% {
        transform: scale(.5);
    }
    100% {
        transform: scale(1.2);
    }
}

/*------------ 404 page / End ---------------*/
/*------------ Blog list / Start ---------------*/

/*------------ Blog list / End ---------------*/
/*------------ Blog single / Start ---------------*/

/*------------ Blog single / End ---------------*/
/*------------ responsive / start ---------------*/
@media (max-width: 1023.98px) {

}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {

}

@media (max-width: 480px) {

}

/*------------ responsive / End ---------------*/