@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


:root {
  --primary-color: #242d69;
  --secondary-color: #c19753;
  --body-color: #212121;
  --light: #edf0ee;
  --light-gray: #e4ece9;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: 'Merriweather', serif;
}

body {
  color: var(--body-color);
  background-color: #fff;
  font: 400 16px "Open Sans", sans-serif;
  overflow-x: hidden;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

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

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

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

.reflection-img{
  -webkit-box-reflect: below -2px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.0), rgba(0,0,0,0.0), rgba(0,0,0,0.0), rgb(0 0 0 / 20%));
}

.container-fluid{
    padding-left: 2rem;
    padding-right: 2rem;
}

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header.notfixed{
  top: -100px;
}

.header.fixed{
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.logo {
  width:240px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.logo::before {
  content: '';
  position: absolute;
  inset: 0 -10px 0 auto;
  width: calc(100% + 4rem);
  background-color: #fff;
  clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
  z-index: -1;
}

.header.fixed .logo {
  width:200px;
}

.logo img {
  padding: 5px 10px 5px 0;
  transition: all 300ms ease-in-out;
}

.header.fixed .logo img{
  padding: 5px 0;
}

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

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

.top-side, .top-side .navi{
  column-gap: 20px;
}

.top-side .navi li a{
  color: #000;
  display: block;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid rgb(255 255 255 / 30%);
  transition: all 300ms ease-in-out;
}

.top-side .navi li a::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: right;
  background-color: #fff;
  transition: transform 300ms ease-in-out;
  z-index: -1;
}
.top-side .navi li a:hover::before{
  transform: scaleX(1);
  transform-origin: left;
}

.top-side .navi li a:hover{
  color: var(--primary-color);
}

.header.fixed .top-side .navi li a{
  color: var(--body-color);
  border-color: rgb(0 0 0 / 10%);
}

.header.fixed .top-side .navi li a:hover{
  color: #fff;
}

.header.fixed .top-side .navi li a::before{
  background-color: var(--body-color);
}

.menuBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
  background-color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 0 1.5rem rgb(0 0 0 / 20%);
}

.header.fixed .menuBtn{
  color: var(--body-color);
  background-color: transparent;
  box-shadow: none;
  padding: .5rem 0;
}

.menuBtn .menuText span{
  display: block;
  transition: all 300ms ease-in-out;
}

.menuBtn .menuText::after{
  content: attr(data-menutext);
  display: table;
  position: absolute;
  top: 100%;
  left: 1rem;
  transition: all 300ms ease-in-out;
}

.menuBtn.closeMenuBtn .menuText span{
  transform: translateY(-120%);
}

.menuBtn.closeMenuBtn .menuText::after{
  top: .5rem;
}

