@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: #131313;
}
body.disabled {
  overflow: hidden;
}

a {
  display: inline-block;
  color: inherit;
}

a, a:hover, a:focus, a:visited, a:focus-within {
  text-decoration: none;
}

p {
  line-height: 150%;
}

footer .footer-top {
  background: #131313;
  padding-top: 100px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  footer .footer-top {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
footer .wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 45px;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  footer .wrap {
    padding-right: 0;
  }
}
footer .wrap .top {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .wrap .top {
    flex-direction: column;
    order: 1;
  }
}
footer .wrap .top p {
  color: #C5B9AA;
  margin-left: 30px;
}
@media only screen and (max-width: 991px) {
  footer .wrap .top p {
    margin-left: 0;
    text-align: center;
    margin-top: 10px;
  }
}
footer .wrap .socials {
  display: flex;
  gap: 22px;
}
@media only screen and (max-width: 991px) {
  footer .wrap .socials {
    order: 0;
    justify-content: center;
    margin-bottom: 20px;
  }
}
footer .wrap .socials a {
  transition: 0.2s ease-in-out;
}
footer .wrap .socials a:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}
footer h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
  color: #C5B9AA;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  footer h2 {
    text-align: center;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 991px) {
  footer .list-item {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
footer ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer ul li {
  line-height: 200%;
  color: #fff;
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  footer ul li {
    text-align: center;
  }
}
footer ul li a {
  text-transform: lowercase;
}
footer ul li a:first-letter {
  text-transform: uppercase;
}
footer ul li a:hover {
  color: #B4A9C4;
}
footer .footer-btm {
  background: #000;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
footer .footer-btm .logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
footer .footer-btm .text {
  color: #888888;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-btm .text span {
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .text span {
    text-align: center;
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .website-by-wrap {
    margin-top: 10px;
    text-align: center;
  }
}
footer .footer-btm-wrap {
  display: flex;
  justify-content: space-between;
  color: #888888;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm-wrap {
    flex-direction: column;
  }
}

section.form {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  section.form {
    margin-bottom: 35px;
  }
}
section.form .info-btm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.form .info-btm p {
  color: #C5B9AA;
  margin-bottom: 0;
  font-size: 16px;
}
section.form .info-btm .icon-wrap {
  margin-right: 10px;
}
section.form .wrap {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  section.form .wrap {
    text-align: center;
  }
}
section.form input, section.form textarea {
  border-radius: 5px;
  border: none;
  width: 100%;
  background: #EEEEEE;
}
section.form input:focus, section.form textarea:focus {
  outline: none;
}
section.form textarea {
  padding: 10px;
  height: 100px;
  resize: none;
}
section.form label {
  display: block;
  margin-left: 10px;
  color: #888888;
  line-height: 150%;
  margin-bottom: 6px;
}
section.form input {
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
section.form input[type=submit] {
  background: #C5B9AA;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.2s ease;
}
section.form input[type=submit]:hover {
  transition: 0.2s ease;
  background: #B4A9C4;
}
@media only screen and (max-width: 991px) {
  section.form input[type=submit] {
    font-size: 18px;
  }
}
section.form input[type=date] {
  min-width: 170px;
}
section.form .form-wrap {
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  section.form .form-wrap {
    margin-bottom: 15px;
  }
}
section.form .form-wrap .form-wrap-50 {
  display: inline-flex;
  justify-content: space-between;
  flex-direction: column;
}
section.form .form-wrap.form-wrap-submit {
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 440px) {
  section.form .form-wrap.form-wrap-submit {
    align-items: initial;
    gap: 15px;
    flex-direction: column;
  }
}
section.form form {
  margin-top: 90px;
}
@media only screen and (max-width: 991px) {
  section.form form {
    margin-top: 50px;
  }
}
section.form .heading-wrap {
  padding-right: 45px;
}
@media only screen and (max-width: 991px) {
  section.form .heading-wrap {
    padding-right: 0;
  }
}
section.form .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.form .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.form .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.form .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.form .heading-wrap h2 {
    font-size: 36px;
  }
}
section.form .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.form .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.form .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.form .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.form .heading-wrap h3 {
    font-size: 28px;
  }
}
section.form .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.form .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.form .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.form .heading-wrap p.desc {
    font-size: 16px;
  }
}

section.references {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.references {
    margin-bottom: 60px;
  }
}
section.references .heading-wrap {
  flex-grow: 1;
}
section.references .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.references .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.references .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.references .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.references .heading-wrap h2 {
    font-size: 36px;
  }
}
section.references .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.references .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.references .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.references .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.references .heading-wrap h3 {
    font-size: 28px;
  }
}
section.references .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.references .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.references .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.references .heading-wrap p.desc {
    font-size: 16px;
  }
}
section.references .item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 360px) {
  section.references .item {
    flex-direction: column;
  }
}
section.references .item img {
  border-radius: 5px;
}
@media only screen and (max-width: 575px) {
  section.references .item img {
    min-width: 40px;
    min-height: 40px;
  }
}
section.references .item h4 {
  font-size: 20px;
  color: #131313;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.references .item h4 {
    font-size: 18px;
  }
}
section.references .item h4 span {
  text-transform: uppercase;
}
@media only screen and (max-width: 360px) {
  section.references .item .img-wrap {
    margin-bottom: 10px;
  }
}
section.references .item .city {
  color: #888888;
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  section.references .item .city {
    margin-left: 10px;
  }
}
section.references .item p {
  margin-bottom: 0;
  color: #888888;
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  section.references .item p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  section.references .item p {
    text-align: center;
  }
}
section.references .item .text {
  margin-left: 25px;
}
@media only screen and (max-width: 991px) {
  section.references .item .text {
    margin-left: 15px;
  }
}
section.references .item .text .top {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}
@media only screen and (max-width: 360px) {
  section.references .item .text .top {
    justify-content: center;
  }
}
section.references .ref-data-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.references .ref-data-wrap {
    gap: 20px;
    margin-top: 20px;
  }
}
section.references .ref-text-wrap {
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  section.references .ref-text-wrap {
    padding-right: 0;
  }
}
section.references .arrow-wrap {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  section.references .arrow-wrap {
    display: none;
  }
}

section.quality {
  background: #EEEEEE;
  margin-bottom: 100px;
  padding: 100px 20px 85px;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  section.quality {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 60px;
  }
}
section.quality .heading-wrap {
  padding-right: 40px;
}
section.quality .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.quality .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.quality .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.quality .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.quality .heading-wrap h2 {
    font-size: 36px;
  }
}
section.quality .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.quality .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.quality .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.quality .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.quality .heading-wrap h3 {
    font-size: 28px;
  }
}
section.quality .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.quality .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.quality .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.quality .heading-wrap p.desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  section.quality .heading-wrap {
    padding-right: 0;
  }
}
section.quality .heading-wrap h3 {
  margin-bottom: 0;
}
section.quality .text-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
section.quality .text-wrap p {
  font-size: 20px;
  color: #888888;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.quality .text-wrap p {
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
  }
}
section.quality .item-wrap {
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  section.quality .item-wrap {
    margin-top: 40px;
  }
}
section.quality .item-wrap .item {
  text-align: center;
}
section.quality .item-wrap img {
  opacity: 0.5;
}
@media only screen and (max-width: 991px) {
  section.quality .item-wrap img {
    max-width: 80%;
    height: auto;
  }
}

.sub-heading {
  display: flex;
  justify-content: flex-end;
  padding-right: 90px;
}
@media only screen and (max-width: 991px) {
  .sub-heading {
    justify-content: center;
    padding-right: 0;
  }
}
.sub-heading h4 {
  font-size: 30px;
  font-weight: 600;
  color: #131313;
  margin-bottom: 40px;
  text-align: right;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .sub-heading h4 {
    font-size: 24px;
    margin-bottom: 25px;
    width: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .sub-heading h4 br {
    display: none;
  }
}

section.chosen, section.references-main {
  position: relative;
  padding-top: 85px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  section.chosen, section.references-main {
    padding-top: 50px;
    margin-bottom: 160px;
  }
}
section.chosen .wrap, section.references-main .wrap {
  margin-bottom: 15px;
}
section.chosen.sub-chosen, section.references-main.sub-chosen {
  padding-top: 0;
}
section.chosen.sub-chosen:before, section.references-main.sub-chosen:before {
  display: none;
}
section.chosen img, section.references-main img {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
section.chosen:before, section.references-main:before {
  top: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 440px;
  background: #EEEEEE;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  section.chosen:before, section.references-main:before {
    height: 360px;
  }
}
section.chosen .container, section.references-main .container {
  position: relative;
}
section.chosen .container:after, section.references-main .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.chosen .container:after, section.references-main .container:after {
    bottom: -80px;
  }
}
section.chosen .heading-wrap, section.references-main .heading-wrap {
  padding-right: 45px;
  flex-grow: 1;
}
section.chosen .heading-wrap h2, section.references-main .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.chosen .heading-wrap h2, section.references-main .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.chosen .heading-wrap h2, section.references-main .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.chosen .heading-wrap h2, section.references-main .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.chosen .heading-wrap h2, section.references-main .heading-wrap h2 {
    font-size: 36px;
  }
}
section.chosen .heading-wrap h3, section.references-main .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.chosen .heading-wrap h3, section.references-main .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.chosen .heading-wrap h3, section.references-main .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.chosen .heading-wrap h3, section.references-main .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.chosen .heading-wrap h3, section.references-main .heading-wrap h3 {
    font-size: 28px;
  }
}
section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  section.chosen .heading-wrap, section.references-main .heading-wrap {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  section.chosen .heading-wrap, section.references-main .heading-wrap {
    padding-right: 10px;
  }
}
section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
  max-width: 400px;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
    margin-bottom: 120px;
    margin-right: auto;
  }
}
@media only screen and (max-width: 991px) {
  section.chosen .heading-wrap p.desc, section.references-main .heading-wrap p.desc {
    margin-bottom: 40px;
  }
}
section.chosen .featured-img, section.references-main .featured-img {
  margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
  section.chosen .featured-img, section.references-main .featured-img {
    margin-top: 10px;
  }
}
section.chosen .featured-img a, section.references-main .featured-img a {
  width: 100%;
}
section.chosen .img-row, section.references-main .img-row {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.chosen .img-row, section.references-main .img-row {
    margin-top: 20px;
    gap: 20px;
    margin-bottom: 20px;
  }
}
section.chosen .featured-text, section.references-main .featured-text {
  padding-right: 45px;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text, section.references-main .featured-text {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  section.chosen .featured-text, section.references-main .featured-text {
    padding-right: 10px;
  }
}
section.chosen .featured-text .date-wrap, section.references-main .featured-text .date-wrap {
  text-align: right;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text .date-wrap, section.references-main .featured-text .date-wrap {
    margin-bottom: 10px;
    text-align: left;
  }
}
section.chosen .featured-text .date-wrap span, section.references-main .featured-text .date-wrap span {
  padding: 5px 10px;
  border-radius: 5px;
  background: #EEEEEE;
  color: #888888;
  display: inline-block;
}
section.chosen .featured-text h4, section.references-main .featured-text h4 {
  margin-bottom: 10px;
  color: #131313;
  font-weight: 600;
  line-height: 120%;
  text-align: right;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  section.chosen .featured-text h4, section.references-main .featured-text h4 {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text h4, section.references-main .featured-text h4 {
    text-align: left;
  }
}
section.chosen .featured-text .city-wrap, section.references-main .featured-text .city-wrap {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text .city-wrap, section.references-main .featured-text .city-wrap {
    justify-content: flex-start;
  }
}
section.chosen .featured-text .city-wrap .city, section.references-main .featured-text .city-wrap .city {
  font-size: 20px;
  color: #888888;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text .city-wrap .city, section.references-main .featured-text .city-wrap .city {
    font-size: 18px;
    justify-content: flex-start;
  }
}
section.chosen .featured-text .city-wrap .photo, section.references-main .featured-text .city-wrap .photo {
  padding: 10px;
  display: flex;
  align-items: center;
}
section.chosen .featured-text .city-wrap .photo span, section.references-main .featured-text .city-wrap .photo span {
  font-size: 16px;
  color: #A9C4AF;
  margin-right: 5px;
}
section.chosen .featured-text p, section.references-main .featured-text p {
  text-align: right;
  color: #888888;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text p, section.references-main .featured-text p {
    margin-bottom: 20px;
    text-align: left;
  }
}
section.chosen .featured-text .btn-wrap, section.references-main .featured-text .btn-wrap {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text .btn-wrap, section.references-main .featured-text .btn-wrap {
    text-align: left;
  }
}
section.chosen .featured-text .btn-wrap a, section.references-main .featured-text .btn-wrap a {
  border: none;
  border-radius: 5px;
  background: #A9C4AF;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: 700;
  transition: 0.2s ease;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  section.chosen .featured-text .btn-wrap a, section.references-main .featured-text .btn-wrap a {
    font-size: 18px;
  }
}
section.chosen .featured-text .btn-wrap a:hover, section.references-main .featured-text .btn-wrap a:hover {
  background: #B4A9C4;
  transition: 0.2s ease;
}
section.chosen .top-row, section.references-main .top-row {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.chosen .top-row, section.references-main .top-row {
    margin-bottom: 50px;
  }
}
section.chosen .featured-box-wrap, section.references-main .featured-box-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  section.chosen .col-lg-4:not(:last-of-type) .wrap, section.references-main .col-lg-4:not(:last-of-type) .wrap {
    margin-bottom: 30px;
  }
}
section.chosen .wrap img, section.references-main .wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
section.chosen .wrap .featured-text, section.references-main .wrap .featured-text {
  padding-right: 0;
}
section.chosen .wrap .featured-text .date-wrap, section.references-main .wrap .featured-text .date-wrap {
  text-align: left;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  section.chosen .wrap .featured-text .date-wrap, section.references-main .wrap .featured-text .date-wrap {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  section.chosen .wrap .featured-text .date-wrap, section.references-main .wrap .featured-text .date-wrap {
    margin-top: 20px;
  }
}
section.chosen .wrap .featured-text h4, section.references-main .wrap .featured-text h4 {
  text-align: left;
}
section.chosen .wrap .featured-text .city-wrap, section.references-main .wrap .featured-text .city-wrap {
  justify-content: flex-start;
}
section.chosen .wrap .featured-text p, section.references-main .wrap .featured-text p {
  text-align: left;
}
section.chosen .wrap .featured-text .btn-wrap, section.references-main .wrap .featured-text .btn-wrap {
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text-top-desktop, section.references-main .featured-text-top-desktop {
    display: none;
  }
}
section.chosen .featured-text-top-mobile, section.references-main .featured-text-top-mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  section.chosen .featured-text-top-mobile, section.references-main .featured-text-top-mobile {
    display: block;
  }
}

