﻿
/*panels=============================================*/
.panel-header {
    text-align:center;
	width:80%;
	margin:30px auto !important;
	
}
.panel-header i {
    font-size: small;
}

.panel-header span {
    font-size: small;
	
}
.panel-header p {
   
	text-align:center;
	margin-top:20px;
}
    .panel-header h3 {
        position: relative;
        display: inline;
        color: #3B0202;
        font-size: 1.5em;
        font-family: AnjomanMax;
        margin-bottom: 10px;
    }

        .panel-header h3:after {
            content: '';
            width: 20%;
            height: 3px;
            background: #3B0202;
            position: absolute;
            right: 0;
            top: 100%;
            transition: all ease-in .5s;
        }

 .panel-header h3:hover:after {
    width: 100%;
    transition: all ease-in .5s;
} 

.start-panel .panel-header {
   text-align:right;
   width:100%;
	
	
}
.start-panel  .panel-header p {
   
	text-align:right;
}
.start-panel .panel-header h3 {
		
        position: relative;
        display: inline;
        color: #000;
        font-size: 1.5em;
		font-family:AnjomanMax;
		margin-bottom:10px;
       
    }

.start-panel   .panel-header h3:after {
            content: '';
            width: 40%;
			margin-top:5px;
            height: 3px;
            background: #3B0202;
            position: absolute;
            right: 5%;
            top: 100%;
            transition: all ease-in .5s;
			
        }

.start-panel.panel-header h3:hover:after {
    width: 100%;
    transition: all ease-in .5s;
}


/*carousel-effect====================================*/
.carousel-zoom .carousel-inner {
    position: relative;
}

.carousel-zoom .carousel-item {
    opacity: 0;
    transform: scale(1.2); /* ابتدا کمی بزرگ‌تر */
    transition: opacity 1.2s ease, transform 1.2s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.carousel-zoom .carousel-item.active {
    opacity: 1;
    transform: scale(1); /* هنگام فعال شدن، اندازه واقعی */
    position: relative;
    z-index: 2;
}

.carousel-blur-fade .carousel-inner {
    position: relative;
}

.carousel-blur-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease, filter 1.2s ease;
    filter: blur(8px);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.carousel-blur-fade .carousel-item.active {
    opacity: 1;
    filter: blur(0);
    position: relative;
    z-index: 2;
}

.carousel-3d .carousel-inner {
    perspective: 1200px;
    position: relative;
}

.carousel-3d .carousel-item {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 0;
    transform: rotateY(90deg);
    transition: transform 1s ease, opacity 1s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.carousel-3d .carousel-item.active {
    opacity: 1;
    transform: rotateY(0deg);
    position: relative;
    z-index: 2;
}


/*btn basket=============================================*/
.btn-basket {
	position: absolute;
	bottom: 10.7rem;
	right: 10rem;
}




.pric-box {
	background-color: #A0153E;
	color: #FFF !important;
}

	.pric-box .text-color-4 {
		color: #FFF !important;
	}

	.pric-box::after {
		content: "\F229";
		position: absolute;
		font-family: bootstrap;
		bottom: 4.6rem;
		left: 11rem;
	}


@media (max-width:1440px) {



	.pric-box::after {
		left: 8rem;
	}
}

@media (max-width:1024px) {



	.pric-box::after {
		left: 6rem;
	}
}

@media (max-width:768px) {

	.pric-box::after {
		left: 4rem;
	}
}

@media (max-width:425px) {

	.pric-box::after {
		left: 12rem;
	}
}


.product .bi-circle-fill::before {
	font-size: 0.8rem;
	padding: 0.5rem;
}
/*========================================*/
.text-input {
	padding: 0 !important;
}


/*basket====================*/

.card-basket {
	color: #ffffff;
	background-color: #A0153E;
}


/**************************/
.product .media a:hover {
	background: rgb(255,75,75);
	background: linear-gradient(90deg, rgba(255,75,75,0.4598214285714286) 7%, rgba(255,75,75,0.5634628851540616) 46%, rgba(255,75,75,0.35898109243697474) 83%);
	transition: background 1s;
}






.product .media a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	position: relative;
	/* overflow: hidden; */
	border-radius: 7px;
	cursor: pointer;
	transition: all .3s;
}

.product .media{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	backdrop-filter: blur(4px);
	letter-spacing: 0.8px;
	border-radius: 10px;
	transition: all .3s;
	border: 1px solid rgba(156, 156, 156, 0.466);
}

	.product .media a::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		background: #f09433;
		background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
		z-index: -1;
		border-radius: 9px;
		pointer-events: none;
		transition: all .3s;
	}

	.product .media a:hover::after {
		transform: rotate(35deg);
		transform-origin: bottom;
	}

	.product .media a:hover .media{
		background-color: rgba(156, 156, 156, 0.466);
	}




@media (max-width: 1024px) {
	.product .media{
		flex-wrap: wrap;
	}
}


/*membership===========================================*/

.bi-chevron-compact-left::before {
	font-size: 1.4rem;
}


.text-titel {
	color: #801336;
}



.accordion .text-color-2 {
	font-size: 1rem;
	padding: 0 !important;
	color: #FFF;
}

.acord-membership .accordion-button {
	padding: 0 !important;
	background-color: #801336 !important;
	color: #FFF !important;
}


/*topic==================================================*/
.bi-plus-circle::before {
	font-size: 1rem;
	color: red;
}




