@font-face {
    font-family: iransans;
    src: url('font/IRANSans.ttf');
}

@font-face {
    font-family: iransans-bold;
    src: url('font/IRANSans_Bold.ttf');
    font-weight: bold;
}

body {
    padding: 0;
    margin: 0;
    font-family: IRANSans, serif;
    direction: rtl;
    background-color: #FFFFFF;
}


.row {
    padding: 0;
    margin: 0;
}

.head {
    height: 100vh;
    display: flex;
    align-content: space-between;
    background: url(../landing/header.jpeg) no-repeat;
    background-size: cover;
}

@media screen and (max-width : 767px){
    .head{
        background: url(../landing/Untitled-2-min.jpg) no-repeat;
        background-size : cover;
    }
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%; /* Adjust width as needed */
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.90); /* Semi-transparent background */
    border-radius: 15px;
    backdrop-filter: blur(1px); /* Apply blur effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    transition: all 0.3s ease-in-out;
    opacity: .5;
}

.header-text h1, .header-text h3, .header-text h6 {
    margin: 10px 0;
    color : #fff !important;
}

@media (max-width: 768px) {
    .header-text {
        width: 90%; /* Adjust width for smaller screens */
        padding: 10px;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text h3 {
        font-size: 1.25rem;
    }

    .header-text h6 {
        font-size: 1rem;
    }
}


nav ul {
    display: flex;
    justify-content: space-between;
}

nav ul li {
    width: 5rem; /* Adjust width as needed */
}

nav ul li a {
    white-space: nowrap;
    text-align: center;
}

.custom-submit-btn{
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #0c8a0c;
}

.custom-cancel-btn{
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #cb0a0a;
}




.head .menu {
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 0;
    background-color: #fff;
}

.head .menu .menu-links {
    padding: 0;
}

.head .menu .menu-links button {
    display: none;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 1.5rem;
}

.head .menu .menu-links ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.head .menu .menu-links ul li {
    padding: 0;
    font-weight: bolder;
}

.head .menu .menu-links ul li a {
    margin: 10px;
    padding: 10px 5px;
    text-decoration: none;
    color: #34364d;
    display: flex;
    font-size: 0.9rem;
    transition: all 0.5s ease-in-out;
}

.head .menu .menu-links ul li a:hover {
    color: #05abb7;
}

.menu-links li:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #05abb7; /* Adjust color as needed */
    transition: width 0.3s ease-in-out; /* Transition for width */
}

/* Style for the link on hover */
.menu-links li a:hover {
    color: #05abb7; /* Adjust hover color as needed */
}

/* Style for the underline on hover */
.menu-links li:hover:after {
    width: 100%; /* Animate width to full width on hover */
}

.head .menu .menu-links ul .sm-scr {
    display: none;
}

.head .menu .menu-logo {
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.head .menu .menu-logo img {
    position: absolute;
    /*top: -20px;*/
    /*width: 80%;*/
}

.head .menu .menu-social {
    direction: ltr;
    display: flex;
    align-items: center;
    padding: 0 0 0 50px;
}

.head .menu .menu-social ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    direction: rtl;
}

.head .menu .menu-social ul li {
    padding: 0;
}

.head .menu .menu-social ul li a {
    padding: 10px 15px;
    text-decoration: none;
    color: #34364d;
    display: flex;
    font-size: 0.9rem;
}

.head .menu .menu-social ul li a:hover {
    color: #05abb7;
}

.head h1 {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 auto;
    font-family: iransans;
    color: #fff;
	font-size : 2rem;
}

.head .head-nav {
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 20px;
}

.head .head-nav ul {
    padding: 0;
    list-style: none;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    background-color: #fff;
    padding: 15px 0px;
    border-radius: 15px;
}

.head .head-nav ul li {
    padding: 0 2vw;
    border-left: 1px solid #dbdbdb;
}

.head .head-nav ul li a {
    text-decoration: none;
    color: #34364d;
    padding: 5px 50px;
    display: flex;
    font-family: iransans-bold, serif;
    /*color: red;*/
    transition: 0.3s;
    border-radius: 15px;
    font-size: 1.5rem;
    /*color: #666;*/
}

