/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  transition: 0.3s;
  transition-property: all;
  text-decoration: none;
}
/****************************************************************************************************/
* {
  box-sizing: border-box;
}
input {
  border: none;
}
select {
  outline: none;
  border: none;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
	font-size: 14px;
	line-height: 19px;
	color: #8890AF;
}
html,
body {
	height: 100%;
  margin: 0;
  padding: 0;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}
body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 25px;
  background: #fff;
	color: #000000;
}
a {
	color: #1C1D35;
}
a:hover {
	color: #2A3E8B;
}
input,
textarea,
select,
button {
  font-family: inherit;
  -webkit-appearance: none;
}
select {
  cursor: pointer;
}
button {
  border: none;
  cursor: pointer;
}
img {
	max-width: 100%;
	height: auto;
}
.clearfix::after {
  display: table;
  content: '';
  clear: both;
}
.uppercase {
  text-transform: uppercase;
}
.black {
  font-weight: 900;
}
.bold {
  font-weight: bold;
}
.semibold {
  font-weight: 600;
}
.nowrap {
  white-space: nowrap;
}
.relative {
  position: relative;
}
.text-center {
  text-align: center;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
	max-width: 1200px;
  padding: 0 20px;
}
p:last-child {
	margin-bottom: 0;
}
strong {
	font-weight: 700;
}

.header {
	height: 40px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 45px;
  z-index: 999;
}
.header > .wrapper {
	height: 100%;
	display: flex;
	justify-content: space-between;
}

.header__logo {

}
.header__logo:hover {
  opacity: 0.7;
}
.mobile-menu__btn {
  display: none;
}
.mobile-menu__checkbox {
  display: none;
}

.header__menu {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin-top: -15px;
}
.header__menu li {
  margin-left: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.header__menu li a {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  position: relative;
}
.header__menu li a:after {
  content: '';
  display: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  height: 1px;
  background: #D2AB7B;
  width: calc(100% - 42px);
  transform: translateX(-50%);
}
.header__menu li a.active,
.header__menu li a:hover {
  color: #D2AB7B;
}
.header__menu li a.active:after,
.header__menu li a:hover:after {
  display: block;
}

.banner {
  background: url('../img/banner-bg.png') no-repeat center top transparent;
  background-size: cover;
  min-height: 575px;
  padding: 190px 0 155px;
}
.banner__content {
	max-width: 100%;
  margin-top: 50px;
  position: absolute;
  text-align: center;
}
.banner__content-title {
  font-family: Oswald;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  letter-spacing: 0.25em;
text-transform: uppercase;
  color: #D2AB7B;
  margin-bottom: 25px;
  text-align: center;
}
.banner__content-text {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  margin-bottom: 38px;
}
.banner__content-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  background: #272727;
  padding: 8px 35px;
}
.banner__content-btn:hover {
  background: #D2AB7B;
  color: #fff;
}

