/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 575px) {
  html {
    font-size: 87.5%;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button:not(:disabled) {
  cursor: pointer;
}

button:focus {
  outline: none;
}

body {
  display: block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  background: #fff;
  min-width: 320px;
  color: #7A7674;
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.look {
  overflow-y: hidden;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

::-webkit-input-placeholder {
  opacity: 0.7;
}

::-moz-placeholder {
  opacity: 0.7;
}

:-ms-input-placeholder {
  opacity: 0.7;
}

::-ms-input-placeholder {
  opacity: 0.7;
}

::placeholder {
  opacity: 0.7;
}

:-ms-input-placeholder {
  opacity: 0.7;
}

::ms-input-placeholder {
  opacity: 0.7;
}

.custom-typography h1,
.custom-typography .h1 {
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.725;
  color: #091638;
}

@media only screen and (max-width: 991px) {
  .custom-typography h1,
  .custom-typography .h1 {
    font-size: 30px;
  }
}

.custom-typography h2,
.custom-typography .h2 {
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.725;
  color: #091638;
}

@media only screen and (max-width: 991px) {
  .custom-typography h2,
  .custom-typography .h2 {
    font-size: 30px;
  }
}

.custom-typography h3,
.custom-typography .h3 {
  margin-top: 52px;
  margin-bottom: 23px;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.5;
  color: #141B2D;
}

@media only screen and (max-width: 767px) {
  .custom-typography h3,
  .custom-typography .h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.custom-typography h4,
.custom-typography .h4 {
  margin-top: 52px;
  margin-bottom: 23px;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  color: #141B2D;
}

@media only screen and (max-width: 767px) {
  .custom-typography h4,
  .custom-typography .h4 {
    font-size: 17px;
  }
}

.custom-typography h5,
.custom-typography .h5 {
  margin-top: 52px;
  margin-bottom: 23px;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 19px;
  line-height: 1.5;
  color: #141B2D;
}

@media only screen and (max-width: 767px) {
  .custom-typography h5,
  .custom-typography .h5 {
    font-size: 16px;
  }
}

.custom-typography p {
  margin-bottom: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.625;
  color: #7A7674;
}

@media only screen and (max-width: 575px) {
  .custom-typography p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.custom-typography ol {
  margin-bottom: 20px;
  list-style: none;
  counter-reset: my-awesome-counter;
  font-size: 16px;
  line-height: 1.625;
}

.custom-typography ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 10px;
}

.custom-typography ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: #F26F21;
  font-weight: bold;
  margin-right: 15px;
}

.custom-typography ul {
  margin-bottom: 20px;
  list-style: none;
  font-size: 16px;
  line-height: 1.625;
}

.custom-typography ul li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.custom-typography ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #F26F21;
  left: 0;
  top: 10px;
  position: absolute;
  margin-right: 15px;
}

.custom-typography ul.check-list li::before {
  content: "\e905";
  font-family: 'custom-icomoon';
  color: #f26f21;
  font-size: 8px;
  width: auto;
  height: auto;
  background-color: transparent;
}

.custom-typography .leftimg {
  float: left;
  margin: 10px 30px 30px 0;
  width: 293px;
  height: 193px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .custom-typography .leftimg {
    margin: 0 0 30px;
    width: 100%;
    height: auto;
  }
}

.custom-typography .rightimg {
  float: right;
  margin: 10px 0 30px 30px;
  width: 293px;
  height: 193px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.custom-typography .fullwidth {
  margin-bottom: 41px;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.container-lg {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .container-lg {
    padding: 0 15px;
  }
}

.container-md {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .container-md {
    padding: 0 15px;
  }
}

.container-sm {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .container-sm {
    padding: 0 15px;
  }
}

.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #F26F21;
  font-size: 13px;
  line-height: 17px;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link::after {
  margin-left: 7px;
  content: "\e904";
  color: #f26f21;
  font-size: 9px;
  font-family: "custom-icomoon" !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link:hover::after {
  margin-left: 14px;
}

.link--back::after {
  display: none;
}

.link--back::before {
  margin-right: 7px;
  content: "\e904";
  color: #f26f21;
  font-size: 9px;
  font-family: "custom-icomoon" !important;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link--back:hover::before {
  left: -7px;
}

.flex-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn {
  padding: 14px 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F26F21;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 27px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #D74120;
}

.btn [class^="icon-"] {
  margin-right: 10px;
  font-size: 20px;
}

.btn--md {
  font-size: 16px;
}

.btn--full {
  display: block;
  width: 100%;
}

.accent {
  color: #F26F21;
}

.main-title {
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.725;
  color: #091638;
}

.main-title--line {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

/*.main-title--line:after {*/
/*  content: "";*/
/*  display: block;*/
/*  position: absolute;*/
/*  width: 1px;*/
/*  height: 30px;*/
/*  background-color: #F26F21;*/
/*  top: 100%;*/
/*  left: 50%;*/
/*  -webkit-transform: translate(-50%, 10px);*/
/*  transform: translate(-50%, 10px);*/
/*}*/

@media only screen and (max-width: 991px) {
  .main-title {
    font-size: 25px;
  }
}

.main-title.accent {
  color: #F26F21;
}

.title-md {
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.5;
  color: #141B2D;
}

@media only screen and (max-width: 767px) {
  .title-md {
    font-size: 18px;
  }
}

.quote {
  margin-bottom: 30px;
  padding: 30px 34px 23px 30px;
  background-color: #FAF5F3;
  font-style: italic;
  font-weight: normal;
  font-size: 21px;
  line-height: 1.48;
  color: #141B2D;
}

@media only screen and (max-width: 575px) {
  .quote {
    padding: 15px;
    font-size: 16px;
  }
}

.quote::before {
  content: "\e901";
  font-family: "custom-icomoon";
  color: #f26f21;
  display: block;
  margin-bottom: 13px;
  font-size: 30px;
  line-height: 1;
}

.list {
  margin-bottom: 20px;
  list-style: none;
  font-size: 16px;
  line-height: 1.625;
}

.list li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #F26F21;
  left: 0;
  top: 10px;
  position: absolute;
  margin-right: 15px;
}

.list--check li::before {
  content: "\e905";
  color: #f26f21;
  font-size: 5px;
  background-color: transparent;
}

.column-4 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}

@media only screen and (max-width: 991px) {
  .column-4 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media only screen and (max-width: 767px) {
  .column-4 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media only screen and (max-width: 575px) {
  .column-4 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

.range-slider {
  position: relative;
  width: 100%;
}

.range-slider input {
  width: 100%;
  position: absolute;
  top: 2px;
  height: 0;
  -webkit-appearance: none;
}

.range-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin: -5px 0 0;
  border-radius: 50%;
  background: #FFF;
  border: 3px solid #F26F21;
  cursor: pointer;
}

.range-slider input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  margin: -5px 0 0;
  border-radius: 50%;
  background: #FFF;
  border: 3px solid #F26F21;
  cursor: pointer;
}

.range-slider input::-ms-thumb {
  width: 12px;
  height: 12px;
  margin: -5px 0 0;
  border-radius: 50%;
  background: #FFF;
  border: 3px solid #F26F21;
  cursor: pointer;
}

.range-slider input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #EAE7E6;
}

.range-slider input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #EAE7E6;
}

.range-slider input::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #EAE7E6;
}

.range-slider input:focus {
  background: none;
  outline: none;
}

.range-slider input::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.preloader {
  display: none;
}

.js .preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  text-transform: uppercase;
}

.loader {
  height: 58px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  width: 58px;
}

.loader span {
  background: #F26F21;
  display: block;
  height: 12px;
  opacity: 0;
  position: absolute;
  width: 12px;
  animation: load 4.6s ease-in-out infinite;
  -o-animation: load 4.6s ease-in-out infinite;
  -ms-animation: load 4.6s ease-in-out infinite;
  -webkit-animation: load 4.6s ease-in-out infinite;
  -moz-animation: load 4.6s ease-in-out infinite;
}

.loader span.block-1 {
  animation-delay: 1.06s;
  -o-animation-delay: 1.06s;
  -ms-animation-delay: 1.06s;
  -webkit-animation-delay: 1.06s;
  -moz-animation-delay: 1.06s;
  left: 0px;
  top: 0px;
}

.loader span.block-2 {
  animation-delay: 0.97s;
  -o-animation-delay: 0.97s;
  -ms-animation-delay: 0.97s;
  -webkit-animation-delay: 0.97s;
  -moz-animation-delay: 0.97s;
  left: 16px;
  top: 0px;
}

.loader span.block-3 {
  animation-delay: 0.87s;
  -o-animation-delay: 0.87s;
  -ms-animation-delay: 0.87s;
  -webkit-animation-delay: 0.87s;
  -moz-animation-delay: 0.87s;
  left: 31px;
  top: 0px;
}

.loader span.block-4 {
  animation-delay: 0.78s;
  -o-animation-delay: 0.78s;
  -ms-animation-delay: 0.78s;
  -webkit-animation-delay: 0.78s;
  -moz-animation-delay: 0.78s;
  left: 47px;
  top: 0px;
}

.loader span.block-5 {
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
  left: 0px;
  top: 16px;
}

.loader span.block-6 {
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  left: 16px;
  top: 16px;
}

.loader span.block-7 {
  animation-delay: 0.51s;
  -o-animation-delay: 0.51s;
  -ms-animation-delay: 0.51s;
  -webkit-animation-delay: 0.51s;
  -moz-animation-delay: 0.51s;
  left: 31px;
  top: 16px;
}

.loader span.block-8 {
  animation-delay: 0.41s;
  -o-animation-delay: 0.41s;
  -ms-animation-delay: 0.41s;
  -webkit-animation-delay: 0.41s;
  -moz-animation-delay: 0.41s;
  left: 47px;
  top: 16px;
}

.loader span.block-9 {
  animation-delay: 0.32s;
  -o-animation-delay: 0.32s;
  -ms-animation-delay: 0.32s;
  -webkit-animation-delay: 0.32s;
  -moz-animation-delay: 0.32s;
  left: 0px;
  top: 31px;
}

.loader span.block-10 {
  animation-delay: 0.23s;
  -o-animation-delay: 0.23s;
  -ms-animation-delay: 0.23s;
  -webkit-animation-delay: 0.23s;
  -moz-animation-delay: 0.23s;
  left: 16px;
  top: 31px;
}

.loader span.block-11 {
  animation-delay: 0.14s;
  -o-animation-delay: 0.14s;
  -ms-animation-delay: 0.14s;
  -webkit-animation-delay: 0.14s;
  -moz-animation-delay: 0.14s;
  left: 31px;
  top: 31px;
}

.loader span.block-12 {
  animation-delay: 0.05s;
  -o-animation-delay: 0.05s;
  -ms-animation-delay: 0.05s;
  -webkit-animation-delay: 0.05s;
  -moz-animation-delay: 0.05s;
  left: 47px;
  top: 31px;
}

.loader span.block-13 {
  animation-delay: -0.05s;
  -o-animation-delay: -0.05s;
  -ms-animation-delay: -0.05s;
  -webkit-animation-delay: -0.05s;
  -moz-animation-delay: -0.05s;
  left: 0px;
  top: 47px;
}

.loader span.block-14 {
  animation-delay: -0.14s;
  -o-animation-delay: -0.14s;
  -ms-animation-delay: -0.14s;
  -webkit-animation-delay: -0.14s;
  -moz-animation-delay: -0.14s;
  left: 16px;
  top: 47px;
}

.loader span.block-15 {
  animation-delay: -0.23s;
  -o-animation-delay: -0.23s;
  -ms-animation-delay: -0.23s;
  -webkit-animation-delay: -0.23s;
  -moz-animation-delay: -0.23s;
  left: 31px;
  top: 47px;
}

.loader span.block-16 {
  animation-delay: -0.32s;
  -o-animation-delay: -0.32s;
  -ms-animation-delay: -0.32s;
  -webkit-animation-delay: -0.32s;
  -moz-animation-delay: -0.32s;
  left: 47px;
  top: 47px;
}

@keyframes load {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-97px);
    transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    -webkit-transform: translateY(-97px);
    transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  85% {
    opacity: 0;
    -webkit-transform: translateY(97px);
    transform: translateY(97px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(97px);
    transform: translateY(97px);
  }
}

@-webkit-keyframes load {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    -webkit-transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  85% {
    opacity: 0;
    -webkit-transform: translateY(97px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(97px);
  }
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10001;
  font-family: "Merriweather", serif;
  border-bottom: solid 2px #F26F21;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.main-header.out {
  top: 0;
}

.main-header.out .main-header__logo {
  padding: 5px;
}

.main-header.out .main-header__logo img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  max-height: 100px;
  width: auto;
}

.main-header.out .main-header__body {
  height: 50px;
}

.main-header.out .main-nav__tel {
  visibility: hidden;
  opacity: 0;
  height: 0;
}

@media only screen and (max-width: 991px) {
  .main-header.out .main-nav__tel {
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}

.main-header.off {
  top: -300px;
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
}

.main-header__body {
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 98px;
  z-index: 2;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}

@media only screen and (max-width: 991px) {
  .main-header__body {
    height: 50px;
  }
}

.main-header__logo {
  padding: 19px 15px 14px;
  background-color: #FAF5F3;
  z-index: 2;
  max-width: 271px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media (max-width: 1120px) {
  .main-header__logo {
    max-width: 200px;
  }
}

@media only screen and (max-width: 575px) {
  .main-header__logo {
    max-width: 150px;
  }
}

.main-header.active {
  top: 0;
}

.main-nav {
  margin-left: auto;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-nav__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-nav__link {
  display: inline-block;
  margin-left: 30px;
  color: #000;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1120px) {
  .main-nav__link {
    font-size: 16px;
    margin-left: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .main-nav__link {
    margin-left: 0;
  }
}

.main-nav__link:hover {
  color: #F26F21;
}

.main-nav__link.active {
  color: #F26F21;
}

.main-nav__tel {
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 991px) {
  .main-nav__tel {
    margin-bottom: 20px;
    position: relative;
    top: 0;
  }
}

.burger-menu {
  display: none;
}

@media only screen and (max-width: 991px) {
  .main-header.active .main-header__item {
    z-index: 2;
  }
  .burger-menu {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 4;
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    cursor: pointer;
  }
  .burger-menu span::before,
  .burger-menu span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background-color: #F26F21;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .burger-menu span {
    display: block;
    position: relative;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background-color: #F26F21;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .burger-menu span::before {
    top: -7px;
  }
  .burger-menu span::after {
    bottom: -7px;
  }
  .burger-menu.active span {
    background-color: #fff;
    height: 0;
  }
  .burger-menu.active span::before {
    background-color: #fff;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
  }
  .burger-menu.active span::after {
    background-color: #fff;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(-45deg);
    transform: translate(0, -50%) rotate(-45deg);
  }
  .main-nav {
    padding-top: 100px;
    position: fixed;
    right: -100%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#4764C3), to(#2DCBFD)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #4764C3 0%, #2DCBFD 100%) 0% 0% no-repeat padding-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .main-nav.active {
    right: 0;
    overflow-y: auto;
  }
  .main-nav__list {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-nav__link {
    font-size: 22px;
    line-height: 48px;
    font-weight: bold;
    color: #fff;
    text-transform: none;
  }
  .main-header__login {
    margin-top: 20px;
    background-color: transparent;
    font-size: 22px;
    line-height: 48px;
    font-weight: bold;
  }
}

@media only screen and (max-width: 575px) {
  .main-nav {
    width: 100%;
  }
}

.hero {
  margin-top: 100px;
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: solid 2px #F26F21;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .hero {
    margin-top: 50px;
    max-height: 430px;
  }
}

@media only screen and (max-width: 767px) {
  .hero {
    max-height: 240px;
  }
}

.hero--lg {
  max-height: 600px;
}

.hero--md {
  max-height: 430px;
}

.hero--sm {
  max-height: 240px;
}

@media only screen and (max-width: 991px) {
  .hero--sm {
    max-height: 240px;
  }
}

.hero__title {
  display: inline-block;
  padding: 11px 28px 6px;
  position: absolute;
  bottom: -20px;
  background-color: #fff;
  border-radius: 5px 5px 0px 0px;
}

.hero-block {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  padding: 11px 28px 6px;
  position: relative;
  top: -60px;
  margin-bottom: -60px;
  background-color: #fff;
  border-radius: 5px 5px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .hero-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero-block__left {
  text-align: left;
}

.hero-block__right {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .hero-block__right {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.hero-block__price {
  display: inline-block;
  padding: 3px 7px;
  background: #4d9be3;
  border-radius: 5px;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
}

@media only screen and (max-width: 575px) {
  .hero-block__price {
    font-size: 10px;
  }
}

.hero-block .breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
  .hero-block .main-title {
    font-size: 20px;
  }
}

.main-footer {
  background-color: #FAF5F3;
  padding: 23px 0;
}

.main-footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  line-height: 26px;
  color: #7A7674;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social__link {
  margin-left: 15px;
  display: inline-block;
  font-size: 20px;
}

.social__link .icon-facebook::before {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #F26F21;
}

.social__link:hover .icon-facebook::before {
  color: #f58e51;
}

.pre-footer {
  border-top: 1px solid #F26F21;
  padding: 60px 0;
}

.pre-footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .pre-footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.pre-footer__about {
  margin-right: 60px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .pre-footer__about {
    margin-right: 0;
  }
}

.pre-footer .contacts {
  width: 50%;
  min-width: 400px;
}

@media only screen and (max-width: 575px) {
  .pre-footer .contacts {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.pre-footer__logo {
  margin-bottom: 36px;
  max-width: 164px;
}

.pre-footer__text {
  max-width: 530px;
  color: #7A7674;
}

.pre-footer__text p {
  margin-bottom: 26px;
  line-height: 1.625;
}

@media only screen and (max-width: 767px) {
  .contacts .title-md {
    text-align: center;
  }
}

.contacts ul.contacts__list {
  margin-top: 39px;
  list-style: none;
}

.contacts li.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts li.contacts__item:not(:last-child) {
  margin-bottom: 20px;
}

.contacts__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.contacts__img img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 145px;
  height: 145px;
}

@media only screen and (max-width: 575px) {
  .contacts__img img {
    width: 70px;
    height: 70px;
  }
}

.contacts__title {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #141B2D;
}

@media only screen and (max-width: 575px) {
  .contacts__title {
    font-size: 14px;
  }
}

.contacts__subtitle {
  margin-bottom: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
  font-style: italic;
  color: #7A7674;
}

@media only screen and (max-width: 575px) {
  .contacts__subtitle {
    font-size: 12px;
  }
}

.contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 36px;
  color: #7A7674;
}

@media only screen and (max-width: 575px) {
  .contacts__link {
    font-size: 12px;
    line-height: 25px;
  }
}

.contacts__link.accent {
  color: #F26F21;
}

.contacts__link span {
  margin-right: 10px;
  font-size: 20px;
}

.contacts--row .contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contacts--row .contacts__item {
  width: 50%;
}

@media only screen and (max-width: 991px) {
  .contacts--row .contacts__item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.search-section {
  margin-top: 60px;
  margin-bottom: 54px;
}

.search-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .search-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.search-form__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-form__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 5px;
  padding: 5px;
  width: 55px;
  height: 55px;
  line-height: 45px;
  text-align: center;
  font-size: 25px;
  background-color: #F26F21;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 767px) {
  .search-form__btn {
    width: 100%;
  }
}

.search-form__btn:hover {
  background-color: #D74120;
}

.search-form__add {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.search-form__add::before {
  content: "\e907";
  color: #f26f21;
  font-family: 'custom-icomoon';
  font-size: 20px;
  margin-right: 8px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.search-form__add.active::before {
  content: "\e906";
  color: #7a7674;
}

.search-form__add-block {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.search-form__add-block.active {
  max-height: 500px;
  visibility: visible;
  opacity: 1;
}

.tag-checkboxes {
  margin: -2.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tag-checkboxes__label {
  margin: 2.5px;
  cursor: pointer;
}

.tag-checkboxes__label span {
  display: inline-block;
  padding: 5px 7px;
  background: #faf5f3;
  border-radius: 3px;
  color: #7A7674;
  font-size: 13px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tag-checkboxes__label input:checked + span {
  font-weight: bold;
  background-color: #F26F21;
  color: #fff;
}

.tag-checkboxes input[type="checkbox"] {
  display: none;
}

.group-select {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 152px;
  margin-right: 9px;
  margin-bottom: 5px;
  margin-top: 5px;
  position: relative;
}

.group-select--multiple {
  min-width: 150px;
}

.group-select--text {
  width: 150px;
}

.group-select .select2-container {
  min-width: 100%;
}

.select2-container--default .select2-selection--single.select-main {
  background-color: #FAF5F3;
  border-radius: 5px;
  border: none;
}

.select2-container--default .select2-selection--multiple.select-main {
  background-color: #FAF5F3;
  border-radius: 5px;
  border: none;
  position: relative;
}

.select2-container .select2-selection--multiple.select-main,
.select2-container .select2-selection--single.select-main {
  padding: 5px;
  min-height: 55px;
  line-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select2-container--default .select2-selection--multiple.select-main .select2-selection__choice {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 2;
  padding: 0;
  color: #F26F21;
}

.select2-container--default .select2-selection--multiple.select-main .select2-selection__choice__remove {
  display: none;
}

.select2-container--default .select2-selection--single.select-main .select2-selection__arrow {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.select2-container--default .select2-selection--single.select-main .select2-selection__arrow b {
  border-color: #F26F21;
  border-style: solid;
  border-width: 0 1px 1px 0;
  display: inline-block;
  height: 0;
  left: 50%;
  padding: 4px;
  margin-left: -10px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  width: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.select2-container--default .select2-selection--single.select-main .select2-selection__rendered {
  color: #7A7674;
  font-size: 16px;
}

.select2-container--default .select2-selection--single.select-main[aria-expanded="true"] .select2-selection__arrow b {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.select2-dropdown.select-main-dropdown {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  border: none;
  min-width: 280px;
  font-size: 16px;
  color: #7A7674;
}

.select2-container--default .select-main-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #FAF5F3;
  color: #7A7674;
}

.select2-container--default .select-main-dropdown .select2-results__option[aria-selected=true] {
  background-color: #FAF5F3;
  color: #7A7674;
}

.select2-results__options::-webkit-scrollbar {
  width: 16px;
  background-clip: padding-box;
}

.select2-results__options::-webkit-scrollbar-track {
  background-color: #F4F4F4;
  height: 2px;
  background-clip: padding-box;
  border-right: 13px solid rgba(0, 0, 0, 0);
  border-top: 13px solid rgba(0, 0, 0, 0);
  border-bottom: 13px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #F26F21;
  border-right: 13px solid rgba(0, 0, 0, 0);
  border-top: 13px solid rgba(0, 0, 0, 0);
  border-bottom: 13px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-button {
  display: none;
}

.estate-gallery {
  margin-bottom: 60px;
}

.estate-gallery--light .estate-gallery__card {
  background-color: #FAF5F3;
}

.estate-gallery--light .options-list__item {
  background-color: #fff;
}

.estate-gallery__list {
  margin: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .estate-gallery__list {
    padding: 15px;
  }
}

.estate-gallery__item {
  margin: 15px;
  width: calc(33.333333% - 30px);
}

@media only screen and (max-width: 767px) {
  .estate-gallery__item {
    width: 100%;
    max-width: 400px;
    margin: 15px auto;
  }
}

.estate-gallery__card {
  background-color: #fff;
  -webkit-box-shadow: 0px 7.5px 10px -1.5px rgba(122, 118, 116, 0.1);
  box-shadow: 0px 7.5px 10px -1.5px rgba(122, 118, 116, 0.1);
  border-radius: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.estate-gallery__link:hover .estate-gallery__card {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}

.estate-gallery__img {
  width: 100%;
  padding-bottom: 68%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px 5px 0 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
}

.estate-gallery__price {
  padding: 9px 14px;
  position: absolute;
  right: 20px;
  top: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  font-weight: bold;
  font-size: 17px;
  line-height: 23px;
  color: #ffffff;
  background: #F26F21;
  border-radius: 5px;
}

@media only screen and (max-width: 991px) {
  .estate-gallery__price {
    font-size: 14px;
    line-height: 20px;
  }
}

.estate-gallery__mark {
  display: block;
  width: 129px;
  height: 126px;
  overflow: hidden;
  position: absolute;
  top: -4px;
  right: -4px;
}

.estate-gallery__mark span {
  padding: 12px 20px;
  display: block;
  font-size: 13px;
  line-height: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  left: -4px;
  top: 22px;
  width: 177px;
  background-color: #F26F21;
}

.estate-gallery__mark span:before, .estate-gallery__mark span:after {
  content: "";
  border-top: 4px solid #D74120;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  bottom: -4px;
}

.estate-gallery__mark span:before {
  left: 0;
}

.estate-gallery__mark span:after {
  right: 0;
}

.estate-gallery__mark--blue span {
  background-color: #2DCBFD;
}

.estate-gallery__mark--blue span::before, .estate-gallery__mark--blue span::after {
  border-top: 4px solid #4764C3;
}

.estate-gallery__content {
  padding: 40px 20px 12px;
}

.estate-gallery__subtitle {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: bold;
  color: #F26F21;
}

.estate-gallery__title {
  font-family: "Merriweather", serif;
  font-size: 21px;
  line-height: 31px;
  color: #141B2D;
  font-weight: bold;
  min-height: 93px;
}

@media only screen and (max-width: 991px) {
  .estate-gallery__title {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .estate-gallery__title {
    min-height: auto;
  }
}

.estate-gallery__text {
  border-top: 1px solid #e3dfdd;
  padding: 20px;
  color: #7A7674;
}

.estate-gallery__options {
  border-top: 1px solid #e3dfdd;
  padding: 17px;
}

.options-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #7A7674;
  font-size: 13px;
}

.options-list__item {
  margin: 3px;
  padding: 6px;
  width: calc(50% - 6px);
  background-color: #FAF5F3;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.options-list__item [class^="icon-"] {
  margin-right: 10px;
  font-size: 26px;
}

@media only screen and (max-width: 991px) {
  .options-list__item {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .options-list__item {
    width: calc(50% - 6px);
  }
}

@media only screen and (max-width: 575px) {
  .options-list__item {
    width: 100%;
  }
}

.articles__list {
  margin: -15px;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.articles__list--light .articles__item {
  background: #FAF5F3;
}

.articles__item {
  background: #ffffff;
  -webkit-box-shadow: 0px 7.5px 10px -1.5px rgba(122, 118, 116, 0.1);
  box-shadow: 0px 7.5px 10px -1.5px rgba(122, 118, 116, 0.1);
  border-radius: 5px;
  margin: 15px;
  width: calc(50% - 30px);
}

@media only screen and (max-width: 575px) {
  .articles__item {
    width: 100%;
  }
}

.articles__img {
  position: relative;
  width: 100%;
  padding-bottom: 67%;
}

.articles__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.articles__content {
  padding: 20px;
}

.articles__date {
  margin: 10px 0;
  display: inline-block;
  padding: 4px 8px;
  background-color: #F26F21;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  line-height: 18px;
  color: #FFFFFF;
}

.articles__text {
  border-top: solid 1px #E3DFDD;
  padding: 20px;
  line-height: 1.625;
  color: #7A7674;
}

.articles .link {
  margin-top: 19px;
}

.estate-top {
  background-color: #FAF5F3;
  padding: 79px 0 60px;
}

.estate-all {
  background-color: #fff;
}

.estate-all--light {
  background-color: #FAF5F3;
}

.estate-all--light .estate-gallery__card {
  background-color: #fff;
}

.estate-all--light .options-list__item {
  background-color: #FAF5F3;
}

.articles {
  padding: 71px 0 60px;
}

.articles--light {
  background-color: #FAF5F3;
}

.articles-page {
  padding: 0 0 60px;
}

.additional-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .additional-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .additional-info {
    padding-top: 45px;
  }
}

.additional-info__sidebar {
  width: 25%;
  min-width: 200px;
  margin-right: 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.additional-info__content {
  width: 70%;
  margin-right: 5%;
}

@media only screen and (max-width: 991px) {
  .additional-info__content {
    width: 100%;
  }
}

.default-paddings {
  padding-top: 43px;
  padding-bottom: 83px;
}

.contact-form {
  padding: 0 0 90px;
}

.text-section {
  padding-bottom: 60px;
}

.team {
  padding: 71px 0 30px;
}

.breadcrumb {
  margin-top: 10px;
  margin-bottom: 67px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 26px;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 30px;
  }
}

.breadcrumb > li a {
  color: #7A7674;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.breadcrumb > li a:after {
  content: ">>";
  margin: 0 10px;
}

.breadcrumb > li a:hover {
  color: #F26F21;
}

.breadcrumb > li {
  color: #F26F21;
}

.page-navigation__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-navigation .page-number {
  margin: 2.5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #FFFFFF;
  border-radius: 5px;
  color: #F26F21;
  font-size: 13px;
  font-weight: bold;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 575px) {
  .page-navigation .page-number {
    width: 25px;
    height: 25px;
  }
}

.page-navigation .page-number.active {
  background-color: #F26F21;
  color: #fff;
}

.page-navigation .page-prev,
.page-navigation .page-next {
  margin: 3px;
  padding: 9px;
  font-size: 11px;
  cursor: default;
}

.page-navigation .page-prev [class^="icon-"]::before,
.page-navigation .page-next [class^="icon-"]::before {
  color: #D0CBC9;
}

.page-navigation .page-prev.active,
.page-navigation .page-next.active {
  cursor: pointer;
}

.page-navigation .page-prev.active [class^="icon-"]::before,
.page-navigation .page-next.active [class^="icon-"]::before {
  color: #F26F21;
}

.page-navigation--light .page-number {
  background-color: #FAF5F3;
}

.single-article {
  padding-bottom: 86px;
}

.single-article__hero {
  margin-bottom: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
}

.single-article__hero img {
  width: 100%;
  height: 385px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 575px) {
  .single-article__hero img {
    height: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .single-article__hero {
    margin-bottom: 20px;
  }
}

.links-sidebar {
  position: relative;
}

.links-sidebar__btn {
  display: none;
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 30px;
  background-color: #FAF5F3;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .links-sidebar__btn {
    display: block;
  }
}

.links-sidebar__btn span {
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background-color: #F26F21;
}

.links-sidebar__btn span:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #F26F21;
  position: relative;
  top: -6px;
  margin-left: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.links-sidebar__btn span::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #F26F21;
  position: relative;
  top: 4px;
  margin-left: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.links-sidebar__btn.active span {
  height: 0;
}

.links-sidebar__btn.active span:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #F26F21;
  position: relative;
  top: -2px;
  margin-left: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.links-sidebar__btn.active span::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #F26F21;
  position: relative;
  top: 0px;
  margin-left: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.links-sidebar__list {
  padding: 20px;
  background-color: #FAF5F3;
  list-style: none;
  border-radius: 5px;
}

@media only screen and (max-width: 991px) {
  .links-sidebar__list {
    border-radius: 5px 0 5px 5px;
  }
}

@media only screen and (max-width: 575px) {
  .links-sidebar__list {
    padding: 5px;
  }
}

.links-sidebar__item:not(:last-child) {
  border-bottom: 1px solid #E3DFDD;
}

.links-sidebar__link {
  display: block;
  padding: 10px;
  background-color: #FAF5F3;
  font-size: 16px;
  line-height: 1.625;
  color: #7A7674;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.links-sidebar__link.active, .links-sidebar__link:hover {
  color: #F26F21;
}

.links-sidebar__link::before {
  content: "\e90b";
  color: #f26f21;
  font-size: 9px;
  font-family: "custom-icomoon";
  display: inline-block;
  margin-right: 10px;
}

@media only screen and (max-width: 991px) {
  .links-sidebar {
    width: 250px;
    position: absolute;
    top: -50px;
    left: calc(-250px - 30px);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  .links-sidebar.active {
    left: calc(-30px);
  }
}

@media only screen and (max-width: 767px) {
  .links-sidebar {
    top: 0;
    left: calc(-250px - 15px);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  .links-sidebar.active {
    left: calc(-15px);
  }
}

.property-slider {
  margin: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 991px) {
  .property-slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.property-slider-for {
  padding: 2px 5px 5px;
  width: 75%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media only screen and (max-width: 991px) {
  .property-slider-for {
    width: 100%;
  }
}

.property-slider-nav {
  margin: -5px 0;
  padding: 5px;
  width: 25%;
  max-width: 270px;
}

@media only screen and (max-width: 991px) {
  .property-slider-nav {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

.property-slider__image {
  max-height: 616px;
}

.property-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media only screen and (max-width: 991px) {
  .property-slider__image img {
    width: 100%;
    height: auto;
  }
}

.property-slider__thumbnail {
  border: 0;
  width: 100%;
  padding-bottom: 76.8%;
  margin-bottom: 7px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .property-slider__thumbnail {
    margin: 5px;
    padding-bottom: 5%;
  }
}

.property-slider-for .slick-list {
  height: 100%;
}

.property-slider-for .slick-track {
  height: 100%;
}

.property-slider-nav .slick-list {
  min-height: 100%;
}

.single-property {
  padding: 20px 0 60px;
  background-color: #fff;
}

.single-property__images {
  margin-bottom: 30px;
}

.single-property__options {
  margin-bottom: 10px;
}

.single-property .contacts {
  margin-top: 47px;
  margin-bottom: 59px;
}

.property-options__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 575px) {
  .property-options__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.property-options__item {
  width: 20%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 13px 22px;
  border-right: 1px solid #e3dfdd;
  border-top: 1px solid #e3dfdd;
  border-bottom: 1px solid #e3dfdd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .property-options__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .property-options__item {
    width: 100%;
    border-left: 1px solid #e3dfdd;
    border-bottom: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }
}

.property-options__item:first-child {
  border-left: 1px solid #e3dfdd;
  border-radius: 5px 0px 0px 5px;
}

@media only screen and (max-width: 575px) {
  .property-options__item:first-child {
    border-radius: 5px 5px 0px 0px;
  }
}

.property-options__item:last-child {
  border-radius: 5px 0px 0px 5px;
}

@media only screen and (max-width: 575px) {
  .property-options__item:last-child {
    border-radius: 0px 0px 5px 5px;
    border-bottom: 1px solid #e3dfdd;
  }
}

.property-options__icon {
  margin-right: 17px;
}

@media only screen and (max-width: 991px) {
  .property-options__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .property-options__icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
}

.property-options__icon span:before {
  color: #F26F21;
  font-size: 35px;
}

.property-options__content {
  font-size: 13px;
  line-height: 1;
  color: #7A7674;
}

.property-options__title {
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .property-options__title {
    min-height: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .property-options__title {
    min-height: auto;
  }
}

.property-options__text {
  margin-top: 10px;
  color: #F26F21;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}

@media only screen and (max-width: 767px) {
  .property-options__text {
    font-size: 14px;
  }
}

.calc-banner {
  padding: 20px;
  background: #FAF5F3;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 575px) {
  .calc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.calc-banner__content {
  padding-right: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #7A7674;
}

@media only screen and (max-width: 575px) {
  .calc-banner__content {
    margin-bottom: 10px;
  }
}

.calc-banner__title {
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.5;
  color: #141B2D;
}

@media only screen and (max-width: 767px) {
  .calc-banner__title {
    font-size: 18px;
  }
}

.calc-banner__btn {
  min-width: 190px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 30px;
  background-color: #4d9be3;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 27px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.calc-banner__btn:hover {
  background-color: #2DCBFD;
}

.calc-banner__btn .icon-calc {
  font-size: 20px;
  margin-right: 11px;
}

.map-wrap .map {
  margin-top: 31px;
  width: 100%;
  height: 500px;
}

@media only screen and (max-width: 767px) {
  .map-wrap .map {
    height: 300px;
  }
}

.team--light {
  background-color: #FAF5F3;
}

.team-list {
  margin: -15px;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.team-list--light .articles__item {
  background: #FAF5F3;
}

.team-list__item {
  background: #ffffff;
  border-radius: 5px;
  margin: 15px;
  width: calc(33.33333% - 30px);
}

@media only screen and (max-width: 991px) {
  .team-list__item {
    width: calc(50% - 30px);
  }
}

@media only screen and (max-width: 575px) {
  .team-list__item {
    width: 100%;
  }
}

.team-list__img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.team-list__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  /*-o-object-fit: cover;*/
  /*object-fit: cover;*/
  -o-object-fit: contain;
  object-fit: contain;
}

.team-list__content {
  padding: 23px 20px;
}

.team-list__name {
  margin-bottom: 5px;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.5;
  color: #141B2D;
}

@media only screen and (max-width: 767px) {
  .team-list__name {
    font-size: 18px;
  }
}

.team-list__position {
  color: #7A7674;
}

.team-list__contacts {
  border-top: 1px solid #e3dfdd;
  padding: 18px 20px;
}

.contact-form__text {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.form-contact {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-contact__img {
  padding-right: 40px;
  width: 50%;
}

@media only screen and (max-width: 991px) {
  .form-contact__img {
    padding-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .form-contact__img {
    display: none;
  }
}

.form-contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

.form-contact .form {
  padding-left: 40px;
  width: 50%;
}

@media only screen and (max-width: 991px) {
  .form-contact .form {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .form-contact .form {
    width: 100%;
    padding-left: 0;
  }
}

.text-group {
  position: relative;
  padding-bottom: 20px;
}

.text-group label {
  position: absolute;
  pointer-events: none;
  left: 1px;
  top: 0;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  color: #707070de;
}

.text-group input {
  background-color: transparent;
  padding: 0 0 12px 0;
  font-size: 16px;
  line-height: 1.625;
  border: 0;
  display: block;
  width: 100%;
  margin-top: 20px;
  border-bottom: 2px solid #F26F21;
  background-repeat: no-repeat;
  padding-left: 1px;
  -webkit-transition: 0.3s cubic-bezier(0.64, 0.09, 0.08, 1) all;
  transition: 0.3s cubic-bezier(0.64, 0.09, 0.08, 1) all;
}

.text-group input:focus ~ label, .text-group input:not(:placeholder-shown) ~ label {
  color: #F26F21;
  font-size: 11px;
  top: -20px;
}

.text-group:first-child input {
  margin-top: 10px;
}

.text-group input.error {
  border-bottom: 1px solid #b50000;
}

.text-group input.error ~ label {
  color: #b50000;
  font-size: 11px;
  top: 0;
}

.text-group .error-message {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #b50000;
  position: absolute;
  left: 1px;
  top: 20px;
}

.textarea-group {
  margin-top: 20px;
  margin-bottom: 20px;
}

.textarea-group textarea {
  font-size: 16px;
  line-height: 1.625;
  padding: 13px 20px;
  max-width: 100%;
  background-color: #FAF5F3;
  border-radius: 5px;
  resize: none;
  margin: 0;
}

.contact-banner {
  padding: 30px;
  min-height: 217px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-banner__content {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.48;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .contact-banner__content {
    max-width: 200px;
  }
}

.contact-banner__link {
  display: inline-block;
  padding: 3px 10px;
  color: #ffffff;
  background-color: #F26F21;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-banner__link:hover {
  background-color: #D74120;
}

.calc-amounts {
  margin-bottom: 30px;
  font-family: "Merriweather", serif;
}

.calc-amounts__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #FAF5F3;
  border-radius: 5px;
}

.calc-amounts__item {
  width: 25%;
  padding: 25px 20px;
}

.calc-amounts__item:not(:last-child) {
  border-right: 1px solid #e3dfdd;
}

@media only screen and (max-width: 575px) {
  .calc-amounts__item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e3dfdd;
  }
}

@media only screen and (max-width: 991px) {
  .calc-amounts__item:nth-child(2n) {
    border-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .calc-amounts__item:first-child, .calc-amounts__item:nth-child(2) {
    border-bottom: 1px solid #e3dfdd;
  }
}

@media only screen and (max-width: 991px) {
  .calc-amounts__item {
    width: 50%;
  }
}

@media only screen and (max-width: 575px) {
  .calc-amounts__item {
    width: 100%;
    padding: 10px;
  }
}

.calc-amounts__title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 17px;
  line-height: 25px;
  color: #141B2D;
}

.calc-amounts__total {
  display: inline-block;
  padding: 3px 10px;
  line-height: 31px;
  font-size: 24px;
  border-radius: 5px;
  background-color: #F26F21;
  color: #fff;
  font-weight: bold;
}

.calc-amounts__sum {
  display: inline-block;
  padding: 3px 0;
  font-size: 24px;
  line-height: 31px;
  color: #F26F21;
  font-weight: bold;
}

.calc-ranges__list {
  margin: -15px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.calc-ranges__item {
  margin: 15px;
  padding: 20px;
  width: calc(33.3333% - 30px);
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}

@media only screen and (max-width: 991px) {
  .calc-ranges__item {
    width: 100%;
  }
}

.calc-ranges__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calc-ranges__label {
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-size: 17px;
  line-height: 31px;
  color: #141B2D;
}

.calc-ranges__amount {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 5px;
  background-color: #F26F21;
  color: #FAF5F3;
  font-weight: bold;
  font-size: 17px;
  line-height: 23px;
}

.like-select {
  padding: 10px;
  background-color: #FAF5F3;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  cursor: pointer;
}

.like-select__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-color: #F26F21;
  border-style: solid;
  border-width: 0 1px 1px 0;
  display: inline-block;
  height: 0;
  padding: 4px;
  margin-top: -4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.like-select__arrow.active {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.like-select__placeholder {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.like-select__dropdown {
  display: none;
  padding: 0 10px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  z-index: 100;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  max-height: 300px;
  overflow-y: auto;
}

.like-select__dropdown::-webkit-scrollbar {
  width: 16px;
  background-clip: padding-box;
}

.like-select__dropdown::-webkit-scrollbar-track {
  background-color: #f4f4f4;
  height: 2px;
  background-clip: padding-box;
  border-right: 13px solid rgba(0, 0, 0, 0);
  border-top: 13px solid rgba(0, 0, 0, 0);
  border-bottom: 13px solid rgba(0, 0, 0, 0);
}

.like-select__dropdown::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #F26F21;
  border-right: 13px solid rgba(0, 0, 0, 0);
  border-top: 13px solid rgba(0, 0, 0, 0);
  border-bottom: 13px solid rgba(0, 0, 0, 0);
}

.like-select__dropdown::-webkit-scrollbar-button {
  display: none;
}

.like-select__list {
  list-style: none;
}

.like-select__checkbox {
  display: block;
  position: relative;
  padding-left: 33px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  color: #7A7674;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* On mouse-over, add a grey background color */
  /* Show the checkmark when checked */
}

.like-select__checkbox:first-child {
  margin-top: 20px;
}

.like-select__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.like-select__checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 23px;
  width: 23px;
  background: #ffffff;
  border: 1px solid #eae7e6;
}

.like-select__checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.like-select__checkbox .checkmark:after {
  content: "\e905";
  color: #ffffff;
  width: 100%;
  font-family: "custom-icomoon";
  font-size: 13px;
  line-height: 23px;
  text-align: center;
}

.like-select__checkbox:hover input ~ .checkmark {
  background-color: #FAF5F3;
}

.like-select__checkbox input:checked ~ .checkmark:after {
  display: block;
  color: #f26f21;
}

/*# sourceMappingURL=styles.css.map */

.request {
  padding: 30px 0;
  background-color: #f26f21;
  color: white;
}

.request__title {
  margin-bottom: 22px;
  font-family: Merriweather;
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 31px;
}

.request-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .request-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.request-form .btn {
  margin-bottom: 10px;
  min-width: 220px;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .request-form .btn {
    margin-right: auto;
    margin-left: auto;
  }
}

.request-form .text-group {
  min-width: 220px;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .request-form .text-group {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.text-group--white {
  margin-bottom: 10px;
  padding-bottom: 0;
}

.text-group--white label {
  left: 1px;
  top: 5px;
  color: #ffffff;
}

.text-group--white input {
  color: #fff;
  padding: 0 0 3px 0;
  margin-top: 20px;
  border-bottom: 2px solid #fff;
}

.text-group--white input:focus ~ label, .text-group--white input:not(:placeholder-shown) ~ label {
  color: #fff;
  font-size: 11px;
  top: 0;
}

.text-group--white:first-child input {
  margin-top: 20px;
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 33px;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  color: #7A7674;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* On mouse-over, add a grey background color */
  /* Show the checkmark when checked */
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #ffffff;
  border: 2px solid #eae7e6;
}

.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox .checkmark:after {
  content: "\e905";
  color: #ffffff;
  width: 100%;
  font-family: "custom-icomoon";
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.checkbox:hover input ~ .checkmark {
  background-color: #FAF5F3;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
  color: #f26f21;
}

.checkbox--white {
  color: #fff;
}

.checkbox--white .checkmark {
  background: #F26F21;
}

.checkbox--white:hover input ~ .checkmark {
  background-color: #F26F21;
}

.checkbox--white input:checked ~ .checkmark:after {
  display: block;
  color: #fff;
}

.btn--white {
  padding: 14px 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 2px solid #F26F21;
  border-radius: 5px;
  color: #F26F21;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn--white:hover {
  background-color: #F26F21;
  color: #fff;
  border: 2px solid #fff;
}