html {
	scroll-behavior: initial;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	box-sizing: border-box;
	overflow-x: hidden;
	width: 100vw;
}
li {
	list-style: none;
}
a:hover, a:visited, a {
	text-decoration: none;
}
h4 {
	font-size: 14px;
	color: #008ed6;
	text-transform: uppercase;
	margin-top: 65px;
	font-weight: 700;
}
h2 {
	font-size: 36px;
	color: #1a1a1a;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 0;
}
.menu-nav {
	display: none;
	background-color: #000000bf;
	top: 0;
	width: 100vw;
	padding-top: 2vw;
	position: absolute;
	z-index: 10;
	left: 0;
}
.menu-nav  a {
	display: block;
	font-style: normal;
	font-weight: 500;
	font-size: 4vw;
	border-bottom: rgba(255, 255, 255, 0.5) 2px solid;
	padding: 1vw 1vw;
}
header {
	background: transparent;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90vw;
	height: 5vh;
	z-index: 999;
	padding: 1vh 5vw;
	transition: all .7s ease 0s;
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	-o-transition: all .7s ease 0s;
	-ms-transition: all .7s ease 0s;
}
.inner-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.inner-header:after {
	content: '';
	display: table;
	clear: both;
}
.logo-img {
	height: 5vh;
}
.header_sticky {
	position: fixed;
	background: #000000bd;
}
.header_sticky .header__logo {
	width: 60px;
	height: 42px;
}
.header:after {
	content: '';
	display: table;
	clear: both;
}
.btn_nav {
	display: none;
	background-color: transparent;
	border: none;
	position: absolute;
	top: 13px;
	right: 15px;
	color: #fff;
	font-size: 27px;
	outline: none;
}
.navigation {
	display: block;
	width: 100%;
	text-align: right;
	font-weight: 600;
	position: relative;
	z-index: 40;
}
.nav__list {
	float: right;
}
.nav__item {
	margin-left: 50px;
	float: left;
}
.nav__item:hover .nav__link {
	color: #008ed6;
}
.nav__item:hover .nav__item_underline {
	width: 100%;
}
.nav__link {
	position: relative;
	-webkit-transition: color .3s;
	-webkit-transition: color 3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.nav__link:link, .nav__link:visited, .nav__link:active {
	color: #fff;
	text-decoration: none;
}
.current .nav__link {
	color: #008ed6;
}
.nav__item_underline {
	width: 0%;
	display: inline-block;
	border-bottom: 2px solid #008ed6;
	position: absolute;
	bottom: -2px; left: 0;
	-webkit-transition: width .3s ease-in-out;
	-o-transition: width .3s ease-in-out;
	transition: width .3s ease-in-out;
}
.current .nav__item_underline {
	width: 100%;
}
.banner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0 5vw;
	background: url(../img/banner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	-webkit-background-size: cover;
	background-size: cover;
	height: 100vh;
	overflow: hidden;
}
.banner canvas {
	position: absolute;
	left: 0;
	max-width: 100%;
}
.banner-flex:last-child{
	justify-content: center;
	display: flex;
}
.banner h3 {
	font-size: 14px;
	color: #008ed6;
	text-transform: uppercase;
	font-weight: 700;
   	background: #000;
    	width: fit-content;
    	padding: 2px;
}
.banner h1 {
	font-size: 48px;
	color: #fff;
}
.banner p {
	font-size: 18px;
	color: #c7c7c7;
	margin-top: 25px;
	line-height: 2;
	font-weight: 600;
	text-shadow: 2px 2px #000;
}
.banner ul li {
	font-size: 18px;
	color: #fff;
	line-height: 2;
	font-weight: 600;
}
.banner ul li:before {
	content: "\2022";
	color: #008ed6;
	font-weight: 800;
	padding-right: 10px;
}
.download-btn {
	width: 160px;
	height: 50px;
	background: #008ed6;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 4px;
	border:0;
	margin-top: 60px;
	margin-right: 15px;
	font-weight: 600;
	padding: 20px;
}
.banner a {
	position: relative;
	top: 30px;
	padding: 20px;
	transition-duration: .3s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.7,1,.7,1);
}
.banner a:hover {
	background: #fff;
	color: #000;
	transition-duration: .3s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.7,1,.7,1);
}
.banner-img{
	width: 55%;
}
.banner-img img {
	height: 50vh;
}
.nav-pages {
	padding: 0;
	height: 30vh;
	display: flex;
}
.a-nav-page {
	width: 25vw;
	height: 100%;
	background-color: #f2f2f2;
	z-index: 1;
	border: 1px solid #f2f2f2;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	text-align: center;
}
.nav-page {
	padding: 15% 0;
}
.a-nav-page:nth-child(1) {
	border-left: 1px solid #f2f2f2;
}
.a-nav-page:nth-child(4) {
	border-right: 1px solid #f2f2f2;
}
.a-nav-page:hover {
	border: 1px solid #008ed6;
}
.a-nav-page-active {
	background-color: #008ed6;
	border: 1px solid #008ed6 !important;
}
.a-nav-page h2 {
	color: #000;
	margin-bottom: 5vh;
}
.a-nav-page p {
	color: #000;
	width: 80%;
	padding-left: 10%;
}
.a-nav-page-active h2 {
	color: #fff;
}
.a-nav-page-active p {
	color: #fff;
}
.features {
	padding: 5vh 5vw 0 5vw;
	min-height: 40vh;
}
.feature-flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.feature-div {
	width: 33.3%;
}
.features-div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.feature {
	width: 30%;
}
.features-btn{
	width: 160px;
	height: 50px;
	border-radius: 4px;
	border: 1px solid #444348;
	text-transform: uppercase;
	color: #fff;
	background: #0000008f;
	font-size: 14px;
	margin-top: 60px;
	margin-bottom: 105px;
	font-weight: 600;
}
.features img{
	margin: auto;
	display: block;
	height: 5vw;
	transition: all .7s ease 0s;
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	-o-transition: all .7s ease 0s;
	-ms-transition: all .7s ease 0s;
}
.features ul {
	margin-left: 0;
	width: 80%;
	padding-left: 10%;
}
.features ul li:before {
	content: "\2022";
	color: #36c;
	font-weight: 800;
	padding-right: 10px;
}
.features h3{
	font-size: 24px;
	color: #1a1a1a;
	text-align: center;
}
.features p{
	font-size: 18px;
	color: #999999;
	margin-bottom: 70px;
}
.details {
    border-top: solid 1px silver;
	padding: 0 5vw;
	min-height: 55vh;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 1fr;
	grid-column-gap: 0;
	grid-row-gap: 0;
}
.details-text-relative {
	grid-area: 1 / 2 / 2 / 3;
}
.details-img {
	grid-area: 1 / 1 / 2 / 2;
	position: absolute;
	bottom: 0;
	height: fit-content;
}
.details-img img {
	display: block;
	width: 20vw;
}
.details-phone{
	margin-top: 50px;
}
.details ul {
	margin-left: 0;
	padding-left: 0;
}
.details ul li:before {
	content: "\2022";
	color: #36c;
	font-weight: 800;
	padding-right: 10px;
}
.blue-text {
	color: #36c;
}
.feature-detail {
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5vw;
}
.feature-detail h4 {
	margin-top: 120px;
}
.feature-detail h2 {
	margin-bottom: 10px;
}
.feature-detail p {
	font-size: 18px;
	color: #999999;
	margin-top: 20px;
}
.horizontal-phone img {
	margin: 0;
	display: block;
}
.price-plan {
	padding: 0 5vw;
}
.price-plan img {
	margin:auto;
	margin-bottom: 70px;
}
.pricing-tables {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.price-cart {
	width: 50%;
}
.single-table {
	border: 1px solid #e0e0e0;
	margin-bottom: 60px;
}
.single-table h3 {
	font-size: 24px;
	color: #1a1a1a;
	border-bottom: 1px solid #e0e0e0;
	padding: 1vw;
	line-height: 1;
	margin-top: 0;
	text-transform: uppercase;
	margin-bottom: 0;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
	-o-transition:all .5s ease 0s;
	-ms-transition:all .5s ease 0s;
}
.table-price{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #e0e0e0;
	padding: 1vw;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
	-o-transition:all .5s ease 0s;
	-ms-transition:all .5s ease 0s;
}
.table-price h5{
	font-size: 60px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1;
	margin-bottom: 0;
	margin-top: 0;
	padding-top: 17px;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
	-o-transition:all .5s ease 0s;
	-ms-transition:all .5s ease 0s;
}
.table-price h5 span{
	position: relative;
	font-size: 25px;
	top: -30px;
	font-weight: 600;
}
.table-price p{
	font-size: 18px;
	color: #999999;
	line-height: 1;
	margin-bottom: 22px;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
	-o-transition:all .5s ease 0s;
	-ms-transition:all .5s ease 0s;
}
.table-description {
	padding: 1vw;
}
.table-description p{
	font-size: 18px;
	color: #999999;
	margin-bottom: 0;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
	-o-transition:all .5s ease 0s;
	-ms-transition:all .5s ease 0s;
}
.table-description ul {
	margin-left: 0;
	padding-left: 0;
	height: 10vh;
}
.table-description ul li .check_mark {
	height: 10px;
	width: 10px;
	fill: #36c;
}
.table-description a{
	color: #008ed6;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
	-o-transition:all .5s ease 0s;
	-ms-transition:all .5s ease 0s;
	width: 160px;
	height: 50px;
	border:1px solid #e0e0e0;
	border-radius: 4px;
	background: transparent;
	margin-bottom: 30px;
	font-weight: 700;
	padding: 10px;
}
.free h5 span {
	left: 39%;
}
.business h3 {
	color: #008ed6;
}
.business-price {
	background: #008ed6;
}
.business-price p {
	color: #fff;
}
.business a {
	background: #008ed6;
	color: #fff;
	border:0;
}
.business h5 {
	color: #fff;
}
.single-table:hover.single-table h3 {
	color: #008ed6;
}
.single-table:hover .table-description a {
	background: #008ed6;
	color: #fff;
	border:0;
}
.single-table:hover .table-price h5 {
	color: #fff;
}
.single-table:hover .table-price p {
	color: #fff;
}
.single-table:hover .table-price {
	background: #008ed6;
}
.form {
	display: flex;
	justify-content: center;
}
.form .survey__label {
	width: 30% !important;
}
.form .survey__line .input {
	width: 100% !important;
}
.form .footer__promo {
	display: none !important;
}
.contact{
	background: #ededed;
	position: relative;
	padding: 2vw 5vw;
}
.contact-heading {
	padding: 1vw 0;
}
.contact-heading h4 {
	margin-top: 0;
}
.contact-heading img {
	margin: auto auto 50px auto;
}
.contact p, .contact a {
	font-size: 18px;
	color: #999999;
	line-height: 1;
	margin: .7vh 0;;
}
.contact a {
	color: #008ed6;
}
.contact a:hover {
	text-shadow: 0 0 black;
}
.contact-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.c-flex a {
	display: block;
}
.map {
	width: 100%;
	height: 50vh;
}
.map iframe {
	width: 100%;
	height: 50vh;
	pointer-events: none;
}
.footer {
	background: #15141a;
}
.footer p{
	font-size: 14px;
	color: #444348;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 30px;
}

/* модал */
.close-modal {
	position: absolute;
    top: 1.2rem;
	right: 2rem;
    font-size: 3rem;
	color: #333;
	cursor: pointer;
	border: none;
	background: none;
	animation: rot 15s linear infinite;
}
@keyframes rot {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.hidden {
	display: none;
}
.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	background-color: white;
	padding: 0rem;
	border-radius: 5px;
	box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
	z-index: 9999999;
    max-height: 100%;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(3px);
	z-index: 5;
}
/* !модал */
/* бургер */
.menu-icon-wrapper {
	justify-content: center;
	align-items: center;
	width: 35px;
	z-index: 11;
	display: none;
}
.menu-icon {
	position: relative;
	width: 35px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
}
.menu-icon::before {
	position: absolute;
	left: 0;
	top: -10px;
	content: '';
	width: 35px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.menu-icon::after {
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
	width: 35px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.menu-icon.menu-icon-active {
	background-color: transparent;
}
.menu-icon.menu-icon-active::before {
	transform: rotate(45deg);
	top: 0;
	transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
	background-color: #008ed6;
}
.menu-icon.menu-icon-active::after {
	transform: rotate(-45deg);
	top: 0;
	background-color: #008ed6;
	transition: top 0.2s linear, transform 0.2s ease-in 0.2s;

}
.background-icon {
	background: #fff;
}
.menu-show {
	height: 141px;
}
/* !бургер */
.show {
	display: block !important;
	animation: 1s move;
}
@media(max-width: 1400px) {
    .contact-logo {
		display: none;
	}
	.nav-pages {
		justify-content: center;
		flex-wrap: wrap;
		height: auto;
	}
	.a-nav-page {
		width: calc(50vw - 9px);
		border: 1px solid #fff;
	}
}
@media(max-width: 1200px) {
    .contact-logo{
		display: none;
	}
	.details-img img {
		width: 25vw;
	}
}
@media(max-width: 1000px) {
    .contact-logo{
		display: none;
	}
	h4 {
		margin-top: 0;
	}
	.banner h3 {
		margin-top: 10px;
	}
	.feature-detail {
		position: relative;
	}
	.feature-detail-text {
		width: 60%;
	}
	.horizontal-phone img {
		width: 30vw;
		position: absolute;
		bottom: 0;
		right: 5vw;
	}
}
@media(max-width: 900px) {
    .contact-logo{
		display: none;
	}
    h2 {
		font-size: 4vw;
	}
	.nav__item {
		margin-left: 2vw;
	}
	.banner h1 {
		font-size: 4vw;
		margin: 10px 0;
	}
	.banner p {
		margin-top: 20px;
		line-height: 1.3;
	}
	.banner-img img {
		height: 40vh;
		margin-bottom: 2vw;
	}
	.nav-page {
		padding: 10% 0;
		height: 20vw;
	}
	.a-nav-page h2 {
		margin: 0;
	}
	.a-nav-page p {
		margin: 0;
	}

}
@media(max-width: 800px) {
    .contact-logo{
		display: none;
	}
	.feature-flex {
		flex-wrap: wrap;
	}
	.feature-div {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
	}
	.features img {
		margin: 0 5vw 0 0;
		height: 10vw;
	}
	.features ul {
		width: 100%;
		padding-left: 0;
	}
	.feature-detail h4 {
		margin-top: 5vh;
	}
	.details {
		display: flex;
		flex-wrap: wrap;
	}
	.details-img {
		width: 100%;
		position: inherit;
	}
	.details-img img {
		width: auto;
		height: 50vw;
	}
	.details-text-relative {
		width: 100%;
	}
	.feature-detail-text {
		width: 100%;
		margin-bottom: 30vw;
	}
	.modal {
		width: 99%;
	}
}
@media(max-width: 700px) {
	.menu-nav {
		padding-top: 3vw;
	}
	.banner {
		flex-wrap: wrap;
		height: auto;
	}
	.banner-flex {
		margin-top: 7vh;
	}
	.banner-img {
		width: 100%;
	}
	.menu-icon-wrapper {
		display: block;
	}
	.navigation, .contact-logo{
		display: none;
	}
	.menu-icon-wrapper {
		position: absolute;
		right: 7vw;
	}
	.inner-header {
		justify-content: flex-start;
	}
	.pricing-heading {
		padding-top: 1vh;
	}
	.pricing-tables {
		flex-wrap: wrap;
	}
	.price-cart {
		width: 100%;
	}
	.single-table {
		margin-bottom: 1vh;
	}
	.table-description {
		height: fit-content;
		padding: 3vh 1vw;
	}
	.table-description ul {
		height: fit-content;
	}
	.contact-flex {
		flex-wrap: wrap;
	}
	.c-flex {
		width: 100%;
		margin-bottom: 2vh;
	}
}
@media(max-width: 600px) {
	.close-modal {
		top: 0;
		right: 0;
		font-size: 3rem;
	}
	.modal {
		position: absolute;
		top: 110%;
	}
}
@media(max-width: 500px) {
	.banner h1 {
		font-size: 10vw;
	}
	.banner h3 {
		font-size: 5vw;
	}
	.a-nav-page {
		width: 100vw;
		border: none;
		border-bottom: 1px solid #fff;
	}
	.a-nav-page h2 {
		font-size: 7vw;
	}
	.a-nav-page p {
		display: none;
	}
	.nav-page {
		padding: 5% 0;
		height: auto;
	}
	.menu-nav a {
		font-size: 8vw;
	}
	.details-img img {
		height: 100vw;
	}
	.feature-detail-text {
		width: 100%;
		margin-bottom: 60vw;
	}
	.horizontal-phone img {
		width: 60vw;
	}
}
@media(max-width: 450px) {

}
@media(max-width: 400px) {

	.banner a {
		padding: 15px;
	}
	.banner-flex {
		margin-top: 10vh;
	}
}
@media(max-width: 350px) {
    
}
.nav__link .cabinet{
    filter: invert(100%) sepia(3%) saturate(0%) hue-rotate(267deg) brightness(106%) contrast(105%);
    position: absolute;
    margin-left: 5px;
}
.nav__item:hover .nav__link .cabinet{

    filter: invert(35%) sepia(23%) saturate(5432%) hue-rotate(182deg) brightness(96%) contrast(101%) !important; 
}
