/*demo css*/

/* Content */
.content {
	padding: 3em 0;
}

.section {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.section:nth-of-type(odd):not(:first-child) {
	color: #fff;
	background: #2a282b;
}

.section--menu {
	position: relative;
	overflow: hidden;
	min-height: 80vh;
	padding: 2em 0 8em;
}

.break {
	padding: 3em 0;
	text-align: center;
	background: #ED3237;
}

.section__title {
	font-size: 0.65em;
	font-weight: 700;
	-webkit-flex: none;
	flex: none;
	margin: 3em 0 15em;
	text-indent: 3px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #d1d1d1;
}

.break__title {
	font-size: 1.85em;
	font-weight: normal;
	margin: 0;
	color: #fff;
}

.section--intro {
	font-size: 2em;
	position: relative;
	min-height: 100vh;
	text-align: center;
	color: #fff;
}

.section--intro p {
	max-width: 1000px;
	margin: 0 auto;
	padding: 1em;
}

/* Header */
.codrops-header {
	position: relative;
	height: 100vh;
	min-height: 600px;
	padding: 0em 1em 4em;
	text-align: center;
	color: #fff;
	background: #ED3237 url(../img/mouse.svg) no-repeat left 50% bottom 40px;
}

.codrops-header h1 {
	font-size: 3.25em;
	font-weight: 700;
	line-height: 1;
	position: relative;
	z-index: 10;
	margin: 0.5em 0 0;
	letter-spacing: -1px;
}

.codrops-header h1 span {
	font-size: 50%;
	font-weight: normal;
	display: block;
	margin: 0.5em 0;
	letter-spacing: 0;
	color: #f48b95;
}

/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
}

.codrops-links::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #c14954;
	-webkit-transform: rotate3d(0, 0, 1, 22.5deg);
	transform: rotate3d(0, 0, 1, 22.5deg);
}

.codrops-icon {
	display: inline-block;
	width: 1.5em;
	margin: 0.5em;
	padding: 0em 0;
	text-decoration: none;
}

.codrops-icon span {
	display: none;
}

.codrops-icon:before {
	font-family: 'codropsicons';
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	margin: 0 5px;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	speak: none;
}

.codrops-icon--drop:before {
	content: '\e001';
}

.codrops-icon--prev:before {
	content: '\e004';
}

/* Demo links */
.codrops-demos {
	margin: 2em 0 0;
}

.codrops-demos a {
	display: inline-block;
	margin: 0 0.5em;
}

.codrops-demos a.current-demo {
	color: #333;
}

/* Related demos */
.content--related {
	font-weight: bold;
	padding: 10em 1em;
	text-align: center;
	background: #ED3237;
}

.content__wrap--related {
	max-width: 800px;
	margin: 0 auto;
}