/*activity============================*/
.btn-download {
	width: 125px;
	height: 45px;
	border-radius: 20px;
	border: none !important;
	box-shadow: 1px 1px rgba(107, 221, 215, 0.37);
	padding: 5px 10px;
	background: rgb(255,77,77);
	background: linear-gradient(90deg, rgba(255,77,77,1) 7%, rgba(167,16,37,1) 48%, rgba(138,0,44,1) 83%) !important;
	color: #fff !important;
	font-family: Roboto, sans-serif;
	font-weight: 505;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	filter: drop-shadow(0 0 10px rgba(59, 190, 230, 0.568)) !important;
	transition: .5s linear;
}


	.btn-download:hover {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		transition: .5s linear;
	}


		.btn-download:hover .bi-download::before {
			display: inline;
		}


	.btn-download:hover {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		transition: .5s linear;
		margin-left: 3rem;
	}

		.btn-download:hover::before {
			content: '\F119';
			position: absolute;
			top: -1px;
			left: 0px;
			width: 100%;
			height: 100%;
			border: 3.5px solid transparent;
			border-top: 3.5px solid #fff;
			border-right: 3.5px solid #fff;
			border-radius: 50%;
			animation: animateC 2s linear infinite;
			padding: 15px;
		}

@keyframes animateC {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}



.activity .text-color-2 {
	color: #770221;
}

.bi-book-half::before {
	padding-left: 0.3rem;
}


/*=================================*/
.bg-color-1 {
	width: 150px;
	height: 30px;
	position: relative;
	background: #ff7982;
	text-align: center;
	padding-top: 0.5rem;
	font-size: 0.8rem;
}

	.bg-color-1::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 0;
		border-left: 15px solid white;
		border-top: 15px solid transparent;
		border-bottom: 20px solid transparent;
		top: 0.2px;
	}




.btn-secondary {
	font-size: 1rem;
	color: #9e0514;
	border: 2px solid #9e0514;
	border-radius: 34px;
	background-color: transparent;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	overflow: hidden;
}


	.btn-secondary ::before {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		content: '';
		border-radius: 50%;
		display: block;
		width: 20em;
		height: 20em;
		left: -5em;
		text-align: center;
		transition: box-shadow 0.5s ease-out;
		z-index: -1;
	}

	.btn-secondary :hover {
		color: #fff;
		border: 1px solid rgb(40, 144, 241);
	}

		.btn-secondary :hover::before {
			box-shadow: inset 0 0 0 10em rgb(40, 144, 241);
		}







/*===================================================*/
.page {
	overflow: hidden !important;
}


.card-body strong {
	color: #8c0000;
}

.card-body1 {
	overflow: hidden;
	border-top: none;
}



.card-body h1 {
	background: rgb(83,55,55);
	background: linear-gradient(90deg, rgba(83,55,55,1) 7%, rgba(224,0,0,1) 46%, rgba(156,1,1,1) 83%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: 100%;
}



.card-body strong {
	color: #8c0000;
}

.card-body1 {
	overflow: hidden;
	border-top: none;
}



.card-img .list-group-item a:hover {
	background: rgb(255,75,75);
	background: linear-gradient(90deg, rgba(255,75,75,0.4598214285714286) 7%, rgba(255,75,75,0.5634628851540616) 46%, rgba(255,75,75,0.35898109243697474) 83%);
	transition: background 1s;
}






.card-img .list-group-item a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	position: relative;
	/* overflow: hidden; */
	border-radius: 7px;
	cursor: pointer;
	transition: all .3s;
}

.card-img .list-group-item {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	backdrop-filter: blur(4px);
	letter-spacing: 0.8px;
	border-radius: 10px;
	transition: all .3s;
	border: 1px solid rgba(156, 156, 156, 0.466);
}

	.card-img .list-group-item a::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		background: #f09433;
		background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
		background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
		background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
		z-index: -1;
		border-radius: 9px;
		pointer-events: none;
		transition: all .3s;
	}

	.card-img .list-group-item a:hover::after {
		transform: rotate(35deg);
		transform-origin: bottom;
	}

	.card-img .list-group-item a:hover .list-group-item {
		background-color: rgba(156, 156, 156, 0.466);
	}


.list-group-flush > .list-group-item:last-child {
	border: none !important;
}


@media (max-width: 1024px) {
	.list-group-item {
		flex-wrap: wrap;
	}
}




.SubTitle {
	background-color: #fff8f8;
	padding: 1rem;
	border-radius: 20px;
}




.Comment {
	text-align: center;
}

.border-bottom {
	border-bottom: solid 1px #870814 !important;
}



.Comment {
	text-align: center;
}

.border-bottom {
	border-bottom: solid 1px #870814 !important;
}
/*========================================================*/
#sendComment label {
}

#sendComment .input::after {
	content: "";
	position: absolute;
	height: 3px;
	background: linear-gradient(90deg, #FF6464 0%, #FFBF59 50%, #47C9FF 100%);
	transition: width 0.4s cubic-bezier(0.42, 0, 0.58, 1.00);
}

#sendComment .input:focus + #sendComment .input::after {
	width: 100%;
}

#sendComment .input {
	background-color: #eee;
	border: none;
	padding: 1rem;
	font-size: 1rem;
	width: 13em;
	border-radius: 1rem;
	color: lightcoral;
	box-shadow: 0 0.4rem #dfd9d9;
	cursor: pointer;
}

	#sendComment .input:focus {
		outline-color: lightcoral;
	}


/*========================================================*/
.top-slider {
	position: relative;
	margin-top: 50px;
}

	.top-slider .carousel-caption {
		position: absolute;
		text-align: right;
		padding: 5px;
		top: auto;
		bottom: 10%;
	}

		.top-slider .carousel-caption h5 {
			font-size: 2.5rem;
			font-weight: bolder;
			color: #FFF;
			margin: .2em 0 1em 0;
			font-family: AnjomanMax;
			animation: fadeInUp;
			animation-duration: 2s;
		}

		.top-slider .carousel-caption p {
			font-size: 1rem;
			text-align: justify;
			font-weight: bold;
			color: #FFF;
			padding: 10px;
			text-align: right;
			animation: fadeInUp;
			animation-duration: 3s;
			width: 50%;
		}

	.top-slider .slider-btn {
		margin-top: 20px;
		animation: fadeInUp;
		animation-duration: 4s;
	}

@media (min-width: 767.98px) {
	#slider-1 {
		height: 100vh;
	}
}

/*===================================*/


.back .img-fluid {
	max-width: 80%;
	z-index: 2;
}

