@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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'ivyMode-regular';
  src:
    url('../font/IvyMode-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ivyMode-medium';
  src:
    url('../font/IvyMode-SemiBold.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ivyMode-bold';
  src:
    url('../font/IvyMode-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --iv-reg: 'ivyMode-regular';
  --iv-med: 'ivyMode-medium';
  --iv-bold: 'ivyMode-bold';
  --pcolor: rgba(210, 174, 109, 1)
}


body {
  font-family: 'Poppins', sans-serif;
  float: left;
  width: 100%;
  color: #000;
  font-weight: 300;
  background-attachment: fixed;
  background-size: 40%;
  padding-right: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}

::-moz-selection {
  color: #000;
  background: #d7c07f;
}

::selection {
  color: #000;
  background: #d7c07f;
}

.btn {
  box-shadow: none;
  outline: none;
}

button {
  box-shadow: none;
  outline: none;
}

:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

p {
  color: rgba(85, 85, 85, 1);
  line-height: 30px;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

a:hover {
  color: #0e2c18;
}

ul li,
ul li a,
ol li,
ol li a {
  color: #161616;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn-close {
  box-shadow: none !important;
}

.video-banner {
  height: 100vh;
  position: relative;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-size: 64px;
  color: #fff;
  text-transform: capitalize;
  font-family: var(--iv-med);
}

.logo {
  width: 200px;
}

header {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #0000009c;
  width: 100%;
  backdrop-filter: blur(160px);
  padding: 7px 0;
  transition: all 400ms ease-in-out;
}

.social ul {
  display: flex;
  gap: 1rem;
}

header .container {
  justify-content: space-between;
}

.middle {
  display: flex;
  gap: 4rem;
  align-items: center;
}

header .nav-link {
  font-size: 14px;
  color: #fff !important;
  font-weight: 300;
  text-transform: capitalize;
  font-family: var(--iv-reg)
}

.nav-item.dropdown {
  position: relative;
}

.nav-item {
  position: relative;
}

.dropdown-menu-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  max-width: 850px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 20px;
  border-radius: 10px;
  margin: 0;
  list-style: none;
  min-width: 200px;
}



.dropdown-menu-hover li a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.dropdown-menu-hover li a:hover {
  color: #007bff;
}

.nav-item.dropdown:hover .dropdown-menu-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



.megamenu>div {
  padding: 0 2rem;
  border-right: 1px solid #cdcd;
  flex-grow: 1;
}

.megamenu>div:first-child {
  padding-left: 0;
}

.megamenu>div:last-child {
  border: none;
}

.dropdown-menu-hover h3 {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
  font-family: var(--iv-reg);
}

.dropdown-menu-hover ul li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 4px 0;
}

.megamenu {
  display: flex;
  justify-content: center;
}

.dropdown-menu-hover li a::before {
  content: '';
  height: 2px;
  width: 0px;
  background: rgb(200 168 108);
  display: inline-block;
  vertical-align: middle;
  transition: all 300ms ease-in-out;
}

.dropdown-menu-hover li a:hover {
  color: rgb(200 168 108);
}

.dropdown-menu-hover li:hover a:before {
  width: 7px;
}

.counter-area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.counter-area h3 {
  font-size: 48px;
  font-family: var(--iv-med);
}

.counter-area h3 span {
  font-size: 48px;
  font-family: var(--iv-med);
}

.counter-area h4 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.counter-area div {
  text-align: center;
}

.counter {
  padding: 3.5rem 0;
}

.counter-area>div {
  padding: 0 1rem;
  border-right: 2px solid rgba(210, 174, 109, 1);
}

.counter-area>div:last-child {
  border: none;
}

.counter-area {
  border-bottom: 1px solid var(--pcolor);
  padding-bottom: 3rem;
}

hgroup h2 {
  font-size: 40px;
  font-family: var(--iv-med);
  text-transform: capitalize;
  margin-bottom: 1rem;
}

hgroup h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

hgroup h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: rgba(43, 48, 57, 1);
}

.c-head img {
  width: 128px;
  margin: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
}

.c-head a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(67, 114, 233, 1) !important;
}

