.header{
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: .3s;
	background: var(--wh);
}
.header_fix, .header_fix2{
	background: var(--wh);
	/* height: 60px; */
	box-shadow: var(--bx3);
}

.header_con{
	position: relative;
	width: calc(100% - 30px);
	max-width: 1200px;
	height: 100%;
	margin: auto;

	display: flex;
	justify-content: space-between;
	align-items: center;
}




/* Logo site */
.logo{
	position: relative;
	height: 100%;
	transition: .3s;
}
.logo a{
	position: relative;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.logo_con{
	width: 32px;
	height: 32px;
	transition: .3s;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.header_fix .logo_con, .header_fix2 .logo_con{
	/* width: 40px; */
	/* height: 40px; */
}

.logo_txt{
	margin-left: 14px;
	font-size: 16px;
	font-weight: 600;
}
.header_fix .logo_txt, .header_fix2 .logo_txt{
	color: var(--bl);
	/* font-size: 14px; */
}



/* menu */
.menu_dk{
	position: relative;
	display: block;
	height: 100%;
}
@media (max-width: 1024px) {
	.menu_dk{
		display: none;
	}
}
.menu_i{
	position: relative;
	height: 100%;
	display: flex;
}

.menu_i li{
	position: relative;
	list-style: none;
	padding: 0 20px;
	height: 100%;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
}
.menu_i a{
	font-size: 16px;
	font-weight: 400;
	/* text-transform: uppercase; */
	transition: .5s;
}


.menu_i > li > a{

}
.header_fix .menu_i > li > a, .header_fix2 .menu_i > li > a{
	color: var(--bl);
}


.menu_i > li > i{
	font-size: 11px;
	margin-left: 7px;
}
.header_fix .menu_i > li > i, .header_fix2 .menu_i > li > i{
	color: var(--bl);
}







/* pod_menu */
.menu_pin{
	position: absolute;
	width: 100%;
	min-height: 100%;
	top: 110px;
	left: 0;
	visibility: hidden;
	transition:  var(--tm);
}
.header_fix .menu_pin, .header_fix2 .menu_pin{
	top: 80px;
}
.menu_i li:hover .menu_pin{
	visibility: visible;
}

.menu_pi{
	position: absolute;
	top: 0;
	left: -25px;
	width: 300px;
	background: var(--wh);
	transition: var(--tm);
	visibility: hidden;
	opacity: 0;
	/* border-radius: 30px; */
	padding: 15px 0;
}
.menu_i li:hover .menu_pi{
	opacity: 1;
	visibility: visible;
	left: 0;
}
.menu_i li:hover .menu_pi:nth-child(2){
	left: 330px;
}
.menu_i li:hover .menu_pi:nth-child(3){
	left: 660px;
}


.menu_pi li{
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	z-index: 1;
	padding: 15px 30px;
}
.menu_pi a{
	font-size: 16px;
	padding: 0;
	color: var(--bl);
}
.menu_pi i{
	margin-right: 10px;
}
.menu_pi li:hover a{
	color: var(--cl);
}


.header_pj{
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}
.header_clc{}
@media (max-width: 425px) {
	.header_clc{
		display: none;
	}
}
.header_clc a{
	font-size: 14px;
	font-weight: 500;
}
.header_fix .header_clc a, .header_fix2 .header_clc a{
	color: var(--bl);
}


.header_clc p{
	color: var(--cl);
	font-weight: 400;
	margin-top: 5px;
	cursor: pointer;
	font-size: 14px;
	text-decoration: underline;
}




/*  */
.menu_pj{
	position: relative;
	display: none;
	align-items: center;
	height: 54px;
	font-size: 32px;
}
.header_fix .menu_pj, .header_fix2 .menu_pj{color:var(--bl)}
@media (max-width: 1024px) {
	.menu_pj{
		display: flex;
		padding-left: 30px;
	}
}
@media(max-width:425px){.menu_pj{padding-left:0}}










/* Phone menu */
.menu_ph{
	position: fixed;
	width: 100%;
	height: 1000vh;
	top: 0;
	right: -100%;
	z-index: 99999;
	background: var(--wh);
	transition: var(--tm);
	display: none;
	opacity: 0;
}
@media(max-width:768px){.menu_ph{display:block}}
.menu_ph_act{
	right: 0;
	opacity: 1;
}

.menu_ph .bl_c{
	height: 100%;
}
.menu_ph_c{
	position: relative;
	width: 100%;
	height: 100%;
}
.menu_ph_c .head_c{
	padding: 30px 0; 
}
.menu_ph_ic{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 54px;
	height: 54px;
	z-index: 222;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	color: var(--bl);
}


/* Phone menu content */
.mp_dk{
	position: relative;
	width: 100%;
	height: calc(100vh - 100px);
	overflow-y: auto;
}
.mp_di{
	position: relative;
	width: 100%;
	list-style: none;
}
.mp_di > a{
	position: relative;
	width: 100%;
	height: 54px;
	font-size: 16px;
	font-weight: 500;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}



/* Phone menu pod */
.mp_pi{
	position: relative;
	width: 100%;
	padding-left: 15px;
}
.mp_pi i{
	margin-right: 10px;
}
.mp_pi a{
	position: relative;
	width: 100%;
	height: 54px;
	font-size: 16px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}
















/*  */
.body{
	position: relative;
	width: 100%;
	z-index: 2;
	background: var(--bag);
}





/*  */
.top_site_gh{
	position: relative;
	width: 100%;
	height: calc(50vh + 100px);
	transition: .3s;
	padding-top: 100px;
}
@media (max-width: 425px) {
	.top_site_gh{
		height: calc(100vh - 50px);
	}
}

.top_site_bag{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: auto 100%;
	background-position: 99% 100%;
	filter: brightness(70%);
	z-index: 1;
}
.top_site_bag2{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bl8) 40%, var(--tr) 100%);
	z-index: 2;
}

