@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  background: #181818;
  letter-spacing: 0.05em;
}

img,
video {
  width: 100%;
}

a {
  text-decoration: none;
  color: #fff;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

button {
  background: transparent;
  outline: none;
  border: none;
}

header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-top: 20px;
}
header .logo {
  max-width: 200px;
}
header .header-nav {
  display: flex;
  justify-content: unset;
  align-items: unset;
  gap: 30px;
  flex-direction: column;
}
header .close-btn {
  display: none;
  width: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}
header .menu-btn {
  display: none;
  min-width: 30px;
  width: 30px;
}
header .social-list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}
header .social-list .social-item .icon {
  display: inline-block;
  width: 30px;
  aspect-ratio: 1;
  transition: all ease 0.3s;
}
header .social-list .social-item .icon:hover {
  transform: scale(1.2);
}
header .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
header .nav-list .nav-item a {
  text-transform: uppercase;
  position: relative;
  font-weight: 300;
  display: block;
}
header .nav-list .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 0%;
  background-color: #fff;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
}
header .nav-list .nav-item a:hover::before {
  width: 100%;
}

.banner {
  height: 500px;
  margin-top: 20px;
}
.banner .banner-image {
  height: 100%;
  width: 100%;
}
.banner .banner-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.pagination button {
  font-size: 30px;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: unset;
  transition: all ease 0.3s;
  font-weight: 100;
}
.pagination button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pagination .page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.pagination .page,
.pagination .etc {
  font-size: 16px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: unset;
  transition: all ease 0.3s;
  font-weight: 200;
}
.pagination .page.active, .pagination .page:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 767px) {
  header .header-wrapper {
    align-items: center;
  }
  header .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #181818;
    flex-direction: column-reverse;
    justify-content: center;
    transform: translateY(-100%);
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
  }
  header .header-nav.active {
    transform: unset;
  }
  header .nav-list {
    flex-direction: column;
  }
  header .nav-list .nav-item a {
    font-size: 20px;
    font-weight: 200;
  }
  header .social-list {
    justify-content: center;
    padding-top: 40px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .menu-btn {
    display: block;
  }
  header .close-btn {
    display: block;
  }
  .banner {
    height: 350px;
  }
}
@media only screen and (max-width: 480px) {
  .pagination .page-wrapper {
    gap: 0px;
  }
  .pagination .page,
  .pagination .etc {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}
.top-project {
  margin-top: 20px;
}
.top-project .project-list {
  margin-top: 0;
}
.top-project .project-item {
  height: 250px;
  margin-bottom: 3px;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
}
.top-project .project-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.75s;
  filter: grayscale(1);
}
.top-project .project-item:hover {
  height: 600px;
}
.top-project .project-item:hover img {
  filter: unset;
}

