@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@200;300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #292763;
  --secondary-color: #f06027;
  --secondary-light-color: #fff3ef;
  --body-color: #101010;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: "Source Serif Pro", serif;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #000;
  border-radius: 10px;
  background: #dedede;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #0069bc, #2196F3);
}

body {
  color: #222222;
  font: 500 1rem "Inter", sans-serif;
  overflow-x: hidden;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.rounded{
  border-radius: 7px !important;
}

svg:not([fill]) {
  fill: currentColor;
}

.gap-row{
  row-gap: 30px;
}
.gap-form-row{
  row-gap: 10px;
}

.object-cover{
  object-fit: cover;
}

.responsive-grid{
  background-image: linear-gradient(0deg, transparent 24%, rgba(240,96,39, .1) 25%, rgba(240,96,39, .1) 26%, transparent 27%, transparent 74%, rgba(240,96,39, .1) 75%, rgba(240,96,39, .1) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(240,96,39, .1) 25%, rgba(240,96,39, .1) 26%, transparent 27%, transparent 74%, rgba(240,96,39, .1) 75%, rgba(240,96,39, .1) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
}

.wrapper{
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
}

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  padding:0 30px;
  z-index: 9999;
  transition:all 300ms ease-in-out;
}

.fixed-header-strip .header,
.header.fixed,
.header.notfixed,
.header:hover {
	background: #fff;
	box-shadow:0 0 10px rgba(0,0,0,0.50);
}

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

.icon-circular {
  width: 48px !important;
  height: 48px !important;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 35%);
  color: #fff;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.icon-circular.light {
  border-color: rgb(255 255 255 / 30%);
  color: #fff;
}

.icon-circular.bg-white {
  border-color: transparent;
  color: var(--secondary-color);
}

.icon-circular:hover {
  border-color: transparent;
  color: #fff;
  background-color: var(--secondary-color) !important;
}

.icon-circular-fixed {
  border-color: transparent;
  background-color: var(--secondary-color) !important;
}

i svg {
  width: 16px;
}
.logo {
	width:160px;
	height:auto;
	position: relative;
	min-height: 1px;
	transition:all 300ms ease-in-out;
}

.fixed-header-strip .header .logo,
.header.fixed .logo,
.header.notfixed .logo{
	width: 100px;
}

.logo img{
	height:auto;
	transition:all 300ms ease-in-out;
}

.logo .hover-logo{
  display: none;
}

.fixed-header-strip .header .logo img,
.header.fixed .logo img,
.header.notfixed .logo img,
.header:hover .logo img{
  display: none;
}

.fixed-header-strip .header .logo .hover-logo,
.header.fixed .logo .hover-logo,
.header.notfixed .logo .hover-logo,
.header:hover .logo .hover-logo{
  display: block;
}

.header .mainHeader .navi > ul{
	display:flex;
	align-items:center;
  column-gap: 10px;
	position:relative;
}

.header .mainHeader .navi > ul > li > a{
	color: #fff;
	padding:30px 12px;
  font-weight: 700;
  /* text-shadow: -1px 1px 0 var(--secondary-color); */
	display:flex;
	align-items:center;
	justify-content:center;
  column-gap: 5px;
	transition:all 300ms ease-in-out;
	position:relative;
	z-index:1;
}

.header .mainHeader .navi > ul > li:hover > a{
  color: var(--secondary-color);
}

.header .mainHeader .navi > ul > li > a::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
  width: 100%;
	height:100%;
  transform: scaleY(0);
  transform-origin: bottom;
	background-color: var(--primary-color);
	transition: transform 300ms ease-in-out;
  z-index: -1;
}

/* .header .mainHeader .navi > ul > li:hover > a::before{
  transform: scaleY(1);
  transform-origin: top;
} */

.header .mainHeader .navi > ul li a i{
	font-size:12px;
	transition:all 300ms ease-in-out;
}

.header .mainHeader .navi > ul li:hover > a i{
	transform:rotate(360deg);
  /* text-shadow: none !important; */
}

.header .mainHeader .navi ul li .dropdown{
  /* display: none; */
	position:absolute;
	width:100%;
	left:0;
	z-index:2;
	opacity:0;
	visibility:hidden;
	transform:translateY(30px);
	transition:all 300ms ease-in-out 280ms;
	pointer-events:none;
}

.header .mainHeader .navi ul li:hover .dropdown{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
	pointer-events:auto;
  transition-delay: 0ms;
}

.header .mainHeader .navi ul li .dropdown ul{
	width:100%;
	background-color: var(--secondary-color);
  padding: 2px;
	border-radius:10px;
	box-shadow:1rem 1rem 3rem rgba(0,0,0,0.16);
	position:relative;
  display: flex;
  flex-wrap: wrap;
}

.header .mainHeader .navi ul li .dropdown ul li{
  flex: 1 0 0;
}

.header .mainHeader .navi ul li .dropdown ul li a{
	display:block;
	color:var(--darkgray);
	padding:1.5rem 10px;
  border-radius: 7px;
	border-right:1px solid rgb(255 255 255 / 15%);
	transition:all 300ms ease;
	text-align:center;
	text-transform: uppercase;
  font-size: 12px;
}

.header .mainHeader .navi ul li .dropdown ul li:last-child a{
	border-right:none;
}

