@font-face {
    font-family: "IranYekanBlack";
    src: url("../Fonts/IRANYekanBlack.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanBold";
    src: url("../Fonts/IRANYekanBold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanExtraBlack";
    src: url("../Fonts/IRANYekanExtraBlack2.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanExtraBold";
    src: url("../Fonts/IRANYekanExtraBold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanLight";
    src: url("../Fonts/IRANYekanLight.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanMedium";
    src: url("../Fonts/IRANYekanMedium.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanRegular";
    src: url("../Fonts/IRANYekanRegular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IranYekanThin";
    src: url("../Fonts/IRANYekanThin.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "YekanPlus";
    src: url("../Fonts/YEKAN PLUS.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "IRANSansWeb";
    src: url("../Fonts/IRANSansWeb_FaNum.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    overflow-x: hidden;
}

body h1, body h2, body h3, body h4, body h5, body h6, body p, body a {
    font-family: "IranYekanLight", sans-serif !important;
}

body img {
    width: 100%;
}

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

table, th, td, tr {
    border-color: #cc9e4a;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.header-hide {
    transform: translateY(-100%);
}

.header__menu_desktop {

}

.header__menu_phone {
    display: none;
}

header .header__attributes {
    transform: translateY(60%);
}

header .header__attributes * {
    margin: 0 5px;
}

header .header__attributes label {
    font-size: 10px;
    text-align: center;
}

header .header__attributes .check {
    position: relative;
    display: block;
    width: 60px;
    height: 20px;
    background-color: #cc9e4a;
    cursor: pointer;
    border-radius: 20px;
    transition: ease-in 0.5s;
}

header .header__attributes .check::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    background-color: #1b2233;
    border-radius: 50%;
    transition: ease-in 0.5s;
}

header .header__attributes input[type=checkbox] {
    -webkit-appearance: none;
}

header .header__attributes input[type=checkbox]:checked ~ .check {
    background-color: #1b2233;
}

header .header__attributes input[type=checkbox]:checked ~ .check::after {
    background-color: #cc9e4a;
    transform: translateX(40px);
}

header .header__attributes a {
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: #1b2233;
    margin: 0 15px;
    transition: all 1s;
}

.active-lang {
    border-bottom: #cc9e4a solid 3px;
}

header .header__attributes a:hover {
    border-bottom: #cc9e4a 1px solid;
}

header .header__menu {
    background: #1b2233;
    border-bottom: 4px solid #cc9e4a;
}

header .header__menu ul {
    list-style: none;
    margin: 10px 0;
}

header .header__menu ul li {
    margin: 0 15px;
}

header .header__menu ul li a {
    text-decoration: none;
    color: #ffffff;
}

header .header__detail {
    position: relative;
    top: 0;
    right: 0;
    padding: 45px 50px;
    border-bottom: 4px solid #cc9e4a;
}

header .header__detail * {
    margin: 0 8px;
}

header .header__detail .header__logo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 10%);
}

header .header__detail .header__logo img {
    width: 150px;
    height: 100%;
}

header .header__detail .header__info {
    transform: translateY(40%);
}

header .header__detail .header__info iconify-icon {
    display: block !important;
}

header .header__detail .header__info a {
    text-decoration: none;
    color: #1b2233;
    font-size: 14px;
    text-align: center;
}

header .header__detail .header__info .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header button {
    background: transparent;
    border: none;
}

header .header__detail .header__info .search {
    border: solid 2px #1b2233;
    border-radius: 25px;
    padding: 5px 5px 5px 5px;
    height: 35px;
}

header .header__detail .header__info .search input {
    border: none;
}

header .header__detail .header__info .search button {
    margin: 0;
}

header .header__detail .header__info .search iconify-icon {
    margin: 0;
}

header .header__detail .header__info .search input:focus {
    outline: none;
    border: none;
}

header .header__detail .header__info .splite {
    border-right: 1px solid #1b2233;
    padding: 0 6px;
}


@media screen and (max-width: 1200px) {
    .header__menu_desktop {
        display: none;
    }

    .header__menu_phone {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
        padding-bottom: 5px;
        border-bottom: 4px solid #cc9e4a;
        z-index: 10;
    }

    .header__menu_phone .menu-button {
        position: absolute;
        top: 5%;
        left: 3%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .header__menu_phone .header__logo img {
        width: 150px;
    }

    .header__menu_phone .header__detail {
        visibility: hidden;
        position: fixed;
        top: 0;
        right: 0;
        padding: 0;
        margin: 0;
        border-bottom: none;
    }

    .header__menu_phone .header__detail * {
        color: #ffffff !important;
    }

    .header__menu_phone .header__detail .header__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 99vh;
        padding-top: 10px;
        margin: 5px;
        margin-bottom: 0 !important;
        border-radius: 5px;
        border-bottom: none;
    }

    .header__menu_phone .header__detail .header__menu ul {
        padding: 0 0 15px;
        width: 100%;
        border-top: 1px solid #cc9e4a;
        border-bottom: 1px solid #cc9e4a;
    }

    .header__menu_phone .header__detail .header__menu ul li {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .header__menu_phone .header__detail .header__menu ul li a {
        font-size: 20px;
    }

    .header__menu_phone .header__detail .header__menu .header__info {
        margin-top: 5px;
        transform: none;
    }

    .header__menu_phone .header__detail .header__menu .header__info .splite {
        border-right: 1px solid #cc9e4a;
    }

    .header__menu_phone .header__detail .header__menu .header__info a {
        text-align: center;
        font-size: 15px;
    }

    .header__menu_phone .header__detail .header__menu .header__attributes {
        margin-top: 5px;
        transform: none;
    }

    .header__menu_phone .search {
        border: solid 2px #1b2233;
        width: 90%;
        border-radius: 25px;
        padding: 5px 10px 5px 10px;
    }

    .header__menu_phone .search input {
        width: 100%;
        border: none;
    }

    .header__menu_phone .search input:focus {
        outline: none;
        border: none;
    }

    .header__menu_phone .header__attributes {
        transform: none;
    }
}

footer {
    display: block;
    position: relative;
    width: 100%;
}

footer .footer {
    background: url("../img/pattern-1.png") #1b2233 center/600px repeat;
    position: relative;
    padding: 0 50px 50px 50px;
    border-bottom: #cc9e4a 5px solid;
    height: max-content;
    z-index: 0;
}

footer .footer:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #1b2233;
    opacity: 0.9;
    z-index: 1;
}

footer .footer__img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -53.85%);
    z-index: 1;
}

footer .footer__img img {
    width: 250px;
    height: auto;
}

footer .footer__logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -35%);
    margin: 150px 0 25px 0;
    z-index: 10;
}

footer .footer__logo img {
    width: 125px;
    height: auto;
}

footer .footer__more {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    margin-top: 125px;
    width: 100%;
    z-index: 1;
}

footer .footer__more .notify {
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

footer .footer__more .notify h1 {
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
}

footer .footer__more .notify input {
    border: none;
    border-radius: 20px;
    height: 30px;
    font-size: 15px;
    padding: 0 10px;
    margin-bottom: 10px;
}

footer .footer__more .notify button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
    background-color: #cc9e4a;
    color: white;
    width: max-content;
    border-radius: 20px;
    padding: 5px 10px;
    border: none;
}

footer .footer__more .description {
    flex-direction: column;
    justify-content: end;
    width: 20%;
    color: #ffffff;
}

footer .footer__social_medias {
    background-color: #1b2233;
    padding: 35px 50px;
    justify-content: center;
    gap: 100px;
}

footer .social_media {
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer .social_media .social_media_detail {
    margin: 0 10px;
}

footer .social_media h5 {
    color: #ffffff;
}

footer .social_media p {
    color: #ffffff;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
}

.my-whatsapp-icon {
    font-size: 50px;
    transition: transform 0.3s ease-in-out;
}

.my-whatsapp-icon:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 1200px) {
    footer .footer__more {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .footer__more .description {
        margin-top: 150px;
        width: 100%;
        text-align: center;
    }

    footer .footer__more .notify {
        margin-top: 50px;
        align-items: center;
    }

    footer .footer__social_medias {
        flex-direction: column;
        gap: 50px;
    }
}

main {
    margin-top: 200px;
}

.hero {
    position: relative;
    width: 100vw;
}

.hero .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .hero__content img {
    width: 100%;
    background-position: center;
}

.hero .hero__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 67%);
    z-index: 2;
}

.hero .hero__img img {
    width: 200px;
}

.pattern-border {
    background: url(../img/pattern-10.jpg) center / 2500px repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    transform: translate(0, 100%);
    width: 100vw;
    height: 43px;
    z-index: 0;
}

.footer .pattern-border {
    bottom: auto !important;
    top: -13% !important;
    z-index: 1;
}

@media screen and (max-width: 1200px) {
    .pattern-border {
        height: 34px;
    }

    .footer .pattern-border {
        bottom: auto !important;
        top: -5% !important;
        z-index: 1;
    }

    main {
        margin-top: 255px;
    }

    .hero .hero__content img {
        width: 250%;
    }

    .hero .hero__img {
        transform: translate(-50%, 78%);
    }

    .hero .hero__img img {
        width: 100px;
    }
}

.about-us {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 100px;
    gap: 75px;
}

.about-us .about-us__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.about-us .about-us__content p {
    text-align: justify;
}

.about-us .about-us__content a {
    text-decoration: none;
    background-color: #cc9e4a;
    color: #ffffff;
    border-radius: 25px;
    padding: 5px 20px;
}

.about-us .about-us__img img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .about-us {
        flex-direction: column-reverse;
        justify-content: center;
        padding: 50px 30px 100px 30px;
        gap: 10px;
    }

    .about-us .about-us__content {
        justify-content: center;
        align-items: center;
    }
}

.categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 100px 10px 100px;
    width: 100vw;
}

