@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tenor+Sans&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: auto;
  font-size: 15px;
  line-height: 24px;
  color: #353c29;
  scroll-behavior: smooth;
}
@media (max-width: 575px) {
  body {
    line-height: 22px;
  }
}

a,
li,
p,
span,
::after,
::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  transition: 600ms all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 1199px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}

img,
svg,
path,
g {
  max-width: 100%;
  transition: 600ms all;
}

figure {
  margin-bottom: 0;
}
figure img {
  width: 100%;
}

p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  p br {
    display: none;
  }
}

h1 {
  font-size: 54px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 54px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 40px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 36px;
}
@media (max-width: 991px) {
  h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 30px;
}
@media (max-width: 991px) {
  h5 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h5 {
    font-size: 22px;
  }
}

h6 {
  font-size: 26px;
}
@media (max-width: 991px) {
  h6 {
    font-size: 24px;
  }
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 101;
}

ul {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}

header {
  background-color: #b7ad9c;
  padding: 16px 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e3db;
  transition: 600ms all;
}
header .row {
  align-items: center;
}
header .left .nav-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .left .nav-toggle span {
  font-size: 24px;
  font-weight: 500;
  padding-left: 10px;
}
@media (max-width: 767px) {
  header .left .nav-toggle span {
    font-size: 18px;
    padding-left: 5px;
  }
}
header .left .nav-toggle img,
header .left .nav-toggle svg {
  width: 16px;
}
header .left .nav-toggle img g,
header .left .nav-toggle svg g {
  transition: 600ms all;
}
header .left .nav-toggle:hover svg g {
  transform: rotate(8deg);
}
header .mid {
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  header .mid {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  header .mid img {
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  header .mid img {
    max-width: 120px;
  }
}
header .right {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  header .right {
    display: none;
  }
}
header .right a {
  color: #353c29;
  border: 2px solid #353c29;
  padding: 10px 30px;
  display: inline-block;
  font-weight: 600;
}
@media (max-width: 991px) {
  header .right a {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  header .right a {
    padding: 6px 20px;
  }
}
header .right a span img,
header .right a span svg {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}
header .right a span img g,
header .right a span svg g {
  transition: 600ms all;
}
header .right a:hover {
  background-color: #353c29;
  color: #b7ad9c;
}
header .right a:hover span svg path {
  transform: rotate(8deg);
  fill: #b7ad9c;
}
header.on-scroll {
  background-color: rgba(152, 140, 121, 0.2);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid #ffffff;
}
header.on-scroll:hover {
  background-color: rgba(183, 173, 156, 0.8);
  backdrop-filter: blur(7px);
}
header.on-scroll .left .nav-toggle {
  color: #ffffff;
}
header.on-scroll .left .nav-toggle img,
header.on-scroll .left .nav-toggle svg {
  filter: brightness(0) invert(1);
}
header.on-scroll .mid a img {
  filter: brightness(0) invert(1);
}
header.on-scroll .right a {
  background-color: rgba(53, 60, 41, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}
header.on-scroll .right a span img,
header.on-scroll .right a span svg {
  filter: brightness(0) invert(1);
}

.toggle-drop {
  background-color: #b7ad9c;
  padding: 35px 0;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  transition: 1s all;
}
@media (max-width: 767px) {
  .toggle-drop {
    padding: 20px 0;
  }
}
.toggle-drop .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .toggle-drop .top {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .toggle-drop .top img {
    max-width: 110px;
  }
}
.toggle-drop .top .toggle-close {
  cursor: pointer;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .toggle-drop .top .toggle-close {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .toggle-drop .top .toggle-close {
    font-size: 16px;
  }
}
.toggle-drop .top .toggle-close img {
  margin-left: 5px;
}
@media (max-width: 767px) {
  .toggle-drop .top .toggle-close img {
    width: 15px;
  }
}
@media (max-width: 575px) {
  .toggle-drop .top .toggle-close img {
    width: 12px;
  }
}
.toggle-drop .drop-links ul li {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .toggle-drop .drop-links ul li {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .toggle-drop .drop-links ul li {
    margin-bottom: 10px;
  }
}
.toggle-drop .drop-links ul li a {
  font-size: 32px;
  color: #ffffff;
  font-family: "Tenor Sans", sans-serif;
}
@media (max-width: 1199px) {
  .toggle-drop .drop-links ul li a {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .toggle-drop .drop-links ul li a {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .toggle-drop .drop-links ul li a {
    font-size: 18px;
  }
}
.toggle-drop .drop-links ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  color: #353c29;
}
@media (max-width: 767px) {
  .toggle-drop .drop-address {
    margin-top: 20px;
  }
}
.toggle-drop .drop-address p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .toggle-drop .drop-address p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .toggle-drop .drop-address p {
    margin-bottom: 0px;
  }
}
.toggle-drop .drop-address a {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 25px;
  display: inline-block;
}
@media (max-width: 991px) {
  .toggle-drop .drop-address a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .toggle-drop .drop-address a {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.toggle-drop .drop-address a:hover {
  color: #353c29;
}
.toggle-drop .drop-address ul li ul {
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .toggle-drop .drop-address ul li ul {
    gap: 12px;
  }
}
.toggle-drop .drop-address ul li ul li a {
  margin: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #ffffff;
}
.toggle-drop .drop-address ul li ul li a:hover {
  background-color: #353c29;
}
.toggle-drop .drop-address ul li ul li a:hover img {
  filter: brightness(0) invert(1);
}
.toggle-drop.toggled {
  top: 0;
}
section {
  overflow: hidden;
}

.banner {
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 991px) {
  .banner {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .banner {
    max-height: 550px;
  }
}
.banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1d2018;
  background: linear-gradient(0deg, rgb(29, 32, 24) 29%, rgba(29, 32, 24, 0) 69%);
  opacity: 0.6;
}
@media (max-width: 991px) {
  .banner::after {
    background: #1d2018;
    background: linear-gradient(0deg, rgb(29, 32, 24) 0%, rgba(29, 32, 24, 0.23) 100%);
    opacity: 1;
  }
}
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner .container {
  position: relative;
  z-index: 2;
}
.banner .container .banner-wrap {
  max-width: 620px;
}
.banner .container .banner-wrap h1 {
  color: #b7ad9c;
}
.banner .container .banner-wrap p {
  font-size: 20px;
  color: #b7ad9c;
}
@media (max-width: 767px) {
  .banner .container .banner-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner .container .banner-wrap p br {
    display: none;
  }
}
.banner .container .banner-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .banner .container .banner-wrap ul {
    gap: 10px;
  }
}
.banner .container .banner-wrap ul li a {
  background-color: #b7ad9c;
  padding: 10px 25px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: #353c29;
  border: 2px solid #b7ad9c;
  display: inline-block;
}
@media (max-width: 767px) {
  .banner .container .banner-wrap ul li a {
    font-size: 16px;
    padding: 8px 10px;
  }
}
.banner .container .banner-wrap ul li a span {
  margin-right: 8px;
}
.banner .container .banner-wrap ul li a span img,
.banner .container .banner-wrap ul li a span svg {
  width: 16px;
}
@media (max-width: 767px) {
  .banner .container .banner-wrap ul li a span img,
  .banner .container .banner-wrap ul li a span svg {
    width: 12px;
  }
}
.banner .container .banner-wrap ul li a:hover {
  background-color: #c6bcab;
}
.banner .container .banner-wrap ul li a:hover span svg path {
  transform: rotate(8deg);
}
.banner .container .banner-wrap ul li:first-child a:hover img {
  filter: brightness(0) invert(1);
}
.banner .container .banner-wrap ul li:last-child a {
  background-color: transparent;
  color: #c6bcab;
}
.banner .container .banner-wrap ul li:last-child a:hover {
  background-color: #c6bcab;
  color: #353c29;
}
.banner .container .banner-wrap ul li:last-child a:hover span svg path {
  transform: rotate(8deg);
  fill: #353c29;
}

a.primary-button {
  background-color: #b7ad9c;
  padding: 7px 25px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: #353c29;
  border: 2px solid #b7ad9c;
  display: inline-block;
  transition: 600ms all;
}
@media (max-width: 767px) {
  a.primary-button {
    font-size: 16px;
    padding: 8px 15px;
  }
}
@media (max-width: 574px) {
  a.primary-button {
    padding: 6px 15px;
  }
}
a.primary-button span {
  margin-right: 8px;
}
a.primary-button span img,
a.primary-button span svg {
  width: 16px;
}
@media (max-width: 767px) {
  a.primary-button span img,
  a.primary-button span svg {
    width: 12px;
  }
}
a.primary-button:hover {
  background-color: #c6bcab;
}
a.primary-button:hover span svg path {
  transform: rotate(8deg);
}

.modern-living {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .modern-living {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .modern-living {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .modern-living {
    padding: 70px 0;
  }
}
.modern-living .head {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .modern-living .head {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .modern-living .head {
    margin-bottom: 20px;
  }
}
.modern-living .head h2 {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .modern-living .count-box {
    margin-top: 25px;
  }
}
.modern-living .count-box .inner {
  padding: 0 80px;
  text-align: center;
  border-right: 1px solid #353c29;
}
@media (max-width: 1199px) {
  .modern-living .count-box .inner {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  .modern-living .count-box .inner {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .modern-living .count-box .inner {
    padding: 0 10px;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .modern-living .count-box .inner {
    text-align: left;
    padding: 0;
  }
}
.modern-living .count-box .inner h2 {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  font-size: 64px;
}
@media (max-width: 991px) {
  .modern-living .count-box .inner h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .modern-living .count-box .inner h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .modern-living .count-box .inner h2 {
    justify-content: flex-start;
    margin-bottom: 5px;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .modern-living .count-box .inner p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .modern-living .count-box .inner p {
    font-size: 14px;
    line-height: 20px;
  }
}
.modern-living .count-box:last-child .inner {
  border-right: none;
}

.big-para {
  font-size: 25px;
  line-height: 34px;
}
@media (max-width: 991px) {
  .big-para {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .big-para {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .big-para {
    font-size: 15px;
    line-height: 24px;
  }
}
.big-para span {
  font-weight: 600;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bg-image::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #1d2018;
  background: linear-gradient(0deg, rgb(29, 32, 24) 0%, rgba(29, 32, 24, 0) 100%);
  opacity: 0.9;
}
.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bg {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 991px) {
  .full-bg {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .full-bg {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .full-bg {
    padding: 70px 0;
  }
}
.full-bg .container {
  position: relative;
}
.full-bg .row {
  justify-content: center;
}
.full-bg .row .wrap {
  max-width: 860px;
  color: #ffffff;
  text-align: center;
}
.full-bg .row .wrap ul {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}
@media (max-width: 767px) {
  .full-bg .row .wrap ul {
    margin: 50px 0;
  }
}
@media (max-width: 575px) {
  .full-bg .row .wrap ul {
    margin: 30px 0;
  }
}
.full-bg .row .wrap ul li .inner {
  padding: 0 80px;
  text-align: center;
  border-right: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .full-bg .row .wrap ul li .inner {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .full-bg .row .wrap ul li .inner {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .full-bg .row .wrap ul li .inner {
    padding: 0 15px;
  }
}
.full-bg .row .wrap ul li .inner h5 {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .full-bg .row .wrap ul li .inner h5 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .full-bg .row .wrap ul li .inner h5 {
    font-size: 16px;
  }
}
.full-bg .row .wrap ul li .inner p {
  font-size: 22px;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .full-bg .row .wrap ul li .inner p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .full-bg .row .wrap ul li .inner p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .full-bg .row .wrap ul li .inner p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.full-bg .row .wrap ul li:last-child .inner {
  border-right: none;
}
.full-bg .row .wrap .this p {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .full-bg .row .wrap .this p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .full-bg .row .wrap .this p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .full-bg .row .wrap .this img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .full-bg .row .wrap .this img {
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .full-bg .row .wrap .this img {
    max-width: 130px;
  }
}

.ethos {
  padding: 120px 0;
  background-color: #e2e2e2;
}
@media (max-width: 991px) {
  .ethos {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .ethos {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .ethos {
    padding: 70px 0;
  }
}
.ethos .left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ethos .left {
    margin-bottom: 20px;
  }
}
.ethos .box {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ethos .box {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .ethos .box {
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.ethos .box:last-child {
  margin-bottom: 0;
}
.ethos .box .icon {
  margin-right: 15px;
}
.ethos .box .icon span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b7ad9c;
}
@media (max-width: 575px) {
  .ethos .box .icon span {
    width: 30px;
    height: 30px;
  }
}
.ethos .box .icon span img {
  width: 20px;
}
@media (max-width: 575px) {
  .ethos .box .icon span img {
    width: 12px;
  }
}
.ethos .box .text p {
  margin-bottom: 0;
  font-size: 18px;
}
@media (max-width: 575px) {
  .ethos .box .text p {
    font-size: 15px;
  }
}
.ethos .box .text p strong {
  font-weight: 600;
}

.brand-promise {
  background: url(../images/brand-promise-bg.png) no-repeat bottom right;
  background-size: cover;
  padding: 120px 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .brand-promise {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .brand-promise {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .brand-promise {
    padding: 70px 0;
  }
}
.brand-promise .line-title span::after {
  background-color: #ffffff;
}
.brand-promise .brand-top {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .brand-promise .brand-top {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .brand-promise .brand-top {
    margin-bottom: 30px;
  }
}
.brand-promise .brand-top h2 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .brand-promise .brand-top h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .brand-promise .brand-promise-left {
    margin-bottom: 30px;
  }
}
.brand-promise .brand-promise-left figure {
  margin-right: 25px;
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .brand-promise .brand-promise-left figure {
    margin-right: 0;
  }
}
.brand-promise .brand-promise-left figure img {
  width: 100%;
}
.brand-promise .brand-promise-right .inner {
  padding-left: 25px;
}
@media (max-width: 991px) {
  .brand-promise .brand-promise-right .inner {
    padding-left: 0;
  }
}
.brand-promise .brand-promise-right .inner .box {
  display: flex;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .brand-promise .brand-promise-right .inner .box {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .brand-promise .brand-promise-right .inner .box {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.brand-promise .brand-promise-right .inner .box:last-child {
  margin-bottom: 0;
}
.brand-promise .brand-promise-right .inner .box .icon {
  margin-right: 20px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .brand-promise .brand-promise-right .inner .box .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .brand-promise .brand-promise-right .inner .box .icon img {
    width: 50px;
  }
}
.brand-promise .brand-promise-right .inner .box h5 {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .brand-promise .brand-promise-right .inner .box h5 {
    margin-bottom: 10px;
  }
}
.brand-promise .brand-promise-right .inner .box p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 200;
}
@media (max-width: 767px) {
  .brand-promise .brand-promise-right .inner .box p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .brand-promise .brand-promise-right .inner .box p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
  }
}

.line-title span {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .line-title span {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .line-title span {
    font-size: 16px;
  }
}
.line-title span::after {
  position: absolute;
  content: "";
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 65px;
  height: 2px;
  background-color: #353c29;
}
@media (max-width: 767px) {
  .line-title span::after {
    width: 30px;
  }
}

.flagship {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .flagship {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .flagship {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .flagship {
    padding: 70px 0;
  }
}
.flagship figure {
  margin: 35px 0 20px;
  position: relative;
}
@media (max-width: 575px) {
  .flagship figure {
    height: 200px;
  }
}
.flagship figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: unset;
}
.flagship figure .btn-wrap {
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 2;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .flagship figure .btn-wrap {
    top: 20px;
    left: 20px;
    padding: 5px 15px;
  }
}
@media (max-width: 575px) {
  .flagship figure .btn-wrap {
    top: 15px;
    left: 15px;
  }
}
.flagship figure .text-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flagship figure .text-wrap .inner h2 {
  color: #ffffff;
  font-size: 74px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .flagship figure .text-wrap .inner h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .flagship figure .text-wrap .inner h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .flagship figure .text-wrap .inner h2 {
    font-size: 30px;
  }
}

.residences {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .residences {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .residences {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .residences {
    padding-bottom: 50px;
  }
}
.residences .residence-left .inner {
  padding-right: 50px;
  position: sticky;
  top: 100px;
}
@media (max-width: 767px) {
  .residences .residence-left .inner {
    padding-right: 0;
  }
}
.residences .residence-left .inner h2 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .residences .residence-right {
    margin-top: 30px;
  }
}
.residences .residence-right .residence-box {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  padding-left: 70px;
  border-bottom: 1px solid #e0e4e0;
}
@media (max-width: 1199px) {
  .residences .residence-right .residence-box {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .residences .residence-right .residence-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .residences .residence-right .residence-box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.residences .residence-right .residence-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.residences .residence-right .residence-box .text h6 {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .residences .residence-right .residence-box .text h6 {
    margin-bottom: 10px;
  }
}
.residences .residence-right .residence-box .icon {
  margin-left: 80px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .residences .residence-right .residence-box .icon {
    margin-left: 50px;
  }
}
@media (max-width: 575px) {
  .residences .residence-right .residence-box .icon {
    margin-left: 0px;
    margin-bottom: 15px;
  }
}
.residences .residence-right .residence-box .icon img {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .residences .residence-right .residence-box .icon img {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .slider-wrap {
    padding-right: 0;
  }
}

.property-lising {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .property-lising {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .property-lising {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .property-lising {
    padding-bottom: 50px;
  }
}
.property-lising .property-box figcaption {
  padding: 25px 0 0;
}
.property-lising .property-box figcaption h5 {
  margin: 25px 0;
}
@media (max-width: 991px) {
  .property-lising .property-box figcaption h5 {
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  .property-lising .property-box figcaption h5 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .property-lising .property-box figcaption h5 br {
    display: none;
  }
}
.property-lising .property-box figcaption p {
  margin-bottom: 0;
}
.property-lising .property-box figcaption p.sub-title {
  text-transform: uppercase;
  font-weight: 500;
}
.property-lising .property-box figcaption a {
  display: inline-block;
  margin-top: 25px;
  color: #1d2018;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  position: relative;
}
.property-lising .property-box figcaption a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: 15px;
  background-position-y: 5px;
  opacity: 0;
  transition: 600ms all;
}
.property-lising .property-box figcaption a:hover {
  padding-left: 20px;
}
.property-lising .property-box figcaption a:hover::before {
  opacity: 1;
}

.faq {
  overflow: unset;
  position: relative;
  background-color: #e2e2e2;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .faq {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .faq {
    padding: 70px 0;
  }
}
.faq .container {
  position: relative;
}
.faq .container .round-to-top {
  position: absolute;
  margin-top: -220px;
  right: 12px;
  z-index: 9;
}
@media (max-width: 991px) {
  .faq .container .round-to-top {
    display: none;
  }
}
.faq .container .round-to-top span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: rgba(53, 60, 41, 0.32);
}
.faq .container .round-to-top span:hover {
  background-color: #353c29;
}
.faq .container .round-to-top span:hover img {
  filter: brightness(0) invert(1);
}
.faq .head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .faq .head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .faq .head {
    margin-bottom: 10px;
  }
}
.faq .head p {
  margin-bottom: 0;
}
.faq .accordion {
  margin-top: 20px;
}
.faq .accordion .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  padding: 35px 0;
  font-size: 24px;
  font-weight: 600;
  box-shadow: none;
  outline: none;
  color: #353c29 !important;
}
@media (max-width: 991px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 25px 0;
    font-weight: 500;
  }
}
@media (max-width: 575px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px 0;
  }
}
.faq .accordion .accordion-item .accordion-body {
  padding: 0 0 25px;
}
@media (max-width: 575px) {
  .faq .accordion .accordion-item .accordion-body {
    padding: 0 0 15px;
  }
}
.faq .accordion .accordion-item .accordion-body p {
  font-size: 24px;
  line-height: 32px;
  color: #353c29;
}
@media (max-width: 991px) {
  .faq .accordion .accordion-item .accordion-body p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .faq .accordion .accordion-item .accordion-body p {
    font-size: 15px;
    line-height: 24px;
  }
}

.foot-form {
  background-color: #353c29;
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .foot-form {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .foot-form {
    padding: 70px 0;
  }
}
.foot-form h4 {
  color: #b7ad9c;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.foot-form form ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .foot-form form ul {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .foot-form form ul li {
    width: 100%;
  }
}
.foot-form form ul input {
  border: 2px solid #b7ad9c;
  background-color: transparent;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 10px 20px;
  height: 50px;
}
@media (min-width: 1400px) {
  .foot-form form ul input {
    min-width: 300px;
  }
}
@media (max-width: 575px) {
  .foot-form form ul input {
    width: 100%;
    padding: 10px 15px;
  }
}
.foot-form form ul input::placeholder {
  font-weight: 500;
  color: #b7ad9c;
}
.foot-form form ul button {
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border: none;
  padding: 0;
}
@media (max-width: 575px) {
  .foot-form form ul button {
    width: 100%;
    background-color: #b7ad9c;
  }
}

footer {
  background-color: #b7ad9c;
  padding-top: 95px;
}
@media (max-width: 991px) {
  footer {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 50px;
  }
}
@media (max-width: 1199px) {
  footer .foot-left {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  footer .foot-left {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  footer .foot-left img {
    width: 120px;
  }
}
footer .foot-left h6 {
  font-size: 20px;
  margin: 80px 0 20px;
}
@media (max-width: 991px) {
  footer .foot-left h6 {
    margin: 50px 0 20px;
  }
}
@media (max-width: 767px) {
  footer .foot-left h6 {
    margin: 30px 0 20px;
  }
}
footer .foot-left form {
  display: flex;
  gap: 8px;
  position: relative;
}
footer .foot-left form input {
  border: 1px solid #353c29;
  outline: none;
  box-shadow: none;
  height: 50px;
  width: 100%;
  max-width: 310px;
  background-color: transparent;
  color: #353c29;
  padding: 10px 15px;
  width: 310px;
}
footer .foot-left form input::placeholder {
  color: #353c29;
}
footer .foot-left form input[type=submit] {
  width: 120px;
  background-color: #353c29;
  color: #b7ad9c;
}
footer .foot-left form .wpcf7-response-output {
  display: none;
}
footer .foot-left form .wpcf7-spinner {
  display: none;
}
footer .foot-left form .wpcf7-form-control-wrap[data-name=your-email] {
  position: relative;
}
footer .foot-left form .wpcf7-form-control-wrap[data-name=your-email] .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: red;
  font-size: 0;
}
footer .foot-right h6 {
  font-size: 22px;
}
@media (max-width: 575px) {
  footer .foot-right h6 {
    font-size: 20px;
  }
}
footer .foot-right .links {
  margin-bottom: 25px;
}
footer .foot-right .links li {
  margin-bottom: 8px;
}
footer .foot-right .links li a {
  color: #1d2018;
  font-size: 16px;
  border-bottom: 1px solid #b7ad9c;
}
@media (max-width: 575px) {
  footer .foot-right .links li a {
    font-size: 15px;
  }
}
footer .foot-right .links li a:hover {
  border-bottom: 1px solid #353c29;
}
footer .foot-right .social {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}
footer .foot-right .to-top {
  float: right;
}
@media (max-width: 575px) {
  footer .foot-right .to-top {
    float: none;
  }
}
footer .foot-right .to-top span {
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
  color: #353c29;
}
footer .copy {
  margin-top: 30px;
}
footer .copy .wrap {
  padding: 30px 0 65px;
  border-top: 1px solid #353c29;
}
@media (max-width: 991px) {
  footer .copy .wrap {
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  footer .copy .wrap p {
    font-size: 13px;
    line-height: 20px;
  }
}

.inner-top {
  padding-top: 200px !important;
}
@media (max-width: 991px) {
  .inner-top {
    padding-top: 180px !important;
  }
}
@media (max-width: 767px) {
  .inner-top {
    padding-top: 150px !important;
  }
}
@media (max-width: 575px) {
  .inner-top {
    padding-top: 120px !important;
  }
}

.about-sakeenah {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .about-sakeenah {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .about-sakeenah {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .about-sakeenah {
    padding: 70px 0;
  }
}
.about-sakeenah .abt-left p {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  display: flex;
}
@media (max-width: 767px) {
  .about-sakeenah .abt-left p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .about-sakeenah .abt-left p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.about-sakeenah .abt-left p svg {
  width: 16px;
  font-size: 20px;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .about-sakeenah .abt-left p svg {
    margin-right: 10px;
    height: 19px;
  }
}
.about-sakeenah .abt-right h1 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about-sakeenah .abt-right h1 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .about-sakeenah .abt-right h1 {
    margin-bottom: 20px;
  }
}

.full-img img {
  width: 100%;
}

.vision {
  background: url(../images/mission-bg.png) no-repeat bottom right;
  background-size: cover;
  padding: 120px 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .vision {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .vision {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .vision {
    padding: 70px 0;
  }
}
.vision .msn-box .wrap {
  padding-right: 80px;
}
@media (max-width: 991px) {
  .vision .msn-box .wrap {
    padding-right: 0;
  }
}
.vision .msn-box .wrap h2 {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .vision .msn-box .wrap h2 {
    margin-bottom: 15px;
  }
}
.vision .msn-box .wrap h2 img {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .vision .msn-box .wrap h2 img {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .vision .msn-box .wrap h2 img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .vision .vsn-box {
    margin-top: 40px;
  }
}
.vision .vsn-box .wrap {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .vision .vsn-box .wrap {
    padding-left: 0;
  }
}
.vision .vsn-box .wrap h2 {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .vision .vsn-box .wrap h2 {
    margin-bottom: 15px;
  }
}
.vision .vsn-box .wrap h2 img {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .vision .vsn-box .wrap h2 img {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .vision .vsn-box .wrap h2 img {
    width: 30px;
  }
}

.values-white {
  text-align: center;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .values-white {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .values-white {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .values-white {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .values-white .value-box {
    margin-bottom: 30px;
  }
}
.values-white .value-box .wrap {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .values-white .value-box .wrap {
    padding: 0;
  }
}
.values-white .value-box .wrap h6 {
  margin: 25px 0;
}
@media (max-width: 767px) {
  .values-white .value-box .wrap h6 {
    margin: 15px 0;
  }
}
.values-white .value-box .wrap p {
  max-width: 370px;
  margin: auto;
  font-size: 16px;
}
@media (max-width: 767px) {
  .values-white .value-box .wrap img {
    width: 50px;
  }
}
.values-white .full-value {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .values-white .full-value {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .values-white .full-value {
    margin-top: 20px;
  }
}
.values-white .full-value a {
  color: #353c29;
  font-weight: 500;
}
.values-white .full-value a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.values {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .values {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .values {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .values {
    padding: 70px 0;
  }
}
.values::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353c29;
  background: linear-gradient(0deg, rgb(53, 60, 41) 0%, rgb(53, 60, 41) 15%, rgba(53, 60, 41, 0.23) 100%);
  opacity: 0.7;
}
@media (max-width: 1199px) {
  .values::after {
    opacity: 1;
  }
}
.values .container {
  position: relative;
  z-index: 1;
}
.values .head {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .values .head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .values .head {
    margin-bottom: 0px;
  }
}
.values .head p {
  margin-bottom: 20px;
}
.values .head p.title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .values .head p.title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .values .head p.title {
    font-size: 16px;
  }
}
.values .head h2 {
  color: #ffffff;
}
@media (max-width: 991px) {
  .values .value-box {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .values .value-box {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .values .value-box:nth-of-type(2) .wrap {
    border-right: none;
  }
}
.values .value-box .wrap {
  padding: 0 30px;
  border-right: 1px solid #ffffff;
}
@media (max-width: 1199px) {
  .values .value-box .wrap {
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .values .value-box .wrap {
    border-right: none;
    padding: 0;
  }
}
.values .value-box .wrap img {
  max-width: 70px;
}
.values .value-box .wrap h6 {
  margin: 25px 0;
  color: #ffffff;
}
@media (min-width: 1400px) {
  .values .value-box .wrap h6 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .values .value-box .wrap h6 {
    margin: 15px 0;
  }
}
.values .value-box .wrap p {
  color: #ffffff;
}
@media (max-width: 991px) {
  .values .value-box .wrap img {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .values .value-box .wrap img {
    width: 50px;
  }
}
.values .value-box:last-child .wrap {
  border-right: none;
}

.founders {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .founders {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .founders {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .founders {
    padding: 70px 0;
  }
}
.founders .head {
  text-align: center;
}
.founders .head .sub {
  display: flex;
  justify-content: center;
}
.founders .head .sub span {
  position: relative;
  padding: 0 15px;
  text-transform: uppercase;
}
.founders .head .sub span::after {
  position: absolute;
  content: "";
  left: 100%;
  top: 10px;
  width: 32px;
  height: 2px;
  background-color: #b7ad9c;
}
.founders .head .sub span::before {
  position: absolute;
  content: "";
  right: 100%;
  top: 10px;
  width: 32px;
  height: 2px;
  background-color: #b7ad9c;
}
@media (min-width: 1400px) {
  .founders .head h3 {
    font-size: 44px;
  }
}
.founders .founder {
  display: flex;
  justify-content: center;
}
.founders .founder .wrap {
  max-width: 410px;
  text-align: center;
}
.founders .founder .wrap figcaption {
  margin-top: 25px;
}
.founders .founder .wrap figcaption h6 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
.founders .founder .wrap figcaption p {
  font-size: 18px;
  font-family: "Tenor Sans", sans-serif;
  margin: 25px 0;
}
@media (max-width: 991px) {
  .founders .founder .wrap figcaption p {
    font-size: 16px;
  }
}
.founders .founder .wrap figcaption a {
  background-color: #353c29;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 25px;
  display: inline-block;
}

.head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .head {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .head {
    margin-bottom: 30px;
  }
}
.head h2 {
  margin-bottom: 0;
}

.phase {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .phase {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .phase {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .phase {
    padding-bottom: 50px;
  }
}
.phase .container {
  position: relative;
}
@media (min-width: 1100px) {
  .phase .container {
    max-width: 1065px;
  }
}
@media (max-width: 991px) {
  .phase .container {
    max-width: 720px;
  }
}
.phase .container::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  background: #353c29;
  background: linear-gradient(0deg, rgba(53, 60, 41, 0) 0%, rgba(119, 117, 99, 0.48) 47%, rgb(183, 173, 156) 100%);
}
@media (max-width: 991px) {
  .phase .container::before {
    display: none;
  }
}
.phase .container .phase-row {
  margin: 0 0 80px;
}
@media (max-width: 991px) {
  .phase .container .phase-row {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .phase .container .phase-row {
    margin-bottom: 30px;
  }
}
.phase .container .phase-row:last-child {
  margin-bottom: 0;
}
.phase .container .phase-row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.phase .container .phase-row:nth-of-type(2n) .phase-box .dot {
  right: calc(100% + 118px);
  left: inherit;
}
@media (max-width: 1099px) {
  .phase .container .phase-row:nth-of-type(2n) .phase-box .dot {
    right: calc(100% + 65px);
  }
}
@media (max-width: 991px) {
  .phase .container .phase-row:nth-of-type(2n) .phase-box .dot {
    right: calc(100% - 10px);
  }
}
.phase .container .phase-row .phase-box {
  width: 392px;
  height: 350px;
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box {
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 575px) {
  .phase .container .phase-row .phase-box {
    height: 300px;
  }
}
.phase .container .phase-row .phase-box .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 118px);
  margin: auto;
  height: 20px;
  z-index: 1;
}
@media (max-width: 1099px) {
  .phase .container .phase-row .phase-box .dot {
    left: calc(100% + 65px);
  }
}
@media (max-width: 991px) {
  .phase .container .phase-row .phase-box .dot {
    left: calc(100% - 10px);
  }
}
.phase .container .phase-row .phase-box .dot span {
  width: 21px;
  height: 21px;
  display: flex;
  background-color: #353c29;
  border-radius: 20px;
  border: 3px solid #ffffff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
}
.phase .container .phase-row .phase-box .wrap {
  background-color: #f4f4f4;
  border: 1px solid #b7ad9c;
  width: 100%;
  height: 100%;
  padding: 45px;
  position: relative;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .wrap {
    padding: 30px;
  }
}
.phase .container .phase-row .phase-box .wrap ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .wrap ul {
    margin-bottom: 20px;
  }
}
.phase .container .phase-row .phase-box .wrap ul li h2 {
  font-size: 64px;
  line-height: 42px;
  color: #b7ad9c;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .wrap ul li h2 {
    font-size: 54px;
  }
}
@media (max-width: 575px) {
  .phase .container .phase-row .phase-box .wrap ul li h2 {
    font-size: 44px;
  }
}
.phase .container .phase-row .phase-box .wrap ul li p {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.phase .container .phase-row .phase-box .wrap ul li p span {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .phase .container .phase-row .phase-box .wrap ul li img {
    max-width: 150px;
  }
}
.phase .container .phase-row .phase-box .wrap h5 {
  margin-bottom: 12px;
  text-transform: uppercase;
}
.phase .container .phase-row .phase-box .wrap p {
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .phase .container .phase-row .phase-box .wrap p {
    font-size: 20px;
  }
}
.phase .container .phase-row .phase-box .plus-wrap {
  position: absolute;
  right: 25px;
  bottom: 25px;
  z-index: 2;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .plus-wrap {
    right: 10px;
    bottom: 10px;
  }
}
.phase .container .phase-row .phase-box .plus-wrap .plus-btn {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.phase .container .phase-row .phase-box .plus-wrap .plus-btn span {
  width: 15px;
  height: 15px;
  position: relative;
}
.phase .container .phase-row .phase-box .plus-wrap .plus-btn span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  top: 7px;
  left: 0;
  background-color: #353c29;
}
.phase .container .phase-row .phase-box .plus-wrap .plus-btn span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  top: 0;
  left: 7px;
  background-color: #353c29;
}
.phase .container .phase-row .phase-box .plus-wrap .plus-btn.open span::before {
  opacity: 0;
}
.phase .container .phase-row .phase-box .hidden-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  border: 1px solid #b7ad9c;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  transition: 600ms all;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .hidden-wrap {
    padding: 15px;
  }
}
.phase .container .phase-row .phase-box .hidden-wrap p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .hidden-wrap p {
    font-size: 13px;
    line-height: 16px;
  }
}
.phase .container .phase-row .phase-box .hidden-wrap ul {
  padding-left: 15px;
  margin-bottom: 8px;
}
.phase .container .phase-row .phase-box .hidden-wrap ul li {
  font-size: 14px;
  line-height: 18px;
  list-style: disc;
}
@media (max-width: 767px) {
  .phase .container .phase-row .phase-box .hidden-wrap ul li {
    font-size: 13px;
    line-height: 16px;
  }
}
.phase .container .phase-row .phase-box .hidden-wrap.visible {
  opacity: 1;
  overflow: visible;
}

.executive .head {
  margin-bottom: 60px;
  text-align: center;
}
.executive .head .sub {
  display: flex;
  justify-content: center;
}
.executive .head .sub span {
  position: relative;
  padding: 0 15px;
  text-transform: uppercase;
}
.executive .head .sub span::after {
  position: absolute;
  content: "";
  left: 100%;
  top: 10px;
  width: 32px;
  height: 2px;
  background-color: #b7ad9c;
}
.executive .head .sub span::before {
  position: absolute;
  content: "";
  right: 100%;
  top: 10px;
  width: 32px;
  height: 2px;
  background-color: #b7ad9c;
}
@media (min-width: 1400px) {
  .executive .head h3 {
    font-size: 44px;
  }
}
.executive .exe-wrap {
  display: block;
  background-color: #e2e2e2;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .executive .exe-wrap {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .executive .exe-wrap {
    padding: 70px 0;
  }
}
.executive .exe-wrap .exe-row {
  margin-bottom: 100px;
}
.executive .exe-wrap .exe-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .executive .exe-wrap .exe-img {
    margin-bottom: 30px;
  }
}
.executive .exe-wrap .exe-img figure {
  margin-right: 20px;
}
@media (max-width: 991px) {
  .executive .exe-wrap .exe-img figure {
    margin-right: 0;
  }
}
.executive .exe-wrap .exe-img figure img {
  width: 100%;
}
.executive .exe-wrap .exe-details .wrap {
  padding-left: 20px;
}
@media (max-width: 991px) {
  .executive .exe-wrap .exe-details .wrap {
    padding-left: 0;
  }
}
.executive .exe-wrap .exe-details .wrap p.sub {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.executive .exe-wrap .exe-details .wrap h2 {
  margin-bottom: 20px;
}
.executive .exe-wrap .exe-details .wrap a.social {
  display: flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #353c29;
  font-weight: 500;
}
.executive .exe-wrap .exe-details .wrap a.social span {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}
.executive .exe-wrap .exe-details .wrap a.social span img {
  width: 18px;
}
.executive .exe-wrap .exe-details .wrap a.social:hover span {
  background-color: #b7ad9c;
}
.executive .exe-wrap .exe-details .wrap a.social:hover span img {
  filter: brightness(0) invert(1);
}
.executive .exe-wrap .exe-details .wrap .box-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}
.executive .exe-wrap .exe-details .wrap .box-wrap .box {
  border: 1px solid #b7ad9c;
  padding: 8px 25px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .executive .exe-wrap .exe-details .wrap .box-wrap .box {
    padding: 5px 10px;
  }
}
.executive .exe-wrap .exe-details .wrap .list-box {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .executive .exe-wrap .exe-details .wrap .list-box {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .executive .exe-wrap .exe-details .wrap .list-box {
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.executive .exe-wrap .exe-details .wrap .list-box:last-child {
  margin-bottom: 0;
}
.executive .exe-wrap .exe-details .wrap .list-box .icon {
  margin-right: 15px;
}
.executive .exe-wrap .exe-details .wrap .list-box .icon span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b7ad9c;
}
@media (max-width: 991px) {
  .executive .exe-wrap .exe-details .wrap .list-box .icon span {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .executive .exe-wrap .exe-details .wrap .list-box .icon span {
    width: 30px;
    height: 30px;
  }
}
.executive .exe-wrap .exe-details .wrap .list-box .icon span img {
  width: 20px;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .executive .exe-wrap .exe-details .wrap .list-box .icon span img {
    width: 15px;
  }
}
.executive .exe-wrap .exe-details .wrap .list-box .text p {
  margin-bottom: 0;
  font-size: 18px;
}
@media (max-width: 575px) {
  .executive .exe-wrap .exe-details .wrap .list-box .text p {
    font-size: 15px;
  }
}

#to-bottom {
  scroll-margin-top: 130px;
}

.core-value {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .core-value {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .core-value {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .core-value {
    padding: 70px 0;
  }
}
.core-value .head {
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .core-value .head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .core-value .head {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .core-value .head {
    margin-bottom: 30px;
  }
}
.core-value .head h2 {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .core-value .head h2 {
    margin-bottom: 15px;
  }
}
.core-value .head p {
  margin-bottom: 0;
}
.core-value .head p span {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
}
.core-value .core-row {
  margin-top: 20px;
}
@media (min-width: 1400px) {
  .core-value .core-row {
    margin: 20px -40px 0;
  }
}
.core-value .core-box {
  margin-bottom: 24px;
}
@media (min-width: 1400px) {
  .core-value .core-box {
    padding: 40px;
    margin-bottom: 0;
  }
}
.core-value .core-box .wrap {
  padding: 40px;
  background-color: #fafafa;
  border: 1px solid #b7ad9c;
  display: flex;
  height: 100%;
}
@media (max-width: 991px) {
  .core-value .core-box .wrap {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .core-value .core-box .wrap {
    flex-direction: column;
  }
}
.core-value .core-box .wrap .count {
  width: 48px;
  height: 48px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b7ad9c;
  flex-shrink: 0;
  margin-right: 16px;
}
@media (max-width: 575px) {
  .core-value .core-box .wrap .count {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.core-value .core-box .wrap .count h5 {
  margin-bottom: 0;
}
.core-value .core-box .wrap p {
  margin-bottom: 0;
}
.core-value .core-box .wrap p span {
  font-weight: 600;
  display: block;
  margin: 15px 0 5px;
}
.core-value .core-box .wrap ul {
  margin-bottom: 15px;
  padding-left: 15px;
}
.core-value .core-box .wrap ul li {
  list-style: disc;
}
.core-value .developer {
  text-align: center;
  padding-top: 120px;
}
@media (max-width: 991px) {
  .core-value .developer {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .core-value .developer {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .core-value .developer {
    padding-top: 70px;
  }
}
.core-value .developer .sub {
  display: flex;
  justify-content: center;
}
.core-value .developer .sub span {
  position: relative;
  padding: 0 15px;
  text-transform: uppercase;
}
.core-value .developer .sub span::after {
  position: absolute;
  content: "";
  left: 100%;
  top: 10px;
  width: 125px;
  height: 1px;
  background-color: #b7ad9c;
}
.core-value .developer .sub span::before {
  position: absolute;
  content: "";
  right: 100%;
  top: 10px;
  width: 125px;
  height: 1px;
  background-color: #b7ad9c;
}
.core-value .developer p {
  font-size: 18px;
}

.value-action {
  background-color: #fafafa;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .value-action {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .value-action {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .value-action {
    padding: 70px 0;
  }
}

.get-quote {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .get-quote {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .get-quote {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .get-quote {
    padding: 70px 0;
  }
}
.get-quote.invest {
  text-align: center;
}
.get-quote.invest .quote-wrap ul {
  justify-content: center;
  gap: 0;
}
.get-quote.invest .quote-wrap ul li h2 {
  margin-bottom: 60px;
}
.get-quote .quote-wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.get-quote .quote-wrap ul li h2 {
  margin-bottom: 0;
}
.get-quote .quote-wrap ul li a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #1d2018;
}
@media (max-width: 991px) {
  .get-quote .quote-wrap ul li a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .get-quote .quote-wrap ul li a {
    font-size: 16px;
    text-align: left;
  }
}
.get-quote .quote-wrap ul li a span {
  background-color: #b7ad9c;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.get-quote .quote-wrap ul li a span img {
  width: 19px;
  filter: brightness(0) invert(1);
}
.get-quote .quote-wrap ul li a:hover span {
  background-color: #353c29;
}
.get-quote .quote-wrap ul li a.line {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.why-banner {
  position: relative;
}
.why-banner .bg-image {
  position: relative;
}
.why-banner .bg-image::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353c29;
  background: linear-gradient(0deg, rgb(53, 60, 41) 0%, rgb(53, 60, 41) 15%, rgba(53, 60, 41, 0.23) 100%);
  opacity: 0.7;
}
.why-banner .container {
  position: relative;
  z-index: 1;
  padding: 120px 12px 130px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 991px) {
  .why-banner .container {
    position: relative;
    padding: 100px 12px 0;
  }
}
@media (max-width: 767px) {
  .why-banner .container {
    padding: 80px 12px 0;
  }
}
@media (max-width: 575px) {
  .why-banner .container {
    padding: 70px 12px 0;
  }
}
.why-banner .container .wrap {
  max-width: 1020px;
}
.why-banner .container .wrap h1 {
  color: #b7ad9c;
}
@media (max-width: 991px) {
  .why-banner .container .wrap h1 {
    color: #1d2018;
  }
}
.why-banner .container .wrap p {
  color: #b7ad9c;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 1199px) {
  .why-banner .container .wrap p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .why-banner .container .wrap p {
    font-size: 18px;
    line-height: 26px;
    color: #1d2018;
  }
}
@media (max-width: 767px) {
  .why-banner .container .wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}

.why {
  overflow: unset;
  position: relative;
  z-index: 1;
  padding: 96px 0;
}
@media (max-width: 991px) {
  .why {
    padding: 76px 0;
  }
}
@media (max-width: 767px) {
  .why {
    padding: 56px 0;
  }
}
@media (max-width: 575px) {
  .why {
    padding: 26px 0;
  }
}
.why .head h2 {
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .why .wht-box-row {
    margin: 0 -15px;
  }
}
.why .box-wrap {
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}
@media (min-width: 1400px) {
  .why .box-wrap {
    margin-bottom: 30px;
    padding: 0 15px;
  }
}
.why .box-wrap:nth-of-type(1) {
  z-index: 10;
}
.why .box-wrap:nth-of-type(2) {
  z-index: 9;
}
.why .box-wrap:nth-of-type(3) {
  z-index: 8;
}
.why .box-wrap:nth-of-type(4) {
  z-index: 7;
}
.why .box-wrap:nth-of-type(5) {
  z-index: 6;
}
.why .box-wrap:nth-of-type(6) {
  z-index: 5;
}
.why .box-wrap:nth-of-type(7) {
  z-index: 4;
}
.why .box-wrap:nth-of-type(8) {
  z-index: 3;
}
.why .box-wrap:nth-of-type(9) {
  z-index: 2;
}
.why .why-box {
  position: relative;
  height: 100%;
}
.why .why-box .inner {
  background-color: #fcfafa;
  padding: 40px;
  border: 1px solid #e2e2e2;
  height: 100%;
}
@media (max-width: 767px) {
  .why .why-box .inner {
    padding: 30px;
  }
}
.why .why-box .inner .icon-wrap {
  display: flex;
  justify-content: space-between;
}
.why .why-box .inner .icon-wrap h2 {
  margin-bottom: 0;
  color: #b7ad9c;
}
.why .why-box .inner h6 {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .why .why-box .inner h6 {
    margin: 15px 0;
  }
}
.why .why-box .inner p {
  margin-bottom: 30px;
}
.why .why-box .inner .why-btn {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #1d2018;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .why .why-box .inner .why-btn {
    font-size: 18px;
  }
}
.why .why-box .inner .why-btn span {
  background-color: #353c29;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .why .why-box .inner .why-btn span {
    width: 40px;
    height: 40px;
  }
}
.why .why-box .inner .why-btn span img {
  width: 19px;
  filter: brightness(0) invert(1);
}
.why .why-box .inner .why-btn .arrow {
  margin-left: 3px;
}
.why .why-box .inner .why-btn:hover span {
  background-color: #353c29;
}
.why .why-box .hidden-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fcfafa;
  border: 1px solid #e2e2e2;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  transition: 600ms all;
  z-index: 1;
}
@media (max-width: 767px) {
  .why .why-box .hidden-wrap {
    padding: 30px;
  }
}
.why .why-box .hidden-wrap .icon-wrap {
  display: flex;
  justify-content: space-between;
}
.why .why-box .hidden-wrap .icon-wrap h2 {
  margin: 0;
  color: #b7ad9c;
}
.why .why-box .hidden-wrap h6 {
  margin: 30px 0;
}
.why .why-box .hidden-wrap p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
}
.why .why-box .hidden-wrap p b {
  font-weight: 500;
}
.why .why-box .hidden-wrap ul {
  padding-left: 15px;
  margin-bottom: 8px;
}
.why .why-box .hidden-wrap ul li {
  font-size: 14px;
  line-height: 18px;
  list-style: disc;
}
.why .why-box .hidden-wrap .close-wrap {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.why .why-box .hidden-wrap .close-wrap .close {
  cursor: pointer;
}
.why .why-box .hidden-wrap.visible {
  opacity: 1;
  overflow: visible;
}

.how-build {
  background-color: #fafafa;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .how-build {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .how-build {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .how-build {
    padding: 70px 0;
  }
}
.how-build .head h2 {
  margin-bottom: 10px;
}
.how-build .head p {
  font-size: 24px;
}
@media (max-width: 991px) {
  .how-build .head p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .how-build .head p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .how-build .head p {
    font-size: 16px;
  }
}
.how-build .build-row {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .how-build .build-row {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .how-build .build-row {
    margin-bottom: 30px;
  }
}
.how-build .build-row.right {
  flex-direction: row-reverse;
}
.how-build .build-row.right .round-wrap {
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .how-build .build-row.right .round-wrap {
    padding-left: 0;
  }
}
.how-build .build-row:last-child {
  margin-bottom: 0;
}

.round-wrap {
  padding-right: 30px;
}
@media (max-width: 991px) {
  .round-wrap {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .round-wrap {
    margin-bottom: 20px;
  }
}
.round-wrap .top-ttl {
  color: #b7ad9c;
  font-weight: 500;
  margin-bottom: 20px;
}
.round-wrap h2 {
  margin-bottom: 20px;
}
.round-wrap ul {
  margin-bottom: 15px;
}
.round-wrap ul li {
  font-size: 18px;
}
@media (max-width: 991px) {
  .round-wrap ul li {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .round-wrap ul li {
    font-size: 15px;
  }
}
.round-wrap p {
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .round-wrap p {
    font-size: 16px;
  }
}
.round-wrap .list {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .round-wrap .list {
    margin-top: 15px;
  }
}
.round-wrap .list span {
  flex-shrink: 0;
  margin-right: 15px;
}
.round-wrap .list span img {
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .round-wrap .list span img {
    width: 30px;
  }
}
.round-wrap .list p {
  margin-bottom: 0;
}
.round-wrap .quote {
  border-top: 1px solid #b7ad9c;
  margin-top: 40px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .round-wrap .quote {
    margin-top: 25px;
    padding-top: 25px;
  }
}
@media (max-width: 991px) {
  .round-wrap .quote {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.round-wrap .quote h6 {
  font-size: 20px;
}
@media (max-width: 991px) {
  .round-wrap .quote h6 {
    font-size: 18px;
  }
}

.select-projects {
  background-color: #fafafa;
  padding: 0px 0 120px;
}
@media (max-width: 991px) {
  .select-projects {
    padding: 70px 0 100px;
  }
}
@media (max-width: 767px) {
  .select-projects {
    padding: 50px 0 80px;
  }
}
@media (max-width: 575px) {
  .select-projects {
    padding: 20px 0 50px;
  }
}
@media (max-width: 767px) {
  .select-projects .text-wrap {
    margin-bottom: 25px;
  }
}
.select-projects .text-wrap .wrap {
  max-width: 420px;
}
.select-projects .text-wrap .wrap p {
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .select-projects .text-wrap .wrap p {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .select-projects .text-wrap .wrap p {
    margin-bottom: 20px;
  }
}
.select-projects .text-wrap .wrap h6 {
  font-size: 20px;
}
.select-projects .text-wrap .wrap h2 {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .select-projects .text-wrap .wrap h2 {
    margin-bottom: 15px;
  }
}
.select-projects .list-box {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .select-projects .list-box {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .select-projects .list-box {
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.select-projects .list-box:last-child {
  margin-bottom: 0;
}
.select-projects .list-box .icon {
  margin-right: 15px;
}
.select-projects .list-box .icon span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #353c29;
  color: #b7ad9c;
  font-size: 34px;
  font-family: "Tenor Sans", sans-serif;
}
@media (max-width: 767px) {
  .select-projects .list-box .icon span {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .select-projects .list-box .icon span {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.select-projects .list-box .text p {
  margin-bottom: 0;
  font-size: 18px;
}
@media (max-width: 991px) {
  .select-projects .list-box .text p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .select-projects .list-box .text p {
    font-size: 15px;
  }
}

.why-contact {
  text-align: center;
  padding: 200px 0;
}
@media (max-width: 991px) {
  .why-contact {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .why-contact {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .why-contact {
    padding: 70px 0;
  }
}
.why-contact h2 {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .why-contact h2 {
    margin-bottom: 30px;
  }
}
.why-contact a {
  background-color: #b7ad9c;
  display: inline-block;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 18px;
}
.why-contact a img,
.why-contact a svg {
  width: 17px;
  margin-right: 10px;
}
.why-contact a img path,
.why-contact a svg path {
  fill: #ffffff;
}
.why-contact a:hover {
  background-color: #c6bcab;
}
.why-contact a:hover span svg path {
  transform: rotate(8deg);
}

.dev-banner {
  position: relative;
}
.dev-banner .bg-image {
  position: relative;
}
.dev-banner .bg-image::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 250px;
  width: 100%;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
}
@media (max-width: 991px) {
  .dev-banner .bg-image::after {
    display: none;
  }
}
.dev-banner .container {
  height: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 350px;
}
@media (max-width: 991px) {
  .dev-banner .container {
    position: relative;
    padding: 100px 12px;
  }
}
@media (max-width: 767px) {
  .dev-banner .container {
    padding: 80px 12px;
  }
}
@media (max-width: 575px) {
  .dev-banner .container {
    padding: 70px 12px;
  }
}
.dev-banner .container .wrap {
  max-width: 1020px;
}
.dev-banner .container .wrap h1 {
  color: #b7ad9c;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .dev-banner .container .wrap h1 {
    color: #1d2018;
  }
}
.dev-banner .container .wrap p {
  color: #b7ad9c;
  font-size: 24px;
  line-height: 32px;
  max-width: 520px;
  margin: 25px 0;
}
@media (max-width: 991px) {
  .dev-banner .container .wrap p {
    color: #1d2018;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .dev-banner .container .wrap p {
    font-size: 16px;
    line-height: 24px;
    margin: 15px 0;
  }
}

.development {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .development {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .development {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .development {
    padding-bottom: 70px;
  }
}
.development h4 {
  display: flex;
}
.development p {
  font-size: 18px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .development p {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .development p {
    font-size: 16px;
  }
}
.development ul {
  display: flex;
  margin: 0 -10px;
}
.development ul li {
  width: 33.333%;
  padding: 0 10px;
}
.development ul li P {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .development ul li P {
    font-size: 14px;
  }
}

.development-gallery {
  position: sticky;
  top: 0;
  z-index: 10;
  background: url(../images/gallery-bg.png) no-repeat bottom center;
  background-size: cover;
  padding: 120px 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .development-gallery {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .development-gallery {
    padding: 80px 0;
    position: relative;
  }
}
@media (max-width: 575px) {
  .development-gallery {
    padding: 70px 0;
  }
}
.development-gallery .gallery-row .head {
  margin-bottom: 0;
}
.development-gallery .gallery-row .head h2 {
  text-align: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #b7ad9c;
  color: #b7ad9c;
}
@media (max-width: 1399px) {
  .development-gallery .gallery-row .head h2 {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .development-gallery .gallery-row .head h2 {
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 25px;
    border-bottom: none;
  }
}
.development-gallery .gallery-row figure {
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .development-gallery .gallery-row figure {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .development-gallery .gallery-row figure {
    margin-bottom: 25px;
  }
}
.development-gallery .gallery-row figure img {
  width: 100%;
}
.development-gallery .gallery-row p {
  margin-bottom: 0;
}
.development-gallery .gallery-row p span {
  color: #b7ad9c;
}
.development-gallery .gallery-row h5 {
  margin: 32px 0;
}
@media (max-width: 767px) {
  .development-gallery .gallery-row h5 {
    margin: 15px 0;
  }
}
.development-gallery .gallery-row .primary-button {
  background-color: #ffffff;
  border: none;
}
.development-gallery .gallery-row .primary-button:hover {
  background-color: #b7ad9c;
}

.about-majan {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .about-majan {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .about-majan {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .about-majan {
    padding: 70px 0;
  }
}
.about-majan .abt-left p {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  display: flex;
}
@media (max-width: 767px) {
  .about-majan .abt-left p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .about-majan .abt-left p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.about-majan .abt-left p svg {
  width: 16px;
  font-size: 20px;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .about-majan .abt-left p svg {
    margin-right: 10px;
    height: 19px;
  }
}
.about-majan .abt-right.legal p {
  max-width: unset;
  font-size: 18px;
  line-height: 28px;
}
.about-majan .abt-right.legal a {
  color: #353c29;
}
.about-majan .abt-right h1 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about-majan .abt-right h1 {
    margin-bottom: 20px;
  }
}
.about-majan .abt-right p {
  max-width: 700px;
}
.about-majan .abt-right p:last-child {
  margin-bottom: 0;
}
.about-majan .abt-right ul {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .about-majan .abt-right ul {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-majan .abt-right ul {
    margin-top: 20px;
  }
}
.about-majan .abt-right ul li a.primary-button {
  background-color: #ffffff;
  border: 2px solid #353c29;
}
.about-majan .abt-right ul li a.primary-button:hover {
  background-color: #c6bcab;
}
.about-majan .abt-right ul li a.primary-button:hover span svg path {
  transform: rotate(8deg);
}
.about-majan .abt-right ul.news-details {
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .about-majan .abt-right ul.news-details {
    gap: 8px;
  }
}
.about-majan .abt-right ul.news-details li {
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.about-majan .abt-right ul.news-details li span {
  position: relative;
  padding-right: 50px;
  font-weight: 500;
}
.about-majan .abt-right ul.news-details li span::after {
  position: absolute;
  content: "";
  right: 0;
  top: 10px;
  width: 32px;
  height: 1px;
  background-color: #353c29;
}
.about-majan .abt-right ul.news-details li .dot {
  width: 4px;
  height: 4px;
  background-color: #353c29;
}
.about-majan .abt-right .writer {
  display: flex;
  margin-top: 30px;
}
.about-majan .abt-right .writer .wrap {
  background: #f4f4f4;
  background: linear-gradient(90deg, rgb(244, 244, 244) 0%, rgba(244, 244, 244, 0) 100%);
  padding: 10px 20px;
}
.about-majan .abt-right .writer .wrap p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.about-majan .abt-right .writer .wrap p img {
  width: 14px;
  margin-right: 5px;
}
.about-majan .abt-right .writer .wrap p span {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 12px;
}

.city {
  background-color: #f4f4f4;
}
.city .left {
  display: flex;
  align-items: center;
}
.city figure {
  height: 100%;
}
.city figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city .wrap {
  padding: 130px;
}
@media (max-width: 1199px) {
  .city .wrap {
    padding: 80px 50px;
  }
}
@media (max-width: 991px) {
  .city .wrap {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .city .wrap {
    padding: 70px 12px 30px;
  }
}
.city .wrap h2 {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .city .wrap h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .city .wrap h2 {
    margin-bottom: 15px;
  }
}
.city .wrap p {
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 32px;
  position: relative;
}
@media (max-width: 991px) {
  .city .wrap p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .city .wrap p {
    font-size: 15px;
    padding-bottom: 0;
    line-height: 24px;
  }
}
.city .wrap p:after {
  position: absolute;
  content: "";
  width: 190px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #b7ad9c;
}
@media (max-width: 767px) {
  .city .wrap p:after {
    display: none;
  }
}

.snapshot {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .snapshot {
    padding: 100px 0 70px;
  }
}
@media (max-width: 767px) {
  .snapshot {
    padding: 80px 0 50px;
  }
}
@media (max-width: 575px) {
  .snapshot {
    padding: 70px 0 40px;
  }
}
.snapshot .head {
  text-align: center;
}
.snapshot .snap-box .wrap {
  padding-top: 33px;
  border-top: 1px solid #b7ad9c;
}
@media (max-width: 991px) {
  .snapshot .snap-box .wrap {
    padding: 30px 0;
  }
}
.snapshot .snap-box .wrap h6 {
  margin: 25px 0 20px;
}
@media (max-width: 767px) {
  .snapshot .snap-box .wrap h6 {
    margin: 15px 0 10px;
  }
}
@media (max-width: 575px) {
  .snapshot .snap-box .wrap p {
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .snapshot .snap-box .wrap img {
    width: 35px;
  }
}

.amenities {
  background-color: #f4f4f4;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .amenities {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .amenities {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .amenities {
    padding: 70px 0;
  }
}
.amenities .head {
  text-align: center;
}
.amenities .head h2 {
  margin-bottom: 10px;
}
.amenities .head p {
  margin-bottom: 0;
}
.amenities .amen-box {
  margin-bottom: 24px;
}
.amenities .amen-box .wrap {
  background-color: #ffffff;
}
.amenities .amen-box .wrap figure img {
  width: 100%;
}
.amenities .amen-box .wrap figcaption {
  padding: 32px;
}
@media (max-width: 767px) {
  .amenities .amen-box .wrap figcaption {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .amenities .amen-box .wrap figcaption img {
    width: 25px;
  }
}
.amenities .amen-box .wrap figcaption p {
  font-size: 22px;
  display: flex;
}
@media (max-width: 991px) {
  .amenities .amen-box .wrap figcaption p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .amenities .amen-box .wrap figcaption p {
    font-size: 16px;
  }
}
.amenities .amen-box .wrap figcaption p img {
  margin-right: 10px;
}
.amenities .bottom-list .wrap {
  background-color: #ffffff;
  padding: 10px 30px;
}
.amenities .bottom-list .wrap ul {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
@media (max-width: 575px) {
  .amenities .bottom-list .wrap ul {
    padding: 10px 0;
  }
}
.amenities .bottom-list .wrap ul li {
  padding: 5px 20px;
  font-size: 16px;
  list-style: disc;
  margin-left: 30px;
}
@media (max-width: 575px) {
  .amenities .bottom-list .wrap ul li {
    padding: 5px 15px;
  }
}

.why-invest {
  background-color: #353c29;
  color: #b7ad9c;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .why-invest {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .why-invest {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .why-invest {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .why-invest .why-invest-left {
    margin-bottom: 30px;
  }
}
.why-invest .why-invest-left h2 {
  color: #ffffff;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .why-invest .why-invest-left h2 {
    margin-bottom: 20px;
  }
}
.why-invest .why-invest-left p {
  font-size: 18px;
  max-width: 450px;
}
.why-invest .why-invest-right .wrap {
  max-width: 600px;
}
@media (max-width: 767px) {
  .why-invest .why-invest-right .wrap {
    max-width: unset;
  }
}
.why-invest .why-invest-right .wrap ul li {
  color: #ffffff;
  font-weight: 200;
  padding-bottom: 30px;
  background: url(../images/invest-list-li.svg) no-repeat top left;
  padding-left: 40px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .why-invest .why-invest-right .wrap ul li {
    padding-bottom: 15px;
    font-size: 16px;
    background-size: 20px;
  }
}
.why-invest .why-invest-right .wrap ul li:last-child {
  padding-bottom: 0;
}

.designed {
  background-color: #e2e2e2;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .designed {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .designed {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .designed {
    padding: 70px 0;
  }
}
.invest-sakeenah {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .invest-sakeenah {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .invest-sakeenah {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .invest-sakeenah {
    padding: 70px 0;
  }
}
.invest-sakeenah .head {
  margin-bottom: 0;
}
.invest-sakeenah .invest-sakeenah-row {
  margin: 0 -30px;
}
.invest-sakeenah .box {
  padding: 40px 30px;
  position: relative;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .invest-sakeenah .box {
    padding: 0px 30px;
  }
}
@media (max-width: 767px) {
  .invest-sakeenah .box {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .invest-sakeenah .box {
    margin-top: 30px;
  }
}
.invest-sakeenah .box::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #1d2018;
}
@media (max-width: 575px) {
  .invest-sakeenah .box::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .invest-sakeenah .box .wrap {
    border-bottom: 1px solid #1d2018;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .invest-sakeenah .box .wrap:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.invest-sakeenah .box .wrap h6 {
  margin: 25px 0 20px;
}
@media (max-width: 767px) {
  .invest-sakeenah .box .wrap h6 {
    margin: 15px 0;
  }
}
.invest-sakeenah .box:last-child::after, .invest-sakeenah .box:nth-of-type(3)::after {
  display: none;
}
@media (max-width: 991px) {
  .invest-sakeenah .box:nth-of-type(3)::after {
    display: block;
  }
  .invest-sakeenah .box:nth-of-type(2)::after, .invest-sakeenah .box:nth-of-type(4)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .invest-sakeenah .box img {
    width: 60px;
  }
}
@media (max-width: 575px) {
  .invest-sakeenah .box img {
    width: 50px;
  }
}

.investment-highlights {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 991px) {
  .investment-highlights {
    padding: 100px 0;
    min-height: unset;
  }
}
@media (max-width: 767px) {
  .investment-highlights {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .investment-highlights {
    padding: 70px 0;
  }
}
.investment-highlights .bg-image::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353c29;
  background: linear-gradient(0deg, rgb(53, 60, 41) 0%, rgba(53, 60, 41, 0.24) 88%);
  opacity: 0.64;
}
@media (max-width: 991px) {
  .investment-highlights .bg-image::after {
    opacity: 1;
  }
}
.investment-highlights h3 {
  color: #ffffff;
  text-transform: uppercase;
}
.investment-highlights .container {
  position: relative;
}
.investment-highlights .row {
  justify-content: center;
}
.investment-highlights .row .wrap {
  color: #ffffff;
  text-align: center;
}
.investment-highlights .row .wrap ul {
  display: flex;
  justify-content: center;
  margin: 120px 0 0;
}
@media (max-width: 991px) {
  .investment-highlights .row .wrap ul {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .investment-highlights .row .wrap ul {
    margin-top: 30px;
    flex-direction: column;
  }
}
.investment-highlights .row .wrap ul li .inner {
  padding: 40px;
  text-align: center;
  border-right: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .investment-highlights .row .wrap ul li .inner {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .investment-highlights .row .wrap ul li .inner {
    padding: 15px 30px;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .investment-highlights .row .wrap ul li .inner {
    padding: 15px;
  }
}
.investment-highlights .row .wrap ul li .inner h5 {
  text-transform: uppercase;
}
.investment-highlights .row .wrap ul li .inner p {
  font-size: 18px;
}
@media (max-width: 991px) {
  .investment-highlights .row .wrap ul li .inner p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.investment-highlights .row .wrap ul li:last-child .inner {
  border-right: none;
}

.steps {
  background-color: #e2e2e2;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .steps {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .steps {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .steps {
    padding: 70px 0 45px;
  }
}
.steps .step-wrap {
  position: relative;
  text-align: center;
}
.steps .step-wrap .line {
  position: absolute;
  left: 0;
  top: 45px;
  width: 0;
  height: 2px;
  background-color: #353c29;
  transition: 2s all;
}
@media (max-width: 1199px) {
  .steps .step-wrap .line {
    top: 35px;
  }
}
@media (max-width: 991px) {
  .steps .step-wrap .line {
    top: 25px;
  }
}
@media (max-width: 575px) {
  .steps .step-wrap .line {
    display: none;
  }
}
.steps .step-wrap .line.aos-animate {
  width: 100%;
}
.steps .step-wrap .line .dot {
  width: 13px;
  height: 13px;
  border-radius: 10px;
  background-color: #353c29;
  margin-top: -6px;
}
.steps .step-wrap ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.steps .step-wrap ul li {
  width: 25%;
}
@media (max-width: 575px) {
  .steps .step-wrap ul li {
    width: 50%;
    margin-bottom: 20px;
  }
}
.steps .step-wrap ul li .wrap {
  padding: 0 12px;
}
@media (max-width: 991px) {
  .steps .step-wrap ul li .wrap {
    padding: 0 10px;
  }
}
@media (max-width: 575px) {
  .steps .step-wrap ul li .wrap {
    text-align: left;
  }
}
.steps .step-wrap ul li .wrap .number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .steps .step-wrap ul li .wrap .number {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .steps .step-wrap ul li .wrap .number {
    justify-content: flex-start;
    margin-bottom: 10px;
  }
}
.steps .step-wrap ul li .wrap .number span {
  background-color: #353c29;
  color: #b7ad9c;
  font-size: 64px;
  line-height: 64px;
  font-family: "Tenor Sans", sans-serif;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .steps .step-wrap ul li .wrap .number span {
    font-size: 40px;
    line-height: 40px;
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 991px) {
  .steps .step-wrap ul li .wrap .number span {
    font-size: 30px;
    line-height: 30px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .steps .step-wrap ul li .wrap .number span {
    font-size: 22px;
    line-height: 22px;
    width: 40px;
    height: 40px;
  }
}
.steps .step-wrap ul li .wrap p {
  font-size: 18px;
}
@media (max-width: 991px) {
  .steps .step-wrap ul li .wrap p {
    font-size: 15px;
    line-height: 20px;
  }
}

.we-partner {
  background-color: #e2e2e2;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .we-partner {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .we-partner {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .we-partner {
    padding-bottom: 50px;
  }
}
.we-partner .right {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .we-partner .right {
    margin-top: 30px;
  }
}
.we-partner .right .round-wrap {
  padding-left: 30px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .we-partner .right .round-wrap {
    padding-left: 0;
  }
}

.latest-article {
  padding: 120px 0;
  position: relative;
  background: #252a1d;
}
@media (max-width: 991px) {
  .latest-article {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .latest-article {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .latest-article {
    padding: 70px 0;
  }
}
.latest-article .bg-image {
  opacity: 0.7;
}
.latest-article .bg-image::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353c29;
  background: linear-gradient(0deg, rgb(53, 60, 41) 0%, rgba(53, 60, 41, 0.24) 88%);
  opacity: 0.64;
}
.latest-article .container {
  position: relative;
  z-index: 1;
}
.latest-article .container .row {
  justify-content: center;
}
.latest-article .container .left {
  position: absolute;
  left: 12px;
}
@media (max-width: 991px) {
  .latest-article .container .left {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    left: 0;
  }
}
.latest-article .container .left p {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
}
.latest-article .container .latest {
  max-width: 480px;
}
.latest-article .container .latest .wrap {
  background-color: #b7ad9c;
  padding: 24px;
  display: inline-block;
  text-align: left;
}
.latest-article .container .latest .wrap figcaption {
  margin-top: 20px;
}
.latest-article .container .latest .wrap figcaption h5 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.latest-article .container .latest .wrap figcaption p {
  margin-bottom: 15px;
}
.latest-article .container .latest .wrap figcaption a {
  margin-right: 90px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #1d2018;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .latest-article .container .latest .wrap figcaption a {
    font-size: 16px;
  }
}
.latest-article .container .latest .wrap figcaption a span {
  background-color: #353c29;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .latest-article .container .latest .wrap figcaption a span {
    width: 40px;
    height: 40px;
  }
}
.latest-article .container .latest .wrap figcaption a span img,
.latest-article .container .latest .wrap figcaption a span svg {
  width: 19px;
}
.latest-article .container .latest .wrap figcaption a span img path,
.latest-article .container .latest .wrap figcaption a span svg path {
  fill: #b7ad9c;
}
.latest-article .container .latest .wrap figcaption a .arrow {
  margin-left: 3px;
  margin-top: 2px;
}
.latest-article .container .latest .wrap figcaption a:hover {
  color: #353c29;
}
.latest-article .container .latest .wrap figcaption a:hover span {
  background-color: #ffffff;
}
.latest-article .container .latest .wrap figcaption a:hover span svg {
  filter: none;
}
.latest-article .container .latest .wrap figcaption a:hover span svg path {
  transform: rotate(8deg);
  fill: #353c29;
}

.blogs {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .blogs {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .blogs {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .blogs {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .blogs {
    padding: 70px 0;
  }
}
.blogs .blog-row {
  margin-top: 20px;
}
@media (min-width: 1400px) {
  .blogs .blog-row {
    margin: 20px -40px 0;
  }
}
@media (max-width: 1199px) {
  .blogs .blog-row {
    margin: 0 -12px;
  }
}
.blogs .blog-box {
  margin-bottom: 24px;
}
@media (min-width: 1400px) {
  .blogs .blog-box {
    padding: 40px;
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .blogs .blog-box {
    padding: 0 12px;
    margin-bottom: 24px;
  }
}
.blogs .blog-box .wrap {
  background-color: #f4f4f4;
  display: inline-block;
  text-align: left;
  height: 100%;
}
.blogs .blog-box .wrap figure img {
  width: 100%;
}
.blogs .blog-box .wrap figcaption {
  padding: 25px;
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption p {
    margin-bottom: 10px;
  }
}
.blogs .blog-box .wrap figcaption p span {
  font-weight: 300;
}
.blogs .blog-box .wrap figcaption h5 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption h5 {
    margin-bottom: 10px;
  }
}
.blogs .blog-box .wrap figcaption p {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption p {
    margin-bottom: 10px;
  }
}
.blogs .blog-box .wrap figcaption a {
  margin-right: 90px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #1d2018;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption a {
    font-size: 16px;
  }
}
.blogs .blog-box .wrap figcaption a span {
  background-color: #353c29;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption a span {
    width: 40px;
    height: 40px;
  }
}
.blogs .blog-box .wrap figcaption a span img,
.blogs .blog-box .wrap figcaption a span svg {
  width: 19px;
}
@media (max-width: 575px) {
  .blogs .blog-box .wrap figcaption a span img,
  .blogs .blog-box .wrap figcaption a span svg {
    width: 15px;
  }
}
.blogs .blog-box .wrap figcaption a span img path,
.blogs .blog-box .wrap figcaption a span svg path {
  fill: #b7ad9c;
}
.blogs .blog-box .wrap figcaption a .arrow {
  margin-left: 3px;
  margin-top: 2px;
}
.blogs .blog-box .wrap figcaption a:hover {
  color: #353c29;
}
.blogs .blog-box .wrap figcaption a:hover span {
  background-color: #b7ad9c;
}
.blogs .blog-box .wrap figcaption a:hover span svg {
  filter: none;
}
.blogs .blog-box .wrap figcaption a:hover span svg path {
  transform: rotate(8deg);
  fill: #353c29;
}
.blogs.related {
  background-color: #e2e2e2;
}
.blogs.related .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .blogs.related .head {
    padding: 0 12px;
    margin-bottom: 24px;
  }
}
.blogs.related .head a {
  font-size: 20px;
  text-transform: uppercase;
  color: #353c29;
  text-decoration: underline;
}

.single-news {
  position: relative;
}
.single-news .bg-image {
  position: relative;
}

.single-news-details {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .single-news-details {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .single-news-details {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .single-news-details {
    padding: 70px 0;
  }
}
@media (min-width: 1400px) {
  .single-news-details p,
  .single-news-details li {
    font-size: 20px;
    line-height: 28px;
  }
}
.single-news-details ul {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .single-news-details ul {
    margin-bottom: 15px;
  }
}
.single-news-details p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .single-news-details p {
    margin-bottom: 15px;
  }
}
.single-news-details p:last-child {
  margin-bottom: 0;
}
.single-news-details h5 {
  margin-bottom: 15px;
}
.single-news-details h5.highlight {
  margin-bottom: 30px;
  border-left: 1px solid #b7ad9c;
  padding: 5px 0 5px 15px;
}
@media (max-width: 767px) {
  .single-news-details h5.highlight {
    margin-bottom: 15px;
  }
}

.contact-us {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .contact-us {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .contact-us {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .contact-us {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-left {
    display: none;
  }
}
.contact-us .contact-left figure {
  margin-right: 50px;
}
@media (max-width: 1199px) {
  .contact-us .contact-left figure {
    margin-right: 0;
  }
}
.contact-us .contact-left figure img {
  width: 100%;
}
.contact-us .contact-right .wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-us .contact-right .wrap ul {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767px) {
  .contact-us .contact-right .wrap ul {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-right .wrap ul {
    margin-top: 15px;
  }
}
.contact-us .contact-right .wrap ul li p {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}
.contact-us .contact-right .wrap ul li .box:first-child {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .contact-us .contact-right .wrap ul li .box:first-child {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-right .wrap ul li .box:first-child {
    margin-bottom: 20px;
  }
}
.contact-us .contact-right .wrap ul li .box a {
  color: #1d2018;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-us .contact-right .wrap ul li .social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .contact-us .contact-right .wrap ul li .social {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-right .wrap ul li .social {
    flex-direction: unset;
    margin-top: 15px;
  }
}
.contact-us .contact-right .wrap ul li .social a {
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .contact-us .contact-right .wrap ul li .social a {
    width: 35px;
    height: 35px;
  }
}
.contact-us .contact-right .wrap ul li .social a img {
  width: 15px;
}
.contact-us .contact-right .wrap ul li .social a:hover {
  background-color: #353c29;
}
.contact-us .contact-right .wrap ul li .social a:hover img {
  filter: brightness(0) invert(1);
}
.contact-us .contact-right .wrap .box-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 60px -15px 0;
}
@media (max-width: 1199px) {
  .contact-us .contact-right .wrap .box-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .contact-us .contact-right .wrap .box-wrap {
    margin-top: 15px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-right .wrap .box-wrap {
    flex-direction: unset;
    margin: 30px -12px 0;
  }
}
@media (max-width: 575px) {
  .contact-us .contact-right .wrap .box-wrap {
    flex-direction: column;
  }
}
.contact-us .contact-right .wrap .box-wrap .box {
  padding: 0 15px;
  width: 50%;
}
@media (max-width: 991px) {
  .contact-us .contact-right .wrap .box-wrap .box {
    width: 100%;
    margin-top: 12px;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-right .wrap .box-wrap .box {
    width: 50%;
    padding: 0 12px;
  }
}
@media (max-width: 575px) {
  .contact-us .contact-right .wrap .box-wrap .box {
    width: 100%;
  }
}
.contact-us .contact-right .wrap .box-wrap .box a {
  display: block;
  padding: 20px;
  background-color: #f4f4f4;
}
.contact-us .contact-right .wrap .box-wrap .box a p {
  color: #1d2018;
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .contact-us .contact-right .wrap .box-wrap .box a p {
    margin-bottom: 5px;
  }
}
.contact-us .contact-right .wrap .box-wrap .box a p span {
  font-weight: 500;
}
.contact-us .contact-right .wrap .box-wrap .box a .btn-wrap {
  display: flex;
  justify-content: flex-end;
}
.contact-us .contact-right .wrap .box-wrap .box a .btn-wrap span {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .contact-right .wrap .box-wrap .box a:hover .btn-wrap span {
  background-color: #353c29;
}
.contact-us .contact-right .wrap .box-wrap .box a:hover .btn-wrap span img {
  filter: brightness(0) invert(1);
}
.contact-us .map {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .contact-us .map {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .contact-us .map {
    margin-top: 80px;
  }
}
@media (max-width: 575px) {
  .contact-us .map {
    margin-top: 70px;
  }
}
.contact-us .map .wrap iframe {
  width: 100%;
  height: 640px;
}
@media (max-width: 991px) {
  .contact-us .map .wrap iframe {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .contact-us .map .wrap iframe {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .contact-us .map .wrap iframe {
    height: 300px;
  }
}

.modal.left.show .modal-dialog {
  left: 0;
}
.modal.left .modal-header {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -70px;
  z-index: 2;
}
@media (max-width: 575px) {
  .modal.left .modal-header {
    bottom: inherit;
    right: 10px;
    left: 0;
    padding: 0;
    border-bottom: none;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    background-color: transparent;
  }
}
.modal.left .modal-header .btn-close {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d2018;
  opacity: 1;
}
@media (max-width: 575px) {
  .modal.left .modal-header .btn-close {
    background-color: #b7ad9c;
    width: 25px;
    height: 25px;
    margin: 0;
  }
}
.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  width: 775px;
  height: 100vh;
  transform: translate3d(0%, 0, 0);
  opacity: 1;
  left: -775px;
  transition: opacity 0.3s linear, left 0.3s ease-out;
  max-width: unset;
}
@media (max-width: 991px) {
  .modal.left .modal-dialog {
    width: 600px;
    left: -600px;
  }
}
@media (max-width: 767px) {
  .modal.left .modal-dialog {
    width: 480px;
    left: -480px;
  }
}
@media (max-width: 575px) {
  .modal.left .modal-dialog {
    width: 100%;
    left: -100%;
  }
}
.modal.left .modal-dialog .modal-content {
  height: 100%;
  overflow-y: auto;
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: unset;
}
.modal.left .modal-dialog .modal-content .modal-body {
  overflow: unset;
  background-color: #1d2018;
  height: 100vh;
  padding: 0;
}
.modal.left .modal-dialog .modal-content .modal-body .form-wrap {
  padding: 40px;
  overflow: auto;
  height: 100%;
}
@media (max-width: 575px) {
  .modal.left .modal-dialog .modal-content .modal-body .form-wrap {
    padding: 40px 25px 25px;
  }
}
.modal.left .modal-dialog .modal-content .modal-body .form-wrap::-webkit-scrollbar {
  width: 0;
}
.modal.left .modal-dialog .modal-content .modal-body h5 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 50px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .modal.left .modal-dialog .modal-content .modal-body h5 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .modal.left .modal-dialog .modal-content .modal-body h5 {
    font-size: 24px;
  }
}
.modal.left .modal-dialog .modal-content .modal-body form .wpcf7-response-output {
  margin: 0;
  padding: 0;
}
.modal.left .modal-dialog .modal-content .modal-body form .box {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .modal.left .modal-dialog .modal-content .modal-body form .box {
    margin-bottom: 12px;
  }
}
.modal.left .modal-dialog .modal-content .modal-body form .box:last-child {
  margin-bottom: 0;
}
.modal.left .modal-dialog .modal-content .modal-body form .box label {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .modal.left .modal-dialog .modal-content .modal-body form .box label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.modal.left .modal-dialog .modal-content .modal-body form .box input,
.modal.left .modal-dialog .modal-content .modal-body form .box textarea {
  width: 100%;
  padding: 15px;
  background-color: #2a2f23;
  border: none;
  outline: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  color: #b7ad9c;
  transition: 600ms all;
}
@media (max-width: 575px) {
  .modal.left .modal-dialog .modal-content .modal-body form .box input,
  .modal.left .modal-dialog .modal-content .modal-body form .box textarea {
    padding: 12px;
  }
}
.modal.left .modal-dialog .modal-content .modal-body form .box input[type=submit],
.modal.left .modal-dialog .modal-content .modal-body form .box textarea[type=submit] {
  background-color: #ffffff;
  color: #1d2018;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.modal.left .modal-dialog .modal-content .modal-body form .box input[type=submit]:hover,
.modal.left .modal-dialog .modal-content .modal-body form .box textarea[type=submit]:hover {
  background-color: #b7ad9c;
}
.modal.left .modal-dialog .modal-content .modal-body form .box input::placeholder,
.modal.left .modal-dialog .modal-content .modal-body form .box textarea::placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.modal.left .modal-dialog .modal-content .modal-body form .box textarea {
  height: 220px;
}
@media (max-width: 575px) {
  .modal.left .modal-dialog .modal-content .modal-body form .box textarea {
    height: 120px;
  }
}

.contact-form-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.3s ease;
  transition: 600ms all;
  z-index: 100;
}
.contact-form-wrap.open {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.contact-form-wrap.open .wrap {
  margin-left: 0;
}
.contact-form-wrap.open .wrap .btn-close {
  opacity: 1;
  visibility: visible;
}
.contact-form-wrap .wrap {
  width: 760px;
  height: 100vh;
  background-color: #1d2018;
  margin-left: -760px;
  transition: 600ms all;
  position: relative;
}
.contact-form-wrap .wrap .btn-close {
  position: absolute;
  right: -70px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1d2018;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
.contact-form-wrap .wrap h5 {
  font-size: 36px;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
  gap: 10px;
  color: #353c29;
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */