/**
 * Theme Name: Hello Elementor Child
 * Template:   hello-elementor
 */

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 100;
	src: url('./assets/fonts/IRANYekanX-Thin.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Thin.woff2') format('woff2');		
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 200;
	src: url('./assets/fonts/IRANYekanX-UltraLight.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-UltraLight.woff2') format('woff2');	
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 300;
	src: url('./assets/fonts/IRANYekanX-Light.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Light.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 500;
	src: url('./assets/fonts/IRANYekanX-Medium.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Medium.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 600;
	src: url('./assets/fonts/IRANYekanX-DemiBold.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-DemiBold.woff2') format('woff2');	 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 800;
	src: url('./assets/fonts/IRANYekanX-ExtraBold.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-ExtraBold.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 900;
	src: url('./assets/fonts/IRANYekanX-Black.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Black.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 950;
	src: url('./assets/fonts/IRANYekanX-ExtraBlack.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-ExtraBlack.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: 1000;
	src: url('./assets/fonts/IRANYekanX-Heavy.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Heavy.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: bold;
	src: url('./assets/fonts/IRANYekanX-Bold.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Bold.woff2') format('woff2');	 
}

@font-face {
	font-family: IRANYekanX;
	font-style: normal;
	font-weight: normal;
	src: url('./assets/fonts/IRANYekanX-Regular.woff') format('woff'),   
	url('./assets/fonts/IRANYekanX-Regular.woff2') format('woff2');	
}

body {
    font-family: "IRANYekanX", sans-serif;
}

.tolou-desktop-menu-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    width: 100%;
    height: auto;
    transition: all ease-in-out 250ms;
    user-select: none;
    overflow: inherit;
}

@media screen and (min-width: 767px) {
    .tolou-desktop-menu-container {
        display: flex;    
    }
}

.tolou-desktop-menu__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    list-style-type: none;
    animation: fadeIn 2s;
    padding: 0;
    direction: rtl;
    text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tolou-desktop-menu-container__spacer {
    height: 55px;
    transition: all ease-in-out 200ms;
    display: none;
}

.tolou-desktop-menu__item {
    position: relative;
    min-width: 110px;
    height: 55px;
    cursor: pointer;
    padding: 0 5px;
}

.tolou-desktop-menu__item__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    user-select: none;
    position: relative;
    opacity: .618;
    color: #fff !important;
    height: 100%;
    transition: color 150ms;
}

.tolou-desktop-menu__item__icon {
    width: 45px;
    height: auto;
    transition: all 250ms ease-in-out;
}

.tolou-desktop-menu__item__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    font-size: 12px;
    position: absolute;
    top: 50%;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 250ms ease-in-out;
}

.tolou-desktop-menu__item__link:not(:has(.tolou-desktop-menu__item__icon)) .tolou-desktop-menu__item__title {
    opacity: 1;
}

.tolou-desktop-menu__item__submenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #2D372B;
    font-size: 12px;
    width: 100%;
    height: 45px;
    z-index: 1000;
    position: fixed;
    top: 105px;
    right: 0;
    opacity: 0;
    transition: visibility 250ms cubic-bezier(.4, 0, 1, 1), opacity 250ms cubic-bezier(.4, 0, 1, 1);
}

.tolou-desktop-menu__item__submenu__item {
    padding: 10px 20px;
    transition: all ease-in-out 250ms;
}

.tolou-desktop-menu__item__submenu__item__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #fff !important;
    opacity: .618;
    transition: color ease-in-out 150ms;
}

.tolou-desktop-menu__item__submenu__item__icon {
    width: 25px;
    height: auto;
    margin-left: 5px;
}

.tolou-desktop-menu__item__submenu__item__link:hover {
    opacity: 1;
}

.tolou-desktop-menu__item__link:hover .tolou-desktop-menu__item__icon {
    opacity: 0;
    animation-fill-mode: forwards;
}

.tolou-desktop-menu__item__link:hover .tolou-desktop-menu__item__title {
    opacity: 1;
}

.tolou-desktop-menu__item:hover .tolou-desktop-menu__item__submenu {
    opacity: 1;
    visibility: visible;
    border-top: 1px solid rgba(135, 135, 135, .84);
}

.tolou-mobile-menu-container {
    display: none;
    flex-direction: column;
    min-height: 45px;
}

@media screen and (max-width: 767px) {
    .tolou-mobile-menu-container {
        display: flex;
    }
}

.tolou-mobile-menu-container.opened {
    height: 100vh;
}

.tolou-mobile-menu__toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 45px;
    border-bottom: 1px solid transparent;
}

.tolou-mobile-menu__toggle svg {
    width: 45px;
    height: 35px;
    cursor: pointer;
    transition: all 250ms ease-in-out;
}

.tolou-mobile-menu__toggle .close-icon {
    display: none;
}

.tolou-mobile-menu__toggle.toggled {
    border-bottom-color: #fff;
    margin-bottom: 15px;
}

.tolou-mobile-menu__toggle.toggled .close-icon {
    display: block;
}

.tolou-mobile-menu__toggle.toggled .open-icon {
    display: none;
}

.tolou-mobile-menu__list {
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    list-style: none;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    gap: 20px 0;
}

.tolou-mobile-menu-container.opened .tolou-mobile-menu__list {
    display: grid;
}

.tolou-mobile-menu__item {
    position: inherit;
    cursor: pointer;
    padding: 0 5px;
    text-align: center;
    width: 100%;
}

.tolou-mobile-menu__item__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff !important;
    font-size: 12px;
    width: 100%;
    height: 100%;
}

.tolou-mobile-menu__item__icon {
    width: 45px;
    height: auto;
}

.tolou-mobile-menu__item__link:has(.tolou-mobile-menu__item__icon) .tolou-mobile-menu__item__title {
    display: none;
}

.tolou-mobile-menu__item__submenu {
    position: absolute;
    top: 220px;
    right: -15px;
    width: calc(100% + 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    transition: visibility 250ms cubic-bezier(.4,0,1,1),opacity 250ms cubic-bezier(.4,0,1,1);
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    background-color: #2E513E;
}

.tolou-mobile-menu__item__submenu__item {
    background-color: rgba(52, 52, 52, 0.12);
    margin: 5px 0;
    width: 100%;
}

.tolou-mobile-menu__item__submenu__item__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    color: rgba(255, 255, 255, .46) !important;
    text-decoration: none;
}

.tolou-mobile-menu__item__submenu__item__icon {
    width: 35px;
    height: auto;
    margin-left: 5px;
}

.tolou-mobile-menu__item.toggled .tolou-mobile-menu__item__submenu {
    visibility: visible;
}
/* .tolou-desktop-menu__item__link:not(:has(.tolou-desktop-menu__item__icon)) .tolou-desktop-menu__item__title */