/* Header Css  */
.site-header {
	position: relative;
	width: 100%;
	 z-index: 99; 
	/* background: var(--body-color); */
}
.image-border {
    border: 10px solid #FBC300;
    border-radius: 10px;
}

.site-header::before {
	content: "";
	position: absolute;
	background-image: url(../img/header-top-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 30px;
	top: 0;
}

.site-header .mobile-header {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	padding: 100px 40px 20px;
	background-color: var(--extra-color-3);
	min-height: 100%;
	transform: translateX(100%);
	transition: 0.2s;
	z-index: 9999;
}

.header-logo .logo-here {
	object-fit: cover;
	width: 100%;
	max-width: 210px;
}

.head-link {
	gap: 60px;
}

.header-right-wrapper {
	opacity: 0;
}

.head-link li:first-child {
	list-style: none;
	padding-left: 0px;
}

span.active-status {
	background: var(--extra-color-1);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--primary-regular-font);
	right: -7px;
	top: -8px;
}

.submenu {
	top: 10px;
	left: -20px;
	transition: 0.4s ease;
	opacity: 0;
	max-width: max-content;
	z-index: 99;
	width: 320px;
	background: var(--secondary-color);
	border: 2px solid var(--extra-color-2);
	border-radius: 20px;
}

.submenu .link-here {
	padding: 0px 0px 4px 0px;
	background: transparent;
}

.submenu .header-link.active {
	color: var(--body-color);
	border-color: var(--body-color);
}

.submenu .header-link::after {
	content: unset;
}

.submenu li {
	border-bottom: 1px solid var(--body-color);
	padding: 20px 0px;
}

.submenu .dropdown:last-child {
	border-bottom: 0px;
}

.submenu a:hover {
	color: var(--primary-color);
}

.site-header .dropdown:hover .submenu {
	top: 30px;
	opacity: 1;
	overflow: visible;
}

.submenu .link-here:before {
	background: var(--body-color);
}

.site-header .dropdown {
	overflow: hidden;
}

.site-header .dropdown:hover {
	overflow: visible;
	opacity: 1;
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu > .submenu-nested {
	top: 0;
	left: 100%;
	margin-top: -0.125rem;
	display: none;
	position: absolute;
}

.dropdown-submenu:hover > .submenu-nested {
	display: block;
}

/* Show submenu when parent has .show class (we will handle via JS) */
.dropdown-submenu.show > .submenu-nested {
	display: block;
}

@media (min-width: 1700px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1600px;
	}
}

@media (max-width: 991px) {
	.site-header .mobile-header.active {
		transform: translateX(0);
	}
}

/* Mobile Responsive  */

@media (max-width: 576px) {
	.header-logo .logo-here {
		max-width: 110px;
	}
}

/* Header Css  */

/* banner Css  */
.banner {
	margin-top: -40px;
	overflow: hidden;
}

.banner-inner-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	/* z-index: 1; */
}

.banner-wrapper {
	display: flex;
	justify-content: center;
	align-items: start;
}

.banner .swiper-banner {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.banner .swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: start;
	align-items: center;
}

.banner .swiper-pagination {
	position: absolute;
	/* top: 0; */
	bottom: 180px;
	right: 30px;
	width: 130px;
	left: unset;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	margin: auto;
	transform: rotate(48deg);
	height: 150px;
}

.swiper-line {
	position: relative;
}

.swiper-line::after {
	content: "";
	background-color: #fff;
	width: 70px;
	height: 2px;
	position: absolute;
	left: 40px;
	bottom: 4rem;
	transform: rotate(90deg);
	z-index: 99;
}

/* .banner .swiper-banner .swiper-button-prev {
    bottom: 140px;
    left: 8%;
    top: unset;
}

.banner .swiper-banner .swiper-button-next {
    right: unset;
    left: 16%;
    bottom: 140px;
    top: unset;
} */

.banner .swiper-banner .swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 12px;
	color: var(--body-color);
}