.menuBtn .menuLine {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 26px;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover {
  color: #fff;
}

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

.menuBtn:hover .menuLine::before,
.menuBtn:hover .menuLine::after {
  background-color: rgb(255 255 255 / 60%);
}

.menuBtn .menuLine::before{
  width: 100%;
}

.menuBtn .menuLine::after{
  width: 70%;
}
.menuBtn:hover .menuLine::after {
  width: 85%;
}

.header.fixed .menuBtn  .menuLine::before,
.header.fixed .menuBtn  .menuLine::after{
  background-color: var(--primary-color);
}

.menuBtn.closeMenuBtn{
  gap: 2px;
}

.menuBtn.closeMenuBtn .menuLine::before {
  -webkit-transform: rotate(45deg) translate(3px, 2px);
  transform: rotate(45deg) translate(3px, 2px);
}

.menuBtn.closeMenuBtn .menuLine::after {
  width: 100%;
  -webkit-transform: rotate(-45deg) translate(3px, -2px);
  transform: rotate(-45deg) translate(3px, -2px);
}

.menuContainer{
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgb(0 0 0 / 30%);
  display: none;
}

.menuContainer .inner{
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 540px;
  max-width: 40%;
  padding: 20px 30px;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -50%;
  bottom: 0;
  visibility: hidden;
  color: #fff;
  background-color:var(--primary-color);
  transition: all 300ms ease-in-out;
}

.menuContainer.active .inner{
  visibility: visible;
  right: 0%;
}

.menuContainer .inner a{
  color: #fff;
}

.topAside{
  gap: 20px;
}

.menuContainerHeader .topAside .top-side .navi{
  gap: 10px;
}

.socialBtn{
  position: relative;
}

.socialBtn i{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.socialBtn:hover > i{
  background-color: #fff;
  color: var(--primary-color);
}

.socialBtn ul{
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
  position: absolute;
  left: 2px;
  pointer-events: none;
}

.socialBtn:hover ul{
  pointer-events: all;
}

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

.socialBtn:hover > ul li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin: 5px 0;
}

.menuContainerHeader .socialBtn ul i{
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

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

/* main menu */
.mainMenu{
  margin: 3rem 0;
  position: relative;
}

.mainMenu > ul{
  max-width: 50%;
  padding-right: 10px;
  border-right: 1px solid rgb(255 255 255 / 30%);
}

.mainMenu ul{
  display: flex;
  flex-direction: column;
}

.mainMenu ul li{
  padding: 3px 0;
}

.mainMenu ul li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
}

.mainMenu ul li:hover > a{
  background-color: rgb(255 255 255 / 15%);
}

.menuDrop{
  position: absolute;
  left: 46%;
  top: -5px;
  width: 54%;
  min-height: 100%;
  border-left: 35px solid transparent;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
    max-height: 80vh;
}

.mainMenu ul li:hover > .menuDrop{
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.menuDrop ul li:not(:last-child){
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}
/* main menu */

.menuContainerFooter ul{
  gap: 10px;
}

.menuContainerFooter ul li a{
  font-size: 11px;
  text-transform: uppercase;
}

.menuContainerFooter ul li a:hover{
  border-bottom: 1px dashed rgb(255 255 255 / 100%);
}
/*header*/

.banner {
  height: 100vh;
  position: relative;
  background: var(--primary-color);
  z-index: 1;
}

/*.banner .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,.3);
  z-index: 1;
}*/

.banner .carousel-item img{
  transform: scale(1);
  transition: transform 15s linear;
}

.banner .carousel-item.active img{
  transform: scale(1.5);
}

.bannerText {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  color: #fff;
  text-align: center;
  transition: all .5s linear .2s;
}

.banner .carousel-item.active .bannerText{
  top: 40%;
  opacity: 1;
  visibility: visible;  
}

.bannerText .h1 {
  font: 500 3.5rem var(--serif);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0;
    text-shadow: 0 0 2px #000;
}

.bannerText h3{
  font: 500 2rem var(--serif);
    letter-spacing: 6px;
    text-shadow: 0 0 2px #000;
}

.bannerBottom{
	position:absolute;
	bottom:20px;
	right:30px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	z-index:9;
}

.bannerControlsContainer{
	display:flex;
	align-items:center;
}

.bannerControlsContainer .carousel-indicators{
	position:static;
	align-items:center;
	margin-right:10px;
	margin-left:0;
}

.bannerControlsContainer .carousel-indicators li{
	width:auto;
	height:auto;
	background-color:transparent;
	opacity:1;
	color:#fff;
	margin:0 10px;
	text-indent:inherit;
	border-top:1px solid transparent;
	border-bottom:1px solid transparent;
	font-weight:600;
	font-size:12px;
	transition:all 300ms ease-in-out;
}

.bannerControlsContainer .carousel-indicators li:hover, .bannerControlsContainer .carousel-indicators .active{
	border-bottom-color:#fff;
}

.bannerControlsContainer .bannerControl{
	display:flex;
	align-items:center;
	justify-content:center;
}

.bannerControlsContainer .bannerControl >span{
	width:100px;
  margin-right: 4px;
}

.bannerControlsContainer .bannerControl .carousel-control-next.banner-next, 
.bannerControlsContainer .bannerControl .carousel-control-prev.banner-prev{
	position:static;
	top:auto;
	width:40px;
	height:40px;
	border-radius:50%;
	margin:0 3px;
	opacity:1;
	z-index:9;
    background-color: var(--primary-color);
}

.carousel-control-next.banner-next .carousel-control-next-icon, .carousel-control-prev.banner-prev .carousel-control-prev-icon{
	background-size:60%;
}

.carousel-control-next.banner-next:hover, .carousel-control-prev.banner-prev:hover{
	background-color:var(--primary-color);
}

.scrollDown {
  position: absolute;
  left: 50px;
  bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
  font-size: 10px;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9;
}

.scrollDown:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  border-right: 1px solid #fff;
  animation: hidden 3s ease infinite;
}

@keyframes hidden {
  50% {
    transform: scaleY(1);
  }
}

.scrollDown span {
  display: block;
  writing-mode: vertical-lr;
  text-orientation: upright;
}

.rotate45{
  transform: rotate(-45deg);
  display: inline-block;
}

/* News Update */
.newsUpdates{
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
}
.newsUpdates .newsUpdatesHeading{
  background-color: var(--secondary-color);
  padding: 10px;
  max-width: 180px;
  flex: 0 0 180px;
}
.newsUpdates .newsUpdatesHeading h6{
  font-family: var(--serif);
}

.newsUpdatesText{
  max-width: calc(100% - 180px);
  flex: 0 0 calc(100% - 180px);
  padding: 0 10px;
}

.newsUpdatesText p{
  display: inline-block;
  padding: 0 1rem;
  border-right: 1px solid rgb(255 255 255 / 10%);
  font-size: 14px;
}

.newsUpdatesText p a{
  color: #fff;
}
.newsUpdatesText p a:hover{
  color: var(--secondary-color);
}
/* News Update */

/* overview */
.overview-img{
  position: relative;
  z-index: 1;
}

.overview-img::before{
  content: '';
  position: absolute;
  right: calc(3rem + 15px);
  top: 3rem;
  height: 100%;
  width: 170%;
  background-color: var(--primary-color);
  z-index: -1;
}
.overview-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/jklhuihnimkm.png);
    mix-blend-mode: soft-light;
    opacity: 0.37;
    z-index: -1;
  	right: calc(3rem + 15px);
    top: 3rem;
    left: -46%;
    height: 100%;
}
.collaboration-with
{
	position:relative;
}
.collaboration-with::after {
   content: '';
    position: absolute;
    inset: 0;
    background: url(../images/jklhuihnimkm.png);
    mix-blend-mode: soft-light;
    opacity: 0.37;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
}
.overview-text .inner{
  padding: 0 2rem;
}
/* overview */