.categories h1 {
    font-size: 45px;
    font-weight: lighter;
    margin-top: 50px;
    font-family: "B Narenj" !important;
}

.categories a {
    text-decoration: none;
    color: #1b2233;
}

.categories p {
    width: max-content;
    font-size: 30px;
    font-weight: normal;
    border-bottom: 3px solid #cc9e4a;
}

.categories .product__link {
    text-decoration: none;
    color: #ffffff;
    background-color: #1b2233;
    padding: 3px 20px;
    border-radius: 25px;
    font-size: 18px;
    margin-top: 25px;
}

.categories .carousel {
    width: 100%;
    overflow: hidden;
}

.categories .carousel .carousel-cell {
    margin: 0 50px !important;
}

.categories .flickity-button, .categories .flickity-page-dots {
    display: none !important;
}

.categories .categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 25px 0;
    background-color: #ffffff;
    width: 300px;
    height: 100%;
}

.categories .categories__item img {
    width: 100%;
}

.categories .categories__item h2 {
    width: max-content;
    font-size: 30px;
    font-weight: normal;
    border-bottom: 3px solid #cc9e4a;
    font-family: "B Narenj" !important;
}

.categories .categories__bg {
    background: url("../img/pattern-2.png") #1b2233 center/400px repeat;
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 125px;
    border-top: 10px solid #cc9e4a;
    padding: 0 50px 50px 50px;
    z-index: -1;
}