.opening-hours {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding-left: 35px;
}
.opening-hours h5 {
  font-weight: 700;
}
.opening-hours ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.opening-hours ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}
@media only screen and (max-width: 991px) {
  .opening-hours ul li {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .opening-hours {
    padding-left: 0;
  }
}

section.why-us {
  margin-bottom: 110px;
}
@media only screen and (max-width: 991px) {
  section.why-us {
    margin-bottom: 90px;
  }
}
section.why-us .container:first-of-type {
  position: relative;
  padding: 100px 110px 80px 40px;
  margin-bottom: 100px;
}
section.why-us .container:first-of-type:before {
  content: "";
  background: #B4A9C4;
  border-radius: 5px;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 991px) {
  section.why-us .container:first-of-type:before {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-us .container:first-of-type {
    padding: 60px 100px 20px 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-us .container:first-of-type {
    margin-bottom: 80px;
    padding: 60px 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  section.why-us .container:first-of-type {
    padding: 40px 40px 20px 30px;
  }
}
section.why-us .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.why-us .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-us .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-us .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.why-us .heading-wrap h2 {
    font-size: 36px;
  }
}
section.why-us .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.why-us .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-us .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-us .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.why-us .heading-wrap h3 {
    font-size: 28px;
  }
}
section.why-us .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.why-us .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-us .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.why-us .heading-wrap p.desc {
    font-size: 16px;
  }
}
section.why-us .heading-wrap h3 {
  color: #fff;
}
section.why-us .text-wrap {
  margin-top: 80px;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  padding-left: 45px;
}
@media only screen and (max-width: 991px) {
  section.why-us .text-wrap {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-us .text-wrap {
    margin-top: 50px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-us .text-wrap {
    margin-top: 5px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  section.why-us .text-wrap {
    font-size: 16px;
  }
}
section.why-us .featured-img {
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  position: absolute;
  right: -12px;
  bottom: -60px;
}
@media only screen and (max-width: 1199px) {
  section.why-us .featured-img {
    width: 540px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  section.why-us .featured-img {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -60px;
    margin-top: -50px;
  }
}
@media only screen and (max-width: 575px) {
  section.why-us .featured-img {
    padding: 20px;
  }
}
section.why-us .featured-img img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
section.why-us .why-us-btm h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 200%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.why-us .why-us-btm h5 {
    text-align: center;
  }
}
section.why-us .why-us-btm h4 {
  font-weight: 600;
  font-size: 26px;
  line-height: 150%;
  margin-bottom: 30px;
  padding-left: 35px;
}
@media only screen and (max-width: 991px) {
  section.why-us .why-us-btm h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  section.why-us .why-us-btm h4 {
    font-size: 18px;
  }
}

.why-us-btm ul, section.visit-us-about ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.why-us-btm ul li, section.visit-us-about ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}
@media only screen and (max-width: 991px) {
  .why-us-btm ul li, section.visit-us-about ul li {
    text-align: center;
  }
}
.why-us-btm .opening-hours, section.visit-us-about .opening-hours {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding-left: 35px;
}
@media only screen and (max-width: 991px) {
  .why-us-btm .opening-hours, section.visit-us-about .opening-hours {
    padding-left: 0;
  }
}
.why-us-btm .col-lg-4 img, section.visit-us-about .col-lg-4 img {
  border-radius: 5px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.why-us-btm .col-lg-4 a, section.visit-us-about .col-lg-4 a {
  width: 100%;
}
.why-us-btm .row-wrap, section.visit-us-about .row-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.why-us-btm .row-wrap .row, section.visit-us-about .row-wrap .row {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .why-us-btm .row-wrap .col-lg-4:not(:last-of-type) a, section.visit-us-about .row-wrap .col-lg-4:not(:last-of-type) a {
    margin-bottom: 20px;
  }
}

.why-us-btm .contact-info, section.visit-us-about .contact-info, section.direct .contact-info {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding-left: 35px;
}
@media only screen and (max-width: 991px) {
  .why-us-btm .contact-info, section.visit-us-about .contact-info, section.direct .contact-info {
    margin-bottom: 20px;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }
}
.why-us-btm .contact-info .item, section.visit-us-about .contact-info .item, section.direct .contact-info .item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .why-us-btm .contact-info .item, section.visit-us-about .contact-info .item, section.direct .contact-info .item {
    justify-content: center;
  }
}
.why-us-btm .contact-info .item .text, section.visit-us-about .contact-info .item .text, section.direct .contact-info .item .text {
  color: #888888;
}
.why-us-btm .contact-info .item .text a:hover, section.visit-us-about .contact-info .item .text a:hover, section.direct .contact-info .item .text a:hover {
  text-decoration: underline;
}
.why-us-btm .contact-info .item .icon, section.visit-us-about .contact-info .item .icon, section.direct .contact-info .item .icon {
  margin-right: 10px;
}
.why-us-btm .contact-info .item .icon img, section.visit-us-about .contact-info .item .icon img, section.direct .contact-info .item .icon img {
  height: 24px;
  width: auto;
}

.icon-col {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .icon-col {
    margin-top: 15px;
  }
}
.icon-col .icon-item {
  display: inline-flex;
}
@media only screen and (max-width: 991px) {
  .icon-col .icon-item {
    justify-content: center;
  }
}
.icon-col .icon-wrap {
  border: 7px solid #fff;
  border-radius: 100%;
  min-height: 150px;
  min-width: 150px;
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}
@media only screen and (max-width: 1199px) {
  .icon-col .icon-wrap {
    margin-right: 15px;
    min-height: 75px;
    min-width: 75px;
    height: 75px;
    width: 75px;
    border-width: 3.5px;
  }
}
@media only screen and (max-width: 1199px) {
  .icon-col .icon-wrap img {
    transform: scale(0.5);
  }
}
.icon-col .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon-col .text h4 {
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .icon-col .text h4 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .icon-col .text h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .icon-col .text h4 {
    font-size: 18px;
  }
}
.icon-col .text p {
  color: #fff;
  max-width: 300px;
}

section.our-view .heading-wrap {
  padding: 100px 80px 60px 50px;
  position: relative;
}
section.our-view .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.our-view .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.our-view .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.our-view .heading-wrap h2 {
    font-size: 36px;
  }
}
section.our-view .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.our-view .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.our-view .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.our-view .heading-wrap h3 {
    font-size: 28px;
  }
}
section.our-view .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.our-view .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.our-view .heading-wrap p.desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  section.our-view .heading-wrap {
    padding: 70px 50px 50px 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .heading-wrap {
    padding: 45px 25px 30px;
  }
}
section.our-view .heading-wrap:before {
  content: "";
  position: absolute;
  left: -12px;
  background: #EEEEEE;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  width: calc(100% + 24px);
  height: 100%;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
}
section.our-view .btm {
  margin-top: -30px;
}
@media only screen and (max-width: 991px) {
  section.our-view .btm {
    margin-top: 0;
  }
}
section.our-view .btm .text {
  font-size: 350px;
  font-weight: 900;
  line-height: 150%;
  color: #C5B9AA;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  section.our-view .btm .text {
    font-size: 210px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .btm .text {
    margin-top: 20px;
    font-size: 160px;
    line-height: 120%;
  }
}
section.our-view .icon-col {
  gap: 12px;
}
@media only screen and (max-width: 1199px) {
  section.our-view .icon-col {
    gap: 12px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .icon-col {
    order: 0;
  }
}
section.our-view .icon-col .icon-item:not(:last-of-type) .icon-wrap:after {
  content: "";
  position: absolute;
  left: 66.5px;
  top: 136px;
  width: 7px;
  height: 20px;
  background: #C5B9AA;
}
@media only screen and (max-width: 1199px) {
  section.our-view .icon-col .icon-item:not(:last-of-type) .icon-wrap:after {
    left: 32.5px;
    top: 69px;
    width: 4px;
    height: 18px;
  }
}
section.our-view .icon-col .icon-wrap {
  border-color: #C5B9AA;
  position: relative;
}
section.our-view .icon-col p {
  color: #888888;
}
@media only screen and (max-width: 991px) {
  section.our-view .icon-col p {
    width: 230px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-view .left-text {
    order: 1;
  }
}
section.our-view .left-text p {
  color: #888888;
  font-size: 20px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  section.our-view .left-text p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
section.our-view .left-text p.main {
  position: relative;
  padding: 30px 0;
  margin-top: 80px;
  margin-left: -40px;
  color: #131313;
  font-size: 16px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  section.our-view .left-text p.main {
    margin-top: 30px;
    padding: 0;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
section.our-view .left-text p.main:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: -30px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 5px;
}
section.our-view .left {
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  section.our-view .left {
    padding-left: 0;
    display: flex;
    flex-direction: column;
  }
}

section.cards {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.cards {
    margin-bottom: 80px;
  }
}
section.cards .img-wrap {
  height: 500px;
}
section.cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
section.cards .col-small {
  width: 28.63%;
}
@media only screen and (max-width: 1199px) {
  section.cards .col-small {
    width: 33.33333%;
  }
}
@media only screen and (max-width: 991px) {
  section.cards .col-small {
    width: 100%;
  }
}
section.cards .col-large {
  width: 42.72%;
}
@media only screen and (max-width: 1199px) {
  section.cards .col-large {
    width: 33.33333%;
  }
}
@media only screen and (max-width: 991px) {
  section.cards .col-large {
    width: 100%;
  }
}
section.cards .col-wrap {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.cards .col-wrap {
    flex-direction: column;
  }
}
section.cards .col-wrap a {
  width: 100%;
}
section.cards .col-wrap > div:nth-of-type(1) .text {
  background: #C5B9AA;
}
section.cards .col-wrap > div:nth-of-type(2) .text {
  background: #B4A9C4;
}
section.cards .col-wrap > div:nth-of-type(3) .text {
  background: #A9C4AF;
}
section.cards .text {
  color: #fff;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 0 0 5px 5px;
  align-items: center;
}
section.cards .text h2 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  section.cards .text h2 {
    font-size: 20px;
  }
}
section.cards .block {
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 30px;
}
@media only screen and (max-width: 1199px) {
  section.cards .block {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 991px) {
  section.cards .block {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 575px) {
  section.cards .block {
    flex-direction: column;
  }
}
section.cards .block span {
  display: inline-block;
  position: relative;
  color: #888888;
}
section.cards .block span:not(:nth-of-type(1)):before {
  content: "";
  position: absolute;
  left: -5.5px;
  top: 0;
  background: #888888;
  height: 100%;
  width: 1px;
}

section.hero {
  height: 100vh;
  margin-bottom: 100px;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
  min-height: 720px;
}
@media only screen and (max-width: 991px) {
  section.hero {
    margin-bottom: 80px;
    min-height: initial;
  }
}
section.hero .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.hero .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.hero .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.hero .heading-wrap h2 {
    font-size: 36px;
  }
}
section.hero .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.hero .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.hero .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.hero .heading-wrap h3 {
    font-size: 28px;
  }
}
section.hero .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.hero .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.hero .heading-wrap p.desc {
    font-size: 16px;
  }
}
section.hero .heading-wrap h2 {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  section.hero .heading-wrap h2 {
    text-align: left;
  }
}
@media only screen and (max-width: 360px) {
  section.hero .heading-wrap h2 {
    font-size: 30px;
  }
}
section.hero .heading-wrap h3 {
  color: #C5B9AA;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.hero .heading-wrap h3 {
    text-align: left;
  }
}
@media only screen and (max-width: 360px) {
  section.hero .heading-wrap h3 {
    font-size: 26px;
  }
}
section.hero p.desc {
  color: #dedede;
  font-size: 20px;
}
@media only screen and (max-width: 1199px) {
  section.hero p.desc {
    font-size: 18px;
  }
}
section.hero .container-fluid {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
section.hero .container-fluid > .container {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  section.hero .container-fluid > .container {
    margin-bottom: 40px;
  }
}
section.hero .col-lg-7, section.hero .col-lg-5 {
  position: relative;
  z-index: 5;
}
section.hero .col-lg-5 {
  margin-top: 10px;
}
section.hero .btn-wrap a {
  border: none;
  border-radius: 5px;
  background: #B4A9C4;
  color: #131313;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: 700;
  transition: 0.2s ease;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  section.hero .btn-wrap a {
    font-size: 18px;
  }
}
section.hero .btn-wrap a:hover {
  background: #B4A9C4;
  transition: 0.2s ease;
}
section.hero .btn-wrap a:hover {
  background: #A9C4AF;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.play-btn img {
  opacity: 0.5;
  transition: 0.2s ease;
}
.play-btn img:hover {
  opacity: 1;
  transition: 0.2s ease;
}

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  flex-direction: column;
  z-index: 10;
  padding-top: 0;
}
.navbar > .container {
  background: #131313;
  border-radius: 0 0 5px 5px;
  padding: 30px;
}
@media only screen and (max-width: 991px) {
  .navbar > .container {
    padding: 12px 28px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 575px) {
  .navbar > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.navbar span {
  display: inline-flex;
  align-items: center;
}
.navbar .navbar-brand {
  padding-bottom: 0;
  padding-top: 0;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    max-width: 90px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    max-width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav {
    margin-top: 10px;
  }
}
.navbar .nav {
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .navbar .nav {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar .nav .nav-link, .navbar .nav .dropdown {
    margin-top: 6px;
  }
}
.navbar .nav .nav-link {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  line-height: normal;
  margin-left: 3px;
  margin-right: 3px;
}
@media only screen and (max-width: 991px) {
  .navbar .nav .nav-link {
    margin: 3px 0;
  }
}
.navbar .nav.nav-top {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .navbar .nav.nav-top {
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .nav.nav-top {
    margin-bottom: 0;
  }
}
.navbar .nav.nav-top .search span {
  margin-right: 0 !important;
}
.navbar .nav.nav-top .nav-link {
  font-size: 16px;
  color: #C5B9AA;
  font-weight: 400;
  line-height: normal;
  margin-left: 0;
  margin-right: 0;
}
.navbar .nav.nav-top .nav-link:hover {
  text-decoration: underline;
}
.navbar .nav.nav-top .nav-link span {
  margin-right: 10px;
}
.navbar .nav.nav-top .nav-link span img {
  height: 16px;
  width: auto;
}
.navbar .nav .nav-dots-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .navbar .nav .nav-dots-item {
    display: none;
  }
}
.navbar .nav.nav-bottom .nav-link, .navbar .nav.nav-bottom .dropdown-toggle {
  font-size: 18px;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 5px;
  text-transform: uppercase;
  transition: 0.2s ease;
  color: #fff;
}
.navbar .nav.nav-bottom .nav-link:hover, .navbar .nav.nav-bottom .dropdown-toggle:hover {
  background: #B4A9C4;
  color: #131313;
  transition: 0.2s ease;
}
.navbar .nav.nav-bottom .nav-link.active, .navbar .nav.nav-bottom .dropdown-toggle.active {
  border: 2px solid #B4A9C4;
  color: #B4A9C4;
}
.navbar .nav.nav-bottom .nav-link.active:hover, .navbar .nav.nav-bottom .dropdown-toggle.active:hover {
  color: #131313;
}
@media only screen and (max-width: 767px) {
  .navbar .nav.nav-bottom .nav-link, .navbar .nav.nav-bottom .dropdown-toggle {
    font-size: 16px;
  }
}
.navbar .nav.nav-bottom .nav-item:last-of-type .nav-link {
  background: #B4A9C4;
  color: #131313;
  transition: 0.2s ease;
  cursor: pointer;
}
.navbar .nav.nav-bottom .nav-item:last-of-type .nav-link:hover {
  background: #C5B9AA;
  transition: 0.2s ease;
}
.navbar .nav .main-btn {
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .navbar .nav .main-btn {
    padding-left: 0;
  }
}
.navbar .nav .main-btn a:hover {
  background: #fff;
  color: #C5B9AA;
  transition: 0.2s ease;
}
.navbar .nav .main-btn a:hover svg path {
  fill: #C5B9AA;
}
.navbar .nav .main-btn a img {
  width: 16px;
  height: 16px;
}

.hamburger {
  width: 30px;
  height: 22.5px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 99999;
}
@media only screen and (max-width: 991px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #B4A9C4;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-radius: 5px;
}

.hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1.5px;
  left: 4px;
}

.hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19.5px;
  left: 4px;
}

header {
  position: relative;
  z-index: 130;
}

header a.dropdown-toggle, .mobile-menu a.dropdown-toggle {
  height: 100%;
  display: flex;
  align-items: center;
  background: none;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  header a.dropdown-toggle, .mobile-menu a.dropdown-toggle {
    height: auto;
  }
}
header a.dropdown-toggle.show, .mobile-menu a.dropdown-toggle.show {
  background: #B4A9C4;
  color: #131313;
}
header a.dropdown-toggle:first-child:active, .mobile-menu a.dropdown-toggle:first-child:active {
  background: none;
  color: #fff;
}
header li.dropdown, .mobile-menu li.dropdown {
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
}
header .dropdown-menu, .mobile-menu .dropdown-menu {
  width: 100%;
  background: #131313;
  border-radius: 0 0 5px 5px;
  top: 0;
}
header .dropdown-menu.show, .mobile-menu .dropdown-menu.show {
  position: relative;
  background: #131313;
  color: #131313;
  min-width: 190px;
}
header .dropdown-menu.show a:hover, .mobile-menu .dropdown-menu.show a:hover {
  background: #131313;
  color: #B4A9C4;
}
header .dropdown-menu.show .dropdown-item, .mobile-menu .dropdown-menu.show .dropdown-item {
  white-space: initial;
}
header .dropdown-menu a, .mobile-menu .dropdown-menu a {
  color: #fff;
}

.mobile-menu {
  margin-top: 0;
  background: #131313;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 110;
}
.mobile-menu.active {
  transition: 0.3s ease;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .nav {
  flex-direction: column;
  display: flex;
}
.mobile-menu li {
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 5px;
}
.mobile-menu li a {
  color: #fff;
  font-size: 20px !important;
  font-weight: 600;
}

.navbar .right {
  display: none;
  gap: 15px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .navbar .right {
    display: flex;
  }
}
.navbar .right img {
  max-width: 20px;
  height: auto;
}

section.sub-hero {
  height: 500px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  section.sub-hero {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  section.sub-hero {
    height: 250px;
  }
}
section.sub-hero img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.ph-sm {
  height: 100px;
  width: 100px;
  background: gray;
}

section.control {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.control {
    margin-bottom: 35px;
  }
}
section.control h4 {
  max-width: 310px;
}
@media only screen and (max-width: 991px) {
  section.control h4 {
    max-width: initial;
  }
}

.control-item {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .control-item {
    margin-bottom: 25px;
  }
}
.control-item .images-wrap {
  display: flex;
  gap: 10px;
}
.control-item .images-wrap .image img {
  max-width: 100%;
  border-radius: 5px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.control-item h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  padding: 10px 20px;
  border: 2px solid #000;
  display: inline-flex;
  border-radius: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .control-item h5 {
    font-size: 16px;
    border: none;
    padding: 0;
  }
}
.control-item ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 22px;
}
@media only screen and (max-width: 991px) {
  .control-item ul {
    display: flex;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 10px;
  }
}
.control-item ul li {
  color: #888888;
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .control-item ul li {
    font-size: 16px;
  }
}
.control-item p {
  color: #888888;
  font-size: 16px;
  max-width: 350px;
}
@media only screen and (max-width: 991px) {
  .control-item p {
    max-width: initial;
  }
}

.wifi-box {
  background: #A9C4AF;
  display: flex;
  gap: 50px;
  padding: 30px 50px;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  .wifi-box {
    gap: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .wifi-box:before, .wifi-box:after {
    display: none;
  }
}
.wifi-box:before {
  content: "";
  background: #A9C4AF;
  height: 5px;
  width: 100%;
  left: -41.75%;
  top: 50%;
  transform: translate(-50%, 0);
  position: absolute;
}
.wifi-box:after {
  content: "";
  background: #A9C4AF;
  height: 50%;
  width: 5px;
  left: -91.8%;
  top: 0;
  position: absolute;
}
.wifi-box h4 {
  font-size: 20px;
  color: #fff;
  line-height: 150%;
  text-align: center;
  margin-bottom: 0;
  margin-top: 15px;
}
@media only screen and (max-width: 1499px) {
  .wifi-box h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .wifi-box h4 {
    margin-top: 10px;
    font-size: 16px;
  }
}
.wifi-box .icon img {
  max-width: 100%;
  height: auto;
}

section.materials {
  background: #EEEEEE;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.materials {
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.materials .col-lg-3:not(:last-of-type) .material-wrap {
  margin-bottom: 20px;
}
section.materials .sub-heading h4 {
  max-width: 300px;
}
@media only screen and (max-width: 991px) {
  section.materials .sub-heading h4 {
    max-width: initial;
  }
}
section.materials .material-wrap .img-wrap {
  margin-bottom: 20px;
}
section.materials .material-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
section.materials .material-wrap h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1499px) {
  section.materials .material-wrap h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.materials .material-wrap h5 {
    font-size: 16px;
  }
}
section.materials .material-wrap p {
  font-size: 16px;
  color: #888888;
  margin-bottom: 0;
}
section.materials .line-wrap {
  margin-top: 15px;
  margin-bottom: -66px;
  position: relative;
  z-index: 9;
  margin-left: 30px;
  pointer-events: none;
}
@media only screen and (max-width: 1399px) {
  section.materials .line-wrap {
    margin-bottom: -55px;
  }
}
@media only screen and (max-width: 1199px) {
  section.materials .line-wrap {
    margin-bottom: -43px;
  }
}
@media only screen and (max-width: 991px) {
  section.materials .line-wrap {
    display: none;
  }
}
section.materials .line-wrap img {
  width: 100%;
  padding-right: 90px;
}
section.materials .material-offer {
  position: relative;
}
section.materials .material-offer h5 {
  font-size: 26px;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  section.materials .material-offer h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
section.materials .arrow-wrap {
  margin-top: -15px;
  margin-left: 17.5px;
}
@media only screen and (max-width: 991px) {
  section.materials .arrow-wrap {
    margin-top: initial;
    display: none;
  }
}
section.materials .heading-p p {
  line-height: 150%;
  font-size: 16px;
  color: #888888;
  margin-bottom: 35px;
}

section.luxury-title .sub-heading {
  padding-right: 37px;
}
section.luxury-title h4 {
  max-width: 310px;
}
@media only screen and (max-width: 991px) {
  section.luxury-title h4 {
    max-width: initial;
  }
}

section.luxury {
  margin-bottom: 100px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.luxury {
    background: #B4A9C4;
  }
}
section.luxury:before {
  background: #B4A9C4;
  height: 100%;
  width: calc(50% - 50px);
  border-radius: 0 10px 10px 0;
  content: "";
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  section.luxury:before {
    height: calc(100% - 18px);
  }
}
@media only screen and (max-width: 991px) {
  section.luxury:before {
    display: none;
  }
}
section.luxury .col-lg-6:first-of-type .text p {
  color: #fff;
  max-width: 270px;
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:first-of-type .text p {
    max-width: initial;
  }
}
section.luxury .col-lg-6:first-of-type .line-wrap {
  height: 200px;
  position: absolute;
  left: calc(50% - 2.5px);
  bottom: -200px;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1199px) {
  section.luxury .col-lg-6:first-of-type .line-wrap {
    height: 150px;
    bottom: -148px;
    display: flex;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:first-of-type .line-wrap {
    display: none;
  }
}
section.luxury .col-lg-6:first-of-type .luxury-item {
  padding-bottom: 60px;
}
section.luxury .col-lg-6:first-of-type .luxury-item .icon .icon-wrap {
  border: 5px solid #fff;
}
@media only screen and (max-width: 1199px) {
  section.luxury .col-lg-6:first-of-type .luxury-item .icon .icon-wrap {
    border-width: 4px;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:first-of-type .luxury-item {
    padding-bottom: initial;
  }
}
section.luxury .col-lg-6:last-of-type .luxury-item {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  section.luxury .col-lg-6:last-of-type .luxury-item {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:last-of-type .luxury-item:first-of-type {
    margin-bottom: 30px;
  }
}
section.luxury .col-lg-6:last-of-type .luxury-item:first-of-type .icon:after {
  content: "";
  position: absolute;
  left: calc(50% - 2.5px);
  bottom: -73px;
  background: #B4A9C4;
  height: 75px;
  width: 5px;
}
@media only screen and (max-width: 1199px) {
  section.luxury .col-lg-6:last-of-type .luxury-item:first-of-type .icon:after {
    bottom: -120px;
    height: 120px;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:last-of-type .luxury-item:first-of-type .icon:after {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:last-of-type .luxury-item:last-of-type {
    margin-bottom: 0;
  }
}
section.luxury .col-lg-6:last-of-type .luxury-item:last-of-type .line-wrap {
  width: 500px;
  position: absolute;
  left: calc(50% - 497.5px);
  bottom: -110px;
}
@media only screen and (max-width: 991px) {
  section.luxury .col-lg-6:last-of-type .luxury-item:last-of-type .line-wrap {
    display: none;
  }
}
section.luxury .luxury-item {
  display: flex;
  gap: 25px;
}
section.luxury .luxury-item:not(:nth-child(2)) {
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  section.luxury .luxury-item:not(:nth-child(2)) {
    padding-top: initial;
    margin-bottom: 30px;
  }
}
section.luxury .luxury-item .text {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  section.luxury .luxury-item .text {
    margin-top: 15px;
  }
}
section.luxury .luxury-item .text h4 {
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  section.luxury .luxury-item .text h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
section.luxury .luxury-item .text p {
  margin-bottom: 0;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.luxury .luxury-item .text p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .luxury-item .text p {
    color: #fff;
  }
}
section.luxury .icon {
  position: relative;
  height: 150px;
  width: 150px;
}
@media only screen and (max-width: 1199px) {
  section.luxury .icon {
    height: 90px;
    width: 90px;
  }
}
section.luxury .icon .icon-wrap {
  max-width: 100%;
  max-height: 100%;
  height: 150px;
  width: 150px;
  border: 5px solid #B4A9C4;
  border-radius: 100%;
}
@media only screen and (max-width: 1199px) {
  section.luxury .icon .icon-wrap {
    height: 90px;
    width: 90px;
    border-width: 4px;
  }
}
@media only screen and (max-width: 991px) {
  section.luxury .icon .icon-wrap {
    border-color: #fff;
  }
}
section.luxury .icon .icon-wrap img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  max-height: 100%;
  border-radius: 100%;
  object-position: center;
  object-fit: cover;
}

section.subpage-top {
  margin-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  section.subpage-top {
    margin-bottom: 60px;
  }
}
section.subpage-top .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.subpage-top .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.subpage-top .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.subpage-top .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.subpage-top .heading-wrap h2 {
    font-size: 36px;
  }
}
section.subpage-top .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.subpage-top .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.subpage-top .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.subpage-top .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.subpage-top .heading-wrap h3 {
    font-size: 28px;
  }
}
section.subpage-top .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.subpage-top .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.subpage-top .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.subpage-top .heading-wrap p.desc {
    font-size: 16px;
  }
}
section.subpage-top .top-wrap {
  position: relative;
  margin-bottom: 30px;
  margin-top: -35px;
  pointer-events: none;
}
@media only screen and (max-width: 1199px) {
  section.subpage-top .top-wrap {
    margin-top: -51px;
  }
}
@media only screen and (max-width: 991px) {
  section.subpage-top .top-wrap {
    display: none;
  }
}
section.subpage-top .top-wrap .line-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
}
section.subpage-top .top-wrap .line-wrap img {
  max-width: 100%;
}
section.subpage-top .top-wrap .arrow-wrap {
  padding-bottom: 40px;
  padding-left: 40px;
}

section.service-detail-text {
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  section.service-detail-text {
    margin-top: 60px;
  }
}
section.service-detail-text .heading-wrap {
  padding-right: 37px;
}
@media only screen and (max-width: 991px) {
  section.service-detail-text .heading-wrap {
    padding-right: initial;
  }
}
section.service-detail-text p {
  color: #888888;
  font-size: 20px;
}
@media only screen and (max-width: 1499px) {
  section.service-detail-text p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.service-detail-text p {
    text-align: center;
    font-size: 16px;
  }
}
section.service-detail-text .badges-wrap {
  display: flex;
  gap: 5px;
  margin-bottom: 17px;
}
@media only screen and (max-width: 991px) {
  section.service-detail-text .badges-wrap {
    justify-content: center;
  }
}
section.service-detail-text .badges-wrap .badge-default {
  background: #C5B9AA;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 20px;
}
@media only screen and (max-width: 1199px) {
  section.service-detail-text .badges-wrap .badge-default {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  section.service-detail-text .badges-wrap .badge-default {
    text-align: center;
  }
}

section.detail-content {
  margin-bottom: 70px;
}
section.detail-content .image50 img, section.detail-content .image100 img {
  box-shadow: 0 0 53.468px 0 rgba(0, 0, 0, 0.1);
}
section.detail-content .image50 {
  width: calc(50% - 15px);
}
section.detail-content .image100 {
  width: 100%;
}
section.detail-content img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
section.detail-content .images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
section.detail-content .images-container .ph {
  width: 100%;
  height: 180px;
}
section.detail-content .images-container a {
  width: 100%;
}
section.detail-content .images-container img {
  border-radius: 5px;
  height: 190px;
  width: 100%;
  object-position: center;
}
section.detail-content .card-default .text {
  padding: 60px;
  background: #EEEEEE;
  border-radius: 5px;
}
@media only screen and (max-width: 1499px) {
  section.detail-content .card-default .text {
    padding: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.detail-content .card-default .text {
    padding: 40px;
  }
}
section.detail-content .card-default .text p {
  margin-bottom: 0;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  section.detail-content .card-default:first-of-type {
    margin-top: 30px;
  }
}
section.detail-content .card-default:first-of-type .text {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
section.detail-content .quote p {
  padding: 60px;
  margin-bottom: 0;
  font-style: italic;
  color: #B4A9C4;
  font-size: 20px;
  line-height: 150%;
}
@media only screen and (max-width: 1499px) {
  section.detail-content .quote p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.detail-content .quote p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1499px) {
  section.detail-content .quote p {
    padding: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.detail-content .quote p {
    padding: 40px;
  }
}
section.detail-content p {
  color: #888888;
}
section.detail-content .col-lg-6:first-of-type p, section.detail-content .sub-heading, section.detail-content .images-container {
  padding-right: 37px;
}
@media only screen and (max-width: 991px) {
  section.detail-content .col-lg-6:first-of-type p, section.detail-content .sub-heading, section.detail-content .images-container {
    padding-right: initial;
  }
}
section.detail-content .col-lg-6:first-of-type p {
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.detail-content .col-lg-6:first-of-type p {
    text-align: center;
  }
}
section.detail-content .col-lg-6:first-of-type p:last-of-type {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.detail-content .col-lg-6:first-of-type p:last-of-type {
    margin-bottom: 30px;
  }
}
section.detail-content .sub-heading h4 {
  margin-bottom: 30px;
  max-width: 320px;
}
@media only screen and (max-width: 991px) {
  section.detail-content .sub-heading h4 {
    max-width: initial;
  }
}
section.detail-content .col-lg-6:last-of-type a {
  height: 100%;
  width: 100%;
  display: block;
}
section.detail-content .col-lg-6:last-of-type img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 315px;
}

.ph {
  background: gray;
}

section.photo-gallery {
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  section.photo-gallery {
    margin-bottom: 150px;
  }
}
section.photo-gallery .ph {
  width: 600px;
  height: 360px;
  margin: 0 auto;
  max-width: 100%;
}
section.photo-gallery .container {
  position: relative;
}
section.photo-gallery .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.photo-gallery .container:after {
    bottom: -80px;
  }
}
section.photo-gallery p {
  margin: 30px auto;
  text-align: center;
  max-width: 460px;
  color: #888888;
}
@media only screen and (max-width: 991px) {
  section.photo-gallery p {
    margin: 20px auto;
    max-width: initial;
  }
}

section.feedback {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  section.feedback .sub-heading {
    justify-content: center;
  }
}
section.feedback .ph {
  width: 120px;
  height: 120px;
}
section.feedback h4 {
  text-align: right;
  color: #131313;
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 30px;
  max-width: 290px;
}
@media only screen and (max-width: 991px) {
  section.feedback h4 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
    max-width: initial;
  }
}
section.feedback .left {
  background: #B4A9C4;
  padding: 50px 0 70px 30px;
  border-radius: 5px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  section.feedback .left {
    padding: 50px 30px;
    margin-bottom: 40px;
  }
}
section.feedback .left p {
  padding-right: 90px;
  line-height: 150%;
  color: #fff;
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.feedback .left p {
    padding-right: initial;
    text-align: center;
  }
}
section.feedback .right {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-left: 56px;
}
@media only screen and (max-width: 991px) {
  section.feedback .right {
    padding-left: initial;
    align-items: initial;
    flex-wrap: wrap;
    justify-content: center;
  }
}
section.feedback .right .photo-wrap {
  position: absolute;
  top: 40%;
  left: -85px;
  height: 120px;
  width: 120px;
}
@media only screen and (max-width: 991px) {
  section.feedback .right .photo-wrap {
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 15px;
  }
}
section.feedback .right .photo-wrap img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
section.feedback .right p {
  color: #B4A9C4;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 0;
  font-style: italic;
}
@media only screen and (max-width: 1499px) {
  section.feedback .right p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.feedback .right p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  section.feedback .right p {
    text-align: center;
  }
}
section.feedback .right .top {
  display: flex;
  margin-bottom: 8px;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.feedback .right .top {
    flex-direction: column;
    gap: 0;
  }
}
section.feedback .right .top .span-wrap {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  section.feedback .right .top .span-wrap {
    justify-content: center;
  }
}
section.feedback .right .top h5 {
  color: #131313;
  line-height: 200%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.feedback .right .top h5 {
    line-height: 150%;
    text-align: center;
  }
}
section.feedback .right .top span {
  font-size: 16px;
  color: #888888;
  display: flex;
  align-items: center;
}

section.ref-photo-details {
  margin-bottom: 105px;
}
section.ref-photo-details .sub-heading {
  padding-right: 0;
}
section.ref-photo-details .featured-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
section.ref-photo-details .left {
  padding-left: 30px;
}
section.ref-photo-details .p-wrap {
  position: relative;
}
section.ref-photo-details .p-wrap .line {
  position: absolute;
  left: -190px;
  top: calc(50% - 2.5px);
  background: red;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #fff 50%, #888888 50%);
  border-radius: 10px;
}
@media only screen and (max-width: 1399px) {
  section.ref-photo-details .p-wrap .line {
    display: none;
  }
}
section.ref-photo-details .heading-p p {
  background: #fff;
  padding: 30px;
  line-height: 150%;
  margin-bottom: -30px;
  position: relative;
  z-index: 9;
  margin-right: 30px;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  section.ref-photo-details .heading-p p {
    margin-left: 30px;
  }
}
section.ref-photo-details .sec-p p {
  margin-top: 70px;
}
section.ref-photo-details .thd-p p {
  margin-top: 35px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1499px) {
  section.ref-photo-details .thd-p p {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 991px) {
  section.ref-photo-details .thd-p p {
    margin-bottom: 30px;
  }
}
section.ref-photo-details p {
  color: #888888;
}
section.ref-photo-details .btm-wrap {
  margin-top: -115px;
}
section.ref-photo-details .btm {
  display: flex;
  gap: 30px;
}
section.ref-photo-details .btm .line {
  position: absolute;
  bottom: -50px;
  left: calc(50% - 2.5px);
  background: red;
  width: 5px;
  height: 100px;
  background: linear-gradient(to bottom, white 50%, gray 50%);
  border-radius: 10px;
}
section.ref-photo-details .photo-wrap {
  position: relative;
}
section.ref-photo-details .photo-wrap img {
  border-radius: 5px;
  width: 230px;
  height: 230px;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  section.ref-photo-details .photo-wrap img {
    max-width: 180px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  section.ref-photo-details .photo-wrap img {
    width: 100%;
    height: 100%;
  }
}
section.ref-photo-details .images-wrap {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 1499px) {
  section.ref-photo-details .images-wrap {
    flex-wrap: wrap;
  }
}
section.ref-photo-details .images-wrap .image-wrap {
  width: 25%;
}
@media only screen and (max-width: 991px) {
  section.ref-photo-details .images-wrap .image-wrap {
    width: calc(50% - 15px);
  }
}
section.ref-photo-details .images-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

section.our-fun {
  margin-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  section.our-fun {
    margin-bottom: 180px;
  }
}
section.our-fun .left {
  background: initial;
}
@media only screen and (max-width: 991px) {
  section.our-fun .left {
    padding: 0;
    margin-bottom: 30px;
  }
}
section.our-fun .left p {
  color: #888888;
}
@media only screen and (max-width: 991px) {
  section.our-fun .left p {
    text-align: center;
  }
}
section.our-fun .container {
  position: relative;
}
section.our-fun .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.our-fun .container:after {
    bottom: -80px;
  }
}

section.style-content {
  margin-bottom: 100px;
  background: #EEEEEE;
}
section.style-content .col-lg-4:nth-child(1), section.style-content .col-lg-4:nth-child(3) {
  background: #fff;
  color: #888888;
}
section.style-content .col-lg-4:nth-child(1) p, section.style-content .col-lg-4:nth-child(3) p {
  line-height: 150%;
  margin-bottom: 25px;
}
section.style-content .col-lg-4:nth-child(1) p:last-of-type, section.style-content .col-lg-4:nth-child(3) p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  section.style-content .col-lg-4:nth-child(1) p, section.style-content .col-lg-4:nth-child(3) p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.style-content .col-lg-4:nth-child(1) p, section.style-content .col-lg-4:nth-child(3) p {
    text-align: center;
  }
}
section.style-content .col-lg-4:nth-child(2) {
  background: #fff;
  position: relative;
}
section.style-content .col-lg-4:nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #EEEEEE;
}
section.style-content .item-wrap {
  padding: 50px 40px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1199px) {
  section.style-content .item-wrap {
    padding: 35px 30px;
  }
}
section.style-content .item-wrap h3 {
  font-size: 30px;
  color: #131313;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 25px;
  text-transform: uppercase;
  max-width: 210px;
}
@media only screen and (max-width: 991px) {
  section.style-content .item-wrap h3 {
    text-align: center;
    font-size: 26px;
    max-width: initial;
  }
}
@media only screen and (max-width: 991px) {
  section.style-content .item-wrap h3 br {
    display: none;
  }
}
section.style-content .materials-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.style-content .materials-wrap .item {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1199px) {
  section.style-content .materials-wrap .item {
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.style-content .materials-wrap .item {
    justify-content: center;
  }
}
section.style-content .materials-wrap .text {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
}
section.style-content .materials-wrap .icon img {
  border-radius: 100%;
  width: 70px;
  height: 70px;
  aspect-ratio: 1;
  object-fit: cover;
  min-width: 70px;
  min-height: 70px;
}
@media only screen and (max-width: 1199px) {
  section.style-content .materials-wrap .icon img {
    aspect-ratio: 1;
    max-width: 60px;
    max-height: 60px;
    height: auto;
    min-width: initial;
    min-height: initial;
  }
}
section.style-content .materials-wrap h5 {
  font-size: 20px;
  color: #131313;
  margin-bottom: 8px;
  line-height: 100%;
  font-weight: 700;
}
@media only screen and (max-width: 1499px) {
  section.style-content .materials-wrap h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.style-content .materials-wrap h5 {
    font-size: 16px;
  }
}
section.style-content .materials-wrap p {
  margin-bottom: 0;
  line-height: 150%;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.style-content .materials-wrap p {
    font-size: 15px;
  }
}
section.style-content .machine-slider-wrapper {
  position: relative;
}
section.style-content .machine-slider-wrapper .controls {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
section.style-content .machine-slider-wrapper .controls > div {
  cursor: pointer;
}
section.style-content .machine-slider .img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
section.style-content .machine-slider .img-wrap img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  section.style-content .machine-slider .img-wrap img {
    width: initial;
    height: initial;
  }
}
section.style-content .machine-slider h6 {
  font-size: 16px;
  line-height: 150%;
  color: #131313;
  text-align: center;
  margin-bottom: 8px;
}
section.style-content .machine-slider p {
  font-size: 14px;
  color: #888888;
  text-align: center;
}

section.our-team {
  margin-bottom: 190px;
}
@media only screen and (max-width: 991px) {
  section.our-team {
    margin-bottom: 140px;
  }
}
section.our-team .container {
  position: relative;
}
section.our-team .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.our-team .container:after {
    bottom: -80px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-team .col-lg-4:not(:last-of-type) {
    margin-bottom: 36px;
  }
}
section.our-team .col-lg-4:nth-child(1) .contact-item:before {
  background: #A9C4AF;
}
section.our-team .col-lg-4:nth-child(2) .contact-item:before {
  background: #B4A9C4;
}
section.our-team .col-lg-4:nth-child(3) .contact-item:before {
  background: #EEEEEE;
}
section.our-team .contact-item {
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  height: 100%;
}
section.our-team .contact-item:before {
  content: "";
  height: 100%;
  width: 5px;
  border-radius: 10px;
  position: absolute;
  left: -18px;
  top: 0;
}
@media only screen and (max-width: 991px) {
  section.our-team .contact-item:before {
    height: 5px;
    width: calc(75% - 24px);
    top: initial;
    bottom: -20.5px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media only screen and (max-width: 575px) {
  section.our-team .contact-item:before {
    width: calc(100% - 24px);
  }
}
section.our-team .contact-item .photo img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
  height: 120px;
  width: 120px;
}
section.our-team .contact-item .qr-wrap {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  section.our-team .contact-item .qr-wrap {
    display: flex;
    justify-content: center;
  }
}
section.our-team .contact-item h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 1499px) {
  section.our-team .contact-item h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.our-team .contact-item h5 {
    font-size: 16px;
  }
}
section.our-team .contact-item .top {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  section.our-team .contact-item .top {
    justify-content: center;
  }
}
section.our-team .contact-item p {
  color: #888888;
  font-style: italic;
}
@media only screen and (max-width: 991px) {
  section.our-team .contact-item p {
    text-align: center;
  }
}
section.our-team .contact-item .contact-data {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section.our-team .contact-item .contact-data-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  section.our-team .contact-item .contact-data-wrap {
    justify-content: center;
  }
}
section.our-team .contact-item .contact-data-wrap a {
  font-size: 16px;
  color: #888888;
  line-height: 150%;
}
section.our-team .contact-item .contact-data-wrap a:hover {
  text-decoration: underline;
}
section.our-team .contact-item .contact-data-wrap .icon {
  display: inline-flex;
  align-items: center;
}
section.our-team .contact-item .contact-data-wrap .icon img {
  width: 20px;
  height: auto;
}

section.visit-us {
  background-image: url("../images/contact/map.jpg");
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
  min-height: 740px;
}
@media only screen and (max-width: 1199px) {
  section.visit-us {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us {
    background-position: 50% 130px;
  }
}
section.visit-us .contact-data {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  section.visit-us .contact-data {
    flex-direction: column;
    gap: 20px;
  }
}
section.visit-us .contact-data .item {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 1199px) {
  section.visit-us .contact-data .item {
    gap: 5px;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us .contact-data .item {
    justify-content: center;
  }
}
section.visit-us .contact-data .item .icon {
  display: inline-flex;
  align-items: center;
}
section.visit-us .contact-data .item img {
  width: 21px;
  height: auto;
}
@media only screen and (max-width: 1199px) {
  section.visit-us .contact-data .item img {
    width: 19px;
  }
}
section.visit-us .contact-data .item a {
  font-size: 20px;
  color: #888888;
  line-height: 150%;
}
@media only screen and (max-width: 1199px) {
  section.visit-us .contact-data .item a {
    font-size: 16px;
  }
}
section.visit-us .contact-data .item a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  section.visit-us .floating-photos {
    display: none;
  }
}
section.visit-us .floating-photos .top {
  justify-content: flex-end;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  section.visit-us .floating-photos .top {
    gap: 25px;
    margin-bottom: 25px;
  }
}
section.visit-us .floating-photos .top .photo:first-of-type {
  margin-top: -50px;
}
section.visit-us .floating-photos .btm {
  display: flex;
  justify-content: flex-end;
}
section.visit-us .floating-photos .btm .photo {
  margin-right: 80px;
}
section.visit-us .floating-photos img {
  border-radius: 5px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1199px) {
  section.visit-us .floating-photos img {
    max-width: 200px;
    height: auto;
  }
}
section.visit-us .contact-hours h5, section.visit-us .contact-hours li {
  text-align: center;
}
section.visit-us .contact-hours .opening-hours {
  margin-top: -95px;
}
@media only screen and (max-width: 991px) {
  section.visit-us .contact-hours .opening-hours {
    margin-top: 30px;
  }
}

section.contact-detail-text {
  padding-top: 230px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  section.contact-detail-text {
    padding-top: 270px;
  }
}
@media only screen and (max-width: 991px) {
  section.contact-detail-text {
    padding-top: 170px;
  }
}
section.contact-detail-text .heading-wrap {
  padding-right: 20px;
}
@media only screen and (max-width: 991px) {
  section.contact-detail-text .heading-wrap {
    padding-right: initial;
  }
}
section.contact-detail-text p {
  margin-top: 80px;
  color: #888888;
  margin-bottom: 18px;
  line-height: 150%;
}
@media only screen and (max-width: 1199px) {
  section.contact-detail-text p {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  section.contact-detail-text p {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  section.contact-detail-text .btn-wrap {
    display: flex;
    justify-content: center;
  }
}
section.contact-detail-text a {
  border: none;
  border-radius: 5px;
  background: #C5B9AA;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: 700;
  transition: 0.2s ease;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  section.contact-detail-text a {
    font-size: 18px;
  }
}
section.contact-detail-text a:hover {
  background: #B4A9C4;
  transition: 0.2s ease;
}

section.contact-us {
  margin-bottom: 190px;
}
@media only screen and (max-width: 991px) {
  section.contact-us {
    margin-bottom: 170px;
  }
}
section.contact-us .container {
  position: relative;
}
section.contact-us .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.contact-us .container:after {
    bottom: -80px;
  }
}
section.contact-us .main-icons-wrap {
  display: flex;
}
@media only screen and (max-width: 991px) {
  section.contact-us .main-icons-wrap {
    flex-direction: column;
  }
}
section.contact-us .icons-wrap {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.contact-us .icons-wrap {
    justify-content: center;
  }
}
section.contact-us .icon {
  border: 7px solid #A9C4AF;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.contact-us .icon {
    border-width: 5px;
    width: 100px;
    height: 100px;
  }
}
section.contact-us .icon:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: -30px;
  top: calc(50% - 3.5px);
  width: 30px;
  height: 7px;
  background: #A9C4AF;
}
@media only screen and (max-width: 991px) {
  section.contact-us .icon img {
    width: 35px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  section.contact-us .contact-data-line {
    display: none;
  }
}
section.contact-us .contact-data {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  section.contact-us .contact-data {
    padding-left: initial;
    gap: 15px;
    margin-top: 20px;
  }
}
section.contact-us .contact-data .item {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  section.contact-us .contact-data .item {
    justify-content: center;
  }
}
section.contact-us .contact-data .item .data-icon img {
  width: 21px;
  height: auto;
}
section.contact-us .contact-data .item a {
  color: #888888;
  line-height: 150%;
  font-size: 20px;
}
@media only screen and (max-width: 1499px) {
  section.contact-us .contact-data .item a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.contact-us .contact-data .item a {
    font-size: 16px;
  }
}
section.contact-us .contact-data .item a:hover {
  text-decoration: underline;
}

section.ref-detail-text {
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  section.ref-detail-text {
    margin-bottom: 30px;
  }
}
section.ref-detail-text .heading-wrap {
  padding-right: 20px;
}
@media only screen and (max-width: 991px) {
  section.ref-detail-text .heading-wrap {
    padding-right: initial;
  }
}
section.ref-detail-text .col-lg-6:first-of-type p {
  font-size: 20px;
  color: #888888;
  text-align: right;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  section.ref-detail-text .col-lg-6:first-of-type p {
    text-align: center;
    font-size: 16px;
  }
}
section.ref-detail-text .col-lg-6:last-of-type p {
  line-height: 150%;
  color: #888888;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  section.ref-detail-text .col-lg-6:last-of-type p {
    text-align: center;
  }
}
section.ref-detail-text .btm {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  section.ref-detail-text .btm {
    justify-content: center;
    margin-bottom: 20px;
  }
}
section.ref-detail-text .btm span {
  display: inline-flex;
  align-items: center;
  color: #888888;
}
section.ref-detail-text .btm span:first-of-type {
  font-size: 20px;
}
section.ref-detail-text .btm span:last-of-type {
  background: #EEEEEE;
  padding: 5px 10px;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  section.ref-detail-text .btn-wrap {
    display: flex;
    justify-content: center;
  }
}
section.ref-detail-text .btn-wrap a {
  border: none;
  border-radius: 5px;
  background: #C5B9AA;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: 700;
  transition: 0.2s ease;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  section.ref-detail-text .btn-wrap a {
    font-size: 18px;
  }
}
section.ref-detail-text .btn-wrap a:hover {
  background: #B4A9C4;
  transition: 0.2s ease;
}

.swipe-wrap {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

.slider-image {
  position: relative;
  height: 100%;
}
.slider-image a {
  height: 100%;
  width: 100%;
}
.slider-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-image .zoom-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .slider-image .zoom-wrap img {
    width: 35px;
    height: 35px;
  }
}

.swiper-slide img {
  border-radius: 5px;
}

section.about-us-main {
  margin-bottom: 100px;
}
section.about-us-main .hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
section.about-us-main .content-row {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main .content-row {
    margin-top: 30px;
  }
}

section.references-main {
  padding-top: 230px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  section.references-main {
    padding-top: 270px;
  }
}
@media only screen and (max-width: 991px) {
  section.references-main {
    padding-top: 170px;
    margin-bottom: 80px;
  }
}
section.references-main:before {
  display: none;
}
section.references-main .wrap .featured-text .date-wrap {
  margin-top: 30px;
}
section.references-main p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.promo-wrap {
  display: none;
}
section.promo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

section.why-choice {
  margin-bottom: 80px;
}
section.why-choice h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.why-choice h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-choice h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-choice h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.why-choice h2 {
    font-size: 36px;
  }
}
section.why-choice h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.why-choice h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.why-choice h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-choice h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.why-choice h3 {
    font-size: 28px;
  }
}
section.why-choice p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.why-choice p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.why-choice p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.why-choice p.desc {
    font-size: 16px;
  }
}
section.why-choice .heading {
  margin-bottom: 50px;
  padding-left: 70px;
}
@media only screen and (max-width: 991px) {
  section.why-choice .heading {
    padding-left: 30px;
    margin-bottom: 30px;
  }
}
section.why-choice .heading h2, section.why-choice .heading h3 {
  text-align: left;
}
section.why-choice .heading h3 {
  color: #fff;
}
section.why-choice .choice-wrap {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  section.why-choice .choice-wrap {
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.why-choice .left {
  background: #B4A9C4;
  border-radius: 5px;
  padding: 100px 40px 70px 0;
}
@media only screen and (max-width: 991px) {
  section.why-choice .left {
    padding: 50px 25px 35px 0;
  }
}
section.why-choice .left .items-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.why-choice .left .item {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  section.why-choice .left .item {
    gap: 25px;
  }
}
@media only screen and (max-width: 575px) {
  section.why-choice .left .item {
    gap: 15px;
  }
}
section.why-choice .left .item span {
  font-size: 40px;
  color: #B4A9C4;
  background: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-weight: 800;
}
@media only screen and (max-width: 991px) {
  section.why-choice .left .item span {
    height: 40px;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 32px;
  }
}
section.why-choice .left .item h5 {
  font-size: 26px;
  color: #131313;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  section.why-choice .left .item h5 {
    font-size: 18px;
  }
}
section.why-choice .left .item p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  max-width: 655px;
}
@media only screen and (max-width: 991px) {
  section.why-choice .left .item p {
    max-width: initial;
  }
}
section.why-choice .right {
  margin-top: -30px;
}
section.why-choice .right .img-wrap {
  height: calc(100% - 30px);
}
section.why-choice .right img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

section.product-gal h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.product-gal h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.product-gal h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.product-gal h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.product-gal h2 {
    font-size: 36px;
  }
}
section.product-gal h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.product-gal h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.product-gal h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.product-gal h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.product-gal h3 {
    font-size: 28px;
  }
}
section.product-gal p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.product-gal p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.product-gal p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.product-gal p.desc {
    font-size: 16px;
  }
}
section.product-gal .heading {
  padding-right: 45px;
}
@media only screen and (max-width: 991px) {
  section.product-gal .heading {
    padding-right: 0;
  }
}

section.product-content {
  margin-bottom: 110px;
}
section.product-content .col-lg-6:first-of-type h3, section.product-content .col-lg-6:first-of-type p, section.product-content .col-lg-6:first-of-type h4 {
  text-align: right;
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  section.product-content .col-lg-6:first-of-type h3, section.product-content .col-lg-6:first-of-type p, section.product-content .col-lg-6:first-of-type h4 {
    text-align: center;
    margin-left: initial;
  }
}
section.product-content .col-lg-6:first-of-type .top, section.product-content .col-lg-6:first-of-type .content-card, section.product-content .col-lg-6:first-of-type .btm-text {
  margin-right: 20px;
}
@media only screen and (max-width: 991px) {
  section.product-content .col-lg-6:first-of-type .top, section.product-content .col-lg-6:first-of-type .content-card, section.product-content .col-lg-6:first-of-type .btm-text {
    margin-right: initial;
  }
}
section.product-content h3 {
  font-size: 30px;
  max-width: 500px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.product-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
section.product-content p {
  color: #888888;
  max-width: 480px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  section.product-content p {
    max-width: initial;
  }
}
section.product-content h4 {
  font-size: 26px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 380px;
}
@media only screen and (max-width: 991px) {
  section.product-content h4 {
    font-size: 18px;
    max-width: initial;
  }
}
section.product-content .content-card {
  background: #EEEEEE;
  border-radius: 5px;
  margin-top: 85px;
}
section.product-content .content-card .img-wrap {
  width: 100%;
}
section.product-content .content-card .img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  height: 300px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  left: -30px;
  top: -30px;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card .img-wrap img {
    left: initial;
  }
}
section.product-content .content-card .text {
  padding: 30px 60px 50px 60px;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card .text {
    padding: 0 30px 30px 30px;
  }
}
section.product-content .content-card.card-duo {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card.card-duo {
    margin-right: initial;
    margin-left: initial;
    margin-bottom: 30px;
  }
}
section.product-content .content-card.card-duo .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: calc(100% + 60px);
  left: -30px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card.card-duo .images {
    width: calc(100% - 30px);
    gap: 15px;
    left: 15px;
  }
}
section.product-content .content-card.card-duo .images .img-wrap:first-of-type img {
  top: 60px;
  left: initial;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card.card-duo .images .img-wrap:first-of-type img {
    top: 15px;
    width: calc(100% + 15px);
  }
}
section.product-content .content-card.card-duo .images .img-wrap:last-of-type img {
  top: 30px;
  right: initial;
  left: initial;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card.card-duo .images .img-wrap:last-of-type img {
    top: 15px;
  }
}
section.product-content .content-card.card-duo .images img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
  height: 180px;
}
section.product-content .content-card.card-duo .text {
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  section.product-content .content-card.card-duo .text {
    margin-top: 30px;
  }
}
section.product-content .btm-text {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  section.product-content .btm-text {
    margin-top: 30px;
  }
}
section.product-content .btm-text p {
  max-width: initial;
}
section.product-content .divider-img {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.product-content .divider-img {
    margin-bottom: 30px;
  }
}
section.product-content .divider-img img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  height: 180px;
  border-radius: 5px;
}
section.product-content .quote {
  margin-left: 60px;
  margin-right: 60px;
}
@media only screen and (max-width: 991px) {
  section.product-content .quote {
    margin-left: 30px;
    margin-right: 30px;
  }
}
section.product-content .quote p {
  max-width: initial;
  color: #B4A9C4;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.product-content .quote p {
    font-size: 18px;
  }
}
section.product-content .btm-video-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.product-content .btm-video-wrap {
    margin-top: 30px;
  }
}
section.product-content .btm-video-wrap .item {
  width: 100%;
  position: relative;
}
section.product-content .btm-video-wrap .item .play-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: initial;
  top: initial;
  transform: initial;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  section.product-content .btm-video-wrap .item .play-btn {
    margin-bottom: 10px;
  }
}
section.product-content .btm-video-wrap .item .play-btn img {
  opacity: 1;
  max-width: 70px;
  max-height: 70px;
}
@media only screen and (max-width: 991px) {
  section.product-content .btm-video-wrap .item .play-btn img {
    max-width: 50px;
    max-height: 50px;
  }
}
section.product-content .btm-video-wrap .item:first-of-type img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 5px;
  height: 180px;
  width: 290px;
  bottom: -30px;
}
@media only screen and (max-width: 991px) {
  section.product-content .btm-video-wrap .item:first-of-type img {
    width: 100%;
    max-height: 180px;
    bottom: initial;
  }
}
section.product-content .btm-video-wrap .item:last-of-type {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #2D1E45;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
section.product-content .btm-video-wrap .item:last-of-type h6 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}