.top_site_gh .bl_c{
	height: 100%;
}


.top_site_hu{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1024px) {
	.top_site_hu{
		width: 100%;
	}
}


.top_site_hu h2{
	color: var(--wh);
	font-weight: 700;
	font-size: 48px;
	text-align: center;
}
@media (max-width: 425px) {
	.top_site_hu h2{
		font-size: 28px;
	}
}
.top_site_hu p{
	margin-top: 30px;
	color: var(--wh8);
	font-weight: 400;
	font-size: 18px;
	text-align: center;
}
.top_site_hu span{
	color: var(--wh);
	font-weight: 500;
}
@media (max-width: 425px) {
	.top_site_hu p{
		font-size: 16px;
	}
	.top_site_hu p br{
		display: none;
	}
}

.top_site_hub{
	position: relative;
	margin-top: 60px;
}
.top_site_abs{
	position: absolute;
	width: 60px;
	height: 200px;
	top: -100px;
	left: 280px;
	background-size: auto 100%;
	background-position: 0% 0%;
	transform: rotate(-120deg);
}
@media (max-width: 425px) {
	.top_site_hub{
	   margin-top: 60px;
	}
	.top_site_abs{
		top: -75px;
		left: 260px;
		transform: rotate(-140deg);
		width: 40px;
		height: 130px;
	}
}




.top_site_s{
	width: 100%;
	position: absolute;
	bottom: 30px;
	height: 60px;
	right: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.top_site_si{
	width: 44px;
	height: 44px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--wh);
	margin-right: 15px;
	cursor: pointer;
	transition: var(--tm);
}
.top_site_si a{
	font-size: 24px;
	color: var(--bl);
	transition: var(--tm);
}
.top_site_si:hover{
	background: var(--cl);
}
.top_site_si:hover a{
	color: var(--wh);
}





/*  */
.top_site_bag4{
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	bottom: calc(-260px / 2);
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 655;
	/* background: var(--cl5); */
	border: 1px  dashed var(--wh);
}
.top_site_bag4::after, .top_site_bag4::before{
	width: calc(100% + 60px);
	height: calc(100% + 60px);
	position: absolute;
	content: '';
	top: -30px;
	left: -30px;
	/* background: var(--cm5); */
	border-radius: 50%;
	border: 1px  dashed var(--wh);
}
.top_site_bag4::after{
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	left: 30px;
	top: 30px;
	/* background: var(--wh5); */
}






/*  */
.bl1{
	position: relative;
	width: 100%;
	padding: 120px 0;
	padding-bottom: 50px;
}
@media (max-width: 425px) {
	.bl1{
		padding: 30px 0;
		padding-bottom: 0;
	}
}