.categories .categories__bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #1b2233;
    opacity: 0.9;
    z-index: 1;
}

@media screen and (max-width: 1000px) {
    .categories {
        width: 100vw;
        padding: 50px 10px 0 10px;
    }
}

.blogs_descriptions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 25px 100px;
    width: 100vw;
}

.blogs_descriptions .blogs_descriptions__img img {
    width: 500px;
}

.blogs_descriptions .blogs_descriptions__content {
    background-color: #ffffff;
    padding: 30px 50px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(73, 73, 73, 0.5);
    text-align: justify;
    width: 500px;
}

.blogs_descriptions .blogs_descriptions__bg {
    background: url("../img/pattern-3.jpg") center/2500px repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
}

@media screen and (max-width: 1000px) {
    .blogs_descriptions {
        flex-direction: column;
        padding: 25px 5px;
    }

    .blogs_descriptions__img img {
        width: 50% !important;
    }

    .blogs_descriptions__content {
        background-color: #ffffff;
        padding: 30px 50px;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(73, 73, 73, 0.5);
        text-align: justify;
        width: 90% !important;
    }
}

.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 100px 30px 100px;
}

.products .carousel {
    width: 100%;
    overflow: hidden;
}

.products .carousel .carousel-cell {
    margin: 0 20px;
}

.products .flickity-button, .products .flickity-page-dots {
    display: none !important;
}

.products .products__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;

    position: relative;
    background: white;
    box-shadow: 0 1px 10px rgba(73, 73, 73, 0.5);

    padding: 10px 8px;
    margin: 20px 20px;
    width: 200px;
}

.products .products__item p, .products .products__item h2 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 5px;
}

.products .products__item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.products .products__item img {
    width: 100%;
    margin-bottom: 20px;
}

.products .products__item img:first-child {
    position: absolute;
    top: -5%;
    left: 0;
}

.products .products__item a {
    text-decoration: none;
    color: #ffffff;
    background-color: #1b2233;
    font-size: 14px;
    padding: 0 35px;
    border-radius: 15px;
}

@media screen and (max-width: 1000px) {
    .products {
        padding: 25px 5px;
        overflow: hidden;
    }
}

.blogs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 50px 30px 50px;
}

.blogs .carousel {
    width: 100%;
    overflow: hidden;
}

.blogs .carousel .carousel-cell {
    margin: 0 20px !important;
}

.blogs .flickity-button, .blogs .flickity-page-dots {
    display: none !important;
}

.blogs .blogs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;

    position: relative;
    padding: 50px 20px;
    margin: 20px 5px;

    border: #cc9e4a solid 3px;
    background-color: #f4f4f2;
    box-sizing: border-box;
    box-shadow: 8px 8px 8px rgba(73, 73, 73, 0.25);

    width: 300px;
    height: 400px;
}