section.appliances-main .featured-text p {
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.appliances-main .featured-text h4 {
  margin-top: 5px;
}

section.hero-new {
  background-image: initial;
}

.hero-slider .wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  height: 100vh;
}
.hero-slider .hero-item {
  position: relative;
}
.hero-slider .hero-item:before, .hero-slider .hero-item:after {
  content: "";
  height: 55%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .hero-slider .hero-item:before, .hero-slider .hero-item:after {
    height: 70%;
  }
}
.hero-slider .hero-item:before {
  top: 0;
  background: linear-gradient(180deg, #131313 0%, rgba(19, 19, 19, 0) 100%);
}
.hero-slider .hero-item:after {
  bottom: 0;
  background: linear-gradient(0deg, #131313 0%, rgba(19, 19, 19, 0) 100%);
}
.hero-slider .btm-text {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.hero-slider .btm-text .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .hero-slider .btm-text .container {
    grid-template-columns: minmax(1px, 1fr);
    margin-bottom: 40px;
  }
}
.hero-slider .btm-text .left {
  grid-column: span 7;
}
@media only screen and (max-width: 991px) {
  .hero-slider .btm-text .left {
    grid-column: initial;
  }
}
.hero-slider .btm-text .right {
  margin-top: 10px;
  grid-column: span 5;
}
@media only screen and (max-width: 991px) {
  .hero-slider .btm-text .right {
    grid-column: initial;
  }
}

.vbox-grab .vbox-child img {
  max-height: 90vh;
}

section.about-us-main-wrap .content-row img {
  box-shadow: 0 0 53px 0 rgba(0, 0, 0, 0.1);
}
section.about-us-main-wrap .content-row .col-lg-6:first-of-type h3, section.about-us-main-wrap .content-row .col-lg-6:first-of-type p {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .content-row .col-lg-6:first-of-type h3, section.about-us-main-wrap .content-row .col-lg-6:first-of-type p {
    text-align: center;
  }
}
section.about-us-main-wrap .content-row .col-lg-6:first-of-type .text-wrap, section.about-us-main-wrap .content-row .col-lg-6:first-of-type .img-section {
  margin-right: 30px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .content-row .col-lg-6:first-of-type .text-wrap, section.about-us-main-wrap .content-row .col-lg-6:first-of-type .img-section {
    margin-right: 0;
  }
}
section.about-us-main-wrap .content-row h3 {
  margin-bottom: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .content-row h3 {
    margin-bottom: 20px;
  }
}
section.about-us-main-wrap .content-row p {
  margin-top: 0;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .content-row p {
    margin-bottom: 15px;
  }
}
section.about-us-main-wrap .content-row p.sm {
  width: 50%;
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .content-row p.sm {
    width: 100%;
  }
}
section.about-us-main-wrap .content-row p.right-btm-text {
  margin-top: 80px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .content-row p.right-btm-text {
    margin-top: 60px;
  }
}
section.about-us-main-wrap .content-row img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
  width: calc(100% - 30px);
}
@media only screen and (max-width: 767px) {
  section.about-us-main-wrap .content-row img {
    width: 100%;
  }
}
section.about-us-main-wrap .img-section {
  position: relative;
  margin-top: 70px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .img-section {
    margin-top: 150px;
  }
}
section.about-us-main-wrap .img-section .side-text {
  border-radius: 5px;
  position: absolute;
  padding: 15px 30px;
  background: #EEEEEE;
  width: 40%;
  height: 140%;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .img-section .side-text {
    height: 120%;
  }
}
@media only screen and (max-width: 575px) {
  section.about-us-main-wrap .img-section .side-text {
    width: 140px;
  }
}
section.about-us-main-wrap .img-section .side-text.top {
  left: 35px;
  top: -115px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .img-section .side-text.top {
    top: -90px;
  }
}
@media only screen and (max-width: 767px) {
  section.about-us-main-wrap .img-section .side-text.top {
    left: 20px;
  }
}
section.about-us-main-wrap .img-section .side-text.btm {
  right: 0;
  bottom: -115px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .img-section .side-text.btm {
    bottom: -90px;
  }
}
@media only screen and (max-width: 767px) {
  section.about-us-main-wrap .img-section .side-text.btm {
    right: 20px;
  }
}
section.about-us-main-wrap .img-section h5, section.about-us-main-wrap .img-section h6 {
  text-align: center;
  margin-bottom: 0;
}
section.about-us-main-wrap .img-section h5 {
  font-size: 50px;
  font-weight: 900;
}
@media only screen and (max-width: 1399px) {
  section.about-us-main-wrap .img-section h5 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .img-section h5 {
    font-size: 28px;
  }
}
section.about-us-main-wrap .img-section h6 {
  color: #888888;
  font-weight: 400;
  font-size: 16px;
}
section.about-us-main-wrap .img-wrap {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  section.about-us-main-wrap .img-wrap {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .img-wrap {
    margin-top: 130px;
    margin-bottom: 40px;
  }
}
section.about-us-main-wrap .img-wrap img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  height: 180px;
}
section.about-us-main-wrap .images-wrap {
  display: flex;
  gap: 30px;
  position: relative;
  margin-top: 55px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .images-wrap {
    margin-top: 30px;
    gap: 15px;
  }
}
section.about-us-main-wrap .images-wrap img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
section.about-us-main-wrap .images-wrap .right {
  position: relative;
  top: 30px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .images-wrap .left, section.about-us-main-wrap .images-wrap .right {
    width: 50%;
  }
}
section.about-us-main-wrap .people-wrap {
  display: flex;
  gap: 56px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .people-wrap {
    gap: 20px;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  section.about-us-main-wrap .people-wrap {
    flex-direction: column;
  }
}
section.about-us-main-wrap .people-wrap .left, section.about-us-main-wrap .people-wrap .right {
  position: relative;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .people-wrap .left, section.about-us-main-wrap .people-wrap .right {
    justify-content: center;
  }
}
section.about-us-main-wrap .people-wrap .left .text, section.about-us-main-wrap .people-wrap .right .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.about-us-main-wrap .people-wrap .img-wrap-people img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
  width: 120px;
  height: 120px;
}
section.about-us-main-wrap .people-wrap .left .line {
  left: -305px;
  bottom: 0;
  top: 0;
}
section.about-us-main-wrap .people-wrap .right .line {
  left: -30px;
  top: -30px;
}
section.about-us-main-wrap .people-wrap h5 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .people-wrap h5 {
    font-size: 18px;
  }
}
section.about-us-main-wrap .people-wrap h6 {
  font-size: 15px;
  color: #888888;
  margin-bottom: 0;
  font-weight: 400;
}
section.about-us-main-wrap .line {
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.about-us-main-wrap .line {
    display: none;
  }
}
section.about-us-main-wrap .line img {
  box-shadow: initial;
  width: initial;
  object-fit: initial;
  height: initial;
}

