



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.001);
  padding: 50px 0;
  transition: 0.5s;
  display: flex;
  align-items: center;
  z-index: 10;
  /*display: none;*/
}
.header .container {
    justify-content: space-between;
  /*padding: 0 60px;*/
  /*justify-content: space-between;*/
}
.header .header__logo {
  position: absolute;
  /*left: 0;*/
  left: 60px;
  /*top: 50px;*/
}
.header .header__logo img {}

.header .header__logo-container {
  display: none;
}
.header .header__logo-container img {}

.header .header__text {
  color: var(--red);
  font-weight: 700;
  font-size: 2.0rem;
  display: inline-block;
  border: 2px solid var(--red);
  /*margin-right: 330px;*/
  margin-left: 14px;
  padding: 14px 22px;
  text-decoration: none;
  transition: 0.5s;
}
.header .header__text p {
  margin-bottom: 0;
}
.header .header__text-link:hover {
  background: var(--red);
  color: var(--white);
}


.header nav {
    display: flex;
    align-items: center;
}
.header nav ul {
	display: flex;
}
.header nav ul li {
	margin-left: 80px;
}
.header nav ul li a {
	font-size: 2rem;
	color: var(--white);
	text-decoration: none;
}
.header nav ul li a:hover {
	color: var(--red);
}


.header.sticky {
  padding: 20px 0;
  background: rgba(0,0,0,0.9);
}
.header.sticky .header__logo {
}



@media screen and (max-width: 1999px) {
}
@media screen and (max-width: 1800px) {
}
@media screen and (max-width: 1700px) {

  .header {
    padding: 20px 0;
  }
  .header .container {
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .header.sticky .header__logo {
  }
  .header .header__logo {
    display: none;
  }
  .header .header__logo-container {
    display: block;
    position: relative;
    top: initial;
    left: 0;
  }

  .header nav ul li {
  	margin-left: 60px;
  }


  .header.sticky {
  	padding: 10px 0;
  }
  .header.sticky .header__text {
  	padding-top: 4px;
  	padding-bottom: 4px;
  	font-size: 1.6rem;
  }


}
@media screen and (max-width: 1199px) {

  .header {
    padding: 48px 0;
  }
  .header .container {
    max-width: 930px;
    justify-content: end;
  }
  .header .header__text {
  	margin-left: 176px;
  }

  .header nav {
  	display: none;
  }

}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 999px) {

	.header {
		position: absolute;
	}
  .header .container {
    padding: 0 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: end;
    /*max-width: 700px;*/
    max-width: 700px;
  }
  .header .header__logo-container {
    top: 0;
    width: 38.5%;
    margin-bottom: 0;
    margin-top: 10px;
    /*order: 1;*/
  }

  .header .header__text {
  	margin-left: 0;
  	padding: 8px 22px;
  	font-size: 1.8rem;
  }

}
@media screen and (max-width: 767px) {


  .header {
    position: absolute;
    padding: 35px 0;
  }
  .header .container {
		padding: 0;
		max-width: 370px;
      flex-direction: column;
  }
  .header .header__logo-container {
    /*order: 1;*/
    width: 100%;
    margin-top: 17px;
    margin-bottom: 40px;
  }
  .header .header__logo-container img {
  	max-width: 182px;
  }
  .header .header__text {
    padding: 17px 22px;
    font-size: 1.7rem;
    line-height: 1.6;
	}

}
@media screen and (max-width: 479px) {

  .header {
    /*padding: 56px 0;*/
    padding: 30px 0;
  }
  .header.sticky {
    padding: 50px 0;
    background: transparent;
  }
  .header .container {
    padding: 0 20px;
    max-width: 320px;
  }
  .header .header__logo-container {
  	/*margin-bottom: 24px;*/
  	margin: 0 auto 20px;
  }
  .header .header__logo-container img {
	    max-width: 152px;
	}
	.header .header__text {
	   /*padding: 12px 22px;*/
	   /*font-size: 1.9rem;*/

	   padding: 8px 20px;
	   font-size: 1.6rem;
	}
}
@media screen and (max-width: 379px) {
}







.header-attach {
  background: rgba(0,0,0,0.9) !important;
}

.header-attach .container {
  justify-content: end;
  padding: 0 15px;
}
.header-attach .header__logo-container {
  margin-right: 100px;
}
.header-attach .header__text {
  left: 0
}

@media screen and (max-width: 767px) {

	.header-attach {
		padding: 50px 0;
	}
	.header-attach .header__text {
		display: none;
	}
	.header-attach .header__date {
		display: none;
	}

  .header-attach .header__logo-container {
    /*margin-right: 0;*/
    margin: 0 auto !important;
  }
}


@media screen and (max-width: 479px) {

  .header-attach .header__text {
    margin-top: 40px;
  }

}














.general {
    /*padding: 284px 0 190px;*/
    padding: 140px 0 190px;
}
.general .bg__abs {
    max-width: 945px;
    width: 100%;
    left: initial;
    right: 0;
}
.general .title {
	font-size: 8rem;
	line-height: 1.2;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 80px;
	letter-spacing: 2px;
}
.general .title:before {
	bottom: -28px;
}
.general .subtitle {
	font-size: 2rem;
	color: var(--white);
	margin-bottom: 160px;
	letter-spacing: 0.2px;
}
.general .list {
	display: none;
}
.general .wrap {}
.general .btn {}