.blogs .blogs__item p, .blogs .blogs__item h2 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 5px;
}

.blogs .blogs__item p {
    margin-bottom: 10px;
    font-size: 12px;
}

.blogs .blogs__item .blog__img {

}

.blogs .blogs__item img {
    width: 250px;
    margin-bottom: 20px;
}

.blogs .blogs__item .blog__pattern-1 {
    position: absolute;
    background: url("../img/pattern-9.png") no-repeat;
    background-size: 100px;
    bottom: -1.9%;
    left: -2%;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.blogs .blogs__item .blog__pattern-2 {
    position: absolute;
    background: url("../img/pattern-9.png") no-repeat;
    background-size: 100px;
    bottom: -1.7%;
    right: -2.4%;
    width: 100px;
    height: 100px;
    z-index: 10;
    transform: rotate(270deg);
}

.blogs .blogs__item .blog__pattern-3 {
    position: absolute;
    background: url("../img/pattern-9.png") no-repeat;
    background-size: 100px;
    top: -1.7%;
    left: -2.4%;
    width: 100px;
    height: 100px;
    z-index: 10;
    transform: rotate(90deg);
}

.blogs .blogs__item .blog__pattern-4 {
    position: absolute;
    background: url("../img/pattern-9.png") no-repeat;
    background-size: 100px;
    top: -1.8%;
    right: -2%;
    width: 100px;
    height: 100px;
    z-index: 10;
    transform: rotate(180deg);
}

.blogs .blogs__item a {
    text-decoration: none;
    color: #ffffff;
    background-color: #1b2233;
    font-size: 12px;
    padding: 4px 15px;
    border-radius: 15px;
    align-self: center;
}

.blogs .blog__padding {
    align-items: start;
    padding: 25px 25px;
}

.blogs .blog__padding img {
    width: 100% !important;
}

@media screen and (max-width: 1000px) {
    .blogs {
        padding: 25px 5px;
    }
}

.contact_us {
    position: relative;
    padding: 75px 85px;
    width: 100vw;
}

.contact_us h1, .contact_us p {
    color: white;
}

.contact_us h1 {
    font-size: 28px;
}

.contact_us p {
    font-size: 14px;
    font-weight: lighter;
}

.contact_us .contact_us__pattern_1 {
    position: absolute;
    top: -6%;
    right: -2%;
}

.contact_us .contact_us__pattern_1 img {
    width: 350px;
    opacity: 10%;
    transform: rotate(180deg);
}

.contact_us .contact_us__pattern_2 {
    position: absolute;
    top: -6%;
    left: -3%;
}

.contact_us .contact_us__pattern_2 img {
    width: 360px;
    opacity: 10%;
    transform: rotate(90deg);
}

.contact_us .contact_us__pattern_3 {
    position: absolute;
    bottom: -6%;
    right: -2%;
}

.contact_us .contact_us__pattern_3 img {
    width: 350px;
    opacity: 10%;
    transform: rotate(270deg);
}

.contact_us .contact_us__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 500px;
    position: relative;
    width: 100%;
    border-radius: 20px !important;
    box-shadow: 0 0 35px rgba(73, 73, 73, 0.75);
    margin-bottom: 75px;
}

.contact_us .contact_us__content .contact_us__content__pattern_1 {
    position: absolute;
    top: -8%;
    right: -3%;
    z-index: 1;
}

.contact_us .contact_us__content .contact_us__content__pattern_1 img {
    width: 340px;
    opacity: 10%;
    transform: rotate(180deg);
}

.contact_us .contact_us__content .contact_us__content__pattern_2 {
    position: absolute;
    bottom: -8%;
    right: -3%;
    z-index: 1;
}

.contact_us .contact_us__content .contact_us__content__pattern_2 img {
    width: 340px;
    opacity: 10%;
    transform: rotate(270deg);
}

.contact_us .contact_us__content .contact_us__content__pattern_3 {
    position: absolute;
    top: -6%;
    left: -3%;
    z-index: 1;
}

.contact_us .contact_us__content .contact_us__content__pattern_3 img {
    width: 200px;
    opacity: 10%;
    transform: rotate(0deg);
}

.contact_us .contact_us__content .contact_us__content__pattern_4 {
    position: absolute;
    bottom: -6%;
    left: -3%;
    z-index: 1;
}

.contact_us .contact_us__content .contact_us__content__pattern_4 img {
    width: 200px;
    opacity: 10%;
    transform: rotate(270deg);
}

.contact_us .contact_us__content .contact_us__tilte {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    background-color: white;
}

.contact_us .contact_us__content .contact_us__tilte .contact_us__logo img {
    width: 150px;
}

