* {
	box-sizing: border-box;
}

@font-face{
    font-family: yekan;
    src: url(../fonts/BYekan+.ttf);
}

@font-face{
    font-family: IranSans;
    src: url(../fonts/IranianSans.ttf);
}

.row {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

body {
	direction: rtl;
	font-family: yekan;
	overflow-x: hidden !important;
}

a {
	text-decoration: none;
	color: inherit !important;
}

a:hover {
	text-decoration: none;
}

ul {
	list-style: none;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000000;
}

header .logo-header {
	background: #141c59;
}

header .logo-header .logo-container {
	height: 0;
	border-bottom: 98px solid #D2151E;
	border-left: 65px solid #141c59;

}

header .logo-header .logo-container img {
	margin-top: 5px;
}

header .logo-header .contact-container {
	background: #141c59;
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
}

header .logo-header .contact-container > div {
	display: flex;
}

header .logo-header .contact-container div i {
	font-size: 28px;
	color: #bbbed5;
	margin-top: 7px;
}

header .logo-header .contact-container > div div {
	display: block;
	margin-right: 7px;
	text-align: left;
}

header .logo-header .contact-container div span.title-text {
	display: block;
	color: #FFF;
	font-size: 16px;
}

header .logo-header .contact-container .phone span.title-text {
	direction: ltr;
}

header .logo-header .contact-container div span.subtext {
	color: #bbbed5;
	font-size: 12px;
}

header .navbar-header .menu {
	display: flex;
	justify-content: space-around;
	background: #070c43;
	list-style: none;
	margin-bottom: 0;
}

header .navbar-header .menu li {
	padding: 5px 20px;
	color: #e4e5ee;
	position: relative;
	cursor: pointer;
	font-size: 14px;
}

header .navbar-header .menu li a {
	color: inherit;
	text-decoration: none;
}

header .navbar-header .menu > li:after {
	position: absolute;
	content: "";
	width: 0%;
	height: 3px;
	background-color: #D2151E;
	right: 35%;
	bottom: 0px;
	transition: all 0.4s ease-in-out;
}

header .navbar-header .menu > li:hover .dropdown-menu {
	display: block;
}


header .navbar-header .menu > li:hover:after {
	width: 20px;
}

header .navbar-header .menu .dropdown .dropdown-toggle::after {
	margin-right: 5px;
	vertical-align: 0.155em;
}

header .navbar-header .menu .dropdown .dropdown-menu {
	margin: 5px 0 0 !important;
	text-align: right;
	inset: unset !important;
	transform: none !important;
	background: #070c43;
}

header .navbar-header .menu .dropdown .dropdown-menu .dropdown-item {
	color: #FFF;
}

header .navbar-header .menu .dropdown .dropdown-menu .dropdown-item:active, header .navbar-header .menu .dropdown .dropdown-menu .dropdown-item:hover {
	background: transparent !important;
	color: #D2151E;
}

header .navbar-header .menu .dropdown .dropdown-menu li:hover {
	background: #1c2565;
}

header .navbar-header .social-media {
	height: 0;
	border-bottom: 34px solid #D2151E;
	border-right: 35px solid #070c43;
}

header .navbar-header .social-media .login {
	text-align: center;
	color: #e4e5ee !important;
}

header .navbar-header .social-media .login img {
	width: 18px;
	margin-top: 3px;
}

header .navbar-header .social-media .languages {
	text-align: left;
	padding: 0;
	text-align: center;
}

header .navbar-header .social-media .languages button {
	border: none;
	background: transparent;
	width: 30px;
	height: 30px;
	overflow: hidden;
	direction: ltr;
	white-space: nowrap;
	-webkit-transition: all 1s ease;
    transition: all 1s ease;
}

/*header .navbar-header .social-media .languages button:hover {
	width: 85px;
}*/

header .navbar-header .social-media .languages button img {
	width: 22px;
}

header .navbar-header .social-media .languages button span {
	margin: auto 10px;
	color: #FFF;
	font-size: 13px;
}

header .navbar-header .social-media .vertical_separator {
	padding-top: 5px;
	padding-left: 0;
	padding-right: 10px;
}

header .navbar-header .social-media .vertical_separator span {
	display: block;
	width: 1px;
	height: 22px;
	background: rgb(170, 170, 170);
}

header .navbar-header .social-media .social button {
	padding: 5% 0;
}

/* Mobile header */

.mobile-header {
	width: 100%;
	overflow-x: hidden;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
}

.mobile-header .row {
	padding: 0 !important;
	margin: 0 !important;
	--bs-gutter-x: 0 !important;
	text-align: right;
}

.mobile-header .mobile-logo-container{
	background: #070c43;
	height: 0;
	border-bottom: 50px solid #070c43;
	border-left: 35px solid #070c43;
	padding-right: 0;
}

.mobile-header .mobile-logo-container img {
	margin-top: 2.5px;
}

.mobile-header .hamburger-menu-container {
	background: #070c43;
	padding-top: 2%;
}

.mobile-header .hamburger-menu-container .menu-line {
	background: #FFF;
	width: 24px;
    height: 2px;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile-header .hamburger-menu-container.opened span:nth-child(1) {
	transform: translateY(7px) rotateZ(45deg);
}

.mobile-header .hamburger-menu-container.opened span:nth-child(2) {
	width: 0;
}

.mobile-header .hamburger-menu-container.opened span:nth-child(3) {
	transform: translateY(-10px) rotateZ(-45deg);
}

#mobile-menu {
	background: #293377;
    position: fixed;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    padding-right: 0;
    top: 0px;
    overflow-y: scroll;
    scrollbar-width: none;
    transition: all 0.3s ease;
    z-index: 1100;
}

#mobile-menu.opened {
	right: 0;
}

