/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/Roboto-Cyrillic.woff2') format('woff2');
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/Roboto-Latin.woff2') format('woff2');
}
/* cyrillic */
@font-face {
  font-family: 'Roboto-Black';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/Roboto-Black-Cyrillic.woff2') format('woff2');
}

/* latin */
@font-face {
  font-family: 'Roboto-Black';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/Roboto-Black-Latin.woff2') format('woff2');
}
/* cyrillic */
@font-face {
  font-family: 'Roboto-Bold';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/Roboto-Bold-Cyrillic.woff2') format('woff2');
}

/* latin */
@font-face {
  font-family: 'Roboto-Bold';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/Roboto-Bold-Latin.woff2') format('woff2');
}

*{
	margin:0;
	padding:0;
	outline:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	font-family: Roboto, sans-serif;
}
body,html{
	height:100%;
	text-align:center;
	color: #333;
}
.bg {
	background: #eee;
}
.all {
	overflow: hidden;
}
p {
padding: 10px 40px;
line-height: 1.4em;
/*
margin: 20px 0;
background: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px 0 rgba(0,0,0,.16);
*/
/*border: 1px solid #9b9b9b;*/
}


a{
	color:#212121;
	text-decoration:none
}
a:hover{
	text-decoration:underline
}

iframe{
	
	width:100%;
	height:100%;
	overflow:hidden;
	display: block;
	
border: 0;
border-radius: 15px;
padding: 3px;
background: #eee;
	
}

.bold {
	font-weight: bold;
}

.mp-desc {
	padding: 10px 0 20px;
}
.more {
	padding: 10px 0 0;
}


.map {
	width:90%;
	height:420px;
	
margin: 10px auto 30px;
}


.container{
	padding-right:15px;
	padding-left:15px;
	margin-right:auto;
	margin-left:auto;
}

.wrapper{
	/*
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16);
	*/
}

.content {
background: #fff;
box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
margin: 0 15px 30px;
border-radius: 22px;
padding-bottom: 15px;
}

  .menu {
    padding: 10px 0 20px;
  }
  
/*
	  .logo img {
		width: 165px;
		position: relative;
		margin: 10px auto;
	  }
	  */
	  .logo img {
		width: 310px;
		position: relative;
		margin: 15px 0 5px -12px;
	  }
	  .menu_icon img {
		width: 30px;
		position: relative;
		margin: 10px auto;
		float: right;
		right: 65px;
		margin-left: 10px;
		top: 20px;
	  }
	  .menu_icon.phone img {
		padding:4px;
	  }
	  .menu_icon.viber img {
		padding:2px;
	  }

  .menu li {
    display: inline-block;
    font-size: 1em;
    padding: 10px 30px;
    margin: 20px 20px 0 0;
    color: #fff;
    background: #272727;
    border-radius: 25px;
  }

  .menu li:hover {
    background: #0f0f0f;
  }

  .menu li a {
    color: #fff;
  }

  /* Mobile Menu Styles */
  .hamburger {
    display: none;
  }

.mobile-menu-container {
  position: fixed;
  top: 0;
  right: -100%; /* Initially set to slide off the screen */
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  z-index: 9999;
  transition: right 0.3s ease-in-out; /* Transition the 'right' property for animation */
}

.mobile-menu-container.open {
  right: 0; /* Slide the menu in by setting 'right' to 0 */
  opacity: 1;
  visibility: visible;
}


  .mobile-menu ul {
    margin: 70px 45px 0;
    padding: 0;
    list-style: none;
    font-size: 170%;
    text-align: left;
  }

  .mobile-menu li {
    margin-bottom: 15px;
  }

  .mobile-menu li a {
    color: #fff;
  }

  .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
  }

  @media (max-width: 600px) {
	  
	  .container {
		  
		  margin: 95px auto 0;
	  }
	  
	  .logo img {
		width: 195px;
		top: 15px;
		left: 13px;
		position: absolute;
		margin: 0;
	  }
	  
	  .menu {
		padding: 0;
		width: 100%;
		height: 60px;
		background: #fff;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
		margin: 0 0 30px;
		position: fixed;
		z-index: 9;
	  }

    .menu li {
      display: none;
    }

	  .menu_icon img {
		top: 5px;
	  }

    .hamburger {
      display: block;
      position: fixed;
      top: 20px;
      right: 15px;
      z-index: 999;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 30px;
      height: 3px;
      background-color: #333;
      margin-bottom: 5px;
      position: relative;
      transition: transform 0.3s ease-in-out;
    }

    .hamburger.open span {
      background-color: #fff;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-container {
      padding-top: 40px;
      z-index: 997;
      right: -100%;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 300px;
      background: #272727;
      z-index: 998;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
    }

    .mobile-menu-container.open .mobile-menu {
      transform: translateX(0%);
    }

    .close-button {
      top: 20px;
      right: 20px;
    }
  }