.header .mainHeader .navi ul li .dropdown ul li:hover a{
  background-color: var(--darkgray);
  color: #fff;
}

.header.fixed .navi ul li a,
.header:hover .navi ul li a {
  color: var(--darkgray);
}
.header.fixed .navi ul li a{
	font-size:13px;
	letter-spacing:normal;
	padding:15px 10px;
}

.menuBtn {
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.fixed-header-strip .header .menuBtn,
.header.fixed .menuBtn, .header.notfixed .menuBtn,
.header:hover .menuBtn {
  width: 30px;
  height: 30px;
}

.menuBtn .bar {
  width: 100%;
  height: 16px;
  border-top: 1px solid #fff;
  position: relative;
  transition: all 300ms ease-in-out;
}

.menuBtn .bar::before,
.menuBtn .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn .bar::before{
  top: calc(50% - 1px);
}
.menuBtn .bar::after {
  bottom: 0;
}
.fixed-header-strip .header .menuBtn .bar,
.header.fixed .menuBtn .bar,
.header:hover .menuBtn .bar{
  border-top-color: #000;
}
.header.notfixed .menuBtn .bar{
  border-top-color: transparent;
}

.fixed-header-strip .header .menuBtn .bar::before,
.fixed-header-strip .header .menuBtn .bar::after,
.header.fixed .menuBtn .bar::before,
.header.fixed .menuBtn .bar::after,
.header.notfixed .menuBtn .bar::before,
.header.notfixed .menuBtn .bar::after,
.header:hover .menuBtn .bar::before,
.header:hover .menuBtn .bar::after{
  background: #000;
}

.menuBtn.closeMenuBtn .bar::before {
  -webkit-transform: rotate(45deg) translate(1px, -1px);
  transform: rotate(45deg) translate(1px, -1px);
}

.menuBtn.closeMenuBtn .bar::after {
  -webkit-transform: rotate(-45deg) translate(6px, -4px);
  transform: rotate(-45deg) translate(6px, -4px);
}

.mbMenuContainer {
  position: fixed;
  inset: 0;
  background-color: var(--primary-color);
  padding: calc(2rem + 43px) 2rem 2rem;
  z-index: 99;
  display: none;
}

.mbMenuContainer .mbMenu {
  background-color: #fff;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 2rem;
  overflow: auto;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.mbMenuContainer .mbMenu ul {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mbMenuContainer .mbMenu ul li{
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu > ul:hover > li{
  opacity: 0.3;
}

.mbMenuContainer  .mbMenu > ul > li:hover{
  opacity: 1;
}

.mbMenuContainer .mbMenu > ul > li a {
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--darkgray);
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu li:hover > a,
.mbMenuContainer .mbMenu li a:focus {
  color: var(--primary-color);
  border: 1px solid rgb(0 0 0 / 10%);
  padding: 10px;
}

.mbMenuContainer .mbMenu > ul > li a i{
  font-size: 60%;
  color: var(--orange-color);
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu li:hover > a i,
.mbMenuContainer .mbMenu li a:focus i{
  transform: rotate(45deg);
}

.mbMenuContainer .mbMenu .dropdown{
  display: none;
}

.mbMenuContainer .mbMenu .dropdown ul{
  padding: 10px 10px 0;
  border: 1px solid rgb(0 0 0 / 10%);
}

.mbMenuContainer .mbMenu .dropdown li a{
  font-size: 1.25rem;
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mbMenuContainer .mbMenu .dropdown li:last-of-type a{
  border-bottom: 0;
}
/*header*/

.filter-white {
  -ms-filter: grayscale(1) brightness(70);
  filter: grayscale(1) brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

p {
  line-height: 1.5;
}

.padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container-fluid {
  padding-left: 4vw;
  padding-right: 4vw;
}

.sticky{
  position: fixed;
  right: 10px;
  bottom: 25px;
  z-index: 9;
  border-radius: 100px;
  padding: 1px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

.sticky.fixed{
  bottom: 55px;
}

.sticky i{
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.sticky > i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  background-color: var(--primary-color);
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.sticky .socialBtn{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
  position: absolute;
  padding-bottom: 10px;
  left: 0;
  bottom: 100%;
  width: 100%;
  pointer-events: none;
}

.sticky:hover .socialBtn{
  pointer-events: auto;
}

.sticky .socialBtn a{
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(10px * var(--i)));
  transition: all calc(150ms * var(--i)) ease-in-out;
}

.sticky:hover a{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

/* Home Banner */
#banner{
	height:100vh;
	position:relative;
	background-color: var(--primary-color);
	z-index:3;
}
#banner::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	/* background:linear-gradient(rgba(0, 0, 0, 0.25), rgba(0,0,0,0.0)); */
	/* z-index:1; */
}

.banner-video-box{
  /* background-color: var(--secondary-color);
  -webkit-mask: url(../images/logo-mask-t.png) left center / 100% no-repeat;
  mask: url(../images/logo-mask-t.png) left center / 100% no-repeat;
  animation: banner-video 3s infinite linear forwards; */

}

#banner .banner-video{
	height:100%;
	width:100%;
	object-fit:cover;
  /* opacity: 0.5; */
  /* mix-blend-mode: screen; */
  animation: banner-video 3s infinite linear forwards;
  -webkit-mask: url(../images/logo-mask-t.png) left center / 100% no-repeat;
  mask: url(../images/logo-mask-t.png) left center / 100% no-repeat;
}



@keyframes banner-video{
  0%{
    -webkit-mask: url(../images/logo-mask-d.png) left center / 100% no-repeat;
    mask: url(../images/logo-mask-t.png) left center / 100% no-repeat;
  }
  50%{
    -webkit-mask: url(../images/logo-mask-l.png) left center / 100% no-repeat;
    mask: url(../images/logo-mask-l.png) left center / 100% no-repeat;
  }
  100%{
    -webkit-mask: url(../images/logo-mask-d.png) left center / 100% no-repeat;
    mask: url(../images/logo-mask-d.png) left center / 100% no-repeat;
  }
}

#banner .carousel-inner, #banner .carousel-inner .carousel-item{
	position:relative;
	height:100%;
}

#banner .carousel-inner .carousel-item{
	background:center no-repeat #5a6d8f;
	background-size:cover;
	background-blend-mode: overlay;
	z-index:1;
}

#banner .carousel-inner .carousel-item::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.5);
	z-index:-1;
}

.carousel-item > div{
	display:flex;
	align-items:center;
	justify-content:center;
	height:100%;
	position:relative;
	z-index:1;
}

.bannerText{
	color:#fff;
}

.bannerText .h1{
	font-weight: 800;
  font-size: clamp(2.5rem, 3rem, 7rem);
  line-height: 1.1;
  text-transform: capitalize;
	margin-bottom:0px;
  color: var(--secondary-color);
}

.bannerText h3{
  font-size: clamp(1.125rem, 2rem, 4rem);
  letter-spacing: 2px;
}

.socialBtn{
  gap: 10px;
}
.socialBtn i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.socialBtn i.fa-facebook-f{
  background-color: var(--facebook);
}
.socialBtn i.fa-twitter{
  background-color: var(--twitter);
}
.socialBtn i.fa-linkedin-in{
  background-color: var(--linkedin);
}
.socialBtn i.fa-instagram{
  background-color: var(--instagram);
}
.socialBtn i.fa-youtube{
  background-color: var(--youtube);
}

/* stroke */
.socialBtn i.stroke{
  border: 1px solid;
}
.socialBtn i.stroke.fa-facebook-f{
  color: var(--facebook);
  background-color: transparent;
}
.socialBtn i.stroke.fa-x-twitter{
  color: var(--twitter);
  background-color: transparent;
}
.socialBtn i.stroke.fa-linkedin-in{
  color: var(--linkedin);
  background-color: transparent;
}
.socialBtn i.stroke.fa-instagram{
  color: var(--instagram);
  background-color: transparent;
}
.socialBtn i.stroke.fa-youtube{
  color: var(--youtube);
  background-color: transparent;
}
.socialBtn i.stroke.fa-whatsapp{
  color: var(--whatsapp);
  background-color: transparent;
}
.socialBtn i.stroke.fa-phone{
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
}
.socialBtn i.stroke.fa-tty{
  color: var(--youtube);
  background-color: transparent;
  border: 1px solid var(--youtube);
}
.socialBtn i.stroke.fa-envelope{
  color: var(--yellow);
  background-color: transparent;
  border: 1px solid var(--yellow);
}

.socialBtn i.stroke:hover{
  color: #fff;
}
.socialBtn i.stroke.fa-facebook-f:hover{
  background-color: var(--facebook);
}
.socialBtn i.stroke.fa-twitter:hover{
  background-color: var(--twitter);
}
.socialBtn i.stroke.fa-linkedin-in:hover{
  background-color: var(--linkedin);
}
.socialBtn i.stroke.fa-instagram:hover{
  background-color: var(--instagram);
}
.socialBtn i.stroke.fa-youtube:hover{
  background-color: var(--youtube);
}
.socialBtn i.stroke.fa-whatsapp:hover{
  background-color: var(--whatsapp);
}
.socialBtn i.stroke.fa-phone:hover{
  background-color: var(--primary-color);
}
.socialBtn i.stroke.fa-tty:hover{
  background-color: var(--youtube);
}
.socialBtn i.stroke.fa-envelope:hover{
  background-color: var(--yellow);
}

.scrollDown{
	position:absolute;
	left:4vw;
	bottom:20px;
	width:40px;
  opacity: 1;
	cursor:pointer;
	z-index:9;
  transition: opacity 200ms ease-in-out;
}
.scrollDown:hover{
  opacity: 1;
}
/* Home Banner */


.section-text {
  width: 100%;
  max-width: 600px;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.section-text section {
  transition: all 500ms ease-in-out;
}

.buildvilla-video video {
  width: 101%;
  display: block;
  pointer-events: none;
}

.cloud {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 39%;
  background: url(../images/cloud.png);
  animation: animateclouds 80s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes animateclouds {
  0% {
    background-position: 0px;
  }
  100% {
    background-position: -3000px;
  }
}

.section-text.video-text {
  max-width: 500px;
}

/* hm projects */
.hm-projects-container::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 50%);
  z-index: -1;
}
.hm-projectImg{
  position: absolute;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-filter: opacity(0.5);
  filter: opacity(0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.hm-projectImg img{
  object-position: left top;
}

.hm-projectBox .display-4 {
  font-weight: 100;
  margin-bottom: 2rem;
}

.hm-projectBox .hm-project-logo {
  width: 140px;
  margin-bottom: 1rem;
}

.hm-projectBox h4 {
  font-weight: 200;
  margin-bottom: 2rem;
}

.hm-projectBox .featured-icons{
  display: flex;
  flex-wrap: wrap;
}

.hm-projectBox .featured-icons li {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 10px;
}

.hm-projectBox .featured-icons li:not(:first-of-type){
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.hm-projectBox .featured-icons li .img-fluid {
  max-width: 30px;
  flex: 0 0 30px;
  color: var(--secondary-color);
}

.hm-projectBox .featured-icons li p {
  margin-bottom: 0;
  padding-left: 10px;
  font-weight: 400;
}

.hm-projectBox .featured-icons li p small {
  display: table;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .75rem;
}
/* hm projects */

/* icon boxes */
.iconBox .inner{
  height: 100%;
  padding: 2rem;
  border-radius: 7px;
  background-color: #fff;
  color: var(--gray);
  font-weight: 400;
  transition: all 300ms ease-in-out;
}
.iconBox .inner:hover{
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}

.iconBox .inner .img-fluid{
  max-width: 50px;
  margin-bottom: 20px;
  -webkit-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
  transition: filter 300ms ease-in-out;
}

.iconBox .inner:hover .img-fluid{
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
/* icon boxes */

/* Timeline */
.timelineWrapper {
  background-color: #000;
}
.timeline-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.25;
}

.journey-wrapper{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.journey-wrapper .journey-box{
  transition: all 300ms ease-in-out;
  width: 370px;
}

.journey-wrapper .journey-box .inner{
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  border-radius: 7px;
  text-align: center;
  background: url(../images/texture.png) rgb(255 255 255 / 60%);
  transition: all 300ms linear 50ms;
}

.journey-wrapper .swiper-slide-active.journey-box .inner{
  background-color: rgb(255 255 255 / 100%);
  align-items: center;
}

.journey-wrapper .journey-box .journey-year{
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 50%);
  font-weight: 300;
  color: var(--primary-color);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transform: translateY(4rem);
  transition: all 500ms linear 500ms;
}

.journey-wrapper .swiper-slide-active.journey-box .journey-year{
  background-color: #fff;
  transform: translateY(0);
}

.journey-wrapper .journey-box .journey-details{
  /* min-height: 214px; */
  font-size: 14px;
  padding: 1.125rem;
  border-radius: 7px;
  /* display: none; */
  opacity: 0;
  transition: all 300ms linear 500ms;
}

.journey-wrapper .swiper-slide-active.journey-box .journey-details{
  background-color: #fff;
  color: var(--gray);
  display: block;
  opacity: 1;
}

.journey-wrapper .journey-box .journey-details h5{
  color: var(--primary-color);
  margin-bottom: .5rem;
  font-weight: 300;
  text-transform: uppercase;
}
.journey-wrapper .journey-box .journey-details ul {
  height: 101px;
}

.journey-wrapper .journey-box .journey-details ul li:not(:last-of-type){
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.journey-wrapper .swiper-slide-active.journey-box .journey-details ul li:not(:last-of-type){
  border-bottom-color: rgb(0 0 0 / 10%);
}

.journey-slider div[class^="swiper-button"]{
  border-radius: 50%;
  background-color: #fff;
  color: var(--darkgray);
}

.journey-slider div[class^="swiper-button"]:hover{
  background-color: var(--primary-color);
  color: #fff;
}
/* Timeline */

/* Team wrapper */
.our-team {
  height: 100%;
  padding-bottom: 4rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border-radius: 7px;
}
.our-team:before{
  content: '';
  position: absolute;
  inset: 65px 0 0;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 7px;
  z-index: -1;
}

.our-team .picture {
  display: table;
  width: 90%;
  margin: 0 auto 2rem;
  z-index: 1;
  position: relative;
  transition: all 300ms ease-in-out;
}

.our-team:hover .picture {
  transform: scale(.95,.95);
}

.our-team .title {
  display: block;
  text-transform: capitalize;
}

.our-team .team-content{
  padding: 0 1rem;
}

.our-team .name{
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--primary-color);
}

.our-team .title{
  color: var(--gray);
  text-transform: uppercase;
  font-size: .75rem;
}

.our-team .knowmore {
  width: 100%;
  padding: .75rem 8px;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: .75rem;
  margin: 0;
  color: var(--primary-color);
  border: 1px solid rgb(0 0 0 / 10%);
  background-color: var(--light);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team .knowmore:hover {
  background-color: var(--primary-color);
  color: #fff;
}
/* team card */
.teamBtns a{
  gap: 1rem;
  color: var(--darkgray);
  font-weight: 700;
}
.teamBtns a:hover{
  background-color: rgb(11 158 231 / 8%);
  color: var(--primary-color);
}
/* Team wrapper */

/* managements */
.management-text{
  padding: 0 3rem;
  margin: 3rem 0;
  position: relative;
  isolation: isolate;
}
.management-text i{
  position: absolute;
  font-size: 7rem;
  opacity: 0.05;
  top: 0;
  line-height: 0;
  z-index: -1;
}
.management-text i.fa-quote-left{
  left: 0;
}
.management-text i.fa-quote-right{
  right: 0;
}
/* managements */

/* Testimonials */
.testimBox.swiper-slide{
  height: auto;
}
.testimBox .inner{
  height: 100%;
  background-color: #fff;
  color: var(--gray);
  font-weight: 400;
  border-radius: 7px;
  padding: 2rem;
}
.testimBox .inner .quotation-mark{
  font-size: 3rem;
  color: var(--gray);
}
.testimBox .inner .testim-name b{
  color: var(--primary-color);
  display: block;
}
.testimBox .inner .testim-name span{
  font-size: .75rem;
  text-transform: uppercase;
}
/* Testimonials */

/* news blogs */
.blogBox .inner .img-fluid{
  position: relative;
  z-index: 1;
}
.blogBox .inner .img-fluid img {
  height: 250px;
  object-fit: cover;
}
.blogBox .inner .date{
  padding: 5px 10px;
  border-radius: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid rgb(0 0 0 / 10%);
  font-size: 12px;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  display: table;
  transition: all 300ms ease-in-out;
}

.blogBox .inner article{
  padding: 2rem;
  background-color: var(--secondary-color);
  color: #fff;
  margin-top: 10px;
  background-blend-mode: color-burn;
}

.blogBox .inner h6{
  line-height: 1.4;
  font-weight: 600;
}
.blogBox .inner:hover h6{
  text-decoration: underline 1px var(--primary-color);
}
.blogBox .inner article small{
  color: rgb(255 255 255 / 60%);
  font-size: .75rem;
  text-transform: uppercase;
}
/* news blogs */

/* --------Project Page Starts-------- */


.section-imgs {
  background: center no-repeat #000;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.section-imgs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background-color: rgb(0 0 0 / 30%); */
  z-index: 1;
}

.lifestyle-text section {
  padding: 2rem;
  background-color: #fff;
  transition: all 500ms ease-in-out;
}

#lifestyle-text2 section {
  margin-top: 70px;
}

.villa-img {
  margin-top: 100px;
  transition: all 500ms ease-in-out;
}

#villa-img2 {
  margin-top: -300px;
}

.section-text-h6 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 30px;
}

.viewmore .button {
  margin-top: 40px;
  /* border: 1px solid var(--body-color); */
  background-color: transparent;
  outline: none;
  font-size: 24px;
  /* width: 40px; */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  transition: all 500ms ease-in-out;
}

.viewmore .button:hover {
  /* background-color: var(--primary-color); */
  color: #fff;
}

.showtext {
  background-color: #fff;
  display: none;
}

.stats {
  display: flex;
  justify-content: center;
}

.stats h2 {
  text-align: center;
  margin: 0 30px;
  color: #fff;
}

.stats h2 span {
  font-size: 4rem;
  font-weight: 300;
}

.stats h2 small {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

/* USP */
.uspCollage {
  margin-top: 3rem;
}

.uspCollage .row {
  margin-left: -5px;
  margin-right: -5px;
}

.uspCollage .row div[class^="col"] {
  padding: 5px;
}

.uspCollage .uspBox {
  height: 100%;
  background: center no-repeat;
  background-size: cover;
}

.uspCollage .uspBox#uspBox1 {
  height: 327px;
}

.uspCollage .uspBox#uspBox2 {
  height: 186px;
}

.uspCollage .uspBox#uspBox3,
.uspCollage .uspBox#uspBox4 {
  height: 224px;
}

.uspCollage .uspBox#uspBox5 {
  height: 200px;
}

.uspCollage .uspSlider,
.uspCollage .uspSlider .swiper-wrapper,
.uspSlider .swiper-slide,
.uspSlider .swiper-slide img {
  height: 100%;
}

.uspSlider .swiper-slide img {
  object-fit: cover;
}

.uspSlider .usp-title{
  background: var(--darkgray);
  padding: 5px 15px;
  height:25px;
  font-size: 12px;
  font-weight: 400;
}

.uspSlider .usp-title::after{
  right: -10px;
  border-top-width: 26px;
  border-left-width: 10px;
  border-left-color: var(--darkgray);
}

.uspSlider .swiper-cube-shadow {
  display: none;
}
/* -------- */
.inner-uspBox {
  padding: 2rem;
  background-color: #fff;
}
.inner-uspBox article {
  text-align: justify;
  position: relative;
}
.inner-uspBox article:not(:last-child) {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgb(0 0 0 / 6%);
}

.inner-uspBox article h4 {
  font-size: 28px;
  font-weight: 200;
  color: var(--brown);
  text-align: left;
  margin-bottom: 20px;
}
.inner-uspBox article p {
  margin-bottom: 0;
}
.inner-uspBox .clubhouse-stats h2{
  letter-spacing: 5px;
}
.inner-uspBox .clubhouse-stats h2 span{
  font-size: 4rem;
  font-weight: 300;
  color: var(--secondary-color);
}
.inner-uspBox .clubhouse-stats h5{
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 10px;
}
/* USP */

/* Gallery */
.gallery-slide {
  width: 70%;
}
.gallery-slide span, .uspSlider .usp-title {
  position: absolute;
  left: 0;
  bottom: 15px;
  padding: 10px 20px;
  height: 38px;
  background: var(--primary-color);
  z-index: 1;
  color: #fff;
  font-weight: 700;
}
.gallery-slide span::after, .uspSlider .usp-title::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -1px;
  border-top: 39px solid transparent;
  border-left: 19px solid var(--primary-color);
}
/* Gallery */



