.page-title{
	height: 320px;
	padding-bottom: 0px;
}
.page-title::before,.page-title::after {
	height: 540px;
}

@media only screen and (max-width: 700px){
	.page-title{
		height: 320px;
		padding-bottom: 0px;
	}
	.page-title::before, .page-title::after {
		height: 540px;
	}
}

.slider{
    display: flex;
    height: 540px;
    /* margin: 10px auto; */
    /* border-bottom: solid 10px #fbc02d; */
    /* border-radius: 10px; */
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: none;
    background-color: #222;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition:0.3s;
    overflow:hidden;
    /* box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%); */
    position: absolute;
    top: 0px;
    width: 100%;
    left: 0px;
    /* max-width: 100%; */
}
@media only screen and (min-width: 820px) {
	#content .slider{
		/* max-width:800px; */
	}
}
@media only screen and (min-width: 1020px) {
	#content .slider{
		/* max-width:1000px; */
	}
}
@media only screen and (max-width: 700px) {
	.slider{
		margin-top: 0px;
		border-radius: 0px;
	}
}

.swiper-pagination{
	padding-bottom: 30px;
}


.slider carousel {
    max-width: 100%;
    height: 100%;
}
.slider carousel .swiper-slide {
	width:100%;
	box-sizing: border-box;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 200px 5%  100px 5%;
	background-image: var(--article-image);
	background-size: 120%;
	background-position: center;
	background-repeat: no-repeat;
	text-decoration: none;/**/
	transition-timing-function: ease-out;
}
.slider carousel .swiper-slide-active{
	transition:1s;
	background-size: 100%;
}
@media only screen and (max-width: 1060px) {
	.slider carousel .swiper-slide{
		background-size: auto 130%;
	}
	.slider carousel .swiper-slide-active{
		background-size: auto 100%;
	}
}
.slider carousel .swiper-slide::before {
    display: block;
    content: ' ';
    width: 100%;
    background: linear-gradient(0deg, #00000000 20%, #00000059 45%, #00000000 70%, #ffffff61 100%);
    height: 100%;
    z-index: 0;
    position: absolute;
    left: 0px;
    top: 0px;
}


.slider carousel .owl-dots{
    position: relative;
	top: -30px;
}

.slider carousel .swiper-slide>*{
	padding-bottom: 10px;
}

.slider carousel .date{
	display: none;
}
.slider carousel .title, .slider carousel .brief, .slider carousel .more{
	position: relative;
	transform: scale(1.5);
	transition:0.5s;
	text-align:center;
	font-weight: bold;
	opacity:0;
	color: #ffffff;
	transition-delay:0.2s;
	margin-bottom: 10px;
	font-size: 20px;
	text-shadow: 0 0px 3px black,0 0px 3px black;
}
.slider carousel .swiper-slide-active .title, .slider carousel .swiper-slide-active .brief, .slider carousel .swiper-slide-active .more{
	transform: scale(1);
	opacity:1;
}
.slider carousel .title{
	font-size: 28px;
}
.slider carousel .brief{
	transition-delay: 0.5s;
}
.slider carousel .more{
	transition-delay: 0.8s;
}
.slider carousel .more a{
	width: 200px;
	padding: 10px;
	border-radius: 10px;
	margin: 10px;
	background: #FBC02D;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	color: #000;
	transition: 0.3s;
}
.slider carousel .more a:hover{
	background: #c38b00;
}

/* domains */
.domains{
	background-image: linear-gradient(0deg,#fff, #b6c5cd 50%,  #fff);
}

.domains h1{
	margin: 0px;
	margin-bottom: 30px;
}
.domains h1>span{
	display: block;
}
.domains h1>span:first-of-type{
	font-size: 20px;
}

.domains .list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	--line-color: #765a04;
}
.domains .list>div{
	display: flex;
    flex-direction: column;
	align-items: center;
	min-width: 200px;
	max-width: 300px;
	border-radius: 10px;
	overflow: hidden;
	margin: 5px;
	background: #fff;
	box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.15);
	transition: 0.3s;
	z-index: 1;
}
.domains .list>div:hover{
	translate: 0px -4px;
	box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.3);
}
.domains .list img{
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-bottom: solid 5px;
	border-color: var(--line-color);
}
.domains .list h2{
	margin: 0px;
	padding: 5px 10px;
	font-size: 20px;
    text-align: start;
    width: 100%;
    box-sizing: border-box;
}
.domains .list p{
	flex: 1;
	margin: 0px;
	padding: 10px;
}
.domains .list a{
	width: 100px;
	padding: 10px;
	border-radius: 10px;
	margin: 10px;
	background: #FBC02D;
	text-align: center;
	text-decoration: none;
	color: #000;
	transition: 0.3s;
}
.domains .list a:hover{
	background: #c38b00;
}

/* faq */