.banner .swiper-pagination-bullet {
	padding: 0px 5px;
	border-radius: 0;
	width: auto;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 19px;
	font-family: var(--primary-bold-font);
	color: var(--body-color);
	opacity: 1;
	background: transparent;
	position: relative;
	transition: 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px !important;
}

.banner .swiper-pagination-bullet-active span.bullet-number {
	display: block;
	font-size: 34px;
	color: var(--extra-color-2);
	transform: rotate(311deg);
}

.banner .swiper-pagination-bullet-active:before {
	content: "";
	position: absolute;
	transform: rotate(-45deg);
	border-radius: 0;
}

.banner .swiper-pagination-bullet-active {
	color: var(--body-color);
	background: transparent;
	font-size: 32px;
	font-family: var(--primary-bold-font);
	right: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0px !important;
}

span.bullet-number {
	font-size: 12px;
	color: #fff;
	position: absolute;
	top: unset;
	/* display: none; */
	/* bottom: -20px; */
	transform: rotate(310deg);
	/* left: -10px; */
}

.banner-social-links {
	z-index: 9;
	height: fit-content;
	margin: auto;
}

.active-slide-number {
	display: inline-block;
	background-color: #f0f0f0;
	padding: 5px 10px;
	border-radius: 5px;
	margin-top: 10px;
	font-weight: bold;
}

.banner-icon {
	background: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 50%;
}

.banner-icon:hover {
	background: #e6eef81c;
	color: #72a02c;
}

.banner-icon i {
	font-size: 20px;
}

.heading-bg:before {
	content: "";
	position: absolute;
	background: linear-gradient(90deg, #618026 10%, transparent 80%);
	width: 100%;
	height: 75px;
	z-index: -1;
	left: -10px;
	bottom: 0;
	top: 0;
	margin: auto;
}

/* .about-heading::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 70px;
    height: 4px;
    display: block;
    bottom: 0px;
    left: -10px;
    border-radius: 2px;
} */

.scroll-down-wrapper {
	bottom: 40px;
	z-index: 1;
}

.banner::after {
	content: "";
	position: absolute;
	background-image: url(../img/banner-bottom.png);
	background-repeat: no-repeat;
	width: 100%;
	height: 50px;
	bottom: -6px;
	background-size: cover;
	z-index: 9;
}

/* Tablet Responsive  */

@media (max-width: 1600px) {
	.banner .swiper-banner img.img-fluid {
		height: 900px;
		object-fit: cover;
	}
}

@media (max-width: 1400px) {
	.banner .swiper-banner img.img-fluid {
		height: 800px;
	}
}

@media (max-width: 1200px) {
	.banner .swiper-banner img.img-fluid {
		height: 700px;
	}
}

@media (max-width: 992px) {
	.banner {
		margin-top: 0;
	}

	.banner .swiper-banner img.img-fluid {
		height: 600px;
	}
}

@media (max-width: 576px) {
	.banner .swiper-banner img.img-fluid {
		height: 530px;
	}

	.banner::after {
		bottom: -40px;
	}

	.scroll-down-wrapper {
		bottom: 10px;
		z-index: 99999;
	}

	.scroll-down-wrapper figure img.img-fluid {
		max-width: 30px;
	}

	.banner .swiper-pagination {
		display: none;
	}
}

/* Banner Section End Here */

/* about-section Css  */

.about-section {
	padding: 80px 0px 58px;
}

.about-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/about-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 600px;
	height: 600px;
	top: 0;
	right: 0;
	z-index: -1;
}