.c-bottom h3 {
  font-size: 16px;
  font-family: var(--iv-med);
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 1rem;
  transition: all 300ms ease-in-out;
  
}
.card-front .c-bottom h3{text-align: center;}
.card-front .c-bottom a{position: absolute;right: 10px;bottom: 10px;}
/* .card-back .c-bottom a{position: absolute;right: 10px;bottom: 10px;} */

.c-bottom p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 22px;
}

.c-bottom a {
  font-size: 14px;
  font-family: var(--iv-med);
  color: #fff;
  text-transform: capitalize;
  transition: all 200ms ease-in-out;
  z-index: 9;
}

.c-bottom a:hover {
  color: var(--pcolor);
}

.c-head {
  background: rgba(243, 243, 243, 1);
  border-radius: 10px 10px 0 0;
  padding: 1rem 0 2rem;
  text-align: center;
}

.c-bottom {
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.business-area {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


.business-area > div{flex-basis: 284px;}

.about {
  padding: 0rem 0 3.5rem;
}

.pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 160px;
  transition: all 400ms ease-in-out;
}

.business-card:hover .pattern {
  transform: translateY(20px);
}

.business-card:hover h3 {
  color: var(--pcolor);
}

.message-md {
  width: 1120px;
  margin: auto;
  background: rgba(30, 30, 30, 1);
  border-radius: 15px;
  text-align: center;
  padding: 2rem;
  position: relative;
  margin-bottom: -60px;
  z-index: 3;
}
.message-md h3 span{font-size: 15px;}
.message-md h2 {
  font-size: 27px;
   font-family: var(--iv-reg);
  color: #fff;
  text-transform: capitalize;
  line-height: 35px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.message-md h3 {
  font-size: 20px;
  font-family: var(--iv-med);
  text-transform: capitalize;
  color: var(--pcolor);
}

.arrow {
  margin: 2rem 0 2rem;
}

.business-card {
  overflow: hidden;
}

.message-md::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 40px;
  background: url(../media/md-patt.png)center/contain no-repeat;
  top: 15px;
  left: 30px;

}

.message-md::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 40px;
  background: url(../media/md-patt.png)center/contain no-repeat;
  bottom: 15px;
  right: 30px;
  transform: rotate(180deg);

}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 100%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-wrapper-block {
  height: 700px;
  z-index: 1;
}

.year {
  font-size: 48px;
  font-family: var(--iv-reg);
  color: #fff;
  transition: all 300ms ease-in-out;
}

.date-slider .swiper-slide {
  cursor: pointer;
}

.slide-content .title {
  font-size: 32px;
  font-family: var(--iv-med);
  text-transform: capitalize;
  color: #fff;
}

.slide-content .subtitle {
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
}

.date-slider {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
}

