@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --color-white: #fff;
  --color-dark: #0c0e17;
  --color-light: #5e6075;
  --font-family: "Plus Jakarta Sans", sans-serif;
}

/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
}

/* ========== Container ========== */
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
  }

  .container-left {
    max-width: 1720px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 0;
  }

  .container-right {
    max-width: 1720px;
    margin-right: auto;
    margin-left: 0;
    padding-right: 15px;
    padding-left: 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  font: normal normal 500 110px var(--font-family);
  letter-spacing: -2px;
}

h2 {
  font: normal normal 500 60px var(--font-family);
  letter-spacing: -1.5px;
}

h3 {
  font: normal normal 500 48px/150% var(--font-family);
  letter-spacing: -2px;
}

h4 {
  font: normal normal 700 40px var(--font-family);
  letter-spacing: -1.5px;
}

h5 {
  font: normal normal 500 20px/150% var(--font-family);
}

h6 {
  font: normal normal 400 18px var(--font-family);
}

p {
  font: normal normal 400 16px var(--font-family);
}

.btn {
  font: normal normal 400 16px/150% var(--font-family);
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: 0.4s all ease-out;
}

.btn img {
  width: 20px;
  height: auto;
  transition: 0.4s all ease-out;
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}

.btn_primary {
  line-height: 18px;
  padding: 16px 24px;
  color: var(--color-white);
  background: var(--color-dark);
}

.btn_primary:hover {
  background-color: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.btn_white {
  line-height: 18px;
  padding: 16px 24px;
  color: var(--color-dark);
  background: var(--color-white);
  min-width: 138px;
}

.btn_white:hover {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

a {
  text-decoration: none;
}

.rn_section_gapTop {
  padding: 72px 0;
}

.inner_gapTop {
  margin-top: 54px;
}

.main_heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main_heading span {
  font: normal normal 500 14px var(--font-family);
  color: var(--color-light);
  text-transform: uppercase;
}

.main_heading h2 {
  color: var(--color-dark);
}

.main_heading h6 {
  font-weight: 400;
  line-height: 150%;
  color: var(--color-light);
}

.main_heading .btn_primary,
.main_heading .btn_white {
  margin-top: 16px;
  width: fit-content;
}

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 70px;
  height: 70px;
  min-width: 70px;
  padding: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--color-light);
  background-color: transparent;
}

.owl-carousel .owl-nav button img {
  width: 24px;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s all ease-out;
}

.header.fixed {
  background-color: var(--color-dark);
}

.header .header-inner {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-white);
  backdrop-filter: blur(1px);
  transition: 0.3s all ease-out;
}

.header.header-light .header-inner {
  border-color: #acacac;
}

.header:has(+ .comn_banner) .header-inner {
  border-bottom: none;
}

.header.fixed .header-inner {
  border-color: transparent;
}

.header .logo a {
  text-decoration: none;
}

.header .logo img {
  width: 126px;
  height: auto;
}

.header .navbar {
  padding: 0;
}

.header .navbar .nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.header .nav-links li {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.header .nav-links li::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: 0.4s width ease;
}

.header.header-light .nav-links li::before {
  background-color: var(--color-dark);
}

.header .nav-links li:hover::before,
.header .nav-links li.active::before {
  width: 100%;
}

.header .nav-links li a {
  font: normal normal 400 16px/150% var(--font-family);
  color: var(--color-white);
  transition: 0.4s all ease-out;
}

.header.header-light .nav-links li a {
  color: var(--color-dark);
}

.header .nav-links li a:hover {
  color: var(--color-white);
}

.header.header-light .nav-links a:hover {
  color: var(--color-dark);
}

.header .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .btn_contact {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.header.header-light .btn_contact {
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.header .btn_contact:hover {
  color: var(--color-dark);
  background-color: var(--color-white);
}

.header.header-light .btn_contact:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
}

.header.header-light .btn_contact img,
.header .btn_contact:hover img {
  filter: brightness(0) invert(0);
}

.header.header-light .btn_contact:hover img {
  filter: none;
}

.header .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .header .navbar {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .header .navbar.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    padding: 30px;
  }

  .header .menu-toggle {
    display: block;
  }
}

