@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;0,800;0,900;1,300;1,400;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
	--color-purple: #651441;
	--color-pink: #AA375A;

	--button-color: #651441;
	--button-color-hover: #AA375A;

	--footer-bg-color: #101010;
  --footer-color: #f5f5f5;
}

*, *:before, *:after {
  -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
       -o-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
          transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::selection {
  background: var(--color-purple, #651441);
  color: #fff;
}
*::-moz-selection {
  background: var(--color-purple, #651441);
  color: #fff;
}
*::-webkit-selection{
  background: var(--color-purple, #651441);
  color: #fff;
}
::-webkit-scrollbar{
    width:8px;
    height: 8px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb{
    border: none;
    background-color: var(--color-purple, #651441);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    behavior: url(border-radius.htc);
    width: 20px;
    max-width: 20px;
    margin-left: -10px;
}
::-webkit-scrollbar-thumb:hover{
    background-color: var(--color-purple, #651441);
    cursor: pointer;
}
::-webkit-scrollbar-thumb:active {
  background: var(--color-purple, #651441);
}
::-webkit-scrollbar-track{
    border: none;
  background-color: #111;
}
::-webkit-scrollbar-track:hover{
  background-color: #111;
  cursor: pointer;
}
::-webkit-scrollbar-track:active {
  background: #111;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
html{
  margin: 0;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}
html,
body{
  width: 100%;
}
body{
  margin: 0;
  width: 100%;
  background: #fff;
  color: #4B4B4B;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
img{
  max-width: 100%;
  height: auto;
}
iframe{
  max-width: 100%;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
ol,ul{
  padding-left: 20px;
}

#page{
	background: var(--color-purple, #651441);
	color: #fff;
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding-top: 75px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}
.wrap-line{
  float: left;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 6;
}
.wrap-line-mg{
	padding: 65px 0;
}
.wrap-grid{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.page-bg{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: url('../images/bg.jpg') center no-repeat;
	background-size: cover;
}
.page-bg:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
}

svg,
svg *{
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
.fa,
.fa:before{
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
#colorbox,
#colorbox *{
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
.la-hide{
  display: none !important;
}

.l-archon{
	width: 1px;
	height: 1px;
	position: absolute;
	left: 0;
	top: -95px;
	opacity: 0;
}

.block{
  float: left;
  width: 100%;
  position: relative;
  z-index: 9;
}
.block .title{
	color: #fff;
	font-size: 54px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 45px;
	float: left;
	width: 100%;
	text-align: center;
}
.block .title b{
	color: #69be28;
	font-weight: 800;
}
.block .content{
	float: left;
	width: 100%;
}
.button{
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	border: none;
	padding: 15px 25px;
	text-align: center;
	min-width: 260px;
	display: inline-block;
	text-decoration: none;
	outline: none;
	background: var(--button-color, #651441);
	color: #fff;
	cursor: pointer;
	border-radius: 0;
	letter-spacing: 0.05em;
	border-radius: 30px;
}
.button:hover{
	color: #fff;
	background: var(--button-color-hover, #651441);
}

#page-header{
	padding: 10px 0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	background: #fff;
}

#menu-triger{
  display: none;
}
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  float: left;
}
.hamburger,.hamburger span {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg)
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 1.5px;
  opacity: 1;
  left: 0;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out
}
#menu-close{
  display: none;
  position: fixed;
  z-index: 331;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
#page.open-menu #menu-close{
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0
}
.hamburger span:nth-child(2),.hamburger span:nth-child(3) {
  top: 8px
}
.hamburger span:nth-child(4) {
  top: 16px
}
#page.open-menu .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  left: 50%;
  opacity: 0;
}
#page.open-menu .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
       -o-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
#page.open-menu .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
       -o-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
          transition: all 0.3s ease;
}
#page.open-menu .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  left: 50%;
  opacity: 0;
}
#fade-menu{
  display: none;
  z-index: 991;
  background: rgba(0,0,0,0.6);
  left: 0;
  top: 80px;
  right: 0;
  bottom: 0;
  position: fixed;
}
.open-menu #fade-menu{
  display: block;
}

#logo{
	float: left;
}
#logo img{
	height: 60px;
	width: auto;
	display: block;
}

#menu{
	float: right;
	font-size: 18px;
	line-height: 25px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}
#menu ul{
	float: left;
	display: block;
	margin: 0;
	padding: 10px 0;
	list-style: none;
}
#menu ul li{
	float: left;
	display: block;
	margin: 0;
	padding: 5px 0;
	list-style: none;
}
#menu ul li + li{
	margin-left: 45px;
}
#menu ul li a{
	color: #1b1b1b;
	text-decoration: none;
	outline: none;
}
#menu ul li a:hover{
	color: var(--color-pink, #AA375A);
	text-decoration: underline;
}