@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {

	.general {
		/*padding: 270px 0 175px;*/
	}
	.general .title {
		margin-bottom: 85px;
	}
	.general .subtitle {
		margin-bottom: 90px;
	}

}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.general {
		/*padding-top: 240px;*/
		padding-bottom: 150px	;
	}
	.general .title {
		/*line-height: 1.15;*/
		/*font-size: 7.4rem;*/
		/*letter-spacing: 7px;*/
		margin-bottom: 84px;

		font-size: 7rem;
		line-height: 1.25;
		letter-spacing: 4px;
	}
	.general .subtitle {
		line-height: 1.5;
		margin-bottom: 115px;
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 767px) {
	.general {
		padding-top: 70px;
		padding-bottom: 100px;
		/*padding-top: 360px;*/
	}
	.general .title {
		font-size: 4.1rem;
		letter-spacing: 2px;
		line-height: 1.35;
		margin-bottom: 94px;
	}
	.general .subtitle {
		line-height: 1.7;
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 479px) {

	.general {
		/*padding-top: 340px;*/
		/*padding-top: 200px;*/
		/*padding-bottom: 125px;*/
	}
	.general .title {
		font-size: 3rem;
		margin-bottom: 65px;
	}
	.general .title:before {
		width: 125px;
	}
	.general .subtitle {
		letter-spacing: -0.2px;
		line-height: 1.6;
		/*margin-bottom: 96px;*/
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 379px) {}





.boxes {
	padding: 120px 0;
}
.boxes .s__image {}


@media screen and (max-width: 999px) {
	.boxes {
	    padding: 135px 0 104px;
	}
}
@media screen and (max-width: 767px) {
	.boxes {
		padding: 126px 0 132px;
	}
}
@media screen and (max-width: 479px) {
	.boxes {
		padding: 68px 0 72px;
	}
}



.useful {}
.useful .title {}
.useful .useful__list {
	display: flex;
	flex-direction: column;
}
.useful .useful__item {
	display: flex;
	margin-bottom: 50px;
}
.useful .useful__item:last-of-type {
	margin-bottom: 0;
}
.useful .useful__pic {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border: 2px solid var(--red);
	border-radius: 100%;
	padding: 20px;
	margin-right: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top: 5px;
}
.useful .useful__pic img {}
.useful .useful__info {}
.useful .useful__title {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 15px;
	letter-spacing: -0.2px;
}
.useful .useful__text {
	font-size: 1.8rem;
	letter-spacing: 0.2px;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.useful {
	    padding: 145px 0 170px;
	}
	.useful .title {
	    margin-bottom: 90px;
	}
	.useful .useful__item {
		margin-bottom: 48px;
	}
	.useful .useful__item:last-of-type {
		margin-bottom: 0;
	}
	.useful .useful__pic {
		/*width: 66px;*/
		/*height: 66px;*/
		padding: 10px;
		margin-right: 26px;
	}
	.useful .useful__title {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.useful .useful__text {
	    letter-spacing: 0.4px;
	    font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.useful {
		padding: 125px 0 120px;
	}
	.useful .title {
	    margin-bottom: 106px;
	}
	.useful .useful__title {
		font-size: 1.9rem;
		line-height: 1.7;
		margin-bottom: 16px;
	}
	.useful .useful__text {
		font-size: 1.5rem;
		line-height: 1.8;
	}
}
@media screen and (max-width: 479px) {
	.useful{
		padding: 98px 0 120px;
	}
	.useful .title {
		margin-bottom: 64px;
	}
	.useful .useful__item {
		margin-bottom: 33px;
	}
	.useful .useful__pic {
	    width: 52px;
	    height: 52px;
	    margin-right: 20px;
	    padding: 13px;
	}
	.useful .useful__title {
		font-size: 1.55rem;
	}
	.useful .useful__text {
		font-size: 1.6rem;
		letter-spacing: 0;
		line-height: 1.5;
	}
}
@media screen and (max-width: 379px) {}




.system {}
.system .title {
	margin-bottom: 80px;
}
.system .s__text {}
.system .s__text p {}
.system .hidden-mob {
    margin-bottom: 26px;
}
.system .s__image {
	position: relative;
    left: -15px;
}
.system .tagline {
	color: var(--red);
}
.system .visible-mob {
	display: none;
}


@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {
	.system {
	    padding: 120px 0;
	}

	.system .hidden-mob {
		display: none;
	}
	.system .visible-mob {
		display: block;
	}
	.system .s__text {
		margin-bottom: 30px;
	}

	.system .columns .column-1 {
		width: 60%;
	}
	.system .columns .column-2 {
		width: 40%;
	}

	.system .picture {
		margin-bottom: 60px;
	}
	.system .s__image {
		left: -10px;
	}

}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.system {
		padding: 140px 0 135px;
	}
	.system .title {
		margin-bottom: 72px;
	}
	.system .columns .column-1 {
		width: 100%;
	}
	.system .column-1 .tagline {
		display: block !important;
		/*font-size: 2.2rem;*/
		margin-top: 48px;
	}
	.system .tagline {
		display: none;
	}
	.system .columns .column-2 {
		width: 100%;
	}
	.system .picture {
		margin-bottom: 0;
	}
	.system .s__image {
		left: -30px;
		max-width: 392px;
		margin: 0 auto;
	}
	.system .s__image img {
		margin: 0 auto;
	}

}
@media screen and (max-width: 767px) {
	.system {
		padding: 130px 0 120px;
	}
	.system .title {
	    margin-bottom: 85px;
	}
	.system .column-1 .tagline {
		margin-top: 62px;
	}
	.system .s__image {
	    left: 0px;
	    max-width: 308px;
	}
}

@media screen and (max-width: 479px) {
	.system {
	    padding: 100px 0 100px;
	}
	.system .title {
	    margin-bottom: 70px;
	}
	.system .s__text {
	    margin-bottom: 24px;
	}
	.system .column-1 .tagline {
	    margin-top: 46px;
	    font-size: 2rem;
	}
	.system .columns .column-1 {
		margin-bottom: 56px;
	}

}

@media screen and (max-width: 379px) {}




.work {}
.work .bg__abs {
    max-width: 945px;
    width: 100%;
    left: initial;
    right: 0;
}
.work .title {
  color: var(--white);
	margin-bottom: 80px;
}
.work .s__text {
  color: var(--white);
}
.work .s__text p {}
.work .tagline {
	color: var(--red);
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {

}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.work {
		padding: 135px 0 145px;
	}
	.work .title {
		margin-bottom: 65px;
	}
	.work .s__text {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 767px) {
	.work {
		padding: 120px 0;
	}
	.work .title {
		margin-bottom: 88px;
	}
	.work .s__text {
	    margin-bottom: 65px;
	}
	.work .s__text p {
		margin-bottom: 34px;
	}
}
@media screen and (max-width: 479px) {
	.work {
	    padding: 105px 0 98px;
	}
	.work .title {
		margin-bottom: 68px;
	}
	.work .s__text {
		margin-bottom: 60px;
	}
	.work .s__text p {
	    margin-bottom: 24px;
	}
	.work .tagline {
	    font-size: 2rem;
	    line-height: 1.5;
	}
}
@media screen and (max-width: 379px) {}



.wait {}
.wait .title {
	margin-bottom: 120px;
}
.wait .wait__list {
	display: flex;
	flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 40px;
}
.wait .wait__item {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	max-width: 50%;
	width: 100%;
}
.wait .wait__pic {
	width: 160px;
	height: 160px;
	border: 2px solid var(--red);
	border-radius: 100%;
	margin-right: 40px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wait .wait__pic img {}
.wait .wait__info {
	font-size: 2.4rem;
	position: relative;
	top: -8px;
}
.wait .tagline {
	color: var(--red);
	font-size: 3rem;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {

	.wait .wait__list {
		margin-bottom: 20px;
	}
	.wait .wait__item {
		max-width: 48%;
	}
	.wait .wait__pic {
		width: 132px;
		height: 132px;
		margin-right: 25px;
	}
	.wait .wait__pic img {
		max-width: 52px;
		max-height: 52px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.wait {
		padding: 140px 0;
	}
	.wait .title {
		margin-bottom: 90px;
	}
	.wait .wait__list {
		flex-direction: column;
		margin-bottom: 90px;
	}
	.wait .wait__item {
		max-width: 100%;
		order: 1;
		margin-bottom: 52px;
	}
	.wait .wait__item:nth-child(2n) {
		order: 2;
	}
	.wait .wait__item:last-of-type {
		margin-bottom: 0;
	}
	.wait .wait__pic {
	    width: 122px;
	    height: 122px;
	    margin-right: 16px;
	}
	.wait .wait__info {
		font-size: 2.2rem;
		top: 0;
	}
	.wait .tagline {
		font-size: 2.7rem;
	}
}
@media screen and (max-width: 767px) {
	.wait {
		padding: 120px 0;
	}
	.wait .title {
		margin-bottom: 105px;
	}
	.wait .wait__pic {
	    width: 112px;
	    height: 112px;
	}
	.wait .wait__list {
		margin-bottom: 95px;
	}
	.wait .wait__item {
		margin-bottom: 68px;
	}
}
@media screen and (max-width: 479px) {
	.wait {
	    padding: 100px 0;
	}
	.wait .title {
		margin-bottom: 80px;
	}
	.wait .wait__list {
		margin-bottom: 60px;
	}
	.wait .wait__item {
		margin-bottom: 42px;
	}
	.wait .wait__pic {
		width: 78px;
		height: 78px;
	}
	.wait .wait__pic img {
	    max-width: 34px;
	    max-height: 34px;
	}
	.wait .wait__info {
		font-size: 1.6rem;
	}
	.wait .tagline {
		font-size: 2rem;
	}
}
@media screen and (max-width: 379px) {}


.fire {}
.fire .title {
	margin-bottom: 80px;
}
.fire .s__text {
	margin-bottom: 40px;
}
.fire .s__text2 {
	font-size: 2.6rem;
	margin-bottom: 40px;
}
.fire .s__text2 strong {
	letter-spacing: 0;
}
.fire .s__text ol {}
.fire .s__text ol li {}
.fire .s__text ol li .text {}
.fire .s__image {
	position: relative;
    left: 15px;
    top: 10px;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {
	.fire {
		padding-bottom: 110px;
	}
	.fire .s__image {
		left: 25px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.fire {
		padding: 130px 0 140px;
	}
	.fire .title {
	    margin-bottom: 75px;
	}
	.fire .s__text {
		margin-bottom: 35px;
	}
	.fire .s__text2 {
		font-size: 2.35rem;
	}
	.fire .columns .column-1 {
		margin-bottom: 30px;
	}
	.fire .s__image {
	    left: 95px;
	    max-width: 290px;
	}
}

@media screen and (max-width: 767px) {
	.fire {
		padding: 120px 0 130px;
	}
	.fire .title {
		line-height: 1.5;
		margin-bottom: 80px;
	}
	.fire .s__text {
	    margin-bottom: 42px;
	}
	.fire .s__text2 {
		line-height: 1.7;
	}
	.fire .columns .column-1 {
		margin-bottom: 10px;
	}
	.fire .s__image {
	    left: 45px;
	    max-width: 320px;
	}
}
@media screen and (max-width: 479px) {
	.fire {
		padding: 95px 0 110px;
	}
	.fire .title {
		line-height: 1.4;
		margin-bottom: 70px;
	}
	.fire .s__text2 {
	    line-height: 1.56;
	    font-size: 1.9rem;
	}
	.fire .columns .column-1 {
	    margin-bottom: -5px;
	}
	.fire .s__image {
		left: 22px;
	}
}
@media screen and (max-width: 379px) {}


.program {}
.program .title {
	margin-bottom: 80px;
}
.program .tab__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.program .tab__header-item {
	font-size: 1.8rem;
	max-width: 16.66666%;
	width: 100%;
	text-align: center;
	padding: 20px;
	background: var(--white);
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid #C0C0C0;
}
.program .tab__header-item:after {
	content: '';
	position: absolute;
	height: 34px;
	width: 1px;
	background: #C0C0C0;
	display: block;
	top: 50%;
	margin-top: -18px;
	right: 0;
}
.program .tab__header-item:last-of-type:after {
	display: none;
}
.program .tab__header-item.active {
	font-weight: 800;
	color: var(--red);
}

.program .tab__body {
	padding-left: 100px;
	margin-bottom: 80px;
}
.program .tab__body-item {
	position: relative;
	display: none;
}
.program .tab__body-item.active {
	display: block;
}
.program .tab__body-info {
	max-width: 520px;
	width: 100%;
}
.program .tab__body-title {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 50px;
}
.program .tab__body-list {
	font-size: 1.8rem;
	margin-bottom: 60px;
}
.program .tab__body-list ul {}
.program .tab__body-list ul li {
	margin-bottom: 30px;
	display: flex;
}
.program .tab__body-list ul li:last-of-type {
	margin-bottom: 0;
}
.program .tab__body-list ul li:before {
	content: '';
	background: url(../i/ico__checked-01.svg) no-repeat center;
	width: 31px;
	height: 31px;
	display: inline-block;
	margin-right: 22px;
	flex-shrink: 0;
}

.program .tab__body-list ul li .text {}
.program .tab__body-res {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.program .tab__body-text {
	font-size: 1.8rem;
}
.program .tab__body-num {
	color: #DEDEDE;
	font-size: 22rem;
	font-weight: 900;
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {
	.program .title {
		margin-bottom: 110px;
	}
	.program .tab__body {
		padding-left: 75px;
	}
	.program .tab__body-list {
		letter-spacing: 0.2px;
		margin-bottom: 64px;
	}
	.program .tab__body-list ul li:before {
		width: 36px;
		background-size: 100% 100%;
		position: relative;
		top: 6px;
		left: 0;
		margin-right: 18px;
	}
	.program .tab__body-num {
		right: 80px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.program {
		padding: 140px 0 135px;
	}
	.program .title {
	    margin-bottom: 105px;
	}
	.program .tab__header {
		flex-wrap: wrap;
	    justify-content: flex-start;
	    margin-bottom: 74px;
	}
	.program .tab__header-item {
	    max-width: 160px;
	    font-size: 1.6rem;
	    word-spacing: 8px;
	}
	.program .tab__body {
		padding-left: 80px;
		margin-bottom: 70px;
	}
	.program .tab__body-info {
		/*max-width: 360px;*/
	}
	.program .tab__body-title {
		font-size: 2.2rem;
		margin-bottom: 44px;
	}
	.program .tab__body-list {
		font-size: 1.6rem;
		margin-bottom: 54px;
		max-width: 360px;
	}
	.program .tab__body-list ul li:before {
		margin-right: 14px;
	}
	.program .tab__body-num {
	    right: 0;
	    font-size: 18rem;
	    top: 10px;
	    line-height: 1;
	}
	.program .tab__body-res {
		font-size: 1.8rem;
	}
	.program .tab__body-text {
		font-size: 1.6rem;
		letter-spacing: 0.2px;
		max-width: 460px;
	}
}
@media screen and (max-width: 767px) {
	.program {
	    padding: 120px 0 125px;
	}
	.program .title {
		line-height: 1.5;
		margin-bottom: 85px;
	}
	.program .tab__header {
		margin-bottom: 68px;
	}
	.program .tab__header-item {
		max-width: 50%;
		padding: 23px;
	}
	.program .tab__header-item:nth-child(2n) {}
	.program .tab__header-item:nth-child(2n):after {
		display: none;
	}
	.program .tab__body {
		padding-left: 0;
		margin-bottom: 60px;
	}
	.program .tab__body-num {
	    right: initial;
	    font-size: 14rem;
	    top: 25px;
	    left: 0px;
	    display: none;
	}

	.program .tab__body-info .tab__body-num {
		display: block;
		top: 0;
	    position: relative;
	    margin-bottom: 20px;
	}
	.program .tab__body-title {
		margin-bottom: 20px;
		/*margin-bottom: 0;*/
		/*margin-bottom: 200px;*/
	}
	.program .tab__body-list ul li {
		margin-bottom: 36px;
	}
	.program .tab__body-res {
		margin-bottom: 25px;
	}
	.program .tab__body-text {
		left: 0;
		line-height: 1.7;
	}
}
@media screen and (max-width: 479px) {
	.program {
		padding: 100px 0 102px;
	}
	.program .title {
		line-height: 1.4;
		margin-bottom: 78px;
	}
	.program .tab__header {
	    margin-bottom: 55px;
	}
	.program .tab__body {
		margin-bottom: 50px;
	}
	.program .tab__body-num {
		font-size: 10rem;
	}
	.program .tab__body-title {
	    /*margin-bottom: 145px;*/
	}
	.program .tab__body-list {
		padding-right: 10px;
		margin-bottom: 42px;
	}
	.program .tab__body-list ul li {
	    margin-bottom: 30px;
	}

	.program .tab__body-res {
		margin-bottom: 20px;
	}
	.program .tab__body-res strong {
		letter-spacing: 0.4px;
	}
	.program .tab__body-text {
		line-height: 1.5;
		letter-spacing: -0.2px;
	}
}

@media screen and (max-width: 379px) {}




.process {}
.process .title {
	color: var(--white);
}
.process .process__list {
	display: flex;
	flex-direction: column;
}
.process .process__item {
	margin-bottom: 45px;
	display: flex;
	color: var(--white);
}
.process .process__item:last-of-type {
	margin-bottom: 0;
}
.process .process__pic {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border: 2px solid var(--red);
	border-radius: 100%;
	padding: 20px;
	margin-right: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top: 8px;
}
.process .process__pic img {}
.process .process__text {}
.process .process__title {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 20px;
}
.process .process__text {
	font-size: 1.8rem;
	letter-spacing: 0.2px;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.process {
		padding: 140px 0 135px;
	}
	.process .title {
		margin-bottom: 90px;
	}
	.process .process__pic {
		/*width: 66px;*/
		/*height: 66px;*/
		padding: 10px;
		margin-right: 26px;
		top: 2px;
	}
	.process .process__title {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	.process .process__text {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.process {
	    padding: 120px 0 125px;
	}
	.process .process__title {
		font-size: 1.8rem;
	}

	.process .process__item {
		margin-bottom: 52px;
	}
	.process .process__title {
		margin-bottom: 15px;
	}
	.process .process__text {
		line-height: 1.7;
		letter-spacing: 0;
	}
}

@media screen and (max-width: 479px) {
	.process {
		padding: 100px 0;
	}
	.process .title {
		margin-bottom: 80px;
	}
	.process .process__item {
		margin-bottom: 54px;
	}
	.process .process__pic {
		width: 52px;
		height: 52px;
		margin-right: 22px;
		padding: 15px;
	}
	.process .process__title {
		font-size: 1.7rem;
	}
	.process .process__text {
		line-height: 1.5;
	}
}
@media screen and (max-width: 379px) {}




.perfect {}
.perfect .title {
	margin-bottom: 80px;
}
.perfect .s__text {
	margin-bottom: 60px;
}

.perfect .slider__wrap {
	/*height: 380px;*/
	/*background: red;*/
}
.perfect .slider {
	max-width: 870px;
	margin: 0;
	margin-right: 60px;
}

.perfect .slider__item {
	border: 1px solid #C0C0C0;
    /*min-height: 100%;*/
}
.perfect .slider__item img {
	min-height: 100%;
}

.perfect .slider__control {
    flex-direction: column;
    /*padding-top: 40px;*/
    z-index: 5;
    position: relative;
}
.perfect .slider__control-button {
    border-radius: 100%;
    width: 39px;
    height: 39px;
    border: 2px solid #C0C0C0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    /*opacity: 0.5;*/
    transition: 0.5s;
}
.perfect .slider__control-button svg {}
.perfect .slider__control-button svg path {
  stroke: #161616;
  opacity: 0.5;
  transition: 0.5s;
}
.perfect .slider__control-next {
    margin-bottom: 20px;
    /*background: url(../i/arrow__slider.svg) no-repeat center;*/
}
.perfect .slider__control-prev {
    /*background: url(../i/arrow__slider.svg) no-repeat center;*/
    transform: rotate(180deg);
}
.perfect .slider__control-button:hover {
    /*opacity: 1;*/
}
.perfect .slider__control-button:hover svg {}
.perfect .slider__control-button:hover svg path {
  opacity: 1;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {

	.perfect {
		padding-bottom: 160px;
	}
	.perfect .slider {
		max-width: 672px;
		margin-right: 36px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.perfect {
		padding: 135px 0 150px;
	}
	.perfect .title {
	    margin-bottom: 75px;
	}
	.perfect .s__text {
	    margin-bottom: 54px;
	}
	.perfect .slider {
	    max-width: 398px;
	    margin-right: 46px;
	}
	.perfect .slider__control-button {
		width: 36px;
		height: 36px;
	}
	.perfect .slider__control-next {
		margin-bottom: 16px;
	}
}

@media screen and (max-width: 767px) {
	.perfect {
		padding: 120px 0;
	}
	.perfect .title {
		line-height: 1.45;
	}
	.perfect .slider {
	    max-width: 268px;
	    margin-right: 66px;
	}
}
@media screen and (max-width: 479px) {
	.perfect {
		padding: 100px 0 85px;
	}
	.perfect .title {
		margin-bottom: 65px;
	}
	.perfect .s__text {
		font-size: 1.4rem;
	}
	.perfect .s__text {
		margin-bottom: 45px;
	}
	.perfect .slider {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 40px;
	}
	.perfect .slider__control {
		flex-direction: row;
	}
	.perfect .slider__control-button {
		width: 38px;
		height: 38px;
	}
	.perfect .slider__control-next {
		order: 2;
	}
	.perfect .slider__control-prev {
		order: 1;
		margin-right: 18px;
	}
}
@media screen and (max-width: 379px) {}
















.producer {}
.producer .title {
  margin-bottom: 90px;
}

.producer .row {
  margin-bottom: 20px;
  margin-top: -10px;
}
.producer .row2 {
	margin-bottom: 30px;
}

.producer .s__text {
  margin-bottom: 40px;
}
.producer .producer-2 {}
.producer .producer-2 ul {
  flex-direction: column;
}
.producer .producer-2 ul li {
  margin-bottom: 30px;
  max-width: 100%;
  display: flex;
  font-size: 1.8rem;
}
.producer .producer-2 ul li:before {
	content: '';
	width: 26px;
	height: 24px;
	display: inline-block;
	background: url(../i/ico__checked-01.svg) no-repeat center;
	flex-shrink: 0;
	margin-right: 15px;
	position: relative;
	top: 6px;
}

.producer .checked__list {
  margin-bottom: 6px;
}
.producer .s__image {
  background: #DDDDDD;
  justify-content: center;
  padding: 20px 20px 0 20px;
  margin-bottom: 60px;
  margin: 0 auto 60px -30px;
  width: calc(100%);
  align-items: end;
}
.producer .s__image img {
  max-width: 276px;
}
.producer .book {
  width: calc(100% + 10px);
  margin-left: -30px;
}
.producer .book__list {
  display: flex;
  width: 100%;
  max-width: 470px;
}
.producer .book__item {
  margin: 0 3px;
}
.producer .book__item:first-of-type {
  margin-left: 0;
}
.producer .book__item:last-of-type {
  margin-right: 0;
}
.producer .book__img {}
.producer .book__img img {}
.producer .tagline {
	color: var(--red);
}
.producer .visible-mob {
  display: none;
}
.producer .hidden-mob {
  display: block;
}



@media screen and (max-width: 1999px) {
}
@media screen and (max-width: 1800px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1199px) {

  .producer {}
  .producer .s__title {
    margin-bottom: 80px;
  }
	.producer .s__text {
	    margin-bottom: 14px;
	}
  .producer .producer-2 ul li {
    margin-bottom: 30px;
  }
  .producer .checked__list {
    margin-bottom: 12px;
  }
  .producer .column-1 {
    width: 46%;
  }
  .producer .column-2 {
    width: 46%;
  }
  .producer .s__image {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .producer .book {
    margin-left: 0;
  }

}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 999px) {

  .producer {
    padding: 135px 0 110px;
  }
  .producer .s__title {
    margin-bottom: 85px;
  }
  .producer .column-1 {
    width: 100%;
    margin-bottom: 55px;
  }
  .producer .column-2 {
    width: 100%;
    max-width: 560px;
  }
  .producer .producer {
      margin-bottom: 30px;
  }
  .producer .checked__list {
  	margin-bottom: 55px;
  }
  .producer .producer-2 ul li {
  	margin-bottom: 28px;
  	font-size: 1.6rem;
  }
  .producer .visible-mob {
    display: block;
  }
  .producer .hidden-mob {
    display: none;
  }
  .producer .s__image {
    margin-bottom: 30px;
    max-width: 480px;
  }
  .producer .s__image img {
      max-width: 312px;
  }
  .producer .book__list {
    max-width: 100%;
    justify-content: space-between;
    max-width: 480px;
  }
  .producer .book__item {
      margin: 0 8px;
  }
  .producer .row {
  	margin-top: -15px;
  	margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {

  .producer {
    padding: 120px 0 70px;
  }
.producer .title {
    margin-bottom: 100px;
}
.producer .column-1 {
	margin-bottom: 65px;
}
  .producer .producer-2 ul li {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }
  .producer .producer-2 ul li:before {
    /*top: 4px;*/
    /*left: 6px;*/
    margin-right: 12px;
  }
  .producer .s__image {
      margin-bottom: 55px;
  }
.producer .s__image img {
    max-width: 272px;
}
  .producer .book__list {
    flex-wrap: wrap;
    /*width: calc(100% + 10px);*/
    /*margin-left: -5px;*/
    margin-left: -6px;
    width: calc(100% + 24px);
  }
  .producer .book__item {
    margin: 0 0 40px;
    max-width: 31.3%;
  }
  .producer .book__item:first-of-type {
    margin-left: initial;
  }
  .producer .book__item:last-of-type {
    margin-left: initial;
  }
  .producer .s__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 479px) {

  .producer {
      padding: 100px 0 60px;
  }
  .producer .title {
      margin-bottom: 80px;
  }
  .producer .s__text {
    padding-right: 0;
  }
  .producer .s__text {
    margin-bottom: 24px;
  }
  .producer .producer {
    width: 101%;
    margin-bottom: 15px;
  }
  .producer .checked__list {
  	margin-bottom: 50px;
  }
  .producer .producer ul li {
    font-size: 1.6rem;
  }
  .producer .column-1 {
    margin-bottom: 60px;
  }
  .producer .s__image {
    padding: 10px 20px 0;
    margin-bottom: 40px;
  }
    .producer .s__image img {
      max-width: 184px;
  }
  .producer .book {
  	width: 100%;
  }
  .producer .book__item {
    max-width: 86px;
    margin-bottom: 18px;
  }
  .producer .tagline {
  	font-size: 2rem;
  	line-height: 1.5;
  }

}
@media screen and (max-width: 379px) {
}





.bonuses {}
.bonuses .title {}
.bonuses .bonuse__list {
	display: flex;
	flex-direction: column;
}
.bonuses .bonuse__item {
	display: flex;
	padding: 79.5px 0;
	border-bottom: 1px solid #C0C0C0;
}
.bonuses .bonuse__item:first-of-type {
	padding-top: 0;
}
.bonuses .bonuse__item:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
.bonuses .bonuse__pic {
	margin-right: 30px;
	width: 370px;
	flex-shrink: 0;
}
.bonuses .bonuse__pic img {}
.bonuses .bonuse__info {
	display: flex;
	flex-direction: column;
	max-width: 570px;
	width: 100%;
}
.bonuses .bonuse__title {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 40px;
}
.bonuses .bonuse__text {
	font-size: 2rem;
}


@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {

	.bonuses .bonuse__item {
		padding: 100px 0 98px;
	}
	.bonuses .bonuse__pic {
		margin-right: 15px;
	}
	.bonuses .bonuse__info {
		max-width: 365px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.bonuses {
		padding: 140px 0 135px;
	}
	.bonuses .bonuse__list {}
	.bonuses .bonuse__item {
		display: flex;
		flex-direction: column;
		padding-bottom: 72px;
	}
	.bonuses .bonuse__pic {
		max-width: 470px;
		width: 100%;
		margin: 0 auto 40px;
	}
	.bonuses .bonuse__info {
		max-width: 470px;
	}
	.bonuses .bonuse__title {
		font-size: 2.2rem;
	}
	.bonuses .bonuse__text {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 767px) {
	.bonuses {
		padding: 120px 0;
	}
	.bonuses .title {
		line-height: 1.5;
		margin-bottom: 80px;
	}

	.bonuses .bonuse__item {
		padding-bottom: 45px;
	}
	.bonuses .bonuse__pic {
		width: 110%;
		margin-bottom: 52px;
	}
	.bonuses .bonuse__pic img {
		width: 110%;
	}
	.bonuses .bonuse__title {
		margin-bottom: 45px;
	}
	.bonuses .bonuse__text {
		line-height: 1.7;
	}
}
@media screen and (max-width: 479px) {
	.bonuses {
		padding: 95px 0;
	}
	.bonuses .title {
		line-height: 1.4;
	}

	.bonuses .bonuse__item {
		padding-bottom: 55px;
	}
	.bonuses .bonuse__pic {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
	}
	.bonuses .bonuse__title {
		font-size: 1.95rem;
		margin-bottom: 18px;
	}
	.bonuses .bonuse__text {
		font-size: 1.55rem;
		line-height: 1.6;
	}

}
@media screen and (max-width: 379px) {}





.packages {}
.packages .title {}
.packages .package__list {
	display: flex;
	justify-content: space-between;
	max-width: 970px;
	width: 100%;
	margin-bottom: 80px;
}
.packages .package__item {
	background: var(--white);
	/*margin: 0 30px;*/
	padding: 0 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 455px;
    width: 100%;
}
.packages .package__body {}
.packages .package__name {
	font-size: 3rem;
	text-align: center;
	padding: 30px 10px 34px;
	font-weight: 800;
	border-bottom: 2px solid #E8E8E8;
}
.packages .package__info {
	padding: 50px 0;
	font-size: 1.8rem;	
}
.packages .package__info:last-of-type {
	padding-bottom: 65px;
}
.packages .package__info-spec {
	font-size: 2rem;
	color: var(--red);
	margin-bottom: 36px;
}
.packages .package__info-spec strong {
	color: var(--black);
	font-weight: 700;
}

.packages .package__info ul {}
.packages .package__info ul li {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 30px;
	padding-left: 40px;
}
.packages .package__info ul li:last-of-type {
	margin-bottom: 0;
}
.packages .package__info ul li:before {
	content: '';
	width: 26px;
	height: 24px;
	flex-shrink: 0;
	/*margin-right: 15px;*/
	display: block;
	background: url(../i/ico__checked-01.svg) no-repeat center;
	position: absolute;
	top: 0;
	left: 0;
}
.packages .package__info .value {
	color: #292929;
	/*position: relative;*/
    /*top: 5px;*/
	font-size: 1.8rem;
	margin-bottom: 6px;
	opacity: 0.5;
}

.packages .package__footer {
	display: flex;
	flex-direction: column;
}
.packages .package__value {
	padding: 60px 0;
	text-align: center;
	border-top: 2px solid #E8E8E8;
	border-bottom: 2px solid #E8E8E8;

}
.packages .package__value-label {
	color: #292929;
	font-weight: 500;
	font-size: 2rem;
	margin-bottom: 20px;
}
.packages .package__value-price {
	font-size: 4rem;
	font-weight: 800;
	color: var(--red);
}
.packages .package__value-cyr {
	color: #A7A7A7;
}

.packages .package__price {
	padding: 54px 0 50px;
	text-align: center;
}
.packages .package__price-label {
	font-size: 2.2rem;
    margin-bottom: 20px;
	color: var(--black);
}
.packages .package__price-old {
	color: var(--black);
	font-size: 3rem;
	margin-bottom: 10px;
	opacity: 0.5;
	text-decoration: line-through;
}
.packages .package__price-now {
	font-weight: bold;
	font-size: 4rem;
}
.packages .package__price-cyr {
	color: #A7A7A7;
}

.packages .package__btn {
	text-align: center;
}
.packages .package__btn .btn {
    max-width: 194px;
    margin: 0 auto;
    padding: 22px 10px;
    width: 100%;
    text-align: center;
    justify-content: center;
}


.packages .package__alert {
	font-size: 2rem;
	display: flex;
}
.packages .package__alert:before {
	content: '*';
	color: var(--red);
	font-size: 2rem;
	margin-right: 15px;
	flex-shrink: 0;
	position: relative;
}


@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {

	.packages .package__list {
		max-width: 750px;
	}
	.packages .package__item {
		max-width: 360px;
		padding: 0 25px 80px 30px;
	}
	.packages .package__name {
		padding-top: 35px;
	}
	.packages .package__info:last-of-type {
		padding-bottom: 62px;
	}

	.packages .package__alert {
		position: relative;
		left: -75px;
		width: calc(100% + 75px);
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {
	.packages {
	    padding: 135px 0;
	}
	.packages .title {
		margin-bottom: 90px;
	}
	.packages .package__list {
		flex-direction: column;
		margin-bottom: 75px;
	}
	.packages .package__item {
		max-width: 480px;
		padding: 0 35px 70px 36px;
		margin-bottom: 50px;
	}	
	.packages .package__item:last-of-type {
		margin-bottom: 0;
	}
	.packages .package__name {
		font-size: 2.4rem;
		padding-bottom: 30px;
	}
	.packages .package__info {
		padding: 45px 0;
		font-size: 1.6rem;
	}
	.packages .package__info ul li {
		margin-bottom: 28px;
	}
	.packages .package__info-spec {
		font-size: 1.8rem;
		margin-bottom: 33px;
	}
	.packages .package__info .value {
		font-size: 1.6rem;
		display: block;
		width: 100%;
	}
	.packages .package__value {
		padding: 50px 0;
	}
	.packages .package__value-label {
		font-size: 1.8rem;
	}
	.packages .package__value-price {
		font-size: 3.6rem;
	}

	.packages .package__price {
		padding: 50px 0 40px;
	}
	.packages .package__price-label {
		font-size: 1.8rem;
	}
	.packages .package__price-now {
		font-size: 3.6rem;
	}

	.packages .package__alert {
		left: 0;
		width: 100%;
		font-size: 1.8rem;
	}
	.packages .package__alert:before {
		margin-right: 8px;
	}
}
@media screen and (max-width: 767px) {
	.packages {
	    padding: 120px 0;
	}
	.packages .package__list {
		margin-bottom: 80px;
	}
	.packages .package__item {
		padding: 0 30px 85px 30px;
	}
	.packages .package__name {
		padding: 44px 20px 34px;
	}
	.packages .package__info {
		padding: 55px 0;
	}
	.packages .package__info-spec {
		margin-bottom: 38px;
	}
	.packages .package__info-spec strong {
		letter-spacing: -0.4px;
	}
	.packages .package__info ul li {
		margin-bottom: 34px;
		padding-left: 34px;
	}
	.packages .package__info:last-of-type {
	    padding-bottom: 90px;
	}
	.packages .package__value {
	    padding: 60px 0;
	}
	.packages .package__value-price {
	    font-size: 4rem;
	    letter-spacing: -1px;
	}
	.packages .package__price {
		padding: 56px 0 56px;
	}
	.packages .package__price-label {
		font-size: 2rem;
	}
	.packages .package__alert {
		line-height: 1.7;
		letter-spacing: -0.4px;
	}

}
@media screen and (max-width: 479px) {
	.packages {
	    padding: 104px 0 100px;
	}
	.packages .package__item {
		padding: 0 18px 72px 18px;
	}
	.packages .package__info:last-of-type {
		padding-top: 30px;
		padding-bottom: 50px;
	}
	.packages .package__name {
	    padding: 31px 5px 34px;
	    font-size: 3rem;
	}
	.packages .package__info {
		padding: 50px 0;
	}
	.packages .package__info-spec {
		font-size: 2rem;
		margin-bottom: 30px;	
	}
	.packages .package__info-spec strong {
		letter-spacing: -0.5px;
	}
	.packages .package__info ul li {
		padding-left: 40px;
		margin-bottom: 20px;
	}
	.packages .package__info .value {
		margin-top: 7px;
		letter-spacing: -0.4px;
	}
	.packages .package__info-2 {}
	.packages .package__info-2 ul {}
	.packages .package__info-2 ul li {
		margin-bottom: 13px;
	}
	.packages .package__value-label {
		font-size: 2rem;
	}
	.packages .package__price {
		padding: 52px 0 50px;
	}
	.packages .package__price-label {
		font-size: 2.2rem;
	}
	.packages .package__price-now {
		font-size: 4rem;
	}
	.packages .package__btn .btn {
		font-size: 2.1rem;
	}
	.packages .package__list {
	    margin-bottom: 45px;
	}
	.packages .package__alert:before {
		margin-right: 2px;
	}
	.packages .package__alert {
		font-size: 1.6rem;
		line-height: 1.5;
	}
}
@media screen and (max-width: 379px) {}











.reviews {
  /*padding-bottom: 240px;*/
  padding-bottom: 150px;
}
.reviews .s__title {
  margin-bottom: 100px;
}
.reviews .slider__wrap {
  justify-content: space-between;
  /*margin-bottom: 60px;*/
  /*max-width: 1070px;*/
  max-width: 970px;
  position: relative;
}
.reviews .slider {
  margin: 0;
  max-width: calc(100% - 44px - 40px);
  /*padding-bottom: 24px;*/
}
.reviews .slider__item {
  display: flex;
}

.reviews .slider__column {
  display: flex;
  flex-direction: column;
  width: 170px;
  flex-shrink: 0;
  margin-right: 40px;
}

.reviews .slider__photo {
  width: 170px;
  height: 170px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.reviews .slider__photo img {
  max-width: 100%;
  min-height: 170px;
}

.reviews .pagination__control {
  font-weight: 400;
  font-size: 2rem;
  display: flex;
  justify-content: center;
}
.reviews .swiper-pagination-current {
  margin-right: 5px;
}
.reviews .swiper-pagination-total {
  margin-left: 5px;
}


/*.reviews .slider__pages {
  font-weight: 400;
  font-size: 2rem;
  display: flex;
  justify-content: center;
}
.reviews .slider__pages-current {}
.reviews .slider__pages-sep {
  margin: 0 5px;
}
.reviews .slider__pages-total {}*/



.reviews .slider__info {
  max-width: 662px;
  width: 100%;
}
.reviews .slider__title {
  margin-bottom: 43px;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
.reviews .slider__text {
	font-size: 2rem;
	margin-bottom: 40px;
	max-width: 608px;
	width: 100%;
}
.reviews .slider__text p {
  margin-bottom: 30px;
}
.reviews .slider__text p:last-of-type {
  margin-bottom: 0;
}
.reviews .slider__name {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--black2);
  /*letter-spacing: -1.5px;*/
}


.reviews .slider__control {
    flex-direction: column;
    padding-top: 40px;
    z-index: 5;
    position: relative;
}
.reviews .slider__control-button {
    border-radius: 100%;
    width: 39px;
    height: 39px;
    border: 2px solid #C0C0C0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    /*opacity: 0.5;*/
    transition: 0.5s;
}
.reviews .slider__control-button svg {}
.reviews .slider__control-button svg path {
  stroke: #161616;
  opacity: 0.5;
  transition: 0.5s;
}
.reviews .slider__control-next {
    margin-bottom: 20px;
    /*background: url(../i/arrow__slider.svg) no-repeat center;*/
}
.reviews .slider__control-prev {
    /*background: url(../i/arrow__slider.svg) no-repeat center;*/
    transform: rotate(180deg);
}
.reviews .slider__control-button:hover {
    /*opacity: 1;*/
}
.reviews .slider__control-button:hover svg {}
.reviews .slider__control-button:hover svg path {
  opacity: 1;
}



@media screen and (max-width: 1999px) {
}
@media screen and (max-width: 1800px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1199px) {

  .reviews {
  	padding-bottom: 175px;
  }

  .reviews .slider__wrap {
  	max-width: 750px;
  }
  .reviews .slider {
  	/*max-width: calc(100% - 40px);*/
  }
  .reviews .slider__column {
  	margin-right: 60px;
  }
  .reviews .slider__control {
    padding-top: 30px;
  }
  .reviews .slider__title {
    margin-bottom: 44px;
  }
  .reviews .slider__text {
    max-width: 450px;
  }
  .reviews .slider__text p {
    margin-bottom: 31px;
  }

}
@media screen and (max-width: 1023px) {

}
@media screen and (max-width: 999px) {
  .reviews {
     	padding: 140px 0 160px;
     	/*padding: 140px 0 240px;*/
  }
  .reviews .title {
  	margin-bottom: 90px;
  }
  .reviews .slider {
    width: 100%;
    max-width: 100%;
  }
  .reviews .slider__item {
    flex-direction: column;
  }
  .reviews .slider__photo {
    margin-bottom: 15px;
    width: 150px;
    height: 150px;
  }
  .reviews .slider__column {
    margin-right: 0;
    margin-bottom: 38px;
  }
  .reviews .slider__control {
    position: absolute;
    top: 0;
    right: 80px;
  }
  .reviews .slider__title {
  	font-size: 2.4rem;
  	margin-bottom: 38px;
  }
  .reviews .slider__info {
    max-width: 526px;
  }
  .reviews .slider__text {
    max-width: 100%;
    font-size: 1.8rem;
    max-width: 480px;
  }
  .reviews .slider__text p {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .reviews {
    padding: 120px 0 145px;
  }
  .reviews .title {
      margin-bottom: 100px;
  }
  .reviews .slider__photo img {
  	min-height: 150px;
  }
  .reviews .slider__info {
      max-width: 402px;
  }
  .reviews .slider__title {
  	margin-bottom: 48px;
  }
  .reviews .slider__text {
    margin-bottom: 50px;
    line-height: 1.67;
    letter-spacing: -0.2px;
  }
  .reviews .slider__control {
    right: 54px;
  }
	.reviews .slider__column {
	    margin-bottom: 70px;
	}
  .reviews .slider__control {
  	right: 16px;
  	padding-top: 40px;
  }

}
@media screen and (max-width: 479px) {

  .reviews {
      padding: 100px 0 105px;
  }
  .reviews .slider__control {
    padding-top: 40px;
    right: 16px;
  }
  .reviews .slider__info {
      max-width: 272px;
  }
  .reviews .slider__column {
    margin-bottom: 50px;
  }
  .reviews .slider__title {
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
  .reviews .slider__text {
    font-size: 1.6rem;
    line-height: 1.5;
    max-width: 270px;
    margin-bottom: 30px;
  }
  .reviews .slider__text p {
      margin-bottom: 24px;
  }
  .reviews .slider__name {
    font-size: 1.6rem;
    /*letter-spacing: 1px;*/
  }
  .reviews .slider__photo {
  	width: 160px;
  	height: 160px;
  }

	.reviews .slider__control {
	    padding-top: 34px;
	    right: 8px;
	}

}
@media screen and (max-width: 379px) {
}








.calc {
	padding-bottom: 105px;
	color: var(--white);
}
.calc .title {
	color: var(--white);
	margin-bottom: 80px;
}
.calc .s__text {
	margin-bottom: 46px;
}
.calc .package__list {
	display: flex;
	/*justify-content: space-between;*/
	margin-bottom: 40px;
}
.calc .package__item {
	max-width: 465px;
	flex-shrink: 0;
	width: 100%;
	margin-right: 40px;
	background: var(--white);
}
.calc .package__item:last-of-type {
	margin-right: 0;
}
.calc .package__title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--red);
	padding: 22px 0;
	margin: 0 30px;
	border-bottom: 1px solid #161616;
}
.calc .package__text {
	color: #292929;
	margin: 30px;
	font-size: 1.8rem;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {
	.calc .package__item {
		max-width: 360px;
		margin-right: 30px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {

	.calc {
		padding: 140px 0 90px;
	}
	.calc .title {
		margin-bottom: 70px;
	}
	.calc .package__list {
		flex-direction: column;
		margin-top: 10px;
		margin-bottom: 0;
	}
	.calc .package__item {
		max-width: 480px;
		margin-right: 0;
		margin-bottom: 40px;
	}
	.calc .package__title {
	    font-size: 2.6rem;
	    padding: 22px 8px;
	}
	.calc .package__text {
		margin: 24px 38px 30px;
		font-size: 1.65rem;
	}
}
@media screen and (max-width: 767px) {
	.calc {
		padding: 120px 0 80px;
	}
	.calc .title {
	    margin-bottom: 90px;
	}
	.calc .package__title {
		padding: 28px 0px;
	}
	.calc .package__text {
		margin: 28px 28px 30px;
		font-size: 1.6rem;
		line-height: 1.7;
	}
}
@media screen and (max-width: 479px) {
	.calc {
		padding: 100px 0 60px;
	}
	.calc .title {
	    margin-bottom: 68px;
	}
	.calc .s__text {
		margin-bottom: 38px;
	}
	.calc .s__text-2 {
		font-size: 1.8rem;
		margin-bottom: 32px;
	}
	.calc .package__list {
		margin-bottom: 16px;
	}
	.calc .package__item {
		max-width: 270px;
		margin-bottom: 30px;
	}
	.calc .package__title {
		margin: 0 20px;
		font-size: 2.8rem;
		padding: 25px 0;
	}
	.calc .package__text {
		margin: 26px 20px 28px 20px;
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 379px) {}








.start {}
.start .title {
  margin-bottom: 80px;
}
.start .s__text {
	margin-bottom: 80px;
}
.start .wrap {}
.start .btn {}
.start .s__image {
	position: relative;
    left: 50px;
    top: 10px;
}

@media screen and (max-width: 1999px) {}
@media screen and (max-width: 1800px) {}
@media screen and (max-width: 1700px) {}
@media screen and (max-width: 1199px) {
	.start {}
	.start .column-1 {
		width: 60%;
	}
	.start .column-2 {
		width: 40%;
	}
	.start .s__image {
		left: 55px;
	}
}
@media screen and (max-width: 1023px) {}
@media screen and (max-width: 999px) {

	.start {
		padding: 140px 0 160px;
	}
	.start .column-1 {
		width: 100%;
	}
	.start .column-2 {
		width: 100%;
	}
	.start .title {
		margin-bottom: 74px;
	}
	.start .s__text {
	    margin-bottom: 70px;
	}
	.start .s__text p {
		margin-bottom: 28px;	
	}
	.start .s__image {
	    left: 90px;
	    max-width: 300px;
	    top: 20px;
	}
}
@media screen and (max-width: 767px) {

	.start {
	    padding: 120px 0 135px;
	}
	.start .title {
		margin-bottom: 84px;
	}
	.start .s__text {
		letter-spacing: -0.2px;
		line-height: 1.7;
	}
	.start .s__text strong {
		letter-spacing: -0.2px;
	}
	.start .s__text p {
		margin-bottom: 30px;
	}
	.start .s__image {
	    left: 60px;
	    max-width: 260px;
	    top: 15px;
	}


}
@media screen and (max-width: 479px) {
	.start {
		padding: 100px 0 105px;
	}
	.start .title {
		margin-bottom: 64px;
	}
	.start .s__text {
		line-height: 1.5;
		margin-bottom: 50px;
	}
	.start .s__text p {
		margin-bottom: 24px;
	}
	.start .s__image {
	    left: 40px;
	    top: 5px;
	}
}
@media screen and (max-width: 379px) {}















.questions {
  padding-bottom: 40px;
  /*background: red;*/
}
.questions .s__title {
  margin-bottom: 104px;
}

.questions .column-1 {
    max-width: 355px;
    /*margin-right: 28px;*/
}
.questions .column-2 {
  max-width: 710px;
  width: 100%;
    /*width: calc(100% - 355px - 28px);*/
}
.questions .contacts__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    margin-top: -2px;
    margin-bottom: 34px;
}

.questions .contacts__item {
    margin-bottom: 14px;
}

.questions .contacts__item svg {
    flex-shrink: 0;
}
.questions .contacts__item svg path {
    fill: var(--black2);
}
.questions .contacts__item svg.ico-phone {
    width: 26px;
    margin-right: 6px;
}
.questions .contacts__item svg.ico-mail {
    width: 18px;
    margin-right: 18px;
}

.questions .contacts__item-link {
    font-family: Montserrat;
    color: var(--black2);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.questions .contacts__item-link:hover {
    color: var(--red);
}
.questions .contacts__item-tel {
    font-size: 2.5rem;
    letter-spacing: 0.3px;
}
.questions .contacts__item-mail {
    font-size: 1.8rem;
}

.questions .socials__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.questions .socials__item {
    margin-right: 32px;
}
.questions .socials__item-link {
    display: block;
}

.questions .socials__item svg {
    width: 26px;
    flex-shrink: 0;
}
.questions .socials__item svg path {
    fill: var(--black2);
    transition: 0.5s;
}
.questions .socials__item .ico-fb {}
.questions .socials__item .ico-telega {}
.questions .socials__item-link:hover svg path {
    fill: var(--red);
}

.questions .form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 20px;
}

.questions .form .col {
  max-width: 50%;
  width: 100%;
  margin-right: 30px;
}
.questions .form .col:nth-child(2n) {
  margin-right: 0;
}

/*
.questions .form .column-1 {
    max-width: 390px;
    padding-right: 0;
    margin-right: 10px;
}*/
.questions .form__item {
    margin-bottom: 30px;
}
.questions .form .inp {
    /*font: 1.5rem Montserrat;*/
    font-size: 1.5rem;
    font-family: 'Montserrat';
    background-image: none !important;
    display: block;
    padding: 15px 17px;
    height: 52px;
    width: 100%;
    border: 1px solid #C0C0C0;
    border-radius: 0;
    outline: none;
    transition: 0.5s;
}

.questions .form textarea.inp {
    /*font: 1.5rem Montserrat;*/
    font-size: 1.5rem;
    height: 134px;
    resize: none;
}
.questions .form .inp:hover,
.questions .form .inp:focus,
.questions .form .inp:active {
    /* border-color: var(--white); */
    background:var(--white);
}

.questions .form .btn {
    border: none;
}

.questions .form .inp.error::-webkit-input-placeholder {color:#E42D2D;}
.questions .form .inp.error::-moz-placeholder          {color:#E42D2D;}
.questions .form .inp.error:-moz-placeholder           {color:#E42D2D;}
.questions .form .inp.error:-ms-input-placeholder      {color:#E42D2D;}

.questions .form .inp.error {
    border-color: #E42D2D;
}
.questions .form label.error {
  display: none !important;
}

.questions .form button {
    padding: 0;
}
.questions .form .btn {
    max-width: 170px;
    width: 100%;
    height: 52px;
    padding: 17px 15px;
    display: block;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}
.questions .form .btn .inner {
    /* padding: 17px 20px; */
}
.questions .form .btn__show1 {
    display: block;
}
.questions .form .btn__show2 {
    display: none;
}
.questions .form__item-mob {
    display: none;
}

.questions .agree {
    font-size: 1.4rem;
    color: var(--black2);
    max-width: 570px;
    width: 100%;
}




@media screen and (max-width: 1999px) {
}
@media screen and (max-width: 1800px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1199px) {

  .questions {
    padding-bottom: 45px;
  }
  .questions .s__title {
      margin-bottom: 95px;
  }
  .questions .contacts__list {
    margin-bottom: 25px;
  }
  .questions .contacts__item-tel {
      letter-spacing: 0.5px;
  }
  .questions .socials__list {
    margin-bottom: 58px;
  }


}
@media screen and (max-width: 1023px) {


}
@media screen and (max-width: 999px) {

  .questions {
    padding-top: 135px;
  }
  .questions .title {
    margin-bottom: 96px;
    font-size: 4rem;
    letter-spacing: 1px;
  }
  .questions .columns.columns-padding {
    margin-left: 0;
    width: 100%;
  }
  .questions .column-1 {
    margin-bottom: 0;
  }

  .questions .contacts__list {
  	margin-bottom: 15px;
  }
  .questions .contacts__item-tel {
  	font-size: 2.2rem;
  }
  .questions .contacts__item-mail {
  	font-size: 1.6rem;
  }
  .questions .socials__list {
    margin-bottom: 52px;
	}
  .questions .socials__item {
  	margin-right: 8px;
  }

  .questions .form__item {
  	margin-bottom: 26px;
  }
  .questions .form .inp {
  	height: 45px;
  }
  .questions .form textarea.inp {
  	height: 120px;
  }
  .questions .form .btn {
  	height: 45px;
  	font-size: 1.4rem;
  }
  .questions .agree {
  	font-size: 1.3rem;
  }

}
@media screen and (max-width: 767px) {

  .questions {
    padding: 120px 0 40px;
  }
  .questions .title {
    margin-bottom: 84px;
    line-height: 1.4;
    letter-spacing: -1px;
  }

  .questions .contacts__list {
  	margin-bottom: 25px;
  }

  .questions .socials__list {
      margin-bottom: 46px;
  }

  .questions .form {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .questions .form .col {
    max-width: 100%;
  }
  .questions .form .inp {
  	height: 56px;
  }
  .questions .form textarea.inp {
  	height: 140px;
  }
  .questions .form .btn {
  	height: 52px;
  }
  .questions .agree {
  	line-height: 1.6;
  }



}
@media screen and (max-width: 479px) {

  .questions {
      padding: 95px 0 30px;
  }

  .questions .title {
    font-size: 3.6rem;
    letter-spacing: 0;
    margin-bottom: 80px;
  }
  .questions .contacts__item-tel {
  	font-size: 2.4rem;
  }
  .questions .contacts__item-mail {
  	font-size: 1.7rem;
  }
  .questions .socials__item {
  	margin-right: 24px;
  }

}
@media screen and (max-width: 379px) {
}









.footer {
  /*background: blue;*/
  padding: 40px 0 50px;
}
.footer .footer__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  max-width: 1000px;
}
.footer .footer__logo {
  margin: 12px 0 0 14px;
}
.footer .footer__list {
  display: flex;
  width: 100%;
  max-width: 550px;
  justify-content: space-between;
}
.footer .footer__item {}
.footer .footer__link {
  color: #3A3A3C;
  font-weight: 400;
  text-decoration: underline;
  font-size: 1.8rem;
}
.footer .footer__link:hover {
  color: var(--red);
  text-decoration: none;
}
.footer .copy {
  font-weight: 400;
  color: #3A3A3C;
  max-width: 1000px;
  font-size: 1.8rem;
  margin-left: 14px;
}




@media screen and (max-width: 1999px) {
}
@media screen and (max-width: 1800px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1199px) {

  .footer {
    padding: 32px 0 50px;
  }
  .footer .footer__logo {
    margin: 5px 5% 0 4px;
  }
  .footer .copy {
    margin-left: 0;
  }
  .footer .footer__flex {
  	max-width: 750px;
  }
  .footer .footer__list {
  	max-width: 440px;
  }

}
@media screen and (max-width: 1023px) {


}
@media screen and (max-width: 999px) {

  .footer {}
  .footer .columns.columns-padding {
    margin-left: 0;
    width: 100%;
    max-width: 714px;
  }
  .footer .footer__flex {
    margin-bottom: 20px;
  }
  .footer .footer__item {
    margin-bottom: 10px;
  }
  .footer .footer__item:last-of-type {
    margin-bottom: 0;
  }
  .footer .footer__logo {
      margin: 4px 6% 0 0;
  }
  .footer .footer__list {
    max-width: 304px;
    flex-direction: column;
  }

}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 80px;
  }
  .footer .footer__flex {
    flex-direction: column;
    /*padding: 0 14px;*/
    margin-bottom: 30px;
  }
  .footer .footer__logo {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .footer .footer__list {
    flex-direction: column;
  }
  .footer .copy {
  	font-size: 1.6rem;
    /*margin-left: 14px;*/
  }
  .footer .footer__link {
  	font-size: 1.6rem;
  }

}
@media screen and (max-width: 479px) {

  .foooter {}
  .footer .footer__flex {
    padding: 0;
  }
  .footer .footer__item {
      margin-bottom: 5px;
  }
  .footer .footer__link {
    font-size: 1.6rem;
  }
  .footer .footer__logo {
    margin-bottom: 35px;
  }
  .footer .copy {
    font-size: 1.6rem;
    margin-left: 0;
    letter-spacing: 0.3px;
  }

}
@media screen and (max-width: 379px) {
}








.popup {
    max-width: 570px;
    margin: 20px auto;
    position: relative;
    background: #fff;
    padding: 40px 40px 50px;
    /*font: 1.1rem/1.4 Montserrat;*/
    font-size: 1.1rem;
    line-height: 1.4;
    color: #111111;
}

.popup .popup__title {
    /*font: 600 2.6rem/1.4 Montserrat;*/
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.4;
    color: #171717;
    padding-right: 30px;
}

.popup .popup__title .popup__tarif {
    color: var(--red);
    display: block;
    font-weight: bold;
    font-size: 3.4rem;
}

.popup .popup__inform {
/*  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black);
    margin-bottom: 40px;*/
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1.4;
    font-style: italic;
}



/*.popup .popup__title .inform {
    font-size: 1.5rem;
    color: #959595;
    padding-top: 10px;
}
.popup .popup__title .inform .star {
    color: var(--red);
}
*/

.popup .popup__title2 {
  /*font: 600 4rem/1.1 Montserrat;*/
  font-size: 2.4rem;
  color: var(--black2);
  font-weight: 400;
  margin-top: 30px;
}

.popup .form .inp {
    /*font: 1.5rem Montserrat;*/
    font-size: 1.8rem;
    font-family: 'Montserrat';
    background: var(--white);
    color: var(--black2);
    display: block;
    padding: 20px 0;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #BDBDBD;
    outline: none;
    transition: 0.5s;
}
.popup .form textarea.inp {
    height: 134px;
    resize: none !important;
}

/* .popup .form textarea.inp.inp-address {
    height: 74px;
} */

.popup .form .inp.error {
    border-color: #E42D2D;
}
.popup .form .inp.error::-webkit-input-placeholder {color:#E42D2D;}
.popup .form .inp.error::-moz-placeholder          {color:#E42D2D;}
.popup .form .inp.error:-moz-placeholder           {color:#E42D2D;}
.popup .form .inp.error:-ms-input-placeholder      {color:#E42D2D;}


.popup .form .inp:focus,
.popup .form .inp:active {
    /* border-color: var(--white); */
    background:var(--white);
    color: #505050;
}

.popup .form .label {
    /*font: 1.5rem Montserrat;*/
    font-size: 1.5rem;
    color: #959595;
    display: block;
    margin-bottom: 5px;
    /* display: none; */
}
.popup .form .label .star {
    color: var(--red);
}
.popup .form label.error {
    display: none !important;
}
.popup .form ul {}
.popup .form ul li {
    margin-bottom: 20px;
}
.popup .form ul li:last-of-type {
    margin-bottom: 0;
}
.popup .form .var__list {
    display: flex;
    padding: 10px 0 30px;
}
.popup .form .var__item {
    width: 50%;
}
.popup .form .var__label {
    cursor:pointer;
    display: flex;
}
.popup .form .var__price {}
.popup .form .var__price-uah {
    /* color: #111111; */
    font: bold 2rem Montserrat;
    margin-bottom: 5px;
    display: block;
    color: #BDBDBD;
    transition: 0.5s;
}
.popup .form .var__price-usd {
    /* color: #111111; */
    font: 2rem Montserrat;
    display: block;
    color: #BDBDBD;
    transition: 0.5s;
}
.popup .form .var__info {
    display: flex;
    position: relative;
    width: 100%;
}
.popup .form .var__info:before {
    content: '';
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-block;
    border-radius: 100%;
    border: 1px solid #BDBDBD;
    background: var(--white);
    margin-right: 34px;
    transition: 0.5s;
}
.popup .form .var__info:after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: 9px;
    left: 9px;
    opacity: 0;
}
.popup .form .var__label input {
    position: absolute;
    left: -9999px;
}
.popup .form .var__label input:checked {}
.popup .form .var__label input:checked ~ .var__info:after {
    opacity: 1;
}
.popup .form .var__label input:checked ~ .var__info .var__price-uah {
    color: #111111;
}
.popup .form .var__label input:checked ~ .var__info .var__price-usd {
    color: #111111;
}
.popup .form .var__label input:checked ~ .var__info .var__info:before {
    border-color: #363636;
}


.popup .form .form__agree {
    margin-bottom: 20px;
    padding: 30px 0 20px;
}
.popup .form .form__agree label {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
}
.popup .form .form__agree input {
    position: absolute;
    left: -9999px;
}
.popup .form .form__agree span {
    display: inline-block;
    position: relative;
    padding-left: 60px;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
}
.popup .form .form__agree span:before {
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid rgba(29, 29, 27, 0.4);
    position: absolute;
    top: 0;
    left: 0;

}
.popup .form .form__agree span:after {
    content: '';
    background:url(../i/ico__agree.svg) no-repeat center;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 7px;
    width: 19px;
    height: 12px;
    opacity: 0;
    transition: 0.5s;
}


.popup .form .form__agree input:checked {}
.popup .form .form__agree input:checked ~ span {}
.popup .form .form__agree input:checked ~ span:before {}
.popup .form .form__agree input:checked ~ span:after {
    opacity: 1;
}


.popup .form .form__agree.error span {
    color: #ed2a1f;
}
.popup .form .form__agree.error span:before {
    border: 1px solid rgba(237, 42, 31, 0.4);
}




.popup .form .btn{
    /*max-width: 170px;*/
    padding: 18px 40px;
    /*padding: 14px 20px;*/
    border: none;
    font-size: 1.8rem;
}

.popup .form .btn.disabled {
    background: #eee;
    color: #000;
    pointer-events: none;
}

.popup .popup__close {
    position: absolute;
    top: 45px;
    right: 40px;
    cursor: pointer;
    transition: 0.5s;
}   
.popup .popup__close svg {}
.popup .popup__close svg path {
    fill: var(--black);
    transition: 0.5s;
}
.popup .popup__close:hover svg path {
    fill: var(--red);
}
.popup .popup__close:hover {
    transform: rotate(90deg);
}


.mfp-close-btn-in .mfp-close {
    display: none;
}







@media screen and (max-width: 1199px) {
    
}
@media screen and (max-width: 1023px) {
    
}
@media screen and (max-width: 767px) {

    .popup {
        padding: 20px 20px 20px;
      max-width: 380px;
    }

    .popup .popup__close {
        top: 30px;
        right: 20px;
    }
    .popup .popup__title {
      font-size: 2.2rem;
        /*margin-bottom: 20px;*/
    }
    .popup .popup__title .popup__tarif {
      font-size: 2.2rem;
    }

    .popup .form ul li {
        margin-bottom: 10px;
    }

    .popup .form .var__list {
        flex-direction: column;
        padding-bottom: 20px;
    }
    .popup .form .var__item {
        width: 100%;
        margin-bottom: 20px;
    }
    .popup .form .var__item:last-of-type {
        margin-bottom: 0;
    }
    .popup .form .form__agree span br {
      display: none;
    }
    .popup .form .form__agree span {
      font-size: 1.2rem;
    }
    
}
@media screen and (max-width: 479px) {
    
}