.bl1_c{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.bl1_i{
	position: relative;
	width: calc(33.3333% - 20px);
}
@media (max-width: 425px) {
	.bl1_i{
		width: 100%;
		margin-bottom: 30px;
	}
}


.bl1_ic{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.bl1_is{
	position: relative;
	font-weight: 500;
	font-size: 48px;
}
.bl1_is::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 40px;
	background: var(--gr);
	border-radius: 50%;
}
.bl1_is span{
	position: relative;
	z-index: 1;
}

.bl1_ist{
	font-size: 16px;
	font-weight: 600;
	margin-left: 10px;
}

.bl1_it{
	padding-top: 30px;
	position: relative;
	width: 100%;
	line-height: 24px;
}
@media (max-width: 425px) {
	.bl1_it{
		padding-top: 15px;
	}
}



.bl1_btn{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}




















.sanator{
	position: relative;
	width: 100%;
	margin-bottom: 40px;
}


.sanator_c{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 30px;
}
@media (max-width: 500px) {
	.sanator_c{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.sanator_item{
	position: relative;
	width: 100%;
	background: white;
	box-shadow: var(--bx2);
	transition: var(--tm);
	overflow: hidden;
}

.sanator_img{
	position: relative;
	width: 100%;
	padding-bottom: 50%;
	overflow: hidden;
	display: block;
}
.sanator_img div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: .5s;
	transform: scale(1);
}
.sanator_item:hover .sanator_img div{
	transform: scale(1.05);
}



.sanator_con{
	position: relative;
	width: 100%;
	padding: 15px 30px;
}
@media (max-width: 375px) {
	.sanator_con{
		padding: 15px;
	}
}

.sanator_name{
	width: 100%;
	position: relative;
	transition: .5s;
	font-weight: 600;
	font-size: 20px;
}


.sanator_cin{
	position: relative;
	width: 100%;
	margin-top: 12px;
}
.sanator_cins{
	position: relative;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: var(--bl);
	padding: 5px 0;
	padding-left: 30px;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 375px) {
	.sanator_cins{
		padding-left: 20px;
	}
}

.sanator_cins::after{
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	width: 15px;
	height: 15px;
	background: var(--gr);
	border-radius: 50%;
}
@media (max-width: 375px) {
	.sanator_cins::after{
		width: 10px;
		height: 10px;
	}
}

.sanator_se{
	position: relative;
	display: inline-block;
	color: var(--bl);
	font-weight: 600;
}


.sanator_cinm{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 15px;
}

.sanator_cinm a{
	padding: 0 15px;
	position: relative;
	font-size: 14px;
	font-weight: 400;
	color: var(--bl8);
}
.sanator_cinm:hover a{
	color: var(--cl);
}
.sanator_cinm a::after, .sanator_cinm a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: -15px;
	height: 1px;
	width: 15px;
	z-index: 2;
	background: var(--bl3);
	transition: var(--tm);
}
.sanator_cinm a::before{
	left: auto;
	right: -15px;
}
.sanator_cinm a:hover::after, .sanator_cinm a:hover::before{
	background: var(--cl5);
}

.sanator_zabr{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
	margin-bottom: 15px;
}



















/*  */
.bl2{
	width: 100%;
	position: relative;
}
.bl2_c{
	position: relative;
	width: 50%;
}
@media (max-width: 425px) {
	.bl2_c{
		width: 100%;
	}
}

.bl2_con{
	width: 100%;
	position: relative;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.nash_pri{
	position: relative;
	width: 100%;
	margin-bottom: 30px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.nash_prim{
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid var(--gr);
	display: flex;
	justify-content: center;
	align-items: center;
}
.nash_pri:hover .nash_prim{
	animation: hoverWavew linear 1s infinite;
}
.nash_prim i{
	font-size: 28px;
	color: var(--bl8);
}

.nash_prit{
	position: relative;
	width: calc(100% - 80px - 30px);
	margin-left: 30px;
}
@media (max-width: 425px) {
	.nash_prit{
		width: calc(100% - 80px - 15px);
		margin-left: 15px;
	}
}

.nash_prit h4{
	font-size: 18px;
	font-weight: 500;
	padding: 5px 0;
	margin-bottom: 5px;
}


/*  */
.bl2_a{
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-size: auto 100%;
	background-position: 65% 100%;
}
@media (max-width: 425px) {
	.bl2_a{
		top: 50%;
		width: 100%;
		height: 50%;
	}
}

.bl2_ac, .bl2_ac::after, .bl2_ac::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--wh) 0%, var(--trw) 100%);
}
.bl2_ac::after{
	background: linear-gradient(0deg, var(--wh) 0%, var(--trw) 50%);
}
.bl2_ac::before{
	background: linear-gradient(180deg, var(--wh) 0%, var(--trw) 50%);
}
@media (max-width: 425px) {
	.bl2_ac{
		background: var(--wh9);
	}
}