h1{
padding: 25px 40px 10px;
vertical-align: middle;
font-size: 160%;
}
h2{
	font-size:140%;
	margin:35px 40px 5px
}
h3{
	font-size:130%;
	margin:85px 40px 5px
}
h4 {
	font-size:120%;
	margin:85px 40px 5px
}
.contact-label {
	font-size: 105%;
	margin: 5px 40px;
	font-weight: bold;
}
.text{
	margin:5px 0 15px
}
.text ul{
	padding: 0 40px 20px;
}
.text ul li {
display: inline-block;
/*background: #fff;*/
padding: 5px 10px;
margin: 5px;
border-radius: 8px;
font-size: .9em;
/*border: 1px solid #9b9b9b;*/
/*box-shadow: 0 2px 5px 0 rgba(0,0,0,.16);*/
border: 1px solid #eee;
}


.info ul li {
	background: #f2f2f2;
}

.text-list {
/*background: #eee;*/
padding: 20px;
border-radius: 5px;
/*border: 1px solid #9b9b9b;*/
/*box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);*/
}

.item{
	display: inline-block;
	vertical-align: top;
	padding: 0 0 10px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
	/*margin: 5px;*/
	margin: 15px;
	background: #fff;
	font-size: 90%;
	border-radius: 22px;
	/*border: 1px solid #eee;*/
	position: relative;
}
.item:hover{
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.46);
	/*border: 1px solid #ddd;*/
}
.item a:hover{
	text-decoration:none;
}
.item img {
	border-top-left-radius: 22px;
	border-top-right-radius: 22px;
}

.s_name {
	font-size: 1.0em;
	padding: 5px 10px;
	line-height: 1.1em;
}

.s_price {
	font-size: 1.1em;
	padding: 2px;
}
.s_year {
	font-size: 0.9em;
	padding: 2px;
}

.bgw {
	/*
	background: #ffffff;
	padding:3px;
	*/
padding: 5px 3px 3px;
font-weight: bold;
}

/*
.developer {
	width: 200px!important;
}
*/
.item.developer {
	border: 0;
	width:29%;
	margin: 15px;
	padding: 0;
	height: 100px;
}

.developer img {
    /*width: 100%;*/
    /*height: 100%;*/
    margin: 15px;
    border-radius: 0;
    padding: 5px;
    /*max-width: 150px;*/
    /*vertical-align: middle;*/
    width: 170px;
    height: 70px;
	/*width: auto;
	height: 50px;
	margin: 20px;
	border-radius: 0;
	*/
	/*z-index:999;*/
}

.other .item {
	width:30.6%;

	/*background: none;*/
	
	
	/*border-radius: 12px;*/
	/*border: 1px solid #eee;*/

}


.other .item span, .bolder {
	font-size: 1.2em;
	font-weight: bold;
}

.other .item:hover{
	/*box-shadow: 0 2px 5px 0 rgba(0,0,0,.46);*/
	/*border: 1px solid #ddd;*/
}

.item .property {
	
}

.property_name {
	/*font-size:1.3em;*/
	font-size:1.25em;
	/*font-size:1.1em;*/
	margin:25px 25px 5px;
	/*margin:20px 20px 5px;*/
	font-weight: bold;
}

.property_place {
	/*font-size:1.11em;*/
	font-size:1em;
	/*margin:15px 0 5px;*/
	/*margin:20px 0 0;*/
	margin:15px 0 0;
	/*margin:10px 0 0;*/
}
.property_year {
	font-size: 1em;
	/*margin: 10px 0 -10px;*/
	margin: 5px 0 -5px;
}

.properties {
/*margin: 20px;*/
margin: 15px;
/*margin: 10px;*/
}

.properties img {
width: 32px;
vertical-align: middle;
font-size: 1.1em;
padding-right: 3px;
border-radius:0;
}

.properties img:not(:first-child) {
margin-left: 20px;
}

.properties span {
  display: inline-block;
  vertical-align: middle;
}

.price  {
font-size: 1.3em;
padding: 0 0 15px;
}


a.detailed {
font-size: 1.6em;
/*text-decoration: underline;*/
/*border: 1px solid #b7b7b7;*/
padding: 10px 50px 13px;
margin: 40px auto;
display: block;
color: #fff;
background: #272727;
border-radius: 30px;
width: fit-content;
}