/*==========Hero Banner===========*/
.hero_bnr {
  display: flex;
  align-items: center;
  min-height: 113vh;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero_bnr::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 90%;
  background-color: var(--color-dark);
  z-index: -1;
}

.hero_bnr .hero_inner {
  position: relative;
}

.hero_bnr .hero_slideCard {
  display: flex;
  align-items: center;
  gap: 46px;
}

.hero_bnr .hero_inner .hero_slideContent {
  width: 42%;
}

.hero_bnr .hero_inner .hero_bgImage {
  width: 58%;
}

.hero_bnr .hero_inner .hero_slideContent h1 {
  color: var(--color-white);
}

.hero_bnr .hero_inner .hero_slideContent p {
  color: var(--color-white);
  opacity: 0.7;
  max-width: 80%;
  min-height: 140px;
  margin: 16px 0 24px;
}

.hero_bnr .hero_inner .custom-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  left: 0;
  bottom: 286px;
  z-index: 99;
}

.hero_bnr .hero_inner .custom-nav button {
  width: 70px;
  height: 70px;
  min-width: 70px;
  padding: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--color-light);
  background-color: transparent;
}

.hero_bnr .hero_inner .custom-nav button img {
  width: 24px;
  height: auto;
}

.hero_bnr .hero_inner .hero_bgImage {
  position: relative;
}

.hero_bnr .hero_inner .hero_bgImage::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  opacity: 0.2;
}

.hero_bnr .hero_inner .hero_bgImage img {
  width: 100%;
  height: auto;
}

.statistics_section {
  padding: 80px 0 110px;
}

.statistics_section .statistics_wrpr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.statistics_section .statistics_wrpr .card_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.statistics_section .statistics_wrpr .card_box h2 {
  font: normal normal 500 72px var(--font-family);
  letter-spacing: -2px;
  color: var(--color-dark);
}

.statistics_section .statistics_wrpr .card_box h6 {
  color: var(--color-light);
}

.latest_video {
  background-color: var(--color-dark);
}

.latest_video .heading h3 {
  color: var(--color-white);
  text-align: center;
}

.latest_video .owl-item .item {
  transform: translate3d(0, 0, 0);
}

.latest_video .owl-item .plyr--stopped .plyr__controls {
  display: none;
}

.latest_video .owl-item .item .player-wrapper {
  transition: 0.3s;
  transform: scale(0.95, 0.9);
}

.latest_video .owl-item.center .item .player-wrapper {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.latest_video .item .plyr__poster {
  background-size: auto;
}

.latest_video .owl-nav {
  margin-top: 54px;
}

.about_us .row {
  --bs-gutter-x: 64px;
}

.about_us .img_block img {
  width: 100%;
  height: auto;
}

.about_us .content_block .main_heading h6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.our_projects .project_inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.our_projects .project_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.our_projects .project_item .img_blck {
  position: relative;
  width: 100%;
}

.our_projects .project_item .img_blck::before {
  position: absolute;
  inset: 0;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  margin: auto;
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.our_projects .project_wrpr .project_item .img_blck {
  height: 516px;
}

.our_projects .project_list .project_item .img_blck {
  height: 454px;
}

.our_projects .project_item .img_blck img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our_projects .project_item .btn {
  font: normal normal 500 24px var(--font-family);
  letter-spacing: -0.5px;
  padding: 0;
  width: fit-content;
  gap: 8px;
}

.our_projects .project_item .btn img {
  width: 16px;
  margin-top: 10px;
}

.our_projects .project_list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.our_services {
  background-color: var(--color-dark);
  position: relative;
}

.our_services .services_wrpr {
  display: flex;
  gap: 127px;
}

.our_services .service_inner {
  width: 40%;
}

.our_services .service_bgImg {
  width: 60%;
}

.our_services .service_bgImg img {
  width: 100%;
  height: auto;
}

.our_services .main_heading span,
.our_services .main_heading h2,
.our_services .main_heading h6 {
  color: var(--color-white);
}

.our_services .service_inner {
  padding: 16px 0 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 903px;
}

.our_services .services_type {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.our_services .services_type .card_box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0.5;
  cursor: pointer;
}

.our_services .services_type .card_box.active {
  opacity: 1;
}

.our_services .services_type .card_box .text_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.our_services .services_type .card_box .text_box h5 {
  color: var(--color-white);
}

.our_services .services_type .card_box .text_box span {
  font: normal normal 400 14px/150% var(--font-family);
  color: #cfcbcb;
  max-width: 415px;
  display: none;
}

.arcDesign_bnr {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 82.63%,
    rgba(0, 0, 0, 0.2) 92.68%
  );
}

.arcDesign_bnr::before,
.arcDesign_bnr::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
}