/*  */
.bl3{
	position: relative;
	width: 100%;
	padding: 60px 0;
}
.bl3_a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size:100% auto;
   background-position: 0% 90%;
	filter: blur(5px);
}
.bl3 .bl_c{height:100%}


.bl3_c{
	position: relative;
	width: 100%;
	padding: 30px 0;
	background: var(--wh);
	box-shadow: var(--bx2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.bl3_l{
	position: relative;
	width: 60%;
	padding: 0 60px;

	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}
.bl3_l .head_c{
	padding: 0;
}
@media (max-width: 768px) {
	.bl3_l{
		width: 100%;
		margin-bottom: 30px;
		padding: 0 30px;
	}
}



.bl3_r{
	position: relative;
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	.bl3_r{
		width: 100%;
	}
}
















.bl4{
	position: relative;
	width: 100%;
}
.bl4_c{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.pot_gt{
	position: relative;
	width: calc(50% - 30px);
}
@media (max-width: 768px) {
	.pot_gt{
		width: 100%;
	}
}

.pot_gti{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.pot_gt h6{
	margin-bottom: 10px;
}



.pot_gi{
	position: relative;
	width: 50%;
	overflow: hidden;
}
@media (max-width: 768px) {
	.pot_gi{
		width: calc(100% + 30px);
		height: 320px;
		margin: 0 -15px;
	}
}
@media (max-width: 768px) {
	.pot_gi{
		height: 180px;
	}
}

.pot_gi img{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 75%;
	height: auto;
	animation: left_r 8s infinite;
}
.pot_gi img:last-child{
	transform: translateX(-150%);
	animation-delay: 4s;
}
@keyframes left_r{
	0%{transform:translateX(-150%)}
	25%{transform:translateX(0)}
	50%{transform:translateX(0)}
	75%{transform:translateX(150%)}
	100%{transform:translateX(150%)}
}














/*  */
.bl5{
	position: relative;
	width: 100%;
}
.bl5::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 20%;
	bottom: 0;
	left: 0;
	background: var(--gr);
}
.bl5_c{
	position: relative;
	width: 100%;
}
.bl5_con{
	width: calc(100% + 60px);
	margin:0 -30px;
}
@media (max-width: 1024px) {
	.bl5_con{
		width: calc(100% + 30px);
		margin:0 -15px;
	}
}

.bl5_i{
	width: 37.25%;
	height: auto;
	margin: 30px 0;
	background: var(--wh);
	box-shadow: var(--bx2);
	padding: 30px;
	margin-right: 30px;
}
.bl5_i:first-child{
	margin-left: 30px;
}
@media (max-width: 1024px) {
	.bl5_i{
		width: 50%;
		margin-left: 15px;
		margin-right: 0;
	}
	.bl5_i:first-child{
		margin-left: 15px;
	}
	.bl5_i:last-child{
		margin-right: 15px;
	}
}
@media (max-width: 768px) {
	.bl5_i{
		width: 75%;
	}
}
@media (max-width: 425px) {
	.bl5_i{
		width: calc(100% - 30px);
	}
}


.bl5_iln{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 15px;
}
.bl5_ilogo{
	width: 66px;
	height: 66px;
	border-radius: 50%;
	box-shadow: var(--bx2);
	margin-right: 15px;

	background-size: cover;
	background-position: center;
}
.bl5_ilc{
	position: relative;
	width: calc(100% - 66px - 15px - 30px);
}
.bl5_ilname{
	font-size: 18px;
	font-weight: 600;
}
.bl5_ildate{
	font-size: 14px;
	margin-top: 5px;
}


.bl5_ildt{
	position: absolute;
	right: 0;
	top: 0;
	font-size: 14px;
}
@media (max-width: 425px) {
	.bl5_ildt{
		top: 38px;
	}
}

.bl5_it{
	position: relative;
	width: 100%;
	font-size: 14px;
}










.bl5_next, .bl5_prev{
	top: 80px;
	right: 0;
	left: auto;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--bl);
	font-size: 32px;
}
.bl5_next::after, .bl5_prev::after{
	display: none;
}
.bl5_prev{
	right: 44px;
}
@media (max-width: 768px) {
	.bl5_next, .bl5_prev{
		bottom: 0;
		top: auto;
	}
}























.form_pol{
	position: relative;
	width: 100%;
	background: var(--gr);
	padding: 60px 0;
}
.form_pol::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 20%;
	bottom: 0;
	left: 0;
	background: var(--bag);
}

.form_pol2{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	background: var(--wh);
	box-shadow: var(--bx1);
	overflow: hidden;
}

.form_pola{
	position: relative;
	width: 50%;
	background-size: auto 100%;
	background-position: 0% 0%;
}
@media (max-width: 768px) {
	.form_pola{
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
	}
}

.form_pol_c{
	position: relative;
	width: 50%;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-direction:  column;
}
@media (max-width: 768px) {
	.form_pol_c{
		width: 100%;
		background: var(--wh9);
	}
}

.form_pol_c .head_c{
	width: 100%;
}
@media (max-width: 768px) {
	.form_pol_c .head_c{
		padding-top: 0;
	}
}

.form_in{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_in a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_in a:hover{

}




.form_pol_con{
	position: relative;
	width: 100%;
}

.form_pol_con .form_im{
	justify-content: center;
}
.form_pol_con .form_im input{
	max-width: 425px;
}
.form_pol_con .form_im .btn{
	width: 425px;
}





















/*  */
.bl6{
	position: relative;
	width: 100%;
}
.bl6_c{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 60px;
}
@media (max-width: 768px) {
	.bl6_c{
		padding-bottom: 30px;
	}
}
.bl6_l{
	position: relative;
	width: 50%;
	padding-right: 60px;
	font-size: 18px;
	line-height: 28px;
}
@media (max-width: 768px) {
	.bl6_l{
		width: 100%;
		padding-right: 0;
	}
}

.bl6_r{
	position: relative;
	width: 50%;
}
@media (max-width: 768px) {
	.bl6_r{
		width: 100%;
		padding-top: 30px;
	}
}

.bl6_i{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.bl6_i i{
	font-weight: 500;
	font-size: 20px;
	width: 30px;
	transition: var(--tm);
}
.bl6_i span{
	font-weight: 500;
	font-size: 18px;
	transition: var(--tm);
}
.bl6_i a:hover{
	color: var(--cl);
}

.bl6_maps{
	position: relative;
	width: 100%;
	height: 480px;
}
.bl6_maps iframe{
	width: 100%;
	height: 100%;
}































.bacg_san{
	width: 100%;
	height: 100vh;
	position: relative;
}
.bacg_center{
	width: 100%;
	height: 100vh;
	position: relative;
}
.bacg_fon{
	width: 100%;
	height: 100vh;
	position: relative;
	background: var(--cl5);
}
@media (max-width: 480px) {
	.bacg_san{
		width: 100%;
		height: 60vh;
		position: relative;
	}
	.bacg_center{
		width: 100%;
		height: 60vh;
		position: relative;
	}
	.bacg_fon{
		width: 100%;
		height: 60vh;
		position: relative;
		background: var(--cl5);
	}
}
.name_san{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 50px;
	text-align: center;
	font-size: 48px;
	color: var(--wh);
	font-weight: 500;
	text-shadow: var(--tx_sh7);
}
.sana_san{
	position: absolute;
	bottom: 50px;
	right: 0;
	left: 0;
	margin: auto;
	width: 30%;
	height: 65px;
	text-align: center;
	font-size: 36px;
	color: var(--wh);
	font-weight: 500;
	text-shadow: var(--tx_sh7);
	background: var(--cl);
	box-shadow: var(--bx_sh5);
	padding: 10px 0;
	animation: mb_bacg 3s linear infinite;
}
@media (max-width: 480px) {
	.name_san{
		font-size: 24px;
	}
	.sana_san{
		width: 50%;
		height: 45px;
		font-size: 20px;
	}
}
@keyframes mb_bacg{
	0%{
		background: var(--cl1);
	}
	10%{
		background: var(--cl7);
	}
	20%{
		background: var(--cl3);
	}
	30%{
		background: var(--cl);
	}
	70%{
		background: var(--cl);
	}
	80%{
		background: var(--cl3);
	}
	90%{
		background: var(--cl7);
	}
	100%{
		background: var(--cl1);
	}
}

.time_del{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30px;
	background: var(--cl);
}
.time_item{
	padding:0 10px;
	margin-right: 10px;
	float: left;
	margin-top: 7px;
	position: relative;
	color: var(--black7);
}
.time_item::after{
	content: '';
	position: absolute;
	width: 2px;
	height: 15px;
	background: var(--black3);
	right: -5px;
	bottom: 0;
	transform: rotate(25deg);
}
.time_item:last-child::after{
	display: none;
}
.time_item a{
	color: var(--wh);
}
.time_item a:hover{
	text-decoration: underline;
}
@media (max-width: 480px) {
	.time_item:last-child{
		display: none;
	}
}







.pg{
	position: relative;
	width: 100%;
}
.pgc{
	position: relative;
	width: 100%;
}

.pg1{
	position: relative;
	width: 100%;
}
.pg1 .head_c{
	padding-bottom: 10px;
	padding-top: 100px;
}


.pg2{
	position: relative;
	width: 100%;
}
.gallery-top{
	width: calc(100% + 60px);
	height: 75vh;
	margin: 0 -30px;
	padding: 30px;
}
@media (max-width: 768px) {
	.gallery-top{
		height: 480px;
	}
}
@media (max-width: 425px) {
	.gallery-top{
		height: 320px;
	}
}
@media (max-width: 375px) {
	.gallery-top{
		height: 260px;
	}
}
@media (max-width: 320px) {
	.gallery-top{
		height: 240px;
	}
}

.gallery-top .swiper-slide{
	width: 100%;
	height: 100%;
	overflow: hidden;
	box-shadow: var(--bx2);
}
.gallery-top .swiper-slide img{
	width: 100%;
	height: auto;
}


.gallery-top-next, .gallery-top-prev{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid var(--wh);
	width: 66px;
	height: 66px;
	color: var(--wh);
	font-size: 24px;
	right: 60px;
	transition: var(--tm);
}
.gallery-top-prev{
	left: 60px;
}
@media (max-width: 425px) {
	.gallery-top-next, .gallery-top-prev{
		width: 44px;
		height: 44px;
		font-size: 20px;
		right: 40px;
	}
	.gallery-top-prev{
		left: 40px;
	}
}

.gallery-top-next:hover, .gallery-top-prev:hover{
	color: var(--cl);
	border-color: var(--cl);
}

.gallery-top-next::after, .gallery-top-prev::after{
	display: none;
}



.gallery-thumbs{
	width: 100%;
	margin-top: -30px;
	height: auto;
}
.gallery-thumbs .swiper-slide{
	width: 120px;
	height: 80px;
	margin: 15px 7.5px;
	box-shadow: var(--bx2);
	overflow:  hidden;
}
.gallery-thumbs .swiper-slide img{
	height: auto;
	width: 100%;
}

.gallery-thumbs .swiper-slide::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bl4);
	transition: var(--tm);
	opacity: 1;
}
.gallery-thumbs .swiper-slide-thumb-active::after{
	opacity: 0;
}




/*  */
.pg3{
	position: relative;
	width: 100%;
	margin-bottom: 60px;
}
.pg3_c{
	position: relative;
	width: 100%;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
}





/*  */
.pg4{
	position: relative;
	width: 100%;
}
.pg4_c{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.pg4_i{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.pg4_it{
	position: relative;
	width: 100%;
	height: 64px;
	padding: 0 30px;
	border-radius: 5px;
	border-top-right-radius: 30px;
	border-top-left-radius: 30px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: var(--gr);
	margin-bottom: 10px;
	box-shadow: var(--bx1);
}
.pg4_it span{
	font-size: 24px;
	color: var(--bl);
	font-weight: 600;
}


.pg4_ib{
	position: relative;
	width: 100%;
	height: 64px;
	border-radius: 5px;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 30px;
	background: var(--gr);
	box-shadow: var(--bx1);
}




.pg4_ic{
	position: relative;
	width: 100%;
	border-radius: 5px;
	padding: 30px;
	background: var(--wh);
	box-shadow: var(--bx1);
	margin-bottom: 10px;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.pg4_ict{
	position: relative;
	width: 50%;
	margin-bottom: 15px;
}
@media (max-width: 425px) {
	.pg4_ict{
		width: 100%;
	}
}

.pg4_icti{
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;

	font-size: 16px;
	font-weight: 500;
}
.pg4_icti i{
	width: 30px;
	font-size: 20px;
}
.pg4_icti span{
	margin-right: 10px;
}



.pg4_icp{
	position: relative;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-direction:  column;
}
@media (max-width: 425px) {
	.pg4_icp{
		width: 100%;
		align-items: center;
	}
}
.pg4_ic_pr{
	position: relative;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}











/*  */
.callback-bt, .callback-btw{
	position: fixed;
	right: 30px;
	bottom: 30px;
	height:72px;
	width:72px;
	z-index:9999;

	background:var(--cl);
	box-shadow:var(--bx3);
	border:1px solid var(--cl);
	border-radius:50%;
	transition:.3s;
	cursor:pointer;

	display: flex;
	justify-content: center;
	align-items: center;
	
	animation:hoverWave linear 1s infinite;
}
.callback-btw{
	width: 54px;
	height: 54px;
	bottom: 130px;
	right: 39px;
	animation: none;
	background:#25D366;
	border: 0;
	box-shadow: var(--bx_b2);
}
.callback-bt:hover, .callback-btw:hover{
	background:#fff;
	transition:.3s;
}

.callback-bt i, .callback-btw i{
	color:#fff;
	font-size:34px;
	transition:.3s;
	line-height: 66px;
	transition: .5s ease-in-out;
	animation: 1200ms ease 0s normal none 1 running shake;
	animation-iteration-count: infinite;
}
.callback-btw i{
 	font-size: 20px;
 	animation: none;
}
.callback-bt:hover i, .callback-btw:hover i{
	color:var(--cl);
}

/*  */






/*  */
.zabr_nom{
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 900;
	top: 0;
	left: 0;
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: .3s linear;
	visibility: hidden;
}
.zabr_nom_act {
	visibility: visible;
	opacity: 1;
}


.slim_zak{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--bl2);
	backdrop-filter: blur(5px);
	transition: .3s .15s;
	opacity: 0;
}
.zabr_nom_act .slim_zak {
	opacity: 1;
}


.nom_cont{
	position: relative;
	width: 480px;
	padding: 30px;
	/* border-radius: 30px; */
	background: var(--wh);
	box-shadow: var(--bx_b3);
	z-index: 2;
	transform: scale(0);
	transition: .5s;
}
.zabr_nom_act .nom_cont {
   transform: scale(1);
}
@media (max-width: 425px) {
	.nom_cont{
		width: calc(100% - 30px);
	}
}

.nom_cont .head_c{
	padding: 30px 0;
	padding-top: 0;
}


.nom_cont .pol_bronc .btn{
	width: 100%;
}



.head_bt{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}











/*  */
.otp_sec{
	position: fixed;
	top: 10%;
	right: 0;
	left: 0;
	margin: auto;
	width: 160px;
	height: 160px;
	background:rgba(255,255,255,.9);
	z-index: 9999;
	border-radius: 12px;
	box-shadow: var(--bx_sh5);
	justify-content: center;
	align-items: center;
	opacity: 0;
	display: none;
}
.otp_ss, .otp_jj, .otp_er{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color:green;
	display: none;
}
.otp_jj, .otp_er{
	flex-direction: column;
}
.otp_jj i, .otp_er i{
	font-size: 40px;
	margin-bottom: 10px;
}
.otp_jj p, .otp_er p{
	font-size: 14px;
	text-align: center;
}
.otp_er{
	color:red;
}