.slide-content {
  position: absolute;
  width: 100%;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.mySwiper .swiper-slide-thumb-active .year {
  color: var(--pcolor);
  font-family: var(--iv-med);
}

.swiper-wrapper-block::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(to top, #000, transparent);
  content: '';
  z-index: 1;
}

.title-block h3 {
  font-size: 32px;
  font-family: var(--iv-med);
  color: #fff;
  text-transform: capitalize;
  text-shadow: 2.5px 2.5px #696969
}
.link-area {
    display: flex
;
    justify-content: space-between;
    gap: 12rem;
}
.link-area > div{flex: 1;}
.link-area > div:first-child{flex-basis: 1;}
.title-block h2 {
  font-size: 48px;
  font-family: var(--iv-med);
  color: #fff;
  /* text-transform: capitalize; */
  text-shadow: 2.5px 2.5px #696969
}

.title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.board-top p{text-align: justify;}

.title-block {
  position: absolute;
  width: 85%;
  top: 135px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.title-block a {
  font-size: 20px;
  font-weight: 400;
  background: var(--pcolor);
  color: #ffff;
  text-transform: capitalize;
  padding: 10px 25px;
  border-radius: 3rem;
  outline: 1px solid transparent;
  transition: all 300ms ease-in-out;
}

.title-block a:hover {
  background: #fff;
  color: var(--pcolor);
  outline: 1px solid var(--pcolor);
}

.arrow-date {
  position: absolute;
  bottom: 110px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.left h3 {
  font-size: 32px;
  font-family: var(--iv-reg);
  text-transform: capitalize;
}

.left h2 {
  font-size: 40px;
  font-family: var(--iv-bold);
  text-transform: capitalize;
}

.left p {
  color: rgba(85, 85, 85, 1);
  font-size: 16px;
  font-weight: 400;
}

.prim-btn {
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  display: inline-block;
  background: #D2AE6D;
  padding: 12px;
  color: #fff;
  text-transform: capitalize;
  width: max-content;
  outline: 1px solid transparent;
  transition: all 300ms ease-in-out;
}

.left {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prim-btn svg path {
  transition: all 300ms ease-in-out;
}

.prim-btn:hover svg path {
  stroke: var(--pcolor);
}


.prim-btn:hover {


  color: #D2AE6D;
  outline: 1px solid var(--pcolor);
  background: #fff;
}

.career {
  background: #fff;
  overflow: hidden;
  padding-top:1.5rem
}

footer {
  background: rgba(37, 37, 37, 1);
  padding: 3rem 0 0;
}

.f-logo {
  margin-bottom: 1.5rem;
}

.f-logo + p{text-align: justify;}

footer p {
  font-size: 16px;
  font-weight: 300;
  color: rgb(201 201 201);
  line-height: 24px;
  
}

footer h3 {
  font-size: 17px;
  font-family: var(--iv-reg);
  color: #fff;
  margin-bottom: 1.5rem;
}

.f-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.f-links li a,
.f-links li {
  font-size: 14px;
  font-weight: 300;
  color: rgb(201 201 201);
  transition: all 300ms ease-in-out;
  transform: translateY(0);
}

.f-links li {
  margin: 5px 0;
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.f-links li:hover {
  transform: translateX(5px);
}

.f-links li:hover a {
  color: #fff;
}

.f-bottom {
  padding: 2rem 0;
  margin-top: 1rem;
  border-top: 1px solid #cdcdcd;
}

.f-bottom p {
  margin: 0;
  font-size: 14px;
}

.search-modal .modal-content {
  background: var(--pcolor);
}

.search-wrap input {
  width: 100%;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-family: var(--iv-reg);
  border: none;
}

.search-wrap {
  border-bottom: 1px solid #cdcd;
  padding: .5rem;
  display: flex;
  gap: 1rem;
  width: 80%;
  margin: auto;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search-modal .modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social svg:hover path,
.social svg:hover stroke {
  fill: var(--pcolor);
}

.social svg path,
.social svg stroke {
  transition: all 200ms ease-in-out;
}

.video-banner.sub-banner {
  height: 500px;
}

.breadcrumb a,
.breadcrumb-item.active,
.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.sub-banner .banner-content {
  left: calc((100% - 1320px)/2);
  transform: none;
}

.over-text {
  padding: 3rem 0;
}

.year-box-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
}

.year-box-inner .ico {
  width: 50px;
  flex-shrink: 0;
  flex-basis: 50px;
}

.year-box-inner h3 {
  font-size: 24px;
  color: #fff;
  font-family: var(--iv-bold);
  text-transform: capitalize;
}

.over-content {
  padding: 3rem 0;
  background: url(../media/newban.jpg)top/cover no-repeat;
}

.mid-logo {
  width: 300px;
  margin: auto;
}

.over-content h2 {
  font-size: 96px;
  color: #fff;
  font-family: var(--iv-bold);
  text-align: center;
  margin: 5rem 0 0;
}

.ov-left .year-box-inner {
  justify-content: flex-end;
}

.ov-right .year-box-inner {
  justify-content: flex-start;
}

.ov-left .col-12:nth-child(1) {
  padding-right: 30px;
}

.ov-left .col-12:nth-child(2) {
  padding-right: 60px;
}

.ov-left .col-12:nth-child(3) {
  padding-right: 80px;
}

.ov-right .col-12:nth-child(1) {
  padding-left: 30px;
}

.ov-right .col-12:nth-child(2) {
  padding-left: 60px;
}

.ov-right .col-12:nth-child(3) {
  padding-left: 80px;
}

.flex-cont h3 {
  font-size: 64px;
  font-family: var(--iv-bold);
  transition: all 300ms ease-in-out;
  color: #000;
}

.flex-box:hover h3 {
  color: var(--pcolor);
}

.flex-box {
  display: flex;
  gap: 3.5rem;
  padding: 2rem 0;
}

.flexi-img {
  width: 480px;
  height: 290px;
  flex-shrink: 0;
}

.flexi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flexi-img {
  position: relative;
}

.flexi-img::after {
  content: '';
  position: absolute;
  inset: 5%;
  border: 1px solid var(--pcolor);
  right: -20px;
  top: -20px;
}

.flex-box:nth-child(even) {
  flex-direction: row-reverse;
}

.year-content {
  padding: 3.5rem 0;
}

.board-top {
  background: rgba(244, 244, 244, 1);
  padding: 0 0 2rem;
}

.bod {
  padding: 3rem 0 5rem;
  background: url(../media/a.png)center/cover;
}

.bod .col-6 h3,
.dir-row h3 {
  font-size: 32px;
  font-family: var(--iv-med);
  text-transform: capitalize;
  color: #000;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.bod .col-6 .dir-row h4,
.col-content h4 {
  font-size: 32px;
  font-family: var(--iv-reg);
  text-align: center;
}

.dir-row .col-4:last-child {
  border: none;
}

.board-wrap {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: #fff;
  padding: 10px 30px;
  border-radius: 15px;
  height: 100%;
}

.product-gallery {
  padding: 3.5rem 0;
}

.col-content p {
  font-size: 15px;
  line-height: 25px;
  text-align: center;
}

.col-content {
  inset: 0 30px
}

.col-content span {
  display: none;
}

.dir-row {
  padding: 3rem 0 0
}

.col-content:hover h3 {
  color: var(--pcolor);
}

.awards {
  padding: 3.5rem 0;
}

.award-box-new h3 {
    font-family: 'ivyMode-regular';
    font-size: 25px;
}

.award-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 300ms ease-in-out;
  opacity: 1;
}
.linear-bg h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
}
.aw-img{margin-bottom: 1rem;}

.award-box:hover {
  opacity: 0.7;
}

.award-box a {
  cursor: url('../media/zoom.svg'), auto;
}

.cons-det {
  padding: 3.5rem 0;
}

.det-img {
  width: 580px;
  height:400px;
  margin-left: auto;
  top: 150px;
}

.det-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.border-golden {
  position: sticky;
}

.border-golden::after {
  content: '';
  position: absolute;
  inset: 5%;
  border: 1px solid var(--pcolor);
  right: -20px;
  top: -20px;
}

.dropdown-menu-hover:has(.megamenu) {
  position: fixed;
  left: 0;
  width: 95vw;
  max-width: 95vw;
  top: 67px;
  right: 0;
  margin: auto
}

.preloader-wrapper {
  position: fixed;
  z-index: 99999999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.pl {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  transform: translateX(0);
  transition: transform 1s ease;
}

.layer1 {
  z-index: 3;
}

.layer2 {
  z-index: 2;
  background-color: #6e6e6e;
}

.layer3 {
  z-index: 1;
  background-color: #e0e0e0;
}

.pl-logo-c {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 4;
}

.pl-logo-c img {
  width: 300px;
  height: auto;
  position: relative;
  z-index: 5;
}

.animate-layer1 {
  transform: translateX(-100%);
  transition-delay: 0s;
}

.animate-layer2 {
  transform: translateX(-100%);
  transition-delay: 0.3s;
}

.animate-layer3 {
  transform: translateX(-100%);
  transition-delay: 0.6s;
}


header.scrolled {
  background: #000;
}

.building-box h3 {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(51, 51, 51, 1);
  transition: all .3s ease-in-out;
}

.building-box:hover h3 {
  color: rgb(158 132 83);
}

.building-box h4 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(85, 85, 85, 1);
}

.build-img {
  margin-bottom: 10px;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.build-img::before {
    position: absolute;
    inset: 0;
    background: #00000030;
    z-index: 1;
    content: '';
    transition: background 1s cubic-bezier(.26,.54,.32,1);
}
.build-img:hover::before {
    background: #00000070;
}



.build-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.26, .54, .32, 1);
 
}


.recent-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.recent-area>div {
  flex-basis: 22%;
}

.recent-proj {
  padding: 4rem 0;
  margin: 1rem 0;
  background: rgba(255, 229, 183, 0.41);
}

.c-logo {
  width: 300px;
  margin: 1rem auto;
}

.company-info {
  padding: 2rem 0;
}

.uni-imp-exp {
  padding: 1.5rem 0 3.5rem;
}

.imp-banner img {
  width: 100%;
  aspect-ratio: 4/1;
  object-fit: cover;
}

.universal-contact {
  padding: 3.5rem 0;
}

.inp-grp {
  height: 50px;
  position: relative;
  border-radius: 10px;
  border: 1px solid gray;
}

.inp-grp input {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  outline: 0;
  font-size: 17px;
  border: none;
  background: transparent;
  padding: 10px;
}

.inp-grp textarea {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  outline: 0;
  font-size: 17px;
  border: none;
  background: transparent;
  padding: 10px;
}

.inp-grp .label {
  padding: 0 10px;
  position: absolute;
  background: #fff;
  font-size: 17px;
  text-transform: capitalize;
  margin: 10px 0;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.inp-grp input:focus+.label,
.inp-grp input:not(:placeholder-shown)+.label {
  transform: translateY(-30px) scale(0.8);
  color: var(--pcolor);
  z-index: 9;
}

.inp-grp:has(input:focus),
.inp-grp:has(input:not(:placeholder-shown)) {
  border: 1px solid var(--pcolor);
}

.inp-grp textarea:focus+.label,
.inp-grp textarea:not(:placeholder-shown)+.label {
  transform: translateY(-30px) scale(0.8);
  color: var(--pcolor);
  z-index: 9;
}

.inp-grp:has(textarea:focus),
.inp-grp:has(textarea:not(:placeholder-shown)) {
  border: 1px solid var(--pcolor);
}

.inp-grp.text-area {
  height: 130px;
}

.linear-bg {
  padding: 3.4rem 2rem 1rem 1.5rem;
  background: url(../media/c-bg.jpeg);background-size: contain;background-repeat: no-repeat;
}

.linear-bg ul li,
.linear-bg ul li a {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

.linear-bg ul {
  list-style: none;
  padding: 0;
}

.linear-bg ul li {
  margin: 25px 0;
  display:flex;gap:10px
}

.b-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.b-img {
  margin-bottom: 20px;
  text-align: center;
}


ul.filters {
  display: block;
  width: 100%;
  margin: 0;
  padding: 30px 0;
}

ul.filters>li {
  list-style: none;
  display: inline-block;
}

ul.filters>li>a {
  display: block;
  color: #434e5e;
  text-decoration: none;
  padding: 5px 20px;
  font-size: 18px;
  text-transform: capitalize;
}

ul.filters>li>a:hover {
  background-color: #e6e9ed;
}

ul.filters>li.active>a {
  color: #fff;
  background-color: var(--pcolor);
}

.filters.filters-tag {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  line-height: 1;
  text-align: center;
}

ul.filters.filters-tag>li>a {
  display: block;
  color: #434e5e;
  border-radius: 0.25rem;
  padding: 0.3rem 0.6rem;
}

ul.filters.filters-tag>li.active>a {
  color: #fff;
  background-color: rgba(252, 41, 74, 0.8);
}

.filters-tag {
  font-size: 0.9rem;
}

.project {
  position: relative;
  margin-bottom: 50px;
  color: #000;
  border-radius: 0;
  border: 1px solid #eee;
  background-color: #fff;
  box-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.075);
}

.project-head {
  position: relative;
  overflow: hidden;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(67, 78, 94, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  -webkit-transition: ease-in-out 0.2s;
  -moz-transition: ease-in-out 0.2s;
  -ms-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.project-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(252, 41, 74, 0.9);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  box-sizing: border-box;
  padding: 30px;
  -webkit-transition: ease-in-out 0.2s;
  -moz-transition: ease-in-out 0.2s;
  -ms-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.project-body {
  padding-top: 10px;
  padding-bottom: 10px;
}

h4.title {
  color: #434e5e;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.project-btn {
  margin-bottom: -40px;
  font-size: 0.9rem;
  background-color: #fff;
  color: #222;
  border: 1px solid #eee;
  border-radius: 0;
  width: 120px;
  box-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.075);
}

.project-btn:hover {
  background-color: rgba(252, 41, 74, 1);
  color: #fff;
}

.product-gallery figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(to top, #000, transparent);
  padding: 1rem;
}

.product-gallery figure figcaption {
  padding: 1.5rem;
  font-size: 30px;
  text-transform: capitalize;
  color: #fff;
  font-family: var(--iv-med);
}

.product-gallery figure img {
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.product-gallery figure:hover img {
  transform: scale(1.1);
}

.product-gallery figure {
  overflow: hidden;
  margin: 0;
}



.card-new {
  border-radius: 10px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 150px;
  padding-bottom: 90%;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: opacity 0.6s ease;
}

.card-front {
  background: #cba869;
  outline: 1px solid #cba869;
  opacity: 1;
}

.card-back {
  color: #fff;
  opacity: 0;
}

.card-new:hover .card-front {
  opacity: 0;
}

.card-new:hover .card-back {
  opacity: 1;
}

.card-logo img {
  width: 160px;
  margin: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.card-logo {
  background: #fff;
  text-align: center;
  padding: 17px;
}

:root {
  --gap: 2rem;
  --item-height: 14rem;
  --offset: calc(var(--item-height) / 2 + var(--gap) / 2);
}

.mansory {
  display: flex;
  gap: var(--gap);
}

.mansory-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  flex: 1;
}

.mansory-column:nth-child(even) {
  margin-top: var(--offset);
}

.mansory-column .item {
  height: auto;
}


.pro-img img{ transition: all ease; }

.pro-img img {
  transition: transform 1s cubic-bezier(.26, .54, .32, 1); /* Smooth transition */width: 100%;
}
.build-img:hover img {
  transform: scale(1.05); /* Scale up on hover */
}
.pro-img:hover img {
  transform: scale(1.05); /* Scale up on hover */
}
.pro-img + h2{font-family:'Roboto', sans-serif;font-size: 18px;text-transform: capitalize;margin-top: 10px;transition:  all 300ms ease-in-out;z-index: 2;text-align: center;}
.product-list{padding: 2.5rem 0 5rem;background: rgba(255, 229, 183, 0.41);}
.product-list hgroup h2{text-align: center;}
.mansory{margin-top: 3.7rem;}

.mans-new{display: grid;grid-template-columns: repeat(3,1fr);gap: 1rem;margin-top: 1.5rem;margin-bottom: 4rem;}
.pro-img  h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 10px;
    position: absolute;top: 50%;left: 50%;transform: translate(-50% , -50%);width:90%;text-align: center;color: #fff;z-index: 2;
    
}
.pro-img{position: relative;z-index: 1;overflow: hidden;height: auto;}
.pro-img::before {
  position: absolute;
  inset: 0;
  background: #00000030;
  z-index: 1;
  content: '';
  transition: background 1s cubic-bezier(.26,.54,.32,1); /* Add this line */
}

.pro-img:hover::before {
  background: #00000070; /* Change this from animation to transition */
  /* Remove the animation property */
}
.f-panzoom__viewport>.f-panzoom__content{padding:80px}

.bp-area{display:flex;justify-content:center;gap: 30px;margin-top: 3rem;}
.bp-area > div{flex-basis: 24%;}
.bp-area p{line-height: 23px;font-size: 15px;text-align: justify;}
.dolo-logo {
    width: 240px;
    margin-bottom: 1rem;
}

.dolosonic-list img{object-position:  center !important;}
.news-box{height:460px;position: relative;}
.news-front,.news-back{height: 100%;padding: 2rem;position: absolute;width: 100%;top: 0;left: 0;display: flex;flex-direction: column;}
.news-listing{padding: 5rem 0;}
.news-back{opacity: 0;visibility: hidden;transition: all .3s ease-in-out;}
.news-box h3{font-size: 20px;color:#fff;font-family: var(--iv-reg);}
.news-box h4{font-size: 14px;color: #fff;margin: 1rem 0;}
.news-box a{color: #fff;text-transform: capitalize;display: block;margin-top: auto;}
.news-box::after{content: '';position: absolute;inset: 0;background: #00000075;z-index: -1;}
.news-box img{position: absolute;inset: 0;object-fit: cover;height: 100%;width: 100%;z-index: -1;}
.news-box:hover .news-back{opacity: 1;visibility: visible;}
.news-box:hover .news-front{opacity: 0;visibility: hidden;}
.news-box p{  display: -webkit-box;color: #fff;line-height: 23px;font-size: 15px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  overflow: hidden;}
.news-back{background: var(--pcolor);}
.news-header{display: flex;align-items: stretch;gap: 1rem;margin-bottom: 4rem;}
.news-header div:first-child{margin-left: auto;}
.news-header input{width: 95%;
    outline: none;
    border: none;
    font-size: 20px;}
.news-header select{border: none;font-size: 20px;text-transform: uppercase;color: #797979;cursor: pointer;}

.news-header > div{border: 1px  solid var(--pcolor);padding: 1rem 2rem ;}
.pagein{margin-top: 4rem;}
.pagein .pagination{justify-content: center;}
.page-link:hover{background: var(--pcolor);color: #fff;}
.page-link{color:var(--pcolor);font-weight: 400;}
.news-header button{outline: none;border: none;padding: 0;}
.form-area{padding:4rem 0 5rem}
.gallery{padding: 3rem 0 5rem;background: rgba(255, 229, 183, 0.41);}


 .gallery .swiper {
      width: 100%;
      height: 100%;
    }

    .gallery .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

   .gallery  .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

 

   .gallery .swiper {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

  .gallery  .swiper-slide {
      background-size: cover;
      background-position: center;
    }

.gallery    .mySwiper2 {
      height: 600px;
      width: 100%;
    }

  .gallery  .mySwiper {
      height: 150px;
      box-sizing: border-box;
      padding: 10px 0;
    }

  .gallery  .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
    }

 .gallery   .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

 .gallery   .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .t-slider{position: absolute;bottom: 0;z-index: 3;}

  .hotel-swiper:after{content:'';position: absolute;width: 100%;height: 200px;background-image: linear-gradient(to top , #000 , transparent);bottom: 0;z-index: 1;}
  .n-det-img img{width: 100%;object-fit: cover;aspect-ratio: 5/2;}
  
  .news-det h2{font-size: 25px;font-family: var(--iv-reg);margin: 1rem 0;}
  .news-det h3{font-size: 18px;color: gray;margin-bottom: 2rem;}
  .rel-article h3{font-size: 28px;margin-bottom: 2rem;}
  .rel-article ul{list-style-type: none;padding: 0;margin: 0;}
  .rel-article ul h3{font-size: 17px;margin-bottom: 10px;transition: all .3s ease-in-out;}
  .rel-article ul h4{font-size: 14px;color: gray;}
 .rel-article ul li{display: flex;gap: 10px;padding: 1rem 0;border-bottom: 1px solid #cdcd;}
 .rel-article ul li a{display: flex;gap: 10px;}
 .ico img{width: 100%;height: 100%;object-fit: cover;}
 .ico{flex-basis: 170px;}
 .rel-article ul li a:hover h3{color: var(--pcolor);}
 .article-area {
    display: flex
;
    gap: 20px;
   justify-content: center;
    align-items: center;
    
}

.btn-flex{display: flex;gap: 1rem;align-items: center;}
.btn-flex a{flex-shrink: 0;}


.article-logo {
    flex-basis: 90px;
    flex-shrink: 0;
}

.article-area h3{
      text-transform: capitalize;
    font-size: 16px;
    font-family: var(--iv-reg);
    color: #000;text-align: center;
}


.owl-theme .owl-nav [class*=owl-]:hover{background: transparent;}


.owl-theme .owl-nav{position: absolute;width: 100%;transform: translateY(-50%);top: 40%;}

.owl-prev{position: absolute;left: -45px;}
.owl-next{position: absolute;right: -45px;}


.product-list-portfolio {
    padding: 2.5rem 0 5rem;
    background:rgb(255 229 183 / 74%)
}


.light-bg{background: rgba(255, 229, 183, 0.41);}
.light-bg form .inp-grp input:focus+.label,.light-bg form .inp-grp input:not(:placeholder-shown)+.label{background: rgb(255 244 225);}


.light-bg form .inp-grp textarea:focus+.label,.light-bg form .inp-grp textarea:not(:placeholder-shown)+.label{background: rgb(255 244 225); }

.bullet-ul li{    color: rgba(85, 85, 85, 1);
    line-height: 30px;
    font-size: 16px;
    font-weight: 500;margin: 12px 0;}

    .bullet-ul{list-style: none;padding: 0;}