/**
 * Theme Name: HG Holdings Child
 * Theme URI:  https://example.com/hg-holdings-child
 * Template:   twentytwentyfour
 * Text Domain: hg-holdings
 */


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
  font-family: "Lexend", sans-serif;
  background-color: #f7f2e9;
  font-weight: 400;
  font-size: 16px;
  color: #505050;
    transition: all 0.35s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

.hide {
  display: none !important;
}

.text-center {
  text-align: center;
}


p:empty {
  display: none;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
    font-family: "Lexend", sans-serif;
}
h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mt-16 {
  margin-top: 16px !important;
}

header {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 0 10px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  width: 152px;
}
.navbar .logo img {
  max-width: 80px;
  height:auto;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #c8a56e;
}

.partner-btn {
  background: #c8a56e;
  color: #fff;
  border: 1px solid #fff;
   font-family: "Lexend", sans-serif;
  border-radius: 10px;
  padding: 6px 18px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.partner-btn:hover {
    background: #2c2c2c;
    color: #c8a56e;
}


.admin-bar header {
  top:30px !important;
}

.defaultSpace {
  padding: 60px 0;
}

.sectionHeader {
  margin-bottom: 40px;
  font-size: 18px;
}

.sectionHeader h2 {
  font-size: 45px;
  font-weight: 400;
  color: #2c2c2c;
}

.homeBanner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.homeBanner .bannerImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.homeBannerContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.homeBannerContent h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 400;
  color: #ffffff;
}

.brandSection {
  padding: 20px 0;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.marquee-content {
  display: inline-flex;
  gap: 50px;
  animation: scroll-left 40s linear infinite;
}

.marquee-content a {
  display: block;
  width: max-content;
}

.marquee-content img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.marquee-content img:hover {
  filter: none;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.aboutSection {
  padding: 60px 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

@media (min-width: 1199px) {
  .aboutSection .col-md-6:first-child {
    width: 45%;
    max-width: 45%;
    flex: 0 0 45%;
  }

  .aboutSection .col-md-6 + .col-md-6 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .aboutContent .contentBlock {
    margin-bottom: 60px !important;
  }
  .aboutImage {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
  }
}

.sectionHeader .rte {
  max-width: 820px;
  margin: 0 auto;
}

.aboutImage {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-top: 71%;
}

.aboutImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.aboutImage img.active {
  opacity: 1;
}

.aboutContent {
  padding-left: 25px;
  position: relative;
}

.aboutContent h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.aboutContent p {
  font-size: 20px;
  color: #505050;
  line-height: 1.3;
}

.aboutContent .contentBlock {
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}

.aboutContent .contentBlock.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  bottom: 0;
  border-left: 2px solid #2c385b;
}
.aboutContent p strong,
.aboutContent p span {
  font-weight: 600;
  color: #c8a56e;
}

.ourGroup {
  padding: 60px 0 30px;
}

.ourGroup .mb-30 {
  margin-bottom: 30px;
}

.groupCompanyCard {
  background: #faf6f1;
  border: 1px solid #e8dac4;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  height: 100%;
}

.groupCompanyCard:hover {
  border: 1px solid #c8a56e;
}

.groupCompanyCard img {
  height: 70px;
  max-width: auto;
  width: auto;
  display: inline-block;
  margin-bottom: 30px;
}

.groupCompanyCard h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  text-decoration: none;
   font-family: "Lexend", sans-serif;
  padding: 8px 25px;
  background: #c8a56e;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #2c2c2c;
  color: #c8a56e;
}

.groupCompanyCard .btnLink {
  margin-top: 20px;
  display: inline-block;
   font-family: "Lexend", sans-serif;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
}

.groupCompanyCard:hover .btnLink {
  text-decoration: underline;
}

.footerSection {
  background: #2c385b;
  padding: 50px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #eaebef;
}

.footerSection h4.fw-semibold {
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 15px;
}

.footerSection .social-links {
  display: flex;
  gap: 15px;
}

.footerSection .contactDetails p {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footerSection .contactDetails a {
  color: #fff;
  text-decoration: none;
}

.footerSection .list-unstyled {
  padding: 0;
  list-style: none;
}

.footerSection .list-unstyled li {
  margin-bottom: 10px;
}

.footerSection .list-unstyled li a {
  color: #eaebef;
  font-size: 14px;
  text-decoration: none;
}

.footerSection .list-unstyled li a:hover {
  color: #c8a56e;
}

.copyrightText {
  margin-top: 20px;
  padding: 20px 0;
  background: #eaebef;
  color: #2c385b;
}

/* about us  */

.aboutContentSection {
  padding: 60px 0 20px;
  color: #2c2c2c;
}

.aboutContentSection p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 20px;
}

.groupSection {
  padding: 10px 0 60px;
  overflow: hidden;
}

.groupSection .desktopView {
  position: relative;
}

.groupSection .desktopView::after {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: -20px;
  background: #f7f2e9;
}

.group-header {
  display: flex;
  width: calc(100% + 16px);
  margin-left: -8px;
}
.group-header div {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  padding: 10px 20px;
}
.group-header .left {
  background: #2c385b;
  width: 32.5%;
  position: relative;
}

.group-header .left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  width: 20px;
  background: #2c385b;
  transform: skew(-5deg);
}

