@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");
@font-face {
  font-family: "clarendo";
  src: url("../fonts/clarendo.woff2") format("woff2"), url("../fonts/clarendo.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --size-80-px: 80px;
  --size-76-px: 76px;
  --size-70-px: 70px;
  --size-64-px: 64px;
  --size-58-px: 58px;
  --size-52-px: 52px;
  --size-48-px: 48px;
  --size-44-px: 44px;
  --size-40-px: 40px;
  --size-36-px: 36px;
  --size-32-px: 32px;
  --size-28-px: 28px;
  --size-24-px: 24px;
  --size-20-px: 20px;
  --size-18-px: 18px;
  --size-16-px: 16px;
  --size-14-px: 14px;
  --size-12-px: 12px;
  --size-10-px: 10px;
  --size-8-px: 8px;
}

:root {
  --size-80-rem: 5rem;
  --size-76-rem: 4.75rem;
  --size-70-rem: 4.375rem;
  --size-64-rem: 4rem;
  --size-58-rem: 3.625rem;
  --size-52-rem: 3.25rem;
  --size-48-rem: 3rem;
  --size-44-rem: 2.75rem;
  --size-40-rem: 2.5rem;
  --size-36-rem: 2.25rem;
  --size-32-rem: 2rem;
  --size-28-rem: 1.75rem;
  --size-24-rem: 1.5rem;
  --size-20-rem: 1.25rem;
  --size-18-rem: 1.125rem;
  --size-16-rem: 1rem;
  --size-14-rem: 0.875rem;
  --size-12-rem: 0.75rem;
  --size-10-rem: 0.625rem;
  --size-8-rem: 0.5rem;
}
@media (max-width: 900px) {
  :root :root {
    --size-80-rem: 3rem;
    --size-76-rem: 2.5rem;
    --size-70-rem: 2.25rem;
    --size-64-rem: 2rem;
    --size-58-rem: 1.75rem;
    --size-52-rem: 1.5rem;
    --size-48-rem: 1.25rem;
    --size-44-rem: 1.25rem;
    --size-40-rem: 1.125rem;
    --size-36-rem: 1rem;
    --size-32-rem: 0.875rem;
    --size-28-rem: 0.75rem;
    --size-24-rem: 0.625rem;
    --size-20-rem: 0.625rem;
    --size-18-rem: 0.5rem;
    --size-16-rem: 0.5rem;
    --size-14-rem: 0.375rem;
    --size-12-rem: 0.375rem;
    --size-10-rem: 0.25rem;
    --size-8-rem: 0.25rem;
  }
}

:root {
  --size-80-vw: 5vw;
  --size-76-vw: 4.75vw;
  --size-70-vw: 4.375vw;
  --size-64-vw: 4vw;
  --size-58-vw: 3.625vw;
  --size-52-vw: 3.25vw;
  --size-48-vw: 3vw;
  --size-44-vw: 2.75vw;
  --size-40-vw: 2.5vw;
  --size-36-vw: 2.25vw;
  --size-32-vw: 2vw;
  --size-28-vw: 1.75vw;
  --size-24-vw: 1.5vw;
  --size-20-vw: 1.25vw;
  --size-18-vw: 1.125vw;
  --size-16-vw: 1vw;
  --size-14-vw: 0.875vw;
  --size-12-vw: 0.75vw;
  --size-10-vw: 0.625vw;
  --size-8-vw: 0.5vw;
}

@media (max-width: 900px) {
  :root {
    --size-80-vw: 4vw;
    --size-76-vw: 3.5vw;
    --size-70-vw: 3vw;
    --size-64-vw: 3vw;
    --size-58-vw: 2.5vw;
    --size-52-vw: 2.5vw;
    --size-48-vw: 2vw;
    --size-44-vw: 2vw;
    --size-40-vw: 1.75vw;
    --size-36-vw: 1.75vw;
    --size-32-vw: 1.5vw;
    --size-28-vw: 1.25vw;
    --size-24-vw: 1.25vw;
    --size-20-vw: 1vw;
    --size-18-vw: 0.875vw;
    --size-16-vw: 0.875vw;
    --size-14-vw: 0.75vw;
    --size-12-vw: 0.625vw;
    --size-10-vw: 0.625vw;
    --size-8-vw: 0.5vw;
  }
}
.shimmer {
  position: relative;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: shimmer 1s infinite reverse;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desk-h100-slider img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .mobile-h100-slider img, .desk-h100-slider img {
    height: 100vh !important;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
[data-theme=default] {
  --white:#fff;
  --black:#000;
  --primary:#008DDA;
  --secondary:#222222;
  --theme-color:#A08F80;
}

[data-theme=dark] {
  --white:#fff;
  --black:#000;
  --primary:#222222;
  --secondary:#000;
}

.theme-changer {
  background: var(--primary);
  position: fixed;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 0rem;
  color: var(--white);
}

body {
  width: 100%;
  float: left;
  font-family: "Poppins", sans-serif;
}
body ul > li {
  list-style: none;
}
body a {
  text-decoration: none;
}
body img {
  max-width: 100%;
}

.main {
  width: 100%;
  float: left;
}

.container {
  padding: 0vw 6.2vw;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 900px) {
  .container {
    padding: 0vw 1.5em;
  }
}

.theme-btn {
  color: var(--white) !important;
  border: 1px solid var(--white) !important;
  padding: 10px 30px !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0px;
}

header {
    width: 100%;
    float: left;
    z-index: 1000;
    position: fixed;
    padding: 0px;
}
header .animated-icon1, header .animated-icon2, header .animated-icon3 {
  width: 8px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .animated-icon1 span, header .animated-icon2 span, header .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .animated-icon1 span {
  background: #fff;
}
header .animated-icon1 span:nth-child(1) {
  top: 0px;
}
header .animated-icon1 span:nth-child(2) {
  top: 10px;
}
header .animated-icon1 span:nth-child(3) {
  top: 20px;
}
header .animated-icon1 span:nth-child(4) {
  top: 30px;
}
header .animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
header .animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
header .animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}
header .animated-icon1.open span:nth-child(4) {
  display: none;
}
header .animated-icon1.open {
  width: 30px;
}
header div#navbarSupportedContent {
  position: absolute;
  right: 6.2vw;
  top: 80px;
}
header div#navbarSupportedContent .navbar-nav li a {
    padding: 10px 40px!important;
    display: block;
    color: #fff;
    background: rgb(205 205 205 / 73%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
    backdrop-filter: blur(0.9px);
    -webkit-backdrop-filter: blur(0.9px);
    margin: 3px 0px;
    min-width: 216px;
    text-align: center;
    box-shadow: 0px 0px 6px #00000021;
}
header div#navbarSupportedContent.show {
  transform: translate(0px, 0px);
}
header .logo img {
  width: 10vw;
}
header .sub-menu {
  padding: 0rem;
  position: absolute;
  top: 100%;
  left: 0%;
  background: white;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 0.1875rem solid var(--primary);
  box-shadow: -0.25rem 0.4375rem 0.8125rem rgba(0, 0, 0, 0.0784313725);
  transition: all 0.3s ease-in-out;
  transform: translate(0rem, 3.125rem);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
header .navbar-toggler {
  border: 0rem;
  outline: 0rem !important;
  padding: 0rem;
  margin-left: 12px;
}
header .navbar-toggler:focus {
  outline: 0rem;
  box-shadow: none;
}
.home .header::before,
.page-id-12 .header::before,
.page-id-182 .header::before {
    display:none;
}
.header-fixed {
  position: fixed;
  top: -6.25rem;
  transition: transform 0.5s;
  transform: translateY(6.25rem);
}
.header-fixed div#navbarSupportedContent {
    top: 96px;
}
.single-project .header::before,
.single-division .header::before,
.page-id-12 .header::before,
.page-id-18 .header::before,
.single-career .header::before {
    background: rgb(9,9,121);
    background: linear-gradient(0deg, rgba(9, 9, 121, 0) 0%, rgb(0 0 0 / 31%) 50%);
    left: 0;
    width: 100%;
}
.header::before,
.home .header.header-fixed::before,
.single-project .header-fixed::before,
.single-division .header-fixed::before,
.page-id-12 .header-fixed::before,
.page-id-182 .header-fixed::before,
.page-id-18 .header-fixed::before,
.single-career .header-fixed::before {
  width:100%;
  content: "";
  position: absolute;
  background: #99928C;
  top: 0;
  height: 100%;
  display:block;
}

.video-banner-sec img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-banner-sec {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-banner-sec .play-btn {
  position: absolute;
}
.video-banner-sec .play-btn img {
  width: 60px !important;
  height: 60px !important;
}

.heading-bg {
  text-align: center;
  padding: 40px 0px;
  background: url(../images/gradient-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.main-head h2 {
  font-size: 1.6rem;
  color: var(--white);
}

.border-head h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: 2px solid var(--white);
  border-left: 0px;
  border-right: 0px;
  padding: 10px 0px;
  font-weight: 200;
}

.counter-sec.main {
  padding: 8rem 0rem;
  background: url(../images/gradient-bg-theme.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.counter-sec.main .counter-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 80%;
  margin: auto;
  color: var(--white);
}
.counter-sec.main .counter-flex .counter-card {
  width: 33.33%;
  margin-bottom: 40px;
  font-size: 0.8rem;
  padding-left: 50px;
  text-align:center;
}
.counter-sec.main .counter-flex .counter-card:nth-last-of-type(1), .counter-sec.main .counter-flex .counter-card:nth-last-of-type(2), .counter-sec.main .counter-flex .counter-card:nth-last-of-type(3) {
  margin-bottom: 0px;
}
.counter-sec.main .counter-flex .counter-card strong {
  display: block;
}
.counter-sec.main .counter-flex .counter-card strong,
.counter-sec.main .counter-flex .counter-card strong .counter {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.theme-overlay img,
.main.theme-bg img {
  height: 50px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-launch-sec {
  background: var(--black);
  padding: 3rem 0rem 5rem 0rem;
}
.latest-launch-sec .row {
  margin-top: 3em;
}
.latest-launch-sec .latest-launch-card {
  position: relative;
  overflow:hidden;
}
.latest-launch-sec .latest-launch-card img {
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    transition: all .3s ease-in-out;
}
.latest-launch-card:hover img {
    transform: scale(1.2);
}
.latest-launch-sec .col-12 {
  padding: 0px 4px;
}

.latest-launch-card {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.latest-launch-card .heading-part {
    position: absolute;
    top: 0px;
    padding: 2rem;
    font-weight: 500;
    color: #fff!important;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgb(0 0 0 / 31%) 0%, rgba(255, 255, 255, 0) 100%);
    text-transform: uppercase;
    width: 100%;
}
.latest-launch-card .type {
  padding: 6px;
  background: url(../images/gradient-bg.png);
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}
.latest-launch-card .text-part {
    position: absolute;
    bottom: 10px;
    background: #ffffffd6;
    width: calc(100% - 20px);
    left: 10px;
    transform: translateY(110%);
    transition: all 0.3s ease-in-out;
}
.latest-launch-card .sub-info {
  padding: 15px;
  color: var(--theme-color);
}
.latest-launch-card .sub-info span {
  font-size: 0.9rem;
}
.latest-launch-card .sub-info h3 {
  font-size: 1.1rem;
  margin: 10px 0px;
}
.latest-launch-card .sub-info p {
  font-size: 0.7rem;
  margin: 10px 0px;
  color: var(--black);
}
.latest-launch-card .sub-info .learn-more-btn {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 0px;
  font-size: 0.8rem;
  width: 100%;
  margin-top: 1rem;
}
.latest-launch-card:hover .text-part {
  transform: translateY(0%);
}

.btn-discover-more {
  color: var(--theme-color) !important;
  padding: 0.8rem 2rem;
  border: 2px solid var(--theme-color) !important;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.discover-button-sec {
    padding: 3rem;
    text-align: center;
    background: url(../images/gradient-bg.png)!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background: #c1beba;
}
.discover-button-sec:hover {
    padding: 3rem;
    background: #c1beba!important;
}
/* .discover-button-sec:hover {
    background: #c1beba;
} */
.discover-button-sec .btn-discover-more {
    color: #fff!important;
    border: 2px solid #fff!important;
   transition: all 0.3s ease-in-out;
}
.discover-button-sec:hover .btn-discover-more {
    color:  #705f50!important;
    border: 2px solid  #705f50!important;
   
}
.our-partners-sec {
    padding: 6rem 0rem 6rem 0rem;
    background: url(../images/gradient-bg-theme.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.our-partners-sec .row {
    margin: 6rem auto 0rem auto;
    max-width: 84%;
}
.our-partners-sec .col-lg-3:nth-child(3),
.our-partners-sec .col-lg-3:nth-child(6),
.our-partners-sec .col-lg-3:nth-child(10){
    text-align: right;
}
.our-partners-sec .col-lg-3:nth-child(2),
.our-partners-sec .col-lg-3:nth-child(5),
.our-partners-sec .col-lg-3:nth-child(8),
.our-partners-sec .col-lg-3:nth-child(9){
    text-align: center;
}
/* .our-partners-sec .col-lg-3:nth-child(4) img {
    transform: scale(1.4);
}
.our-partners-sec .col-lg-3:nth-child(5) img {
    transform: scale(1.1);
}*/
.our-partners-sec .col-lg-3:nth-child(10) img {
    transform: scale(.7);
} 
.our-partners-sec .col-lg-3:nth-child(2) img, .our-partners-sec .col-lg-3:nth-child(3) img {
    position: relative;
    bottom: -15px;
    /* transform: scale(1.2); */
}
.our-partners-sec .partner-card img {
    height: 75px;
    object-fit: contain;
    margin: 0px 0px 60px 0px;
    aspect-ratio: 5/2!important;
}
.get-in-touch-sec {
  padding: 7rem 0rem;
  background: url(../images/get-in-touch-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.get-in-touch-sec .col-lg-4 {
  margin-bottom: 1rem;
}
.get-in-touch-sec h2 {
  color: var(--theme-color);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.get-in-touch-sec span {
  font-size: 0.8rem;
  color: var(--theme-color);
}
.get-in-touch-sec .get-in-touch-form {
  background: #fff;
  padding: 3rem 5rem;
  box-shadow: 2px 6px 16px 6px rgba(0, 0, 0, 0.4431372549);
}
.get-in-touch-sec .get-in-touch-form .col-12:nth-child(1) {
  order: 3;
}
.get-in-touch-sec .get-in-touch-form .col-12:nth-child(4) {
  order: 3;
}
.get-in-touch-sec .get-in-touch-form .col-12:nth-child(5) {
  order: 5;
}
.get-in-touch-sec .get-in-touch-form .col-12:nth-child(6) {
  order: 6;
}
.form-control,.form-select {
  border-radius: 0px;
  padding: 12px 20px;
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.get-in-touch-sec .get-in-touch-form .submit-btn {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(44,63,95,1) 100%);
  border-radius: 0px;
  padding: 12px;
  width: 100%;
  color: var(--white);
}
.get-in-touch-sec .get-in-touch-form .submit-btn:hover {
  background: url(../images/footer-bg-theme.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.btn, button, select, input {
  outline: none !important;
  box-shadow: none !important;
}

.footer-main {
  background: url(../images/footer-bg-theme.png);
  padding: 3rem 0rem 2rem 0rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-main .copyright-sec {
  justify-content: space-between;
  margin-top: 3rem;
  color: var(--white);
}
.footer-main .copyright-sec p {
  text-align: right;
  font-weight: 300;
}

.footer-main .footer-card ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    text-transform: uppercase;
}
.footer-main .footer-card ul li a {
  color: var(--white);
  font-weight: 300;
}
.footer-main .footer-card .footer-logo img {
    width: 30%;
}

.social-flex ul {
  display: inline-flex;
  gap: 10px;
  padding: 0px;
  margin: 0px;
}
.social-flex ul li a i {
  width: 26px;
  height: 26px;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.our-story-sec {
  background: #0d1425;
  display: flex;
}
.our-story-sec .text-part {
    padding: 6rem 6rem 6rem 6.2vw;
    width: 50%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
.our-story-sec .text-part h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  color: var(--theme-color);
}
.our-story-sec .text-part p, .our-story-sec .text-part li {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.9;
}
.our-story-sec .verticle-pattern-sec {
  background: url(../images/get-in-touch-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 5%;
}
.our-story-sec .img-part {
    width: 45%;
    display: flex;
    position: relative;
}
.our-story-sec .img-part::after {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    width: 100%;
    height: 150px;
    position: absolute;
    content: '';
    left: 0;
    opacity: .5;
}
.our-story-sec .img-part {
    width: 45%;
    display: flex;
    position: relative;
    overflow: hidden;
}
.division-sec-main .division-card .img-part {
    overflow: hidden;
}
.our-story-sec .img-part:hover img,
.division-sec-main .division-card .img-part:hover img {
    transform: scale(1.2);
}
.our-story-sec .img-part img, .division-sec-main .division-card .img-part img {
    transition: all .3s ease-in-out;
    object-fit: cover;
}
.management-sec {
    background: url('../../../../uploads/2024/09/managemnt-bg.png');
    overflow: hidden;
    padding: 3rem 0rem 0rem 0rem;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.tactics-sec .text-part {
    padding: 8rem 2rem 1rem 6.2vw;
}
.tactics-sec h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
}
.tactics-sec p {
    margin-bottom: 30px;
}
.team-card {
  position: relative;
  color: var(--white);
}
.team-card .name-part {
  position: absolute;
  top: 0;
  padding: 20px;
}
.team-card .name-part h3 {
  font-size: 1.5rem;
}
.team-card .text-part {
    padding: 26px 30px;
}
.team-card .text-part h3 {
    font-size: 1.4rem;
    font-weight: 200;
    margin-bottom: .5em;
}
.team-card .text-part span {
    display: block;
    margin: .2rem 0rem;
    color: var(--theme-color);
    font-weight: 500;
}
.team-card .text-part p {
    font-size: 0.7rem;
    margin: 1rem 0rem 0rem 0rem;
    line-height: inherit;
}
.team-slider .owl-stage-outer::before {
    background: url(../images/get-in-touch-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
  height: 386px;
    content: '';
    top:0px;
}
.team-card img {
  -o-object-fit: cover;
     object-fit: cover;
}

.team-slider {
  margin-top: 3rem;
}

.core-values-sec .text-part {
  padding: 6rem 6rem 6rem 6.2vw;
}
.core-values-sec .text-part ol {
  margin: 0px;
  padding-left: 20px;
}
.core-values-sec .text-part ol li {
  margin-bottom: 0.8rem;
}
.core-values-sec .verticle-pattern-sec {
  width: 4%;
}
.core-values-sec .img-part {
  width: 46%;
  padding-left: 0px;
}

.missoni-sec .col-lg-6 {
  display: flex;
}
.single-brand .our-story-sec {
    background: var(--white);
}
.missoni-sec .text-part {
    padding: 10rem 6rem 6rem 6.2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    color: var(--black);
}
.missoni-sec .text-part h2 {
  color: var(--black);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-family: "clarendo";
  font-weight: 700;
}
.missoni-sec .text-part p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}
.missoni-sec .img-part {
    padding-bottom: 40px;
}
.single-brand .missoni-sec .img-part {
    padding-bottom: 0!important;
}
.single-brand .missoni-sec .img-part h3 {
    margin-bottom: 30px;
}
.missoni-sec .img-part img {
    height: 84%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.missoni-sec .img-part h3 {
  font-size: 1.2rem;
  margin-top: 30px;
  text-decoration: underline;
  line-height: inherit;
  color: var(--theme-color);
 padding-left: 40px;
}
.missoni-sec .img-part h3 p {
  margin-bottom: 0px!important;
}
.missoni-sec .img-part h3 a {
  font-size: 1.2rem;
  margin-top: 30px;
  text-decoration: underline;
  line-height: inherit;
  color: var(--theme-color);
}
.division-sec-main {
  padding: 10rem 0rem 4rem 0rem;
  background: #0d1425;
}
.division-sec-main h2 {
  color: var(--theme-color);
  margin: 0px 0px 30px -6px;
}
.division-sec-main .col-lg-4 {
    padding: 0px;
    width: 50%;
}
.division-sec-main .division-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.division-sec-main .division-card .img-part,
.division-sec-main .division-card img {
    width: 100%;
}
.division-sec-main .division-card .img-part img {
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
}
.division-sec-main .division-card .division-logo {
    position: absolute;
    max-width: 24%;
    top: 12%;
}
.division-sec-main .division-card .division-logo img {
  width: 100%;
}
.division-sec-main .division-card .text-part {
    position: absolute;
    text-align: center;
    bottom: 50px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:100%;
}

.division-sec-main .division-card .text-part a {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    z-index: 10;
    background: url('../../../../uploads/2024/09/division-bg.png');
    width: 100%;
    background-size: cover;
    padding: 1rem 2rem;
    width: 100%;
    flex: 100%;
    display: block;
    margin-bottom: 3px;
}
.division-sec-main .division-card .text-part a:hover {
    background: #99928C;
}
.all-projects-sec {
  padding: 12rem 0rem 4rem 0rem;
}
.all-projects-sec .col-12 {
  margin-bottom: 8px;
}
.all-projects-sec .latest-launch-card img {
  height: 360px;
  width:100%;
}

.website-sec {
  padding: 4rem 0rem;
  background: url(../images/view-website-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}
.website-sec .row {
  position: relative;
}
.website-sec .view-website {
  background: var(--theme-color);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 40px;
  color: var(--white);
}
.website-sec h2 {
  font-size: 1.5rem;
  color: var(--theme-color);
  margin: 3rem 0rem 2rem 0rem;
}
.website-sec p {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.9;
}
.website-sec .social-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 43%;
  position: absolute;
  right: 0;
  bottom: -20px;
}
.website-sec .social-sec .logo-part {
  width: 60px;
}

.interior-design-sec {
  overflow: hidden;
  background: #000;
}
.interior-design-sec .img-part {
  position: relative;
}
.interior-design-sec .img-part img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.interior-design-sec .img-part .social-flex {
  position: absolute;
  bottom: 40px;
  left: 6.2vw;
}
.interior-design-sec .text-part {
  color: var(--white);
  padding: 6rem 4rem;
}
.interior-design-sec .row {
    align-items: center;
}
.interior-design-sec .text-part h2 {
  font-size: 1.5rem;
  color: var(--theme-color);
  margin: 0rem 0rem 2rem 0rem;
}
.interior-design-sec .text-part p {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.9;
}

.single-project-banner {
  position: relative;
}
.single-project-banner img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-project-banner .text-part {
    position: absolute;
    padding: 2rem 0rem 3rem 0rem;
    width: 100%;
    background: rgb(9,9,121);
    background: linear-gradient(180deg, rgba(9, 9, 121, 0) 0%, rgb(0 0 0 / 31%) 50%);
    bottom: 0px;
}
.single-project-banner .text-part h1 {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.4;
}

.interior-sec-main {
  background: #0d1425;
  display: flex;
}
.interior-sec-main .text-part {
  padding: 4rem 4rem 6rem 6.2vw;
  width: 50%;
  color: #58595B;
  background: var(--white);
  
}
.gallery-sec .owl-theme .owl-nav {
    display: none;
}
.interior-sec-main .text-part h2 {
  font-size: 1.5rem;
  color: var(--theme-color);
  margin: 2rem 0rem 3rem 0rem;
}
.interior-sec-main .text-part p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}
.interior-sec-main .gradient-sec {
    width: 50%;
    background: url(../images/interior-gradient-bg.png);
    padding: 0rem 5rem 4rem 5rem;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0d1425;
    justify-content: center;
}
.interior-sec-main .gradient-sec .button-sec {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    z-index: 100;
    flex-direction: column;
    width: 50%;
    margin: 15% auto 0px auto;
}
.interior-sec-main .gradient-sec .interior-logo {
    max-width: 48%;
    margin: 0px auto;
}
.interior-sec-main .gradient-sec .interior-logo img {
  width: 100%;
}

.download-btn {
  border: 1px solid var(--white) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  text-align: center;
  font-size:14px;
}

.gallery-sec {
  background: #0d1425;
  padding: 2.4rem 0rem 0rem 0rem;
}
.gallery-sec .col-lg-4 {
  padding: 0px 4px;
}
.gallery-sec .gallery-card img {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
 .gallery-btn-sec {
  text-align: center;
  padding: 3rem 0rem;
  background: url(../images/gradient-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 2.4rem 0rem 0rem 0rem;
}
 .gallery-btn-sec a {
 /*  border: 1px solid var(--white)!important; */
  color: var(--white)!important;
  padding: 0px 0px;
  text-align: center;
  text-transform: uppercase;
  font-size:20px;
}

.amenities-sec {
  background: #0d1425;
  color: var(--white);
}
.amenities-sec .text-part {
  padding: 6rem 0rem;
}
.amenities-sec h2 {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin: 0rem 0rem 3rem 0rem;
    padding-left: 42px;
}
.amenities-sec ul {
  margin: 0px;
  padding-left: 20px;
}
.amenities-sec ul li {
    list-style: disc !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
}
.amenities-sec ul li img {
    margin-right: 10px;
}
.amenities-sec ul li:has(img) {
    margin-bottom: 10px;
    list-style: none!important;
}
.amenities-sec ul:has(img) {
    padding-left: 0px;
}
.amenities-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.amenities-sec .amenities-box {
  margin-bottom: 20px;
}
.amenities-sec .amenities-box strong {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}
.amenities-sec .amenities-box:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.amenities-sec .amenities-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0px 0rem 0px;
}
.amenities-sec .amenities-flex a {
  width: calc(50% - 10px);
  flex: 0 0 auto;
}
.amenities-sec .amenities-flex img {
  width: 100%;
  flex: 0 0 auto;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.location-sec {
  background: #0d1425;
}
.location-sec h2 {
    margin: 3rem auto;
    width: 100%;
    text-align: center;
    max-width: max-content;
}
.video-banner-sec video {
    width: 100%!important;
    height: 100vh!important;
    object-fit: cover;
}
#video-controls-new {
    position: absolute;
}
#video-controls-new button {
    border: 0px;
    background: transparent;
    padding:0px;
}
#video-controls-new button img {
    width: 60px!important;
    height: 60px!important;
    object-fit: contain!important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--theme-color);
    background: var(--theme-color);
    padding: 20px;
    margin: 0px;
    color: #fff!important;
}
.wpcf7-not-valid-tip {
    color: #dc3232!important;
}
.career-banner img {
    height: 85vh;
    object-fit: cover;
    width: 100%;
}
.career-banner:after {
    width: 100%;
    height: 100%;
    background: #00000081;
    content: '';
    position: absolute;
    top: 0;
}
.career-banner {
    padding: 14rem 0rem 10rem 0rem;
    color: #fff;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
}
.career-banner .text-part {
    position: relative;
    z-index: 1;
}
.career-banner .text-part h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.career-banner .text-part p {
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.6;
    max-width: 80%;
}
.career-banner .text-part a {
    font-size: 1.1rem;
    color: #fff!Important;
    font-weight: 400;
    text-decoration: underline;
    display: block;
    width: fit-content;
}
.careers-main-sec {
    padding: 4rem 0rem;
}
.careers-head {
    background: var(--theme-color);
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6px 40px;
    color: var(--white);
    margin-bottom: 2rem;
}
.opening-card-main {
    margin-top: 2rem;
}
.opening-card {
    border: 0px solid #96918C;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
    background: #96918C;
    color: #fff;
}
.opening-card a {
    color: #fff;
    text-decoration: underline;
    font-size: 14px!important;
    width: 20%;
}
.place-flex {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size:12px;
}
.place-flex .place,.place-flex .type {
    display: flex;
    align-items: center;
    gap: 6px;
}

#enquiry-popup .modal-body {
    padding: 2rem;
    background: url(../images/get-in-touch-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
#enquiry-popup form {
    background: #fff;
    padding: 2rem;
    box-shadow: 2px 6px 16px 6px rgba(0, 0, 0, 0.4431372549);
}
#enquiry-popup textarea.form-control {
    height: 120px!important;
}
#enquiry-popup p:has(.submit-btn),
#wpcf7-f215-o2 p:has(.submit-btn){
    display: flex;
    justify-content: flex-end;
}
#enquiry-popup .submit-btn,
#wpcf7-f215-o2 .submit-btn
{
    background: var(--black);
    border-radius: 0px;
    padding: 12px 40px;
    width: 100%;
    color: var(--white);
    width: fit-content;
    margin-left: auto;
}
#enquiry-popup span.wpcf7-spinner,
#wpcf7-f215-o2 span.wpcf7-spinner {
    position: absolute;
}
#enquiry-popup button.btn-close {
    position: absolute;
    right: -50px;
    background-color: #fff;
    height: 30px;
    width: 30px;
    border-radius: 0px;
    opacity: 2;
    top: 0px;
}
#enquiry-popup h2 {
    color: var(--theme-color);
    margin-bottom: .8rem;
}
#enquiry-popup p {
    color: var(--theme-color);
}
.careers-single .text-part {
    max-width: 90%;
    margin: auto;
    box-shadow: 0px 0px 6px 2px #00000051;
    padding: 3rem 3rem 0rem 3rem;
}
.careers-single .text-part h2 {
    color: var(--theme-color);
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 600;
}
.careers-single .text-part ul li {
    font-size: 1.1rem;
    list-style: disc;
    margin-bottom: .8rem;
}
.careers-single .text-part h3,
.careers-inner-form h3 {
    color: var(--theme-color);
    margin-bottom: 1.5rem;
}
.careers-inner-form {
    padding: 3rem 0rem;
    background: url(../images/get-in-touch-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.careers-inner-form #wpcf7-f215-o2 {
    background: #fff;
    padding: 2rem;
    box-shadow: 2px 6px 16px 6px rgba(0, 0, 0, 0.4431372549);
    max-width: 70%;
    margin: auto;
}
.careers-inner-form .row {
    align-items: flex-end;
}
.careers-inner-form textarea.form-control {
    height: 120px;
    margin-top: 1rem;
}
.single-career .get-in-touch-sec {
    display: none;
}
.career-banner .place {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: underline;
}
.careers-single .text-part ul {
    padding-left: 20px;
}
.main-gallery {
    padding: 10rem 0rem 6rem 0rem!important;
    background: transparent!important;
}
.main-gallery .nav-pills .nav-link {
    color: #222222;
    background: #cecece51;
    border-radius: 0px;
}
.main-gallery .nav-link.active {
  background: var(--theme-color)!important;
  border-radius: 0px;
   color:  var(--white)!important;
}
.main-gallery .nav-pills {
    gap: 6px!important;
    margin-bottom: 2rem!important;
    justify-content: center;
}
.main-gallery .row {
    margin-left: -4px;
    margin-right: -4px;
}
.main-gallery h2 {
    margin-bottom: 2rem;
    color: var(--theme-color);
    border-color: var(--theme-color);
    font-weight: 400;
}
.main-gallery .gallery-card img {
    height: 360px;
}
.main-gallery .col-lg-3 {
    padding: 0px 4px;
}
.main-gallery  .owl-carousel .owl-nav.disabled {
    display: flex;
    color: #fff;
    justify-content: center;
}
.main-gallery .owl-carousel .owl-nav.disabled button {
    width: 40px;
    height: 40px;
    background: var(--theme-color)!important;
    border-radius: 0px!important;
}
.team-slider  .owl-nav.disabled, .team-slider  .owl-nav {
    display: flex;
    color: #fff;
    justify-content: center;
    justify-content: space-between;
    position: absolute;
    top: 30%;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
}
.team-slider .owl-nav.disabled button,
.team-slider .owl-nav button{
    width: 40px;
    height: 40px;
    /*background: var(--theme-color)!important;*/
    border-radius: 0px!important;
    
}
.team-slider .owl-nav button i {
    font-size: 40px;
    text-shadow: 1px 3px 6px #000000cf;
}
.team-slider button.owl-next {
    margin-right: 30px!important;
}
.team-slider button.owl-prev {
    margin-left: 30px!important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent!important;
}
.team-slider .owl-nav button span {
    font-size: 22px!important;
}
.tactics-sec ul li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 14px!important;
}
.tactics-sec ul {
    padding-left: 20px;
    margin: 10px 0px 0px 0px;
}
.operation-management-sec {
    padding:90px 0rem;
    color: #fff;
    background: #0d1425;
}
.operation-management-sec p {
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.9;
    max-width: 80%;
}
.tatics-card-sec {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}
.tatics-card-sec .icon-part {
    width: 64px;
    flex: 0 0 auto;
}
.tatics-card-sec .icon-part img {
    width: 64px;
    height: 64px;
    box-shadow: -3px 5px 20px #00000099;
    border-radius: 50%;
}
.tatics-card-sec .text-part h3 {
    font-size: 1.2rem;
    margin: 10px 0px;
}
.tatics-card-sec ul {
    padding-left: 20px;
    margin: 10px 0px 0px 0px;
}
.tatics-card-sec ul li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 14px!important;
    font-weight: 200;
}
.operation-management-sec h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--theme-color);
}
/*.operation-management-sec .row {*/
/*    margin-top: 3rem;*/
/*}*/
.careers-page-main {
    background: #061126;
}
.careers-page-main .text-part strong {
    display: block;
    margin-top: 2rem;
}
.page-id-182 .gallery-btn-sec,
.single-career,.gallery-btn-sec {
    margin-top: 0px;
}
.page-id-182 .our-story-sec .text-part,
.single-career .our-story-sec .text-part{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-id-182,.single-career {
    background: #061126;
}
.opening-card .text-part {
    display: flex;
}
.opening-card .text-part .info-1 h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.opening-card .text-part .info-2 h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin: 20px 0px;
}
.info-1 ul li ,
.info-2 ul li {
    font-size: 14px;
    font-weight: 200;
    list-style: disc;
    margin-bottom: 6px;
}
.info-1 ul, .info-2 ul {
    padding-left: 20px;
    margin-bottom: 0px;
}
.opening-card  .head-part {
    flex: 0 0 auto;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.opening-card .head-part h3 {
    font-size: 1.4rem;
}
.opening-card .info-1 {
    padding-right: 1.4rem;
}
.career-detail {
    padding: 3rem 0rem;
}
.opening-card-new {
    flex-direction: column;
    padding: 1rem;
    min-height: 400px;
    justify-content: center;
    align-items: baseline;
}
.col-lg-3:has(.opening-card-new) {
    padding: 0px 6px;
}
.opening-card-new .text-part {
    display: block!important;
}
.opening-card-new .head-part {
    width: 100%;
}
.opening-card-new a {
    font-size: 12px!important;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    padding-left: 0px;
}
.gallery-card a {
    width: 100%;
    float: left;
}
span.wpcf7-spinner {
    position: absolute;
}
.get-in-touch-form p {
    margin: 0px;
}
.header .head-btn-sec .theme-btn:hover,
.home .header-fixed .head-btn-sec .theme-btn:hover {
    background: url(../images/gradient-bg.png);
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.partner-card a {
    display: block; 
}

.prealoder {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgb(255, 255, 255);
    background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.950017507) 100%);
    z-index: 1050;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgb(44 63 95 / 89%) 100%);
    border-radius: 0px;
}
.preloader-logo {
  width: 180px;
  animation: prealoder 2s ease 0s infinite normal none;
}

@keyframes prealoder {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.download-btn:hover, .latest-launch-card .sub-info .learn-more-btn:hover {
    background: #99928C;
    color:#fff!important;
    border: 1px solid transparent !important;
}
.single-brand .missoni-sec .img-part {
    overflow: hidden;
    flex-direction: column;
}
.single-brand .missoni-sec .img-part figure {
    margin: 0px;
    overflow: hidden;
}
.gallery-slider .owl-dots.disabled {
    display: block!important;
}
.copyright-sec i {
    margin-right: 10px;
}
.counter-card span:nth-last-of-type(1) {
    position: absolute;
}
.gallery-card {
    position: relative;
}
.zoom-icon {
    font-size: 3rem;
    position: absolute;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    background: #00000051;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: 1;
    pointer-events: none;
}
.gallery-card:hover .zoom-icon { 
    opacity: 1!important;
}
.oc-img-sec img {
    width: 100%;
}
.single-brand .our-story-sec .main.theme-overlay {
    display: none!important;
}
.our-partner-sec-new {
    background: #010101;
    padding: 100px 0px 80px 0px;
}
.partner-logo img {
    height: 80px;
    object-fit: contain;
    padding: 13px;
}
.partner-logo-slider {
    margin-top: 60px;
}
.our-partner-sec-new .container {
    padding: 0px 3vw;
}
.page-id-241 .our-story-sec .text-part {
    padding: 10rem 6.2vw 6rem 6.2vw;
}
.postid-111 .house-of-octa-mobile-img-sec {
    display:none!important;
}
.single-brand .our-story-sec .verticle-pattern-sec {
    display: none;
}
.single-brand .our-story-sec .img-part {
    width: 50%;
}
.plogo7 {
    transform: scale(1.4);
    height: 86px!important;
}
@media (min-width: 576px) {
    #enquiry-popup .modal-dialog {
        max-width: 900px;
        margin-right: auto;
        margin-left: auto;
    }
}
/*# sourceMappingURL=main.css.map */