#contacts{
	float: right;
}
#contacts .socials{
	float: left;
	padding: 10px 0;
}
#contacts .socials a{
	display: block;
	text-decoration: none;
	outline: none;
	float: left;
	margin-left: 10px;
}
#contacts .socials img{
	display: block;
	height: 40px;
	width: auto;
}
#contacts .phone{
	float: right;
	margin-left: 40px;
	padding: 5px 0;
}
#contacts .phone a{
	display: block;
	background: var(--button-color, #651441);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	padding: 15px 25px;
	border-radius: 25px;
	text-decoration: none;
	outline: none;
}
#contacts .phone a:hover{
	background: var(--button-color-hover, #AA375A);
}

#home{
	color: #fff;
	background: var(--color-purple, #651441);
	display: flex;
	width: 100%;
	min-height: calc(100vh - 75px);
}
#home .la-cont{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: end;
}
#home .wrap-block{
	width: 100%;
	max-width: 650px;
	padding: 45px 50px 45px 30px;
}
#home .la-video{
	width: 70%;
	position: relative;
}
#home .la-video img{
	display: block;
	width: 100%;
	height: auto;
}
#home .la-video .video{
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#home .la-video .video video{
	display: block;
	width: auto;
	height: 100%;
}
#home .title{
	font-size: 50px;
	line-height: 1.2;
	font-weight: 700;
}
#home .title i{
	font-style: normal;
	font-size: 40px;
}
#home .text{
	font-size: 24px;
	line-height: 1.4;
	margin: 20px 0 0;
}
#home .wrap-btns{
	margin-top: 45px;
}
#home .wrap-btns .button{
	background: #101010;
	color: #fff;
	border-radius: 30px;
}
#home .wrap-btns .button:hover{
	background: var(--color-pink, #AA375A);
}

#footer{
	color: var(--footer-color, #f5f5f5);
	background: var(--footer-bg-color, #101010);
	padding: 65px 0 25px;
}

#block-subfooter{
	padding-top: 20px;
	margin-top: 45px;
	border-top: 1px solid #515151;
	font-size: 14px;
	line-height: 1.2;
	color: #eee;
	text-align: center;
}
#block-subfooter a{
	color: #eee;
	text-decoration: underline;
	outline: none;
}
#block-subfooter a:hover{
	color: #fff;
	text-decoration: none;
}
#block-subfooter .developer{
	margin-top: 5px;
}

.owl-theme .owl-nav{
	margin: 0;
}
.owl-theme .owl-dots{
	margin-top: 25px;
}
.owl-theme .owl-dots .owl-dot{

}
.owl-theme .owl-dots .owl-dot span{
	background: #ccc;
	width: 45px;
	height: 5px;
	border-radius: 3px;
	background: #fff;
	opacity: 0.5;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot span:hover{
	opacity: 1;
	background: #f5f5f5;
}

#block-projects .wrap-btns{
	text-align: center;
	margin: 40px 0 0;
	float: left;
	width: 100%;
	
}

