*{margin: 0;padding: 0;border: 0}
*,*:before,*:after{box-sizing: border-box}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{height: 100%;width: 100%;min-width: 320px;position: relative;font-size: 100%;line-height: 1;font-size: 14px;-ms-text-size-adjust: 100%;-moz-text-size-adjust: 100%;-webkit-text-size-adjust: 100%}
input,button,textarea{font-family: inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0;border:0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul,li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size: inherit;font-weight: 400;}

::placeholder {color: #6458a1;}

body {
	display: flex;
	flex-direction: column;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #54595f;
}
body.lock {
	overflow: hidden;
}


img {
	max-width: 100%;
	height: auto;
}

.title {
	font-family: 'Cormorant SC', serif;
	text-transform: uppercase;
	color: #001c31;
	font-weight: 700;
}
.btn {
	display: inline-block;
	min-width: 150px;
	height: 47px;
	padding: 0 40px;
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 47px;
	color: #fff;
	background-color: #6458a1;
	border: 2px solid #6458a1;
	border-radius: 30px;
	transition: all .2s;
}
.btn:hover {
	color: #6458a1;
	background-color: #fff;
}

.btn__icon {
	padding-right: 10px;
}

.wrapper {
	display: flex;
	min-height: 100vh;
	flex-flow: column nowrap;
	flex-grow: 1;
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 10px;
}

.content {
	flex: 1 0 auto;
}

/*HEADER*/
.header__body {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	width: 150px;
	display: block;
}
.logo__img {
	max-width: 100%;
}

.nav__link {
	position: relative;
	display: inline-block;
	padding: 13px 0;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #6458a1;
}
.nav__link:not(:last-child) {
	margin-right: 40px;
}
.nav__link:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 0;
	height: 2px;
	background-color: #6458a1;
	transition: width .2s;
}
.nav__link:hover:before {
	width: 100%;
}
@media (max-width: 767px){
	.header__body {
		flex-direction: column;
	}
	.logo {
		width: 100px;
		margin-bottom: 10px;
	}
	.nav {
		width: 100%;
		margin-bottom: 10px;
		display: flex;
		justify-content: center;
	}
	.nav__link:not(:last-child) {
		margin-right: 30px;
	}

	.header__btn {
		width: 100%;
	}

}


/*INTRO*/
.intro {
	position: relative;
	padding-bottom: 80px;
	background: url(images/intro-bg.jpg) no-repeat center/cover #443c83;
}
.intro:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #443c83;
	opacity: 0.45;
}

.intro__body {
	position: relative;
	padding-top: 150px;
}

.intro__text {
	margin-bottom: 30px;
	text-align: center;
	color: #fff;
	font-weight: 700;
}
.intro__title {
	text-transform: uppercase;
	font-size: 66px;
	color: #fff;
}
.intro__subtitle {
	position: relative;
	margin-bottom: 40px;
	font-size: 23px;
	color: #fff;
}
.intro__subtitle:after {
	position: absolute;
	content: '';
	bottom: -15px;
	left: 50%;
	width: 10%;
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);

}
.intro__descr {
	margin-bottom: 15px;
	font-size: 16px;
	letter-spacing: 2px;
}
.intro__list {
	font-size: 16px;
	color: #fff;
	letter-spacing: 1px;
}

.intro__form-wrap {
	margin: 0 -10px 30px;
}

.form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.form__item {
	flex: 1 1 25%;
	padding: 10px;
}
.input {
	width: 100%;
	min-height: 47px;
	padding: 6px 16px;
	color: #6458a1;
	background-color: #fff;
	border: 1px solid #6458a1;
	border-radius: 30px;
}

.form__btn {
	width: 100%;
	display: flex;
	justify-content: center;
}
.form__btn span {
	flex: 0 0 auto;
}
.form__btn:hover {
	color: #fff;
	border-color: #fff;
	background: transparent;
}

.intro__button-wrap {
	text-align: center;
}
.intro__btn {
	margin: 0 15px 20px;
	padding: 0 40px;
	height: 58px;
	color: #6458a1;
	background-color: #fff;
	line-height: 58px;
	border-color: #fff;
	border-radius: 5px;
}

