html {
	margin-right: 0 !important;
}
body {
	font-family: 'Montserrat', sans-serif;
	color: #010101;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
ul {
	padding-left: 1.2em;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	transition: 0.3s;
}
h2 {
	font-size: 35px;
	font-weight: 600;
	margin: 0 0 20px;
}
.title {
	font-weight: 600;
	margin: 0 0 40px;
}
.title span {
	border-left: 3px solid #743089;
	border-right: 3px solid #743089;
	display: inline-block;
	padding: 0 23px;
	position: relative;
}
.title span::before,
.title span::after {
	content: '';
	width: 3px;
	height: 20px;
	background-color: #743089;
	position: absolute;
	top: 50%;
	margin-top: -10px;
}
.title span::before {
	left: 10px;
}
.title span::after {
	right: 10px;
}
.btn {
	font-weight: 600;
	padding: 0.6rem 1.5rem;
}
@media screen and (max-width: 767px) {
	h2,
	.title {
		font-size: 24px;
		margin: 0 0 20px;
	}
	.title span::before,
	.title span::after {
		height: 16px;
		margin-top: -8px;
	}
	.title span::before {
		left: 8px;
	}
	.title span::after {
		right: 8px;
	}
}
/* header__top */
.header {
	position: relative;
	z-index: 11;
}
.header__top {
	background-color: #743089;
	color: #fff;
	font-size: 13px;
}
.header__top .nav {
	gap: 30px;
}
.header__top .nav li {
	font-weight: 600;
	padding: 11px 0 10px 30px;
}
.header__top li.home {
	background: url(../img/home.svg) no-repeat left center;
}
.header__top li.phone {
	background: url(../img/phone.svg) no-repeat left center;
}
.header__top li.timer {
	background: url(../img/timer.svg) no-repeat left center;
}
/* header__menu */
.header__menu {
	background-color: rgba(1, 1, 1, 0.8);
}
.page .header__menu {
	background-color: #010101;
}
.header__menu .logo a {
	display: block;
}
.header__menu .logo a img {
	width: 340px;
	height: 80px;
	object-fit: cover;
	object-position: center;
}
.header__menu .nav {
	gap: 90px;
}
@media screen and (max-width: 1260px) {
	.header__menu .nav {
		gap: 40px;
	}
}
.header__menu li a {
	display: block;
	color: #fff;
}
.header__menu a:hover,
.header__menu .current-menu-item a,
.header__menu .active a {
	color: #743089;
	text-decoration: none;
}
@media screen and (max-width: 992px) {
	.header__menu {
	}
	.header__menu .nav {
		display: block;
		text-align: center;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		height: 100vh;
		z-index: 111;
		transition: 0.5s;
		opacity: 0;
		visibility: hidden;
		background-color: rgba(1, 1, 1, 0.8);
		padding: 20px 0 0;
	}
	.menu-open .header__menu .nav {
		opacity: 1;
		visibility: visible;
	}
	.header__menu li a {
		color: #fff;
		padding: 10px 0;
	}
	.hamburger {
		display: block;
		position: relative;
		width: 32px;
		height: 22px;
	}
	.hamburger span {
		background-color: #fff;
		width: 32px;
		height: 2px;
		position: absolute;
		left: 0;
		top: 50%;
		margin: -1px 0 0;
		transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.hamburger span::before,
	.hamburger span::after {
		content: '';
		width: 100%;
		height: 2px;
		background-color: #fff;
		position: absolute;
		left: 0;
		top: 50%;
		transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.hamburger span::before {
		transform: translateY(-10px);
	}
	.hamburger span::after {
		transform: translateY(9px);
	}
	.menu-open .hamburger span {
		background-color: transparent;
	}
	.menu-open .hamburger span::before {
		transform: translateY(0px) rotate(135deg);
	}
	.menu-open .hamburger span::after {
		transform: translateY(0px) rotate(-135deg);
	}
}
@media screen and (max-width: 767px) {
	.header__menu .logo a img {
		width: 240px;
		height: 60px;
	}
}
/* footer */
.footer {
	background: url(../img/bgf.jpg) no-repeat center bottom / cover;
	color: #fff;
	border-top: 5px solid #743089;
}
.copyright {
	border-top: 1px solid #743089;
	font-size: 14px;
	padding: 20px 0;
}
.fnav {
	padding: 40px 0 30px;
}
.fnav h5 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 8px;
}
.fnav-info li {
	margin: 0 0 16px;
	padding: 0 0 0 36px;
}
.fnav-info li:last-child {
	padding: 0;
	margin: 0;
}
.fnav-info li.home {
	background: url(../img/ico-home.svg) no-repeat left top;
}
.fnav-info li.phone {
	background: url(../img/ico-phone.svg) no-repeat left center;
}
.fnav-info li.mail {
	background: url(../img/ico-mail.svg) no-repeat left center;
}
.fnav-info li a {
	color: #fff;
}
.footer-logo {
	font-size: 24px;
	font-weight: 600;
}
.sns {
	gap: 16px;
}
.sns a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 2px;
}
.sns a:hover {
	background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 992px) {
	.footer {
		background-position: right bottom;
	}
	.fnav {
		padding-bottom: 0 !important;
	}
	.fnav .col-md-6 {
		margin: 0 0 40px;
	}
	.sns {
		justify-content: center;
	}
}
@media screen and (max-width: 992px) {
	.fnav-info li {
		font-size: 14px;
		min-height: 24px;
	}
}
/* slick */
.slick-arrow {
	font-size: 0;
	line-height: 0;
	color: transparent;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 3;
	border: 1px solid #fff;
	margin-top: -30px;
	cursor: pointer;
}
.slick-arrow:focus {
	outline: none;
}
.slick-prev {
	background: url(../img/prev.svg) no-repeat center rgba(116, 48, 137, 0.3);
	left: -15px;
}
.slick-next {
	background: url(../img/next.svg) no-repeat center rgba(116, 48, 137, 0.3);
	right: -15px;
}
@media screen and (max-width: 1200px) {
	.slick-arrow {
		width: 40px;
		height: 40px;
		margin-top: 0;
		background-size: 25px 9px;
	}
	.slick-prev {
		left: 0;
	}
	.slick-next {
		right: 0;
	}
}
/* slick */
.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0 0;
}
.slick-dots li {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	margin: 0 5px;
	background-color: #ddd;
	position: relative;
	list-style: none;
}
.slick-dots li.slick-active {
	width: 20px;
	background-color: #743089;
}
.slick-dots li button {
	opacity: 0;
}
@media screen and (max-width: 767px) {
	.btn-navbar {
		background: url(../img/menu.png) no-repeat center;
	}
	.is-menu-open .btn-navbar {
		background: url(../img/close.png) no-repeat center;
	}
}
/*  */
.p-modal {
	max-width: 550px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 5px;
	padding: 15px 20px 30px;
	position: relative;
}
.p-modal h5 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 30px;
}
.p-modal a {
	color: #743089;
}
@media screen and (max-width: 767px) {
	.mfp-content {
		padding: 0 4%;
	}
}
/* work */
.work {
	padding: 81px 0;
	background: url(../img/bg1.jpg) no-repeat center / cover;
}
.work p {
	font-size: 20px;
	font-weight: 600;
	margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
	.work {
		padding: 40px 0;
	}
	.work .col-6 {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.work img {
		width: 84px;
	}
	.work p {
		font-size: 14px;
		margin: 10px 0 0;
		white-space: nowrap;
	}
}
/* css for page */
.page .main {
	padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
	.page .main {
		padding: 40px 0 0;
	}
}
