body {
  font-family: 'Lato', sans-serif;
}

a:hover {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

a {
  color: inherit;
}

.p10 {
  padding: 3rem 0;
}

:root {
  --color1: #23282B;
  --color2: #B37E59;
  --color3: #32804E;
  --color4: #8291A0;
}
header.destkop {
  padding: 1rem 0;
  background: var(--color1);
  color: white;
}

.header-wrapper {
  display: flex;
  flex-direction: column;
}

.header-top {
  display: flex;
  justify-content: end;
  gap: 1rem;
}

ul.header-top-menu {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

ul.header-top-menu li a {
  display: flex;
  align-items: center;
  gap: .5rem;
}

ul.header-top-menu li i {
  color: var(--color2);
}

ul.social {
  display: flex;
  gap: 1rem;
  font-size: 20px;
  align-items: center;
  transition: all .3s;
}

ul.social i:hover {scale: 1.2;}

ul.social i {
  transition: all .3s ease;
}

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {max-width: 80%;}

ul.header-menu {
  display: flex;
  gap: 2rem;
  font-weight: 600;
  font-size: 18px;
}
ul.header-menu li a:before {
  content: '';
  height: 3px;
  background-color: var(--color2);
  position: absolute;
  left: 0;
  border-radius: 5px;
  bottom: -15px;
  width: 0;
  webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

ul.header-menu li a:hover:before {
  width: 100%;

}

ul.header-menu li a {
  width: 100%;
  position: relative;
  display: flex;
}
.main-slider .slider-img img {
  width: 100vw;
}
.info-box {
  padding: 2rem;
  background: var(--color1);
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  font-size: 24px;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.45);
  transition: all .3s ease;
}
.info-box:hover {
  margin-top: -2rem;
}
.info-box .icon img {
  max-width: 100%;
}
.slider-info {
  transform: translateY(-50%);
  height: 100%;
}

section.main-slider {
  position: relative;
  z-index: -1;
}
.gold {
  color: var(--color2);
}
img.gallery-bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: -5;
  object-fit: cover;
  top: 0;
  bottom: 0;
}

section.project_feature_gallery {
  background: var(--color1);
  width: 100%;
  height: 100%;
  z-index: 3;
  padding-top: 9rem;
  transform: translateY(-30%);
  margin-bottom: -9%;
}
.desc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}

.desc-content .title {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 24px;
  gap: .5rem;
  line-height: 28px;
  color: var(--color2);
}

.desc-content .title span {
  font-weight: 800;
  color: white;
  font-size: 32px;
}

.desc-content .desc {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
.ready img {
  max-width: 100%;
}
.sec-title {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: var(--color2);
  margin-bottom: 2rem;
}

.sec-title span {
  font-weight: 800;
  font-size: 36px;
  line-height: 43px;
  color: black;
}

button.tma-btn {
    position: relative;
    z-index: 8;
    cursor: pointer;
    max-width: 210px;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: white;
    padding: 1rem;
    background: var(--color2);
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-info {
    position: relative;
    z-index: 7;
}
.ready-wrap {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  gap: 1rem;
}

.ready-wrap .title {
  font-weight: 800;
  font-size: 24px;
  color: var(--color2);
  text-align: end;
}

.ready-wrap .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
  color: var(--color1);
}
.pr2 {
  margin-right: 3rem;
}
.ready .left .title {
  text-align: start;
}

.ready .left .desc {
  text-align: start;
}
.pl2 {
  margin-left: 3rem;
}
section.project_feature_gallery button {
  letter-spacing: 0.525em;
}
.catalog {
  background: #23282be8;
  position: relative;
}

.catalog-content {
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: auto;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}


.catalog-content .picture img {
  max-width: 100%;
}
.footer {
  background: #1C2022;
  color: white;
  font-size: 18px;
}

.footer .left {
  display: flex;
  flex-direction: column;
}

ul.social i {
  color: var(--color2);
  transition: all .3s ease;
}

ul.social i:hover {
  scale: 1.2;
}

.footer .title {
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
  color: var(--color2);
  border-bottom: 2px solid;
  padding-bottom: 10px;
}
.footer a {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 2rem 0;
}

.footer a span {
  font-weight: 800;
}

.footer .desc {
  margin: 2rem 0;
}
.item a {
  margin: 1rem 0;
}
.photo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  flex-direction: column;
  gap: 1rem;
}

.photo-box img {
  max-width: 100%;
}
section.photo {
  background: var(--color1);
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: .4;
  height: 100%;
  width: 100%;
}
.swiper-slide.swiper-slide-next .photo-box img {
  border: 15px solid var(--color2);
}