@media only screen and (max-width: 767px) {
  .top-project .project-item:hover {
    height: 250px;
  }
}
.about {
  margin-top: 3px;
}
.about .about-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3px;
  grid-row-gap: 3px;
}
.about .about-image {
  height: 350px;
  overflow: hidden;
}
.about .about-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: all ease 0.75s;
}
.about .about-image:hover img {
  transform: scale(1.1);
}
.about .about-content {
  padding: 30px;
  grid-area: 1/1/span 3/1;
}
.about .about-content .text {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 200;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
  .about .about-content {
    grid-area: 1/1/span 3/span 2;
  }
}
@media only screen and (max-width: 767px) {
  .about .about-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .about-content {
    grid-area: 1/1/span 2/span 2;
  }
}
@media only screen and (max-width: 576px) {
  .about .about-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .about .about-content {
    padding: 20px;
    grid-area: initial;
  }
  .about .about-content .text:last-child {
    margin-bottom: 0;
  }
}
.project-list {
  margin-top: 30px;
}
.project-list .project-list-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
  margin: 0 auto 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  row-gap: 15px;
}
.project-list .project-list-tab .tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 200px;
  width: -moz-fit-content;
  width: fit-content;
  flex: 0 0 24%;
}
.project-list .project-list-tab .tab-item .icon {
  font-size: 20px;
  text-align: center;
  color: #f4ce14;
  opacity: 0;
  transition: all ease 0.5s;
}
.project-list .project-list-tab .tab-item .text {
  font-size: 16px;
  font-weight: 200;
  text-transform: capitalize;
  transition: all ease 0.3s;
  opacity: 0.5;
}
.project-list .project-list-tab .tab-item.active .icon {
  opacity: 1;
}
.project-list .project-list-tab .tab-item.active .text {
  font-weight: 400;
  opacity: 1;
}
.project-list .project-list-tab .tab-item:hover:not(.active) .icon {
  color: #fff;
  opacity: 0.5;
}
.project-list .project-list-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3px;
  grid-row-gap: 3px;
}
.project-list .project-list-item {
  position: relative;
  display: block;
  height: 350px;
}
.project-list .project-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all ease 0.5s;
  z-index: 1;
}
.project-list .project-list-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project-list .project-list-item .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: all ease 0.5s;
}
.project-list .project-list-item .content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  opacity: 0;
  transition: all ease 0.5s;
}
.project-list .project-list-item .content .name {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.project-list .project-list-item .content .city {
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.project-list .project-list-item:hover::before,
.project-list .project-list-item:hover .content {
  opacity: 1;
}
.project-list .project-list-item:hover .image img {
  filter: unset;
  transform: scale(1.05);
}

@media only screen and (max-width: 991px) {
  .project-list .project-list-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .project-list .project-list-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .project-list .project-list-item::before,
  .project-list .project-list-item .content {
    opacity: 1;
  }
}
@media only screen and (max-width: 576px) {
  .project-list .project-list-tab .tab-item {
    min-width: 120px;
  }
  .project-list .project-list-item {
    height: 300px;
  }
  .project-list .project-list-item .content {
    left: 15px;
    bottom: 15px;
  }
  .project-list .project-list-item .content .name {
    font-size: 20px;
  }
  .project-list .project-list-item .content .city {
    font-size: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .project-list .project-list-tab {
    width: 100%;
  }
}
.project-detail {
  margin-top: 40px;
}
.project-detail .project-detail-wrapper {
  display: flex;
  justify-content: unset;
  align-items: start;
  gap: 20px;
}
.project-detail .project-detail-slider {
  width: 65%;
}
.project-detail .slider-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: unset;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}
.project-detail .slider-btn .btn {
  font-size: 60px;
  color: #fff;
  font-weight: 100;
  opacity: 0;
  transition: all ease 0.3s;
  border: none;
}
.project-detail .swiper-main {
  height: 70vh;
}
.project-detail .swiper-main:hover .slider-btn .btn {
  opacity: 1;
}
.project-detail .swiper-thumbs {
  margin-top: 5px;
}
.project-detail .swiper-thumbs .swiper-slide {
  opacity: 0.3;
  transition: all ease 0.5s;
}
.project-detail .swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.project-detail .swiper-slide {
  height: initial;
}
.project-detail .project-detail-image {
  height: 100%;
  overflow: hidden;
}
.project-detail .project-detail-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-detail .project-thumb-image {
  aspect-ratio: 1;
  overflow: hidden;
}
.project-detail .project-thumb-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.3s;
}
.project-detail .project-detail-content {
  width: 35%;
}
.project-detail .project-detail-content .badge {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 0.5em;
  text-align: left;
}
.project-detail .project-detail-content .title {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.project-detail .project-detail-content p {
  font-size: 12px;
  font-weight: 200;
  margin-bottom: 5px;
  line-height: 1.7;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .project-detail .project-detail-wrapper {
    flex-direction: column;
  }
  .project-detail .project-detail-slider {
    width: 100%;
  }
  .project-detail .project-detail-slider .swiper-main {
    aspect-ratio: 5/3;
    height: initial;
  }
  .project-detail .project-detail-content {
    margin-top: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .project-detail .project-detail-slider .slider-btn {
    display: none;
  }
  .project-detail .project-detail-content {
    margin-top: 10px;
  }
  .project-detail .project-detail-content .badge {
    font-size: 10px;
  }
  .project-detail .project-detail-content .title {
    font-size: 30px;
  }
}
.contact {
  margin-top: 40px;
}
.contact .contact-info {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 150px;
}
.contact .contact-info .title {
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 0px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.contact .contact-info .info-item {
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 15px;
}
.contact .contact-info .info-item a {
  transition: all ease 0.3s;
}
.contact .contact-info .info-item a:hover {
  color: #f4ce14;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-column-gap: 100px;
}
.contact .contact-image {
  overflow: hidden;
}
.contact .contact-image img {
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.contact .contact-form {
  margin-top: 100px;
  width: 80%;
}
.contact .contact-form .title {
  font-size: 50px;
  font-weight: 100;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.contact .contact-form .input-wrapper {
  margin-bottom: 50px;
}
.contact .contact-form .input-wrapper label {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  margin-bottom: 10px;
}
.contact .contact-form .input-wrapper input,
.contact .contact-form .input-wrapper textarea {
  width: 100%;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all ease 0.3s;
  resize: none;
  padding-bottom: 8px;
}
.contact .contact-form .input-wrapper input:focus,
.contact .contact-form .input-wrapper textarea:focus {
  border-color: #fff;
}
.contact .contact-form .submit-btn {
  padding: 15px;
  width: 100%;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  color: #fff;
  background-color: #252525;
  letter-spacing: 0.05em;
  transition: all ease 0.3s;
}
.contact .contact-form .submit-btn:hover {
  background-color: #333333;
}

@media only screen and (max-width: 1199px) {
  .contact .contact-info {
    margin-bottom: 100px;
  }
  .contact .contact-image {
    display: none;
  }
  .contact .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact .contact-form {
    margin-top: 0;
    width: 100%;
  }
  .contact .contact-form .title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .contact .contact-info {
    margin-bottom: 80px;
  }
  .contact .contact-info .container {
    margin: 0;
    padding: 0;
  }
  .contact .contact-info .title {
    font-size: 40px;
  }
  .contact .contact-form .title {
    font-size: 25px;
  }
}