.view-projects{
	float: left;
	width: 100%;
}
.view-projects .items{
	width: 100%;
}
.view-projects .items.items-flex{
	display: flex;
	flex-wrap: wrap;
}
.view-projects .item{
	padding: 10px 15px;
}
.view-projects .items.items-flex .item{
	width: 33.3333%;
	padding: 15px;
}
.view-projects .card{
	position: relative;
	border-radius: 6px;
}
.view-projects .card a{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 19;
	display: block;
	text-decoration: none;
   outline: none;
}
.view-projects .card .img{
	position: relative;
	z-index: 1;
}
.view-projects .card .img img{
	display: block;
	width: 100%;
	height: auto;
}
.view-projects .card .img:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 185px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8) 50%, transparent);
	z-index: 4;
}
.view-projects .card:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0px;
	background: rgba(0, 0, 0, 0.6);
	z-index: 3;
	opacity: 0;
}
.view-projects .card:hover:after{
	opacity: 1;
}
.view-projects .card .cont{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 9;
	width: 100%;
	padding: 15px 30px 25px;
	color: #fff;
	z-index: 9;
}
.view-projects .card .name{
	font-size: 25px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.view-projects .card .location{
	font-size: 16px;
	line-height: 1.2;
	margin: 5px 0 0;
	text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.view-projects .card .cat{
	font-size: 16px;
	line-height: 1.2;
	margin: 5px 0 0;
	text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}

.view-price{
	float: left;
	width: 100%;
}
.view-price .items{
	max-width: 900px;
	margin: 0 auto;
	display: flex;
}
.view-price .item{
	width: 50%;
	padding: 0 15px;
	display: flex;
}
.view-price .card{
	width: 100%;
	color: #fff;
	color: #101010;
	background: #eee;
	padding: 0 0 85px;
	position: relative;
}
.view-price .card .name{
	padding: 25px 30px;
	text-align: center;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	background: #f5f5f5;
	color: #101010;
	box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	position: relative;
	overflow: hidden;
}
.view-price .card .name span{
	position: relative;
	z-index: 9;
}
.view-price .card .name:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 2vw;
  height: 300%;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  -webkit-animation: blick 3s linear infinite;
  animation: blick 3s linear infinite;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
@-webkit-keyframes blick {
  0% {
    left: -80%;
  }
  100% {
    left: 160%;
  }
}
@keyframes blick {
  0% {
    left: -80%;
  }
  100% {
    left: 160%;
  }
}
.view-price .card-1 .name{
	background: linear-gradient(42deg, rgba(224,224,224,1) 0%, rgba(209,208,198,1) 13%, rgba(224,224,224,1) 23%, rgba(247,243,243,1) 35%, rgba(209,208,198,1) 50%, rgba(247,243,243,1) 65%, rgba(224,224,224,1) 80%, rgba(209,208,198,1) 88%, rgba(224,224,224,1) 100%);
}
.view-price .card-2 .name{
/*	background: linear-gradient(347deg, rgba(242,239,187,1) 0%, rgba(236,218,102,1) 17%, rgba(242,239,187,1) 34%, rgba(236,218,102,1) 50%, rgba(242,239,187,1) 66%, rgba(236,218,102,1) 83%, rgba(242,239,187,0.9777626811594203) 100%);*/
	background: linear-gradient(347deg, #f3ae19 0%, #f7c425 17%, #f3ae19 34%, #fccd33 50%, #f3ae19 66%, #f8cb29 83%, #f3ae19 100%);
}
.view-price .card .cont{
	padding: 25px 30px 25px;
}
.view-price .card-1{
	background: #f5f5f5;
}
.view-price .card-2{
	background: #fffef4;
}
.view-price .card .price{
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
	color: #5f1854;
	margin: 0 0 15px;
}
.view-price .card .text p{
	text-align: center;
	opacity: 0.6;
}
.view-price .card .text ul{
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.2;
	margin-top: 10px;
}
.view-price .card .text ul li{
	display: block;
	padding: 0 0 0 20px;
	margin: 0;
	list-style: none;
	position: relative;
}
.view-price .card .text ul li + li{
	margin-top: 7px;
}
.view-price .card .text ul li:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 13px;
	height: 17px;
	background: url('../images/check3.png') center no-repeat;
	background-size: contain;
}
.view-price .wrap-btns{
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 35px;
	width: 100%;
}
.view-price .wrap-btns .btn{
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	padding: 15px 15px;
	text-align: center;
	min-width: 200px;
	color: #fff;
	font-weight: 700;
	background: var(--button-color, #651441);
	display: inline-block;
	cursor: pointer;
	border-radius: 25px;
}
.view-price .wrap-btns .btn:hover{
	background: var(--button-color-hover, #651441);
}

.view-how-work{
	float: left;
	width: 100%;
}
.view-how-work .items{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.view-how-work .item{
	width: 33.3333%;
	padding: 0 15px;
	margin-bottom: 40px;
}
.view-how-work .card{
	display: flex;
	width: 100%;
	min-height: 60px;
	align-items: center;
	padding-left: 80px;
	position: relative;
}
#block-how-work .description{
	font-size: 15px;
	line-height: 1.5;
	float: left;
	width: 100%;
}
.view-how-work .item .text{
	font-size: 16px;
	line-height: 1.4;
}
.view-how-work .item .icon{
	width: 60px;
	height: 60px;
	color: #fff;
	background: var(--color-purple, #651441);
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -30px;
}
.view-how-work .item1 .icon{
	background: url('../images/icon1.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 40px;
}
.view-how-work .item2 .icon{
	background: url('../images/icon2.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 40px;
}
.view-how-work .item3 .icon{
	background: url('../images/icon3.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 35px;
}
.view-how-work .item4 .icon{
	background: url('../images/icon4.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 40px;
}
.view-how-work .item5 .icon{
	background: url('../images/icon5.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 40px;
}
.view-how-work .item6 .icon{
	background: url('../images/icon6.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 40px;
}
.view-how-work .item7 .icon{
	background: url('../images/icon7.png') center no-repeat;
	background-color: var(--color-purple, #651441);
	background-size: 40px;
}

.view-services{

}
.view-services .items{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.view-services .item{
	width: 33.3333%;
	padding: 0 20px;
	margin: 0 0 40px;
}
.view-services .card{
	padding-left: 30px;
}
.view-services .item .name{
	line-height: 1.2;
	font-size: 20px;
	font-weight: 700;
	position: relative;
}
.view-services .item .name:before,
.view-services .item .name:after{
	content: "";
	opacity: 0.8;
	position: absolute;
	left: -29px;
	top: 50%;
	width: 19px;
	height: 1px;
	background: #fff;
}
.view-services .item .name:after{
	top: 50%;
	margin-top: -9px;
	left: -20px;
	height: 19px;
	width: 1px;
}
.view-services .item .text{
	font-size: 15px;
	line-height: 1.4;
	margin: 10px 0 0;
	opacity: 0.9;
}

#block-advantages .text{
	font-size: 21px;
	line-height: 1.4;
	margin: 0 0 45px;
	text-align: center;
}

.view-advantages{
	width: 100%;
	float: left;
}
.view-advantages .items ul{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	list-style: none;
	font-size: 18px;
	line-height: 1.2;
	align-items: center;
}
.view-advantages .items ul li{
	width: 33.3333%;
	padding: 0 40px 0 45px;
	margin: 0 0 40px;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 40px;
}
.view-advantages .items ul li:before{
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	margin-top: -20px;
	width: 30px;
	height: 40px;
	background: url('../images/check3.png') center no-repeat;
	background-size: contain;
}

#block-footer{
	text-align: center;
	font-size: 21px;
	line-height: 1.3;
	font-weight: 300;
}
#block-footer .item{
	margin: 0 0 25px;
}
#block-footer .item-logo{
	margin: 0 0 25px;
}
#block-footer .item-logo img{
	width: 100%;
	max-width: 400px;
	height: auto;
	display: inline-block;
}
#block-footer .item a{
	color: var(--footer-color, #f5f5f5);
	text-decoration: none;
	outline: none;
}
#block-footer .item a:hover{
	text-decoration: underline;
}
#block-footer .item-socials{
	margin-top: 45px;
}
#block-footer .item-socials a{
	display: inline-block;
	text-decoration: none;
	outline: none;
	margin: 0 10px;
	position: relative;
}
#block-footer .item-socials a:hover{
	text-decoration: none;
}
#block-footer .item-socials a:before{
	content: "";
	left: 5%;
	top: 5%;
	width: 90%;
	height: 90%;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
	display: block;
	position: absolute;
}
#block-footer .item-socials a img{
	display: block;
	height: 50px;
	width: auto;
	position: relative;
	z-index: 9;
}

#btn-callback {
  display: block;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 199;
  background: #a12559;
  border-radius: 50%;
  font-size: 30px;
  line-height: 80px;
  width: 80px;
  height: 80px;
  text-align: center;
  color: #fff;
  -webkit-animation: pulse 2s infinite;
  -moz-animation: pulse 2s infinite;
  -ms-animation: pulse 2s infinite;
  -o-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
#btn-callback i{
	position: absolute;
	font-size: 10px;
	line-height: 20px;
	font-style: normal;
	left: 50%;
	display: block;
	width: 90px;
	margin-left: -45px;
	text-align: center;
	top: -30px;
	color: #fff;
	border-radius: 3px;
	background: #a12559;
	font-weight: 600;
}
#btn-callback span{
	display: block;
}
#btn-callback span img{
	display: block;
	width: 50%;
	height: auto;
	left: 25%;
	top: 25%;
	position: absolute;
}

