body {
	margin:0px;
	padding: 0px 0px 0px 0px;
  font-family: 'Futura PT Book';
	font-size: 18px;
  font-weight: normal;
  font-style: normal;
	color: #fff;
}


html, body {
  height: 100%;
}

@font-face {
  font-family: 'Futura PT Book';
  src: url('../fonts/FuturaPT-Book.woff2') format('woff2'),
      url('../fonts/FuturaPT-Book.woff') format('woff'),
      url('../fonts/FuturaPT-Book.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Heavy.woff2') format('woff2'),
      url('../fonts/FuturaPT-Heavy.woff') format('woff'),
      url('../fonts/FuturaPT-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}


.page {
  text-align: center;
  width: 100%;
  min-height: 100vh;
  box-shadow: 0px 10px 60px 0px rgba(18, 30, 52, 0.14);
  background: rgb(47, 72, 80);
}

.main_container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}

.block, .block-2 {
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin-bottom: 30px;
    background: rgb(53, 85, 96);
}

.block-2 {
    padding: 50px 35px 70px;
}

.company_logo {
    margin-bottom: 30px;
}

.company_logo img {
    max-width: 240px;
    width: 100%;
}

.company_name {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
    margin: 0px 0 10px 0;
    font-family: 'Futura PT';
    text-transform: uppercase;
}

.company_description {
    font-size: 18px;
    margin: 0px 0 5px 0;
}

.company_address {
    font-size: 22px;
}

.stars_header {
    font-size: 28px;
    font-weight: bold;
    line-height: normal;
    margin: 0px 0 10px 0;
    font-family: 'Futura PT Book';
}

.stars_text {
    font-size: 22px;
    margin: 0px 0 30px 0;
    text-align: center;
}

.stars_counter {
    margin: 15px 0 10px 0;
    font-size: 22px;
}

.stars svg {
    cursor: pointer;
}

.stars svg:not(:first-child) {
    margin-left: 10px;
}

.counter_result {
    color: #ffa500;
    font-weight: bold;
}

.btn {
    display: block;
    background-color: #ffa500;
    height: 54px;
    width: 300px;
    color: white;
    border: none;
    font-family: 'Futura PT';
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 5px #f0242d;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;   
    margin: 0 auto;
}

.btn:disabled {
    background: rgba(228, 228, 228, 0.4) !important;
    color: rgb(194, 195, 198) !important;
    box-shadow: none !important;
}

.btn.white {
    background: #fff;
    color: #333333;
}

.btn.google {
    background: #fff url(../images/google.svg) no-repeat 50px center;
    color: #333333;
    padding-left: 40px;
}

.btn.yandex {
    background: #fff url(../images/yandex.svg) no-repeat 65px center;
    color: #333333;
    padding-left: 30px;
}

.contact-input-holder {
    max-width: 522px;
    width: 100%;
}

.contact {
    max-width: 522px;
    width: 100%;
    height: 65px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 8px;
  padding: 0 10px 0 20px;
  font-family: 'Futura PT Book';
	font-size: 18px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;  
  box-shadow: inset 0 0 2px #e3e3e3;
  box-sizing: border-box;
}

.contact:focus {
  outline: none;
  box-shadow: inset 0 0 10px #e3e3e3;
}

.contact-input-holder {
  margin: 0 0 20px 0;
}

textarea.contact {
    max-width: 522px;
    width: 100%;
    height: 120px;
    padding-top: 17px;
}

.footer {
    height:100px;
    width:100px;
}

.hide {
  display: none;
}