.head .head-nav ul li a:hover {
    transform: translateY(-5px);
    text-shadow: 0 5px 10px rgba(155, 121, 245, 0.6);
    color: #05abb7;
}

.head .head-nav ul li:last-child {
    border-left: none;
}

.shop {
    padding-top: 100px;
}

.shop .description-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.shop .description-row .right-col {
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
}

.shop .description-row .right-col img {
    margin-bottom: 50px;
    max-width: 40%;
}

.shop .description-row .right-col h2 {
    font-family: iransans-bold;
    margin-bottom: 50px;
}

.shop .description-row .right-col p {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.shop .description-row .right-col p:before {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #34364d;
    display: block;
    margin: 0 20px;
}

.shop .description-row .right-col p:after {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #34364d;
    display: block;
    margin: 0 20px;
}

.shop .description-row .right-col a {
    background-color: #05abb7;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    margin: 3.25rem auto;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 20px 25px #34364d;
    transition: 0.3s;
}

.shop .description-row .right-col a:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.shop .description-row .right-col a i {
    margin-right: 15px;
}

.shop .description-row .left-col {
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
}

.shop .description-row .left-col img {
    width: 500px;
}

.shop .shop-latest {
    margin-bottom: 100px;
}

.shop .shop-latest .red-box {
    background: linear-gradient(45deg, #05abb7, #75b6aa);
    margin: 0 auto;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 20px 25px #34464d;
}

.shop .shop-latest .red-box .border-box {
    border: 1px solid #fff;
    border-radius: 45px;
}

.shop .shop-latest .red-box .border-box .title {
    padding: 35px;
    background-size: contain;
    text-align: center;
}

.shop .shop-latest .red-box .border-box .title img {
    margin-bottom: 30px;
}

.shop .shop-latest .red-box .border-box .title h6 {
    color: #fff;
    font-family: iransans-bold;
    margin: 0 auto;
    font-size: 1.2rem;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
}

.shop .shop-latest .red-box .border-box .title h6:before {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.shop .shop-latest .red-box .border-box .title h6:after {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.shop .shop-latest .red-box .border-box ul {
    list-style: none;
    display: flex;
    margin: 0;
    /* justify-content: space-between; */
    align-items: center;
    flex-wrap: wrap;
}

.shop .shop-latest .red-box .border-box ul li {
    background-color: #fff;
    border-radius: 25px;
    margin: 0 10px 20px 10px;
    overflow: hidden;
    transition: 0.3s;
    border-bottom: 5px solid #fff;
    width: 11vw;
    height: 40vh;
}

.shop .shop-latest .red-box .border-box ul li:hover {
    border-bottom: 5px solid #bbb;
    box-shadow: 0 0 20px #34364d;
}

.shop .shop-latest .red-box .border-box ul li {
    text-align: center; /* Ensure content is centered */
    padding-bottom: 20px; /* Add bottom padding to ensure space consistency */
}

.shop .shop-latest .red-box .border-box ul li a {
    display: block;
    text-decoration: none;
    padding: 20px 10px; /* Adjusted padding to account for space around the image */
}

.shop .shop-latest .red-box .border-box ul li a img {
    width: 90%;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Center the image */
}

@media screen and (max-width: 1400px){
    .shop .shop-latest .red-box .border-box ul li a img{
        width: 65%;
    }

    .shop .shop-latest .red-box .border-box ul li{
        height: 20rem;
    }
}

.shop .shop-latest .red-box .border-box ul li h6 {
    font-size: 0.8rem;
    color: #34364d;
    margin-top: 15px; /* Consistent space above the h6 tag */
    margin-bottom: 0;
    line-height: 2;
    font-family: iransans-bold;
    text-align: center; /* Center text */
}

@media only screen and (max-width: 1360px) {
    .shop .shop-latest .red-box .border-box ul li {
        width: 20vw;
    }
}


.brands {
    background-color: #fff;
    padding: 0;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.brands button {
    border: none;
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: red;
    top: 0;
    height: 100%;
    z-index: 1;
}

.brands #toRight {
    left: 0;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
}

.brands #toLeft {
    right: 0;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
}

.brands p {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 50px auto;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-family: iransans-bold, serif;
}

.brands p:before {
    content: "";
    height: 1px;
    background-color: #333;
    width: 10vw;
    display: block;
    margin-left: 30px;
}

.brands p:after {
    content: "";
    height: 1px;
    background-color: #333;
    width: 10vw;
    display: block;
    margin-right: 30px;
}

.brands ul {
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 60px;
}

.brands ul li {
    margin: 10px 35px;
}

.brands ul li img {
    opacity: 0.3;
    transition: 0.3s;
}

.brands ul li img:hover {
    opacity: 1;
}

.forum .description-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.forum .description-row .right-col {
    text-align: center;
}

.forum .description-row .right-col img {
    width: 30vw;
}

.forum .description-row .left-col {
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
}

.forum .description-row .left-col img {
    margin-bottom: 50px;
    max-width: 40%;
}

.forum .description-row .left-col h2 {
    font-family: iransans-bold, serif;
    margin-bottom: 50px;
}

.forum .description-row .left-col p {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.forum .description-row .left-col p:before {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #34364d;
    display: block;
    margin: 0 20px;
}

.forum .description-row .left-col p:after {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #34364d;
    display: block;
    margin: 0 20px;
}

.forum .description-row .left-col a {
    background-color: #05abb7;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 20px 25px #34364d;
    transition: 0.3s;
}

.forum .description-row .left-col a:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.forum .description-row .left-col a i {
    margin-right: 15px;
}

.forum .forum-hottest {
    background: linear-gradient(45deg, #05abb7, #75b6aa);
    display: flex;
    align-items: center;
}

.forum .forum-hottest .title {
    text-align: center;
    /*background: url(images/hot-bg.png) right no-repeat;*/
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.forum .forum-hottest .title img {
    width: 2.5vw;
    margin-bottom: 30px;
}

.forum .forum-hottest .title p {
    color: #fff;
    font-family: iransans-bold;
}

.forum .forum-hottest .hot-posts {
    margin: 50px 0 35px 0;
}

.forum .forum-hottest .hot-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.forum .forum-hottest .hot-posts ul li {
    width: 45%;
    margin: 0 0 15px 15px;
}

.forum .forum-hottest .hot-posts ul li a {
    text-decoration: none;
    color: #34364d;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.forum .forum-hottest .hot-posts ul li a:hover {
    box-shadow: 0 10px 15px #34364d;
}

.forum .forum-hottest .hot-posts ul li a i {
    color: #3920d6;
    margin-left: 15px;
}

.forum .forum-hottest .hot-posts ul li a h3 {
    margin: 0;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    font-size: 1rem;
    font-family: iransans-bold;
}

.blog {
    /*background: url(images/blog-bg.png) top left no-repeat;*/
    background-size: 20%;
}

.blog .description-row .blog-description {
    text-align: center;
    padding-top: 100px;
    margin-bottom: 100px;
}

.blog .description-row .blog-description img {
    margin-bottom: 50px;
}

.blog .description-row .blog-description h2 {
    font-family: iransans-bold;
    margin-bottom: 50px;
}

.blog .description-row .blog-description p {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.blog .description-row .blog-description p:before {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #333;
    display: block;
    margin: 0 20px;
}

.blog .description-row .blog-description p:after {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #333;
    display: block;
    margin: 0 20px;
}

.blog .description-row .blog-description a {
    background-color: #05abb7;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 20px 25px #34364d;
    transition: 0.3s;
}

.blog .description-row .blog-description a:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.blog .description-row .blog-description a i {
    margin-right: 15px;
}

.blog .blog-latest-row {
    margin-bottom: 100px;
}

.blog .blog-latest-row .blog-latest {
    margin: auto;
}

.blog .blog-latest-row .blog-latest .title {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.blog .blog-latest-row .blog-latest .title i {
    color: #3920d6;
    margin-left: 15px;
    font-size: 1.5rem;
}

.blog .blog-latest-row .blog-latest .title h6 {
    color: #3920d6;
    font-size: 1.2rem;
    font-family: iransans-bold;
}

.blog .blog-latest-row .blog-latest ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    flex-wrap: wrap;
}

.blog .blog-latest-row .blog-latest ul li a {
    display: block;
    width: 16vw;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 15px 20px #34364d;
}

.blog .blog-latest-row .blog-latest ul li a img {
    width: 100%;
}

.blog .blog-latest-row .blog-latest ul li a h6 {
    margin: 0;
    position: absolute;
    color: #fff;
    bottom: 0;
    padding: 15px;
    background-color: #34364d;
    width: 100%;
    opacity: 0;
    transition: 0.3s;
    font-size: 0.8rem;
}

.blog .blog-latest-row .blog-latest ul li a:hover {
    box-shadow: none;
}

.blog .blog-latest-row .blog-latest ul li a:hover h6 {
    opacity: 1;
}

.social-media {
    position: relative;
    margin-bottom: 100px;
}

.social-media:before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #0d6efd;
    position: absolute;
    bottom: 50%;
}

.social-media .white-box {
    display: flex;
    background-color: #fff;
    margin: auto;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 20px #34364d;
}

.social-media .white-box .border-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 1px solid #05abb7;
    background-color: #fff;
    z-index: 1;
    border-radius: 15px;
    padding: 10px 20px;
}

.social-media .white-box .border-box p {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    margin: 0;
    font-family: iransans-bold;
    color: #333;
}

.social-media .white-box .border-box p span {
    color: #05abb7;
}

.social-media .white-box .border-box ul {
    margin: 0;
    width: -moz-fit-content;
    width: fit-content;
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.social-media .white-box .border-box ul li {
    margin: 0 5px;
}

.social-media .white-box .border-box ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px 20px;
    border-radius: 15px;
}

.social-media .white-box .border-box ul li a:hover {
    background-color: #eee;
}

.social-media .white-box .border-box ul li a img {
    margin: 0;
    max-width: 40px;
}

.social-media .white-box .border-box ul li a p {
    font-family: iransans;
}

.sub-brands {
    background-color: #f2f2f2;
    padding: 30px 0;
}

.sub-brands .divider {
    width: 29vw;
    margin: 0 auto 30px auto;
    display: none;
}
.sub-brands .title h2{
    font-family: iransans-bold;
    margin-bottom: 50px;
    font-weight : 700;
}

.sub-brands .techno-row {
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
    overflow: hidden;
}

.sub-brands .techno-row .info {
    text-align: center;
}

.sub-brands .techno-row .info img {
    width: 40%;
    margin: 0 0 50px 0;
}

.sub-brands .techno-row .info h6 {
    line-height: 2;
    margin-bottom: 50px;
}

.sub-brands .techno-row .info a {
    background-color: #05abb7;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 3rem;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 15px 20px #34364d;
    transition: 0.3s;
}

.sub-brands .techno-row .info a:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.sub-brands .techno-row .info a i {
    margin-right: 15px;
}

.sub-brands .techno-row .image {
    padding: 0;
    overflow: hidden;
    /* direction: ltr; */
}

@media only screen and (max-width : 992px){
    .sub-brands .techno-row .image img{
        margin-right : 16rem;
        margin-left: 16rem;
    }
}

.sub-brands .techno-row .image img {
    width : 20rem;
    height: auto;
    margin : 0 4rem 0 1rem;
}

.sub-brands .iranic-row {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    width: 70%;
}

.sub-brands .iranic-row .image {
    padding: 0;
    direction: rtl;
}

.sub-brands .iranic-row .image img {
    max-width: 90%;
}

.sub-brands .iranic-row .info {
    text-align: center;
}

.sub-brands .iranic-row .info img {
    margin-bottom: 50px;
    width: 40%;
}

.sub-brands .iranic-row .info h6 {
    line-height: 2;
    margin-bottom: 50px;
}

.sub-brands .iranic-row .info a {
    background-color: #05abb7;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 15px 20px #34364d;
    transition: 0.3s;
}

.sub-brands .iranic-row .info a:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.sub-brands .iranic-row .info a i {
    margin-right: 15px;
}

.stats {
    padding: 100px 0;
}

.stats .stats-box {
    background-color: #fff;
    margin: auto;
    box-shadow: 0 15px 20px #34364d;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.stats .stats-box .title {
    width: 35%;
    text-align: left;
    background: url(images/stat-icon.png) right no-repeat;
    background-size: contain;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.stats .stats-box .title p {
    margin: 0;
    font-family: iransans-bold;
    color: #05abb7;
    font-size: 6rem;
}

.stats .stats-box .title span {
    color: #05abb7;
    font-size: 1rem;
    font-family: iransans;
    font-size: 2rem;
}

.stats .bars {
    width: 55%;
    padding: 100px 0;
}

.stats .bars ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats .bars ul li {
    display: flex;
    margin: 30px 0;
}

.stats .bars ul li i {
    font-size: 1.5rem;
    background-color: #fff;
    box-shadow: 0 10px 15px #75b6aa;
    padding: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0a53be;
    border-radius: 15px;
    margin: 0 0 0 20px;
}

.stats .bars ul .bar-div {
    display: flex;
    width: 80%;
    background-color: #05abb7;
    height: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 15px #0a53be;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
}

.stats .bars ul .bar-div p {
    color: #fff;
    margin: 0;
}

.jobs {
    text-align: center;
    padding: 20vh 0;
    background: url(../landing/shutterstock_290621699.jpg) no-repeat fixed;
    background-size: cover;
}

.jobs p {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 30px 0;
    font-family: iransans-bold, serif;
}

.jobs a {
    background-color: #fff;
    color: #0a53be;
    font-weight: bolder;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.jobs a:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.footer {
    background-color: #333;
    padding: 5vh 5vw 0 5vw;
}

.footer .footer-col-1 {
    padding: 0 30px;
}

.footer .footer-col-1 .title {
    color: #fff;
    font-family: iransans-bold;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-col-1 .title:before {
    content: "";
    width: 8vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.footer .footer-col-1 .title:after {
    content: "";
    width: 8vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.footer .footer-col-1 p {
    color: #fff;
    text-align: justify;
    line-height: 2;
}

.footer .footer-col-2 {
    padding: 0 30px;
}

.footer .footer-col-2 .title {
    color: #fff;
    font-family: iransans-bold;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
}

.footer .footer-col-2 .title:before {
    content: "";
    width: 8vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.footer .footer-col-2 .title:after {
    content: "";
    width: 8vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.footer .footer-col-2 ul {
    list-style: none;
}

.footer .footer-col-2 ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 10px;
    border-radius: 10px;
}

.footer .footer-col-2 ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.footer .footer-col-2 ul li a i {
    color: #05abb7;
    margin-left: 10px;
}

.footer .footer-col-3 {
    padding: 0 30px;
    position: relative;
}

.footer .footer-col-3 .title {
    color: #fff;
    font-family: iransans-bold;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
}

.footer .footer-col-3 .title:before {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.footer .footer-col-3 .title:after {
    content: "";
    width: 6vw;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 20px;
}

.footer .footer-col-3 .address {
    color: #fff;
    line-height: 2;
}

.footer .footer-col-3 .address i {
    color: #05abb7;
    margin: 0 0 0 10px;
}

.footer .footer-col-3 .contact {
    direction: ltr;
    display: flex;
    justify-content: space-between;
}

.footer .footer-col-3 .contact p {
    color: #fff;
}

.footer .footer-col-3 .contact p i {
    color: #05abb7;
    margin: 0 10px 0 0;
}

.footer .footer-col-3 .social {
    direction: ltr;
    /*position: absolute;*/
    left: 15px;
    bottom: 0;
    margin-top : 0.75rem
}

.footer .footer-col-3 .social ul {
    padding: 0;
    list-style: none;
    display: flex;
}

.footer .footer-col-3 .social ul li a {
    color: #05abb7;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer .footer-col-3 .social ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.footer .copy-right {
    text-align: center;
    align-items: center;
    padding: 20px 0;
}

.footer .copy-right p {
    color: #fff;
    margin: 0;
    font-size: 0.8rem;
}

@media only screen and (max-width: 992px) {
    .head .menu {
        padding: 0;
    }

    .menu{
        display: flex !important;
        justify-content: space-around;
        flex-direction: row-reverse;
        height: auto;
    }

    .menu-logo {
        width: 7rem;
        height: 4rem;
    }

    .head .menu .menu-logo img {
        width: 10rem !important;
        top: -5px;
        left: 5px;
    }

    .head > h1 {
        font-size: 0.75rem;
    }

    .head .menu .menu-social {
        display: none;
    }

    .shop .description-row .right-col h2 {
        font-size: 1.5rem;
    }

    .shop .description-row .left-col img {
        width: 450px;
    }

    .forum .description-row .left-col h2 {
        font-size: 1.5rem;
    }

    .forum .forum-hottest .hot-posts ul li {
        width: 90%;
    }

    .forum .description-row .right-col img {
        width: 80%;
    }

    .blog .description-row .blog-description img {
        max-width: 25%;
    }

    .blog .description-row .blog-description h2 {
        font-size: 1.5rem;
    }

    .sub-brands .techno-row .image img {
        margin : 0 4rem 0 1rem;
        width: 70%;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }

    @media screen and (max-width : 767px){

        .sub-brands .techno-row .image img {
            width: 70%;
            max-width: -moz-fit-content;
            max-width: fit-content;
            margin : 0 auto;
        }

    }

    .sub-brands .techno-row .info a {
        font-size: 0.8rem;
    }

    .sub-brands .techno-row .info img {
        width: 20vw;
    }

    .sub-brands .techno-row .image {
        margin: 0 auto;
        text-align : center;
    }

    .sub-brands .iranic-row .image {
        direction: ltr;
    }

    .sub-brands .iranic-row .image img {
        width: 120%;
        max-width: -moz-fit-content;
        width: 100% !important;
    }

    .sub-brands .iranic-row .info img {
        width: 20vw;
    }

    .sub-brands .iranic-row .info a {
        font-size: 0.8rem;
    }

    .blog {
        background-size: 30%;
    }

    .footer {
        padding: 5vh 0vw 0 0vw;
    }

    .footer .footer-col-1 .title,
    .footer .footer-col-2 .title,
    .footer .footer-col-3 .title {
        font-size: 1.2rem;
    }

    .footer .footer-col-1 .title:before,
    .footer .footer-col-2 .title:before,
    .footer .footer-col-3 .title:before {
        margin: 0 10px 0 10px;
        width: 5vw;
    }

    .footer .footer-col-1 .title:after,
    .footer .footer-col-2 .title:after,
    .footer .footer-col-3 .title:after {
        margin: 0 10px 0 10px;
        width: 5vw;
    }

    .footer .footer-col-1,
    .footer .footer-col-2,
    .footer .footer-col-3 {
        padding: 0 20px;
    }

    .footer .footer-col-1 p,
    .footer .footer-col-2 p,
    .footer .footer-col-3 p {
        font-size: 0.9rem;
        font-family: iransans;
    }

    .footer .footer-col-2 ul li a {
        font-size: 0.9rem;
        font-family: iransans;
    }

    .footer .footer-col-3 .social ul li a {
        width: 40px;
        height: 40px;
    }

    .footer .footer-col-2 ul {
        padding: 0;
    }

    .sub-brands .divider {
        width: 60vw;
    }
}

@media only screen and (max-width: 768px) {
    .head .menu .menu-links ul {
        display: none;
        position: absolute;
        background-color: #fff;
        right: 0;
        width: 25vw;
        min-width: 180px;
        z-index: 10000;
        top: 3.5rem;
    }

    .head .menu .menu-links ul .sm-scr {
        display: block;
    }

    .head .menu .menu-links {
        padding: 0 10px 0 0;
    }

    .head .menu .menu-links button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .head h1 {
        font-size: 1.6rem;
    }

    .shop .description-row .left-col img {
        margin: 0 0 0 10px;
    }

    .shop .shop-latest .red-box .border-box ul li {
        width: 25vw;
        height: 15rem;
    }

    .forum .description-row .right-col img {
        margin: 0 0 100px 0;
    }

    .forum .forum-hottest {
        height: -moz-fit-content;
        height: fit-content;
    }

    .forum .forum-hottest .hot-posts {
        margin-top: 0;
    }

    .forum .forum-hottest .hot-posts ul {
        justify-content: center;
    }

    .forum .forum-hottest .title {
        margin: 0;
        padding: 10vh 0;
    }

    .forum .forum-hottest .title img {
        width: 8vw;
    }

    .forum .forum-hottest .title p {
        font-size: 1.5rem;
    }

    .blog .blog-latest-row .blog-latest ul {
        justify-content: center;
    }

    .blog .blog-latest-row .blog-latest ul li {
        margin-bottom: 50px;
    }

    .blog .blog-latest-row .blog-latest ul li a {
        width: 80vw;
    }

    .blog .blog-latest-row {
        margin-bottom: 0;
    }

    .social-media .white-box .border-box {
        flex-wrap: wrap;
    }

    .social-media .white-box .border-box p {
        width: 100%;
        text-align: center;
        margin: 30px 0;
    }

    .social-media .white-box .border-box ul li {
        text-align: center;
    }

    .social-media .white-box .border-box ul li a img {
        margin: 0;
    }

    .social-media .white-box .border-box ul {
        width: 100%;
        justify-content: space-between;
    }

    .social-media .white-box .border-box ul li a p {
        margin: 30px 0 10px 0;
    }

    .blog .blog-latest-row .blog-latest ul li a h6 {
        opacity: 1;
    }

    .forum .forum-hottest .hot-posts ul li {
        margin: 0 0 15px 0;
    }

    .blog .description-row .blog-description img {
        max-width: 80%;
    }

    .forum .description-row .left-col img {
        max-width: 50%;
    }

    .shop .description-row .right-col img {
        max-width: 50%;
    }

    .sub-brands .techno-row .info img {
        width: 50vw;
    }

    .sub-brands .techno-row .info h6 {
        font-size: 1rem;
    }

    .sub-brands .techno-row .info {
        margin-bottom: 100px;
        margin-top: 100px;
    }

    .sub-brands .iranic-row .image {
        margin-bottom: 100px;
    }

    .sub-brands .iranic-row .info img {
        width: 50vw;
    }

    .sub-brands .iranic-row .info h6 {
        font-size: 1rem;
    }

    .stats .stats-box {
        flex-wrap: wrap;
    }

    .stats .stats-box .title {
        width: 100%;
        text-align: center;
        padding-top: 50px;
    }

    .stats .bars {
        width: 100%;
    }

    .stats .bars ul li {
        justify-content: center;
    }

    .footer .footer-col-1 .title::before,
    .footer .footer-col-2 .title::before,
    .footer .footer-col-3 .title::before,
    .footer .footer-col-1 .title::after,
    .footer .footer-col-2 .title::after,
    .footer .footer-col-3 .title::after {
        width: 20vw;
    }

    .footer .footer-col-3 .social {
        position: relative;
        left: 0;
    }

    .sub-brands .divider {
        width: 90vw;
    }
}

@media only screen and (max-width: 576px) {
    .sub-brands .divider {
        width: 90vw;
    }

    .head h1 {
        text-align: center;
        line-height: 2;
    }

    .head .head-nav ul li a {
        font-size: 1.2rem;
        padding: 5px 30px;
    }

    .shop .description-row .left-col img {
        width: 90vw;
    }

    .shop .shop-latest .red-box .border-box ul {
        padding: 5px;
    }

    .shop .shop-latest .red-box .border-box ul li {
        width: 40vw;
    }

    .sub-brands .techno-row {
        justify-content: center;
    }

    .sub-brands .iranic-row {
        justify-content: center;
        overflow: hidden;
    }

    .stats .stats-box .title p {
        font-size: 4rem;
    }

    .sub-brands .techno-row .image {
        overflow: visible;
    }
}

/*# sourceMappingURL=style.css.map */
/* استایل‌های اختصاصی */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.menu-links {
    justify-content: center;
}

@media (max-width: 676px) {
    .menu-links {
        display: flex;
        justify-content: start;
    }
}

.social-media-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.social-media-fixed a {
    display: block;
    margin: 5px 0;
    color: #fff;
    background: #333;
    padding: 10px;
    border-radius: 50%;
}

.social-media-fixed a:hover {
    background: #3db1b0;
    transition: all .3s;
}
/*      footer styles        */
.footer a:hover {
    color: #3db1b0 !important;
    transition: color 0.3s;
}

.footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    transition: all 0.3s;
}

.footer .social a:hover {
    background: #3db1b0;
    color: #fff;
}

/*      footer styles        */