.back .card-body {
}


.card-body h2 {
	font-size: 1.2rem;
	padding: 0.5rem;
}

.card-body .card {
	border: none;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

	.card-body .card:hover {
		background-color: #faf7f7;
	}


/*	.card-body .card::after {
		content: "";
		position: absolute;
		background-color: aqua;
		background: url('img/a1.svg') no-repeat center top;
		width: 100%;
		height: 100%;
		bottom: 0;
		right: 0;
		opacity: 0.3;
	}*/
/*login=====================================================*/





#alone-page::before {
	content: "";
	position: absolute;
	background-color: aqua;
	background: url('img/back6.svg') no-repeat center top;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	opacity: 0.5;
	z-index: -1;
}



.card-header {
	text-align: center;
	background-color: #FFF;
	border-bottom: none !important;
}


	.card-header::after {
		content: "";
		position: absolute;
		width: 30%;
		height: 3px;
		background: rgb(249,70,123);
		background: linear-gradient(90deg, rgba(249,70,123,1) 7%, rgba(160,21,62,1) 83%);
		top: 2.3rem;
		text-align: center;
		left: 35%;
	}



.form-check-input {
	border: #A0153E 2px solid;
}

	.form-check-input:checked {
		background-color: #A0153E;
		color: black;
		border: #FFF 2px solid;
	}

#alone-page .btn-color-2 {
	font-size: 1rem;
	color: #A0153E;
	border: 2px solid #A0153E;
	border-radius: 34px;
	background-color: transparent;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	overflow: hidden;
}

	#alone-page .btn-color-2 :hover {
		color: #A0153E;
		box-shadow: 0 0px 20px #A0153E;
	}



.form-control {
	border-radius: 50px;
}







.input-group-text {
	color: white;
	border-radius: 50%;
	background: rgb(249,70,123);
	background: linear-gradient(90deg, rgba(249,70,123,1) 7%, rgba(160,21,62,1) 83%);
	border: 0;
}




@keyframes a1 {
	10% {
		right: 10rem;
	}

	20% {
		right: 10.3rem;
	}

	30% {
		right: 10rem;
	}

	40% {
		right: 10.3rem;
	}

	50% {
		right: 10rem;
	}

	60% {
		right: 10.3rem;
	}

	70% {
		right: 10rem;
	}

	80% {
		right: 10.3rem;
	}

	90% {
		right: 10rem;
	}

	100% {
		right: 10.3rem;
	}
}


@keyframes a2 {
	10% {
		right: 11.2rem;
	}

	20% {
		right: 11rem;
	}

	30% {
		right: 11.2rem;
	}

	40% {
		right: 11rem;
	}

	50% {
		right: 11.2rem;
	}

	60% {
		right: 11rem;
	}

	70% {
		right: 11.2rem;
	}

	80% {
		right: 11rem;
	}

	90% {
		right: 11.2rem;
	}

	100% {
		right: 11rem;
	}
}




@keyframes s1 {
	10% {
		right: -7.5rem;
	}

	20% {
		right: -7.8rem;
	}

	30% {
		right: -7.5rem;
	}

	40% {
		right: -7.8rem;
	}

	50% {
		right: -7.5rem;
	}

	60% {
		right: -7.8rem;
	}

	70% {
		right: -7.5rem;
	}

	80% {
		right: -7.8rem;
	}

	90% {
		right: -7.5rem;
	}

	100% {
		right: -7.8rem;
	}
}


@keyframes s2 {
	10% {
		right: -7rem;
	}

	20% {
		right: -7.2rem;
	}

	30% {
		right: -7rem;
	}

	40% {
		right: -7.2rem;
	}

	50% {
		right: -7rem;
	}

	60% {
		right: -7.2rem;
	}

	70% {
		right: -7rem;
	}

	80% {
		right: -7.2rem;
	}

	90% {
		right: -7rem;
	}

	100% {
		right: -7.2rem;
	}
}



@keyframes t1 {
	10% {
		right: 9.5rem;
	}

	20% {
		right: 9.8rem;
	}

	30% {
		right: 9.5rem;
	}

	40% {
		right: 9.8rem;
	}

	50% {
		right: 9.5rem;
	}

	60% {
		right: 9.8rem;
	}

	70% {
		right: 9.5rem;
	}

	80% {
		right: 9.8rem;
	}

	90% {
		right: 9.5rem;
	}

	100% {
		right: 9.8rem;
	}
}


@keyframes t2 {
	10% {
		right: 10rem;
	}

	20% {
		right: 10.2rem;
	}

	30% {
		right: 10rem;
	}

	40% {
		right: 10.2rem;
	}

	50% {
		right: 10rem;
	}

	60% {
		right: 10.2rem;
	}

	70% {
		right: 10rem;
	}

	80% {
		right: 10.2rem;
	}

	90% {
		right: 10rem;
	}

	100% {
		right: 10.2rem;
	}
}



@keyframes d1 {
	10% {
		right: 7.1rem;
	}

	20% {
		right: 7.4rem;
	}

	30% {
		right: 7.1rem;
	}

	40% {
		right: 7.4rem;
	}

	50% {
		right: 7.1rem;
	}

	60% {
		right: 7.4rem;
	}

	70% {
		right: 7.1rem;
	}

	80% {
		right: 7.4rem;
	}

	90% {
		right: 7.1rem;
	}

	100% {
		right: 7.4rem;
	}
}


@keyframes d2 {
	10% {
		right: 8rem;
	}

	20% {
		right: 8.2rem;
	}

	30% {
		right: 8rem;
	}

	40% {
		right: 8.2rem;
	}

	50% {
		right: 8rem;
	}

	60% {
		right: 8.2rem;
	}

	70% {
		right: 8rem;
	}

	80% {
		right: 8.2rem;
	}

	90% {
		right: 8rem;
	}

	100% {
		right: 8.2rem;
	}
}


.card1 {
	border-left: none;
}