img{
	max-width:100%;
	height:auto;
	/*border-radius: 3px;*/
	width: 100%;
	
}

.mp {
padding: 10px 0!important;
margin: 0!important;
}


.picture {
display: block;
margin: 0 auto;
text-align: center;
/*background: #f2f2f2;*/
background: none;
/*padding: 15px;*/
padding: 0 15px 5px;
/*margin: 40px;*/
margin: 0 40px;
/*border-radius: 14px;*/
}
.blok_img{
	width: 200px;
}
.blok_img_400{
	width: 400px;
}
.blok_img_600{
	width: 600px;
}

.pimg {
	margin: 1px 2px;
}
.blok_img img {
	border-radius: 6px;
	/*padding: 2px;*/
	padding: 3px;
	background: #f2f2f2;
}

.margin {
	margin: 0 -15px;
}
.pages{
	margin:25px auto;
	font-size:95%;
	width:90%
}
.pages a,.pages span{
	margin:2px 10px;
	display:inline-block
}

.pages span{
	padding: 1px 6px;
	background: #333;
	color: #eee;
	border-radius: 3px
}

.footer{
	padding:55px 0 25px;
	line-height: 1.6em;
	font-size: 90%;
}

.languages {
	/*display: block;
	margin: 50px auto 0;
	*/
    float: left;
    left: 65px;
    top: 38px;
	position: relative;
}
.languages a.pointer, a.pointer {
	cursor:default;
}
.languages a.pointer img, a.lang.pointer img {
	opacity: 1!important;
	filter: none;
}
.languages a, a.lang {
	/*width: 32px!important;*/
	display: inline-block!important;
}
.languages a img, a.lang img {
	width: 34px!important;
	opacity: 0.7;
	filter: grayscale(0.7);
	border: 1px solid #212121;
	border-radius: 2px;
	margin-left:10px;
}
.languages a:hover img, a.lang:hover  {
	opacity: 1;
	filter: none;
}

.more a {
	text-decoration: underline;
}

.contact-info-box p {
    margin: 0;
    padding: 0 15px;
	line-height: 1.3em;
}

.team {
    margin: 30px auto 0;
    width: 790px;
}

.team-person {
    text-align: center;
    margin-bottom: 30px;
    width: 33%;
	display: inline-block;
    vertical-align: top;
}

.team-person img {
    border: 1px solid #eee;
    margin: 9px;
    width: 90px;
    height: 90px;
}
.team-person p {
    margin: 0;
    padding: 0;
	line-height: 1.3em;
}
.rounded-circle {
    border-radius: 50%!important;
}

.col-2 {
    width: 45%;
    display: inline-block;
    vertical-align: top;
}

.col {
width: 95%;
margin: 0 auto;
}

.input-label,
.textarea-label {
  display: block;
  margin: 10px auto;
  width: 90%;
}
.input-label span,
.textarea-label span {
  display: block;
  margin-bottom: 5px;
  font-size: 1em;
  line-height: 1em;
}
.input-label span sup,
.textarea-label span sup {
  display: inline-block;
  margin-left: 2px;
  color: red;
}
.input-label input,
.textarea-label textarea {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-size: 1.2em;
  line-height: 1em;
  padding: 5px 10px;
  resize: none;
  transition: .2s ease-in-out;
  border: 1px solid #eee;
  border-radius: 5px;
}

.input-label input {
	font-size: 1em;
}

.textarea-label textarea {
  line-height: 1.3em;
  min-height: 152px;
  font-size: 1.3em;
}
.input-label input:focus,
.textarea-label textarea:focus {
  border: 1px solid rgba(0,0,0,1);
  -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.input-label span sup, .textarea-label span sup {
  display: inline-block;
  margin-left: 2px;
  color: red;
}
sup {
  top: -.5em;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.btn {
    display: block;
    font-size: 1em;
    padding: 10px 30px;
    margin: 20px auto 35px;
    color: #fff;
    background: #272727;
    border-radius: 25px;
	border: 1px solid #000;
	transition: 0.3s;
}
.btn:hover {
	color: #000;
	background: #fff;
	cursor: pointer;
	opacity: 1;
}
a.btn.call {

}

.btn_buy {
    background: #d60000;
    border: 1px solid #d60000;
    color: #fff;
    display: block;
    border-radius: 25px;
    padding: 10px 80px;
    margin: 20px auto;
    width: fit-content;
    cursor: pointer;
    transition: 0.3s;
	font-size: 1.4em;
	font-weight: bold;
}

.btn_buy:hover {
	background:#aa0000;
	border-color:#aa0000;
	text-decoration: none;
}

.btn_buy_button {
	font-size: 1.2em;
	padding: 10px 50px;
}

.modal-title {
	font-size:120%;
	font-weight:bold;
	padding: 15px;
}

.modal input, .modal textarea {
	font-size:90%!important;
}
.modal .col-2 {
	width:48.5%!important;
}


#topBtn {
  position: fixed;
  z-index: 5;
  right: 20px;
  bottom: 30px;
  cursor: pointer;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  font-size: 0.8em;
  letter-spacing: 0.02em;
  color: #777;
  height: 180px;
  width: 35px;
  display:none;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  text-align: left;
}
#topBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: 83px;
  background-color: #777;
}
#topBtn::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  width: 1px;
  height: 80%;
  background-color: #777;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#topBtn:hover::after {
	content: '';
	height: 100%;
	opacity: 1;
}

