html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

* {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: #04AADD;
  text-decoration: none;
}
a:hover {
  color: #005490;
}

img {
  max-width: 100%;
}

h1, h2, h3 {
  margin: 20px 0;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 23px;
}

h3 {
  font-size: 19px;
}

.text-muted {
  color: #4F4F4F;
}

.text-bigger {
  font-size: 18px;
}

.text-smaller {
  font-size: 14px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.text-big {
  font-size: 33px;
}

.text-center {
  text-align: center;
}

.btn-main {
  height: 28px;
  padding: 0 14px;
  display: inline-block;
  background: #FFD324;
  box-sizing: border-box;
  border: 0;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-align: center;
  text-decoration: none;
  line-height: 28px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-main:hover {
  opacity: 0.8;
  color: #333;
}


.input {
  width: 100%;
  height: 28px;
  padding: 0 14px;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  background-color: #fff;
  font-size: 12px;
  color: #000;
}
.input::-webkit-input-placeholder {
  opacity: 1;
}
.input::-moz-placeholder {
  opacity: 1;
}
.input:-ms-input-placeholder {
  opacity: 1;
}
.input::placeholder {
  opacity: 1;
}
.input:focus {
  border-color: #bbb;
}
.input-container {
  margin: 0 0 16px 0;
}
.input-container-icon {
  position: relative;
}
.input-container-icon .input, .input-container-icon .dropdown-input {
  padding-left: 32px;
  background-color: transparent;
}
.input-container-icon .input-icon {
  position: absolute;
  top: 5px;
  left: 6px;
  font-size: 20px;
  color: #666;
}
.input-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.input-row-1 {
	display: flex;
    justify-content: space-between;
}

.input-row-2 {
	display: grid;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.input-row-1 .input-container {
  margin-bottom: 0;
}

.input-row-3 .input-container {
  margin-bottom: 0;
}

textarea.input {
  height: initial;
  padding: 10px 14px;
  resize: vertical;
}

.dropdown-input {
  width: 100%;
  height: 28px;
  padding: 0 14px;
  display: block;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  background-color: #fff;
  font-size: 12px;
  color: #333;
  line-height: 26px;
}

.dropdown {
  position: relative;
}
.dropdown.toggled .dropdown-container {
  display: block;
  z-index: 20;
}
.dropdown-toggle {
  background-image: url(../images/icon-dropdown.svg);
  background-position: right;
  background-repeat: no-repeat;
}
.dropdown-container {
  position: absolute;
  left: 0;
  min-width: 100%;
  margin-top: 5px;
  padding: 8px 12px;
  display: none;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 5px 0 #eee;
  z-index: 3;
}
.dropdown-container > li {
  margin: 5px 0;
  padding: 0 1px;
  list-style: none;
  font-size: 14px;
}

.rate .badge {
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  margin-right: 5px;
}
.rate .dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.rate .dropdown-container li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.badge {
  min-width: 104px;
  min-height: 28px;
  padding: 0 14px;
  display: inline-block;
  background: #FFD324;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 28px;
}
.badge-good {
  background: #FFEFAD;
}
.badge-ok {
  background: #ebebeb;
}
.badge-bad {
  background: #b6b6b6;
}
.badge-light {
  min-height: 24px;
  background: transparent;
  border: 1px solid #F1EAFF;
  font-weight: 400;
  color: #1F4173;
  line-height: 22px;
}

.badge-light strong {
	margin-left: 5px;
}

.section {
  margin: 30px 0;
}
.last {
  margin-bottom: 5px;
}
.section-title {
  display: flex;
}
.section-title-icon {
  margin-right: 10px;
  font-size: 40px;
  line-height: 40px;
}
.section-title-text {
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 40px;
}

.header {
  height: 254px;
  margin-bottom: -106px;
  padding: 80px 0 0 0;
  box-sizing: border-box;
  background: url(../images/header-bg2.png) no-repeat right, #ffc300 url(../images/header-bg.png) repeat-x left top;
}
.header-content {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.header-logo {
  width: 254px;
  flex-shrink: 0;
}
.header-logo .logo {
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #222;
}
.header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-nav-toggle {
  width: 27px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.header-nav-toggle span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #000;
  pointer-events: none;
  transition: all 0.3s;
}
.header-nav-toggle.toggled {
  position: relative;
}
.header-nav-toggle.toggled span {
  display: none;
}
.header-nav-toggle.toggled span:first-child {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
}
.header-nav-toggle.toggled span:last-child {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
}
.header-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.header-menu li {
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}
.header-menu li a {
  padding: 7px 26px;
  display: block;
  border: 1px solid transparent;
  border-radius: 12px;
  box-sizing: border-box;
  color: #000;
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  text-transform: uppercase;
  line-height: 18px;
}
.header-menu li a:hover {
  background-color: #fff;
  border-color: #D7AB25;
}
.header-menu li.current a {
  background-color: #fff;
  border-color: #D7AB25;
  pointer-events: none;
}
.header-search {
  flex-grow: 1;
}
.header-search-form {
  position: relative;
}
.header-search-input {
  width: 100%;
  height: 32px;
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid #D7AB25;
  border-radius: 12px;
  background-color: transparent;
}
.header-search-input:focus {
  border-color: #666;
}
.header-search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 32px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
  display: flex;
}
.main-content {
  min-width: 0;
  order: 2;
  margin: 0 20px 20px 0;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #E6EAF0;
  border-radius: 5px;
  background-color: #fff;
  flex-grow: 1;
}
.main-aside {
  order: 1;
  width: 254px;
  flex-shrink: 0;
  font-size: 14px;
}
.main-aside-image {
  background-color: #ffc400;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.main-aside-content {
  margin: 16px 20px;
  padding: 16px;
  background: #e9e9e9;
  border-radius: 5px;
}
.main-aside-content ul {
  margin: 0;
  padding: 0;
}
.main-aside-content ul li {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
.main-aside-content ul li:last-child {
  margin-bottom: 0;
}
.main-aside-content a {
  color: #919191;
}
.main-aside-content a:hover {
  color: #333;
}

.container {
  max-width: 1280px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.stats {
  margin: 0;
  display: flex;
  border-radius: 5px;
  background: rgba(255, 195, 0, 0.2);
  overflow: hidden;
}
.stats-icon {
  font-size: 56px;
  background: #ffc300;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.stats-icon::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 40px;
  height: 110%;
  display: block;
  content: "";
  background-color: #ffc300;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.stats-item {
  position: relative;
  width: 25%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.stats-item-num {
  font-size: 38px;
  font-family: "Oswald", sans-serif;
}

.latest-row {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E6EAF0;
}
.latest-col {
  width: 33.33%;
  padding: 16px 0;
}
.latest-col:last-child {
  text-align: right;
}
.latest-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.latest-title:hover {
  color: #1F4173;
}
.latest-phone {
  font-size: 18px;
  color: #4F4F4F;
}

.comments-form {
  margin: 24px 0;
}
.comments-row {
  padding: 16px 0;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E6EAF0;
}

.comments-row:last-child {
  border-bottom: 0;
}

.comments-icon, .comments-rating {
  flex-shrink: 0;
}
.comments-icon img, .comments-rating img {
  display: block;
}
.comments-content {
  margin: 0 60px;
  flex-grow: 1;
  font-size: 14px;
}
.comments-title {
  font-weight: 700;
  color: #000;
}
.comments-title:hover {
  color: #1F4173;
}

.intro {
  padding: 24px;
  border-radius: 5px;
  background: rgba(255, 195, 0, 0.2);
  text-align: center;
}
.intro-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  text-transform: uppercase;
  line-height: 1.2;
}
.intro p {
  margin: 10px 0;
}

.intro-alt {
  padding: 16px;
  padding-top: 5px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
.intro-alt-content {
  padding: 32px 24px;
  background: #f5f5f5;
  border-radius: 5px;
}
.intro-alt-content p {
  margin: 10px 0;
}
.intro-alt-content p:last-child {
  margin-bottom: 0;
}
.intro-alt-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.2;
}
.intro-alt .full-bottom {
  margin-top: 20px;
}

.phones {
  margin: 10px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.phones-item {
  margin: 0 10px 10px 0;
  padding: 8px 12px;
  border: 1px solid #cbcbcb;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.phones-item:last-child {
  margin-right: 0;
}

.checked-list {
  margin: 20px 0 0 0;
  padding: 0;
  font-size: 14px;
  color: #1F4173;
}
.checked-list li {
  margin: 0 0 10px 0;
  padding: 0 0 0 32px;
  list-style: none;
  background: url(../images/icon-check.svg) no-repeat left top;
}
.checked-list li a {
  color: #04AADD;
}

.blockquote {
  position: relative;
  margin: 32px;
  padding: 32px 72px 20px 72px;
  background: #ECF0F4;
  border-radius: 5px;
  z-index: 1;
}
.blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  content: url(../images/image-quote.svg);
  -webkit-transform: translate(-20%, -30%) rotate(-180deg);
          transform: translate(-20%, -30%) rotate(-180deg);
  z-index: 2;
}
.blockquote::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: url(../images/image-quote.svg);
  -webkit-transform: translate(20%, 30%);
          transform: translate(20%, 30%);
  z-index: 2;
}
.blockquote p {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 500;
}
.blockquote cite {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.blockquote cite::before {
  content: "- ";
}

.list {
  margin: 10px 0;
}
.list-row {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E6EAF0;
}
.list-left {
  display: flex;
  align-items: center;
}
.list-icon {
  margin-right: 32px;
}
.list-icon img {
  display: block;
}
.list-title {
  color: #000;
}

.rating i {
  margin: -2px 2px 0 2px;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #c4c4c4;
}
.rating i.active {
  color: #FFCE31;
}

.full-row {
  margin: 0 0 16px 0;
  padding: 16px;
  border: 1px solid #D6D6D6;
  border-radius: 5px;
}
.full-row:last-child {
  margin-bottom: 0;
}
.full-top {
  margin: 0 0 16px 0;
  padding: 10px;
  border-radius: 5px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
}
.full-title {
  display: flex;
  align-items: center;
}
.full-title-icon {
  margin-right: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #ffc300;
}
.full-title-text {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #000;
}
.full-description {
  margin: 0 10px;
  font-size: 14px;
  flex-grow: 1;
}
.full-bottom {
  margin: 0 -10px -10px 0;
  display: flex;
  flex-wrap: wrap;
}
.full-bottom .badge {
	margin: 0 10px 10px 0;
    flex-grow: 1;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.map {
	width: 100%;
	height: 400px;
	margin: 24px 0 0 0;
	overflow: hidden;
}

#map {
	display: block;
    width: 100%;
    background: url(/images/karta.jpg) no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
}

#map:before {
	content: 'Показать на карте';
    position: absolute;
    padding: 5px 15px;
    background: #ffc300;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    line-height: 28px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tags {
  margin: 9px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.tags li {
  margin: 0 9px 9px 0;
  padding: 0;
  list-style: none;
}
.tags li .btn-main {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
}

.footer {
  position: relative;
  color: #878787;
  z-index: 2;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #FFD324;
}
.footer-columns {
  position: relative;
  padding: 60px 20px;
  background: #3a3a3a url(../images/footer-content-bg.png) no-repeat right;
}
.footer-columns-container {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.footer-columns-item h4 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 500;
  color: #FFD324;
}
.footer-columns-item ul {
  margin: 0;
  padding: 0;
}
.footer-columns-item ul li {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
.footer-columns-item ul li:last-child {
  margin-bottom: 0;
}
.footer-bottom {
  padding: 66px 0 0 0;
  background: #262626 url(../images/footer-bg.png) repeat-x center top;
}
.footer-bottom-logo {
  max-width: 1280px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.footer-bottom-logo img {
  margin: -24px 0 0 0;
  flex-shrink: 0;
}
.footer-bottom-title {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #FFD324;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .header {
    height: initial;
    margin-bottom: 0;
    padding: 20px 0;
    background: #ffe481;
  }
  .header-content {
    flex-wrap: wrap;
  }
  .header-nav {
    width: 100%;
    padding: 20px 0 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-nav.toggled {
    display: flex;
  }
  .header-nav-toggle {
    margin-left: auto;
    display: flex;
  }
  .header-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-menu li {
    margin: 0 0 10px 0;
  }
  .header-search {
    width: 100%;
  }

  .main {
    flex-direction: column;
  }
  .main-content {
    order: 1;
    margin: 20px 20px 0 20px;
    border-radius: 5px;
  }
  .main-aside {
    width: 100%;
  }
  .main-aside-image {
    display: none;
  }
  .main-aside-content ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .footer-columns {
    background-image: none;
  }
  .footer-columns-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .list-row {
	display: block;
  }
	
  .input-row-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  
  .input-row-1 {
	gap: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-content {
    border: 0;
    padding: 0;
  }
  .main-aside-content {
    font-size: 12px;
  }

  .stats-icon {
    display: none;
  }
  .stats-item {
    width: 33.33%;
    height: auto;
    padding: 20px 10px;
    font-size: 12px;
  }
  .stats-item-num {
    font-size: 24px;
  }

  .section {
    margin: 20px 0;
  }
  .section-title-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    line-height: initial;
  }
  .section-title-text {
    font-size: 20px;
    line-height: initial;
  }

  .latest-row {
    padding: 14px 0;
    flex-wrap: wrap;
    line-height: 1.2;
  }
  .latest-col {
    width: initial;
    padding: 2px 10px 2px 0;
  }
  .latest-col:last-child {
    margin-left: auto;
  }
  .latest-col-title {
    width: 100%;
    order: 1;
  }
  .latest-col-city {
    order: 2;
  }
  .latest-col-phone {
    order: 3;
  }
  .latest-phone {
    font-size: 14px;
  }
  .latest .badge {
    min-width: initial;
    padding-right: 4px;
    padding-left: 4px;
  }

  .list-icon {
    display: none;
  }

  .comments-row {
    flex-wrap: wrap;
  }
  .comments-icon {
    display: none;
  }
  .comments-content {
    margin: 0 0 10px 0;
  }
  .comments-rating {
    width: 100%;
  }

  .blockquote {
    margin: 32px 0;
    padding: 16px 32px 16px 32px;
  }
  .blockquote::before {
    -webkit-transform: translate(-40%, -40%) rotate(-180deg) scale(0.5);
            transform: translate(-40%, -40%) rotate(-180deg) scale(0.5);
  }
  .blockquote::after {
    -webkit-transform: translate(40%, 40%) scale(0.5);
            transform: translate(40%, 40%) scale(0.5);
  }

  .full-top {
    flex-direction: column;
    text-align: center;
  }
  .full-title {
    justify-content: center;
  }
  .full-title-area {
    justify-content: center;
  }
  .full-title-text {
    width: initial;
  }
  .full-description {
    margin: 10px 0;
  }

  .intro-alt {
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .intro-alt-content {
    padding: 24px 12px;
  }
  .intro-alt-title {
    font-size: 24px;
  }

  .phones-item {
    padding: 4px 8px;
    font-size: 14px;
  }

  .footer-columns-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-bottom {
    font-size: 14px;
  }
  .footer-bottom img {
    max-width: 120px;
    margin-left: -30px;
  }
  .footer-bottom-title {
    font-size: 20px;
  }
	.full-btn-area {
		text-align: center !important;;
	}
}
@font-face {
  font-family: 'icons';
  src:  url('icons/icons.eot?pakodp');
  src:  url('icons/icons.eot?pakodp#iefix') format('embedded-opentype'),
    url('icons/icons.ttf?pakodp') format('truetype'),
    url('icons/icons.woff?pakodp') format('woff'),
    url('icons/icons.svg?pakodp#icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
  content: "\e900";
}
.icon-stats:before {
  content: "\e901";
}
.icon-comments:before {
  content: "\e902";
}
.icon-map:before {
  content: "\e903";
}
.icon-money:before {
  content: "\e904";
}
.icon-star:before {
  content: "\e905";
}
.icon-taxi:before {
  content: "\e906";
}
.icon-time:before {
  content: "\e907";
}
.icon-top:before {
  content: "\e908";
}
.icon-user:before {
  content: "\e909";
}
.icon-cash:before {
  content: "\e90a";
}
.icon-check:before {
  content: "\e90b";
}
.icon-more:before {
  content: "\e90c";
}
.icon-plus:before {
  content: "\ea1e";
}
.icon-minus:before {
  content: "\ea1f";
}

.error {
	border: 1px solid #ee4f4f;
}

.ot_time {
	font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.icon-pad {
	padding-right: 8px;
    color: #ffc300;
    font-size: 28px;
}

.recaptcha {
	margin: 15px 0 15px 0;
}

.com_time {
	margin-bottom: 10px;
}

.payd {
	background: #00ff2b08;
}

.payd-area {
	background-color: #8bc34a38;
}

.ads-top {
    margin: 20px 0 10px 0;
    max-height: 300px;
}

.btn-alert {
    height: 28px;
    padding: 0 14px;
    display: inline-block;
    background: #f5f5f5;
    box-sizing: border-box;
    border: 1px solid #cbcbcb;
    border-radius: 16px;
    font-size: 12px;
    color: #333;
    text-align: center;
    text-decoration: none;
    line-height: 28px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.own_comp {
	font-size: 13px;
}

.tel_row {
	display: flex;
}

.tel_br {
	border-radius: 5px 0px 0px 5px;
}

.btn_br {
	border-radius: 0px 5px 5px 0px;
}

.table_row {
	width: 100%;
	border-collapse:separate; 
	border-spacing: 0 1em;
}

.table_row input[type=checkbox] {
    transform: scale(1.5);
}

.add_box {
    margin: 16px 20px;
    padding: 16px;
    background: #fff3cc;
    border-radius: 17px;
}

.addbtn {
	width: 100%;
}

.btn-reg {
    height: 28px;
    padding: 0 14px;
    display: inline-block;
    background: #dbd9d0;
    box-sizing: border-box;
    border: 0;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-align: center;
    text-decoration: none;
    line-height: 28px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-reg:hover {
  opacity: 0.8;
  color: #333;
}

.terms {
	transform: scale(1.5);
    margin-right: 10px;
}

.load {
	position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.7;
    background: url(/images/loading.gif) 50% 50% no-repeat rgb(0 0 0);
}

.err_text {
	text-align: center;
}

.err_logo {
	max-width: 250px;
    margin: 0 auto;
}

.full-title-area {
	display: flex;
    flex-direction: column;
}

.full-btn-area {
	text-align: right;
}

.rate-area {
	font-size: 13px;
	margin-top: 8px;
}

.btn-disabled {
	height: 28px;
    padding: 0 14px;
    display: inline-block;
    background: #e3e3e3;
    box-sizing: border-box;
    border: 0;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-align: center;
    text-decoration: none;
    line-height: 28px;
}

.cbox-area {
	transform: scale(1.5);
    margin: 15px;
}

.delbtn {
	background: #f96739;
    color: #fff;
}

.delbtn:hover {
  opacity: 0.8;
  color: #fff;
}

#showmore-triger {
	border-radius: 21px;
    background: rgba(255, 195, 0, 0.2);
    text-align: center;
}

#showmore-triger img {
    max-width: 100px;
    margin-top: 10px;
}

.gor {
	font-size: 20px;
    text-transform: initial;
    color: #1a1a1a;
}

.tmarea {
	margin-bottom: 8px;
    margin-top: 5px;
    font-size: 12px;
}