.contact_us .contact_us__content .contact_us__tilte .contact_us__badoom {
    position: absolute;
    right: -7%;
    padding: 8px;
    transform: rotate(-43deg);
    background-color: #1b2233;
    border: #cc9e4a solid 3px;
}

.contact_us .contact_us__content .contact_us__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100dvh;
    background-color: #1b2233;
    padding: 0 35px;
}

.contact_us .contact_us__content .contact_us__form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact_us .contact_us__content .contact_us__form form * {
    width: 100%;
    padding: 5px 10px;
    border-radius: 3px;
    border: #cc9e4a 1px solid;
}

.contact_us .contact_us__content .contact_us__form form input[type=submit] {
    color: white;
    background-color: #1b2233;
    text-align: center !important;
}

.contact_us .contact_us__content .contact_us__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    width: 100%;
    height: 100dvh;
    background-color: #1b2233;
}

.contact_us .contact_us__content .contact_us__details .contact_us__detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact_us .contact_us__content .contact_us__details:before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 50%;
    background-color: #cc9e4a;
}

@media screen and (max-width: 1000px) {
    .contact_us {
        padding: 25px;
    }

    .contact_us .contact_us__pattern_1 {
        top: -4%;
        right: -10%;
    }

    .contact_us .contact_us__pattern_2 {
        top: -4%;
        left: -10%;
    }

    .contact_us .contact_us__pattern_3 {
        bottom: -4%;
        right: -10%;
    }

    .contact_us .contact_us__content {
        flex-direction: column;
        height: 100%;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_1 {
        position: absolute;
        top: -4%;
        right: -10%;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_1 img {
        width: 340px;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_2 {
        position: absolute;
        bottom: -4%;
        right: -11%;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_2 img {
        width: 340px;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_3 {
        position: absolute;
        top: -3%;
        left: -8%;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_3 img {
        width: 200px;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_4 {
        position: absolute;
        bottom: -3%;
        left: -8%;
    }

    .contact_us .contact_us__content .contact_us__content__pattern_4 img {
        width: 200px;
    }

    .contact_us .contact_us__content .contact_us__tilte {
        padding: 50px 0;
        height: 100%;
    }

    .contact_us .contact_us__content .contact_us__tilte .contact_us__badoom {
        right: 50%;
        bottom: 0;
        transform: translate(50%, 50%) rotate(-45deg);
    }

    .contact_us .contact_us__content .contact_us__form {
        padding: 75px 0;
        height: 100%;
    }

    .contact_us .contact_us__content .contact_us__details {
        padding: 25px 0;
        height: 100%;
    }

    .contact_us .contact_us__content .contact_us__details:before {
        width: 75%;
        height: 2px;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.about-us-header {
    background: url("../img/pattern-1.png") #1b2233 center/600px repeat;
    position: relative;
    padding: 0 150px;
    height: max-content;
    z-index: 0;
    width: 100%;
}

.about-us-header .about-us-header__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 15px;
    padding: 0 0 0 50px;
    background-color: #1b2233;
}

.about-us-header .about-us-header__container .about-us-header__content {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    z-index: 1;
}

.about-us-header .about-us-header__container .about-us-header__content h1, .about-us-header .about-us-header__container .about-us-header__content p {
    color: white;
}

.about-us-header .about-us-header__container .about-us-header__content h1 {
    font-size: 28px;
}

.about-us-header .about-us-header__container .about-us-header__content p {
    font-size: 14px;
    font-weight: lighter;
}

.about-us-header .about-us-header__container .about-us-header__content a {
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 15px;
    text-decoration: none;
    color: #cc9e4a;
    border: #cc9e4a solid 1px;
}

.about-us-header .about-us-header__container .about-us-header__img {
    width: 66%;
    position: relative;
    overflow: hidden;
    height: 400px;
    z-index: 1;
}

.about-us-header .about-us-header__container .about-us-header__img img {
    width: 100%;
}

.about-us-header .about-us-header__container .about-us-header__img img:nth-child(1) {
    position: relative;
    height: 100%;
    z-index: 2;
}

.about-us-header .about-us-header__container .about-us-header__img img:nth-child(2) {
    position: absolute;
    top: 25%;
    left: 0;
    width: 200px;
    z-index: 10;
}

.about-us-header .about-us-header__container .about-us-header__img:before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 100%;
    top: -37.5%;
    left: 20%;
    background-color: transparent;
    border: #cc9e4a solid 1px;
    box-shadow: 0 0 0 999px #1b2233;
    z-index: 10;
}

.about-us-header:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #1b2233;
    opacity: 0.9;
    z-index: 1;
}

@media screen and (max-width: 1000px) {
    .about-us-header {
        padding: 25px 10px;
    }

    .about-us-header .about-us-header__container {
        flex-direction: column;
        gap: 50px;
        padding: 10px;
    }

    .about-us-header .about-us-header__container .about-us-header__content {
        width: 100%;
    }

    .about-us-header .about-us-header__container .about-us-header__img {
        overflow: visible;
        width: 100%;
        height: 100%;
    }

    .about-us-header .about-us-header__container .about-us-header__img img:nth-child(1) {
        height: auto;
    }

    .about-us-header .about-us-header__container .about-us-header__img img:nth-child(2) {
        width: 150px;
        top: -25%;
        right: 65%;
    }

    .about-us-header .about-us-header__container .about-us-header__img:before {
        border: none;
        box-shadow: none;
    }
}

.certificates {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 50px 150px;
}

.certificates h1 {
    font-size: 38px;
    font-weight: lighter;
}

.certificates .certificate__cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
}

.certificates .certificate__cards .certificate__card img {
    width: 100%;
    padding: 10px;
    border: #cc9e4a solid 3.5px;
}

.certificates .certificate__cards .certificate__border {
    padding: 10px;
    border: #cc9e4a solid 3.1px;
}

.certificates .certificate__cards .certificate__pattern-1 {
    position: absolute;
    top: -25%;
    right: -15%;
    width: 400px;
    z-index: -1;
}

.certificates .certificate__cards .certificate__pattern-1 img {
    width: 100%;
}

.certificates .certificate__cards .certificate__pattern-2 {
    position: absolute;
    width: 400px;
    top: -25%;
    left: -15%;
    z-index: -1;
}

.certificates .certificate__cards .certificate__pattern-2 img {
    width: 100%;
    transform: rotateY(180deg);
}

@media screen and (max-width: 1000px) {
    .certificates {
        padding: 25px 10px;
    }

    .certificates .certificate__cards {
        flex-direction: column;
    }

    .certificates .certificate__cards .certificate__pattern-1 {
        top: -10%;
        right: -45%;
    }

    .certificates .certificate__cards .certificate__pattern-2 {
        top: -10%;
        left: -45%;
    }
}

.our-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 35px 100px;
}

.our-story h1 {
    width: 100%;
    font-size: 28px;
    font-weight: lighter;
    text-align: center;
    padding-top: 15px;
    border-top: #cc9e4a solid 2px;
}

.our-story img {
    width: 250px;
}

.our-story .our-story__content {
    padding: 0 15px 15px 15px;
    border-bottom: #cc9e4a solid 2px;
}

.our-story .carousel {
    width: 100%;
    overflow: hidden;
}

.our-story .carousel .carousel-cell {
    margin: 0 10px !important;
}

.our-story .flickity-button, .our-story .flickity-page-dots {
    display: none !important;
}

.our-story .our-story__video {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 25px;

    margin-bottom: 100px;
}

.our-story .our-story__video video {
    width: 50%;
    padding: 15px;
    border: #cc9e4a solid 2px;
}

@media screen and (max-width: 1000px) {
    .our-story {
        padding: 25px 10px;
    }

    .our-story .our-story__video {
        flex-direction: column;
        gap: 0;
    }

    .our-story .our-story__video video {
        width: 100%;
    }

    .our-story .our-story__video p {
        padding: 15px;
    }
}

.sidebar {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 20%;
    padding: 10px;
}

.sidebar .widget {
    text-align: left;
}

.sidebar .widget .widget-title {
    position: relative;
}

.sidebar .widget .widget-title:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 45px;
    bottom: -60%;
    left: 0;
    background-color: #1b2233;
}

.sidebar .widget h6 {
    color: #1b2233;
    margin-bottom: 10px;
    font-size: 15px;
}

.sidebar .widget ul {
    list-style: none;
    margin-top: 30px;
}

.sidebar .widget ul li {
    transition: 0.5s;
    margin-bottom: 5px;
}

.sidebar .widget ul li h1,
.sidebar .widget ul li h2,
.sidebar .widget ul li h3,
.sidebar .widget ul li h4,
.sidebar .widget ul li h5,
.sidebar .widget ul li h6,
.sidebar .widget ul li p,
.sidebar .widget ul li a {
    font-size: 14px !important;
    font-weight: lighter !important;
}

.sidebar .widget ul li:hover {
    transform: translateX(10px) scale(1.1);
}

.sidebar .widget ul a {
    text-decoration: none;
    font-size: 14px;
    font-weight: lighter;
    color: #a3a3a3;
}

@media screen and (max-width: 1000px) {
    .sidebar {
        width: 100%;
        align-items: center;
    }

    .sidebar .widget {
        text-align: center;
    }

    .sidebar .widget h6 {
        font-size: 25px;
    }

    .sidebar .widget ul a {
        font-size: 15px;
    }

    .sidebar .widget .widget-title:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.products_page {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 100vw;
    padding: 50px 100px;
    margin-bottom: 100px;
}

.products_page .products {
    width: 80%;
    padding: 0;
}

.products_page .products h1 {
    font-size: 64px;
    padding: 0 30px;
    border-bottom: #cc9e4a 4px solid;
    margin: 60px 0 45px 0;
}

.products_page .products h1:first-child {
    margin-top: 0;
}

.products_page .products .carousel-cell {
    margin: 0 5px !important;
}

@media screen and (max-width: 1000px) {
    .products_page {
        flex-direction: column;
        padding: 50px 10px;
        align-items: center;
    }

    .products_page .products {
        width: 100%;
    }

    .products_page .products h1 {
        font-size: 32px;
        margin: 45px 0 20px 0;
    }

    .products_page .products h1:first-child {
        margin-top: 0;
    }

    .sidebar {
        width: 100%;
    }
}

.blogs_page {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 100vw;
    padding: 50px 100px;
    margin-bottom: 100px;
}

.blogs_page .blogs {
    width: 80%;
    padding: 0;
}

.blogs_page .blogs h1 {
    font-size: 64px;
    padding: 0 30px;
    border-bottom: #cc9e4a 4px solid;
    margin: 60px 0 45px 0;
}

.blogs_page .blogs h1:first-child {
    margin-top: 0;
}

.blogs_page .blogs .carousel-cell {
    margin: 0 5px !important;
}

@media screen and (max-width: 1000px) {
    .blogs_page {
        flex-direction: column;
        padding: 50px 10px;
        align-items: center;
    }

    .blogs_page .blogs {
        width: 100%;
    }

    .blogs_page .blogs h1 {
        font-size: 32px;
        margin: 45px 0 20px 0;
    }

    .blogs_page .blogs h1:first-child {
        margin-top: 0;
    }
}

.post {
    padding: 0 10px 0 100px;
}

.post * {
    color: #1b2233;
}

.post .post-img img {
    border-radius: 8px;
    border: #cc9e4a 1px solid;
}

.post .content {
    margin-top: 35px;
}

.post .content h5 {
    font-size: 24px;
    margin-bottom: 15px;
}

.post .content ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    margin: 10px 0;
    padding: 5px;
    border-top: #cc9e4a 1px solid;
    border-bottom: #cc9e4a 1px solid;
}

.post .content ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.post .content ul li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 14px;
}

.post .content .share-post {
    margin-top: 20px;
}

@media screen and (max-width: 1000px) {
    .post {
        padding: 0 10px 0 10px;
    }

    .post .content .meta {
        flex-direction: column;
        align-items: start;
    }

    .post .content .meta li a {
        font-size: 14px;
    }
}

.pattern-bg-profile {
    background: url(../img/pattern-1.png) #1b2233 center / 600px repeat;
    position: relative;
    padding: 0 50px 50px 50px;
    z-index: -1;
    height: 400px;
}

.pattern-bg-profile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #1b2233;
    opacity: 0.9;
    z-index: 1;
}

.profile {
    position: relative;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 500px;
    z-index: 1;
}

.profile__card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 35px;

    width: 60%;
    height: 450px;
    background-color: white;
    box-shadow: 0 8px 20px rgba(78, 78, 78, 0.5);
    border-radius: 30px;
    transform: translateY(-200px);
}