.card-msg::after {
	content: "";
	position: absolute;
	background-color: aqua;
	background: url('img/21.svg') no-repeat center top;
	width: 100% !important;
	height: 100%;
	top: 0;
	right: 10rem;
	z-index: 1;
	animation: a1 10s infinite;
	width: 100%;
}


.card-msg::before {
	content: "";
	position: absolute;
	background-color: aqua;
	background: url('img/20.svg') no-repeat center top;
	width: 100% !important;
	height: 100%;
	top: 0;
	right: 11rem;
	z-index: 1;
	animation: a2 10s infinite;
}


.card-msg2::after {
	content: "";
	position: absolute;
	background-color: aqua;
	background: url('img/21.svg') no-repeat center top;
	width: 100% !important;
	height: 100%;
	top: 0;
	right: 12rem;
	z-index: 1;
	width: 100%;
}


.card-msg2::before {
	content: "";
	position: absolute;
	background-color: aqua;
	background: url('img/20.svg') no-repeat center top;
	width: 100% !important;
	height: 100%;
	top: 0;
	right: 13rem;
	z-index: 1;
}


.cardmg {
	background-color: #A0153E;
}



.Msglogin {
	padding-top: 8rem;
	z-index: 1050 !important;
	color: #FFF;
}


.card {
	overflow: hidden;
}

@media (max-width: 1441px) {



	.card-msg::after {
		right: 9rem;
		animation: t1 10s infinite;
	}

	.card-msg::before {
		right: 10rem;
		animation: t2 10s infinite;
	}
}

@media (max-width: 1265px) {



	.card-msg::after {
		right: 7rem;
		animation: d1 10s infinite;
	}

	.card-msg::before {
		right: 8rem;
		animation: d2 10s infinite;
	}
}

@media (max-width: 572px) {
	.card1 {
	}

	.cardmg {
		background-color: transparent;
	}

	.card-msg::after {
		right: -6.5rem;
		animation: s1 10s infinite;
	}

	.card-msg::before {
		right: -7rem;
		animation: s2 10s infinite;
	}

	.Msglogin {
		color: black;
		width: 86%;
		right: 2.5rem;
		padding-top: 0;
		font-size: 0.8em;
		display: flex;
		justify-content: center;
	}

	.card-msg2::after {
		right: -6rem;
	}

	.card-msg2::before {
		right: -5rem;
	}
}

/*========================================================*/
.top-slider{
	position:relative;
	margin-top:50px;
}
.top-slider .carousel-caption {
   position:absolute;
    text-align: right;
    padding: 5px;
    top:auto;
	bottom:10%;
	
	
}

    .top-slider .carousel-caption h5 {
        font-size: 2.5rem;
        font-weight: bolder;
        color: #FFF;
        margin: .2em 0 1em 0;
		font-family:AnjomanMax;
		animation: fadeInUp; 
		animation-duration: 2s; 
    }
    .top-slider .carousel-caption p {
        font-size: 1rem;
        text-align:justify;
		font-weight:bold;
        color: #FFF;
        padding: 10px;
        text-align: right;
		animation: fadeInUp; 
		animation-duration: 3s; 
		width:50%;
    }
	  .top-slider .slider-btn {
		margin-top:20px;
		animation: fadeInUp; 
		animation-duration: 4s; 
    }
	@media (min-width: 767.98px) {
    #slider-1{
	height:100vh;
}
}


/*itemtype==============================================*/

.item-type .item{
	margin:1.5em;
	
}
.item-type h5 {
    padding:1em;
	font-size:.9em;
}
    .item-type img {
        width: 50%;
    }
.item-type a{
	text-align:center;
}



/*category==============================================*/
.item-cat .row{
   
    border-radius: 1em;
    background: rgba(255,255,255,.9);
	padding:1em;
}

.item-cat h5 {
    padding:1em;
}

.item-cat img {
    width: 20%;
}

.item-cat a {
    text-align: center;
}
/*contents=======================================*/
.content .card	{	
	height:100%;
}
.content .item {
   height:100%;
}

.hr-content .card {
    height: 100%;
    max-height: 100%;
	background:#FFF;
}
/*gallery=======================================*/

.gallery .item{
   object-fit: cover;
   transition: all .3s ease;
    overflow:hidden !important;
	z-index:10;
	position:relative;
}
.gallery .item img{
	 overflow:hidden !important;
	   transition: all .3s ease;
	   filter: grayscale(50%);
	   border-radius:5% !important;
 }
 
 
 .gallery .item:hover img{
	 transform: scale(1.3);
	   transition: all 1s ease;
	   filter: grayscale(0);
	   
	 
 }
 
 .gallery .item a{
	 overflow:hidden;
	 z-index:10;
	 position:relative;
 }
  .gallery .item a .mb-2{
	 overflow:hidden;
	 z-index:10;
	 position:relative;
 }
 



/*
.gallery .item{
	margin-top:2rem;
	transition:1s all;
	
}

.gallery .item:hover{
	 margin-top:2%;
	 transition:1s all; 
 
	 
}
.gallery .item:hover img{
	
	   filter: grayscale(100%);
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	transition:0.5s all;
}

.gallery h2{
	color:black;
}
.gallery .item:hover h2{
	color:#f9a100;
}








.gallery h2 {
    font-size: 1rem;
}

.gallery .item {
}
*/
/*person=======================================*/
.person .item{
	background-color:#ffff;
	border-radius:5px !important;
	margin-top:1rem;
	/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19)!important;*/
	  padding:25px 10px!important;
  background: #fff;
  border-top-right-radius: 10px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0,0,0,0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
	
}
.person img{
	
  transition: transform .2s; 
  	border-radius:50% !important;
		width:80% !important;
	padding:10%;


}
.person .item a{
	color:black;
}

.person .item .social-person{
	padding-bottom:2rem;
	text-align:center;
}


.person .item h2{
	margin-top:30px!important;
	 padding:10px !important;
	 font-size:16px;
	 text-align:center;
	 
	 
}