.fpDetailBox ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  color: var(--secondary-color);
  border-bottom: 1px solid rgb(255 255 255 / 50%);
}

.fpDetailBox ul li:last-child {
  border-bottom: none;
}

.fpDetailBox ul li .fpNumb {
  color: #fff;
}

.fpDownloadBtns .readmore {
  display: flex;
  align-items: center;
}

.fpTypeBtnContainer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.fpTypeBtnContainer button {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 600;
  padding: 0 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 300ms ease-in-out;
}

.fpTypeBtnContainer button:hover {
  color: rgb(255 255 255 / 70%);
}

.fpTypeBtnContainer button.active {
  color: var(--secondary-color);
  font-weight: 500;
}

.elem {
  position: absolute;
  width: 200px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
}
.elem.elem-bl {
  left: 0;
  bottom: 0;
}
.elem.elem-bl img {
  object-position: -80px 80px;
}
.elem.elem-br {
  right: 0;
  bottom: 0;
}
.elem.elem-br img {
  object-position: 80px 80px;
}

/* Hm Location */
.location-imgs {
  position: relative;
  z-index: 1;
}
.location-imgs .map-pointer {
  width: 80px;
  position: absolute;
  right: 21vw;
  top: 13vw;
  transform: translateY(-200px);
  opacity: 0;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.02, 0.25, 0, 1.18);
}
.location-imgs .map-pointer:hover {
  filter: hue-rotate(90deg);
}