.group-header .right {
  background: #c8a56e;
  width: calc(100% - 32.5%);
}

.groupSection .row .col-md-4 {
  width: 33.3333%;
  flex: 0 0 auto;
  max-width: inherit;
}

.groupSection .row .col-md-4 + .col-md-4 {
  position: relative;
  z-index: 1;
}

.groupSection .row .col-md-4:nth-child(2) {
  margin-left: -20px;
  width: calc(33.3333% + 20px);
  transform: skew(-5deg);
}

.groupSection .row .col-md-4:nth-child(3) {
  margin-left: -20px;
  width: calc(33.3333% + 20px);
  transform: skew(-5deg);
}

.groupSection .row .col-md-4:nth-child(5) {
  margin-left: -42px;
  width: calc(33.3333% + 42px);
  transform: skew(-5deg);
}

.groupSection .row .col-md-4:nth-child(6) {
  margin-left: -43px;
  width: calc(33.3333% + 43px);
  transform: skew(-5deg);
}

.groupSection .row .col-md-4:nth-child(8) {
  margin-left: -65px;
  transform: skew(-5deg);
  width: calc(33.3333% + 65px);
}

.groupSection .row .col-md-4:nth-child(9) {
  margin-left: -66px;
  width: calc(33.3333% + 66px);
  transform: skew(-5deg);
}

.groupSection .row .col-md-4:nth-child(2) .textBlock,
.groupSection .row .col-md-4:nth-child(3) .textBlock,
.groupSection .row .col-md-4:nth-child(5) .textBlock,
.groupSection .row .col-md-4:nth-child(6) .textBlock,
.groupSection .row .col-md-4:nth-child(8) .textBlock,
.groupSection .row .col-md-4:nth-child(9) .textBlock {
  transform: skew(5deg);
}

.groupSection .group-item {
  position: relative;
  overflow: hidden;
  height: 270px;
  cursor: pointer;
}

.groupSection .group-item .logoImg {
  max-width: 24px;
  height: auto;
}

.groupSection .group-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.groupSection .group-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.groupSection .overlay h4 {
  margin: 5px 0;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.groupSection .overlay p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
}

.commonPageBanner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.defaultPage {
  height: 250px !important;
  background: #000;
}