@media (max-width: 760px) {
    #btn-telegram span {
        font-size: 25px;
        line-height: 60px;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 15px;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,.8)
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(54,169,225,0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(54,169,225,0)
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,.8)
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(54,169,225,0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(54,169,225,0)
    }
}

@-ms-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,.8)
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(54,169,225,0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(54,169,225,0)
    }
}

@-o-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,0.8)
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(161,37,89,0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,0)
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,.8)
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(161,37,89,0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(161,37,89,0)
    }
}


#popup-form{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.6);
	display: none;
	color: #101010;
}
#popup-form.send{
	display: flex;
}
#popup-form .popup-cont{
	background: #fff;
	width: 90%;
	max-width: 400px;
	padding: 30px 40px;
	position: relative;
	text-align: center;
	border-radius: 12px;
}
#popup-form .popup-cont-img{
	width: 70px;
	margin: 0 auto 20px;
}
#popup-form .popup-cont-img img{
	display: block;
	width: 100%;
	height: auto;
}
#popup-form .popup-close{
	position: absolute;
	right: 10px;
	top: 10px;
	width: 16px;
	height: 16px;
	opacity: 0.6;
}
#popup-form .popup-close:before,
#popup-form .popup-close:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	margin: -1px 0 0;
	left: 0;
	z-index: 9;
	background: #000;
}
#popup-form .popup-close:before{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#popup-form .popup-close:after{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#popup-form .popup-cont-title{
	font-size: 21px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--color-purple, #651441);
}
#popup-form .popup-cont-text{
	font-size: 16px;
	line-height: 1.4;
	margin: 10px 0 0;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