/* news & Events */
.moreNews{
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed rgb(0 0 0 / 10%);
}
.newText h4 a{
  color: var(--body-color);
  font-weight: 700;
}

.newText h4 a:hover{
  text-decoration: underline;
}

.newsBox a{
  color: var(--body-color);
}

.newsBox a:hover{
  text-decoration: underline;
}

.impDates .inner{
  height: 100%;
  padding: 2rem;
  display: grid;
  grid-template-rows: auto 440px auto;
  background-color: var(--light-gray);
}

.impDatesContainer .scroller{
  height: 100%;
}

.impDatesContainer li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.impDatesContainer li:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgb(0 0 0 / 10%);
}

.date{
  flex: 0 0 70px;
  max-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.date span{
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-color)
}

.date span sup{
  font-size: 50%;
}
/* news & Events */

/* collabs */
.collaborationBox{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.collaborationBox .img-fluid{
  max-width: calc(20% - 10px);
}
/* collabs */

/* Video and growth */
.modal-title{
  font-weight: 700;
  color: var(--primary-color);
}

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

.videoth::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
}

.videoth img{
  object-fit: cover;
}

.videoBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  transition: all 300ms ease-in-out;
  animation: breathe 800ms alternate infinite;
}

.videoBtn::before{
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 30%);
  z-index: -1;
  transition: all 300ms ease-in-out;
  transition-delay: 100ms;
  animation: breathe 800ms alternate infinite;
}