.block {
	display: block;
}
.count-block {
	display: block;
	padding: 15px 0 0;
}

.projct-filter {
	/*background: #eee;*/
	/*box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);*/
	/*border-radius: 22px;*/
	padding: 20px 35px 20px;
	/*margin: 0 15px;*/
	/*border: 1px solid #ddd;*/
}
.projct-filter form {
	display: inline-block;
	padding: 5px;
}
.projct-filter label.label-filter {
	display: block;
	padding: 5px 0 5px 10px;
	font-size: 0.9em;
}
.projct-filter input {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	font-size: 0.91em;
	line-height: 1em;
	padding: 5px 10px;
	transition: .2s ease-in-out;
	border: 1px solid #dadce0;
	border-radius: 5px;
}
.projct-filter input:focus {
  border: 1px solid #dadce0;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.projct-filter .slider-container input {
	width: 100px;
}
	
.slider-container {
    padding: 5px 50px 20px;
    margin: 0px 7px 15px;
    border: 1px solid #ddd;
    border-radius: 22px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); */
    background: #eee;
    width: 415px;
    display: inline-block;
}
.noUi-connect {
	background: #ccd1d3!important;
}
.noUi-target {
	box-shadow: none!important;
	border: 1px solid #dadce0!important;
}
.noUi-handle {
	border-radius: 5px!important;
}
.noUi-horizontal {
	height: 7px!important;
}

.multi-select-button {
	font-size: 0.9em!important;
	line-height: 1em!important;
	padding: 5px 10px!important;
	box-shadow: none!important;
	/*border: none!important;*/
	border: 1px solid #dadce0!important;
	border-radius: 5px!important;
	max-width: 120px!important;
}
.multi-select-menu {
	border-radius: 5px!important;
	/*box-shadow: none!important;*/
	border: 1px solid #dadce0!important;
}
.multi-select-menuitem {
	font-size: 0.85em!important;
	text-align: justify!important;
}
.multi-select-ok-button {
	border-radius: 5px!important;
	cursor: pointer;
}
#count {
	font-size: 1.2em;
}




.custom-sorting {
    display: inline-block;
    position: relative;
}

.custom-sorting__trigger {
    display: inline-block;
    font-size: 0.9em;
    line-height: 1em;
    padding: 5px 10px;
    box-shadow: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: 0.05em;
    background-color: #fff;
    max-width: 16em;
    border: 1px solid #dadce0;
    border-radius: 4px;
    cursor: default;
    color: #333;
    width: 180px;
}

.custom-sorting__trigger:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4em 0.4em 0 0.4em;
    border-color: #999 transparent transparent transparent;
    margin-left: 0.4em;
    position: absolute;
    top: 10px;
    right: 10px;
}

.custom-sorting__options {
    position: absolute;
    display: none;
    background: #fff;
    margin: 3px 0 0;
    border: 1px solid #dadce0;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    width: 100%;
	z-index: 1;
}

.custom-sorting__option {
    font-size: 0.85em;
    text-align: justify;
    cursor: pointer;
    padding: 0.3em 0.9em;
    white-space: nowrap;
}

.custom-sorting__option:hover {
    background: #f7f7f7;
	color: #000;
}

.custom-sorting.open .custom-sorting__trigger:after {
    border-width: 0 0.4em 0.4em 0.4em;
    border-color: transparent transparent #999 transparent;
}


/*
#loading-image
{
    width: 20px;
    height: 20px;
    background: url('/images/ajax-loader.gif');
    font-size: 0px;
    display: inline-block;
	position: relative;
	top: 3px;
}
*/