.arcDesign_bnr::before {
  top: calc(100% - 106px);
  height: 520px;
  background: linear-gradient(1deg, #0c0e17 81.47%, rgba(12, 14, 23, 0) 93.65%);
}

.arcDesign_bnr::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 82.63%,
    rgba(0, 0, 0, 0.2) 92.68%
  );
}

.arcDesign_bnr img {
  width: 100%;
}

.footer {
  border-radius: 70px 70px 0 0;
  background: #0a0b12;
}

.hero_bnr ~ .footer {
  border-radius: 0;
}

.footer .top_ftr {
  max-width: 920px;
  margin: auto;
  padding: 80px 80px 40px 80px;
}

.footer .top_ftr h4,
.footer .top_ftr h5 {
  color: var(--color-white);
  text-align: center;
}

.footer .top_ftr h5 {
  font-weight: 400;
  margin: 24px 0 32px;
}

.footer .top_ftr .btn {
  width: fit-content;
  margin: auto;
}

.footer .bottom_ftr {
  padding: 24px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer .ftr_inrTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .ftr_inrTop .lft_inrTop img {
  width: 162px;
}

.footer .ftr_inrTop .lft_inrTop p {
  color: var(--color-white);
  margin-top: 8px;
  text-align: center;
}

.footer .rgt_inrTop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer .rgt_inrTop .btn {
  width: 32px;
  height: 32px;
  padding: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--color-white);
}

.footer .rgt_inrTop .btn img {
  width: 14px;
  height: auto;
}

.footer .seperator {
  width: 100%;
  height: 1px;
  background: rgba(94, 96, 117, 0.7);
}

.footer .ftr_inrBtm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .ftr_inrBtm p,
.footer .ftr_inrBtm p a {
  color: var(--color-white);
}

.comn_banner {
  padding: 170px 0 0;
  min-height: 100vh;
}

.comn_banner .bnr_bgImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.comn_banner .bnr_bgImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comn_banner .bnr_heading {
  max-width: 540px;
  margin: auto;
}

.comn_banner .bnr_heading h4,
.comn_banner .bnr_heading p {
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
}

.comn_banner .bnr_heading p {
  margin-top: 12px;
}

.studio_built .bg_img img {
  width: 100%;
  height: 597px;
  object-fit: cover;
}

.studio_built .studio_inner {
  margin-top: 60px;
}

.studio_built .studio_inner h4,
.comn_section .section_content h4 {
  font: normal normal 400 36px var(--font-family);
  letter-spacing: -1.2px;
  color: var(--color-dark);
}

.studio_built .studio_inner h6,
.comn_section .section_content h6 {
  color: var(--color-light);
  line-height: 150%;
}

.comnSections_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px 0 120px;
}

.comn_section .comn_inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.comn_section .comn_inner .section_content {
  width: 46%;
}

.comn_section .comn_inner .section_bgImg {
  width: 54%;
}

.comn_section .comn_inner .section_bgImg img {
  width: 100%;
  height: auto;
}

.comn_section .section_content h6 {
  margin-top: 16px;
}