.profile__more_action {
    position: absolute;
    top: 20px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 90%;
}

.profile__more_action a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;

    font-size: 20px;
    font-weight: bold;
    color: #1b2233;
    text-decoration: none;
}

.profile__card img {
    width: 200px;
    height: 200px;

    border-radius: 100%;
    transform: translateY(-70px);
    box-shadow: 0 2px 20px rgba(78, 78, 78, 0.5);
}

.profile__card h2 {
    font-family: 'IranYekanLight' !important;
    font-size: 28px;
    color: #686868;
}

.profile__card div {
    transform: translateY(-75px);
}

.profile__card div:first-child {
    transform: translateY(0);
}

.profile__card p {
    font-family: 'IranYekanMedium' !important;
    text-align: center !important;
    color: gray;
}

.profile__action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.profile__action a {
    width: 175px;
    background-color: #1b2233;
    border-radius: 10px;
    padding: 5px 15px;
    color: white;
    text-decoration: white;
    text-align: center;
}

.profile__more_action a,
.profile__action a,
.profile__card p,
.profile__card h2 {
    transition: all 0.3s ease;
}

.profile__more_action a:hover,
.profile__action a:hover,
.profile__card p:hover,
.profile__card h2:hover {
    background-color: #f5f5f5;
    color: #cc9e4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.profile__more_action a iconify-icon,
.profile__action a iconify-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.profile__more_action a:hover iconify-icon,
.profile__action a:hover iconify-icon {
    transform: rotate(10deg) scale(1.1);
    color: #cc9e4a;
}

.profile__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}