.spec-li li {
	display: block!important;
	width: fit-content!important;
	margin: 5px auto!important;
}
.specials {
	padding: 20px 40px;
	margin: 15px 15px 35px;
	background: #ffffff;
	/*color: #bb2626;*/
	/*border: 1px solid #bb2626;*/
	/*border-radius: 22px;*/
	border-radius: 35px;
	/*box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);*/
}

.specials a {
	color: #fff;
	font-size: 1.6em;
	text-transform: uppercase;
	font-family: 'Roboto-Black';
	/*font-family: 'Roboto-Bold';*/
	/*text-decoration: underline;*/
	border: 1px solid #bb2626;
	border-radius: 35px;
	padding: 5px 35px;
	background: #bb2626;
    transition: 0.3s;
}
.specials a:hover {
	background: #a22929;
}

.special-offer-icon {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 32%;
}

.special-offer-icon-page {
	position: relative;
	width: 20%;
}

.sp-img picture img {
	border-radius:22px;
	margin-bottom: 25px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
}
.sp-img picture img:hover{
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.46);
}

@media (max-width:320px){

	.logo img {
		width: 125px;
		top: 21px;
	}
}


@media (max-width:375px){

	  .menu_icon img {

		margin-left: 2px!important;
	  }
}

@media (min-width:425px){
	.container{
		/*width:95%;*/
		width:100%;
		/*margin: 65px auto 0;*/
	}
	/*.content {
		margin: 80px auto 30px!important;
	}*/
	.item{
		/*width:95%*/
		width:100%
	}
}
@media (min-width:768px){
	.container{
		width:95%
}
	.item{
		width:75.7%
}
}
@media (min-width:992px){
	.container{
		width:970px
}
	.item{
		width:76.8%
}
}
@media (min-width:1200px){
	.container{
		width:970px
}
	.item{
		width:46.5%
}
}
@media (min-width:1400px){
	.container{
		width:1170px
}
	.item{
		width:47.1%
}
}




@media (max-width:1400px){
	.other .item{
		width:44.4%
}
}


@media (max-width:1040px){
	.menu li {
		padding: 8px 25px;
		margin: 20px 10px 0 0;
	}
}



@media (max-width:992px){

	.other .item{
		width:44.4%
}
.team {
    width: 100%;
}

}
@media (max-width:835px){
.blok_img{
	width: 100%;
}
.blok_img_400{
	width: 100%;
}
.blok_img_600{
	width: 100%;
}
.map{
	width: 83%;
}
}




@media (max-width:768px){
	.menu li {
		padding: 6px 10px;
		margin: 20px 3px 0 0;
	}
	
	.specials a {
		font-size: 1.5em;
	}
	
	.special-offer-icon-page {
		width: 25%;
	}
	
}


@media (max-width:600px){

.projct-filter {
	padding: 20px 20px 40px;
	margin: 0;
}
.slider-container {
    padding: 5px 30px 20px;
	width: auto;
}

.languages {
	display: none;
}
a.lang img {
	margin:10px 0!important;
	width: 44px!important;
}

.content{
	margin: 0 auto 30px;
}
.picture{
	margin: 0;
	padding: 10px;
}
.item{
	margin: 15px auto;
}
.other .item {
	width: 100%;
}
.item.developer {
	width: 60%;
}
.col-2 {
	width: 100%;
}

.modal .col-2 {
	width: 100%!important;
}


#topBtn {
	right: 0;
}
#topBtn::before {
	content: '';
	top: 60px;
	left: 20%;
	-webkit-transform: translate(-50%, 0px);
	-ms-transform: translate(-50%, 0px);
	transform: translate(-50%, 0px);
}

.mob-d {
	margin-top:0!important;
}

.specials a {
	font-size: 1.4em;
}

.special-offer-icon-page {
	width: 40%;
}

}


@media (max-width:560px){


.specials a {
	font-size: 1.1em;
}

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

.specials {
	padding: 0;
	margin: 15px 0 35px;
	background: none;
	
}
.specials a {
	font-size: 1.2em;
}

}

@media (max-width:380px){

.specials {
	padding: 20px 0;
	background: #bb2626;
}
.specials a {
	font-size: 1em;
}

}

@media (max-width:320px){


.specials a {
	font-size: 0.8em;
}

}

img.loading {
	width: 30px;
    text-align: center;
    margin: 30px auto;
}

.grecaptcha-badge { 
    visibility: hidden;
}

#error-msg {
  color: red;
  font-size: 80%;
  margin-top: 5px;
}
#valid-msg {
  color: #00c900;
  font-size: 80%;
  margin-top: 5px;
}
input.error {
  border: 1px solid #ff7c7c;
}
.hide {
  display: none!important;
}