.media-item {
	display: inline-block;
	padding: 1em;
	vertical-align: top;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.media-item__img {
	max-width: 100%;
	opacity: 0.6;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
	opacity: 1;
}

.media-item__title {
	font-size: 1em;
	margin: 0;
	padding: 0.5em;
}

@media screen and (max-width:50em) {
	.section--intro {
		font-size: 1em;
	}

}




/* Common styles for all menus */
.menu {
	line-height: 1;
	margin: 0 auto 0;
        z-index: 9;
        text-align: right;
        font-size: 1.2rem;
        padding: 5px 0;
}
.main-menu-custom.menu{
    position: absolute;
}
.menu__list {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
        top: 42px;
        font-size: 1rem;
        right: 24px;
}

.menu__item {
	display: block;
	margin: 1em 0;
}

.menu__link {
	font-size: 1.05em;
	font-weight: bold;
	display: block;
	padding: 1em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__link:hover,
.menu__link:focus {
	outline: none;
}

/* Individual styles */

/* Adrian */
.menu--adrian .menu__item {
	margin: 0 .1em;
}

.menu--adrian .menu__link {
	position: relative;
	overflow: hidden;
	padding: 1em;
	color: #555;
}

.menu--adrian .menu__link:hover,
.menu--adrian .menu__link:focus {
	color: #929292;
        text-decoration: none;
}

.menu--adrian .menu__item--current .menu__link {
	color: #ED3237;
}

.menu--adrian .menu__link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 650%;
	height: 50px;
	opacity: 0;
	background: url(../img/line.svg) no-repeat top left;
	-webkit-transform: translate3d(130px, 0, 0);
	transform: translate3d(130px, 0, 0);
	-webkit-transition: -webkit-transform 0s 0.3s, opacity 0.3s;
	transition: transform 0s 0.3s, opacity 0.3s;
}

.menu--adrian .menu__item--current .menu__link::before {
	opacity: 1;
	-webkit-transform: translate3d(-260px, 0, 0);
	transform: translate3d(-260px, 0, 0);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.menu--adrian .menu__helper {
	display: block;
	pointer-events: none;
}

.menu--adrian .menu__item--current .menu__helper {
	-webkit-animation: anim-adrian 0.3s forwards;
	animation: anim-adrian 0.3s forwards;
}

@-webkit-keyframes anim-adrian {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	51% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes anim-adrian {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	51% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}



/*my Custom Css*/

body {
	font-family: IRANSans !important;
	font-weight: 300;
}
h1, h2, h3, h4, h5, h6,input, textarea {
	font-family: IRANSans !important;
}
.panel-title{
    color: #555;
}
.sec-five{
    position: relative;
}
.mr50{
    margin-left: 50px;
}
.mt40{
    margin-top: 40px;
}
.mt70{
    margin-top: 70px;
}
div.bg-grey.myDiv2 {
    -ms-transform: matrix(1, 0, -0.3, 1, 70, 0); /* IE 9 */
    -webkit-transform: matrix(1, 0, -0.3, 1, 70, 0); /* Safari */
    transform: matrix(1, 0, -0.3, 1, 70, 0); /* Standard syntax */
    width: 55%;
    height: 100%;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
}
#slider div.myDiv2 {
    -ms-transform: matrix(1, 0, 0.5, 1, 150, 0); /* IE 9 */
    -webkit-transform: matrix(1, 0, 0.5, 1, 150, 0); /* Safari */
    transform: matrix(1, 0, 0.5, 1, 150, 0); /* Standard syntax */
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
}
#slider2 div.myDiv2 {
    -ms-transform: matrix(1, 0, -0.5, 1, -150, 0); /* IE 9 */
    -webkit-transform: matrix(1, 0, -0.5, 1, -150, 0); /* Safari */
    transform: matrix(1, 0, -0.5, 1, -150, 0); /* Standard syntax */
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}
.navbar-brand>img{
    width: 50px;
    height: auto;
}
.navbar-header .navbar-toggle{
        background: rgb(216, 43, 44);
        margin-top: 20px;
}
.navbar-toggle .icon-bar{
    background: #fff;
}
.navbar-brand{
    height: auto !important;
    padding: 5px 15px 5px !important;
}
.sl-slider-wrapper {
	width: 800px;
	height: 400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.sl-slider {
	position: absolute;
	top: 0;
	left: 0;
}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
} 

.sl-slide {
	z-index: 1;
}

/* The duplicate parts/slices */

.sl-content-slice {
	overflow: hidden;
	position: absolute;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	background: #fff;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity : 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
	width: 100%;
	height: 50%;
	left: -200px;
	-webkit-transform: translateY(0%) scale(1);
	-moz-transform: translateY(0%) scale(1);
	-o-transform: translateY(0%) scale(1);
	-ms-transform: translateY(0%) scale(1);
	transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
	top: -200px;
	padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
	top: 50%;
	padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
	width: 50%;
	height: 100%;
	top: -200px;
	-webkit-transform: translateX(0%) scale(1);
	-moz-transform: translateX(0%) scale(1);
	-o-transform: translateX(0%) scale(1);
	-ms-transform: translateX(0%) scale(1);
	transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
	left: -200px;
	padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
	left: 50%;
	padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
	position: absolute;
}

.sl-content {
	width: 100%;
	height: 100%;
	background: #fff;
}

/* Default styles for background colors */
.sl-slide-horizontal .sl-slide-inner {
	background: #ddd;
}

.sl-slide-vertical .sl-slide-inner {
	background: #ccc;
}

.demo-2 .sl-slider-wrapper {
	width: 100%;
	height: 600px;
	overflow: hidden;
	position: relative;
}

.demo-2 .sl-slider h2,
.demo-2 .sl-slider blockquote {
	padding: 200px 0px 10px 30px;
	width: 80%;
	max-width: 960px;
	color: #313131;
	margin: 0 auto;
	position: relative;
	z-index: 100;
}

.demo-2  #slider2 .sl-slider h2,
.demo-2 #slider2 .sl-slider blockquote {
	padding: 60px 0px 10px 0px;
	width: 73%;
	max-width: 960px;
	color: #313131;
	margin: 0 auto;
	position: relative;
	z-index: 100;
}