.person .item img {
  z-index: 10000;
  transform: translateZ(0);

  
}


.person .item:hover img{
	  transform: scale(1.1);
}


.person .item:hover h2{
	color:#cd597b;
}

.person .item::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #cd597b;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.5s linear 0s;
}

.person .item:hover::before {
  height: 85%;
  transition:all 0.5s;
}




.person .item:hover {
  color: #1369ce;
  background-color: #f7f5ec;
    transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0,0,0,0.11),
    0 24px 46px var(--box-shadow-color);
}





/*sponsor=======================================*/

.sponsor h2 {
    font-size: 1rem;
	text-align:center;

}

.sponsor img{
	
 width:50%!important;
  height:50%!important;

}

.sponsor h3{
    text-align: right !important;
}
.sponsor .item{
	position:relative;
    transition: all 0.5s;

	margin-top:20px !important;
	padding:0 !important;
	
}
.sponsor .item:hover{  
     transition: all 0.5s;
    box-shadow: 0px 10px 10px #A0153E;
	transform: translate(0px,-10px);
	
	
}


/*/////////////////////tab///////////////////*/




.panel-tab h5{
	font-size:0.8rem;
}


.panel-tab .nav-link{
	background-color:#FFF;
	color:#A0153E!important;
	text-align:center;
	border:1px #A0153E solid;
}


.panel-tab .nav-tabs .nav-link.active {
	background-color:#A0153E;
	color:#FFF !important;
}



.panel-tab .nav-link:hover{
	color:#A0153E !important;
	border:#fed487;
	
}

.panel-tab .nav{
	display:flex;
	justify-content: center
}





.panel-tab .bi-mortarboard-fill{
	font-size:1.3rem;
}

.panel-tab .accordion-button:not(.collapsed){
	background-color:#cd597b !important;
	color:black;
	border:rgb(232, 255, 226);
}



 .panel-tab .accordion-button{
	background-color:#A0153E;
	color:white;
}


#acco-head-335{
	background-color:#f9a100;
	color:white;
	
}

@font-face{
    font-family: "bootstrap";
    src: url("../../lib/bootstrap-icons/font/fonts/bootstrap-icons.woff");
}

.panel-tab::after{
	content:"\F504";
	font-size:3rem;
	font-family: "bootstrap";
	color:#fff;
	text-align:center;
	z-index:10;
	overflow:visible!important;
	position:absolute;
	padding:3%;
	background: rgb(176,58,93);
background: linear-gradient(90deg, rgba(176,58,93,1) 0%, rgba(205,89,123,1) 50%, rgba(176,58,93,1) 92%);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	box-shadow :5px 5px 10px rgba(0,0,0,0.2);
	animation: vawe 10s infinite;
	overflow: hidden;
	top:5%;
	
	right:0;
	z-index:0;
}





@keyframes vawe {
  20% {
    border-radius: 45% 55% 62% 38% / 53% 51% 49% 47%;
  }
  40% {
    border-radius: 45% 55% 49% 51% / 36% 51% 49% 64%;
  }
  60% {
    border-radius: 80% 40% 57% 43% / 47% 62% 38% 53%;
  }
  80% {
    border-radius: 30% 40% 32% 68% / 38% 36% 64% 62%;
  }
}












/*vertical-menu=====================================================*/
.vertical-menu li a {
    color: #12121d;
    font-size: small;
}
.vertical-menu li a i{
    color: #000;
    font-size:xx-small;
}
.vertical-menu .panel-header{
	margin-bottom:0 !important;
}
/*Vertical SubMenu================================================*/
.vertical-nav .dropdown-submenu {
    position: relative;
}


.vertical-nav .nav .nav-link a {
    color: #bababa;
}

.vertical-nav .nav .nav-link {
    color: #bababa;
}

/*.vertical-nav .nav .nav-link a:hover {
    color: black;
}*/
.vertical-nav .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.vertical-nav .dropdown-toggle::after {
    display: none !important;
}

.vertical-nav ul.dropdown-menu {
    text-align: right;
    font-size: 12px;
    top: 0;
    right: 50%;
    margin-top: 0px;
    margin-left: 0px;
    background-color: #f3f3f3;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.vertical-nav .dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
}

.vertical-nav ul.dropdown-menu > li {
    padding: 8px 0;
}

    .vertical-nav ul.dropdown-menu > li > a {
        color: #000 !important;
    }

        .vertical-nav ul.dropdown-menu > li > a:hover {
            color: #8b0000 !important;
        }

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}



    /*stat===============================================*/
    .stat {
        color: #FFF;
    }
	.stat .panel-header {
    text-align:center;
	margin:50px auto !important;
	
}
 .stat  .panel-header h3:after {
           
            width: 0%;
			
        }
    .stat h3 {
        color: #FFF !important;
    }
.stat i {
    
    font-size: 3em;
}
.stat p {
    font-size: 1em;
}
.stat .number-count {
    font-size: 2em;
}
 

/*======================================================*/
.img-fade .item, .img-up .item{
    position: relative;
}

    .img-fade  .overlay {
        position: absolute;
        padding: 10px;
		width: 80%;
		height: 70%;
		top:0;
		left: 0;
		margin: 10%;
        background: rgba(3, 69, 191, 0.7);
        opacity: 0;
        transition: 1s ease;
    
    }
.img-fade  .overlay h2{
	color:#FFF;
	font-weight:bold;
}
.img-fade  .overlay p{
	color:#FFF;
	
}
    .img-fade .item:hover .overlay {
        opacity: 1;
    }

    .img-up .overlay {
         position: absolute;
        padding: 10px;
		width: 80%;
		height: 70%;
		top:0;
		left: 0;
		margin: 10%;
        background: rgba(3, 69, 191, 0.581);
        overflow: hidden;
        transition: ease-in-out .5s;
        opacity: .5;
    }

    .img-up .item:hover .overlay {
        height: 100%;
    }
