@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');

::selection {
  background-color: #777777db;
  color: #fff;
}

::-moz-selection {
  background-color: #777777db;
  color: #fff;
}

:root {
  --theme-color: #c09e78;
}

.bg-light {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff !important;
}

.home-slider .swiper-slide>img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.home-slider-wrapper {
  position: relative;
}

.header-social-left {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 9;
  background-color: #222;
  width: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.header-social-left>ul {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}

.header-social-left>ul>li>a {
  font-size: 20px;
  color: #fff;
  transition: .2s ease-in-out;
}

.header-social-left>ul>li>a:hover {
  color: var(--theme-color);
}

.header-menu-wrapper {
  position: relative;
}

.header-menu-wrapper #cssmenu>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-menu-wrapper #cssmenu>ul>li>a {
  text-transform: uppercase;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25px;
  padding: 1rem;
  display: flex;
  transition: .2s ease-in-out;
}

.header-menu-wrapper #cssmenu>ul>li>a:hover {
  color: var(--theme-color);
}

.home-about-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 4rem 1rem;
  position: relative;
}

.home-about-container-left {
  width: 50%;
}

.home-about-container-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3rem;
}

.home-about-image {
  display: flex;
  width: 80%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home-about-image>img {
  width: 100%;
}

.home-about-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home-about-title>span {
  font-size: 25px;
  font-weight: 400;
}

.home-about-title>span>b {
  color: var(--theme-color);
  font-weight: 500;
}

.home-about-title>strong {
  font-size: 18px;
  font-weight: 700;
}

.home-about-title>strong>b {
  color: var(--theme-color);
  font-weight: 800;
}

.home-about-desc {
  margin-top: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #444;
}

.home-about-image::before {
  content: "";
  position: absolute;
  width: 100%;
  border: 4px solid #999;
  top: -30px;
  left: -30px;
  height: 100%;
  z-index: -1;
}

.home-about-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 80%;
  background-color: #999;
  transform: translate(-50%, -50%);
}

.home-about-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 1rem;
  margin-top: 2rem;
}

.home-about-logo>img {
  width: 250px;
}

.home-project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.home-project-link>a,
.home-project-link>a>b {
  font-size: 20px;
  font-weight: 600;
}

.home-project-link>a>b {
  color: var(--theme-color);
}

.home-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background-color: #f2f2f2;
  /* margin-top: 2rem; */
}

.home-page-title>span {
  font-size: 35px;
  font-weight: 600;
  color: #d4d4d4;
  display: flex;
  align-items: center;
  gap: .5rem;
  position: relative;
}

.home-page-title>span>b {
  font-size: 23px;
  font-weight: 600;
  color: #000;
}

.home-page-title>span::after {
  content: "";
  background-color: #b1b1b1;
  width: 35px;
  height: 2px;
  position: absolute;
  right: -45px;
}

.home-services-contain {
  display: flex;
}

.home-services-content {
  display: flex;
  position: relative;
  width: 25%;
}

.home-services-image {
  display: flex;
  width: 100%;
}

.home-services-image>a {
  display: flex;
  width: 100%;
  position: relative;
}

.home-services-image>a>img {
  width: 100%;
}

.home-services-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 99;
}

.home-services-text>span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25px;
  letter-spacing: 2px;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-services-content .home-services-image>a::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9;
}

.home-project-wrapper {
  padding: 2rem 4rem;
}

.home-project-image {
  display: flex;
  width: 100%;
}

.home-project-image>img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.home-project-content {
  display: flex;
  width: 100%;
  position: relative;
}

.home-project-text {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}

.home-project-text>span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
}

.home-project-icon {
  position: absolute;
  display: flex;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  background-color: #222;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}

.home-project-icon>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-project-icon>a>i {
  color: #fff;
}

.home-project-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}

.home-project-content:hover::before,
.home-project-content:hover .home-project-text,
.home-project-content:hover .home-project-icon {
  opacity: 1;
  visibility: visible;
}

.home-bottom-text>span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 55px;
  color: var(--theme-color);
  letter-spacing: 5px;
}

.home-bottom-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background-color: #222;
  margin: 0 2rem;
}

.footer-contain {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  padding: 2rem 0;
}

.footer-contain .widget_text {
  width: 30%;
}