.title {
  font-family: Oswald;
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 44px;
  text-align: center;
  color: #272727;
  margin-bottom: 20px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.our-mission {
  padding: 60px 0;
  text-align: center;
}
.our-mission > .wrapper {
	max-width: 100%;
}

.services {
  padding: 60px 0;
  text-align: center;
  background: #F5F5F5;
}
.services > .wrapper {
	max-width: 995px;
}
.services-title {
  color: #D2AB7B;
  margin-bottom: 40px;
}
.services-title:after {
  display: none;
}
.services-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.services-item {
  width: 78px;
  position: relative;
}

.services-item:last-child:after {
  display: none;
}
.services-item svg {
  width: 100%;
  height: auto;
}
.services-item:hover svg path,
.services-item_active svg path {
  fill: #D2AB7B;
}
.services-text {
  display: none;
}
.services-text_active {
  display: block;
}
.services-text__title {
  font-family: Oswald;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 29px;
  margin-bottom: 20px;
  color: #272727;
}
.services-text__text {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #272727;
}

.image-right {
  display: flex;
  margin-top: 60px;
  margin-bottom: 60px;
}
.image-right__left {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}
.image-right__left-wrapper {
  max-width: 540px;
  text-align: center;
}
.image-right-title {
}
.image-right-text {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  color: #4D5665;
  margin-bottom: 30px;
}
.image-right-subtitle {
  font-family: Oswald;
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 29px;
  color: #D2AB7B;
}
.image-right__right {
  width: 560px;
  min-height: 400px;
  position: relative;
}

.image-right__right img {
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.request-block {
  background: url('../img/req_bg.png') no-repeat center top transparent;
  background-size: cover;
  padding: 23px 0;
}
.request-block .wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.request-block__left {}
.request-block-title {
  font-family: Oswald;
  font-style: 300;
  font-weight: regular;
  font-size: 30px;
  line-height: 29px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.request-block-text {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.request-block-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #B19777;
  padding: 8px 33px;
}
.request-block-btn:hover {
  background: #D2AB7B;
  color: #fff;
}

.principles-block {
  padding: 60px 0;
}
.principles-block .wrapper {
  position: relative;
}
.principles-block-title {
  margin-bottom: 40px;
}
.principles-block-title:after {
  display: none;
}
.principles-block-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.principles-block-item {
  width: calc(33.33% - 26px);
  height: auto;
  background: #F6F6F6;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.principles-block-item__title {
  font-family: Oswald;
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  color: #101D2F;
  margin-bottom: 16px;
}
.principles-block-item__text {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  color: #4D5665;
  margin-bottom: 31px;
  flex: 1;
}
.principles-block-item__img {
  border-top: 5px solid #D2AB7B;
  margin: 0 -30px -40px;
}
.principles-block-item__img img {
  display: block;
  width: 100%;
}

.swiper-pagination-bullets {
  display: none;
}
.swiper-pagination {
  transform: translateX(-50%);
  left: 50%;
  bottom: -30px;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 2px;
  display: inline-block;
  border-radius: 0;
  background: #D2AB7B;
  opacity: 1;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 2px;
  display: inline-block;
  border-radius: 0;
  background: #959EAC;
  opacity: 1;
  margin: 0 2px;
}
.swiper-pagination-bullet-active {
  background: #D2AB7B;
}

.footer {
  background: #272727;
  padding: 60px 0;
}
.footer .wrapper {
  display: flex;
}
.footer-left {
  padding-right: 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-logo {
  margin-bottom: 13px;
}
.footer-phone {
  margin-bottom: 20px;
}
.footer-phone a {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #959EAC;
}
.footer-phone a:hover {
  text-decoration: underline;
}
.footer-address {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  color: #959EAC;
}
.footer-email {
  margin-bottom: 20px;
  flex: 1;
}
.footer-email a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #959EAC;
}
.footer-email a:hover {
  text-decoration-line: none;
}
.footer-copyright {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #959EAC;
}
.footer-right {
  padding-left: 20px;
  width: 50%;
}

.form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.form-title {
  font-family: Oswald;
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  color: #D2AB7B;
  margin-bottom: 15px;
  width: 100%;
}
.form-row {
  margin-bottom: 15px;
  width: 100%;
}
.form-row:last-child {
  margin-bottom: 0;
}
.form-row_half {
  width: calc(50% - 10px);
}
.form-row_textarea {
  margin-bottom: 14px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #959EAC;
  background: transparent;
  border: 1px solid #959EAC;
  height: 40px;
  width: 100%;
  outline: 0;
  padding: 0 15px;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row textarea:focus {
  background: #fff;
}
.form-row textarea {
  height: 100px;
  padding-top: 9px;
}
.form-row input[type="text"]::placeholder,
.form-row input[type="email"]::placeholder,
.form-row textarea::placeholder {
  color: #959EAC;
}
.form-row input[type="submit"] {
  width: 165px;
  height: 40px;
  border: 0;
  outline: 0;
  background: #D2AB7B;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
}
.form-row input[type="submit"]:hover {
  background: #FFC770;
  color: #fff;
}
.form-row p {
  color: #fff;
}

@media only screen and (max-width: 980px) {
  .header {
    top: 35px;
  }
  .header__logo {
    width: 280px;
  }

  .swiper-pagination-bullets {
    display: block;
  }

  .mobile-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 10px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 999;
  }
  .mobile-menu__icon {
    display: block;
    position: relative;
    background: white;
    width: 100%;
    height: 1px;
  }
  .mobile-menu__icon::after, .mobile-menu__icon::before {
    content: "";
    display: block;
    position: absolute;
    background: white;
    width: 100%;
    height: 1px;
    transition: 0.4s;
  }
  .mobile-menu__icon::after {
    top: 5px;
  }
  .mobile-menu__icon::before {
    top: -5px;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn {
    position: fixed;
    top: 35px;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon {
    background: transparent;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::before, .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::after {
    top: 0;
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .mobile-menu__checkbox:checked ~ .mobile-menu__btn .mobile-menu__icon::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

  .header__menu {
    display: none;
  }

  .header-active .header__menu {
    display: block;
    position: fixed;
    top: 15px;
    right: 0;
    padding: 99px 20px;
    height: 100%;
    background: #272727;
  }
  .header__menu li {
    margin-left: 0;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  .header__menu li a:after {
    display: none !important;
  }

  .banner {
    min-height: 100%;
    padding: 240px 0 60px;
    background: url(../img/banner-bg-small.png) no-repeat center top transparent;
    background-size: cover;
  }
  .banner__content-title {
    max-width: 100%;
  }
  .services-item:after {
    display: none;
  }
  .services-item svg {
    width: 78px;
    height: auto;
  }
  .image-right {
    max-width: 100%;
    display: flex;
    margin-top: 60px;
    margin-bottom: 60px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .image-right__left {
    max-width: 100%;
    padding: 60px 20px;
  }
  .image-right-subtitle {
    font-weight: 300;
  }
  .image-right__right {
    display: block;
    max-width: 100%;
    height: 287px;
    min-height: auto;
  }

  .request-block .wrapper {
    flex-direction: column;
  }
  .request-block-title {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
    text-align: center;
  }
  .request-block-text {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer .wrapper {
    flex-direction: column;
  }
  .footer-left {
    padding-right: 0;
    width: 100%;
  }
  .footer-right {
    padding-left: 0;
    width: 100%;
    margin-top: 30px;
  }
  .form-row_half {
    width: 100%;
  }
  .form-row:last-child {
    text-align: center;
  }
}
