@font-face {
    font-family: 'Gilroy';
    src: url('/font/Gilroy-Regular.eot');
    src: local('/font/Gilroy Regular'), local('/font/Gilroy-Regular'),
        url('/font/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('/font/Gilroy-Regular.woff2') format('woff2'),
        url('/font/Gilroy-Regular.woff') format('woff'),
        url('/font/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*{
	text-align:center;
	margin:0;
	padding:0;
	outline:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	color: #333;
    font-family: 'Gilroy';
    font-weight: normal;
    font-style: normal;
}

body,html{
	height:100%;
}

html {
  scroll-behavior: smooth;
}



a {
  color: #000;
}


.row-1 {
	background: #F6F6F6;
	width: 100%;
	scroll-margin-top: 80px;
}

.row-2 {
	background: #FFFFFF;
	width: 100%;
	scroll-margin-top: 80px;
}

.row-inner {
	padding: 70px 30px;
	text-align: center;
	margin:0 auto;
	width: 100%;
	max-width: 550px;
}
.row-inner-2 {
	padding: 70px 10px;
	text-align: center;
	margin:0 auto;
	width: 100%;
	max-width: 950px;
}

.divide {
	margin-top: 150px;
}

.logo-block {
height: 0;
scroll-margin-top: 80px;
}

h1 {
	padding: 20px 0;
}

p {
	padding: 10px 0;
}

/*
.logo-text {
  color: #878787;
  font-size: .9em;
}
*/

.gray {
	color: #878787;
}


.programms {
	width: 100%;
	margin: 50px auto;
}

.programm-icon img {
	height: 63px;
}

.programm-text {
	font-size: 0.85em;
	color: #878787;
	margin: 20px 0;
}
.programm-stars {
	display: inline-block;
}
.active-star {
  background-image: url("/images/star.svg");
  width: 12px;
  height: 15px;
  display: inline-block;
  margin: 0 5px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.nonactive-star {
  background-image: url("/images/non-star.svg");
  width: 12px;
  height: 15px;
  display: inline-block;
  margin: 0 5px;
background-size: 100% 100%;
background-repeat: no-repeat;
}

ul.portfolio-menu {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

ul.portfolio-menu li {
	display: inline-block;
	    line-height: 1.5em;
}
ul.portfolio-menu li a {
  text-decoration: none;
  color: #878787;
}

ul.portfolio-menu li::after {
content: "|";
float: right;
color: #878787;
padding: 0 10px;
}
ul.portfolio-menu li:last-child::after {
display: none;
}

ul.portfolio-menu li a.active,
ul.portfolio-menu li a:hover {
  text-decoration: underline;
  color: #070707;
}


.portfolio-item {
	margin: 70px 0;
}

.portfolio-item .portfolio-image img {
	width: 100%;
}

.portfolio-item .portfolio-text {
	padding: 30px 0;
}


#but {
/*background: #070707;*/
border-radius: 25px;
/*font-weight: 700;*/
font-size: 1em;
text-align: center;
/*color: #FFFFFF;*/
padding: 10px 20px;
border: none;
cursor: pointer;
}
#but:hover {
	background: #ccc;
}

.send {
	margin: 30px 0;
}

.send button {
	background: #070707;
	border-radius: 25px;
	font-weight: 700;
	font-size: 1em;
	text-align: center;
	color: #FFFFFF;
	padding: 10px 20px;
	border: 0;
	cursor: pointer;
}

.messangers {
	margin: 100px 0 50px;
}
.messangers-icon {
	margin: 0 15px;
	display: inline-block;
}

.messangers-icon img {
	height: 30px;
}

.small-font {
	font-size: 0.85em;
}




.languages {
	display: block;
	margin: 50px 0;
}
.languages a.pointer {
	cursor:default;
}
.languages a.pointer img {
	opacity: 1;
	filter: none;
}
.languages a {
	width: 32px;
	display: inline-block;
	margin: 0 10px;
}
.languages a img {
	opacity: 0.7;
	filter: grayscale(0.7);
	border: 1px solid #959595;
}
.languages a:hover img {
	opacity: 1;
	filter: none;
}



#works.opa {
    opacity: 1;
    transition: opacity .400s; 
}
#works.fade {
    opacity: 0;
}



/*popup*/

.full-screen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
}

.flex-container-center {
  displaY: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

.full-screen{
  color: white
}

.hidden {
    display: none;
}

.show {
    display: block;
}


/*form*/
form { max-width:420px; margin:50px auto; }

.feedback-input {
  color:white;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #CC6666;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #CC4949; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  width: 100%;
  background:#CC6666;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:1.3em;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#CC4949; }

.closePopup {

background: #404040;
border-radius: 5px;
border: 0;
cursor: pointer;
color: white;
padding: 10px 20px;
transition: all 0.3s;
	
}

/*form*/

/*popup*/



/* header */

.header {  
  position: fixed;
  width: 100%;
  z-index: 3;
  height: 150px;
  top:0;
  background-image: url("/images/logo-block-mobile.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #FFFFFF;
}

.header li a {
  display: block;
  padding: 20px 20px;  
  text-decoration: none;
}

.header li a:hover {
  text-decoration: underline;
}

.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  /*float: left;*/
  margin: 20px auto;
  /*margin: 20px 50px;*/
  background-image: url("/images/logo.svg");
  width: 210px;
  height: 110px;
  text-indent: -9999px;
  background-size: 210px 110px;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  /*
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 34px 14px;
  position: relative;
  user-select: none;
  */
    cursor: pointer;
    padding: 34px 14px;
    position: absolute;
    user-select: none;
    top: 0;
    right: 10px;
}

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 340px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */
@media (min-width: 48em) {
  


.row-1,
.row-2 {
	scroll-margin-top: 0;
}

.header {
  height: 70px;
  background-image: none; /* The image used */
}
  .header li {
    display: inline-block;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    max-height: none;
	text-align: center;
	padding-top: 5px;
  }
  .header .menu-icon {
    display: none;
  }
  .header .logo {
    display: none;
  }
  
.divide {
    margin-top: 70px;
}
  
.logo-block {
  background-image: url("/images/logo-block.jpg"); /* The image used */
  
  height: 387px; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  
  padding: 90px 0;
  display: block;
}

.logo-image {
  background-image: url("/images/logo.svg");
  width: 320px;
  height: 174px;

    margin: 0 auto;
    padding: 10px;
    position: relative;
  
}



.programms {
	width: 16%;
	display: inline-block;
	margin: 50px 0;
}
  
  
}






@media (min-width:425px){
	.container{
		width:95%
}
	.item{
		width:100%
}
}
@media (min-width:768px){
	.container{
		width:95%
}
	.item{
		width:48%
}
}
@media (min-width:992px){
	.container{
		width:770px
}
	.item{
		width:48%
}
}
@media (min-width:1200px){
	.container{
		width:970px
}
	.item{
		width:32.2%
}
}
@media (min-width:1400px){
	.container{
		width:1170px
}
	.item{
		width:32.3%
}
}