.footer-contain .widget_text:nth-child(2) {
  width: 40%;
}

.footer-contain-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.footer-list-image {
  display: flex;
  width: 75%;
}

.footer-list-image>img {
  width: 100%;
}

.footer-contain-list>ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-contain-list>ul>li>a {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.footer-contain-list-title>span {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
  margin-bottom: 1rem;
}

.footer-contain-list-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-wrapper {
  padding: 2rem;
  padding-bottom: 0;
}

.footer-contain-social>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.footer-contain-social>ul>li>a>i {
  font-size: 25px;
  color: #000;
}

.footer-bottom-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.footer-bottom-text>span {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-bottom-text>span>b {
  display: flex;
  font-size: 30px;
  font-weight: 700;
}

.page-title>span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 50px;
  letter-spacing: 10px;
}

.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.page-title>i {
  font-size: 30px;
}

.about-nav-wrapper>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  gap: 3rem;
}

.about-nav-wrapper>ul>li>a {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000 !important;
  transition: .2s ease-in-out;
  border: none !important;
  border-bottom: 1px solid transparent !important;
}

.about-nav-wrapper>ul>li>a.active {
  font-weight: 600;
  border-bottom: 1px solid #000 !important;
}

.about-contain {
  display: flex;
  padding: 2rem 5rem;
  gap: 2rem;
  align-items: center;
}

.about-contain-left {
  width: 45%;
}

.about-contain-right {
  width: 55%;
}

.about-contain-image {
  display: flex;
  width: 100%;
}

.about-contain-image>img {
  width: 100%;
}