section.visit-us-about {
  position: relative;
  margin-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about {
    margin-bottom: 135px;
  }
}
section.visit-us-about .container {
  position: relative;
}
section.visit-us-about .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .container:after {
    bottom: -80px;
  }
}
section.visit-us-about .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.visit-us-about .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.visit-us-about .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.visit-us-about .heading-wrap h2 {
    font-size: 36px;
  }
}
section.visit-us-about .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.visit-us-about .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.visit-us-about .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.visit-us-about .heading-wrap h3 {
    font-size: 28px;
  }
}
section.visit-us-about .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.visit-us-about .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.visit-us-about .heading-wrap p.desc {
    font-size: 16px;
  }
}
section.visit-us-about .heading-text {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
section.visit-us-about .heading-text p {
  color: #888888;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .heading-text p {
    text-align: center;
  }
}
section.visit-us-about h4 {
  font-size: 30px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about h4 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
  }
}
section.visit-us-about .content-wrap {
  margin-top: 90px;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .content-wrap {
    margin-top: 40px;
  }
}
section.visit-us-about .items-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 50px;
  margin-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap {
    grid-template-columns: minmax(1px, 1fr);
    gap: 25px;
    margin-bottom: 50px;
  }
}
section.visit-us-about .items-wrap .item {
  display: flex;
  gap: 25px;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap .item {
    gap: 15px;
  }
}
section.visit-us-about .items-wrap .item:nth-child(2n) {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap .item:nth-child(2n) {
    margin-top: initial;
  }
}
section.visit-us-about .items-wrap .item .icon {
  padding: 35px;
  border-radius: 100%;
  border: 7px solid #A9C4AF;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap .item .icon {
    height: 100px;
    width: 100px;
    border: 5px solid #A9C4AF;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap .item .icon img {
    height: 40px;
    width: auto;
  }
}
section.visit-us-about .items-wrap .item h5 {
  font-size: 26px;
  margin-bottom: 5px;
  max-width: 390px;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap .item h5 {
    font-size: 20px;
    max-width: initial;
  }
}
section.visit-us-about .items-wrap .item p {
  color: #888888;
  margin-bottom: 0;
  max-width: 300px;
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .items-wrap .item p {
    max-width: initial;
  }
}
@media only screen and (max-width: 991px) {
  section.visit-us-about .opening-hours h5 {
    text-align: center;
  }
}