#preloader .wrap {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
  z-index: 91;
  padding: 0;
}
#preloader .wrap span {
  display: block;
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  z-index: 9;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 10px #000;
}
.lds-default {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.5);
  }
}


#popup-callback{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	align-items: center;
	justify-content: center;
	display: none;
	color: #101010;
}
#popup-callback.open{
	display: flex;
}
#popup-callback .popup-form{
	position: absolute;
	left: 0;
}
#popup-callback .popup-fade{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 19;
	background: rgba(0, 0, 0, 0.6);
}
#popup-callback .popup-form {
  background: #f5f5f5;
  width: 90%;
  max-width: 400px;
  padding: 30px 40px;
  position: relative;
  text-align: center;
  border-radius: 12px;
  position: relative;
  z-index: 99;
}
#popup-callback .popup-form .form-title{
	font-size: 21px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--color-purple, #651441);
	margin: 0 0 20px;
}
#popup-callback .form .form-message{
	text-align: center;
	color: #f00;
	font-size: 14px;
	line-height: 1.2;
	margin: 0 0;
	display: none;
}
#popup-callback .form .form-item{
	width: 100%;
	display: block;
	margin: 0 0 15px;
}
#popup-callback .form .form-item input{
	display: block;
	width: 100%;
	font-size: 16px;
	line-height: 25px;
	padding: 10px 15px;
	border-radius: 6px;
	outline: none;
	text-decoration: none;
	border: 1px solid #ccc;
	background: #fff;
}
#popup-callback .form .form-buttons{
	margin-top: 25px;
}
#popup-callback .popup-close{
	position: absolute;
	right: 5px;
	top: 5px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}
#popup-callback .popup-close:before,
#popup-callback .popup-close:after{
	content: "";
	position: absolute;
	width: 14px;
	top: 50%;
	left: 50%;
	margin: -1px 0 0 -7px;
	height: 2px;
	background: #ccc;
	transform: rotate(45deg);
}
#popup-callback .popup-close:after{
	transform: rotate(-45deg);
}
#popup-callback .button{
	padding: 10px 15px;
	font-size: 18px;
	border-radius: 25px;
}

#block-video .video{
	text-align: center;
}
#block-video .video iframe{
	display: block;
	width: 800px !important;
	height: 520px !important;
	margin: 0 auto;
	max-width: 100%;
}

.view-partners{
	width: 100%;
	text-align: center;
}
.view-partners .items{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}
.view-partners .item{
	padding: 10px;
	display: flex;
}
.view-partners .card{
	background: #fff;
	padding: 15px 20px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.view-partners .card img{
	display: block;
	width: auto;
	height: auto;
	max-width: 200px;
	max-height: 100px;
}
#cboxOverlay{
	background: #000;
}
@media (min-width: 980px){
	.view-projects .card .img{
		overflow: hidden;
		z-index: 2;
	}
	.view-projects .card .img img{
		position: relative;
		z-index: 1;
	}
	.view-projects .card:hover .img img{
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		transform: scale(1.2);
		-webkit-transition: all 10s linear;
     -moz-transition: all 10s linear;
       -o-transition: all 10s linear;
      -ms-transition: all 10s linear;
          transition: all 10s linear;
	}
}

.view-projects-all{

}
.view-projects-all .item + .item{
	margin-top: 65px;
}
.view-projects-all .item .name{
	font-size: 25px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
}
.view-projects-all .item .text{
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.4;
}
.view-projects-all .item .gallery{
	margin-top: 25px;
}
.view-projects-all .item .gallery a{
	display: block;
	width: 100%;
	outline: none;
	text-decoration: none;
}
.view-projects-all .item .gallery .owl-item{
	padding: 0 10px;
}
.view-projects-all .item .gallery img{
	display: block;
	width: 100%;
	height: a;
}