@keyframes breathe{
  100%{scale: 1.2;}
}

.videoBtn:hover{
  scale: 1.2;
  color: #fff;
  background-color: var(--primary-color);
}

.videoBtn:hover::before{
  scale: 1.2;
  border-color: #fff;
}

/* infra */
.infrastructure:hover .iconBox .inner{
  opacity: 0.2;
}

.iconBox .inner{
  display: block;
  padding: 1.75rem;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  transition: all 300ms ease-in-out;
}

.infrastructure .iconBox .inner:hover{
  background-color: #fff;
  color: var(--primary-color);
  opacity: 1;
}

.iconBox .inner .img-fluid{
  width: 80px;
  padding: 15px;
  margin: 0 auto 10px;
  filter: brightness(55);
  transition: all 300ms ease-in-out;
}

.iconBox .inner:hover .img-fluid{
  filter: brightness(1);
}

.iconBox.iconBox-dark .inner{
  color: var(--body-color);
  background-color: var(--light);
}

.iconBox.iconBox-dark .inner:hover{
  background-color: var(--body-color);
  color: var(--secondary-color);
}

.iconBox.iconBox-dark .inner:hover .img-fluid{
  filter: invert(1) grayscale(55);
}
/* infra */

/* testimonials */
.testimonialsWrapper{
  padding: 2rem;
  background: linear-gradient(45deg, #ececec, #fefefe, #ececec, #fefefe);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
  border-bottom: 4px solid var(--secondary-color);
  position: relative;
  z-index: 1;
}

.testimonial-img{
  padding-top: 2rem;
  text-align: center;
}
.testimonial-img img{
  width: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 2rem rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

.testimonialBox p{
  max-width: 80%;
  margin: 0 auto;
}

/* testimonials */

p {
  line-height: 1.75;
}

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

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

.heading img{
  width: 80px;
}
.heading img.position-absolute{
  width: 300px;
  right: 0;
  top: 0;
  opacity: 0.1;
}

.heading h2,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
}

.heading h2 {
  font-family: var(--serif);
  font-weight: 500;
}

.heading h3 {
  font-weight: 500;
  font-size: 2vw;
}

.heading h4 {
  font-weight: 500;
}

.heading h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

.text-primary{
  color: var(--primary-color) !important;
}
.text-secondary{
  color: var(--secondary-color) !important;
}

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

.bg-primary{
  background-color: var(--primary-color) !important;
  color: var(--light);
}
.bg-secondary{
  background-color: var(--secondary-color) !important;
}

.bg-image{
  background: center / cover no-repeat fixed;
}

.bg-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
  z-index: -1;
}