.comn_section .section_content:has(.btn_primary) h6 {
  margin-bottom: 24px;
}

.our_projects .filters ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.our_projects .filters ul li {
  font: normal normal 400 16px/20px var(--font-family);
  letter-spacing: -0.5px;
  color: var(--color-dark);
  padding: 10px 12px;
  text-align: left;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
}

.our_projects .filters ul li.is-checked {
  font-weight: 600;
  color: var(--color-dark);
  background: rgba(217, 217, 217, 0.16);
}

.our_projects .grid-item:not(:nth-last-child(-n + 3)) {
  margin-bottom: 64px;
}

.our_projects .card_box .card_img {
  width: 100%;
  height: 355px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.our_projects .card_box .card_img::before {
  position: absolute;
  inset: 0;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  margin: auto;
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.our_projects .card_box .card_img a {
  width: 100%;
  height: 100%;
  display: block;
}

.our_projects .card_box .card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -2;
}

.our_projects .card_box h5 {
  font: normal normal 500 24px var(--font-family);
  letter-spacing: -0.5px;
  color: var(--color-dark);
  margin-top: 8px;
}

.singlePage_bnr {
  padding: 40px 0 80px;
  margin-top: 105px;
}

.singlePage_bnr .bnr_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.singlePage_bnr .breadcrumb {
  margin: 0;
}

.singlePage_bnr .breadcrumb-item,
.singlePage_bnr .breadcrumb-item a {
  font: normal normal 400 14px/21px var(--font-family);
  color: var(--color-light);
  position: relative;
}

.singlePage_bnr .breadcrumb-item.active {
  color: var(--color-dark);
}

.singlePage_bnr .breadcrumb-item + .breadcrumb-item {
  padding-left: 32px;
}

.singlePage_bnr .breadcrumb-item + .breadcrumb-item::before {
  position: absolute;
  left: 8px;
  width: 16px;
  height: 100%;
  padding-right: 0;
  content: "";
  background-image: url(../img/chevron-right.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.singlePage_bnr .bnr_thumbnail img {
  width: 100%;
  height: 597px;
  object-fit: cover;
  border-radius: 6px;
}

.singlePage_bnr .singlePage_details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.singlePage_bnr .bnr_title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.singlePage_bnr .bnr_title .top_title,
.singlePage_bnr .bnr_title .bottom_blck {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.singlePage_bnr .bnr_title .top_title h4 {
  color: var(--color-dark);
  font-weight: 500;
  letter-spacing: -1px;
}

.singlePage_bnr .bnr_title .right_blck,
.singlePage_bnr .bnr_title .lft_blck {
  display: flex;
  align-items: center;
  gap: 16px;
}

.singlePage_bnr .bnr_title .right_blck .btn {
  font: normal normal 400 18px/150% var(--font-family);
  color: var(--color-dark);
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.singlePage_bnr .bnr_title .right_blck .btn img {
  width: 16px;
  height: auto;
}

.singlePage_bnr .bnr_title .right_blck .seperator,
.singlePage_bnr .bnr_title .lft_blck .seperator {
  width: 1px;
  height: 24px;
  background: #d7dae0;
}

.singlePage_bnr .bnr_title h6 {
  color: var(--color-light);
  font-style: italic;
}

.singlePage_bnr .bnr_title .lft_blck h6 {
  font-style: normal;
}

.singlePage_bnr .singleDetails_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.singlePage_bnr .singleDetails_inner h5 {
  font: normal normal 500 28px var(--font-family);
  color: var(--color-dark);
  letter-spacing: -1px;
}

.singlePage_bnr .singleDetails_inner h6 {
  font-weight: 400;
  color: var(--color-light);
}

.singlePage_bnr .singleDetails_inner h6 span {
  color: var(--color-dark);
}

.singlePage_bnr .singleDetails_inner .card_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.singlePage_gallery {
  padding-bottom: 120px;
}

.singlePage_gallery .heading h4,
.releted_blogs .heading h4 {
  color: var(--color-dark);
  font-weight: 500;
  letter-spacing: -1px;
}

.singlePage_gallery .grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.singlePage_gallery .grid_gallery {
  display: grid;
  gap: 24px;
}

.singlePage_gallery .grid_gallery .img_grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.releted_blogs .heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.releted_blogs .blogs_slider .owl-stage-outer {
  padding-bottom: 20px;
}

.comn_blogs .card_item {
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0 2px 10px 0 rgba(104, 104, 104, 0.1);
  overflow: hidden;
  transition: 0.4s all ease-out;
}

.comn_blogs .card_item:hover {
  box-shadow: 4px 10px 16px 0 rgba(104, 104, 104, 0.16);
}

.comn_blogs .card_item .img_card {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.comn_blogs .card_item .img_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comn_blogs .card_item .blog_text {
  padding: 24px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.comn_blogs .card_item .top_blck {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comn_blogs .card_item .top_blck span {
  display: block;
}

.comn_blogs .card_item .top_blck .dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: var(--color-dark);
}

.comn_blogs .card_item .top_blck .category {
  font: normal normal 500 14px var(--font-family);
  color: var(--color-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.comn_blogs .card_item .top_blck .line {
  width: 84px;
  height: 0.4px;
  background: #0c0e17;
  margin-left: 24px;
}

.comn_blogs .card_item .title_subTitle {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comn_blogs .card_item .title_subTitle h5 {
  font: normal normal 500 24px var(--font-family);
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

.comn_blogs .card_item .title_subTitle p {
  color: var(--color-light);
  letter-spacing: -0.5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.comn_blogs .card_item .btn_readMore {
  font: normal normal 600 20px var(--font-family);
  color: var(--color-dark);
  padding: 4px 6px 8px 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 12px;
  position: relative;
  z-index: 0;
}

.comn_blogs .card_item .btn_readMore::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-dark);
  transition: 0.4s width ease-out;
}

.comn_blogs .card_item .btn_readMore:hover::before {
  width: 100%;
}

.comn_blogs .card_item .btn_readMore img {
  width: 24px;
  height: auto;
}

.contactUs_page {
  padding: 100px 0;
  margin-top: 105px;
  position: relative;
  z-index: 0;
}

.contactUs_page::before {
  position: absolute;
  left: 0;
  top: -105px;
  content: "";
  width: 100%;
  height: 562px;
  background-image: url(../img/contact-bnr-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.contactUs_page .contact_wrpr {
  max-width: 573px;
  height: 658px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-radius: 16px;
  background-color: var(--color-dark);
  position: relative;
  z-index: 0;
}

.contactUs_page .contact_wrpr::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 230px;
  height: 265px;
  background-image: url(../img/contact-bg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

.contactUs_page .contact_wrpr .top_header h4 {
  color: var(--color-white);
  font-weight: 500;
}

.contactUs_page .contact_wrpr .top_header h6 {
  color: var(--color-light);
  margin-top: 12px;
}

.contactUs_page .contact_wrpr .contact_info {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contactUs_page .contact_info .info_item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contactUs_page .contact_info .info_item .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(236, 254, 255, 0.2);
  display: flex;
  align-content: center;
  justify-content: center;
}

.contactUs_page .contact_info .info_item .icon img {
  width: 24px;
  height: auto;
}

.contactUs_page .contact_info .text_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contactUs_page .contact_info .text_box h5 {
  color: var(--color-white);
  line-height: normal;
  font-weight: 600;
}

.contactUs_page .contact_info .text_box h6,
.contactUs_page .contact_info .text_box h6 a {
  color: #acacac;
}

.contactUs_page .contact_form {
  padding: 0 24px 24px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.contactUs_page .contact_form .form_heading h3 {
  color: var(--color-dark);
  line-height: normal;
  letter-spacing: -1px;
}

.contactUs_page .contact_form .form_heading h6 {
  color: var(--color-light);
  line-height: 150%;
  margin-top: 12px;
}

.contactUs_page .contact_form .contactForm_inr {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 32px;
}

.global_form .form-control {
  font: normal normal 400 18px/150% var(--font-family);
  color: #8d8d8d;
  padding: 16px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #8d8d8d;
  border-radius: 0;
}

.global_form .form-control:focus {
  box-shadow: none;
}

.global_form .btn_primary {
  width: fit-content;
  min-width: 138px;
}

.contactUs_modal .modal-header {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  border: none;
}

.contactUs_modal .modal-header h4 {
  color: var(--color-dark);
  font-weight: 500;
  letter-spacing: -1px;
}

.contactUs_modal .modal-header h6 {
  color: var(--color-light);
  line-height: 150%;
  margin-top: 12px;
}

.contactUs_modal .modal-header .btn-close {
  padding: 12px;
  margin: 0;
  position: absolute;
  right: 32px;
  top: 40px;
}

.btn-close:focus {
  box-shadow: none;
}

.contactUs_modal .modal-dialog {
  max-width: 750px;
}

.contactUs_modal .modal-content {
  border-radius: 16px;
  background: var(--color-white);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  gap: 24px;
}

.contactUs_modal .modal-body {
  padding: 0;
}

.contactUs_modal .contactForm_inr {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 40px;
}

.inspiration_gallery .heading,
.latest_article .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inspiration_gallery .heading h4,
.latest_article .heading h4 {
  color: var(--color-dark);
  font-weight: 500;
  letter-spacing: -1px;
}

.inspiration_gallery .filters ul,
.latest_article .filters ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #acacac;
}

.inspiration_gallery .filters ul li,
.latest_article .filters ul li {
  font: normal normal 400 20px var(--font-family);
  color: var(--color-dark);
  padding: 0 8px 12px;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.inspiration_gallery .filters ul li::before,
.latest_article .filters ul li::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-dark);
  transition: 0.4s width ease;
}

.inspiration_gallery .filters ul li.is-checked::before,
.latest_article .filters ul li.is-checked::before {
  width: 100%;
}

.inspiration_gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.inspiration_gallery .grid .grid_itemInr {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.inspiration_gallery .grid .grid-item {
  width: calc(25% - 24px);
}

.inspiration_gallery .grid .grid-item.grid-item:not(:nth-last-child(-n + 4)) {
  margin-bottom: 24px;
}

.inspiration_gallery .grid .grid-item .card_box {
  position: relative;
  z-index: 0;
  border-radius: 4px;
  overflow: hidden;
}

.inspiration_gallery .grid .grid-item .card_box img {
  width: 100%;
  height: auto;
  display: block;
}

.inspiration_gallery .grid .grid-item .card_box .content_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease-out;
}

.inspiration_gallery .grid .grid-item:hover .card_box .content_box {
  opacity: 1;
  visibility: visible;
}

.inspiration_gallery .grid .grid-item .card_box .content_box .btn {
  width: auto;
  height: 38px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(12, 14, 23, 0.7);
  backdrop-filter: blur(4px);
  overflow: hidden;
  gap: 0;
  transition: 0.6s ease;
}

.inspiration_gallery .grid .grid-item .card_box .content_box .btn span {
  font: normal normal 400 14px var(--font-family);
  color: var(--color-white);
  display: inline-block;
  max-width: 0;
  opacity: 0;
  padding: 0;
  transition: max-width 0.6s ease, opacity 0.6s ease, margin 0.6s ease;
}

.inspiration_gallery .grid .grid-item .card_box .content_box .btn:hover span {
  max-width: 80px;
  opacity: 1;
  margin-right: 10px;
}

.inspiration_gallery .grid .grid-item .card_box .content_box .btn_wishList {
  margin-left: auto;
}

.inspiration_gallery .grid .grid-item .card_box .content_box .btn img {
  width: 20px;
  height: auto;
}

.inspiration_gallery .grid .grid-item .card_box .content_box .bottom_box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.inspiration_gallery .grid .grid-item .card_box .content_box h5 {
  font: normal normal 600 24px var(--font-family);
  letter-spacing: -0.5px;
  color: var(--color-white);
  max-width: 180px;
}

.inspiration_gallery .btn_loadMore,
.latest_article .btn_loadMore {
  padding: 16px 24px;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  margin: auto;
}

.inspiration_gallery .btn_loadMore:hover,
.latest_article .btn_loadMore:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
}

/* TCX Gallery */
.tcx-gallery {
  position: fixed;
  inset: 0;
  padding: 32px 32px 40px 32px;
  width: 100%;
  max-width: 1520px;
  height: 805px;
  margin: auto;
  border-radius: 12px;
  background: var(--color-dark);
  z-index: 1060;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
}

.tcx-gallery .gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcx-gallery .gallery-header h5 {
  font: normal normal 500 24px var(--font-family);
  letter-spacing: -0.5px;
  color: var(--color-white);
}

.tcx-gallery .gallery-header .btn_group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tcx-gallery .gallery-header .seperator {
  width: 0.6px;
  height: 42px;
  background: rgba(102, 101, 101, 0.6);
}

.tcx-gallery .gallery-header .btn {
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: rgba(94, 96, 117, 0);
  background: rgba(94, 96, 117, 0.24);
  box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.tcx-gallery .gallery-header .btn img {
  width: 24px;
  height: auto;
}

.tcx-gallery .gallery-header .btn-close {
  background: rgba(94, 96, 117, 0);
}

.tcx-gallery .gallery-container {
  margin-top: 40px;
  position: relative;
  z-index: 0;
}

.tcx-gallery .gallery-container .img-wrap {
  width: 903px;
  height: 604px;
  margin: auto;
}

.tcx-gallery .gallery-container .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcx-gallery .gallery-container p {
  color: var(--color-white);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tcx-gallery .gallery-container p a {
  color: var(--color-white);
  text-decoration: underline;
}

.tcx-gallery .gallery-container .btn {
  border-radius: 50px;
  background: rgba(94, 96, 117, 0.24);
  box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.15);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.tcx-gallery .gallery-container .btn-prev {
  left: 0;
}

.tcx-gallery .gallery-container .btn-next {
  right: 0;
}

.tcx-gallery .gallery-container .btn img {
  width: 24px;
  height: auto;
}

.topLatest_article {
  padding: 60px 0;
}

.topLatest_article .owl-carousel .owl-stage-outer {
  padding: 20px 0 40px;
}

.topLatest_article .card_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 75px;
  padding: 0;
  box-shadow: 0 4px 16px 0 rgba(80, 79, 79, 0.1);
  min-height: 642px;
  cursor: grab;
}

.topLatest_article .card_item:hover {
  box-shadow: 0 4px 16px 0 rgba(80, 79, 79, 0.1);
}

.topLatest_article .card_item .blog_text {
  padding: 30px 0 30px 24px;
  gap: 60px;
}

.topLatest_article .card_item .title_subTitle {
  gap: 24px;
}

.topLatest_article .card_item .title_subTitle h4 {
  font-weight: 400;
  letter-spacing: -1.5px;
  color: var(--color-dark);
}

.topLatest_article .card_item .title_subTitle h6 {
  color: var(--color-light);
  line-height: 150%;
}

.topLatest_article .card_item .img_card {
  height: 100%;
}

.topLatest_article .owl-dots {
  width: 230px;
  display: flex;
  align-items: center;
}

.topLatest_article .owl-dots .owl-dot {
  width: 100%;
  height: 1px;
  background: #acacac;
  transition: 0.4s all ease-out;
}

.topLatest_article .owl-dots .owl-dot.active {
  background: var(--color-dark);
}

.latest_article .row {
  --bs-gutter-x: 40px;
}

.latest_article .grid-item {
  margin-bottom: 60px;
}

.policies_content .policies_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policies_content .policies_inner h5 {
  font: normal normal 500 24px var(--font-family);
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

.policies_content .policies_inner h6 {
  line-height: 150%;
  color: var(--color-light);
  margin-top: 16px;
}
