@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
.header__inner {
  padding-top: 60px;
  background-color: #000;
  padding-top: 29px;
  padding-bottom: 30px;
  border-bottom: 1px solid #383838;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  position: relative;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__item {
  font-size: 16px;
  margin-right: 75px;
  color: #fff;
  transition: all 0.3s ease;
}
.header__item:last-child {
  margin-right: 0;
}
.header__item:hover {
  color: #b49c73;
}
.header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #b49c73;
  transition: opacity 0.3s ease;
}
.header__contact:hover {
  opacity: 0.7;
}
.header__phone {
  margin-right: 20px;
}
.header__burger.header__burger {
  display: none;
}
@media (max-width: 1199px) {
  .header__item {
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .header__inner {
    padding-top: 30px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .header__burger.header__burger {
    display: flex;
    margin-left: 20px;
  }
  .header__last {
    display: flex;
    align-items: center;
  }
  .header__list {
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }
  .header__item {
    margin-right: 0;
    font-size: 27px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .header__contact {
    display: none;
  }
}

.header-sub__inner {
  background-color: black;
  padding-top: 29px;
  padding-bottom: 30px;
}

@media (min-width: 1200px) {
  .main__top {
    display: flex;
  }
}
.hero {
  position: relative;
}
.hero > img {
  position: absolute;
  top: -225px;
  left: 0;
  width: 100%;
  height: calc(100% + 600px);
  z-index: -1;
}
.hero__inner {
  margin-top: 54px;
}
.hero__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.hero__left {
  max-width: 470px;
  margin-top: 154px;
}
.hero__right {
  position: relative;
  width: 900px;
  height: 650px;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 22%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__text {
  color: #B8B8B8;
  font-size: 15px;
  line-height: 27px;
}
.hero__text-sm {
  font-size: 15px;
  line-height: 24px;
  color: #B8B8B8;
}
.hero__text:nth-child(3) {
  margin-bottom: 20px;
}
.hero__text:nth-child(3) span {
  color: #b49c73;
}
.hero__title {
  font-size: 56px;
  line-height: 67px;
  color: #ffffff;
  margin-top: 4px;
  margin-bottom: 30px;
}
.hero__more {
  background-color: #F2D19B;
  margin-top: 79px;
  color: #713A1D !important;
}
.hero__more::before {
  border-color: #fff;
}
.hero__more::after {
  background-color: #252525;
}
.hero__more:hover {
  background-color: #3d3d3d;
  color: #fff !important;
}
@media (max-width: 1600px) {
  .hero__image {
    left: 22%;
  }
}
@media (max-width: 1399px) {
  .hero__container {
    align-items: center;
  }
  .hero__left {
    margin-top: 0;
  }
  .hero__right {
    width: 50%;
    height: 400px;
  }
  .hero__image {
    left: 0;
  }
  .hero > img {
    height: calc(100% + 800px);
  }
}
@media (max-width: 1199px) {
  .hero__left {
    max-width: 40%;
  }
  .hero__title {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .hero__more {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__left {
    max-width: 80%;
  }
  .hero__right {
    align-self: center;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .hero__left {
    max-width: 90%;
  }
  .hero__right {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .hero > img {
    height: 300%;
  }
  .hero__left {
    max-width: 100%;
  }
}

.contact__box {
  background-color: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
}
.contact__box .container {
  display: flex;
  justify-content: space-between;
}
.contact__box .item {
  position: relative;
  width: 25%;
  height: auto;
  padding: 24px 19px 24px 10px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact__box .item__icon {
  margin-bottom: 17px;
}
.contact__box .item__text {
  font-size: 15px;
}
.contact__box .item__main {
  font-size: 20px;
  line-height: 28px;
}
.contact__box .item a:hover {
  opacity: 0.7;
}
.contact__box .item h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.contact__box .item:last-child {
  padding: 24px 15px 24px 35px;
}
.contact__box .item__gold {
  background-color: #EEC383;
}
@media (max-width: 1399px) {
  .contact__box .item {
    width: 250px;
    margin-top: 50px;
  }
}
@media (max-width: 1199px) {
  .contact__box .item {
    width: 223px;
    height: 115px;
    padding: 15px;
  }
  .contact__box .item__text {
    font-size: 14px;
  }
  .contact__box .item__main {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .contact__box .container {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
  }
  .contact__box .item {
    margin: 0 6px 12px;
  }
}
@media (max-width: 575px) {
  .contact__box .item {
    width: 90%;
    height: auto;
  }
}

.specialization__inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #000;
  background-color: #fff;
  padding-bottom: 40px;
  position: relative;
  z-index: 9999;
}
.specialization__inner h2 {
  margin-top: 20px;
  padding-bottom: 20px;
}
.specialization .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialization__left {
  width: 45%;
  margin-right: 5%;
  margin-top: -200px;
  margin-bottom: 50px;
}
.specialization__right {
  width: 100%;
  margin-top: -200px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .specialization__right {
    width: 48%;
  }
}
.specialization__text {
  font-size: 15px;
  line-height: 27px;
}
.specialization__text-sm {
  font-size: 15px;
}
.specialization__text a {
  font-weight: bold;
  text-decoration: underline;
}
.specialization__text a:hover {
  opacity: 0.8;
}
.specialization__title {
  font-size: 40px;
  line-height: 48px;
  color: #b49c73;
  margin-top: 10px;
  margin-bottom: 60px;
}
.specialization__more {
  margin-top: 50px;
  background-color: #b49c73;
}
.specialization__more::after {
  background-color: #BA914E;
}
.specialization__more:hover {
  background-color: #ddaf65;
}
.specialization__right-first {
  margin-right: 32px;
}
.specialization__right-first .item:last-child {
  margin-bottom: 0;
}
.specialization__right-second .item:last-child {
  margin-bottom: 0;
}
.specialization__right .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 59px 6px 32px 32px;
  width: 255px;
  height: 193px;
  margin-bottom: 32px;
}
.specialization__right .item__square {
  width: 50px;
  height: 50px;
  background: #b49c73;
  margin-bottom: 10px;
}
.specialization__right .item__text {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1199px) {
  .specialization__inner {
    margin-top: 0px;
  }
  .specialization .container {
    flex-direction: column;
    justify-content: flex-start;
  }
  .specialization__left {
    margin-top: 50px;
    width: 80%;
  }
  .specialization__right {
    flex-direction: column;
    margin-top: 50px;
  }
  .specialization__right-first {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .specialization__right-first, .specialization__right-second {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .specialization__right-first .item, .specialization__right-second .item {
    margin-right: 10px;
  }
  .specialization__right-first .item:last-child, .specialization__right-second .item:last-child {
    margin-right: 0;
  }
  .specialization .item {
    margin-bottom: 0;
    padding: 20px 6px 32px 15px;
    width: 240px;
    height: 193px;
  }
  .specialization .item__text {
    font-size: 17px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .specialization__left {
    width: 100%;
  }
  .specialization__right-first {
    flex-wrap: wrap;
  }
  .specialization__right .item {
    margin-bottom: 10px;
  }
  .specialization__right-second {
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .specialization__right {
    padding-bottom: 40px;
  }
  .specialization__right .item {
    margin-right: 0;
  }
  .specialization__right-first, .specialization__right-second {
    width: 90%;
  }
  .specialization__right-second {
    flex-wrap: wrap;
  }
  .specialization__right .item {
    width: 100%;
  }
}
.specialization .map__left {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
}
.specialization .map__right {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 920px) {
  .specialization .map__left {
    width: 50%;
    padding-right: 5%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .specialization .map__right {
    width: 50%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.spec {
  background-color: #fff;
  padding-top: 128px;
}
.spec .specs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.spec .specs__box {
  padding: 32px;
  border: 1px solid #E3E3E3;
  width: 100%;
}
.spec .specs__box svg {
  width: 50px;
  fill: #BA914E;
  height: 50px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .spec .specs__box {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .spec .specs__box {
    width: 25%;
  }
}
.spec .specs__box:hover {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.spec .specs img {
  padding-bottom: 15px;
}
.spec .specs h3 {
  font-weight: 500;
  font-size: 22.78px;
  line-height: 30px;
}
.spec .specs p {
  padding-top: 15px;
  padding-bottom: 30px;
}

.contact {
  background-image: url(../assets/img/icon/mb-grey.svg);
  background-repeat: no-repeat;
  background-position: 185px 83px;
  background-size: 76%;
}
@media (min-width: 1200px) {
  .contact {
    background-position: 289px 96px;
    background-size: auto;
  }
}
@media (min-width: 1400px) {
  .contact {
    background-position: 450px 150px;
    background-size: auto;
  }
}
.contact__inner {
  padding-top: 130px;
  padding-bottom: 50px;
}
.contact .container {
  display: flex;
  justify-content: space-between;
}
.contact__left {
  width: 80%;
}
.contact .contact-form input, .contact .contact-form textarea {
  display: flex;
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 10px;
  font-family: inherit;
}
.contact .contact-form textarea {
  padding-top: 10px;
  height: 120px;
}
.contact .contact-form .form-group {
  display: flex;
  align-items: flex-start;
}
.contact .contact-form .form-group .checkbox-in {
  width: 10%;
  height: 20px;
  padding-left: 0;
}
.contact .contact-form .form-group .privacy-policy-text {
  width: 90%;
}
.contact .contact-form .specialization__more {
  height: 54px;
  top: inherit;
  text-transform: uppercase;
}
.contact .contact-form .specialization__more:after {
  background-color: #000000;
  top: -2px;
}
@media (max-width: 575px) {
  .contact .left {
    margin-bottom: 10px;
  }
}
.contact__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 96%;
  position: relative;
}
.contact__right p {
  font-size: 16.78px;
  line-height: 23px;
}
@media (min-width: 968px) {
  .contact__right p {
    font-weight: 500;
    font-size: 22.78px;
  }
}
.contact__right iframe {
  width: 639px;
  height: 718px;
}
.contact__title {
  margin-top: 10px;
  margin-bottom: 30px;
}
.contact__text {
  margin-bottom: 68px;
}
.contact__text-sm {
  font-size: 15px;
  color: #707070;
}
.contact .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 53px;
}
.contact .item__text {
  margin-left: 27px;
}
.contact .item__text-title {
  font-size: 15px;
  color: #B8B8B8;
}
.contact .item__text-main {
  font-size: 22px;
  line-height: 27px;
  color: #000;
}
.contact .item__text a {
  transition: opacity 0.3s ease;
}
.contact .item__text a:hover {
  opacity: 0.7;
}
@media (max-width: 1399px) {
  .contact__right {
    width: 50%;
  }
  .contact__right iframe {
    width: 100%;
    height: 596px;
  }
}
@media (max-width: 1199px) {
  .contact__inner {
    margin-top: 100px;
  }
  .contact__right iframe {
    height: 522px;
  }
}
@media (max-width: 1199px) {
  .contact__left {
    width: 50%;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .contact__inner {
    margin-top: 0px;
  }
  .contact .container {
    flex-direction: column;
  }
  .contact__left {
    width: 90%;
    margin-right: 0;
  }
  .contact__right {
    width: 100%;
  }
  .contact__right iframe {
    height: 100%;
  }
  .contact .item__text-main {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .contact__left {
    width: 100%;
  }
  .contact .item {
    margin-bottom: 30px;
  }
}
@media (min-width: 920px) {
  .contact .contact__right {
    margin-left: 40px;
  }
}
.contact .contact__right p {
  font-size: 15px;
}
@media (min-width: 920px) {
  .contact .contact__left {
    margin-right: 15px;
  }
}
@media (max-width: 920px) {
  .contact .contact__left {
    margin-bottom: 40px;
  }
}
.contact .contact__left p {
  line-height: 23px;
  font-size: 15px;
}

@media (max-width: 991px) {
  .main__top .right img {
    padding: 0 !important;
    width: 60% !important;
  }
}

.about__inner {
  position: relative;
  padding-top: 25px;
}
.about__inner > img {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
  height: 1092px;
}
.about .title {
  color: #000;
}
.about .text {
  font-size: 16px;
}
.about-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 68px;
  padding-top: 110px;
}
.about-top__text {
  max-width: 737px;
}
.about-top__text-sm {
  font-size: 15px;
  color: #B8B8B8;
}
.about-des {
  margin-top: 56px;
  margin-bottom: 61px;
}
.about-des__text {
  margin-top: 30px;
  max-width: 95%;
}
.about-links {
  display: flex;
  justify-content: space-between;
  padding-bottom: 268px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .about-links {
    flex-direction: row;
  }
}
.about-links__icon {
  margin-right: 12px;
}
.about-links__text {
  font-size: 20px;
  line-height: 24px;
  color: #767676;
  transition: opacity 0.3s ease;
}
.about-links__text:hover {
  opacity: 0.7;
}
.about .item {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .about-links__text {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .about__inner {
    margin-top: 100px;
  }
  .about__inner > img {
    height: 1000px;
  }
  .about-top__text {
    max-width: 600px;
  }
  .about-links__text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .about-top {
    flex-direction: column;
  }
  .about .left {
    margin-bottom: 40px;
  }
  .about-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
  }
  .about .item {
    width: 33%;
    margin-bottom: 15px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .about__inner > img {
    height: 65%;
  }
}
@media (max-width: 767px) {
  .about__inner {
    margin-top: 0px;
  }
  .about .item {
    width: 100%;
    justify-content: flex-start;
  }
}

.call {
  background-color: #F7F7F7;
}
.call .container {
  display: flex;
  justify-content: flex-start;
}

.blog__inner {
  margin-top: 181px;
  margin-bottom: 200px;
}
.blog__des {
  text-align: center;
  max-width: 826px;
  margin: 0 auto 93px;
}
.blog__title {
  margin-bottom: 42px;
}
.blog .posts {
  display: flex;
  justify-content: space-between;
}
.blog .posts .post {
  width: calc(50% - 33px);
  color: #282728;
}
.blog .posts .post__des {
  background-color: #F5F5F5;
  padding: 49px 61px;
}
.blog .posts .post:nth-child(odd) .post__link {
  background-color: #2e2e2e;
}
.blog .posts .post:nth-child(odd) .post__link::before {
  border-color: #fff;
}
.blog .posts .post:nth-child(odd) .post__link::after {
  background-color: #252525;
}
.blog .posts .post:nth-child(odd) .post__link:hover {
  background-color: #3d3d3d;
}
.blog .posts .post:nth-child(even) .post__link {
  background-color: #b49c73;
}
.blog .posts .post:nth-child(even) .post__link::after {
  background-color: #BA914E;
}
.blog .posts .post:nth-child(even) .post__link:hover {
  background-color: #ddaf65;
}
.blog .posts .post__title {
  font-size: 32px;
  line-height: 38px;
  margin-top: 49px;
  margin-bottom: 23px;
}
.blog .posts .post__text {
  font-size: 15px;
  margin-bottom: 47px;
  max-width: 80%;
}
@media (max-width: 1199px) {
  .blog__inner {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .blog .posts .post__des {
    padding: 20px 25px;
  }
}
@media (max-width: 991px) {
  .blog__des {
    max-width: 80%;
  }
  .blog .posts {
    flex-wrap: wrap;
    justify-content: center;
  }
  .blog .posts .post {
    width: 70%;
    margin-bottom: 40px;
  }
  .blog .posts .post__des {
    padding: 20px 25px;
  }
}
@media (max-width: 767px) {
  .blog__inner {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .blog__des {
    max-width: 100%;
  }
  .blog__text {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .blog__inner {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .blog__des {
    max-width: 100%;
    text-align: left;
  }
  .blog__text {
    max-width: 100%;
  }
  .blog .posts .post {
    width: 100%;
  }
  .blog .posts .post__title {
    font-size: 26px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .blog .posts .post__text {
    margin-bottom: 30px;
    max-width: 100%;
  }
}

.footer__inner {
  border-top: 2px solid #b49c73;
  border-bottom: 5px solid #707070;
  background-color: #000;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 76px;
  padding-bottom: 76px;
  border-bottom: 2px solid #b49c73;
}
.footer__logo {
  max-height: 83px;
}
.footer__image {
  height: 100%;
  width: auto;
}
.footer__nav {
  width: 55%;
}
.footer__list {
  display: flex;
  align-items: center;
}
.footer__item {
  font-size: 14px;
  color: #DDDDDD;
  margin-right: 82px;
  transition: color 0.3s ease;
}
.footer__item:last-child {
  margin-right: 0;
}
.footer__item:hover {
  color: #b49c73;
}
.footer-middle {
  margin-top: 91px;
  display: flex;
  justify-content: space-between;
}
.footer-middle__right {
  display: flex;
  justify-content: space-between;
  color: #DDDDDD;
  width: 55%;
}
.footer__text {
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  max-width: 369px;
}
.footer .contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer .contact__icon {
  display: flex;
  justify-content: center;
  margin-right: 20px;
  width: 30px;
}
.footer .contact__icon img {
  width: auto;
}
.footer .contact__text {
  margin-bottom: 0;
}
.footer .contact a {
  transition: opacity 0.3s ease;
}
.footer .contact a:hover {
  opacity: 0.7;
}
.footer .social__title {
  color: #fff;
  margin-bottom: 33px;
}
.footer .social__link:not(.social__link:last-child) {
  margin-right: 45px;
}
.footer .social__link i {
  font-size: 20px;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
.footer .social__link:hover i {
  opacity: 1;
}
.footer .copy {
  display: flex;
  justify-content: space-between;
  margin-top: 121px;
  padding-bottom: 80px;
  color: #999898;
  font-size: 14px;
}
@media (max-width: 1199px) {
  .footer__nav {
    width: 65%;
  }
  .footer .social__link:not(.social__link:last-child) {
    margin-right: 30px;
  }
  .footer-middle__right {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .footer__nav {
    width: auto;
  }
  .footer__item {
    margin-right: 45px;
  }
  .footer-middle {
    flex-wrap: wrap;
  }
  .footer-middle__left {
    text-align: center;
    width: 100%;
  }
  .footer-middle__right {
    justify-content: center;
    width: 100%;
    margin-top: 40px;
  }
  .footer-middle .contact,
  .footer-middle .social {
    margin: 0 30px;
  }
  .footer-middle .contact__title {
    margin-top: 0;
  }
  .footer__text {
    max-width: 70%;
    margin: 0 auto;
  }
  .footer .copy {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 50px;
  }
  .footer__nav {
    margin-top: 30px;
  }
  .footer .copy {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }
  .footer .copy__privacy {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .footer-top {
    flex-direction: row;
  }
  .footer__nav {
    margin-top: 0;
  }
  .footer__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__item {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .footer__text {
    max-width: 100%;
  }
  .footer-middle__right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .contact {
    margin-bottom: 25px;
  }
  .footer .contact__title {
    margin-bottom: 20px;
  }
  .footer .copy {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }
  .footer .copy__privacy {
    margin-top: 15px;
  }
}

.spec-hero__inner {
  margin-top: 194px;
}
.spec-hero .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.spec-hero__left {
  width: 30%;
  max-width: 325px;
  padding-right: 75px;
  margin-top: 30px;
}
.spec-hero__right {
  width: 70%;
}
.spec-hero__right .text-sm {
  font-size: 15px;
  line-height: 24px;
  color: #B8B8B8;
  margin-bottom: 10px;
}
.spec-hero__right .title {
  font-size: 40px;
  line-height: 48px;
  color: #161616;
  margin-bottom: 46px;
}
.spec-hero__right .image {
  width: 100%;
  height: auto;
  max-height: 365px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 45px;
}
.spec-hero__right .text {
  font-size: 15px;
  line-height: 27px;
  color: #B8B8B8;
}
.spec-hero__right .text p {
  margin-bottom: 35px;
}
.spec-hero__tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}
.spec-hero__tabs a {
  position: relative;
  padding: 14px 70px 18px 21px;
  border: 1px solid #C79D59;
  margin-bottom: 31px;
  font-size: 16px;
  line-height: 27px;
  color: #161616;
}
.spec-hero__tabs a:hover {
  background-color: rgb(248, 248, 248);
}
.spec-hero__tabs a.active {
  background-color: #b49c73;
  transition: all 0.3s ease;
  color: #fff;
}
.spec-hero__tabs a.active::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 1;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #fff;
}
.spec-hero__tabs a.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  background-color: #BA914E;
  transition: all 0.3s ease;
}
.spec-hero__tabs a.active:hover {
  background-color: #ddaf65;
}
.spec-hero__tabs a.active:hover::before {
  right: 15px;
}
.spec-hero__tabs a.active:hover::after {
  background-color: #997741;
}
.spec-hero__contact .text-sm {
  font-size: 16px;
  line-height: 27px;
}
.spec-hero__contact .text-sm:nth-of-type(1) {
  margin-bottom: 24px;
}
.spec-hero__contact .text-sm:nth-of-type(2) {
  margin-bottom: 25px;
}
.spec-hero__contact > img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 60px;
}
.spec-hero__phone {
  display: flex;
  align-items: center;
  color: #b49c73;
  transition: all 0.2s ease;
}
.spec-hero__phone:hover {
  opacity: 0.7;
}
.spec-hero__phone img {
  margin-right: 20px;
}
.spec-hero__desc {
  display: none;
}
.spec-hero__desc.active {
  display: block;
}
@media (max-width: 1199px) {
  .spec-hero__left {
    max-width: 290px;
    padding-right: 32px;
  }
}
@media (max-width: 991px) {
  .spec-hero__inner {
    margin-top: 100px;
  }
  .spec-hero .container {
    flex-direction: column;
  }
  .spec-hero__left {
    max-width: 100%;
    width: auto;
    padding-right: 0;
  }
  .spec-hero__left .spec-hero__contact {
    display: none;
  }
  .spec-hero__right {
    width: 100%;
  }
  .spec-hero__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .spec-hero__tabs a {
    margin: 0 15px 15px;
  }
}
@media (max-width: 630px) {
  .spec-hero__tabs a {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .spec-hero__inner {
    margin-top: 60px;
  }
  .spec-hero__right .title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 35px;
  }
}

.spec-about__inner {
  position: relative;
  padding-top: 150px;
  background-color: #fff;
}
.spec-about__inner::before {
  content: "";
  background-image: url(../assets/img/icon/mb-grey.svg);
  background-repeat: no-repeat;
  background-position: 450px 150px;
  background-size: auto;
}
.spec-about__inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 118%;
  z-index: -1;
}
.spec-about .top {
  text-align: left;
  margin: 0 auto;
}
.spec-about .top .title {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 42px;
}
.spec-about .top .text {
  font-size: 15px;
  line-height: 27px;
  color: #202020;
}
.spec-about__list {
  margin-top: 167px;
  padding-bottom: 189px;
  margin-bottom: 189px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.spec-about__list .item {
  display: flex;
  align-items: center;
  margin: 0 0px 170px;
}
.spec-about__list .item:last-child {
  margin-bottom: 0;
}
.spec-about__list .item .image {
  position: relative;
  width: 500px;
  height: 400px;
}
.spec-about__list .item .image__main {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 10px;
}
.spec-about__list .item .image .icon {
  position: absolute;
  bottom: -50px;
  right: -55px;
  border-radius: 55%;
  z-index: 1;
  padding: 37px;
  background-color: #545454;
}
@media (max-width: 200px) {
  .spec-about__list .item .image {
    max-height: 200px;
  }
}
.spec-about__list .item:nth-child(odd) .image::after {
  top: -30px;
  left: -30px;
}
.spec-about__list .item:nth-child(odd) .left {
  margin-right: 138px;
}
.spec-about__list .item:nth-child(even) .image::after {
  top: -30px;
  right: -30px;
}
.spec-about__list .item:nth-child(even) .left {
  order: 2;
  margin-left: 138px;
}
.spec-about__list .item .title {
  font-size: 36px;
  line-height: 31px;
  color: #b49c73;
  margin-bottom: 33px;
  max-width: 277px;
}
.spec-about__list .item .text {
  font-size: 15px;
  line-height: 27px;
  color: #B8B8B8;
}
@media (max-width: 1399px) {
  .spec-about__inner > img {
    height: 118%;
  }
  .spec-about__list .item:nth-child(odd) .left {
    margin-right: 80px;
  }
  .spec-about__list .item:nth-child(even) .left {
    margin-left: 80px;
  }
}
@media (max-width: 1199px) {
  .spec-about__list .item .image {
    width: 450px;
  }
}
@media (max-width: 991px) {
  .spec-about__inner {
    margin-top: 100px;
    padding-top: 100px;
    margin-bottom: 50px;
  }
  .spec-about__inner > img {
    height: 105%;
  }
  .spec-about__list .item .image {
    width: 235px;
  }
  .spec-about__list .item .image .icon {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .spec-about__inner > img {
    height: 100%;
  }
  .spec-about__list {
    margin-top: 90px;
    margin-bottom: 0;
    padding-bottom: 50px;
    border-bottom: none;
  }
  .spec-about__list .item {
    flex-direction: column;
    margin-bottom: 90px;
    margin-left: 0;
    margin-right: 0;
  }
  .spec-about__list .item .right {
    margin-top: 40px;
  }
  .spec-about__list .item .title {
    margin-bottom: 10px;
  }
  .spec-about__list .item:nth-child(odd) .left {
    margin-right: 0;
  }
  .spec-about__list .item:nth-child(even) .left {
    margin-left: 0;
    order: 1;
  }
  .spec-about__list .item:nth-child(even) .right {
    order: 2;
  }
  .spec-about__list .item .image {
    width: 100%;
  }
  .spec-about__list .item .image .icon {
    padding: 24px;
  }
}

.spec-contact .spec__page {
  margin-top: 0;
}
@media (max-width: 575px) {
  .spec-contact {
    padding-top: 50px;
  }
}
.spec-contact .container-fluid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.spec-contact .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.spec-contact .left {
  width: 54%;
  margin-top: 130px;
}
@media (min-width: 575px) {
  .spec-contact .left {
    padding-bottom: 80px;
  }
}
.spec-contact .left .text-sm {
  font-size: 15px;
  line-height: 24px;
  color: #B8B8B8;
  margin-bottom: 10px;
}
.spec-contact .left .title {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 32px;
  color: #fff;
}
.spec-contact .left .text {
  font-size: 15px;
  line-height: 27px;
  color: #B8B8B8;
  margin-bottom: 59px;
}
.spec-contact .left .link {
  background-color: #b49c73;
}
.spec-contact .left .link::after {
  background-color: #BA914E;
}
.spec-contact .left .link:hover {
  background-color: #ddaf65;
}
.spec-contact .right {
  width: 46%;
  max-width: 606px;
}
.spec-contact .right img {
  width: 84%;
  height: auto;
  padding: 9%;
}
@media (min-width: 1200px) {
  .spec-contact .right::before {
    content: "";
    border: 2px solid #EEC383;
    transform: rotate(180deg);
    display: block;
    position: absolute;
    height: 131px;
    bottom: 14%;
    right: 41%;
  }
  .spec-contact .right::after {
    content: "";
    border: 1px solid #EEC383;
    transform: rotate(180deg);
    display: block;
    position: absolute;
    height: 131px;
    top: 14%;
    right: 380px;
  }
}
@media (max-width: 1399px) {
  .spec-contact .left {
    width: 50%;
  }
  .spec-contact .right {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .spec-contact .container {
    flex-direction: column;
    align-items: center;
  }
  .spec-contact .left {
    width: 80%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .spec-contact .left .title {
    margin-bottom: 30px;
  }
  .spec-contact .right {
    width: 80%;
    height: 600px;
  }
  .spec-contact .right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media (max-width: 767px) {
  .spec-contact .left {
    width: 100%;
    margin-top: 0;
  }
  .spec-contact .left .title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .spec-contact .left .text {
    margin-bottom: 20px;
  }
  .spec-contact .right {
    display: none;
  }
}

.contact__subdesc {
  padding-top: 50px;
}
@media (min-width: 920px) {
  .contact__subdesc {
    display: flex;
  }
}
.contact__subdesc p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
}
.contact__subdesc p:first-child {
  margin-right: 40px;
}

.contact__inner .contact__boxes {
  margin-top: 80px;
}

.spec_pg {
  background-color: #383838;
}
.spec_pg .left {
  margin-top: 0;
  padding-top: 0;
}

.btn {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 17px 32px 17px 24px;
  height: 54px;
  transition: all 0.3s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 1;
  transition: all 0.3s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: -52px;
  width: 52px;
  height: 54px;
}
.btn:hover::before {
  right: -34px;
}

.title {
  font-size: 40px;
  line-height: 48px;
  color: #b49c73;
}

.title__bk {
  color: #000;
}

.text {
  font-size: 15px;
  line-height: 27px;
  color: #111111;
}

@media (max-width: 991px) {
  .title {
    font-size: 33px;
    line-height: 37px;
  }
}
@media (max-width: 991px) {
  .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.grey {
  background-color: #F7F7F7;
}

.bg-white {
  background-color: #fff;
}

.black-bk {
  background-color: #000;
}

.btn__gold {
  background-color: #F2D19B;
  width: 161px;
  height: 60px;
  padding: 16px 24px;
}

.btn_short {
  width: 180px;
}

.header__burger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 22px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}

.header__burger-item {
  width: 33px;
  height: 4px;
  background-color: #b49c73;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

.header__burger-item::before,
.header__burger-item::after {
  content: "";
  position: absolute;
  width: 33px;
  height: 4px;
  background: #b49c73;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

.header__burger-item::before {
  transform: translateY(-8px);
}

.header__burger-item::after {
  transform: translateY(8px);
}

.header__burger.open .header__burger-item {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

.header__burger.open .header__burger-item::before {
  transform: rotate(45deg) translate(35px, -35px);
}

.header__burger.open .header__burger-item::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

.loader__container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  height: 100vh;
}

.loader__main {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #b49c73;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #b49c73;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #b49c73;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
body {
  font-family: "Lato", sans-serif;
}

.container {
  max-width: 1277px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 1399px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 750px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}/*# sourceMappingURL=style.css.map */