.commonPageBanner .bannerImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.commonPageBanner .bannerImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commonPageBanner .bannerImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.commonPageBanner .bannerContent {
  position: relative;
  z-index: 2;
  display: flex;
  color: #fff;
  font-size: 18px;
  padding: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.commonPageBanner .bannerContent h1 {
  font-size: 50px;
  margin: 0 0 20px;
  font-weight: 400;
  color: #ffffff;
}

.commonPageBanner .absContent {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 12px;
}

.commonPageBanner .absContent h4 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.Architects {
  padding: 60px 0;
  border-top: 3px solid #fff;
}

.architectCard {
  background: #ffffff;
  height: 100%;
}

.architectCard .architectImage {
  position: relative;
  padding-top: 116%;
  overflow: hidden;
}

.architectCard .architectImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.architectCard .architectContent {
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.architectCard .architectContent h4 {
  font-size: 20px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.CommunitySection {
  padding: 30px 0 30px;
}

.CommunitySection .listItems {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e8dac4;
  margin: 0;
}

.CommunitySection .listItems li {
  display: inline-block;
  position: relative;
  padding: 20px;
  flex: 1;
  color: #2c2c2c;
  text-align: center;
}

.CommunitySection .listItems li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 60px;
  border-left: 2px solid #eaebef;
  transform: translateY(-50%);
}

.CommunitySection .listItems li span {
  display: block;
  font-size: 32px;
  font-weight: 400;
  color: #2c2c2c;
}

.CommunitySection .listItems li p {
  display: block;
  font-size: 16px;
  margin: 15px 0 0;
}

.communityCommitment {
  padding: 60px 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.ComunityTabs {
  position: relative;
  overflow: hidden;
}

.ComunityTabs .resBlock {
  position: relative;
  padding-top: 53.5%;
  border-radius: 10px;
  overflow: hidden;
}

.ComunityTabs .resBlock::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.ComunityTabs .resBlock img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ComunityTabs .overlayContent {
  position: absolute;
  z-index: 1;
  padding: 100px;
  left: 0;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
}

.ComunityTabs .overlayContent h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.ComunityTabs .overlayContent ul {
  margin-left: 1.1rem;
  margin-bottom: 25px;
}

.ComunityTabs .overlayContent ul li + li {
  margin-top: 8px;
}

.ComunityTabs .tab-buttons {
  position: absolute;
  bottom: 50px;
  z-index: 1;
  left: 50px;
  display: flex;
  background: transparent;
}

.ComunityTabs .tab-buttons button {
  padding: 2px 20px;
  background: transparent !important;
   font-family: "Lexend", sans-serif;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ComunityTabs .tab-buttons button + button {
  border-left: 2px solid #eee;
}

.ComunityTabs .tab-buttons button.active {
  color: #d4af37;
}

.ComunityTabs .tab-content {
  display: none;
  padding: 0;
  animation: fadeIn 0.4s ease;
}

.ComunityTabs .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.socialWelfare {
  padding: 60px 0;
}

.socialWelfare .group-item {
  background: #faf6f1;
  border-radius: 10px;
  border: 1px solid #e8dac4;
  overflow: hidden;
}

.socialWelfare .group-item:hover {
  border: 1px solid #c8a56e;
}

.socialWelfare .group-item .resImg {
  position: relative;
  padding-top: 60%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  overflow: hidden;
}

.socialWelfare .group-item .resImg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.socialWelfare .group-item .groupContent {
  padding: 15px;
  font-size: 16px;
}

.socialWelfare .group-item .groupContent h4 {
  font-size: 18px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.socialWelfare .group-item .groupContent .btnLink {
  margin-top: 10px;
  display: inline-block;
   font-family: "Lexend", sans-serif;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
}

.socialWelfare .group-item:hover .groupContent .btnLink {
  text-decoration: underline;
}

.why-join {
  padding: 60px 0 60px;
  border-bottom: 3px solid #fff;
}

.jobOpportunitys {
  padding: 70px 0;
  overflow: hidden;
  border-top: 3px solid #fff;
}

.join-item {
  background: #faf6f1;
  border-radius: 8px;
  padding: 20px;
  font-size: 15px;
  height: 100%;
  border-radius: 16px;
  border: 1px solid #e8dac4;
  text-align: center;
}
.join-item:hover {
  border:1px solid #c8a56e;
}
.join-item .join-icon {
  margin-bottom: 20px;
}

.join-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.jobOpportunitys .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.jobOpportunitys .tabsButtons {
    display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jobOpportunitys .tab-btn {
  border: 1px solid #d4b074;
   font-family: "Lexend", sans-serif;
  background: transparent;
  color: #805d2d;
  padding: 6px 14px;
  min-width: 100px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.jobOpportunitys .tab-btn.active {
  background: #d4b074;
  color: #fff;
}

.jobOpportunitys .tab-content {
  display: none;
}

.jobOpportunitys .tab-content.active {
  display: block;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.job-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.apply-btn {
  background: #c49a5b;
   font-family: "Lexend", sans-serif;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 4px;
}

.apply-btn:hover {
  background: #ad8448;
}

.job-details {
  color: #555;
  font-size: 14px;
  margin: 10px 0;
}

.job-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #805d2d;
  margin-top: 10px;
}

.job-meta span {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 10px;
    border: 1px solid #DFCBAB;
    align-items: center;
    gap: 10px;
}

.contact-us {
  padding: 60px 0;
}

.contact-info {
  font-weight: 400;
  color: #2c2c2c;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 15px;
}

.contact-info p a {
  text-decoration: none;
}

.contact-info p img {
  margin-right: 5px;
}

.contact-info i {
  color: #a67c52;
  margin-right: 8px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons span {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.social-icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 2px 0 #0000000f;
}

.contact-form .wpforms-container {
  margin: 0 !important;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-form label {
  font-weight: 500 !important;
  color: #333 !important;
  margin-bottom: 6px !important;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  padding: 10px !important;
  font-size: 14px !important;
  outline: none !important;
  transition: 0.3s !important;
  width: 100% !important;
  max-width: 100% !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a67c52 !important;
}
.contact-form .wpcf7-submit,
.contact-form .wpforms-submit {
  display: inline-block;
  background: #a67c52 !important;
  color: #fff !important;
  border: none !important ;
  padding: 10px 18px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: 0.3s !important;
}

.contact-form .wpforms-submit:hover {
  background: #d2b47c !important;
}
.error-msg {
  color: red;
  font-size: 13px;
  display: none;
  margin-top: 3px;
}

.contact-map {
  padding: 0;
  position: relative;
  width: 100%;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.growthSectors {
  padding: 60px 0;
}

.sector-item {
  position: relative;
}

.sector-item .sector-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.sector-item:not(.withoutShade) .sector-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.sector-item .sector-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.sector-item:hover .sector-image img {
  transform: scale(1.05);
}

.sector-item h4 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
}

.sector-item .overlayContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  z-index: 1;
}

.sector-item .overlayContent h4 {
  position: initial;
  color: initial;
}
.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img.custom-logo {
    max-width: 90px;
    height: auto;
}

.customPage ol,
.customPage ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.customPage ol li,
.customPage ul li {
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .headerDrawer,
  .tabletMobileView {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .contact-us {
    padding: 35px 0;
  }
  .contact-info p br {
    display: none;
  }

  .jobOpportunitys .tab-btn {
    min-width: 110px;
  }

  .desktopNav {
    display: none !important;
  }

  .aboutContent {
    padding-left: 15px;
  }

  .aboutContentSection {
    padding: 35px 0 10px;
  }

  .groupSection .container {
    padding: 0 7px;
  }

  .groupSection .titleBlock {
    background: #2c385b;
    color: #fff;
  }

  .groupSection .titleBlock.block2 {
    background: #c8a56e;
  }

  .groupSection {
    padding: 10px 0 35px;
  }
  .groupSection .titleBlock h4 {
    margin: 0;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    margin: 20px 0 12px;
  }
  .Architects {
    padding: 35px 0;
  }

  .group-carousel .slick-list {
    padding-right: 25% !important;
  }
  .group-carousel .slick-slide {
    padding-right: 10px;
  }
  .desktopView {
    display: none !important;
  }
  .sectionHeader {
    font-size: 18px;
    margin-bottom: 30px;
  }
  body.nav-open {
    overflow: hidden;
  }

  .navClose {
    font-size: 24px;
  }

  .m__open {
    display: block;
    font-size: 24px;
  }

  .mainNav {
    position: fixed;
    background: #fff;
    padding: 20px;
    width: 270px;
    right: -100%;
    top: 0;
    height: 100%;
    transition: right 0.3s ease;
    z-index: 9;
  }

  .mobNavlogo {
    padding: 8px 15px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -20px;
    background: #000;
    display: flex;
    color: #fff;
    justify-content: space-between;
    align-items: center;
  }

  .mobNavlogo img {
    max-width: 70px;
  }

  body.nav-open .mainNav {
    right: 0;
    transition: right 0.3s ease;
  }

  .navbar ul {
    display: block;
  }

  .navbar ul li {
    display: block;
  }
  .partner-btn,
  .navbar ul li a {
    padding: 14px 20px !important;
    display: block;
    color: #000;
    border-bottom: 1px solid #ededed;
  }

  .partner-btn {
    background: transparent !important;
    border: none !important;
    margin-top: 0;
  }

  .homeBannerContent h1 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .marquee-content img {
    height: 40px;
  }

  .sectionHeader h2 {
    font-size: 42px;
    margin-bottom: 1rem;
  }

  .aboutImage {
    margin-bottom: 20px;
  }

  .aboutContent p {
    font-size: 18px;
  }

  .groupCompanyCard img {
    height: 40px;
  }

  .groupCompanyCard {
    padding: 15px;
    font-size: 14px;
  }

  .groupCompanyCard h4 {
    font-size: 18px;
  }

  .commonPageBanner {
    height: 50vh;
  }

  .growthSectors,
  .why-join,
  .jobOpportunitys {
    padding: 35px 0;
  }

  .socialWelfare {
    padding: 35px 0 20px;
  }

  .commonPageBanner .bannerContent h1 {
    font-size: 36px;
  }

  .commonPageBanner .absContent {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 767px) {


  .job-card {
    padding-bottom: 72px;
    position: relative;
  }
.job-card .apply-btn{
  position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}


  .defaultSpace {
    padding: 40px 0;
  }

  .jobOpportunitys .tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    padding: 10px 0;
  }
  .jobOpportunitys .tab-btn {
    white-space: nowrap;
    width: max-content;
    min-width: initial;
  }

  .commonPageBanner .bannerContent {
    font-size: 16px;
  }

  .mainNav {
    width: 100%;
  }

  .partner-btn,
  .navbar ul li a {
    text-align: center;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  .CommunitySection .listItems {
    padding: 0;
    position: relative;
    flex-wrap: wrap;
  }

  .CommunitySection .listItems::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    left: 20px;
    transform: translateY(-50%);
    height: 1px;
    background: #ddd;
  }

  .CommunitySection .listItems::after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: #ddd;
  }

  .CommunitySection .listItems li {
    padding: 20px;
    width: 50%;
    flex: initial;
  }

  .CommunitySection .listItems li span {
    font-size: 22px;
    font-weight: 400;
  }

  .communityCommitment {
    padding: 35px 0;
  }

  .CommunitySection .listItems li p {
    font-size: 14px;
  }

  .CommunitySection .listItems li + li::before {
    display: none;
  }

  .aboutContentSection p {
    font-size: 16px;
  }

  .Architects {
    padding: 35px 0;
  }

  .Architects .col-lg-3.col-md-6 {
    margin-bottom: 20px;
  }

  .commonPageBanner .absContent {
    bottom: 10px;
    right: 10px;
  }

  .commonPageBanner .absContent h4 {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .sectionHeader {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .ComunityTabs .tab-buttons {
    position: relative;
     font-family: "Lexend", sans-serif;
    left: 0;
    margin-bottom: 25px;
    overflow: auto;
    padding-left: 2px;
    bottom: auto;
  }

  .ComunityTabs .tab-buttons button {
    color: #2c2c2c;
    width: 33%;
     font-family: "Lexend", sans-serif;
    white-space: nowrap;
    width: max-content;
    font-size: 14px;
    padding: 10px 12px;
  }
  .ComunityTabs .overlayContent .btn {
    font-size: 12px;
    padding: 7px 12px;
  }

  .ComunityTabs .resBlock {
    padding-top: 70%;
  }

  .ComunityTabs .overlayContent h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .ComunityTabs .overlayContent ul {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .socialWelfare .group-item {
    margin-bottom: 20px;
  }

  .ComunityTabs .overlayContent {
    padding: 15px;
  }

  .ComunityTabs .tab-buttons button {
    border-bottom: 1px solid #eee;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .contact-form {
    width: 100%;
  }

  .homeBannerContent h1 {
    font-size: 30px;
  }

  .homeBanner {
    height: 50vh;
  }

  .brandSection {
    padding: 20px 0;
  }

  .sectionHeader h2 {
    font-size: 32px;
  }

  .aboutContent h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .aboutContent p {
    font-size: 16px;
  }

  .ourGroup {
    padding: 35px 0 20px;
  }

  .groupCompanyCard {
    font-size: 15px;
    line-height: 1.5;
  }

  .footerSection {
    padding: 40px 0 0;
  }

  .footerSection .col-6 {
    margin: 30px 0;
  }

  .copyrightText {
    margin-top: 30px;
  }

  .groupCompanyCard h4 {
    margin-bottom: 10px;
  }

  .groupCompanyCard .btnLink {
    margin-top: 5px;
  }

  .aboutSection {
    padding: 35px 0;
    margin-bottom: 0;
  }

  .aboutContent p {
    font-size: 14px;
    line-height: 1.5;
  }

  .ourGroup .mb-30 {
    margin-bottom: 15px;
  }
}