.img-fade  .overlay h2{
	color:#FFF;
	font-weight:bold;
}
.img-fade  .overlay p{
	color:#FFF;
	
}
     .img-grow {
        overflow: hidden;
        }

    .img-grow img {
        transition: transform ease-in .5s;
    }

    .img-grow .item:hover img {
        transform: scale(1.1);
    }

.img-shrink {
    overflow: hidden;
}

    .img-shrink img {
        transition: transform ease-in .5s;
     
    }

    .img-shrink .item:hover img {
        transform: scale(1.1);
    }
	.img-rotate .item a div{
    overflow: hidden;
}
.img-rotate img{
    transition:transform .5s ease-in-out;

}

.img-rotate img:hover {
    transform:scale(1.5) rotate(10deg);
}
   







@font-face{
    font-family: "bootstrap";
    src: url("../../lib/bootstrap-icons/font/fonts/bootstrap-icons.woff");
}
/*
.content .card{
	position:relative;
}



.content .card a:after{
	content:" \F285";
	font-family: "bootstrap";
	font-size:25px;
	text-align:center;
	color:black;
	position:absolute;
	width:50px;
	height:40px;
	background-color:#7f1919;
	left:30px;
	bottom:0px;
	transition:all 1s;
	z-index:1050;
}


.content .card:hover a:after{
	background-color:#7f1919;
	bottom:-15px;
	transition:all 1s;
	
	
}
.content .card:after{
	content:"";
	position:absolute;
	width:10%;
	height:5%;
	top:0;
	left:0;
	border-top:3px solid #7f1919;
	border-left:3px solid #7f1919;
	transition:all 1s;
}

.content .card:before{
	content:"";
	position:absolute;
	width:10%;
	height:5%;
	bottom:0;
	right:0;
	border-bottom:3px solid #7f1919;
	border-right:3px solid #7f1919;
	transition:all 1s;
}


.content .card:hover:after{
	content:"";
	position:absolute;
	width:40%;
	height:26%;
	top:0;
	left:0;
	border-top:3px solid #7f1919;
	border-left:3px solid #7f1919;
	transition:all 1s;
}

.content .card:hover:before{
	content:"";
	position:absolute;
	width:40%;
	height:26%;
	bottom:0;
	right:0;
	border-bottom:3px solid #7f1919;
	border-right:3px solid #7f1919;
	transition:all 1s;
}




*/



@font-face{
    font-family: "bootstrap";
    src: url("../../lib/bootstrap-icons/font/fonts/bootstrap-icons.woff");
}
/*
.content .card{
	position:relative;
}



.content .card a:after{
	content:" \F285";
	font-family: "bootstrap";
	font-size:25px;
	text-align:center;
	color:black;
	position:absolute;
	width:50px;
	height:40px;
	background-color:#f9a100;
	left:30px;
	bottom:0px;
	transition:all 1s;
	z-index:1050;
}


.content .card:hover a:after{
	background-color:#7f1919;
	bottom:-15px;
	transition:all 1s;
	
	
}
.content .card:after{
	content:"";
	position:absolute;
	width:10%;
	height:5%;
	top:0;
	left:0;
	border-top:3px solid #f9a100;
	border-left:3px solid #f9a100;
	transition:all 1s;
}

.content .card:before{
	content:"";
	position:absolute;
	width:10%;
	height:5%;
	bottom:0;
	right:0;
	border-bottom:3px solid #f9a100;
	border-right:3px solid #f9a100;
	transition:all 1s;
}


.content .card:hover:after{
	content:"";
	position:absolute;
	width:40%;
	height:26%;
	top:0;
	left:0;
	border-top:3px solid #7f1919;
	border-left:3px solid #7f1919;
	transition:all 1s;
}

.content .card:hover:before{
	content:"";
	position:absolute;
	width:40%;
	height:26%;
	bottom:0;
	right:0;
	border-bottom:3px solid #7f1919;
	border-right:3px solid #7f1919;
	transition:all 1s;
}


.conf .img-fluid{
	
	transition: transform .2s; 
}


.conf:hover .img-fluid{
	transform: scale(1.1); 
	transition: transform .4s; 
}



.conf:hover .text-color-2{
	color:#f9a100;
}

*/





/*

.content .btn-color-2 {
  all: unset;
  width: 20%;
  height: 5%;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  right:70%;
  touch-action: manipulation;
}

.content .btn-color-2::after,
.content .btn-color-2::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.content .btn-color-2::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 80%;
  background:#f9a100;
  border-radius: 10px;
}

.content .btn-color-2::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 30px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.content .btn-color-2:hover::before {
  transform: translate(5%, 20%);
  width: 100%;
  height: 80%;
}

.content .btn-color-2:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 80%;
}

.content .btn-color-2:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}
*/



/*
  position: relative;
  font-size: 1em;
  padding: 0.7em 1.4em;
  background-color: #f9a100;
  text-decoration: none;
  border: none;
  border-radius: 0.5em;
  color: #DEDEDE;
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  left:30%;
  transition:all 0.5s;


}

.content .btn-color-2::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(217 215 215) 0%, rgb(245 245 245) 50%, #f9a100 50%, #f9a100 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.content .card:hover .btn-color-2::before {
  width: 1.6em;
  height: 1.6em;
 
}

.content .card:active .btn-color-2{
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
  transition:all 0.5s;
}

.content .card:hover img{
	 transform: scale(1.1);
	 transition:all 0.5s;
	 
}
.content .card img{
	z-index:1;
	transition:all 0.5s;
}




.content .card a {
	overflow:hidden;
	transition:all 0.5s;
	
}
/*
/*========================================*/

/*
.content .card{
  position: relative;
  font-size: 1em;
  padding: 0.7em 1.4em;
  background-color: #FFF;
  text-decoration: none;
  border: none;
  border-radius: 0.5em;
  color: #DEDEDE;
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  left:30%;
  transition:all 0.5s;


}

.content .card::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
      background: linear-gradient(135deg, #f2f3f4 0%, #f2f3f4 50%, #f9a100 50%, #f9a100 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index:1050;
}

.content .card::before {
  width: 1.6em;
  height: 1.6em;
 
}

.content .card:active{
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
  transition:all 0.5s;
}
*/
/*btn 3333*/
.content .btn-color-2 {
  --color: #A0153E;
  font-family: inherit;
  display: inline-block;
  padding:5px 10px;
  background-color:#FFF;
  margin: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--color);
}