.intro__btn:hover {
	color: #fff;
	background-color: transparent;
}
@media (max-width: 767px){
	.intro__body {
		padding-top: 70px;
	}
	.intro__title {
		font-size: 50px;
	}
	.form {
		flex-direction: column;
	}
}

.advantages {
	padding: 30px 0;
}
.advantages__title {
	margin-bottom: 20px;
	text-align: center;
	font-size: 35px;
}
.advantages__list {
	display: flex;
}
.advantages__item {
	width: 25%;
	padding: 30px 20px;
	text-align: center;
	transition: .2s;
}
.advantages__item:hover {
	box-shadow: 0px 0px 65px -24px #443c83;
}
.advantages__item-img {
	width: 35%;
	margin: 0 auto 30px;
	opacity: 0.7;
}
.advantages__item:hover .advantages__img {
	animation-name: anim1,anim2;
	animation-duration: .3s,1.5s;
	animation-delay: 0s,.3s;
	animation-timing-function: ease-out,ease-in-out;
	animation-iteration-count: 1,infinite;
	animation-fill-mode: forwards;
	animation-direction: normal,alternate;
}
.advantages__item-title {
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	color: #6458a1;
}

@keyframes anim1 {
	100% {
		transform: translateY(8px);
	}
}
@keyframes anim2 {
	0% {
		transform: translateY(8px);
	}
	50% {
		transform: translateY(4px);
	}
	100% {
		transform: translateY(8px);
	}
}

@media (max-width: 767px){
	.advantages__list {
		display: block;
	}
	.advantages__item {
		width: 100%;
	}
}


.widgets {
	margin-bottom: 30px;
}
.widgets__body {
	display: flex;
}
.widgets__col {
	width: 50%;
}

@media (max-width: 767px){
	.widgets__body {
		display: block;
	}
	.widgets__col {
		width: 100%;
	}
}
.widgets__col-left {
	padding: 0 20px 20px;
}
.stars {
	padding-bottom: 10px;
	border-bottom: 1px solid #e8e8e8;
}
.stars__title {
	margin-bottom: 20px;
	font-size: 46px;
}

.stars__text {
	margin-bottom: 20px;
	font-size: 15px;
}
.stars__widget {
	margin-bottom: 20px;
	font-size: 17px;
	color: #ff7f50;
}
.stars__btn {
	width: 100%;
	height: 48px;
	margin-bottom: 20px;
	line-height: 48px;
	border-radius: 5px;
}
@media (max-width: 767px){
	.stars__title {
		text-align: center;
		font-size: 35px;
	}
	.stars__text {
		text-align: center;
	}
	.stars__widget {
		text-align: center;
	}
}

.discount {
	padding-top: 50px;
	text-align: center;
}
.discount_icon {
	text-align: center;
	font-size: 28px;
	color: #f42e5c;
}
.discount__title {
	font-family: 'Poiret One', cursive;
	margin: 20px 0;
	font-size: 25px;
}
.discount__descr {
	font-size: 16px;
	margin-bottom: 30px;
}

.eye__btn {
	display: inline-block;
	padding: 12px;
	color: #6458a1;
}
.eye__btn-icon {
	padding-right: 15px;
}
.eye__btn-text {
	text-transform: uppercase;
	font-weight: 700;
}
.eye__btn:hover {
	animation-name: wobble-horizontal;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
}
@keyframes wobble-horizontal {
	16.65% {
		transform: translateX(8px);
	}
	33.3% {
		transform: translateX(-6px);
	}
	49.95% {
		transform: translateX(4px);
	}
	66.6% {
		transform: translateX(-2px);
	}
	83.25% {
		transform: translateX(1px);
	}
	100% {
		transform: translateX(0);
	}
}

.section__swiper {
	padding-left: 20px;
}
@media (max-width: 767px){
	.section__swiper {
		padding-left: 0;
	}
}
.section__swiper-title {
	margin-bottom: 20px;
	padding-left: 15px;
	font-size: 20px;
	line-height: 1;
	border-left: 3px solid #ff7f50;
}
.swiper1 {
	max-width: 550px;
}

.swiper-pagination {
	position: static;
}
.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
}
.swiper-pagination-bullet-active {
	background: #443c83;
}