.about-left-title {
  font-family: 'Sora', sans-serif;
  font-size: 60px;
  font-weight: 600;
  display: flex;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-left-desc {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
}

.about-left-contact {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.about-left-contact>span {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
}

.about-left-contact>a {
  font-family: 'Sora', sans-serif;
  display: flex;
  padding: 0.5rem 3rem;
  background-color: #222;
  width: max-content;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-top: 1.5rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-content {
  display: flex;
  position: relative;
  width: calc(50% - (1.5rem) / 2);
}

.services-image {
  display: flex;
  width: 100%;
}

.services-image>img {
  width: 100%;
}

.services-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  padding: .5rem;
}

.services-name>span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.services-desc>span {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

.services-number {
  position: absolute;
  top: 10px;
  left: 10px;
}

.services-number>span {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.services-wrapper {
  margin: 3rem 0;
}

.project-container {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.project-content {
  display: flex;
  width: calc(33.33% - (4rem * 2) / 3);
}

.project-image,
.project-image>a {
  display: flex;
  width: 100%;
}

.project-image>a>img {
  width: 100%;
}

.services-desc>span>p {
  margin: 0;
}

.mobile-menu-remove,
.mobile-menu-wrapper {
  display: none;
}

.homeSwiper .swiper-button-next::after,
.homeSwiper .swiper-button-prev::after {
  color: #fff;
  font-size: 35px;
}

.homeSwiper .swiper-button-prev {
  left: 85px;
}

.contact-wrapper {
  display: flex;
  padding: 2rem;
}

.contact-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.contact-right {
  width: 50%;
}

.contact-left-title>span {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #000;
}

.contact-left-title {
  margin-bottom: 3rem;
}

.contact-left>span {
  margin-bottom: 3rem;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.contact-left>a {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.page-form-wrapper {
  display: flex;
  padding: 2rem;
  background-color: #222;
  margin: 0 2rem;
  margin-top: 2rem;
  align-items: center;
}

.page-form-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.page-form-right {
  width: 50%;
}

.page-form-left>span {
  font-family: 'Sora', sans-serif;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}

.page-form-left>p {
  font-family: 'Sora', sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.form-wrapper-group input,
.form-wrapper-group textarea {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
}

.form-wrapper-group label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: #fff;
  font-weight: 300;
}

.form-wrapper-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-wrapper-top .form-wrapper-group {
  width: calc(50% - (1.5rem) / 2);
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit-btn>span {
  display: none !important;
}

.form-submit-btn>input {
  width: 150px !important;
  border-radius: 0 !important;
  background-color: #678f46;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
}

.about-icon-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background-color: #222;
}

.about-icon-content {
  display: flex;
  flex-direction: column;
  width: calc(25% - (2rem * 3) / 4);
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.about-icon-content>span {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 25px;
}

.about-icon-content>img {
  width: 100px;
  filter: brightness(0) invert(1);
}



@media screen and (max-width:993px) {
  .about-left-title {
    font-size: 35px;
  }

  .header-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99999;
    width: 45%;
    background-color: #fff;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
  }

  .header-menu-wrapper.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header-menu-wrapper #cssmenu>ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-menu-wrapper #cssmenu>ul>li {
    border-bottom: 1px solid;
    width: 100%;
  }

  .mobile-menu-logo {
    display: flex;
    width: 200px;
  }

  .mobile-menu-logo>a {
    display: flex;
    width: 100%;
  }

  .mobile-menu-logo>a>img {
    width: 100%;
  }

  .mobile-menu-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem;
    justify-content: space-between;
    background-color: #f0f0f0;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
  }

  .mobile-menu-social>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
  }

  .mobile-menu-social>ul>li>a>i {
    font-size: 20px;
    color: #000;
  }

  .mobile-menu-btn>i {
    font-size: 29px;
    color: #000;
  }

  .mobile-menu-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 80%);
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-remove {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #000;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-menu-remove-btn>i {
    font-size: 20px;
  }

  .header-social-left {
    display: none;
  }

  .homeSwiper .swiper-button-prev {
    left: 0;
  }
}

@media screen and (max-width:769px) {
  .project-content {
    width: calc(50% - (4rem) / 2);
  }

  .footer-contain-list {
    width: 100%;
  }

  .footer-contain {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-list-image>img {
    width: 250px;
  }

  .footer-list-image {
    align-items: center;
    justify-content: center;
  }

  .services-desc>span {
    font-size: 10px;
  }

  .services-name>span {
    font-size: 12px;
  }

  .container {
    max-width: 100%;
  }

  .about-contain {
    padding: 2rem;
    flex-direction: column;
  }

  .about-contain-left {
    width: 100%;
  }

  .about-contain-right {
    width: 100%;
  }

  .home-about-container {
    flex-direction: column;
  }

  .home-about-container-left {
    width: 100%;
  }

  .home-about-container-right {
    width: 100%;
    justify-content: center;
  }

  .home-about-container::before {
    display: none;
  }

  .home-services-content {
    width: 50%;
  }

  .home-services-contain {
    flex-wrap: wrap;
  }

  .home-project-wrapper {
    padding: 1rem;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right {
    width: 100%;
  }

  .page-form-wrapper {
    flex-direction: column;
  }

  .page-form-left {
    width: 100%;
  }

  .page-form-right {
    width: 100%;
  }

  .about-icon-content {
    width: calc(50% - (2rem) / 2);
  }

  .about-icon-contain {
    flex-wrap: wrap;
  }
}

@media screen and (max-width:553px) {

  .project-content,
  .services-content {
    width: 100%;
  }

  .footer-list-image>img {
    width: 200px;
  }

  .footer-wrapper {
    padding: 1rem;
  }

  .about-contain {
    padding: 1rem;
  }

  .about-nav-wrapper>ul {
    flex-wrap: unset;
    justify-content: flex-start;
    overflow: auto;
  }

  .about-nav-wrapper>ul>li {
    flex-shrink: 0;
    width: 40%;
  }

  .footer-bottom-text>span {
    font-size: 13px;
  }

  .home-slider .swiper-slide>img {
    height: auto;
  }

  .home-slider .swiper-slide>img {
    height: auto;
  }

  .home-page-title>span {
    flex-direction: column;
  }

  .home-page-title>span::after {
    display: none;
  }

  .home-services-content {
    width: 100%;
  }

  .home-bottom-text>span {
    font-size: 23px;
  }

  .home-bottom-text {
    padding: 1rem;
    margin: 0 1rem;
  }

  .mobile-menu-logo {
    width: 150px !important;
  }

  .header-menu-wrapper {
    width: 90%;
  }

  .page-form-wrapper {
    flex-direction: column;
  }

  .page-form-left {
    width: 100%;
  }

  .page-form-right {
    width: 100%;
  }

  .form-wrapper-top .form-wrapper-group {
    width: 100%;
  }

  .page-form-wrapper {
    margin: 2rem 0;
  }

  .about-icon-content {
    width: 100%;
  }
}