section.direct {
  position: relative;
  margin-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  section.direct {
    margin-bottom: 140px;
  }
}
section.direct .container {
  position: relative;
}
section.direct .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.direct .container:after {
    bottom: -80px;
  }
}
section.direct .heading-wrap {
  padding-right: 10px;
}
section.direct .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.direct .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.direct .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.direct .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.direct .heading-wrap h2 {
    font-size: 36px;
  }
}
section.direct .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.direct .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.direct .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.direct .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.direct .heading-wrap h3 {
    font-size: 28px;
  }
}
section.direct .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.direct .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.direct .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.direct .heading-wrap p.desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  section.direct .heading-wrap {
    padding-right: initial;
  }
}
section.direct .heading-text {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
section.direct .heading-text p {
  color: #888888;
}
@media only screen and (max-width: 991px) {
  section.direct .heading-text p {
    text-align: center;
  }
}
section.direct .texts-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 70px;
  padding-right: 60px;
}
@media only screen and (max-width: 991px) {
  section.direct .texts-wrap {
    margin-top: 40px;
    gap: 20px;
    padding-right: initial;
  }
}
section.direct .texts-wrap .text {
  position: relative;
  padding-left: 30px;
}
section.direct .texts-wrap .text:before {
  content: "";
  border-radius: 5px;
  background: #B4A9C4;
  height: 100%;
  width: 5px;
  position: absolute;
  left: 0;
}
section.direct .texts-wrap .text h4 {
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  section.direct .texts-wrap .text h4 {
    font-size: 22px;
  }
}
section.direct .texts-wrap .text p {
  margin-bottom: 0;
  color: #888888;
}
section.direct .images-top {
  display: flex;
  gap: 30px;
  position: relative;
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  section.direct .images-top {
    margin-top: 40px;
    gap: 20px;
  }
}
section.direct .images-top img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
section.direct .images-top .left {
  position: relative;
  top: 30px;
}
@media only screen and (max-width: 1399px) {
  section.direct .images-top .left, section.direct .images-top .right {
    width: 50%;
  }
}
section.direct .btm {
  margin-top: 60px;
  display: flex;
  gap: 10px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.direct .btm {
    flex-direction: column;
  }
}
section.direct .btm .image {
  position: relative;
  left: -30px;
}
@media only screen and (max-width: 991px) {
  section.direct .btm .image {
    left: initial;
  }
}
section.direct .btm .image img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
section.direct .btm .contact-info {
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  margin-bottom: initial;
}
@media only screen and (max-width: 991px) {
  section.direct .btm .contact-info {
    gap: 15px;
    margin-top: 20px;
  }
}
section.direct .btm .contact-info a {
  font-size: 18px;
}
@media only screen and (max-width: 1399px) {
  section.direct .btm .contact-info a {
    font-size: 16px;
  }
}
section.direct .btm .contact-info .btn-wrap {
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  section.direct .btm .contact-info .btn-wrap {
    margin-top: 5px;
    display: flex;
    justify-content: center;
  }
}
section.direct .btm .contact-info .btn-wrap a {
  border: none;
  border-radius: 5px;
  background: #B4A9C4;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: 700;
  transition: 0.2s ease;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  section.direct .btm .contact-info .btn-wrap a {
    font-size: 18px;
  }
}
section.direct .btm .contact-info .btn-wrap a:hover {
  background: #B4A9C4;
  transition: 0.2s ease;
}
section.direct .btm .contact-info .btn-wrap a:hover {
  background: #C5B9AA;
}