.price__body {
	display: flex;
}
.price__item {
	flex: 0 0 33.33333%;
	padding: 20px;
	text-align: center;
}
.price__item-img {
	margin-bottom: 20px;
}
.price__img {
	width: 28px;
	margin: 0 auto;
}
.price__icon {
	font-size: 28px;
	color: #11f4e1;
}
.price__item-title {
	margin-bottom: 30px;
	font-family: 'Poiret One', cursive;
	font-size: 25px;
}

@media (max-width: 767px){
	.price__body {
		display: block;
	}
	.price__item {
		width: 100%;
	}
}


.clients {
	padding: 30px 0;
}
.clients__title {
	margin-bottom: 10px;
	text-align: center;
	font-size: 35px;
}
.clients__subtitle {
	position: relative;
	max-width: 200px;
	margin: 0 auto 20px;
	text-align: center;
	letter-spacing: 2px;
}
.clients__subtitle:before,
.clients__subtitle:after {
	position: absolute;
	content: '';
	top: 9px;
	width: 20px;
	height: 3px;
	background-color: #6458a1;
}
.clients__subtitle:before {
	left: 0;
}
.clients__subtitle:after {
	right: 0;
}

.swiper-container2 {
	overflow-x: hidden;
}




.contacts__logo {
	margin: 0 auto 20px;
}
.contacts__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contacts__item {
	margin-right: 30px;
	margin-bottom: 10px;
}
.contacts__link {
	display: flex;
	align-items: center;
}
.contacts__link:hover .contacts_text{
	text-decoration: underline;
}
.contacts_icon {
	font-size: 25px;
}
.contacts_text {
	padding-left: 5px;
	color: #001c31;
}
.fa-map-marker-alt {color: #f42e5c;}
.fa-phone-alt {color: #6458a1;}
.fa-whatsapp {color: #66b821;}
.fa-viber {color: #574e92;}
.fa-store-alt {color: #ff7f50;}
.contacts_icon .fa-envelope {color: #6458a1;}

.contacts__form {
	padding: 30px 0;
}
.contacts__form-title {
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
	color: #6458a1;
}
.form__btn-contacts:hover {
	color: #6458a1;
	border-color: #6458a1;
}

@media (max-width: 480px){
	.contacts__list {
		display: block;
		margin: 0 auto;
	}
	.contacts__item {
		margin-right: 0;
	}
	.contacts_text {
		padding-left: 10px;
	}
}

.maps {
	padding: 10px 0;
}
.maps__img {
	width: 100%;
	max-width: 100%;
}

.footer__body {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
}
.footer__link {
	color: inherit;
	text-decoration: underline;
}

@media (max-width: 767px){
	.footer__body {
		flex-direction: column;
		-ms-align-items: center;
		align-items: center;
	}
}


/*popup*/
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all .8s ease;
	overflow-x: hidden;
	overflow-y: auto;
}
.popup.open {
	opacity: 1;
	visibility: visible;
}
.popup__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 25px;
	height: 25px;
	font-size: 18px;
	color: #54595f;
	background-color: transparent;
}
.popup__close:hover {
	color: #000;
}
.popup__body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 10px;
}

.popup__content {
	position: relative;
	max-width: 640px;
	background-color: #fff;
	padding: 30px;
	text-align: center;
}

.popup__logo {
	width: 110px;
	margin: 0 auto 20px;
}

.popup__title {
	margin-bottom: 20px;
	font-size: 40px;
}
.popup__subtitle {
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 40px;
	color: #f42e5c;
	font-weight: 700;
}
.popup__text {
	margin-bottom: 10px;
}

.form__btn-popup:hover {
	background-color: #443c83;
	border-color: #443c83;
}


.price__table {
	margin-bottom: 20px;
	text-align: left;
}

.price__table td,
.price__table th {
	padding: 10px 0;
}
@media (max-width: 480px){
	.popup_2 .popup__content{
		padding: 30px 5px;
	}
}

.price__list {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: #212121;
}
.price__list-item {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.price__list-title {
	max-width: 80%;
	text-align: left;
}
.price__list-separator {
	flex-grow: 1;
	margin: 0 10px;
	border-bottom: 2px dashed #6458a1;
}
