* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}

.container {
  width: 100%;
  max-width: 1720px !important;
  padding: 0 2rem;
  margin: auto;
}
@media only screen and (max-width: 424px) {
  .container {
    padding: 0 1rem;
  }
}

ul {
  list-style: none;
  margin: 0;
}

a {
  text-decoration: none;
  color: currentColor;
}

.common-spacing {
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .common-spacing {
    padding: 2rem 0;
  }
}

.common-spacing-bottom {
  padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .common-spacing-bottom {
    padding-bottom: 2rem;
  }
}

.commonbtn {
  position: relative;
  padding: 1.125rem 1.875rem;
  background: #fff;
  border-radius: 5.625rem;
  color: #2a2a2a;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 500;
  overflow: hidden;
}
.commonbtn:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #2a2a2a;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  border-radius: 5rem;
  transition: all linear 0.3s;
}
.commonbtn:hover:before {
  width: 100%;
  height: 100%;
  background: #2e3192;
  left: 0;
  top: 0;
}
.commonbtn:hover span {
  color: #fff;
  padding: 0;
  padding-right: 1rem;
}
.commonbtn:hover span:before {
  display: block;
}
.commonbtn span {
  position: relative;
  transition: all linear 0.2s;
  padding-left: 0.5rem;
}
.commonbtn span:before {
  content: "";
  width: 0.75rem;
  height: 0.625rem;
  background: url(../images/arrow.svg) no-repeat;
  position: absolute;
  right: -0.25rem;
  bottom: 0.375rem;
  display: none;
}
@media only screen and (max-width: 1359px) {
  .commonbtn {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .commonbtn {
    font-size: 0.75rem;
  }
  .commonbtn:before {
    top: 1.375rem;
  }
  .commonbtn span:before {
    bottom: 0.25rem;
  }
}

.commonbtn-new {
  position: relative;
  padding: 1.125rem 1.875rem;
  background: #fff;
  border: 0.125rem solid #c7893f;
  border-radius: 5.625rem;
  color: #2a2a2a;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 500;
  overflow: hidden;
}
.commonbtn-new:hover {
  background: #a3238e;
  border-color: #a3238e;
}
.commonbtn-new:hover span {
  background: none;
  color: #fff;
  padding-left: 0;
  padding-right: 2rem;
  -webkit-text-fill-color: #fff;
}
.commonbtn-new:hover span:before {
  display: none;
}
.commonbtn-new:hover span:after {
  display: block;
}
.commonbtn-new span {
  transition: all linear 0.2s;
  position: relative;
  padding-left: 2rem;
  background: linear-gradient(90.05deg, #331d04 0.81%, #c7893f 20.64%, #d89b50 50.38%, #c7893f 80.13%, #331d04 99.96%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.commonbtn-new span:after {
  content: "";
  width: 0.75rem;
  height: 0.625rem;
  background: url(../images/arrow.svg) no-repeat;
  position: absolute;
  right: 0rem;
  bottom: 0.375rem;
  display: none;
}
.commonbtn-new span:before {
  content: "";
  width: 2.125rem;
  height: 2rem;
  background: url(../images/btnicon.png) no-repeat;
  position: absolute;
  left: -0.25rem;
  top: -0.325rem;
  transition: all linear 0.3s;
}
@media only screen and (max-width: 767px) {
  .commonbtn-new {
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
  }
}

.arrowbtn {
  width: 3.125rem;
  height: 3.125rem;
  background: #fff;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.arrowbtn:hover:before {
  display: none;
}
.arrowbtn:hover img {
  display: block !important;
}
.arrowbtn:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-width: 0.125rem 0.125rem 0 0;
  border-radius: 0.125rem;
  border-style: solid;
  border-color: #2e3192;
  transform: rotate(45deg);
  position: absolute;
  left: -0.5rem;
  right: 0;
  margin: auto;
  transition: all linear 0.1s;
}
.arrowbtn img {
  width: auto !important;
  display: none !important;
  transition: all linear 0.2s;
}

.iconbtn {
  border: 0.0625rem solid #a3238e;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  transition: all linear 0.3s;
}
.iconbtn span {
  position: relative;
  padding-left: 2.5rem;
  transition: all linear 0.3s;
}
.iconbtn span:before {
  content: "";
  width: 2.125rem;
  height: 2rem;
  background: url(../images/btnicon.png) no-repeat;
  position: absolute;
  left: 0;
  top: -0.325rem;
  transition: all linear 0.3s;
}
.iconbtn:hover span {
  padding-left: 0;
  padding-right: 2.5rem;
}
.iconbtn:hover span:before {
  left: 75%;
}

.heading {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90.05deg, #331d04 0.81%, #d89b50 49.39%, #331d04 99.96%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 120%;
}
.heading span {
  background: none;
  font-size: 1.375rem;
  color: #a3238e;
  display: block;
  -webkit-text-fill-color: #a3238e;
  line-height: 110%;
}
@media only screen and (max-width: 1359px) {
  .heading {
    font-size: 1.5rem;
  }
  .heading span {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .heading {
    font-size: 1.25rem;
  }
  .heading span {
    font-size: 0.875rem;
  }
}

.header {
  position: fixed;
  top: 1.375rem;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all linear 0.1s;
}
.header.fixed {
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
}
.header.fixed .headerbox {
  background: none;
  backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
}
.header .headerbox {
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header .mwnulisting {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .resp {
  display: flex;
  flex-direction: column;
  background: #a3238e;
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  gap: 4px;
  justify-content: center;
  border-radius: 0.25rem;
  align-items: center;
  position: relative;
  display: none;
}
.header .resp.active .line:nth-child(odd) {
  position: absolute;
  max-width: 60%;
  transform: rotate(-40deg);
}
.header .resp.active .line:nth-child(even) {
  position: absolute;
  max-width: 60%;
  transform: rotate(40deg);
}
.header .resp .line {
  display: flex;
  width: 90%;
  height: 2px;
  background: #fff;
  transition: all linear 0.3s;
}
.header .navlist {
  display: flex;
  justify-content: flex-end;
  gap: 1.75rem;
}
.header .navitem {
  font-size: 1.25rem;
  color: #2a2a2a;
  position: relative;
  padding: 1.75rem 0;
}
.header .navitem:hover .normaltext {
  transform: translateY(-100%);
}
.header .navitem:hover .hovertext {
  transform: translateY(-100%);
}
.header .navitem:hover .sub-menu {
  opacity: 1;
  display: block;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
}
.header .navitem a {
  position: relative;
  display: inline-block;
  height: auto;
  overflow: hidden;
  vertical-align: middle;
}
.header .navitem .normaltext {
  display: block;
  transition: transform 0.4s ease;
}
.header .navitem .hovertext {
  position: absolute;
  left: 0;
  top: 100%;
  color: #f26522;
  transition: transform 0.4s ease;
}
.header .search {
  max-width: 3.75rem;
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 0.125rem solid #2a2a2a;
}
.header .search img {
  width: 100%;
  display: block;
}
.header .logo {
  max-width: 10rem;
}
.header .logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header .sub-menu {
  position: absolute;
  min-width: 15rem;
  max-width: 15rem;
  left: 0;
  top: 5.45rem;
  padding: 1rem;
  border-radius: 0rem 0rem 1rem 1rem;
  opacity: 0;
  display: none;
  transition: all linear 0.3s;
}
.header .subnavitem {
  padding: 0.5rem 0;
  border-bottom: 0.0625rem solid #cccccc;
}
.header .subnavitem:hover {
  color: #f26522;
}
.header .subnavitem:last-child {
  border: 0;
}
@media only screen and (max-width: 1359px) {
  .header .navitem {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header .headerbox {
    padding: 0.75rem 1.5rem;
  }
  .header .resp {
    display: flex;
  }
  .header .search {
    padding-left: 1rem;
    margin-left: 1rem;
    max-width: 2.75rem;
  }
  .header .navitem {
    color: #fff;
    padding: 0;
  }
  .header .navitem:hover.menu-item-has-children .normaltext:before {
    transform: translateY(-50%) rotate(135deg);
  }
  .header .navitem.menu-item-has-children .normaltext {
    padding-right: 0.5rem;
    position: relative;
  }
  .header .navitem.menu-item-has-children .normaltext:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-width: 0.125rem 0.125rem 0 0;
    border-radius: 0.125rem;
    border-style: solid;
    border-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 0.1rem;
    top: 50%;
    transition: all linear 0.1s;
    transform: translateY(-50%) rotate(45deg);
  }
  .header .navitem a {
    min-width: 100%;
  }
  .header .navitem .hovertext {
    display: none;
  }
  .header .navitem:hover .sub-menu {
    display: block;
    background: transparent;
  }
  .header .navitem:hover .normaltext {
    transform: none;
  }
  .header .navlist {
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 7.5rem;
    background: #a3238e;
    padding: 1rem;
    gap: 0;
    width: 20rem;
    pointer-events: none;
    opacity: 0;
    transition: all linear 1s;
    max-height: calc(100vh - 3rem);
    overflow: auto;
  }
  .header .navlist.active {
    opacity: 1;
    pointer-events: initial;
  }
  .header .sub-menu {
    position: initial;
    opacity: 1;
    display: none;
    background: transparent;
    padding: 0;
    padding-left: 0.5rem;
  }
  .header .subnavitem {
    padding: 0;
    border: 0;
  }
  .header a {
    padding: 0.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    top: 0.5rem;
  }
  .header .logo {
    max-width: 8rem;
  }
  .header .headerbox {
    padding: 0.5rem 1rem;
  }
  .header .navlist {
    top: 5.75rem;
  }
}

.bannersec .bannercontent {
  position: relative;
  max-height: 100vh;
  overflow: hidden;
}
.bannersec .bannercontent:before {
  content: "";
  width: 100%;
  height: 10rem;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.bannersec .bannercontent .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: -0.75rem;
}
.bannersec .bannerimg img {
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  display: block;
}
.bannersec .banner-location {
  color: #fff;
  font-size: 2.5rem;
  font-size: 2rem;
  padding-bottom: 1rem;
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0.7;
  font-family: "Libre Bodoni", serif;
}
.bannersec .titletext {
  font-weight: 400;
  color: #ffffff;
  font-family: "Libre Bodoni", serif;
  font-size: 5rem;
  font-size: 3.5rem;
  line-height: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.bannersec .titletext span {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  border: 0.0625rem solid #a3238e;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a3238e;
}
.bannersec .titletext span img {
  max-width: 2.25rem;
  width: auto;
  display: block;
}
.bannersec .desctext {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.75rem;
  max-width: 32rem;
  line-height: 130%;
  display: flex;
  gap: 1rem;
}
.bannersec .desctext span {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6rem;
  border: 0.0625rem solid #fff;
}
.bannersec .desctext span img {
  width: auto;
}
.bannersec .btnsec {
  margin-top: 2rem;
}
@media only screen and (max-width: 1359px) {
  .bannersec .titletext {
    font-size: 3rem;
    line-height: 120%;
  }
  .bannersec .desctext {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1023px) {
  .bannersec .bannerimg img {
    max-height: none;
    min-height: 30rem;
  }
  .bannersec .titletext {
    font-size: 2rem;
  }
  .bannersec .bannercontent .container {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .bannersec .bannerimg img {
    min-height: 40rem;
    max-height: none;
  }
  .bannersec .titletext {
    font-size: 1.25rem;
    align-items: center;
  }
}

.aboutus {
  padding: 7rem 0 3rem;
}
.aboutus .mainbox {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.aboutus .headingwrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}
.aboutus .headingwrapper font {
  display: none;
}
.aboutus .headingwrapper .num {
  background: linear-gradient(90deg, #331d04 10.58%, #d89b50 44.54%, #331d04 100%);
  font-family: "Libre Bodoni", serif;
  font-size: 8.75rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aboutus .headingwrapper .heading {
  max-width: 37rem;
}
.aboutus .desc {
  color: #2a2a2a;
  font-size: 1.125rem;
  line-height: 130%;
  margin-top: 0.75rem;
}
.aboutus .desc p {
  margin-bottom: 0.5rem;
}
.aboutus .desc p:last-child {
  margin: 0;
}
.aboutus .left {
  width: 58%;
}
.aboutus .btnsec {
  margin-top: 3rem;
}
.aboutus .btnsec .commonbtn {
  border: 0.0625rem solid #2e3192;
}
.aboutus .right {
  width: 35%;
  position: relative;
}
.aboutus .right img {
  border-radius: 1rem;
  width: 100%;
  display: block;
}
.aboutus .right .year {
  position: absolute;
  left: 0;
  top: -8.5rem;
  font-size: 7.5rem;
  color: transparent;
  -webkit-text-stroke: 0.0625rem #a3238e;
  padding-left: 2.5rem;
  font-weight: 700;
}
.aboutus .right .year span {
  font-size: 2.125rem;
  color: #a3238e;
  font-weight: 500;
  position: absolute;
  left: 2.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-90deg);
}
@media only screen and (max-width: 1359px) {
  .aboutus .headingwrapper .num {
    font-size: 6rem;
  }
  .aboutus .desc {
    font-size: 1rem;
  }
  .aboutus .right .year {
    top: -6.5rem;
    font-size: 5.5rem;
  }
  .aboutus .right .year span {
    font-size: 1.675rem;
  }
}
@media only screen and (max-width: 1023px) {
  .aboutus .mainbox {
    flex-wrap: wrap;
    gap: 6.5rem;
  }
  .aboutus .left,
  .aboutus .right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .bannersec .titletext {
	font-size: 1.5rem;
  }
  .bannersec .banner-location {
	font-size: 1.2rem;
  }
  .aboutus {
    padding: 7rem 0 2rem;
  }
  .aboutus .mainbox {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .aboutus .left {
    width: 100%;
    order: 2;
  }
  .aboutus .right {
    width: 100%;
    order: 1;
  }
  .aboutus .btnsec {
    margin-top: 2rem;
  }
  .aboutus .headingwrapper .num {
    font-size: 3rem;
    line-height: 1;
  }
}

.milestone {
  padding: 5rem 0;
  position: relative;
  background: #f5f5f5;
}
.milestone .heading {
  text-align: center;
}
.milestone .bgimg {
  position: absolute;
  inset: 0;
  margin: auto;
}
.milestone .bgimg img,
.milestone .bgimg svg {
  width: 100%;
  display: block;
}
.milestone .container {
  position: relative;
}
.milestone .milestonelisting {
  margin-top: 12rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.milestone .icon {
  display: none;
  width: 5rem;
  height: 5rem;
  text-align: center;
  margin: auto;
}
.milestone .icon img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  display: block;
}
.milestone .title {
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 600;
}
.milestone .title span {
  font-size: 3.5rem;
  color: #a3238e;
  display: block;
  font-weight: 400;
}

.foundation {
  position: relative;
  max-height: calc(100vh - 2rem);
}
.foundation:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  bottom: 0;
}
.foundation:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/playicon.png) no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
.foundation .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  z-index: 1;
}
.foundation .bgvideo video {
  max-height: calc(100vh - 2rem);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.foundation .mainheading {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90.03deg, #ee8d1f 0.8%, #ffbf70 29.23%, #ee8d1f 76.62%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 600;
}
.foundation .titletext {
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  color: #fff;
  line-height: 110%;
  position: relative;
}
.foundation .titletext span {
  position: absolute;
  display: inline-block;
  top: -1rem;
  left: -1rem;
}
.foundation .desc {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  max-width: 30rem;
}
@media only screen and (max-width: 1359px) {
  .foundation .mainheading {
    font-size: 1.75rem;
  }
  .foundation .titletext {
    font-size: 1.5rem;
    max-width: 25rem;
  }
}
@media only screen and (max-width: 767px) {
  .foundation {
    background: rgba(0, 0, 0, 0.5);
    padding-bottom: 1rem;
  }
  .foundation:before {
    display: none;
  }
  .foundation:after {
    display: none;
  }
  .foundation .container {
    position: initial;
  }
  .foundation .titletext span {
    display: none;
  }
  .foundation .desctext {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.industries {
  padding: 5rem 0;
}
.industries .heading {
  max-width: 36rem;
}
.industries .upperbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .industries {
    padding: 2rem 0;
  }
  .industries .upperbox {
    flex-wrap: wrap;
    gap: 2.5rem;
  }
}

.industrieslisting {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.industrieslisting .item {
  text-align: center;
  padding: 1.25rem;
  border-width: 0rem 0.0625rem 0.0625rem 0rem;
  border-style: solid;
  border-color: #2a2a2a;
  background: #fff;
  transition: all linear 0.3s;
}
.industrieslisting .item:hover {
  background: #a3238e;
}
.industrieslisting .item:hover img {
  filter: brightness(0) invert(1);
}
.industrieslisting .item:hover .title {
  color: #fff;
}
.industrieslisting .item:nth-child(6n) {
  border-right: 0;
}
.industrieslisting .item:nth-last-child(-n+6) {
  border-bottom: 0;
}
.industrieslisting .title {
  font-size: 1.25rem;
  color: #2a2a2a;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 1359px) {
  .industrieslisting .title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1023px) {
  .industrieslisting .icon {
    max-width: 3.5rem;
    margin: auto;
  }
  .industrieslisting .icon img {
    width: 100%;
    display: block;
  }
  .industrieslisting .item {
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .industrieslisting {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }
  .industrieslisting .title {
    font-size: 1rem;
  }
  .industrieslisting .item {
    padding: 0.75rem;
    border-width: 0rem 0.0625rem 0.0625rem 0rem !important;
  }
  .industrieslisting .item:nth-child(even) {
    border-right: 0;
  }
  .industrieslisting .item:nth-last-child(-n+6) {
    border-bottom: 0.0625rem solid #2a2a2a;
  }
}

.project .upperbox {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.project .righttext {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 35rem;
}
.project .heading {
  max-width: 36.5rem;
}
.project .btnsec {
  margin-top: 1.5rem;
}
.project .title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.project .desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.project .item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}
.project .item:hover .desc {
  opacity: 1;
}
.project .item:hover:before {
  display: block;
}
.project .item img {
  display: block;
  width: 100%;
}
.project .item:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
  transition: all linear 0.1s;
}
.project .item .desc {
  width: 100%;
  padding: 1.875rem 1.375rem;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all linear 0.3s;
}
.project .projectslider {
  margin-top: 4rem;
}
.project .owl-nav {
  text-align: right;
  position: absolute;
  right: 4rem;
  bottom: -5rem;
  display: flex;
  gap: 1.25rem;
}
.project .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.project .owl-nav button:hover {
  opacity: 0.9;
}
.project .owl-nav button.owl-prev, .project .owl-nav button.owl-next {
  position: relative;
}
.project .owl-nav button.owl-prev span, .project .owl-nav button.owl-next span {
  display: none;
}
.project .owl-nav button.owl-prev:before, .project .owl-nav button.owl-next:before {
  content: "";
  width: 3.625rem;
  height: 3.625rem;
  background: url(../images/goldenarrow.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.project .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
@media only screen and (max-width: 1460px) {
  .project .projectslider {
    width: 100%;
    max-width: 1720px !important;
    margin: 3rem auto 0;
  }
  .project .projectslider img {
    width: 100%;
    display: block;
    max-height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media only screen and (max-width: 1359px) {
  .project .righttext {
    font-size: 1rem;
  }
  .project .title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .project .projectslider {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .project {
    padding: 1rem 0 5rem;
  }
  .project .upperbox {
    flex-wrap: wrap;
  }
  .project .projectslider {
    margin: 2rem auto 0;
    padding: 0 2rem;
  }
  .project .owl-nav {
    flex-direction: row;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    justify-content: center;
    bottom: -4rem;
  }
  .project .title {
    font-size: 1.25rem;
  }
}

.clients {
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(131, 131, 131, 0.1) 100%);
  position: relative;
}
.clients:before {
  content: "";
  width: 46.75rem;
  height: 29.3125rem;
  background: url(../images/layerbg.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
.clients .heading {
  max-width: 35rem;
}
.clients .clientslider {
  margin-top: 2rem;
}
.clients .item {
  width: 15rem;
  min-width: 15rem;
  max-width: 15rem;
  height: 7.4375rem;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 1rem;
  background: #fff;
}
.clients .item img {
  max-width: 12.5rem;
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 1499px) {
  .clients .item {
    width: auto;
    min-width: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .clients .item {
    width: auto;
    min-width: auto;
    max-width: none;
    height: 5rem;
    max-height: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .clients {
    padding: 2rem 0;
  }
  .clients .clientslider {
    margin-top: 1rem;
  }
}

.testimonial {
  padding: 5rem 0;
}
.testimonial .heading {
  max-width: 36rem;
}
.testimonial .testimonialslider {
  margin-top: 3rem;
}
.testimonial .innerbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}
.testimonial .left {
  min-width: 22rem;
  max-width: 22rem;
  border-radius: 1rem;
  overflow: hidden;
}
.testimonial .left img {
  width: 100%;
  display: block;
}
.testimonial .right {
  padding-left: 4rem;
  position: relative;
}
.testimonial .right:before {
  content: "";
  width: 3.5rem;
  height: 3rem;
  background: url(../images/quote-testi.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonial .icon {
  max-width: 2.625rem;
  margin-bottom: 1.25rem;
}
.testimonial .item {
  overflow: hidden;
  margin: 1rem;
}
.testimonial .desc {
  color: #2a2a2a;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial .name {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #f26522;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: flex-end;
}
.testimonial .org {
  color: rgba(35, 31, 32, 0.8);
  line-height: 130%;
  font-size: 1rem;
}
.testimonial .org span {
  display: block;
}
.testimonial .owl-nav {
  position: absolute;
  right: 0;
  top: -7rem;
  display: flex;
  gap: 1.25rem;
}
.testimonial .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.testimonial .owl-nav button:hover {
  opacity: 0.9;
}
.testimonial .owl-nav button.owl-prev, .testimonial .owl-nav button.owl-next {
  position: relative;
}
.testimonial .owl-nav button.owl-prev span, .testimonial .owl-nav button.owl-next span {
  display: none;
}
.testimonial .owl-nav button.owl-prev:before, .testimonial .owl-nav button.owl-next:before {
  content: "";
  width: 3.625rem;
  height: 3.625rem;
  background: url(../images/goldenarrow.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonial .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
@media only screen and (max-width: 1359px) {
  .testimonial .desc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .testimonial .left {
    max-width: 18rem;
    min-width: 18rem;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial {
    padding: 2rem 0;
  }
  .testimonial .testimonialslider {
    margin-top: 1rem;
  }
  .testimonial .name {
    min-height: auto;
    font-size: 1.125rem;
  }
  .testimonial .owl-nav {
    position: initial;
    justify-content: center;
  }
  .testimonial .innerbox {
    flex-wrap: wrap;
  }
  .testimonial .left {
    max-width: 100%;
    min-width: 100%;
  }
  .testimonial .right {
    width: 100%;
    padding: 0;
  }
  .testimonial .right:before {
    display: none;
  }
}

.newsmedia {
  padding-bottom: 5rem;
}
.newsmedia .heading {
  max-width: 36rem;
}
.newsmedia .upperbox {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.newsmedia .medialisting {
  margin-top: 3rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsmedia .mediaitem {
  width: 23.6%;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}
.newsmedia .mediaitem img {
  width: 100%;
  display: block;
}
.newsmedia .mediaitem:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180.29deg, rgba(0, 0, 0, 0) 54.43%, rgba(0, 0, 0, 0.423077) 65.09%, #000000 99.75%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.newsmedia .mediaitem:hover .title {
  height: auto;
  opacity: 1;
}
.newsmedia .desc {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.25rem 0.75rem;
  font-family: "Poppins", sans-serif;
}
.newsmedia .type {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}
.newsmedia .title {
  font-size: 1.125rem;
  color: #fff;
  margin-top: 0.25rem;
  transition: all ease-in 0.3s;
}
@media only screen and (max-width: 1199px) {
  .newsmedia .mediaitem {
    width: 48%;
  }
  .newsmedia .medialisting {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .newsmedia {
    padding: 2rem 0;
  }
  .newsmedia .medialisting {
    margin-top: 2rem;
  }
  .newsmedia .mediaitem {
    width: 100%;
  }
  .newsmedia .title {
    font-size: 1rem;
  }
}

.footer {
  background: url(../images/footerbg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  padding: 12rem 0rem 3rem;
}
.footer.active .maintext {
  top: -16rem;
}
.footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  position: absolute;
  left: 0;
  top: 0;
}
.footer .maintext {
  background: linear-gradient(180deg, #ffffff 0%, rgba(153, 153, 153, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.5rem;
  font-weight: 600;
  text-align: center;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  transition: all linear 0.3s;
}
.footer .innerbox {
  background: #fff;
  padding: 2.625rem 4.5rem 1.125rem;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
.footer .logo {
  max-width: 8.6875rem;
  margin: auto;
}
.footer .sosmedia {
  margin-top: 0.5rem;
}
.footer .bottom {
  padding-top: 1rem;
  margin-top: 1.25rem;
  border-top: 0.1rem solid rgba(35, 31, 32, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer .text {
  font-size: 0.9375rem;
  color: #2a2a2a;
  line-height: 130%;
  display: flex;
  justify-content: flex-start;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.footer .text a {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.footer .soslinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
.footer .upper {
  display: flex;
  justify-content: space-between;
  gap: 4.5rem;
}
.footer .title {
  font-size: 1.125rem;
  color: #a3238e;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.footer .address {
  max-width: 21rem;
}
.footer .addressitem {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.footer .addressitem .icon {
  max-width: 1.5rem;
}
.footer .menulinks {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  position: relative;
  min-width: 40%;
}
.footer .menulinks:before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -2rem;
  top: 0;
}
.footer .menulinks:after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.1098039216);
  position: absolute;
  right: -2rem;
  top: 0;
}
.footer .menulinks .smbox {
  max-width: 18rem;
}
@media only screen and (max-width: 1460px) {
  .footer.active .maintext {
    top: -42%;
  }
}
@media only screen and (max-width: 1359px) {
  .footer.active .maintext {
    top: -42%;
  }
  .footer .title {
    font-size: 1rem;
  }
  .footer .link,
  .footer .text {
    font-size: 0.875rem;
  }
  .footer .maintext {
    font-size: 4rem;
  }
  .footer .innerbox {
    padding: 2.625rem 1.5rem 1.125rem;
  }
  .footer .upper {
    gap: 3rem;
  }
  .footer .menulinks {
    gap: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .footer.active .maintext {
    top: -42%;
  }
  .footer .maintext {
    font-size: 3rem;
  }
  .footer .menulinks {
    display: none;
  }
  .footer .bottom {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 3rem 0;
  }
  .footer .bottom .text {
    justify-content: center;
    gap: 0.25rem;
  }
  .footer .maintext {
    font-size: 1.5rem;
  }
  .footer.active .maintext {
    top: 1rem;
    bottom: auto;
  }
  .footer .innerbox {
    padding: 1rem;
  }
  .footer .upper {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer .sosbox {
    width: 100%;
  }
  .footer .sosbox .text {
    justify-content: center;
  }
  .footer .address {
    max-width: none;
    width: 100%;
  }
}
@media only screen and (max-width: 424px) {
  .footer.active .maintext {
    top: 1rem;
  }
}

.pin-container {
  height: 300vh;
  background: #f5f5f5;
  position: relative;
}
.pin-container .heading {
  text-align: center;
}
.pin-container .svganimation {
  position: sticky;
  top: 6rem;
  width: 100%;
  height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pin-container .container {
  position: unset;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1921/520;
}
.pin-container .firstsvg,
.pin-container .clorsvg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pin-container .firstsvg svg,
.pin-container .clorsvg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pin-container .clorsvg {
  clip-path: inset(0 100% 0 0);
}
.pin-container .milestonelisting {
  margin-top: 18rem;
  display: flex;
  justify-content: center;
  gap: 12rem;
}
.pin-container .icon {
  display: none;
  width: 5rem;
  height: 5rem;
  text-align: center;
  margin: auto;
}
.pin-container .icon img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  display: block;
}
.pin-container .title {
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
}
.pin-container .title span {
  font-size: 3.5rem;
  color: #a3238e;
  display: block;
  font-weight: 400;
}
@media only screen and (max-width: 1599px) {
  .pin-container .milestonelisting {
    margin-top: 12rem;
    gap: 6rem;
  }
}
@media only screen and (max-width: 1359px) {
  .pin-container .title {
    font-size: 1rem;
  }
  .pin-container .title span {
    font-size: 2.5rem;
  }
  .pin-container .milestonelisting {
    gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .pin-container {
    height: auto;
    padding: 2rem 0;
  }
  .pin-container .container {
    aspect-ratio: initial;
  }
  .pin-container .firstsvg,
  .pin-container .clorsvg {
    display: none;
  }
  .pin-container .milestonelisting {
    margin-top: 2rem;
    gap: 1rem;
    flex-direction: column;
  }
  .pin-container .svganimation {
    position: initial;
    height: auto;
  }
  .pin-container .icon {
    display: block;
  }
  .pin-container .milestoneitem {
    padding: 1rem;
    border: 0.0675rem solid #2a2a2a;
    border-radius: 0.75rem;
    background: #fff;
  }
  .pin-container .title {
    font-weight: 400;
  }
  .pin-container .title span {
    font-size: 1.5rem;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.5) 100%);
  left: 0;
  bottom: 0;
}
.innerbanner img {
  width: 100%;
  display: block;
}
.innerbanner .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.25rem;
  margin: auto;
}
.innerbanner .innerbannnercontent {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.innerbanner .headingwrapper {
  max-width: 37rem;
}
.innerbanner .mainheading {
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}
.innerbanner .desc {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 120%;
  color: #fff;
}
@media only screen and (max-width: 1359px) {
  .innerbanner .mainheading {
    font-size: 2rem;
  }
  .innerbanner .desc {
    font-size: 1rem;
  }
  .innerbanner .container {
    bottom: 3rem;
  }
}
@media only screen and (max-width: 1199px) {
  .innerbanner img {
    min-height: 28rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media only screen and (max-width: 1023px) {
  .innerbanner .innerbannnercontent {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .innerbanner .mainheading {
    font-size: 1.25rem;
  }
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .breadcrumb {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.breadcrumb-item {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  padding-right: 3rem;
  position: relative;
  text-transform: capitalize;
}
.breadcrumb-item:before {
  content: "";
  width: 1.5625rem;
  height: 100%;
  background: url(../images/breadcrumbarrow.png) no-repeat;
  background-size: auto;
  background-position: center;
  position: absolute;
  right: 0.75rem;
  top: 0;
}
.breadcrumb-item.active {
  opacity: 0.8;
  padding: 0;
}
.breadcrumb-item.active:before {
  display: none;
}
@media only screen and (max-width: 1359px) {
  .breadcrumb-item {
    font-size: 1rem;
  }
}

.aboutgroup .mainbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6.25rem;
}
.aboutgroup .left {
  width: 30%;
  position: relative;
}
.aboutgroup .left img {
  border-radius: 1.5rem;
  width: 100%;
  display: block;
}
.aboutgroup .left .year {
  position: absolute;
  right: -4rem;
  bottom: 3rem;
  width: 13.875rem;
  height: 13.75rem;
  background: linear-gradient(90.05deg, #d89b50 0.81%, #995200 99.96%);
  border: 4px solid #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 1.25rem 0.75rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #fff;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutgroup .left .year span {
  font-size: 4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.aboutgroup .right {
  width: 65%;
}
.aboutgroup .desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
}
.aboutgroup .desc p {
  margin-bottom: 0.5rem;
}
.aboutgroup .desc p:last-child {
  margin: 0;
}
.aboutgroup .numtext {
  margin-top: 3rem;
}
.aboutgroup .numlisting {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.aboutgroup .numlisting .item {
  color: #2a2a2a;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 140%;
}
.aboutgroup .numlisting .item span {
  font-weight: 400;
  font-size: 3rem;
  color: #a3238e;
  display: block;
  margin-bottom: 1rem;
}
.aboutgroup .missionvision {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 3.125rem;
  flex-wrap: wrap;
}
.aboutgroup .missionvision .smbox {
  width: 48%;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 14.9px 0px rgba(0, 0, 0, 0.1215686275);
  background: linear-gradient(0deg, rgba(215, 153, 78, 0.1), rgba(215, 153, 78, 0.1));
}
.aboutgroup .missionvision .smbox:last-child {
  width: 100%;
}
@media only screen and (max-width: 1359px) {
  .aboutgroup .desc {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .aboutgroup .missionvision .smbox {
    width: 47%;
  }
  .aboutgroup .numlisting .item {
    font-size: 1rem;
  }
  .aboutgroup .numlisting .item span {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .aboutgroup .left .year {
    width: 12rem;
    height: 12rem;
    font-size: 1.125rem;
  }
  .aboutgroup .left .year span {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .aboutgroup .mainbox {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .aboutgroup .missionvision .smbox {
    width: 100%;
  }
  .aboutgroup .left {
    width: 100%;
  }
  .aboutgroup .left .year {
    right: 0;
    bottom: 0;
  }
  .aboutgroup .right {
    width: 100%;
  }
  .aboutgroup .missionvision {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .aboutgroup .smbox {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .aboutgroup .numtext {
    margin-top: 2rem;
  }
  .aboutgroup .numlisting {
    flex-wrap: wrap;
  }
  .aboutgroup .missionvision {
    margin-top: 2rem;
  }
  .aboutgroup .missionvision .smbox {
    padding: 1rem;
  }
}

.icontextfield {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.icontextfield .icon {
  max-width: 4.375rem;
  min-width: 4.375rem;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  border-right: 0.125rem solid #2a2a2a;
}
.icontextfield .icon img {
  width: 100%;
  display: block;
}
.icontextfield .title {
  font-weight: 300;
  font-size: 1.75rem;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90.06deg, #331d04 0.82%, #d89b50 13.91%, #331d04 27.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icontextfield .smdesc {
  color: #2a2a2a;
  font-weight: 400;
  font-size: 1.125rem;
}
@media only screen and (max-width: 1359px) {
  .icontextfield .smdesc {
    font-size: 1rem;
  }
  .icontextfield .title {
    font-size: 1.25rem;
  }
}

.managmentsec {
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(131, 131, 131, 0.1) 0%, rgba(131, 131, 131, 0.1) 100%);
  position: relative;
}
.managmentsec:before {
  content: "";
  width: 46.75rem;
  height: 29.3125rem;
  background: url(../images/layerbg.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.managmentsec .contentbox {
  max-width: 70%;
}
.managmentsec .heading {
  max-width: 36.5rem;
}
.managmentsec .desc {
  margin-top: 2rem;
  color: #2a2a2a;
  font-size: 1.125rem;
}
.managmentsec .desc p {
  margin-bottom: 0.5rem;
}
.managmentsec .desc p:last-child {
  margin: 0;
}
@media only screen and (max-width: 1359px) {
  .managmentsec .desc {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .managmentsec .contentbox {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .managmentsec {
    padding: 2rem 0;
  }
}

.ourteam .memberlist {
  padding-left: 2rem;
  margin-top: 3rem;
}
.ourteam .personimg {
  border-radius: 0.75rem;
  overflow: hidden;
}
.ourteam .detail {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #a3238e;
  font-weight: 400;
  line-height: 160%;
}
.ourteam .detail span {
  font-weight: 300;
  font-size: 1.75rem;
  background: linear-gradient(90.02deg, #331d04 0.79%, #d89b50 49.39%, #331d04 99.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.ourteam .owl-nav {
  position: absolute;
  right: 2rem;
  top: -7rem;
  display: flex;
  gap: 1.25rem;
}
.ourteam .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.ourteam .owl-nav button:hover {
  opacity: 0.9;
}
.ourteam .owl-nav button.owl-prev, .ourteam .owl-nav button.owl-next {
  border: 0.0625rem solid #a3238e;
  position: relative;
}
.ourteam .owl-nav button.owl-prev span, .ourteam .owl-nav button.owl-next span {
  display: none;
}
.ourteam .owl-nav button.owl-prev:before, .ourteam .owl-nav button.owl-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sliderarrow.png) no-repeat;
  background-position: center;
  background-size: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.ourteam .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
@media only screen and (max-width: 1359px) {
  .ourteam .detail {
    font-size: 1rem;
  }
  .ourteam .detail span {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .ourteam .memberlist {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ourteam .memberlist {
    margin-top: 2rem;
  }
  .ourteam .owl-nav {
    position: initial;
    margin-top: 1rem;
    justify-content: center;
  }
}

.responsiblity {
  background: linear-gradient(0deg, rgba(215, 154, 79, 0.1), rgba(215, 154, 79, 0.1));
}
.responsiblity .mainbox {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
.responsiblity .left {
  width: 38%;
}
.responsiblity .desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
}
.responsiblity .right {
  width: 58%;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.responsiblity .smbox {
  box-shadow: 0px 4px 14.9px 0px rgba(0, 0, 0, 0.1215686275);
  width: 47%;
  background: #fff;
  padding: 1.25rem 0.75rem;
  border-radius: 1rem;
  overflow: hidden;
}
.responsiblity .smbox .title {
  font-size: 1.25rem;
}
.responsiblity .smbox .smdesc {
  font-size: 1.125rem;
  line-height: 120%;
}
@media only screen and (max-width: 1359px) {
  .responsiblity .desc {
    margin-top: 1rem;
    font-size: 1rem;
    color: #2a2a2a;
  }
  .responsiblity .smbox .title {
    font-size: 1.125rem;
  }
  .responsiblity .smbox .smdesc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .responsiblity .mainbox {
    flex-wrap: wrap;
  }
  .responsiblity .left,
  .responsiblity .right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .responsiblity .smbox {
    width: 100%;
  }
}

.journey {
  position: relative;
}
.journey:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background: transparent;
  border-bottom: 0.125rem dashed #2a2a2a;
  position: absolute;
  left: 0;
  top: 21.125rem;
}
.journey .heading {
  max-width: 35rem;
}
.journey .journeylist {
  margin-top: 3rem;
}
.journey .year {
  font-size: 3rem;
  background: linear-gradient(90.07deg, #331d04 0.83%, #d89b50 69.16%, #331d04 140.29%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  padding-bottom: 4rem;
}
.journey .year:before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(131, 131, 131, 0.2509803922);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  margin: auto;
  border-radius: 2rem;
}
.journey .year:after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: #2a2a2a;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.625rem;
  margin: auto;
  border-radius: 2rem;
}
.journey .desc {
  text-align: center;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
}
.journey .owl-nav {
  position: absolute;
  right: 0;
  top: -7rem;
  display: flex;
  gap: 1.25rem;
}
.journey .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.journey .owl-nav button:hover {
  opacity: 0.9;
}
.journey .owl-nav button.owl-prev, .journey .owl-nav button.owl-next {
  border: 0.0625rem solid #a3238e;
  position: relative;
}
.journey .owl-nav button.owl-prev span, .journey .owl-nav button.owl-next span {
  display: none;
}
.journey .owl-nav button.owl-prev:before, .journey .owl-nav button.owl-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sliderarrow.png) no-repeat;
  background-position: center;
  background-size: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.journey .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
@media only screen and (max-width: 1359px) {
  .journey:before {
    top: 15.5rem;
  }
  .journey .desc {
    font-size: 1rem;
  }
  .journey .year {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .journey:before {
    top: 14.25rem;
  }
  .journey .owl-nav {
    position: initial;
    margin-top: 1rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 424px) {
  .journey:before {
    display: none;
  }
}

.ethics {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
}
.ethics:before {
  content: "";
  width: 60rem;
  height: 36.25rem;
  background: url(../images/ethicsimg.jpg) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.ethics:after {
  content: "";
  width: 54%;
  height: 36.25rem;
  background: #fbf5ee;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.ethics .container {
  position: relative;
  z-index: 1;
}
.ethics .ethicsslider {
  margin-top: 3rem;
  padding: 0 5rem;
}
.ethics .headingwrapper {
  max-width: 35rem;
  margin-left: auto;
  margin-right: 16rem;
}
.ethics .headingwrapper .desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: #2a2a2a;
  margin-top: 0.625rem;
}
.ethics .title {
  background: linear-gradient(90.06deg, #331d04 0.82%, #d89b50 23.37%, #331d04 46.85%);
  font-family: "Poppins", sans-serif;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 140%;
}
.ethics .text {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 130%;
}
.ethics .item {
  background: linear-gradient(0deg, #ffffff, #ffffff);
  box-shadow: 0px 6px 20px 0px rgba(255, 137, 0, 0.1019607843);
  border-radius: 1rem;
  padding: 1.5rem 0.875rem;
}
.ethics .owl-nav.disabled {
  display: block;
}
.ethics .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.ethics .owl-nav button:hover {
  opacity: 0.9;
}
.ethics .owl-nav button.owl-prev, .ethics .owl-nav button.owl-next {
  border: 0.0625rem solid #a3238e;
  position: relative;
}
.ethics .owl-nav button.owl-prev span, .ethics .owl-nav button.owl-next span {
  display: none;
}
.ethics .owl-nav button.owl-prev:before, .ethics .owl-nav button.owl-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sliderarrow.png) no-repeat, #fff;
  background-position: center;
  background-size: auto;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.ethics .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
  background: url(../images/sliderarrow.png) no-repeat, #fff;
  background-position: center;
  background-size: auto;
  border-radius: 5rem;
}
.ethics .owl-nav .owl-prev {
  position: absolute !important;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ethics .owl-nav .owl-next {
  position: absolute !important;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 1599px) {
  .ethics:after {
    width: 62%;
  }
}
@media only screen and (max-width: 1370px) {
  .ethics {
    padding: 6rem 0;
  }
  .ethics:after {
    width: 70%;
    height: 31rem;
  }
  .ethics .text {
    font-size: 1rem;
  }
  .ethics .title {
    font-size: 1.25rem;
  }
  .ethics .headingwrapper .desc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .ethics:after {
    width: 90%;
  }
}
@media only screen and (max-width: 1023px) {
  .ethics:after {
    width: 98%;
  }
}
@media only screen and (max-width: 767px) {
  .ethics .headingwrapper {
    margin: 0;
    max-width: none;
  }
  .ethics:after {
    height: 34rem;
    opacity: 0.9;
    width: 100%;
    border-radius: inherit;
  }
  .ethics .ethicsslider {
    margin-top: 1rem;
    padding: 0;
  }
  .ethics .owl-nav .owl-next,
  .ethics .owl-nav .owl-prev {
    top: auto;
    bottom: -5rem;
    left: 7rem;
  }
}

.ourquality .mainbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.ourquality .desc {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  margin-top: 2rem;
}
.ourquality .desc p {
  margin-bottom: 0.5rem;
}
.ourquality .desc p:last-child {
  margin: 0;
}
.ourquality .left {
  width: 55%;
}
.ourquality .right {
  width: 40%;
  position: relative;
}
.ourquality .right img {
  width: 100%;
  display: block;
}
.ourquality .smimg {
  position: absolute;
  left: 0;
  bottom: -7rem;
  max-width: 21rem;
  border-radius: 1rem;
  overflow: hidden;
}
.ourquality .bigimg {
  max-width: 30rem;
  margin-left: auto;
  border-radius: 1.5rem;
  overflow: hidden;
}
.ourquality .certification {
  margin-top: 2.5rem;
}
.ourquality .certification ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ourquality .certification img {
  width: auto;
  display: block;
}
.ourquality .title {
  margin-bottom: 1rem;
  font-size: 2rem;
  background: linear-gradient(90.05deg, #331d04 0.81%, #d89b50 49.39%, #331d04 99.96%);
  font-weight: 300;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1359px) {
  .ourquality .desc {
    font-size: 1rem;
  }
  .ourquality .title {
    font-size: 1.25rem;
  }
  .ourquality .smimg {
    max-width: 15rem;
    bottom: -5rem;
  }
  .ourquality .bigimg {
    max-width: 20rem;
  }
}
@media only screen and (max-width: 1023px) {
  .ourquality.common-spacing {
    padding: 5rem 0 0;
  }
  .ourquality .mainbox {
    flex-wrap: wrap;
  }
  .ourquality .left {
    width: 100%;
    order: 2;
  }
  .ourquality .right {
    width: 70%;
    order: 1;
  }
  .ourquality .bigimg {
    max-width: 100%;
    margin: auto;
  }
  .ourquality .smimg {
    display: none;
  }
  .ourquality .desc {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 599px) {
  .ourquality .right {
    width: 100%;
    order: 1;
  }
}

.safty .innerbox {
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  background: rgba(215, 154, 79, 0.1019607843);
}
.safty .left {
  padding: 3.5rem;
  width: 30%;
  background: url(../images/saftybg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.safty .right {
  width: 70%;
  padding: 3.5rem;
}
.safty .maintext {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 120%;
}
.safty .brief {
  font-size: 1.125rem;
  color: #fff;
  margin-top: 1rem;
}
.safty .tagline {
  margin-top: 6rem;
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
}
.safty .saftylist {
  display: flex;
  justify-content: center;
  gap: 3.875rem;
  flex-wrap: wrap;
}
.safty .saftyitem {
  width: 46%;
}
.safty .upper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.safty .icon {
  width: 3.75rem;
  min-width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbf5ee;
  border-radius: 0.75rem;
}
.safty .title {
  color: #2a2a2a;
  font-size: 2rem;
  font-weight: 300;
}
.safty .desc {
  color: #2a2a2a;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  line-height: 130%;
}
.safty .numdata {
  margin-top: 3rem;
}
.safty .numdata ul {
  display: flex;
  justify-content: flex-start;
  gap: 5rem;
}
.safty .numdata ul li {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 600;
  line-height: 160%;
}
.safty .numdata ul li span {
  color: #a3238e;
  font-size: 3.5rem;
  display: block;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1359px) {
  .safty .saftyitem {
    width: 45%;
  }
  .safty .title {
    font-size: 1.25rem;
  }
  .safty .desc {
    font-size: 1rem;
  }
  .safty .maintext {
    font-size: 2.5rem;
  }
  .safty .brief {
    font-size: 1rem;
  }
  .safty .tagline {
    font-size: 1.25rem;
  }
  .safty .numdata ul li {
    font-size: 1rem;
  }
  .safty .numdata ul li span {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .safty .saftylist {
    gap: 2rem;
  }
  .safty .numdata ul li {
    font-size: 1rem;
  }
  .safty .numdata ul li span {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .safty .innerbox {
    flex-wrap: wrap;
  }
  .safty .left,
  .safty .right {
    width: 100%;
  }
  .safty .tagline {
    margin-top: 1rem;
  }
  .safty .right {
    padding: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .safty .left {
    padding: 1rem;
  }
  .safty .maintext {
    font-size: 1.5rem;
  }
  .safty .saftyitem {
    width: 100%;
  }
  .safty .numdata ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .safty .numdata ul li {
    width: auto;
    font-size: 1rem;
  }
  .safty .numdata ul li span {
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
}

.enviourment .enviourmentlist {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.enviourment .item {
  width: 31%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #f5f5f5;
}
.enviourment .item img {
  width: 100%;
  display: block;
}
.enviourment .detail {
  margin-top: 1rem;
  color: #232325;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 130%;
  padding: 1rem;
}
.enviourment .detail span {
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
  font-size: 1.75rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1359px) {
  .enviourment .detail {
    font-size: 1rem;
  }
  .enviourment .detail span {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .enviourment .enviourmentlist {
    justify-content: flex-start;
  }
  .enviourment .item {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .enviourment .enviourmentlist {
    justify-content: center;
    margin-top: 1.5rem;
  }
  .enviourment .item {
    width: 100%;
  }
}

.clientsec .clientsliderrtl {
  margin-bottom: 2rem;
}
.clientsec .clientsliderrtl,
.clientsec .clientsliderltr {
  position: relative;
}
.clientsec .clientsliderrtl:before,
.clientsec .clientsliderltr:before {
  content: "";
  width: 12rem;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgba(237, 221, 83, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.clientsec .clientsliderrtl:after,
.clientsec .clientsliderltr:after {
  content: "";
  width: 12rem;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgba(237, 221, 83, 0) 100%);
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(-1);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .clientsec .clientsliderrtl:before, .clientsec .clientsliderrtl:after,
  .clientsec .clientsliderltr:before,
  .clientsec .clientsliderltr:after {
    width: 3rem;
  }
}

.ourtestimonial .testimonialclient {
  margin-top: 3rem;
}
.ourtestimonial .innerbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.ourtestimonial .desc {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.ourtestimonial .person {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
}
.ourtestimonial .person span {
  display: block;
  color: #f26522;
  font-size: 1.75rem;
  font-weight: 300;
}
.ourtestimonial .imgsec {
  width: 45%;
}
.ourtestimonial .details {
  padding-top: 6rem;
  width: 40%;
  position: relative;
}
.ourtestimonial .details:before {
  content: "";
  width: 5.5rem;
  height: 4.6875rem;
  background: url(../images/commaclient.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.ourtestimonial .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ourtestimonial .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.ourtestimonial .owl-nav button:hover {
  opacity: 0.9;
}
.ourtestimonial .owl-nav button.owl-prev, .ourtestimonial .owl-nav button.owl-next {
  border: 0.0625rem solid #a3238e;
  position: relative;
}
.ourtestimonial .owl-nav button.owl-prev span, .ourtestimonial .owl-nav button.owl-next span {
  display: none;
}
.ourtestimonial .owl-nav button.owl-prev:before, .ourtestimonial .owl-nav button.owl-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sliderarrow.png) no-repeat;
  background-position: center;
  background-size: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.ourtestimonial .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
@media only screen and (max-width: 767px) {
  .ourtestimonial .innerbox {
    flex-wrap: wrap;
  }
  .ourtestimonial .imgsec,
  .ourtestimonial .details {
    width: 100%;
  }
  .ourtestimonial .desc {
    font-size: 1rem;
  }
  .ourtestimonial .person {
    font-size: 1rem;
  }
  .ourtestimonial .person span {
    font-size: 1.25rem;
  }
  .ourtestimonial .testimonialclient {
    margin-top: 1.5rem;
  }
  .ourtestimonial .owl-nav {
    justify-content: center;
    flex-direction: row;
    position: initial;
  }
}

.backbtn {
  padding: 0.5rem 1.25rem;
  background: #a3238e;
  border-radius: 0.625rem;
  color: #fff;
}
.backbtn:hover span:before {
  left: -0.25rem;
}
.backbtn span {
  position: relative;
  padding-left: 1.25rem;
}
.backbtn span:before {
  content: "";
  width: 0.75rem;
  height: 100%;
  background: url(../images/arrow.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(-1);
  background-position: center;
  background-size: auto;
  transition: all linear 0.2s;
}

.labourimgsec .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.labourimgsec .desc {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  max-width: 96%;
  margin: 2rem auto 0;
}
.labourimgsec .desc p {
  margin-bottom: 0.5rem;
}
.labourimgsec .desc p:last-child {
  margin: 0;
}
.labourimgsec .imgsec {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.labourimgsec .smbox {
  border-radius: 1.25rem;
  overflow: hidden;
}
.labourimgsec .smbox img {
  width: 100%;
  display: block;
  min-height: 22rem;
  max-height: 22rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.labourimgsec .smbox:nth-child(6n+3) {
  grid-column: 3/span 2;
}
.labourimgsec .smbox:nth-child(6n+4) {
  grid-column: 1/span 2;
}
@media only screen and (max-width: 1359px) {
  .labourimgsec .desc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .labourimgsec .upper {
    flex-direction: column;
    align-items: flex-start;
  }
  .labourimgsec .desc {
    max-width: 100%;
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }
  .labourimgsec .imgsec {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .labourimgsec .smbox img {
    min-height: 18rem;
    max-height: 18rem;
  }
  .labourimgsec .smbox:nth-child(6n+3), .labourimgsec .smbox:nth-child(6n+4) {
    grid-column: auto;
  }
}
@media only screen and (max-width: 767px) {
  .labourimgsec .upper {
    gap: 0.75rem;
  }
  .labourimgsec .desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
  }
  .labourimgsec .imgsec {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .labourimgsec .smbox {
    border-radius: 1rem;
  }
  .labourimgsec .smbox img {
    min-height: auto;
    max-height: 16rem;
  }
}

.letconnect {
  position: relative;
}
.letconnect:before {
  content: "";
  width: 100%;
  height: 72%;
  background: rgba(215, 154, 79, 0.1019607843);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.letconnect .headingwrapper .desc {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  margin-top: 0.5rem;
}
.letconnect .innerbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.letconnect .imgsec {
  width: 35%;
  position: relative;
}
.letconnect .imgsec img {
  width: 100%;
  display: block;
}
.letconnect .bigimg {
  max-width: 30rem;
  margin-left: auto;
  border-radius: 1.5rem;
  overflow: hidden;
}
.letconnect .smimg {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  max-width: 21rem;
  border-radius: 1rem;
  overflow: hidden;
}
.letconnect .detailsec {
  width: 55%;
}
.letconnect .contactlist {
  margin-top: 2rem;
}
.letconnect .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.letconnect .item:last-child {
  margin: 0;
}
.letconnect .icon {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid rgba(42, 42, 42, 0.5019607843);
  background: #fff;
  border-radius: 0.75rem;
}
.letconnect .icon img {
  width: auto;
  display: block;
}
.letconnect .title {
  color: #101828;
  font-size: 1.125rem;
  font-weight: 400;
}
.letconnect .title span {
  display: block;
  background: linear-gradient(90.05deg, #331d04 0.81%, #d89b50 49.39%, #331d04 99.96%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.letconnect .smtitle {
  color: #2a2a2a;
  font-weight: 300;
  font-size: 1.75rem;
}
.letconnect .followus {
  margin-top: 3rem;
}
.letconnect .followus ul {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media only screen and (max-width: 1359px) {
  .letconnect .headingwrapper .desc {
    font-size: 1rem;
  }
  .letconnect .title {
    font-size: 1rem;
  }
  .letconnect .smtitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  .letconnect .smimg {
    max-width: 12rem;
  }
}
@media only screen and (max-width: 1023px) {
  .letconnect:before {
    height: 82%;
  }
  .letconnect .innerbox {
    flex-wrap: wrap;
  }
  .letconnect .imgsec,
  .letconnect .detailsec {
    width: 100%;
  }
  .letconnect .bigimg {
    max-width: 24rem;
    margin: auto;
  }
  .letconnect .smimg {
    right: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .letconnect .contactlist {
    margin-top: 1rem;
  }
  .letconnect:before {
    height: 98%;
  }
  .letconnect .followus {
    margin-top: 1.5rem;
  }
}

.formsec .mainbox {
  margin-left: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.formsec .left {
  width: 50%;
}
.formsec .formdata {
  margin-top: 2rem;
}
.formsec .desc {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 1rem 0;
}
.formsec .btnsec {
  margin-top: 2rem;
}
.formsec .right {
  width: 45%;
}
.formsec .right .mapbox {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  overflow: hidden;
  border: 0.0625rem solid #2a2a2a;
}
.formsec .right iframe {
  min-height: 28rem;
  width: 100%;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .formsec .mainbox {
    flex-wrap: wrap;
    margin: 0;
  }
  .formsec .left,
  .formsec .right {
    width: 100%;
  }
  .formsec .mapbox {
    border-radius: 0.75rem;
  }
}
@media only screen and (max-width: 1023px) {
  .formsec .btnsec {
    margin-top: 1rem;
  }
}

.careeroverview .mainbox {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.careeroverview .left {
  width: 40%;
  position: relative;
}
.careeroverview .left img {
  width: 100%;
  display: block;
}
.careeroverview .bigimg {
  max-width: 26.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.careeroverview .smimg {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  max-width: 23rem;
  border-radius: 1rem;
  overflow: hidden;
}
.careeroverview .right {
  width: 55%;
}
.careeroverview .right .heading {
  max-width: 44rem;
}
.careeroverview .desc {
  margin-top: 2rem;
  color: #2a2a2a;
  font-size: 1.125rem;
}
.careeroverview .desc a {
  background: linear-gradient(90.05deg, #331d04 0.81%, #d89b50 49.39%, #331d04 99.96%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
  font-weight: 400;
}
.careeroverview .numtext {
  margin-top: 3rem;
}
.careeroverview .numlisting {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.careeroverview .numlisting .item {
  color: #2a2a2a;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 140%;
}
.careeroverview .numlisting .item span {
  font-weight: 400;
  font-size: 3.5rem;
  color: #a3238e;
  display: block;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1359px) {
  .careeroverview .desc {
    font-size: 1rem;
  }
  .careeroverview .desc a {
    font-size: 1rem;
  }
  .careeroverview .numlisting .item {
    font-size: 1rem;
  }
  .careeroverview .numlisting .item span {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .careeroverview .smimg {
    max-width: 12rem;
  }
}
@media only screen and (max-width: 1023px) {
  .careeroverview .mainbox {
    flex-wrap: wrap;
  }
  .careeroverview .left,
  .careeroverview .right {
    width: 100%;
  }
  .careeroverview .bigimg {
    max-width: 24rem;
    margin: auto;
  }
  .careeroverview .smimg {
    right: 0;
    bottom: 0;
  }
  .careeroverview .desc {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .careeroverview .numtext {
    margin-top: 1rem;
  }
  .careeroverview .numlisting {
    flex-wrap: wrap;
  }
  .careeroverview .numlisting .item {
    width: 100%;
  }
}

.currentopening {
  background: linear-gradient(180deg, rgba(131, 131, 131, 0.1) 0%, rgba(131, 131, 131, 0.1) 100%);
  overflow: hidden;
  position: relative;
}
.currentopening:before {
  content: "";
  width: 46.75rem;
  height: 29.3125rem;
  background: url(../images/layerbg.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
.currentopening .heading {
  max-width: 46rem;
}
.currentopening .jobslider {
  max-width: 80%;
  margin-top: 2rem;
}
.currentopening .item {
  border-radius: 0.75rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: #ffffff;
  padding: 1.5rem;
  margin: 1rem;
}
.currentopening .no-openings {
  font-size: 1.125rem;
  margin-top: 1rem;
}
.currentopening .title {
  font-size: 1.75rem;
  color: #f26522;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}
.currentopening .jobdesc {
  color: #101828;
  font-size: 1.125rem;
  margin: 1rem 0;
}
.currentopening .detailitem {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
}
.currentopening .text {
  font-size: 1.25rem;
  color: #666666;
}
.currentopening .detail {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.currentopening .icon {
  width: 1.5rem;
  min-width: 1.5rem;
}
.currentopening .icon img {
  width: 100%;
  display: block;
}
.currentopening .btnsec {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.currentopening .btnsec .commonbtn {
  border: 1px solid #2e3192;
}
.currentopening .owl-nav {
  position: absolute;
  right: 0;
  top: -6rem;
  display: flex;
  gap: 1.25rem;
}
.currentopening .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.currentopening .owl-nav button:hover {
  opacity: 0.9;
}
.currentopening .owl-nav button.owl-prev, .currentopening .owl-nav button.owl-next {
  border: 0.0625rem solid #a3238e;
  background: #fff;
  position: relative;
}
.currentopening .owl-nav button.owl-prev span, .currentopening .owl-nav button.owl-next span {
  display: none;
}
.currentopening .owl-nav button.owl-prev:before, .currentopening .owl-nav button.owl-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sliderarrow.png) no-repeat;
  background-position: center;
  background-size: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.currentopening .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
@media only screen and (max-width: 1359px) {
  .currentopening .jobdesc {
    font-size: 1rem;
  }
  .currentopening .text {
    font-size: 1rem;
  }
  .currentopening .detail {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1199px) {
  .currentopening .jobslider {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .currentopening .jobslider {
    margin-top: 1rem;
  }
  .currentopening .owl-nav {
    position: initial;
    margin-top: 1rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .currentopening .item {
    padding: 0.75rem;
  }
  .currentopening .title {
    font-size: 1.25rem;
  }
}

.fromitems {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}
.fromitems .item {
  width: 48%;
}
.fromitems .item input,
.fromitems .item textarea,
.fromitems .item select {
  font-size: 1rem;
  color: #2a2a2a;
  padding: 1.125rem 1.5rem;
  width: 100%;
  background: rgba(215, 154, 79, 0.1019607843);
  border: 1px solid rgba(42, 42, 42, 0.5019607843);
  border-radius: 0.375rem;
}
.fromitems .item input::-moz-placeholder, .fromitems .item textarea::-moz-placeholder, .fromitems .item select::-moz-placeholder {
  color: #2a2a2a;
}
.fromitems .item input::placeholder,
.fromitems .item textarea::placeholder,
.fromitems .item select::placeholder {
  color: #2a2a2a;
}
.fromitems .item span {
  font-size: 1.125rem;
  color: rgba(82, 72, 72, 0.5019607843);
  margin-top: 0.25rem;
}
.fromitems .item:last-child {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .fromitems .item {
    width: 46.5%;
  }
  .fromitems .item span {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .fromitems .item {
    width: 100%;
  }
}

.applynow .mainbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.applynow .left {
  width: 60%;
}
.applynow .desc {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 1rem 0;
}
.applynow .right {
  width: 35%;
  border-radius: 1rem;
  overflow: hidden;
}
.applynow .right img {
  width: 100%;
  display: block;
}
.applynow .btnsec {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 1359px) {
  .applynow .desc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .applynow .mainbox {
    flex-wrap: wrap;
  }
  .applynow .left {
    width: 100%;
    order: 2;
  }
  .applynow .right {
    width: 100%;
    order: 1;
  }
}

.projectdetail .heading {
  max-width: 38rem;
}
.projectdetail .mainbox {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
.projectdetail .descbox {
  margin-bottom: 2rem;
}
.projectdetail .smtitle {
  font-size: 1.25rem;
  color: #a3238e;
  margin-bottom: 0.5rem;
}
.projectdetail .desc {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
}
.projectdetail .facilitylist {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.projectdetail .facilityitem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 48%;
}
.projectdetail .icon {
  max-width: 3.125rem;
  min-width: 3.125rem;
}
.projectdetail .icon img {
  width: 100%;
  display: block;
}
.projectdetail .text {
  color: #000;
  font-size: 1.25rem;
}
.projectdetail .details {
  width: 40%;
  position: sticky;
  top: 8rem;
  align-self: flex-start;
}
.projectdetail .imgsec {
  width: 55%;
}
.projectdetail .imgsec .imgbox {
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.projectdetail .imgsec img {
  width: 100%;
  display: block;
}
.projectdetail .btnsec {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.projectdetail .darkbtn {
  padding: 1rem 3.75rem;
  border: 0.0625rem solid #a3238e;
  background: #a3238e;
  font-size: 1.125rem;
  color: #fff;
  transition: all linear 0.3s;
  border-radius: 2rem;
}
.projectdetail .darkbtn span {
  position: relative;
  padding-right: 2rem;
  transition: all linear 0.2s;
}
.projectdetail .darkbtn span:before {
  content: "";
  width: 1.125rem;
  height: 100%;
  background: url(../images/tourarrowbtn.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  background-size: auto;
  background-position: center;
}
.projectdetail .darkbtn:hover {
  color: #a3238e;
  background: #fff;
}
.projectdetail .darkbtn:hover span {
  padding: 0 1rem;
}
.projectdetail .darkbtn:hover span:before {
  display: none;
}
.projectdetail .wytbtn {
  padding: 1rem 3.75rem;
  border: 0.0625rem solid #a3238e;
  background: #fff;
  font-size: 1.125rem;
  color: #a3238e;
  transition: all linear 0.3s;
  border-radius: 2rem;
}
.projectdetail .wytbtn:hover {
  background: #a3238e;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .projectdetail .mainbox {
    flex-wrap: wrap;
  }
  .projectdetail .details {
    width: 100%;
    position: initial;
  }
  .projectdetail .facilitylist {
    justify-content: flex-start;
  }
  .projectdetail .imgsec {
    width: 100%;
  }
  .projectdetail .desc {
    font-size: 1rem;
  }
  .projectdetail .smtitle {
    font-size: 1.125rem;
  }
  .projectdetail .text {
    font-size: 1.125rem;
  }
  .projectdetail .darkbtn,
  .projectdetail .wytbtn {
    font-size: 1rem;
    padding: 0.5rem 1.75rem;
  }
}

.ourproject .heading-btn {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ourproject .heading {
  max-width: 38rem;
}
.ourproject .categorybtn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(0deg, rgba(215, 154, 79, 0.1), rgba(215, 154, 79, 0.1));
  display: flex;
  gap: 0;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  gap: 0.25rem;
}
.ourproject .categorybtn .mainbtn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  color: #2a2a2a;
  font-size: 1.125rem;
  background: transparent;
  transition: all linear 0.3s;
  border: 0;
}
.ourproject .categorybtn .mainbtn:hover, .ourproject .categorybtn .mainbtn.active {
  background: #a3238e;
  color: #fff;
}
.ourproject .filteritems {
  margin-top: 0.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background: linear-gradient(0deg, rgba(215, 154, 79, 0.1), rgba(215, 154, 79, 0.1));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.ourproject .filteritems .item {
  padding-right: 1rem;
  position: relative;
  min-width: 12rem;
}
.ourproject .filteritems .item select {
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 1.125rem;
}
.ourproject .filteritems .item:last-child {
  min-width: auto;
}
.ourproject .filteritems .item:last-child:before {
  display: none;
}
.ourproject .filteritems .item:before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background: #2a2a2a;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.4;
}
.ourproject .search {
  padding: 1.25rem 1.9375rem;
  text-transform: capitalize;
  color: #fff;
  border-radius: 0.75rem;
  background: #2e3192;
  font-size: 1.125rem;
  border: 0;
  transition: all linear 0.2s;
}
.ourproject .search:hover {
  background: #a3238e;
}
.ourproject .smtitle {
  font-size: 1.125rem;
  background: linear-gradient(90.06deg, #331d04 0.82%, #d89b50 13.91%, #331d04 27.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ourproject .projectlist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.75rem;
  margin-top: 3rem;
}
.ourproject .loadmore {
  margin-top: 3rem;
  text-align: center;
}
.ourproject .project-slider {
  margin-top: 3rem;
}
.ourproject .owl-nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.ourproject .owl-nav button {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 5rem;
}
.ourproject .owl-nav button:hover {
  opacity: 0.9;
}
.ourproject .owl-nav button.owl-prev, .ourproject .owl-nav button.owl-next {
  border: 0.0625rem solid #a3238e;
  position: relative;
}
.ourproject .owl-nav button.owl-prev span, .ourproject .owl-nav button.owl-next span {
  display: none;
}
.ourproject .owl-nav button.owl-prev:before, .ourproject .owl-nav button.owl-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/sliderarrow.png) no-repeat;
  background-position: center;
  background-size: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.ourproject .owl-nav button.owl-prev:before {
  transform: scaleX(-1);
}
.ourproject .project-listingsec {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ourproject .project-listingsec .projectitem {
  width: 31%;
}
.ourproject .project-listingsec .projectitem .imgsec {
  cursor: pointer;
  position: relative;
}
.ourproject .project-listingsec .projectitem .imgsec .slide-img {
  display: none;
  width: 100%;
}
.ourproject .project-listingsec .projectitem .imgsec .slide-img.active {
  display: block;
}
.ourproject .mainimg {
  max-width: 52rem;
  width: 52rem;
  border: 0.25rem solid #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  max-height: calc(100vh - 6rem);
  min-height: calc(100vh - 6rem);
}
.ourproject .mainimg img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.ourproject .project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}
.ourproject .project-lightbox .lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.ourproject .project-lightbox .lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 94vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ourproject .project-lightbox .lightbox-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  min-height: calc(100vh - 4rem);
  min-width: 100%;
}
.ourproject .project-lightbox .lightbox-close {
  position: absolute;
  top: 0;
  right: 60px;
  left: auto;
  margin: auto;
  width: 45px;
  height: 45px;
  border: 0;
  background: #fff;
  color: #000;
  font-size: 30px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}
.ourproject .project-lightbox .lightbox-close:hover {
  background: #000;
  color: #fff;
}
.ourproject .project-lightbox .lightbox-prev,
.ourproject .project-lightbox .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #000;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
  border: 0.0625rem solid #ffffff;
}
.ourproject .project-lightbox .lightbox-prev img,
.ourproject .project-lightbox .lightbox-next img {
  display: block;
  width: auto;
  margin: auto;
}
.ourproject .project-lightbox .lightbox-prev:hover,
.ourproject .project-lightbox .lightbox-next:hover {
  background: #000;
  color: #fff;
}
.ourproject .project-lightbox .lightbox-prev {
  left: 0;
}
.ourproject .project-lightbox .lightbox-next {
  right: 0;
}
@media (max-width: 1199px) {
  .ourproject .project-lightbox .lightbox-close {
    right: 24px;
  }
}
@media (max-width: 991px) {
  .ourproject .project-lightbox .lightbox-content {
    width: 95%;
  }
  .ourproject .project-lightbox .lightbox-close {
    right: 0;
  }
  .ourproject .project-lightbox .lightbox-prev {
    left: 10px;
  }
  .ourproject .project-lightbox .lightbox-next {
    right: 10px;
  }
  .ourproject .project-lightbox .lightbox-prev,
  .ourproject .project-lightbox .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 1023px) {
  .ourproject .project-listingsec .projectitem {
    width: 46%;
  }
  .ourproject .heading-btn {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .ourproject .heading,
  .ourproject .filterbtn {
    width: 100%;
  }
  .ourproject .categorybtn {
    margin: auto;
  }
  .ourproject .filteritems {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 1rem auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .ourproject .project-listingsec .projectitem {
    width: 100%;
  }
  .ourproject .mainimg {
    min-height: auto;
  }
  .ourproject .project-lightbox .lightbox-image {
    min-height: auto;
    min-width: none;
  }
  .ourproject .smtitle {
    font-size: 1rem;
  }
  .ourproject .categorybtn .mainbtn {
    font-size: 1rem;
  }
  .ourproject .project-lightbox .lightbox-content {
    height: -moz-fit-content;
    height: fit-content;
    max-height: 94vh;
  }
  .ourproject .project-lightbox .lightbox-close {
    left: auto;
    top: -10px;
    right: -4px;
  }
  .ourproject .project-lightbox .lightbox-next,
  .ourproject .project-lightbox .lightbox-prev {
    top: auto;
    transform: none;
    bottom: -60px;
    left: auto;
    right: auto;
  }
  .ourproject .project-lightbox .lightbox-next {
    margin-right: -60px;
  }
  .ourproject .project-lightbox .lightbox-prev {
    margin-left: -60px;
  }
  .ourproject .filteritems {
    flex-wrap: wrap;
    justify-content: center;
  }
  .ourproject .filteritems .item select {
    font-size: 1rem;
  }
  .ourproject .filteritems .item {
    width: 100%;
    padding: 0 0 0.5rem 0;
    border-bottom: 0.0625rem solid #232325;
  }
  .ourproject .filteritems .item:last-child {
    border: 0;
  }
  .ourproject .filteritems .item:before {
    display: none;
  }
}

.projectitem {
  border-bottom: 0.0625rem solid #a3238e;
}
.projectitem:hover .details {
  border-width: 0.125rem;
}
.projectitem:hover .imgsec img {
  transform: scale(1.1);
}
.projectitem:hover .link .firstarrow {
  transform: translate3d(1.75rem, -1.75rem, 0px);
}
.projectitem:hover .link .secondarrow {
  transform: translate3d(1.75rem, -1.75rem, 0px);
}
.projectitem .imgsec {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 24rem;
}
.projectitem .imgsec img {
  transition: all linear 0.2s;
  width: 100%;
  display: block;
}
.projectitem .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.projectitem .slide-img.active {
  opacity: 1;
  z-index: 2;
}
.projectitem .type {
  position: absolute;
  left: 0;
  top: 3rem;
  padding: 0.625rem 1.25rem;
  background: #2e3192;
  font-size: 1.125rem;
  color: #fff;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  z-index: 9;
}
.projectitem .details {
  position: relative;
  padding: 1.25rem;
}
.projectitem .link {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: 0;
  top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.projectitem .link img {
  max-width: 2rem;
  width: 100%;
  display: block;
  transition: all linear 0.2s;
}
.projectitem .link .secondarrow {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
}
.projectitem .address {
  position: relative;
  color: #a3238e;
  font-size: 1rem;
  padding-left: 1.75rem;
}
.projectitem .address:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/projectadd.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0.0625rem;
}
.projectitem .title {
  font-size: 1.25rem;
  color: #2a2a2a;
  font-weight: 700;
  padding: 0.25rem 0;
}
.projectitem .desc {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 130%;
}
@media only screen and (max-width: 1023px) {
  .projectitem {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .projectitem .desc {
    font-size: 1rem;
  }
  .projectitem .title {
    font-size: 1.125rem;
  }
  .projectitem .address {
    font-size: 1rem;
  }
}

.oursector .heading {
  max-width: 32rem;
}
.oursector .projectssec {
  margin-top: 3rem;
}
.oursector .projectlist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.75rem;
}
.oursector .loadmore {
  margin-top: 3rem;
  text-align: center;
}

.whatdo .heading {
  max-width: 38rem;
}
.whatdo .dolist {
  margin-top: 3rem;
  position: relative;
}
.whatdo .dolist .item {
  width: 100%;
}
.whatdo .dolist .item.active .imgsec {
  opacity: 1;
}
.whatdo .dolist .item.active .details {
  border-width: 0.125rem;
}
.whatdo .dolist .item.active .desc {
  height: auto;
  opacity: 1;
}
.whatdo .dolist .item.active .title:before {
  transform: rotate(45deg);
}
.whatdo .dolist .desc {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  height: 0;
  opacity: 0;
  transition: all linear 0.3s;
}
.whatdo .dolist .details {
  max-width: 50rem;
  margin-left: auto;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(42, 42, 42, 0.2);
}
.whatdo .dolist .title {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  font-size: 1.75rem;
  color: #2a2a2a;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.whatdo .dolist .title:before {
  content: "+";
  font-size: 2.5rem;
  font-weight: 300;
  color: #2a2a2a;
  position: absolute;
  right: 2rem;
  top: 0;
  transition: all linear 0.3s;
}
.whatdo .dolist .imgsec {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 1.875rem;
  overflow: hidden;
  opacity: 0;
  max-width: 44rem;
}
.whatdo .dolist .imgsec img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 1599px) {
  .whatdo .dolist .imgsec {
    max-width: 38rem;
  }
}
@media only screen and (max-width: 1479px) {
  .whatdo .dolist .imgsec {
    max-width: 35rem;
  }
  .whatdo .dolist .details {
    max-width: 44rem;
  }
}
@media only screen and (max-width: 1359px) {
  .whatdo .dolist .title {
    font-size: 1.5rem;
  }
  .whatdo .dolist .desc {
    font-size: 1rem;
  }
  .whatdo .dolist .details {
    max-width: 42rem;
  }
  .whatdo .dolist .imgsec {
    max-width: 31rem;
  }
}
@media only screen and (max-width: 1234px) {
  .whatdo .dolist .imgsec {
    max-width: 28rem;
  }
  .whatdo .dolist .details {
    max-width: 36rem;
  }
}
@media only screen and (max-width: 1199px) {
  .whatdo .dolist {
    margin-top: 2rem;
    position: relative;
  }
  .whatdo .dolist .imgsec {
    max-width: 20rem;
    right: 0;
    margin: auto;
    position: relative;
    opacity: 0;
    display: none;
  }
  .whatdo .dolist .details {
    max-width: none;
    margin-top: 1rem;
  }
  .whatdo .dolist .item.active .imgsec {
    display: block;
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .whatdo .dolist .title {
    font-size: 1.125rem;
  }
  .whatdo .dolist .title:before {
    font-size: 1.5rem;
    right: 0;
  }
  .whatdo .dolist .text {
    padding-right: 1rem;
  }
  .whatdo .icon {
    max-width: 2.5rem;
  }
  .whatdo .icon img {
    width: 100%;
    display: block;
  }
}

.ourwork {
  position: relative;
  background-color: #fbf5ed;
}
.ourwork:before {
  content: "";
  width: 100%;
  height: 88%;
  background-color: #fbf5ed;
  position: absolute;
  left: 0;
  bottom: 0;
}
.ourwork .heading {
  max-width: 30rem;
  position: relative;
}
.ourwork .worklist {
  margin-top: 3rem;
}
.ourwork .workitem {
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  z-index: 1;
  top: 8rem;
  background-color: #fbf5ed;
}
.ourwork .workitem:nth-of-type(2) {
  z-index: 2;
}
.ourwork .workitem:nth-of-type(3) {
  z-index: 3;
}
.ourwork .workitem:nth-of-type(4) {
  z-index: 4;
}
.ourwork .workitem:nth-of-type(5) {
  z-index: 5;
}
.ourwork .workitem:last-child {
  margin: 0;
}
.ourwork .smtitle {
  font-size: 1.75rem;
  color: #2a2a2a;
  font-weight: 300;
}
.ourwork .desc {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2a2a2a;
}
.ourwork .quote {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #a7a49f;
  font-family: "Poppins", sans-serif;
}
.ourwork .quote span {
  position: relative;
  padding-left: 3.5rem;
}
.ourwork .quote span:before {
  content: "";
  width: 3.25rem;
  height: 2.5rem;
  background: url(../images/workcomma.png) no-repeat;
  position: absolute;
  left: 0rem;
  top: -2rem;
}
.ourwork .btnsec {
  margin-top: 2rem;
}
.ourwork .btnsec .commonbtn {
  border: 1px solid #2e3192;
}
.ourwork .imgsec {
  width: 30%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.ourwork .imgsec img {
  width: 100%;
  display: block;
}
.ourwork .detail {
  width: 40%;
}
.ourwork .quote {
  width: 25%;
}
@media only screen and (max-width: 1359px) {
  .ourwork .smtitle {
    font-size: 1.5rem;
  }
  .ourwork .desc {
    font-size: 1rem;
  }
  .ourwork .quote {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .ourwork {
    background: #fbf5ed;
  }
  .ourwork:before {
    display: none;
  }
  .ourwork .workitem {
    top: 0;
    position: relative;
  }
  .ourwork .detail {
    width: 60%;
  }
  .ourwork .quote {
    margin-top: 2rem;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .ourwork .worklist {
    margin-top: 1.5rem;
  }
  .ourwork .detail {
    width: 100%;
  }
  .ourwork .imgsec {
    width: 100%;
  }
  .ourwork .quote {
    font-size: 1.125rem;
  }
  .ourwork .quote span {
    padding-left: 2.5rem;
  }
  .ourwork .quote span:before {
    width: 2.5rem;
    height: 1.75rem;
    background-size: contain;
    top: -1rem;
  }
}

.faqsec .mainbox {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.faqsec .right {
  width: 65%;
}
.faqsec .faqitem {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid rgba(42, 42, 42, 0.2);
}
.faqsec .faqitem.active .ans {
  height: auto;
  opacity: 1;
  margin-top: 0.5rem;
}
.faqsec .faqitem.active .que::before {
  transform: rotate(-45deg);
}
.faqsec .que {
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
}
.faqsec .que::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 0.125rem solid #2a2a2a;
  border-right: 0.125rem solid #2a2a2a;
  border-radius: 0.125rem;
  position: absolute;
  right: 0.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(135deg);
  transition: all linear 0.3s;
}
.faqsec .ans {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
  height: 0;
  opacity: 0;
}
.faqsec .left {
  width: 30%;
}
.faqsec .left .desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
}
.faqsec .left .btnsec {
  margin-top: 2rem;
}
.faqsec .left .btnsec .commonbtn {
  border: 1px solid #2e3192;
}
@media only screen and (max-width: 1359px) {
  .faqsec .que {
    font-size: 1.25rem;
  }
  .faqsec .ans {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .faqsec .mainbox {
    flex-wrap: wrap;
  }
  .faqsec .left,
  .faqsec .right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .faqsec .que {
    font-size: 1.125rem;
  }
  .faqsec .ans {
    font-size: 1rem;
  }
}

.eventdetail .headingbtn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.eventdetail .topic {
  max-width: 96%;
  margin: 1.5rem auto;
}
.eventdetail .add-date {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.eventdetail .title {
  font-family: poppins, sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #2a2a2a;
}
.eventdetail .desc {
  font-size: 1.5rem;
  color: #7f7f7f;
  font-weight: 400;
  margin-top: 0.25rem;
}
.eventdetail .text {
  font-family: "Poppins", sans-serif;
  color: #a3238e;
  font-weight: 300;
  font-size: 1.75rem;
}
@media only screen and (max-width: 767px) {
  .eventdetail .headingbtn {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .eventdetail .btnsec {
    order: 1;
  }
  .eventdetail .heading {
    order: 2;
  }
  .eventdetail .title {
    font-size: 1.125rem;
  }
  .eventdetail .desc {
    font-size: 1rem;
  }
  .eventdetail .text {
    font-size: 1.125rem;
  }
}

/* Gallery Grid */
.photogallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.innerflex {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleryimg {
  width: calc(25% - 15px);
  cursor: pointer;
}

.galleryimg img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  transition: 0.3s;
}

.galleryimg img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.custom-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-image {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

/* Close Button */
.custom-lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

/* Navigation */
.custom-lightbox .nav {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  transform: translateY(-50%);
}

.custom-lightbox .prev {
  left: 30px;
}

.custom-lightbox .next {
  right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .galleryimg {
    width: calc(50% - 10px);
  }
}
.relatedevent .relatedeventlist {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.relatedevent .item {
  width: 23%;
}
@media (max-width: 1023px) {
  .relatedevent .relatedeventlist {
    gap: 2rem;
  }
  .relatedevent .item {
    width: 100%;
  }
}

.commonitem .imgsec {
  border-radius: 0.75rem;
  overflow: hidden;
}
.commonitem .imgsec img {
  width: 100%;
  display: block;
}
.commonitem .details {
  margin-top: 1.25rem;
}
.commonitem .title {
  color: #2a2a2a;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.75rem;
}
.commonitem .des {
  font-size: 1.125rem;
  color: #7f7f7f;
  font-weight: 400;
  margin-top: 0.25rem;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.commonitem .btnsec {
  margin-top: 1.75rem;
}
.commonitem .btnsec .commonbtn {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid #2e3192;
}
.commonitem .btnsec .commonbtn:hover:before {
  top: 0;
}
.commonitem .btnsec .commonbtn:before {
  top: 1.125rem;
}
@media (max-width: 1023px) {
  .commonitem .title {
    font-size: 1rem;
  }
  .commonitem .des {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .commonitem .title {
    min-height: auto;
  }
}

.evenlisting .eventslist {
  margin-top: 3rem;
}
.evenlisting .headingbtn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.evenlisting .categorybtn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(0deg, rgba(215, 154, 79, 0.1), rgba(215, 154, 79, 0.1));
  display: flex;
  gap: 0;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
.evenlisting .categorybtn .mainbtn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  color: #2a2a2a;
  font-size: 1.125rem;
  background: transparent;
  transition: all linear 0.3s;
  border: 0;
}
.evenlisting .categorybtn .mainbtn:hover, .evenlisting .categorybtn .mainbtn.active {
  background: #a3238e;
  color: #fff;
}
.evenlisting .date {
  font-family: "Poppins", sans-serif;
  text-align: center;
  min-width: 9.5rem;
}
.evenlisting .date .num {
  line-height: 100%;
  font-size: 8rem;
  color: rgba(215, 154, 79, 0.2);
  font-weight: 500;
}
.evenlisting .date .year {
  line-height: 100%;
  font-size: 1.75rem;
  color: rgba(42, 42, 42, 0.3803921569);
  font-weight: 300;
}
.evenlisting .date .year span {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
}
.evenlisting .smtext {
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
  font-size: 1.75rem;
  font-weight: 300;
  max-width: 24rem;
}
.evenlisting .imgsec {
  width: 40%;
  border-radius: 1rem;
  overflow: hidden;
}
.evenlisting .imgsec img {
  width: 100%;
  display: block;
}
.evenlisting .detail {
  width: 55%;
}
.evenlisting .detail .desc {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  min-height: 10rem;
}
.evenlisting .detail .btnsec {
  margin-top: 2rem;
}
.evenlisting .detail .btnsec .commonbtn {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid #2e3192;
}
.evenlisting .detail .btnsec .commonbtn:hover:before {
  top: 0;
}
.evenlisting .detail .btnsec .commonbtn:before {
  top: 1.125rem;
}
.evenlisting .eventitem {
  margin-bottom: 3.5rem;
}
.evenlisting .eventitem:nth-child(even) .imgsec {
  order: 2;
}
.evenlisting .eventitem:nth-child(even) .detail {
  order: 1;
}
.evenlisting .eventitem:last-child {
  margin: 0;
}
.evenlisting .eventitem,
.evenlisting .left,
.evenlisting .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.evenlisting .left {
  width: 35%;
  justify-content: flex-start;
}
.evenlisting .right {
  width: 60%;
}
@media only screen and (max-width: 1599px) {
  .evenlisting .detail .desc {
    font-size: 1rem;
  }
  .evenlisting .smtext {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 1199px) {
  .evenlisting .left,
  .evenlisting .right {
    width: 100%;
    justify-content: flex-start;
  }
  .evenlisting .eventitem {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .evenlisting .smtext {
    max-width: none;
  }
}
@media only screen and (max-width: 1023px) {
  .evenlisting .headingbtn {
    flex-wrap: wrap;
  }
  .evenlisting .smtext {
    font-size: 1.125rem;
  }
  .evenlisting .heading,
  .evenlisting .categorybtn {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    order: 2;
  }
  .evenlisting .categorybtn {
    order: 1;
    justify-content: center;
    margin: auto;
  }
  .evenlisting .detail .desc {
    min-height: auto;
    font-size: 1rem;
  }
  .evenlisting .date .num {
    font-size: 2.5rem;
  }
  .evenlisting .date .year {
    font-size: 1rem;
  }
  .evenlisting .date .year span {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .evenlisting .left,
  .evenlisting .right {
    flex-wrap: wrap;
  }
  .evenlisting .date {
    text-align: left;
  }
  .evenlisting .imgsec,
  .evenlisting .date,
  .evenlisting .detail,
  .evenlisting .smtext {
    width: 100%;
  }
  .evenlisting .eventitem:nth-child(even) .imgsec {
    order: 1;
  }
  .evenlisting .eventitem:nth-child(even) .detail {
    order: 2;
  }
}

.headingbtnsec .mainbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.headingbtnsec .sosmedia {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.headingbtnsec .share,
.headingbtnsec .soslink {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: #a3238e;
}
.headingbtnsec .soslink {
  background: rgba(215, 154, 79, 0.1019607843);
}
.headingbtnsec .soslink img {
  width: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .headingbtnsec .mainbox {
    flex-wrap: wrap;
  }
}

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

.detailssec .mainbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.detailssec .left {
  width: 65%;
}
.detailssec .right {
  width: 30%;
  position: sticky;
  top: 8rem;
  right: 0;
}
.detailssec .archivebox {
  background: rgba(215, 154, 79, 0.1019607843);
  padding: 2.5rem;
  border-radius: 1.25rem;
}
.detailssec .archivebox .smbox {
  margin-bottom: 1rem;
}
.detailssec .archivebox .heading {
  font-size: 1.75rem;
}
.detailssec .archivebox .linkitems {
  margin-top: 0.5rem;
}
.detailssec .archivebox .item {
  padding: 1rem 0;
  position: relative;
  border-bottom: 0.0625rem solid rgba(42, 42, 42, 0.2);
  padding-right: 1.5rem;
  color: #2a2a2a;
  font-size: 1.125rem;
}
.detailssec .archivebox .item:last-child {
  border: 0;
}
.detailssec .archivebox .item a {
  width: 100%;
}
.detailssec .archivebox .item a:hover {
  color: #a3238e;
}
.detailssec .archivebox .item:before {
  content: "";
  width: 1.75rem;
  height: 1rem;
  background: url(../images/sliderarrow.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.detailssec .contentbox {
  color: #2a2a2a;
  font-size: 1.125rem;
  font-weight: 400;
}
.detailssec .contentbox p {
  margin-bottom: 0.5rem;
}
.detailssec .contentbox h4 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1199px) {
  .detailssec .mainbox {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .detailssec .left,
  .detailssec .right {
    width: 100%;
    position: initial;
  }
}
@media only screen and (max-width: 767px) {
  .detailssec .contentbox {
    font-size: 1rem;
  }
  .detailssec .contentbox h4 {
    font-size: 1.125rem;
    font-weight: 600;
  }
  .detailssec .archivebox {
    padding: 1rem;
  }
  .detailssec .archivebox .heading {
    font-size: 1.125rem;
  }
  .detailssec .archivebox .item {
    font-size: 1rem;
    padding: 0.5rem 0;
    padding-right: 1.75rem;
  }
}

.newssec .mainnews {
  margin: 3rem 0;
}
.newssec .mainnews .details {
  position: relative;
  padding-right: 12rem;
  max-width: 90%;
  margin: 1.25rem auto 0;
}
.newssec .mainnews .btnsec {
  position: absolute;
  right: 0;
  top: 0;
}
.newssec .newslisting {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 1.5rem;
}
.newssec .item {
  width: 23%;
}
@media only screen and (max-width: 1023px) {
  .newssec .mainnews .details {
    max-width: 100%;
  }
  .newssec .item {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .newssec .item {
    width: 100%;
  }
  .newssec .mainnews .details {
    padding: 0;
  }
  .newssec .mainnews .btnsec {
    position: initial;
  }
}
@media only screen and (max-width: 424px) {
  .newssec .item {
    width: 100%;
  }
}

.news-announcement .heading {
  max-width: 38rem;
}
.news-announcement .innerbox {
  margin-bottom: 4rem;
}
.news-announcement .listing {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 1.5rem;
}
.news-announcement .item {
  width: 23%;
}
@media only screen and (max-width: 1199px) {
  .news-announcement .item {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .news-announcement .item {
    width: 100%;
  }
}

.pagination {
  margin-top: 2rem;
}
.pagination .nav-links {
  text-align: center;
}
.pagination .page-numbers {
  font-size: 1.25rem;
  padding: 0 0.5rem;
  color: #af238e;
  background: #f4f4f4;
  border-radius: 0.125rem;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  color: #fff;
  background: #af238e;
}

.searchsec .filterbtn {
  margin: 2rem 0;
}
.searchsec .filteritems {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
}
.searchsec .filteritems .item {
  text-align: right;
}
.searchsec .filteritems .item input {
  border-radius: 0.25rem;
}
.searchsec .search {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .searchsec .filteritems {
    justify-content: center;
    gap: 1rem;
  }
  .searchsec .filteritems .item {
    width: 100%;
    text-align: center;
  }
}

.directormsg {
  min-height: 50rem;
  position: relative;
}
.directormsg .heading {
  max-width: 38rem;
}
.directormsg .left {
  position: absolute;
  left: 0;
  bottom: 0;
}
.directormsg .left img {
  width: 100%;
  display: block;
}
.directormsg .right {
  position: relative;
  max-width: 65%;
  margin-left: auto;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: #2a2a2a;
}
.directormsg .right p {
  margin-bottom: 0.5rem;
}
.directormsg .right p span {
  color: #a3238e;
  font-weight: 600;
}
.directormsg .right p:last-child {
  margin: 0;
}
.directormsg .right:before {
  content: "";
  width: 7rem;
  height: 7rem;
  background: url(../images/quote-director.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -6rem;
}
@media only screen and (max-width: 1600px) {
  .directormsg {
    min-height: 45rem;
  }
}
@media only screen and (max-width: 1359px) {
  .directormsg {
    min-height: 40rem;
  }
}
@media only screen and (max-width: 1023px) {
  .directormsg .mainbox {
    flex-wrap: wrap;
  }
  .directormsg .left {
    position: initial;
    width: 100%;
    max-width: 20rem;
    height: 20rem;
    overflow: hidden;
    margin: auto;
  }
  .directormsg .left img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left bottom;
       object-position: left bottom;
  }
  .directormsg .right {
    margin-top: 1.5rem;
    max-width: none;
    width: 100%;
  }
  .directormsg .right:before {
    display: none;
  }
}

.saftysec .saftylist {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.saftysec .item {
  width: 48%;
  background: rgba(157, 157, 157, 0.1019607843);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.saftysec .desc {
  position: relative;
  font-size: 1.25rem;
  color: #2a2a2a;
  padding-left: 2.5rem;
}
.saftysec .desc:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../images/docicon.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 1359px) {
  .saftysec .desc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .saftysec .item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .saftysec .item {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
  }
  .saftysec .btnsec {
    text-align: center;
  }
}

.downloadbtn {
  padding: 1rem 1.125rem;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.0625rem solid #ffffff;
  transition: all linear 0.3s;
}
.downloadbtn:hover {
  border-color: #af238e;
}
.downloadbtn span {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  color: #af238e;
  font-weight: 700;
}
.downloadbtn span:before {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  background: url(../images/downloadicon.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: -0.25rem;
}
@media only screen and (max-width: 767px) {
  .downloadbtn {
    border: 0.0625rem solid #af238e;
    padding: 0.5rem 0.75rem;
  }
}

.certificatesec .certificatelist {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.certificatesec .certificateitem {
  width: 18.5%;
  border-radius: 0.75rem;
  border: 0.0625rem solid #d89b50;
  overflow: hidden;
}
.certificatesec .certificateitem img {
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 1399px) {
  .certificatesec .certificateitem {
    width: 18.25%;
  }
}
@media only screen and (max-width: 1199px) {
  .certificatesec .certificateitem {
    width: 23%;
  }
}
@media only screen and (max-width: 1023px) {
  .certificatesec .certificatelist {
    justify-content: flex-start;
  }
  .certificatesec .certificateitem {
    width: 31%;
  }
}
@media only screen and (max-width: 767px) {
  .certificatesec .certificatelist {
    justify-content: center;
  }
  .certificatesec .certificateitem {
    width: 100%;
  }
}

.error-404 {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.error-404 .page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.error-404 img {
  width: 100%;
  max-width: 20rem;
  display: block;
  margin: auto;
}

#enquiry-form-message {
  padding: 0.875rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
#enquiry-form-message.error {
  background: #fdedec;
  border: 1px solid #e74c3c;
  color: #c0392b;
}

.error-404 {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.error-404 .page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.error-404 img {
  width: 100%;
  max-width: 20rem;
  display: block;
  margin: auto;
}

#enquiry-form-message.error {
  background: #fdedec;
  border: 1px solid #e74c3c;
  color: #c0392b;
}

.search-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

body.search-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay-inner {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding: 0 1.5rem;
}
.search-overlay-close {
  position: absolute;
  top: -3rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.search-overlay-close:hover {
  opacity: 1;
}
.search-overlay-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 0 1rem;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.search-overlay-submit:hover {
  opacity: 1;
}
.search-overlay-submit img {
  width: 1.5rem;
  filter: invert(1);
}

#search-overlay-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.5rem;
}
#search-overlay-form:focus-within {
  border-bottom-color: #af238e;
}

#search-overlay-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  font-family: inherit;
}
#search-overlay-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#search-overlay-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.error-404-sec {
  text-align: center;
}

.error-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.error-num {
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #af238e, #c7893f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2a2a2a;
}

.error-desc {
  font-size: 1.125rem;
  color: #666;
  max-width: 36rem;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.error-outline-btn {
  background: transparent;
  border-color: #af238e;
  color: #af238e;
}
.error-outline-btn span {
  background: none;
  -webkit-text-fill-color: #af238e;
  color: #af238e;
  padding-left: 0;
}
.error-outline-btn span:before {
  display: none;
}
.error-outline-btn:hover {
  background: #a3238e;
  border-color: #a3238e;
}

@media only screen and (max-width: 767px) {
  .error-num {
    font-size: 6rem;
  }
  .error-title {
    font-size: 1.5rem;
  }
}
#career-form-message {
  padding: 0.875rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
#career-form-message.success {
  background: #eafaf1;
  border: 1px solid #27ae60;
  color: #1e8449;
}
#career-form-message.error {
  background: #fdedec;
  border: 1px solid #e74c3c;
  color: #c0392b;
}

.fromitems .field-error,
.fromitems .field-error:focus {
  border-color: #e74c3c !important;
  outline: none;
}

.file-hint {
  display: block;
  font-size: 0.875rem;
  color: #888;
  margin-top: 0.25rem;
}

.inline-field-error {
  display: block;
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.3rem;
  padding-left: 0.25rem;
}

.job-apply-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0e6f6;
}

.job-apply-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1.5px solid #af238e;
  border-radius: 2rem;
  color: #af238e;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.job-apply-btn:hover {
  background: #af238e;
  color: #fff;
}/*# sourceMappingURL=main.css.map */