.profile__title {
    transform: translateY(20px);
}

.profile__form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.profile__form input:focus {
    border-color: #cc9e4a;
    outline: none;
    box-shadow: 0 0 5px rgba(204, 158, 74, 0.4);
}

.btn-submit {
    background-color: #1b2233;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: center !important;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #cc9e4a;
    color: #1b2233;
}

@media screen and (max-width: 1000px) {
    .profile__card {
        width: 90%;
        height: 400px;
    }

    .profile__card img {
        width: 100px;
        height: 100px;

        transform: translateY(-35px);
    }

    .profile__more_action a {
        font-size: 18px;
    }

    .profile__card div {
        transform: translateY(-50px);
    }

    .profile__card div:first-child {
        transform: translateY(0);
    }

    .profile__action {
        flex-direction: column;
    }
}


/* =============================================================================================== LANG STYLE :*/
.rtl h1 {
    font-family: 'IranYekanLight' !important;
}

.ltr h1 {
    font-family: 'B Narenj' !important;
}

.text-rtl {
    text-align: right;
}

.text-ltr {
    text-align: left;
}

.products .text-rtl {
    text-align: center;
}

.products .text-ltr {
    text-align: center;
}

.rtl .splite {
    border-right: none !important;
    border-left: 2px solid #1b2233 !important;
    padding: 0 0 0 10px !important;
}