#mobile-menu .mobile-menu-logo {
	margin: 5px 15px 0;
}

#mobile-menu hr {
	margin: 10px auto;
	border-top: 1px solid #bbbed5;
}

#mobile-menu .social-languages {
	margin-top: 10px;
	background: transparent;
	display: flex;
	justify-content: center;
}

#mobile-menu .social-languages > div {
	margin: auto 15px;
}

#mobile-menu .social-languages .languages button {
	background: transparent;
	border: none;
}

#mobile-menu .social-languages .vertical_separator span {
	width: 1px;
	height: 22px;
	display: block;
	background: #bbbed5;
}

#mobile-menu .social-languages .social .btn {
	padding: 5px;
}

#mobile-menu .mobile_menu_logo {
	width: 100%;
	margin-top: 35px;
}

#mobile-menu .menu_items {
	width: 75%;
	margin: 10px auto;
	text-align: right;
}

#mobile-menu .menu_items ul {
	margin: 0;
	padding: 0;
}

#mobile-menu .menu_items li {
	font-size: 20px;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	color: #e4e5ee !important;
}

#mobile-menu .menu_items .dropdown-toggle:after {
	float: left;
	margin-top: 10px;
	transition: all 0.3s ease;
}

#mobile-menu .menu_items .dropdown-toggle.menu_opened:after {
	transform: rotate(180deg);
}

#mobile-menu .menu_items .dropdown-toggle {
	display: block;
}

#mobile-menu .dropdown-menu {
	background: #293377;
	position: relative;
    width: 100%;
    text-align: right;
    border: none;
    padding: 20px 0 40px !important;
}

#mobile-menu .dropdown-menu.active {
	display: block;
}

#mobile-menu .dropdown-menu li {
	border: none;
	color: #e4e5ee !important;
	padding-right: 15px;
	font-size: 16px;
}

#mobile-menu .dropdown-menu li a {
	color: #e4e5ee !important;
}

#mobile-menu .dropdown-menu li a:before{
	content: "\f104";
    font-family: "Font Awesome 5 Free";
    color: #e4e5ee;
    font-weight: 700;
    margin-left: 5px;
}

#mobile-menu .login {
	width: 100%;
	text-align: center;
	margin-top: 35px;
}

#mobile-menu .login a {
	background: #e4e5ee;
	border-right: 10px;
	padding: 10px 25px;
	color: #070c43 !important;
	border-radius: 10px;
}

#mobile-menu .login a img {
	width: 30px;
}

footer {
	background: #070c43;
	text-align: right;
}

footer .row {
	padding: 20px 30px;
}

footer .row div h5 {
	color: #FFF;
	margin-bottom: 20px;
}

footer .row div p {
	color: #e4e5ee;
	padding-right: 15px;
}

footer .row div p i{
	margin-left: 10px;
	color: #D2151E;
}

footer .row div p a {
	color: #ccc !important;
}

footer .row .social i {
	color: #e4e5ee;
	font-size: 30px;
}

footer .row .social i:not(:first-of-type) {
	margin-right: 15px;
}

footer .copy-right {
	background: #1c2565;
	text-align: center;
	padding: 5px 0;
}

footer .copy-right p {
	color: #e4e5ee;
	font-size: 13px;
	margin: 0;
}

@media only screen and (max-width: 768px) {
    footer .row {
    	padding: 20px 10px;
    }

    footer .row .about, footer .row .links, footer .row .social {
    	margin-top: 20px;
    }

    footer .copy-right {
		padding: 5px 20px;
	}

    .container {
    	margin-top: 65px;
    }
}