.scroller{
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

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

.viewmore .button{
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

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

.viewmore .button.text-white:hover{
  text-decoration: underline;
}

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

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

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

.readmore .button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px 15px;
  min-width: 130px;
  max-width: fit-content;
  border-radius: 40px;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  font-size: 14px;
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.readmore button {
  width: 100%;
  background: none;
}

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

.readmore .button.text-white{
  color: var(--light) !important;
  border-color: var(--light);
}

.readmore .button.text-white:hover {
  color: var(--primary-color) !important;
  background: var(--light);
  border-color: transparent;
}

.readmore .button.solid.white:hover,
.readmore .button.solid {
  background-color: var(--primary-color);
  color: var(--light);
  border: none;
}

.readmore .button.solid.white,
.readmore .button.solid:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
}

.readmore .button.solid.secondary:hover{
  background-color: var(--secondary-color);
  color: var(--body-color);
}

.readmore .button span{
  color: #fff;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.readmore .button span::before{
  content: '';
  background-color: var(--secondary-color);
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scale(1.5);
  z-index: -1;
}

.readmore .button:hover span{
  transform: translateX(10px);
}

.readmore .button:hover span::before{
  transform: scale(2);
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply{
  mix-blend-mode: multiply;
}

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

/* custom swiper controls */
.swiper-button-next, .swiper-button-prev{
  width: 60px;
  height: 60px;
  margin-top: -30px;
  border-radius: 50%;
  background: url(../images/arrow-left.png) center / 16px no-repeat #fff;
  border: 1px solid var(--secondary-color);
  transition: all 300ms ease-in-out;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
    scale: 1.2;
    background-color: var(--secondary-color);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev{
  transform: rotate(-180deg);
}

.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}

.bottom-control{
  top: calc(100% - 36px);
}

.bottom-control.swiper-button-next{
  right: 13%;
}
.bottom-control.swiper-button-prev{
  left: 13%;
}

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

/*Footer*/
.footer-area {
  background-color:#111345;
  color: #fff;
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

/* .footer-area::before{
  content: '';
  position: absolute;
  background: url(../images/footer-bg.png) center bottom / 40% no-repeat;
  inset: 0;
  z-index: -1;
} */

.footer-logo{
  width: 160px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -42%);
}

.footer-area a{color:#fff;}
.footer-area a:hover{color: var(--secondary-color);}

.footerAbout {
  font-size: 1rem;
}

.footerAbout .footer-title{
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footerAbout .footerSocial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footerAbout .footerSocial li a {
  color: #fff;
  font-size: 14px;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.footerAbout .footerSocial li a:hover {
  background-color: #fff;
}

.footerAbout .footerSocial li a:hover i{
  background-color: transparent;
}

.footerSocial li a:hover .fa-facebook-f{
	color: var(--facebook);
}
.footerSocial li a:hover .fa-linkedin-in{
	color: var(--linkedin);
}
.footerSocial li a:hover .fa-twitter{
	color: var(--twitter);
}
.footerSocial li a:hover .fa-youtube{
	color: var(--youtube);
}
.footerSocial li a:hover .fa-whatsapp{
	color: var(--whatsapp);
}
.footerSocial li a:hover .fa-instagram{
	color: var(--instagram);
}


.footerBox ul li a {
  position: relative;
  font-size: 12px;
  padding-bottom: 5px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.footerAddress{
  margin-bottom: 2rem;
}

.footerAddress p{
  font-size: 12px;
}

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

.footer-area .bottom ul {
  display: flex;
  justify-content: center;
  flex-basis: 0;
  flex-grow: 1;
}

.footer-area .bottom li {
  font-size: 12px;
  display: flex;
  margin: 0 10px;
  line-height: 1;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 0;
  flex-basis: 0;
  flex-grow: 1;
}

.footer-area .bottom p:last-child {
  justify-content: flex-end;
}

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

.button-top {
  background: var(--secondary-color);
  position: fixed;
  right: 20px;
  bottom: -40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

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

/* Inside page */
.insideBanner{
	height:400px;
	position:relative;
	z-index:1;
}
/*.insideBanner::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 70%), transparent);
}*/

.breadcrumb{
  padding: 10px 0;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.breadcrumb li{
	font-size:13px;
}

.breadcrumb li a{
	color:var(--body-color);
	font-weight:bold;
}

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

/* side menu */
.rightPanel .inner{
	background:var(--body-color);
  background: radial-gradient(circle at 100% 150%,var(--secondary-color),var(--primary-color));
  padding: 3rem 1.25rem;
}

.pageHeader{
  margin-bottom: 2rem;
}

.pageHeader .heading{
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  width: 100%;
}

.pageHeader .pageMenu li a{
	display:flex;
  align-items: center;
  justify-content: space-between;
	font-size:14px;
	padding:10px 0;
	color:rgb(255 255 255 / 40%);
	position:relative;
	z-index:1;
	border-left:0 solid var(--secondary-color);
	-webkit-transition:all 300ms ease-in-out;
	transition:all 300ms ease-in-out;
}

.pageHeader .pageMenu li a i{
  color: var(--secondary-color);
  transition: all 300ms ease-in-out;
}
.pageHeader .pageMenu li.active > a i{
  transform: rotate(180deg);
}

.pageHeader .pageMenu li a:hover, .pageHeader .pageMenu li.active > a{
	border-left-width: 4px;
	color:#fff;
  padding-left: 10px;
}

.pageHeader .pageMenu li.active > .page-dropmenu{
  display: block;
}

.page-dropmenu{
  display: none;
  padding: 0 15px;
}
.page-dropmenu li{
  margin-bottom: 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

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

.pageQuicklinks ul li a{
	display:flex;
  align-items: center;
	padding:5px;
  font-size: 14px;
  font-weight: 700;
	background:rgb(255 255 255 / 33%);
	color:#fff;
	-webkit-box-shadow:0 0 10px rgba(0, 0, 0, 0.29);
	box-shadow:0 0 10px rgba(0, 0, 0, 0.29);
	position:relative;
	z-index:1;
}

.pageQuicklinks ul li a::before{
	content:'';
	position:absolute;
	left:0;
	width:100%;
	height:100%;
  background-color: var(--secondary-color);
  clip-path: circle(0% at 50% 50%);
	transition:all 300ms linear;
	z-index:-1;
}

.pageQuicklinks ul li a:hover::before{
  clip-path: circle(100% at 50% 50%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 70%);
}

.pageQuicklinks ul li a .imgBox{
	width:50px;
}

.pageQuicklinks ul li a span{
	width:calc(100% - 50px);
}

.mainTextBodySection:not(:last-of-type){
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

/***** chairman/team *****/
.profile-img{
  width: fit-content;
  text-align: center;
  margin-bottom: 1rem;
}
.profile-img img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.profile-img small{
  font-weight: 700;
}
/***** chairman/team *****/

/* -----Accordion----- */
.accordion-wrapper .card-header{
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.accordionBtn{
  width: 100%;
  padding: 10px 20px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0;
}

.accordionBtn:hover{
  color: #fff;
}
.accordionBtn.collapsed{
  color: var(--primary-color);
  background-color: transparent;
}

.accordionBtn i{
  transition: all 300ms ease-in-out;
  transform: rotate(225deg);
  color: var(--secondary-color);
}

.accordionBtn.collapsed i{
  transform: rotate(0deg);
}

.accordion-wrapper .card-body{
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
/* -----Accordion----- */

/* infrastructure page */
.icons-with-content .inner{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgb(0 0 0 / 10%);
}
.icons-with-content .inner .img-fluid{
  max-width: 60px;
}
.icons-with-content .inner p{
  padding-left: 1rem;
  border-left: 1px solid rgb(0 0 0 / 10%);
}
/* infrastructure page */
/* smart class page */
.side-img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
}
/* smart class page */
/* Inside page */

.form-group {
  margin-bottom: 20px;
}

.form-group>div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background: none;
  outline: none;
  padding-left: 0;
  padding-top: 0;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark{
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark{
  background-color: var(--primary-color);
}

.form-control.form-control-dark::placeholder{
  color: #8f8f8f;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}
/* Contact */

/* customize modal */
.modal-backdrop.show{
  opacity: 1;
  background: rgb(0 0 0 / 90%);
  background: linear-gradient(-42deg, rgb(153 19 19 / 90%), rgb(35 66 96 / 95%));
  backdrop-filter: blur(5px);
}
/* customize modal */

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

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

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

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

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

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut{
  transform: scale(0);
  transition: all .8s ease-in-out;
}

.zoomIn{
  transform: scale(1);
}
/*transformation Animation*/

.list {
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}
.list li::marker{
  color: var(--primary-color);
}


.gallery-box
{
    border: 1px solid #ccc;
    background: #f3f3f3;	
}
.gallery-box img
{
    height: 180px;
    object-fit: cover;	
}
.gallery-box p
{
  color: #000000;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.2;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    font-size: 14px;

}

.youtubepage .iconBox.iconBox-dark .inner {
    color: var(--body-color);
    background-color: var(--light);
    width: 100%;
    height: 100%;
}
.newsBox .img-fluid img
{
	height:150px;
    object-fit: cover;
}