.location-advantages {
  padding: 4rem;
  z-index: 2;
}

.connectivityWrapper {
  margin-top: 10px;
}

.connectivityWrapper .connectivitySlider {
  padding-bottom: 4rem;
}

.connectivityWrapper .connectivitySlider .connect-next,
.connectivityWrapper .connectivitySlider .connect-prev {
  top: auto;
  bottom: 0;
  margin-top: auto;
  width: auto;
  background: none;
  color: inherit;
  font-size: 34px;
}
.connectivityWrapper .connectivitySlider .connect-next:hover,
.connectivityWrapper .connectivitySlider .connect-prev:hover {
  color: var(--brown);
}

.connectivityWrapper .connectivitySlider .connect-next {
  right: 50%;
  margin-right: -45px;
}

.connectivityWrapper .connectivitySlider .connect-prev {
  left: 50%;
  margin-left: -45px;
}
.connectivityWrapper .connectivitySlider .connect-next::after,
.connectivityWrapper .connectivitySlider .connect-prev::after {
  display: none;
}

.connectivityBox {
  padding: 0 5px;
}

.connectivityBox section {
  padding: 20px 10px;
  display: flex;
  align-items: center;
  border: 1px solid rgb(0 0 0 / 12%);
  position: relative;
  overflow: hidden;
}