.call_img {
	animation-name: float_up_down;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.cell-no:hover {
	color: var(--secondary-color);
}

.about_fig::before {
    content: "";
    position: absolute;
    background-image: url(../img/about-left-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 280px;
    height: 340px;
    left: 40px;
    bottom: -100px;
    animation: rotateAnimation 9s infinite linear;
    animation-name: float_up_down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes float_up_down {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
		/* Adjust the value for the float effect */
	}

	100% {
		transform: translateY(0);
	}
}

.about-section::after {
	content: "";
	position: absolute;
	background-image: url(../img/about-right-img.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 260px;
	height: 290px;
	bottom: 130px;
	right: 0;
	z-index: -1;
}

.unity-text {
	left: -160px;
}

@media (max-width: 1400px) {
	.about-section::after {
		width: 190px;
		height: 220px;
	}

	.about_fig::before {
		width: 180px;
		height: 190px;
	}
}

@media (max-width: 1080px) {
	.about-section::after {
		content: unset;
	}

	.about_fig::before {
		content: unset;
	}
}

/* Tablet Responsive  */

@media (max-width: 992px) {
	.about-img-wrapper {
		margin-bottom: 20px;
	}
}

@media (max-width: 576px) {
	.heading-bg:before {
		width: 100%;
		height: 100%;
	}
	.about-section {
		padding: 60px 0px 38px;
	}
}

/* about-section Css  */

/* featured-section Css  */
.featured-section .featured-wrapper .featured-img .featured_fig:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(transparent, #3b4b35);
	z-index: 1;
	transition: 0.6s cubic-bezier(0.92, -0.08, 0, 1.06);
}

.featured-section .featured-wrapper .featured-img .featured_fig:hover:before {
	top: 0;
}

.featured-section .featured-wrapper .featured-img .featured_fig {
	overflow: hidden;
	border-radius: 30px;
	position: relative;
}

.ml1 .letter {
	display: inline;
	/* line-height: 1em; */
}

.ml1 .text-wrapper {
	position: relative;
	display: inline-block;
	padding-top: 0.1em;
	padding-right: 0.05em;
	padding-bottom: 0.15em;
}

.ml14 .letters,
.ml14 .line,
.ml14 .letter {
	opacity: 1;
}

/* featured-section Css  */

/* client-section Css  */

.client-section {
	padding: 60px 0px 200px;
	overflow: hidden;
}

/* .client-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/testi-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 1130px;
    height: 800px;
    top: 0;
    z-index: -1;
} */

.client-section::after {
	content: "";
	position: absolute;
	background-image: url(../img/testi-new.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 510px;
	height: 710px;
	top: 0px;
	right: 0;
	z-index: -1;
}

.client-img-wrap .reviews-wrap .review-li {
	font-size: 12px;
}

.client-slider .slick-dots {
	bottom: -50px;
	left: 0;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	top: unset;
	right: 0;
	row-gap: 0;
	gap: 10px;
	margin: auto;
	max-width: fit-content;
}

.client-slider .slick-dots li {
	background: var(--extra-color-2);
	border: 0;
	height: 5px;
	width: 60px;
	margin: 0 6px;
	transition: 0.4s ease;
	border-radius: 3px;
}

.client-slider .slick-dots li.slick-active {
	background: var(--extra-color-4);
	border-color: transparent;
	width: 90px;
}

.client-slider .slick-list.draggable {
	padding-top: 50px;
}

.testi-left-img {
	bottom: -75px;
	right: -18rem;
}

.testi-right-img {
	left: -250px;
}

.testi-commas {
	margin-top: -70px;
	margin-right: 190px;
}

.img-icon-span {
	background: #0097a7;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.review_img {
	bottom: 150px;
	right: -40px;
	z-index: 9;
}

/* Tablet Responsive  */

@media (max-width: 992px) {
	.client-section::after {
		content: unset;
	}

	/* .testi-mid-wrapper {
		padding: 0 20px;
	} */
}

/* client-section Css  */

/* textclip-section Css  */

.textclip-wrapper .textclip-heading {
	font-size: 280px;
	margin: 0;
	line-height: 230px;
}
.text_left_img {
	background: url(../img/text-bg-img.png);
	margin: auto;
	background-position: center;
	/* background-size: cover; */
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}

.text_ground_img {
	background: url(../img/text-bg-img1.png);
	margin: auto;
	background-position: center;
	background-size: cover;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}
.holy-ground-section::before{
    content: "";
	position: absolute;
   	background: url(../img/home-banner.jpg);
	margin: auto;
	background-position: center;
	background-size: cover;
	width:100%;
	height:100%;
	z-index:-1;
}

/*.textclip-wrapper::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-image: url(../img/holy-logo-png.png);*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    background-position: center;*/
/*    width: 130%;*/
/*    height: 130%;*/
/*    right: 0;*/
/*    left: -200px;*/
/*    top: -10rem;*/
/*    opacity: 1;*/
/*    margin: auto;*/
/*    z-index: -1;*/
/*    animation: rotateAnimation 5s infinite linear;*/
/*    transform-origin: center center;*/
/*}*/

@keyframes rotateAnimation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 1600px) {
	.textclip-wrapper .textclip-heading {
		font-size: 240px;
	}
}

@media (max-width: 992px) {
	.textclip-wrapper .textclip-heading {
		font-size: 140px;
	}

	.textclip-wrapper::after {
		width: 100%;
		height: 100%;
	}

	.unity-text {
		display: none;
	}
}

/* Mobile Responsive  */

@media (max-width: 576px) {
	.textclip-wrapper .textclip-heading {
		font-size: 70px;
		line-height: normal;
	}

	.textclip-wrapper::after {
		width: 100%;
		height: 100%;
	}
}

/* textclip-section Css  */

/* seller-section Css  */
.seller-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/seller-left-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 700px;
	height: 700px;
	background-position: center;
	left: 0;
	top: -180px;
	z-index: -1;
}

.seller-slider .seller-slide {
	margin: 0px 0px 0px 30px;
}

/* seller-section Css  */

/* blog-section Css  */
.blog-section {
	padding: 50px 0px 80px;
}
.bottom_bg::before {
	content: "";
	position: absolute;
	background-image: url(../img/blog-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	width: 100%;
	height: 570px;
	bottom: 0;
	z-index: -1;
}

.blog-img figure:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, #000000cf);
	z-index: 1;
	transition: 0.6s cubic-bezier(0.92, -0.08, 0, 1.06);
}

.blog-img figure {
	overflow: hidden;
	border-radius: 20px;
}

.blog-img figure:hover:before {
	top: 0;
}

.blog-content {
	z-index: 1;
}

.date-wrap {
	background: var(--extra-color-4);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 30px;
	bottom: 30px;
	z-index: 9;
}

/* blog-section Css  */

/* footer Css  */

.site-footer {
	padding: 70px 0px 0px;
}

.site-footer::before {
	content: "";
	position: absolute;
	background-image: url(../img/footer-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 600px;
	top: -110px;
	z-index: -1;
}

.footer-ul {
	gap: 70px;
}

/* Mobile Responsive  */

@media (max-width: 576px) {
	.footer-ul {
		gap: 20px;
	}
}

/* footer Css  */

/* contact-page Css  */
.contact-icon-wrap {
	max-width: 180px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* border: 4px solid var(--extra-color-2); */
	border-radius: 50%;
	margin: auto;
}

.contact-detail-section {
	padding: 100px 0px 68px;
}

/* Tablet Responsive  */
@media (max-width: 991px) {
	.contact-map-section iframe {
		height: 320px;
	}
}

/* Tablet Responsive  */

/* Mobile Responsive  */
@media (max-width: 576px) {
	.contact-detail-section {
		padding: 60px 0px 44px;
	}
}

/* Mobile Responsive  */

/* contact-page Css  */

/* blog-page Css  */

.blog-detail-wrapper {
	background: #2a0f1b;
	border-radius: 20px;
	padding: 15px;
}

.blog-date {
	background: var(--extra-color-2);
	border-radius: 20px;
	width: 170px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -20px;
	left: 45px;
	z-index: 9;
}

.blog-date i {
	color: #bd362f;
	font-size: 22px;
}

/* Modal styling */
.modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
	justify-content: center;
	align-items: center;
}

.modal-content {
	background-color: #fff;
	margin: auto;
	padding: 20px;
	border: 2px solid #ffc002;
	border-radius: 10px;
	width: 80%;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
}

/* Scrollbar  */

.scroll_content {
	height: 200px;
	overflow-y: auto;
	position: relative;
	padding-right: 10px;
	transition:none;
}
.scroll_content::-webkit-scrollbar {
  width: 20px;
  background: #f2f2f2;
  border-radius: 10px;
}
.scroll_content::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 10px;
  min-height: 60px;
}
.scroll_content::-webkit-scrollbar-thumb:hover {
  background: #bcbcbc;
}

/* For Firefox */
.scroll_content {
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 #f2f2f2;
}

.scroll-buttons {
  pointer-events: none; /* Allow clicks to go through except for buttons */
  display: flex;
  align-items: end;
  justify-content: end;
  
}
.scroll-buttons button {
  pointer-events: auto;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  /*box-shadow: 0 2px 6px rgba(0,0,0,0.08);*/
  transition: background 0.2s;
  cursor: pointer;
  outline: none;
  margin-right: -7px;
}
.scroll-buttons button:active,
.scroll-buttons button:focus {
  /*background: #FFC107;*/
  /*padding:4px;*/
}

/* Initially hide content visually */
.scroll_content p {
	/*opacity: 0;*/
	/*transition: opacity 0.5s ease;*/
}

/* Scrollbar  */

.mission-content-wrapper {
	padding: 80px 0px;
	text-align: center;
}

.mission-content-wrapper::before {
	content: "";
	position: absolute;
	background-image: url(../img/mission-logo.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	max-width: 540px;
	height: 370px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0.3;
	z-index: -1;
}

.mission_box {
	border: 8px solid var(--secondary-color);
	width: fit-content;
	margin: auto;
	padding: 20px;
	margin-bottom: 20px;
}

.history-box-wrapper {
	border: 8px solid var(--extra-color-2);
	padding: 20px;
	margin: 20px 0;
	border-radius: 7px;
}
.verse-block {
      margin-bottom: 30px;
    }
    
    .about-menu-section {
  background: #fff;
}

.about-menu-btn {
  display: inline-block;
  padding: 0.5rem 2.5rem;
  border: 8px solid #F3C34B;
  border-radius: 6px;
  background: #fff;
  font-size: 2rem;
  font-weight: 500;
  color: #222;
  transition: box-shadow 0.15s, border-color 0.15s;
  box-sizing: border-box;
  text-align: center;
}

.about-menu-btn:hover,
.about-menu-btn:focus {
  box-shadow: 0 4px 16px rgba(243,195,75,0.10);
  border-color: #F6B900;
  color: #b38600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .about-menu-btn {
    font-size: 1.3rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 12px;
  }
  .about-menu-section .d-flex {
    gap: 1.2rem !important;
  }
}

.mobile-header { background: #fff; z-index: 1050; }
.mobile-header .mobile-submenu, .mobile-header .mobile-submenu-nested { background: var(--extra-color-3); border-radius: 0 0 8px 8px;}
@media (max-width: 991.98px) {
    .mobile-header { position: fixed; right: 0; top: 0; width: 90vw; max-width: 420px; height: 100vh; overflow-y: auto; box-shadow: -4px 0 22px rgba(0,0,0,0.18); padding-top: 70px; }
}
@media (max-width: 991.98px) {
  .logo-wrapper {
    width: 100%;
    justify-content: center !important;
    display: flex !important;
    order: 0;
  }
  .header-logo {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .header-wrapper {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 767.98px) {
  .holy-ground-section .row.justify-content-between {
    flex-direction: column !important;
    align-items: center !important;
  }
  .holy-ground-section .col-6 {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  .holy-ground-section .col-md-3 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.2rem;
    justify-content: center;
    display: flex !important;
  }
  .holy-ground-section img.img-fluid {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 320px !important;
    width: 80% !important;
  }
}
.custom-animation{
    	animation: rotateAnimation 9s infinite linear;
	animation-name: float_up_down;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