.ltr .splite {
    border-left: none !important;
    border-right: 2px solid #1b2233 !important;
    padding: 0 10px 0 0 !important;
}

.rtl .about-us-header__img:before {
    right: 20%;
}

.ltr .about-us-header__img:before {
    left: 20%;
}

.rtl .about-us-header__img img:nth-child(2) {
    right: 5%;
}

.ltr .about-us-header__img img:nth-child(2) {
    left: 0;
}

.rtl .contact_us__details:before {
    right: 0;
}

.ltr .contact_us__details:before {
    left: 0;
}

.rtl .contact_us__badoom {
    right: auto !important;
    left: -7%;
}

.ltr .contact_us__badoom {
    left: auto !important;
    right: -7%;
}

.rtl .post .content ul {
    justify-content: right;
}

.ltr .post .content ul {
    justify-content: left;
}

.rtl .notify button iconify-icon {
    transform: rotateY(180deg);
}

.ltr .notify button iconify-icon {
    transform: rotateY(0deg);
}

.rtl .widget-title:before {
    right: 0;
}

.ltr .widget-title:before {
    left: 0;
}

@media screen and (max-width: 1000px) {
    .text-rtl {
        text-align: right;
    }

    .text-ltr {
        text-align: left;
    }

    .products .text-rtl {
        text-align: center;
    }

    .products .text-ltr {
        text-align: center;
    }

    .footer .text-rtl {
        text-align: center;
    }

    .footer .text-ltr {
        text-align: center;
    }

    .rtl input[type=text] {
        text-align: right;
    }

    .ltr input[type=text] {
        text-align: left;
    }

    .rtl .menu-button {
        left: auto !important;
        right: 3%;
    }

    .ltr .menu-button {
        right: auto !important;
        left: 3%;
    }

    .rtl .splite {
        border-color: #cc9e4a !important;
    }

    .ltr .splite {
        border-color: #cc9e4a !important;
    }

    .rtl .contact_us__details:before {
        right: auto !important;
        left: 50% !important;
    }

    .ltr .contact_us__details:before {
        right: auto !important;
        left: 50% !important;
    }

    .rtl .contact_us__badoom {
        left: auto !important;
        right: 50% !important;
    }

    .ltr .contact_us__badoom {
        left: auto !important;
        right: 50% !important;
    }

    .sidebar .text-rtl {
        text-align: center;
    }

    .sidebar .text-ltr {
        text-align: center;
    }

    .rtl .widget-title:before {
        right: auto;
    }

    .ltr .widget-title:before {
        left: auto;
    }
}

/* =============================================================================================== BEAUTY STYLE :*/
.pattern-bg {
    position: absolute;
    background: url("../img/pattern-7.png") no-repeat;
    background-size: 300px;
    width: 300px;
    height: 300px;
    z-index: -2;
}

.pattern-bg-1 {
    top: 50%;
    right: -5%;
    transform: rotate(45deg);
}

.pattern-bg-2 {
    bottom: 50%;
    left: -2%;
    transform: rotateY(180deg) rotate(-45deg);
}

/* =============================================================================================== CUSTOME STYLE :*/
.account_link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;

    font-size: 12px;
}

.account_link a {
    color: #cc9e4a;
}