.photo-box img {
  border-radius: 50%;
  padding: 1rem;
  transition: all .8s ease;
  border: 15px solid transparent;
}

.swiper-slide.swiper-slide-next .photo-box .title {
  color: var(--color2);
}

.photo-box .title {
  font-weight: 800;
}.photo-bg img {
  width: 100%;
  height: 100%;
}
.polygon {
  width: 100%;
  height: 100%;
  background-color: black;
  position: relative;
}
.polygon:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.polygon, .polygon:before {
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 78%, 50% 100%, 0 80%, 0 0);
  clip-path: polygon(50% 0%, 100% 0, 100% 78%, 50% 100%, 0 80%, 0 0);
}
.bayii-bg {
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 100%;
  bottom: 0;
  top: 0;
}

.bayii {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bayii-bg img {
  height: 114%;
  margin-top: -7%;
  width: 100%;
  object-fit: cover;
}
.bayi-top {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #D9D9D9;
}

.bayi-top .title {
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 38px;
  color: var(--color1);
}

.bayi-top .left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bayi-bottom .desc {
  text-align: center;
  font-size: 18px;
}
.bayi-bottom img {
  align-items: center;
  text-align: center;
  display: flex;
  max-width: 100%;
  margin: 2rem auto;
}
.mobile-menu .detail .header-wrapper {
  color: black;
}

.mobile-menu .detail {
  box-shadow: 0px 4px 30px rgba(204, 204, 204, 0.25);
  padding: 1rem 0;
}

.mobile-menu .detail .header-right .hamburger div {
  background: black;
}

.mobile-menu .header-wrapper {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: revert;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  color: white;
}

.mobile-menu .header-center ul {
  display: flex;
  gap: 2rem;
  font-size: 18px;
}

.mobile-menu .header-left img {
  width: 92px;
}


#toggle {
  display: none;
}

/**
  Hamburger
**/
.mobile-menu .header-right .hamburger {
  position: absolute;
  top: -1.5em;
  right: 0;
  cursor: pointer;
  width: 4em;
  height: 45px;
  z-index: 5;
}

.mobile-menu .header-right .hamburger div {
  position: relative;
  width: 2.4em;
  height: 3px;
  border-radius: 3px;
  background-color: white;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}

/**
Nav Styles
**/
.mobile-menu .header-right .nav {
  position: fixed;
  width: 70%;
  height: 100%;
  background-color: var(--color1);
  top: -100%;
  left: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}

.mobile-menu .nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  display: flex;
  justify-content: center;
}

.mobile-menu .header-right nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin: 1rem;
  overflow: hidden;
}

.mobile-menu .header-right nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}

.mobile-menu .header-right nav a:before {
  content: '';
  height: 0;
  position: absolute;
  width: 0.25em;
  background-color: white;
  left: -0.5em;
  transition: all 0.2s ease-in-out;
}

.mobile-menu .header-right nav a:hover {
}

.mobile-menu .header-right nav a:hover:before {
  height: 100%;
}

/**
Animations
**/
#toggle:checked+.hamburger .top-bun {
  transform: rotate(-45deg);
  margin-top: 25px;
}

#toggle:checked+.hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}

#toggle:checked+.hamburger .meat {
  transform: rotate(45deg);
  margin-top: -3px;
}

#toggle:checked+.hamburger+.nav {
  top: 0;
  transform: scale(1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 25px;
}

.header-right {
  position: relative;
}


.nav-top img {
  width: 106px;
}

.header-right nav .mobil-w {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

header.mobile-menu {
  display: none;
}
header.mobile-menu {
  background: var(--color1);
}

@media only screen and (min-width: 320px) and (max-width: 568px) {

  header.destkop {
    display: none;
  }
  header.mobile-menu {
    display: block;
  }
  
  .slider-info {
    transform: translateY(0%);
  }
  
  section.main-slider img {
    min-height: 55vh;
    object-fit: cover;
  }
  
  .mb {
    margin-bottom: 1rem;
  }
  
  .info-box {
    font-size: 16px;
  }
  
  section.project_feature_gallery {
    transform: translateY(0%);
    padding-top: 0rem;
    margin-bottom: 3rem;
  }
  
  .ready-wrap {
    padding: 2rem;
  }
  
  .bayi-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin: auto;
  }
  
  .bayi-top .desc {
    font-size: 18px;
  }
  
  .bayii button.tma-btn {
    width: 100%;
    margin: auto;
  }
  
  .sec-title {
    text-align: center;
  }
  }