.demo-2 .sl-slider h2 {
	font-size: 2.5rem;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}

.demo-2 .sl-slider blockquote {
	font-size: 1.3rem;
	padding-top: 10px;
        border: none;
	font-weight: 300;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}
.demo-2 #slider2 .sl-slider blockquote {
	font-size: 1.3rem;
	padding-top: 10px;
        border: none;
	font-weight: 300;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}

.demo-2 .sl-slider blockquote cite {
	font-size: 16px;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 5px;
	padding-top: 10px;
	display: inline-block;
        color: #D71920;
}

.demo-2 .bg-img {
	padding: 200px;
	/*-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;*/
	position: absolute;
	/*top: -200px;
	left: -200px;*/
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-position: center center;
}

/* Custom navigation arrows */

.nav-arrows span {
	position: absolute;
	z-index: 2000;
	top: 50%;
	width: 40px;
	height: 40px;
	border: 8px solid #ddd;
	border: 8px solid rgba(150,150,150,0.4);
	text-indent: -90000px;
	margin-top: -40px;
	cursor: pointer;
	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-arrows span:hover {
	border-color: rgba(150,150,150,0.9);
}

.nav-arrows span.nav-arrow-prev {
	left: 5%;
	border-right: none;
	border-top: none;
}

.nav-arrows span.nav-arrow-next {
	right: 5%;
	border-left: none;
	border-bottom: none;
}

/* Custom navigation dots */

#slider .nav-dots {
	text-align: center;
	position: absolute;
	bottom: 2%;
	height: 30px;
	width: 25%;
	right: 5%;
	z-index: 1000;
}
#slider2 .nav-dots {
	text-align: center;
	position: absolute;
	bottom: 2%;
	height: 30px;
	width: 25%;
	left: 5%;
	z-index: 1000;
}

.nav-dots span {
	display: inline-block;
	position: relative;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	margin: 3px;
	background: #ddd;
	background: rgba(150,150,150,0.4);
	cursor: pointer;
	box-shadow: 
		0 1px 1px rgba(255,255,255,0.4), 
		inset 0 1px 1px rgba(0,0,0,0.1);
}

.demo-2 .nav-dots span {
	background: rgba(50,50,50,0.6);
	margin: 6px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	box-shadow: 
		0 1px 1px rgba(255,255,255,0.4), 
		inset 0 1px 1px rgba(0,0,0,0.1),
		0 0 0 2px rgba(255,255,255,0.5);
}

.demo-2 .nav-dots span.nav-dot-current,
.demo-2 .nav-dots span:hover {
	box-shadow: 
		0 1px 1px rgba(255,255,255,0.4), 
		inset 0 1px 1px rgba(0,0,0,0.1),
		0 0 0 5px rgba(255,255,255,0.5);
}

.nav-dots span.nav-dot-current:after {
	content: "";
	position: absolute;
	width: 10px;
        height: 10px;
        top: -2px;
        left: -2px;
        border-radius: 50%;
        background: #d81921;
}

.demo-2 .bg-img-1 {
	background-image: url(../img/1.jpg);
}
.demo-2 .bg-img-2 {
	background-image: url(../img/2.jpg);
}
.demo-2 .bg-img-3 {
	background-image: url(../img/3.jpg);
}
.demo-2 .bg-img-en-1 {
	background-image: url(../img/en/1.jpg);
}
.demo-2 .bg-img-en-2 {
	background-image: url(../img/en/2.jpg);
}
.demo-2 .bg-img-en-3 {
	background-image: url(../img/en/3.jpg);
}
.demo-2 .bg-img-4 {
	background-image: url(../img/4.jpg);
}
.demo-2 .bg-img-5 {
	background-image: url(../img/5.jpg);
}
.demo-2 .bg-img-6 {
	background-image: url(../img/6.jpg);
}
.demo-2 .bg-img-en-4 {
	background-image: url(../img/en/4.jpg);
}
.demo-2 .bg-img-en-5 {
	background-image: url(../img/en/5.jpg);
}
.demo-2 .bg-img-en-6 {
	background-image: url(../img/en/6.jpg);
}
.demo-2 .bg-img-7 {
	background-image: url(../img/7.jpg);
}


/* Animations for content elements */

.sl-trans-elems .deco{
	-webkit-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
	-moz-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
	-o-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
	-ms-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
	animation: roll 1s ease-out both, fadeIn 1s ease-out both;
}
.sl-trans-elems h2{
	-webkit-animation: moveUp 1s ease-in-out both;
	-moz-animation: moveUp 1s ease-in-out both;
	-o-animation: moveUp 1s ease-in-out both;
	-ms-animation: moveUp 1s ease-in-out both;
	animation: moveUp 1s ease-in-out both;
}
.sl-trans-elems blockquote{
	-webkit-animation: fadeIn 0.5s linear 0.5s both;
	-moz-animation: fadeIn 0.5s linear 0.5s both;
	-o-animation: fadeIn 0.5s linear 0.5s both;
	-ms-animation: fadeIn 0.5s linear 0.5s both;
	animation: fadeIn 0.5s linear 0.5s both;
}
.sl-trans-back-elems .deco{
	-webkit-animation: scaleDown 1s ease-in-out both;
	-moz-animation: scaleDown 1s ease-in-out both;
	-o-animation: scaleDown 1s ease-in-out both;
	-ms-animation: scaleDown 1s ease-in-out both;
	animation: scaleDown 1s ease-in-out both;
}
.sl-trans-back-elems h2{
	-webkit-animation: fadeOut 1s ease-in-out both;
	-moz-animation: fadeOut 1s ease-in-out both;
	-o-animation: fadeOut 1s ease-in-out both;
	-ms-animation: fadeOut 1s ease-in-out both;
	animation: fadeOut 1s ease-in-out both;
}
.sl-trans-back-elems blockquote{
	-webkit-animation: fadeOut 1s linear both;
	-moz-animation: fadeOut 1s linear both;
	-o-animation: fadeOut 1s linear both;
	-ms-animation: fadeOut 1s linear both;
	animation: fadeOut 1s linear both;
}
@-webkit-keyframes roll{
	0% {-webkit-transform: translateX(500px) rotate(360deg);}
	100% {-webkit-transform: translateX(0px) rotate(0deg);}
}
@-moz-keyframes roll{
	0% {-moz-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-moz-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-o-keyframes roll{
	0% {-o-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-o-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-ms-keyframes roll{
	0% {-ms-transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {-ms-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@keyframes roll{
	0% {transform: translateX(500px) rotate(360deg); opacity: 0;}
	100% {transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-webkit-keyframes moveUp{
	0% {-webkit-transform: translateY(40px);}
	100% {-webkit-transform: translateY(0px);}
}
@-moz-keyframes moveUp{
	0% {-moz-transform: translateY(40px);}
	100% {-moz-transform: translateY(0px);}
}
@-o-keyframes moveUp{
	0% {-o-transform: translateY(40px);}
	100% {-o-transform: translateY(0px);}
}
@-ms-keyframes moveUp{
	0% {-ms-transform: translateY(40px);}
	100% {-ms-transform: translateY(0px);}
}
@keyframes moveUp{
	0% {transform: translateY(40px);}
	100% {transform: translateY(0px);}
}
@-webkit-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-moz-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-o-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-ms-keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeIn{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes scaleDown{
	0% {-webkit-transform: scale(1);}
	100% {-webkit-transform: scale(0.5);}
}
@-moz-keyframes scaleDown{
	0% {-moz-transform: scale(1);}
	100% {-moz-transform: scale(0.5);}
}
@-o-keyframes scaleDown{
	0% {-o-transform: scale(1);}
	100% {-o-transform: scale(0.5);}
}
@-ms-keyframes scaleDown{
	0% {-ms-transform: scale(1);}
	100% {-ms-transform: scale(0.5);}
}
@keyframes scaleDown{
	0% {transform: scale(1);}
	100% {transform: scale(0.5);}
}
@-webkit-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-moz-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-o-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-ms-keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes fadeOut{
	0% {opacity: 1;}
	100% {opacity: 0;}
}


/* Media Queries for custom slider */

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

	.demo-2 .sl-slider h2 {
		font-size: 28px;
                line-height: 50px;
                padding-top: 130px;
	}

	.demo-2 .sl-slider blockquote {
		font-size: 14px;
                padding: 0;
                
	}
        .demo-2  #slider2 .sl-slider h2, .demo-2 #slider2 .sl-slider blockquote{
            padding-top: 10px !important;
        }
}

@media screen and (max-width: 767px) {
    .menu{
        width: 100% !important;
        background: #fff;
    }
    div.myDiv2{
        width: 60%!important;
    }
    div.bg-grey.myDiv2{
        width: 100%!important;
        -ms-transform: none !important;
    -webkit-transform:  none !important;
    transform: none !important;
    }
    .panel-group{
        margin-left: 0!important;
    }
    
    .menu__list {
		display: block;
		margin: 0 auto;
                overflow: hidden;
                    top: 0!important;
                    width: 80%;
	}
        .navbar-collapse.in{
            overflow-y: hidden;
        }
        .menu--adrian .menu__link{
                width: fit-content;
                margin: 0 auto; 
        }
}
@media screen and (min-width: 768px) and (max-width:1023px) { 
    div.myDiv2{
        width: 70%!important;
    }
     div.bg-grey.myDiv2{
        width: 59%!important;
    }
    
}
@media screen and (min-width: 1230px) {
    .menu__list{
        font-size: 1.2rem !important;
    }
}
@media screen and (max-width: 320px) {
    #filters li span i{
        margin: 1px!important;
    }
}
@media screen and (max-width: 425px) {
    div.myDiv2{
        width: 100%!important;
        -webkit-transform:none!important;
        -moz-transform:none!important;
        transform:none!important;
        opacity: .8;
    }
    .section-bullets{
        display: none!important;
    }
    #filters li span{
        padding: 10px 2px !important;
    }
    #filters li{
        padding: 15px 0px!important;
    }
    .nav-indicators{
            position: relative;
    top: -36px;
    }
    .wrapper-myHesabeketab p{
        width: 100%!important;
    }
    .wrapper-myHesabeketab .form-group{
        width: 100%!important;
    }
    .mac-book{
        height: 310px!important;
    }
    .matn-sec-five{
        padding: 10px!important;
    }
    .myDiv2 + .row{
        text-align: center;
    }
    .nav-dots{
        width: 100% !important;
    }
    
    .panel-group.mr50{
        margin-right: 0px!important;
    }
    
}
.sec-2{
    background: url(../img/ipbi.ir_Main_AboutUs_back.jpg) no-repeat;
    background-size: cover;
}
.matn{
    line-height: 2;
    padding: 0 25px;
    text-align: justify;
    color: #fff;
    margin: 0;
    padding: 0;
}
img.img-main{
    width: 100%;
    max-width: 160px;
    height: auto;
}

a.Mani-features {
    background: #E6E6E6;
   display: inline-block;
   margin: 0 auto;
    background-color: #eceeef;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
img.Mani-features {
    max-width: 70px;
    width: 50%;
    height: auto;
    margin: 0px auto;
    position: relative;
    top: 10px;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    max-height: 80px;
}
.img-circle {
    border-radius: 50%;
}

body .title-KP {
    transform: skew(-40deg) rotate(0deg);
    -webkit-transform: skew(-40deg) rotate(0deg);
    -moz-transform: skew(-40deg) rotate(0deg);
    border-right: 3px solid #d71920;
    border-left: 3px solid #d71920;
    width: 100%;
    max-width: 150px;
    z-index: 100;
}
footer .kp{
     transform: skew(-18deg) rotate(0deg);
    -webkit-transform: skew(-18deg) rotate(0deg);
    -moz-transform: skew(-18deg) rotate(0deg);
    border-right: 4px solid #fff;
    width: 100%;
    height: 100px;
    max-width: 150px;
    z-index: 100;
    right: 45px;
    top: 77px;
}
.title-KP .title-KP-title{
    transform: skew(40deg) rotate(0deg);
    -webkit-transform: skew(40deg) rotate(0deg);
    -moz-transform: skew(40deg) rotate(0deg);
   
}
body .title-KP p {
    font-size: 1.25rem;
    transform: skew(40deg) rotate(1deg);
    -webkit-transform: skew(40deg) rotate(1deg);
    -moz-transform: skew(40deg) rotate(1deg);
    font-weight: bold;
    padding: 5px;
}
.more-information-link{
    text-decoration: none;
    color: #d71920;
}
.more-information-link:hover{
        text-decoration: none;

}
button.accordion {
    background-color: #fff;
    cursor: pointer;
    padding: 10px;
    width: 70%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    border-bottom: 1px solid #ccc;
    border-radius: 5px;
}
.accordion {
    position: relative;
    background-color: #eee;
    width: 60%;
    display: block;
    padding: 4em 3em;
}
.footer-img{
    width: 50%;
    max-width: 200px;
    height: auto;
}
.title-list-footer {
    margin: 0;
    border-bottom: 2px solid #fff;
}
.text-white {
    color: #fff !important;
}

.footer-list .footer-item .footer-link {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    padding-right: 0;
    line-height: 24px;
    line-break: strict;
}
.footer-list .footer-item {
    padding: 10px 0;
}
.footer-list .footer-item .footer-link:hover {
    text-decoration: none;
    padding-right: 10px;
}
.zindex100{
    z-index: 100;
}
.btn-custom{
    border-radius: 50px;
    background: #d71920;
    color: #fff;
    border: 2px solid #d71920;
}
.btn-custom:hover{
    background-color: #fff;
    color: #d71920;
}
.btn-seen{
    font-size: 2rem;
    position: relative;
    bottom: 120px;
    z-index: 999999999999;
    opacity: 1;
    border: 2px solid #D71920;
    padding: 15px 20px;
    text-decoration: none;
}
.btn-seen:hover{
     background-color: #fff;
    color: #d71920!important;
    text-decoration: none!important;
}
a:focus, a:hover{
    color: #d71920;
    opacity: .9;
}
.bg-grey{
    background: #E6E6E6;
}
.p50{
    padding: 50px;
}
.bg-red-custom{
    background: #d71a21;
}
.panel-default>.panel-heading{
    background: #fff;
}
a[data-toggle]:hover, a[data-toggle]:focus{
    color: #d71a21!important;
    text-decoration: none;
}
.sec-3{
    position: relative;
}


/*menus*/
.f-nav{ 
    z-index: 999999999999!important;
    position: fixed!important;
    background: #fff;
    opacity: .9; 
    left: 0;
    top: 0; 
    width: 100%;
    padding: 0!important;
}
.f-nav.menu--adrian .menu__link{
        color: #666;
}
.f-nav .navbar-nav{
    top: 20px;
}

/*hesabketab page*/
.br-content-box h2 {
    color: #D71920;
}

.br-img-box {
    padding: 2em 0;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.text-red-custom{
    color: #d71a21;
}
.pr50{
    padding-right: 50px!important;
}
.pl50{
    padding-left: 50px!important;
}
.mr50{
    margin-right: 50px!important;
}
.ml50{
    margin-left: 50px!important;
}
body .line-height {
    line-height: 2;
}
.bg-pattern-slider {
    min-height: 500px;
    background: linear-gradient(
 rgba(35, 51, 134, 0.96),
 rgba(35, 51, 134, 0.96)
 ),url(../img/Hesabeketab-page/ipbi_Pattern01.png) no-repeat top;
    background-size: cover;
    background-clip: padding-box;
}
.nav-indicators .myCarousel-target a {
    text-decoration: none;
    color: #fff;
}
.nav-indicators .myCarousel-target {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin: 30px 0;
}
.nav-indicators {
    color: #fff;
    list-style-type: disc;
        
}
.mac-book .carousel-inner {
    /* position: relative; */
    /* width: 100%; */
    /* overflow: hidden; */
    width: 90%;
    position: relative;
    left: 5px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}
.mac-book {
    height: 570px;
    background: url(../img/Hesabeketab-page/ipbi_Services_01.png) no-repeat top;
    background-size: contain;
    background-clip: padding-box;
    position: relative;
}
.wrapper {
    /* width: 88%; */
    /* height: 300px; */
    position: relative;
    top: 30px;
    /* right: 30px; */
}

@media (min-width: 768px){
.circle-content {
    font-size: 2em;}
}
@media (min-width: 480px){
.circle-content {
    font-size: 1em;}
}
.circle {
    position: relative;
    display: block;
    margin: 1em 0;
    background-color: #fff;
    color: #222;
    text-align: center;
    width: 40%;
    border-radius: 50%;
}
.circle-content {
    display: table-cell;
    padding: 2em 1em;
    vertical-align: middle;
}
.circle-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
}
.circle-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wrapper-content {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.title {
    color: #d71920;
}
.font-weight-bold {
    font-weight: bold;
}
.modules-content-box {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 125px 0 20px;
}
.bg-pattern {
    height: 500px;
    background: linear-gradient(
 rgba(136, 136, 136, 0.45),
 rgba(136, 136, 136, 0.45)
 ),url(../img/Hesabeketab-page/ipbi_Pattern02.png) no-repeat top;
    background-size: cover;
    background-clip: padding-box;
}
.wrapper-myHesabeketab p {
    width: 70%;
    margin: 0 auto;
}
.wrapper-myHesabeketab .form-group {
    width: 50%;
    margin: 0 auto;
}
.inner-addon {
    position: relative;
}
.left-addon input {
    padding: 3rem 15px 3rem 55px;
    font-size: 2em;
    color: #858282;
}
.inner-addon .fa {
    position: absolute;
    /* padding: 10px; */
    pointer-events: none;
    color: #b6b6b6;
}
.left-addon .fa {
    left: 0;
    margin: 5px;
}
body .all-project .all-project-btn {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: #d71920;
    color: #fff;
    text-decoration: none;
    padding: 15px 50px;
    margin: 3em 0;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid #d71920;
}
body .all-project .all-project-btn.btn-white {
    background-color: #fff;
    color: #d71920;
}
body .all-project .all-project-btn:hover{
    background-color: #fff;
    color: #d71920;
}
body .all-project .all-project-btn.btn-white:hover{
    background-color: #d71920;
    color: #fff;
}

.pt50{
    padding-top: 50px!important;
}
.pt100{
     padding-top: 100px!important;
}
.matn-custom{
    font-size: 13px;
}
.about-us {
    min-height: 650px;
    background: url(../images/ipbi.ir_Main_AboutUs_back.jpg) no-repeat top;
    background-size: cover;
    background-clip: padding-box;
}
a#scroll_top{
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #eee;
    display: inline-block;
    position: fixed;
    right: 66px;
    bottom: 18px;
    transition: all 1s;
    -webkit-transition: all 1s;
    text-align: center;
    vertical-align: middle;
    padding-top: 10px;
}

.pt150{
    padding-top: 150px !important;
}
.pb100{
    padding-bottom: 100px !important;
}



/*Project or Works Page*/
.mt150{
    margin-top: 150px !important;
}
.inline-block{
    display: inline-block;
}
.br-content-box{
    margin-top: 150px!important;
}


/*About Us page*/
.aboutus-page{
    background: url(../img/ipbi_AboutUs_Background.jpg) no-repeat;
    min-height: 500px;
    background-size: cover;
}

/*textarea*/
textarea.textarea-custom{
    resize: none;
    min-height: 150px;
}

li.lang{
  padding: 10px;
}
li.lang a{
color: #D71920;
}