.faq{
	background-color: #8fa3b7;
    padding: 40px 0px;
	overflow: hidden;
}
.faq .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}
.faq .container>*{
	flex: 1;
}
.faq h1{
	min-width: 100%;
	margin: 50px 0px;
	color: #ffffff;
    text-shadow: 0px 10px 20px #03315f;
}
.faq .container::after, .faq .container::before{
	content: "";
	display: block;
	flex: 1;
	min-width: 20px;
	min-height: 400px;
	background-image: url(/s/main/img/page.faq.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@media only screen and (max-width: 700px) {
	.faq .container::after{
		display: none;
	}
}
@media only screen and (min-width: 701px) {
	.faq .container::before{
		display: none;
	}
}

.faq .list>div{
    background: #ffffffc2;
    padding: 10px;
    margin: 5px 0px;
    border-radius: 7px;
	cursor: pointer;
}
.faq .list>div>div:first-of-type{
	font-weight: bold;
}
.faq .list>div>div:last-of-type{
	max-height: 0px;
	overflow: hidden;
	transition: 0.5s;
}
.faq .list>div.expand>div:last-of-type{
	max-height: 300px;
	overflow: auto;
}

.faq .button{
	display: block;
    width: 140px;
    padding: 10px;
    border-radius: 20px;
    margin: 25px auto;
    background: #FBC02D;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}
.faq .button:hover{
	translate: 0px -4px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.3);
	background: #c38b00;
}
/* about */
.about{
	overflow: hidden;
}
.about h1{
	color: #000;
}

.about a{
	display: block;
	width: 140px;
	padding: 10px;
	border-radius: 10px;
	margin: auto;
	background: #000;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
}
.about a:hover{
	background: #312300;
}



[dir=rtl] .about_{
	flex-direction: row-reverse;
}
@media only screen and (max-width: 700px) {
	.about_{
		flex-direction: column;
	}
	[dir=rtl] .about_{
		flex-direction: column;
	}
}

.about_::after{
	content: '';
	position: absolute;
	top: 0;
	left: -560px;
	height: 4000px;
	width: 4000px;
	background: #211c12;
	transform: rotate(36deg);
	transition: transform 0.3s ease-in-out;
	/* position: relative; */
	/* z-index: -1; */
}
@media only screen and (max-width: 700px) {
	.about_::after{
		transform: rotate(82deg);
		top: 20px;
	}
}

.about_ .logo{
	min-width: 300px;
	max-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: brightness(300%) hue-rotate(225deg);
	filter: grayscale(100%) brightness(500%);
}
@media only screen and (max-width: 700px) {
	.about_ .logo{
		min-width: initial;
		max-width: initial;
		min-height: 120px;
		max-height: 120px;
	}
}

.about_ .content{
	padding: 10px 10px 10px 120px;
	position: relative;
	z-index: 1;
	/* direction: rtl; */
	color: #fff;
}
@media only screen and (max-width: 700px) {
	.about_ .content{
		padding: 80px 10px 10px 10px;
	}
}

.about_ h1{
	color: #ffb601;
}

.about_ #decoration{
	position: absolute;
	left: -375px;
	display: grid;
	gap: 3px;
	grid-template-columns: repeat(20, 1fr);
	grid-template-rows: repeat(10, 1fr);
	place-items: stretch;
	height: 70px;
	width: 1500px;
	transform: rotate(-54deg);
	transition: opacity 0.5s ease-in-out;
	z-index: 1;
}
@media only screen and (max-width: 700px) {
	.about_ #decoration{
		transform: rotate(-8deg);
		top: 110px;
	}
}

.about_ a{
	display: inline-block;
	background-color: #ffb600;
	text-decoration: none;
	padding: 10px;
	border-radius: 5px;
	color: #333;
	transition: 0.2s;
}
.about_ a:hover{
	transform: scale(1.2);
}

.pill {
  display: block;
  background: #ffb600;
  opacity: 0.75;
  border-radius: 1000px;
  transform: translateX(-500px);
}
@keyframes pill-float {
  from {
    transform: translateX(-1000px);
  }
  to {
    transform: translateX(500px);
  }
}
#pill-1 {
  grid-column: 4 / span 8;
  grid-row: 5 / span 3;
}
#pill-2 {
  grid-column: 10 / span 4;
  grid-row: 6 / span 1;
}
#pill-3 {
  grid-column: 8 / span 3;
  grid-row: 3 / span 1;
}
#pill-4 {
  grid-column: 4 / span 3;
  grid-row: 3 / span 1;
}
#pill-5 {
  grid-column: 6 / span 4;
  grid-row: 9 / span 1;
}
#pill-6 {
  grid-column: 11 / span 1;
  grid-row: 9 / span 1;
}
#pill-7 {
  grid-column: 13 / span 2;
  grid-row: 10 / span 1;
}
#pill-8 {
  grid-column: 13 / span 3;
  grid-row: 8 / span 1;
}
#pill-9 {
  grid-column: 14 / span 3;
  grid-row: 4 / span 1;
}
#pill-10 {
  grid-column: 12 / span 1;
  grid-row: 4 / span 1;
}
#decoration > #pill-1 {
  animation: 20s infinite pill-float linear;
  animation-delay: 0.2s;
}
#decoration > #pill-2 {
  animation: 30s infinite pill-float linear;
}
#decoration > #pill-3 {
  animation: 35s infinite pill-float linear;
  animation-delay: 0.1s;
}
#decoration > #pill-4 {
  animation: 25s infinite pill-float linear;
  animation-delay: 0.3s;
}
#decoration > #pill-5 {
  animation: 40s infinite pill-float linear;
  animation-delay: 0.4s;
}
#decoration > #pill-6 {
  animation: 30s infinite pill-float linear;
  animation-delay: 0.5s;
}
#decoration > #pill-7 {
  animation: 25s infinite pill-float linear;
  animation-delay: 0.6s;
}
#decoration > #pill-8 {
  animation: 20s infinite pill-float linear;
  animation-delay: 0.7s;
}
#decoration > #pill-9 {
  animation: 40s infinite pill-float linear;
  animation-delay: 0.8s;
}
#decoration > #pill-10 {
  animation: 35s infinite pill-float linear;
  animation-delay: 0.4s;
}

/**/