.connectivityBox section h2 {
  font: 400 3rem/1 "Source Serif Pro", serif;
  margin-bottom: 0;
  padding-right: 10px;
  margin-right: 10px;
  width: 45%;
  text-align: center;
  border-right: 1px solid rgb(0 0 0 / 12%);
}

.connectivityBox section h2 span {
  font-size: 14px;
  display: block;
}

.connectivityBox section .img-fluid {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 30px;
}

.connectivityBox section aside {
  text-align: left;
  padding-left: 10px;
}
/* Hm Location */
/* --------Project Page Ends-------- */

.statsWrapper{
  padding-top: 20px;
  border-top: 1px dashed rgb(255 255 255 / 15%);
}

.statBox .h3{
  margin-bottom: 0;
  font-weight: 700;
}

.statBox p{
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.bg-image{
	background:center no-repeat fixed;
	background-size:cover;
	position:relative;
	z-index:1;
}

.bg-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: -1;
}

.position-relative {
  z-index: 1;
}

/* customize swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgb(0 0 0 / 50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
}

.bottomControls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bottomControls{
  margin-top: 20px;
}

.bottomControls div[class^="swiper-"]{
  position: static;
  margin: 0 !important;
}

.bottomControls .swiper-pagination{
  width: 40px;
}

/* thumb pagination */
.swiper-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination-bullet{
  width: 60px;
  height: 20px;
  opacity: 1;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 300ms ease-in-out;
}
.swiper-pagination-bullet-active{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: transparent;
}
.swiper-pagination-bullet::before,
.swiper-pagination-bullet::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 300ms ease-in-out;
}
.swiper-pagination-bullet::before{
  width: 100%;
  border-bottom: 1px solid var(--primary-color);
  left: 0;
}
.swiper-pagination-bullet::after{
  height: 20px;
  width: 20px;
  border: 5px solid #d3d3d3;
  background-color: var(--primary-color);
  border-radius: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.swiper-pagination-bullet-active::after{
}

.swiper-pagination-bullet img{
  border-radius: 50%;
  opacity: 0;
  width: 140px;
  margin: 5px;
  border: 8px solid #d3d3d3;
  transition: all 300ms ease-in-out;
}
.swiper-pagination-bullet-active img{
  opacity: 1;
}
/* thumb pagination */
/* customize swiper */

.listContainer ul li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.5;
  color: #626262;
}