.content .btn-color-2:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.content .card:hover .btn-color-2 {
  color: #fff;
}

.content .btn-color-2:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.content .card:hover .btn-color-2:before {
  top: -30px;
  left: -30px;
}

.content .card:active .btn-color-2:before {
  background: #3a0ca3;
  transition: background 0s;
}


/*timeline--------------------------------------------------------------*/


/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 800px;
    margin:40px auto;
	
}

    /* The actual timeline (the vertical ruler) */
    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color:#a0153e;
        top: 0;
        bottom: 0;
        right: 24.4%;
        margin-left: -3px;
        border-radius: 10px;
		right:50%;
		
        
    }

/* Container around content */
.timeline .container {
    padding: 5px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}


    /* The circles on the timeline*/ 
    /*.container::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        right: -17px;
        background-color: #4F426E;
        border: 4px solid #348976;
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }*/

/* Place the container to the left */
.timeline .left {
    left: -25%;
}

/* Place the container to the right */
.timeline .right {
    left: 25%;
}

/* Add arrows to the left container (pointing right) */
.timeline .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid gray;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent gray;
}

/* Add arrows to the right container (pointing left) */
.timeline .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid gray;
    border-width: 10px 10px 10px 0;
    border-color: transparent gray transparent transparent;
}

/* Fix the circle for containers on the right side */
.timeline .right::after {
    left: -25px;
}

/* The actual content */
.timeline .content-2 {
    padding: 10px 10px;
    background-color: gray;
    position: relative;
    border-radius: 6px;
}

   .timeline .content-2 h2, .h2 {
        font-size: 1rem;
        font-weight:bold;
        color:white;
    }
   .timeline .content-2 p {
        
        color: white;
		font-size: 0.8rem;
		
    }

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    
    /* Full-width containers */
  .timeline  .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        /* Make sure that all arrows are pointing leftwards */
     .timeline   .container::before {
            left: 60px;
            border: medium solid #f9a100;
            border-width: 10px 10px 10px 0;
            border-color: transparent #f9a100 transparent transparent;
        }

    /* Make sure all circles are at the same spot */
  .timeline  .left::after, .timeline .right::after {
        left: 15px;
    }

    /* Make all right containers behave like the left ones */
 .timeline   .right {
        left: 25%;
    }
}


/* circle */
.right::after {
  content: "";
  position: absolute;
  width: 1.3rem;
  aspect-ratio: 1;
  background: #e83064;
  border: 0.3rem solid #e83064;
  border-radius: 50%;
  top: 50%;
   left:-5%;
  transform: translate(50%, -50%);
  right: calc(100% + #F6D9B3 + #F6D9B3 / 2);
  z-index:10;
  
}


.left::after {
  content: "";
  position: absolute;
  width: 1.3rem;
  aspect-ratio: 1;
  background: gray;
  border: 0.3rem solid gray;
  border-radius: 50%;
  top: 50%;
   right:1%;
  transform: translate(50%, -50%);
  right: calc(100% + gray + gray / 2);
  z-index:10;
  
}


@media (min-width: 1200px) {
    .content-2 h2, .h2 {
        font-size: 1rem;
    }
    }
	
	
	
	
	
	
	/*time2*/
	/*
	
.time2 div{
	overflow:hidden;
}
.time2 div:last-child::before{
	   content: '';
        position: absolute;
        width: 6px;
        background-color:#f9a100;
		height:5;
        top:71%;
        right: 29.4%;
        margin-left: -3px;
        border-radius: 10px;
		height:26em;
		
	
}	
	
.time2 .fw-bold::after{
	content:'';
    position: absolute;
    border-bottom: 15px solid #f9a100;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  width: 0;
  height: 0;
  right:29.8%;
   transform: rotate(-88deg);
}
	
.time2 .text-color-2{
	color: #f9a100!important;
}
	
	
.time2 .persian{
	background-color: #ebebeb;
	padding:1%;
	max-width:55%;

	box-shadow: 1px 2px 1px -1px #777
}

.time2 .persian:hover{
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
	transition:all 1s;
}



*/




/*

.button1 .btn-color-2{
  font-size: 0.8rem;
  background-color:#FFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 1px solid #f6d9b3;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #f9a100;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button1 .btn-color-2:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #fac279;
  z-index: -1;
}

.button1 .btn-color-2:hover, button:focus {
  color: white;
}

.button1 .btn-color-2:hover:before, button:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button1 .btn-color-2:active {
  transform: scale(0.9);
}

*/
/*gallery=======================================*/





.gallery-1 .row{
	
	overflow:hidden;
	
}
.gallery-1 .item{
  --s: 200px; /* control the size */
  --g: 10px;  /* control the gap */
  --f: 600px;   /* control the scale factor */
  
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(4,auto);
}

.gallery-1 .item > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(80%);
  transition: 1s linear ;
  border-radius:0;
}

.gallery-1 .item img{
  --hl: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(calc(1 + .2*var(--hl)));
  filter: brightness(calc(.6*(1 + var(--hl))));
  transition:1s;
  
  &:hover { --hl: 1 }
    border-radius:0;

}



.gallery-1 .item img:hover{
  filter: grayscale(0);
   animation: 58s move-it-2 ease alternate infinite 2000s;
    transform: translatex(41%);
	position:relative;
  width: 100%;
  height:100%;
  transition:all 0.8s;
}
/*
.gallery1 .item img:last-child:hover{
	transform: translatex(10%);
}

*/

@keyframes move-it-2 {
 0%,
 90%,
 100% {
  transform: translatex(-50%);
 }
 
}