section.about-history {
  position: relative;
  margin-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  section.about-history {
    margin-bottom: 140px;
  }
}
section.about-history .heading-wrap {
  margin-right: 30px;
}
section.about-history .heading-wrap h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.about-history .heading-wrap h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.about-history .heading-wrap h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-history .heading-wrap h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.about-history .heading-wrap h2 {
    font-size: 36px;
  }
}
section.about-history .heading-wrap h3 {
  line-height: 120%;
  text-align: right;
  font-weight: 600;
  font-size: 50px;
  color: #888888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.about-history .heading-wrap h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  section.about-history .heading-wrap h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-history .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.about-history .heading-wrap h3 {
    font-size: 28px;
  }
}
section.about-history .heading-wrap p.desc {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
  color: #888888;
}
@media only screen and (max-width: 1199px) {
  section.about-history .heading-wrap p.desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-history .heading-wrap p.desc {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.about-history .heading-wrap p.desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-history .heading-wrap h2, section.about-history .heading-wrap h3 {
    text-align: right;
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .heading-wrap h2, section.about-history .heading-wrap h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  section.about-history .heading-wrap {
    margin-right: auto;
    width: calc(50% - 50px);
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .heading-wrap {
    margin-right: initial;
    width: auto;
  }
}
section.about-history .history-wrap {
  border-radius: 5px;
  background: #EEEEEE;
  padding: 60px;
}
@media only screen and (max-width: 991px) {
  section.about-history .history-wrap {
    padding: 30px;
  }
}
section.about-history .container {
  position: relative;
}
section.about-history .container:after {
  content: "";
  background: #dedede;
  width: 100%;
  left: 0;
  bottom: -100px;
  height: 1px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  section.about-history .container:after {
    bottom: -70px;
  }
}
section.about-history .item {
  width: calc(50% - 80px);
  position: relative;
}
@media only screen and (max-width: 535px) {
  section.about-history .item {
    width: 100%;
    text-align: center;
    margin-top: 100px;
  }
}
section.about-history .item:nth-of-type(1):before {
  content: "2003";
}
section.about-history .item:nth-of-type(2):before {
  content: "2014";
}
section.about-history .item:nth-of-type(3):before {
  content: "2016";
}
section.about-history .item:before {
  content: "";
  position: absolute;
  left: -105px;
  top: -30px;
  width: 85px;
  height: 85px;
  border: 5px solid #B4A9C4;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #B4A9C4;
}
@media only screen and (max-width: 991px) {
  section.about-history .item:before {
    font-size: 16px;
    border: 4px solid #B4A9C4;
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .item:before {
    left: 50%;
    transform: translate(-50%, 0);
    top: -100px;
  }
}
section.about-history .item:after {
  content: "";
  position: absolute;
  left: -64.5px;
  top: 52px;
  width: 5px;
  height: calc(100% - 40px);
  background: #B4A9C4;
}
@media only screen and (max-width: 991px) {
  section.about-history .item:after {
    height: calc(100% - 54px);
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .item:after {
    display: none;
  }
}
section.about-history .item.right {
  margin-left: auto;
}
section.about-history .item.left {
  width: calc(50% - 50px);
}
@media only screen and (max-width: 535px) {
  section.about-history .item.left {
    width: 100%;
  }
}
section.about-history .item.left h4, section.about-history .item.left p {
  text-align: right;
}
@media only screen and (max-width: 535px) {
  section.about-history .item.left h4, section.about-history .item.left p {
    text-align: center;
  }
}
section.about-history .item.left:before {
  left: initial;
  right: -110px;
}
@media only screen and (max-width: 535px) {
  section.about-history .item.left:before {
    left: initial;
    right: calc(50% - 85px);
  }
}
section.about-history .item.left:after {
  left: initial;
  right: -70.5px;
}
section.about-history .item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
section.about-history .item p {
  margin-bottom: 0;
  font-size: 16px;
  color: #888888;
}
section.about-history .numbers-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  section.about-history .numbers-wrap {
    gap: 25px;
    margin-top: -20px;
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .numbers-wrap {
    margin-top: 10px;
  }
}
section.about-history .history-wrap-btm {
  margin-top: 150px;
}
@media only screen and (max-width: 991px) {
  section.about-history .history-wrap-btm {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .history-wrap-btm {
    margin-top: 90px;
  }
}
section.about-history .history-wrap-btm .item h4 {
  font-size: 50px;
  font-weight: 900;
  line-height: 120%;
  text-align: right;
  color: #B4A9C4;
  position: relative;
  top: -17px;
}
@media only screen and (max-width: 991px) {
  section.about-history .history-wrap-btm .item h4 {
    font-size: 28px;
    top: -3px;
  }
}
@media only screen and (max-width: 535px) {
  section.about-history .history-wrap-btm .item h4 {
    top: initial;
    text-align: center;
  }
}
section.about-history .history-wrap-btm .item:before {
  content: "2023";
}
@media only screen and (max-width: 535px) {
  section.about-history .history-wrap-btm .item:before {
    display: flex;
    right: calc(50% - 85px);
    top: -100px;
    transform: translate(-50%, 0);
  }
}
section.about-history .history-wrap-btm .item:after {
  top: -97px;
  height: 70px;
}
@media only screen and (max-width: 535px) {
  section.about-history .history-wrap-btm .item:after {
    display: flex;
    top: -137px;
    height: 40px;
    right: calc(50% - 5px);
    transform: translate(-50%, 0);
    left: initial;
  }
}

.work-quality-slider .item img {
  margin-left: auto;
  margin-right: auto;
}

.business-data p {
  color: #888888;
  line-height: 150%;
  font-size: 20px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1499px) {
  .business-data p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .business-data p {
    font-size: 16px;
  }
}
.business-data .contact-data {
  position: relative;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .business-data .contact-data {
    margin-top: 5px;
  }
}
.business-data .contact-data:before {
  height: 100%;
  width: 6px;
  border-radius: 20px;
  background: #A9C4AF;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .business-data .contact-data:before {
    display: none;
  }
}

.captcha-p {
  color: #888888;
  text-align: center;
  margin-top: 10px;
}
.captcha-p a {
  text-decoration: underline;
}

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