.listContainer ul li:not(:last-child){
  margin-bottom: 12px;
}

.listContainer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: url(../images/favicon.png) center no-repeat;
  background-size: contain;
}

.listContainer ul li a{
  color: inherit;
}
.listContainer.text-white ul li a{
  color: #fff;
}

.listContainer ul li a:hover{
  color: var(--primary-color);
}

.listContainer.sm ul li {
  padding-left: 20px;
  font-size: 13px;
  margin: 10px 0;
}
.listContainer.sm ul li::before {
  width: 10px;
  height: 10px;
  top: 4px;
}

.headingContainer{
  margin-bottom: 30px;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading .h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: capitalize;
}

.heading h3 {
  font-weight: 300;
  font-size: 2.25rem;
}

.heading.hasline::after {
  content: "";
  width: 70px;
  display: block;
  height: 2px;
  background: var(--primary-color);
}

.smallHeading{
  font-weight: 400;
  color: var(--primary-color);
}

.text-serif {
  font-family: var(--serif);
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-dark {
  background-color: var(--body-color) !important;
  color: #fff;
}
.bg-lightgray {
  background-color: #f7f5f1;
}
.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-secondary-light {
  background-color: var(--secondary-light-color) !important;
}

.container-md.bg-white{
  box-shadow: 0 0 0 2rem #fff;
}

.btnContainer{
  gap: 10px;
}

.readmore {
  width: 100%;
  margin-top: 2rem;
}

.readmore.d-flex {
  gap: 10px;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  padding: 10px 20px;
  min-width: 130px;
  max-width: max-content;
  overflow: hidden;
  color: #000;
  border: 1px solid rgb(0 0 0 / 50%);
  border-radius:  50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  transition: all ease-in-out 0.2s;
  background-color: transparent;
}

.readmore .button.button-lg {
  min-width: 180px;
  padding: 20px 30px;
}

.readmore .button::before{
  content: '';
  position: absolute;
  top: 100%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.readmore .button:hover::before{
  top: -50%;
}

.readmore .button.solid,
.readmore .button:hover {
  color: #fff;
  border-color: transparent;
}
.readmore .button.solid{
  background-color: var(--secondary-color);
}

.readmore .button.solid:hover{
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.readmore .button.white {
  border-color: rgb(255 255 255 / 30%);
  color: #fff;
}
.readmore .button.white::before {
  background-color: var(--secondary-color);
}
.readmore .button.white:hover {
  border-color: transparent;
  color: #fff;
}

.readmore .button.white.solid{
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.readmore .button.white.solid::before {
  background-color: var(--primary-color);
}
.readmore .button.white.solid:hover {
  border-color: transparent;
  color: var(--secondary-color);
  background-color: transparent;
}

.viewmore .button{
  color: var(--darkgray);
  font-weight: 400;
  transition: all 300ms ease-in-out;
}

.viewmore .button:hover{
  color: var(--gray);
}

.viewmore .button i{
  transition: transform 300ms ease-in-out;
}

.viewmore .button:hover i{
  transform: translateX(5px);
}

/* forms */
.form-control{
  border-radius: 40px;
}
.form-control:focus{
  box-shadow: none;
  border-color: var(--primary-color);
}
/* forms */


/*Footer*/
.footer-area {
  background-color: var(--primary-color);
  background-blend-mode: luminosity;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.footer-logo {
  width: 250px;
}

.footerlinks{
  display: flex;
  justify-content: space-between;
  border: solid #fff;
  border-width: 1px 0;
  margin-bottom: 3rem;
}

.footerlinks li a{
  display: block;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.footerlinks li a::before,
.footerlinks li a::after{
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s ease;
}

.footerlinks li a::before{
  bottom: 100%;
}
.footerlinks li a::after{
  top: 100%;
}

.footerlinks li a:hover::before,
.footerlinks li a:hover::after{
  transform: scaleX(1);
  transform-origin: left;
}

.footer-heading{
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-contact ul li{
  margin-bottom: 10px;
}

.footer-contact ul li a{
  display: inline-block;
  color: #fff;
  padding:5px 0;
  transition: all 300ms ease-in-out;
  border-bottom: 1px solid transparent;
}

.footer-contact ul li a:hover{
  border-bottom: 1px solid;
  color: rgb(255 255 255 / 70%) !important;
}

.footer-socials{
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.footer-socials a{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border: 1px solid #fff;
  margin-right: -1px;
  transition: all 300ms ease-in-out;
}

.footer-socials a:hover{
  z-index: 1;
  border-color: var(--secondary-color);
}

.footer-area .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
}

.footer-area .bottom p {
  color: #fff;
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 0;
}

.footer-area .bottom p img {
  width: 20px;
}

.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  right: 4vw;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 99;
}

.button-top:hover {
  background: var(--secondary-color);
}
/*Footer*/

/*transformation Animation*/

.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.scaleAnime {
  transform: scale(0,0);
  transition: all 1000ms linear;
}

.zoomIn {
  transform: scale(2,2);
  opacity: 0;
  transition: all 1000ms ease-in-out;
}

.doneScale {
  transform: scale(1,1) !important;
  opacity: 1;
}

/* -------------------------------------------------------------
contactSection
------------------------------------------------------------- */
 .contactSection{
  background-color: #f0602708 !important;
  padding: 5rem 0;
  border-radius: 0;
} 

.contactSection input{
  outline: none;
  border:none;
  border-bottom:1px solid rgba(0, 0, 0, 0.226);
  border-radius: 0;
}

.contactSection input:focus{
  border-bottom: 1px solid red;
}

.contactSection textarea{
  /* background-color: red; */
  outline: none;
  border:none;
  border-radius: 0;
  height: 150px;
  border-bottom:1px solid rgba(0, 0, 0, 0.226);
}


.contactSection textarea:focus{
  border-bottom: 1px solid red;
}

.contactSection select{
  border-radius: 0;
  outline: none;
  border:none;
  border-bottom:1px solid rgba(0, 0, 0, 0.226);
}

.contactSection select:focus{
  /* background-color: red; */
  outline: none;
  border:none;
}

.contactSection label {
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  /* color: red; */

}

.contactSection label i{
  color: rgba(255, 0, 0, 0.808);
  font-size: xx-small;
  text-align: center;
  margin-top: -5px;
  margin-left: 5px;
}


/*  */
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contactSection .info {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-right: 1px solid #e4000023;
  /* border: 1px solid #e4000048; */
  
}

.contactSection .info i {
  font-size: 24px;
  color: #e40000;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  max-width: 30px;
  flex: 0 0 30px;
  color: var(--secondary-color);
}

.contactSection .info p {
  margin-bottom: 0;
  padding-left: 35px;
  font-weight: 400;
}

.contactSection .info p small{
  display: table;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: .75rem;
}

.contactSection .info .email,
.contactSection .info .phone {
  margin-top: 40px;
}

.social_icon_box{
  margin-top: 25px;
  background-color: #fff;
  padding: 30px;
  border-right: 1px solid #e4000023;
  /* border: 1px solid #e4000048; */
}

.contactSection .social-links{
  display: flex;
  /* justify-content: flex-end; */
  /* margin-top: 1.5rem; */
  /* border: 1px solid red; */
  margin-top: 15px;
}

.contactSection .Social_icon_follow_heading{
  /* margin-top: 30px; */
  font-weight: 600;
  display: flex;
  /* justify-content: flex-end; */
}


.contactSection .social-links a{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f06027;
  font-size: 14px;
  border: 1px solid #f0602733;
  /* margin-right: -1px; */
  transition: all 300ms ease-in-out;
}

.contactSection .social-links a:hover{
  z-index: 1;
  border-color: var(--secondary-color);
}

/* ---------------------------------------
 buttonFormBtn
 --------------------------------------- */
 .buttonFormBtn {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  padding: 10px 20px;
  min-width: 130px;
  max-width: max-content;
  overflow: hidden;
  color: #000;
  border: 1px solid rgb(0 0 0 / 50%);
  border-radius:  50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  transition: all ease-in-out 0.2s;
  background-color: transparent;
  cursor: pointer;
}

 .buttonFormBtn.button-lg {
  min-width: 180px;
  padding: 20px 30px;
}

 .buttonFormBtn::before{
  content: '';
  position: absolute;
  top: 100%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

 .buttonFormBtn:hover::before{
  top: -50%;
}

 .buttonFormBtn.solid,
 .buttonFormBtn:hover {
  color: #fff;
  border-color: transparent;
}
 .buttonFormBtn.solid{
  background-color: var(--secondary-color);
}

 .buttonFormBtn.solid:hover{
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

 .buttonFormBtn.whiteFormBtn {
  border-color: rgb(240 96 39);
    color: #f06027;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}
 .buttonFormBtn.whiteFormBtn::before {
  background-color: var(--secondary-color);
}
 .buttonFormBtn.whiteFormBtn:hover {
  border-color: transparent;
  color: #fff;
}

 .buttonFormBtn.whiteFormBtn.solid{
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
 .buttonFormBtn.whiteFormBtn.solid::before {
  background-color: var(--primary-color);
}
 .butbuttonFormBtnton.whiteFormBtn.solid:hover {
  border-color: transparent;
  color: var(--secondary-color);
  background-color: transparent;
}

/* customize modal */
.modal-backdrop.show {
  display: none;
  opacity: 1;
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(5px);
}
.bd-example-modal-lg{
  z-index: 99999;
}

.modal-content {
  border-radius: 0;
  padding: 1rem;
  background-color: #fff;
}

.modal-body {
  padding: 1rem;
  border: 4px double rgb(0 0 0 / 50%);
}

.modal-logo {
  width: 180px;
  margin: 0 auto 2rem;
}

button.close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.modal-title {
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  font-weight: 500;
  border-bottom: 1px dashed rgb(0 0 0 / 30%);
}

/* customize modal */


/* news */
.newsBox .inner {
  color: inherit;
  display: block;
}

.newsBox .img-fluid {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.newsBox .img-fluid .badge {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 8px 10px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

.newsBox .img-fluid img {
  transition: all 1s linear;
}

.newsBox .inner:hover .img-fluid img {
  transform: scale(1.125, 1.125);
}

.newsBox .inner article h5 {
  font-size: 18px;
}

.newsBox .inner article h5:hover {
  text-decoration: underline;
}

.date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.date small:first-child {
  padding-right: 10px;
  border-right: 1px solid var(--primary-color);
}

/* news */

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
}

.breadcrumb li a,
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--body-color);
  font-weight: 600;
}

.breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb li.active {
  color: var(--primary-color);
}
/*transformation Animation*/