/*==========================================================================================================*/




/*media---------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 597px) {
    /* Place the timelime to the left */
    .timeline::after {
        right: -5px ;
    }
   .timeline .left{
            left: 1%;
			width:100%
    }
	.timeline .right{
		left:0;
		width:100%;
	}
	.timeline .right::after {
        right: -1px;
		
    }
	 .container::before {
         display:none;
}

}
@media screen and (max-width: 768px) {
    /* Place the timelime to the left */
    .timeline{
        max-width:400px;
    }
	 .right::after {
        left: -11%;
    }
}
@media screen and (max-width: 889px) {
    /* Place the timelime to the left */
  
	 .right::after {
        left:-20px;
    }
}
/*---------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	
   

.gallery-1 .row{
	
	
}
.gallery-1 .item{
margin:0 auto;
 display:block;
 width: 100% !important;
}

.gallery-1 .item > img {
	
}

.gallery-1 .item img{
 
}



.gallery-1 .item img:hover{
     transition: all 0.5s;
   
	transform: translate(0px,-10px);
	
}
/*
.gallery1 .item img:last-child:hover{
	transform: translatex(10%);
}

*/

@keyframes move-it-2 {
 0%,
 90%,
 100% {
  transform: translatex(-50%);
 }
 
}

}
@media screen and (max-width: 576px) {
  .gallery-1 .row{
	
	
}
.gallery-1 .item{
margin:0 auto;
 display:block;
 width: 100% !important;
}

.gallery-1 .item > img {
	
}

.gallery-1 .item img{
 
}



.gallery-1 .item img:hover{
	   transition: all 0.5s;
   
	transform: translate(0px,-10px);
	
  
}
}




/*===============utility-sidebar=============*/


.utility-sidebar {
	right: 0;
	top: 35rem;
	width: 40px;
	background: #FFF;
	border: 2px solid black;
	z-index: 99;
	transition: all 0.5s ease;
	border-radius: 20px;
}

	.utility-sidebar:hover {
		background: linear-gradient(to top, #801336 50%, #FFF 50%);
		background-size: 100% 200%; /* ارتفاع 200% */
		background-position: bottom; /* شروع از پایین */
		transition: background-position 0.5s ease, all 0.8s;
	}


		.utility-sidebar:hover i::before {
			color: #FFF;
			transition: all 1s;
		}

	.utility-sidebar .utility-btn {
		position: relative;
		left: 2rem;
	}

		.utility-sidebar .utility-btn p {
			top: 0rem;
			font-size: 0.8rem;
			display: none;
			width: 100%;
			position: absolute;
			right: 3rem;
			padding: 0.1rem;
			transition: all 0.5s ease;
			color: #FFF;
		}



	.utility-sidebar li:hover p {
		display: inline;
		width: 100px;
		transition: all 0.5s ease;
	}


	.utility-sidebar i:hover::before {
		transform: rotateY(360deg);
		transition: all 0.5s;
		color: #FFF;
	}



	.utility-sidebar li {
		list-style-type: none;
		padding-top: 0.5rem;
	}



	.utility-sidebar .utility-btn {
		width: 100%;
		background-color: transparent;
		border: none !important;
	}




		.utility-sidebar .utility-btn p {
			position: absolute;
			background-color: #FFF;
			padding: 8px 15px;
			border-radius: 3px;
			opacity: 0;
			visibility: hidden;
			font-size: 13px;
			letter-spacing: .5px;
		}


			.utility-sidebar .utility-btn p::before {
				content: '';
				display: block;
				position: absolute;
				right: -4px;
				top: 10px;
				transform: rotate(-45deg);
				width: 10px;
				height: 10px;
				background-color: inherit;
			}


		.utility-sidebar .utility-btn:hover p {
			background-color: black;
			visibility: visible;
			opacity: 1;
		}






.utility-sidebar {
	position: fixed;
	right: 0;
	top: 35rem;
	width: 40px;
	background: #FFF;
	border: 2px solid black;
	z-index: 99;
	transition: all 0.5s ease;
	border-radius: 20px;
}

	.utility-sidebar:hover {
		background: linear-gradient(to top, #9C143D 50%, #FFF 50%);
		background-size: 100% 200%; /* ارتفاع 200% */
		background-position: bottom; /* شروع از پایین */
		transition: background-position 0.5s ease, all 0.8s;
	}


		.utility-sidebar:hover i::before {
			color: #FFF;
			transition: all 1s;
		}

	.utility-sidebar .utility-btn {
		position: relative;
		left: 2rem;
	}

		.utility-sidebar .utility-btn p {
			top: 0rem;
			font-size: 0.8rem;
			display: none;
			width: 100%;
			position: absolute;
			right: 3rem;
			padding: 0.1rem;
			transition: all 0.5s ease;
			color: #FFF;
		}



	.utility-sidebar li:hover p {
		display: inline;
		width: 100px;
		transition: all 0.5s ease;
	}


	.utility-sidebar i:hover::before {
		transform: rotateY(360deg);
		transition: all 0.5s;
		color: #FFF;
	}



	.utility-sidebar li {
		list-style-type: none;
		padding-top: 0.5rem;
	}



	.utility-sidebar .utility-btn {
		width: 100%;
		background-color: transparent;
		border: none !important;
	}




		.utility-sidebar .utility-btn p {
			position: absolute;
			background-color: #FFF;
			padding: 8px 15px;
			border-radius: 3px;
			opacity: 0;
			visibility: hidden;
			font-size: 13px;
			letter-spacing: .5px;
		}


			.utility-sidebar .utility-btn p::before {
				content: '';
				display: block;
				position: absolute;
				right: -4px;
				top: 10px;
				transform: rotate(-45deg);
				width: 10px;
				height: 10px;
				background-color: inherit;
			}


		.utility-sidebar .utility-btn:hover p {
			background-color: black;
			visibility: visible;
			opacity: 1;
		}



	.utility-sidebar .img-fluid1 {
		width: 25px;
	}


































