/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --normal-text-color:#343434;
  --sub-title-color:#00CEAE;
  --main-title-color:#094230;
  --main-white:#fff;
  --section-bg:#F5F8FA;
}

body{
  font-family: 'Manrope', sans-serif;
  background-color: var(--section-bg);
  scroll-behavior: smooth;
}

p{
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
}

h1,h2,h3,h4,h5,h6{
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
}

section{
  padding: 100px 0px;
}

@media(max-width:480px){
  section{
    padding: 50px 0px;
  }
}

.owl-dots button span {
position: relative;
display: inline-block;
width: 15px !important;
height: 15px !important;
margin-right: 5px;
padding: 0;
cursor: pointer;
}

.owl-dots button span{
font-size: 0;
line-height: 0;
display: block;
width: 15px !important;
height: 15px !important;
border-radius: 50%;
padding: 5px;
cursor: pointer;
outline: none;
background: transparent !important;
border: 2px solid var(--sub-title-color);
}

.owl-dots .owl-dot.active span {
background: var(--sub-title-color) !important;
}

.owl-dots button:before {
content: '';
}

.slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots li button {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  outline: none;
  background: transparent !important;
  border: 2px solid var(--sub-title-color);
}

.slick-dots .slick-active button {
background: var(--sub-title-color) !important;
}

.slick-dots li::marker {
content: '';
}

@media(max-width:990px){
.slick-initialized .slick-slide{
  margin: 0px 20px;
}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.border-button{
  list-style: none;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  border-radius: 25px;
  text-decoration: none;
  color: var(--sub-title-color);
  border: 1px solid var(--sub-title-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.border-button:hover{
  color: var(--sub-title-color);
}

.border-button:before{
  display: inline-block;
  content:"\002B";
}

.border-button li a{
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  border-radius: 25px;
  text-decoration: none;
  color: var(--sub-title-color);
  border: 1px solid var(--sub-title-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.border-button li a:hover{
  color: var(--sub-title-color);
}

.border-button li a:before{
  display: inline-block;
  content:"\002B";
}

#menu-read-more-about-us,
#menu-meet-our-team,
#menu-join-our-team{
  border: none;
  padding: 0;
}

#menu-read-more-about-us:before,
#menu-meet-our-team:before,
#menu-join-our-team:before{
  display: none;
}

#menu-meet-our-team{
  display: flex;
  justify-content: center;
  display: -webkit-flex;
-webkit-justify-content: center;
}

.about #menu-read-more-about-us-1{
  border: none;
  padding: 0px;
}

.about #menu-read-more-about-us-1:before{
  display: none;
}


.filled-button{
padding: 5px 15px;
font-size: 16px;
font-weight: 700;
font-family: 'Manrope', sans-serif;
border-radius: 4px;
text-decoration: none;
color: #fff;
background: var(--sub-title-color);
border: 1px solid var(--sub-title-color);
cursor: pointer;
display: inline-flex;
align-items: center;
text-transform: uppercase;
letter-spacing: 2px;
}


/*--------------------------------------------------------------
# Titles
--------------------------------------------------------------*/
.sub-title{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-title-color);
}

.main-title{
  text-transform: capitalize;
  color: var(--main-white);
  font-size: 62px;
  font-weight: 700;
}

.section-main-title{
  font-size: 36px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--sub-title-color);
}

.small-section-main-title{
  font-size: 24px;
  font-weight: 700;
  /* line-height: 70px; */
  font-family: 'Manrope', sans-serif;
  color: var(--sub-title-color);
}

.section-description{
  color: var(--normal-text-color);
  font-size: 18px;
}

@media(max-width:480px){
.section-main-title{
  font-size: 34px;
  line-height: normal;
}
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header{
  background: #fff;
  transition: all 0.5s;
  z-index: 11;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 21%);
  /* position: sticky; */
}

header nav{
filter: drop-shadow(0px 0px 2px rgb(0 0 0 / 21%));
}

header .navbar-toggler,
header .navbar-toggler:focus{
border: none;
border-color: transparent;
}

.navbar ul li:after {
display:block;
content: '';
border-bottom: solid 5px var(--sub-title-color);  
transform: scaleY(0);  
transition: transform 500ms ease-in-out;
text-align: center;
position: relative;
bottom: 0;
top: 65%;
}

.navbar ul li:hover:after { transform: scaleY(1); }

.navbar .current-menu-item:after{
display:block;
content: '';
border-bottom: solid 5px var(--sub-title-color);  
transform: scaleY(1);  
transition: transform 500ms ease-in-out;
text-align: center;
position: relative;
bottom: 0;
top: 65%;
}

.navbar ul li .sub-menu li:after{
border-bottom:none !important;
}

.navbar ul li a { 
display:inline-block; 
margin:0;
text-transform:uppercase; 
}

.navbar ul li a:focus{
background: #fff;
}


.nav-item.active{
display:block;
content: '';
border-bottom: solid 3px var(--btn-bg);  
transition: transform 500ms ease-in-out;
text-align: center;
}

.navbar-brand.nav-item.active{
display:block;
content: '';
border-bottom: solid 0px var(--btn-bg);  
transition: transform 500ms ease-in-out;
text-align: center;
}

.nav-link.dropdown-toggle:after{
content: none;
}

.navbar ul li a{
text-transform: capitalize;
color: var(--normal-text-color) !important;
font-weight: 500;
}

.navbar ul li .dropdown-menu{
border: none;
}

/* .navbar .nav-link.contact{
border: 1px solid var(--btn-border);
padding: 5px 15px;
} */

.navbar .dropdown-toggle::after{
color: var(--normal-text-color);
}

.navbar .navbar-collapse .navbar-nav li{ 
/* gap: 30px; */
margin-right: 30px;
}

.navbar .bi-list{
font-size: 40px;
color: var(--normal-text-color);
}

.nav-item.topbar-social-links{
display: none;
}

/*Styling Hamburger Icon*/

.hamburger div{
width: 30px;
height: 3px;
background-color: var(--normal-text-color);
display: block;
margin: 8px auto;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.hamburger[aria-expanded="true"] .line2{
opacity: 0;
}

.hamburger[aria-expanded="true"] .line1{
transform-origin: top left;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .line3{
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
transform-origin: bottom left;
}

header .menu{
display: flex;
margin-bottom: 0;
}

header .menu li{
list-style: none;
margin:0px 30px;
}

header .menu li a{
text-decoration: none;
display: flex;
}

header .navbar-collapse{
flex-grow: inherit;
}

header .menu .sub-menu{
  display: block;
  position: absolute;
  /* left: 14px; */
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  /* box-shadow: 0px 0px 30px rgb(127 137 161 / 25%); */
  transition: 0.3s;
}

header .menu .sub-menu li{
padding-bottom: 20px;
}

header .menu li:hover>.sub-menu{
opacity: 1;
top: 100%;
visibility: visible;
}


.programmes-dropdown>a:nth-child(1):after{
content: url('../images/Dropdown.svg');
}

header .topbar-home-links{
margin: 0 !important;
display: none;
}

header .topbar-home-links a{
text-decoration: none;
}

@media(max-width:992px){
  header .topbar-home-links{
      display:block;
  }
  header .menu{
    flex-direction: column;
    padding-left: 0;
  }
  header .menu li{
    margin: 30px 0px;
  }

  header .menu li:hover>.sub-menu{
    visibility: hidden;
    opacity: 0;
    top: 0;
  }
  
  header .sub-menu{
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
  }
  
  header .menu .sub-menu.dropdown-active{
    position: static;
    display: block;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1 !important;
    visibility: visible !important;
    background: #fff;
  }
  
  .navbar ul li:after,.nav-item.active,.navbar .current-menu-item:after {
    border-bottom: none;
    text-align: start;
  }
  .nav-item.topbar-social-links{
    display: block;
  }
  .navbar .navbar-collapse .navbar-nav{
    gap: 0px;
  }
  .navbar .nav-link.contact{
    border: none;
    padding: 5px 0;
  }
  .navbar ul li a{
    font-size: 24px;
  }
  .navbar ul li a:after{
    content: none;
  }
  .navbar .bi-list{
    font-size: 20px;
  }
  .navbar-collapse{
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    padding: 50px 30px;
    width: 100%;
    background: #fff;
    transform: translateX(100%);
  }
  .navbar-collapse.show{
    transform: translateX(0);
    transition: all 0.2s ease;
    overflow-y: scroll;
  }
  .navbar-toggler{
    z-index: 1;
  }
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner{
  position: relative;
  height: 100vh;
  min-height: 100vh;
  background-color: var(--main-title-color);
}

.banner-content-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.banner .banner-wave-img{
  position: absolute;
  bottom: -1px;
  top: auto;
  left: 0;
  right: 0;
  width: -webkit-fill-available;
}

.home-banner-row{
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.banner .banner-text-col .banner-main-title{
  color: var(--sub-title-color);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.banner .banner-text-col .banner-sub-title{
  color: var(--main-white);
  font-weight: 700;
  text-transform: capitalize;
}

.banner-image-col{
  transform-style: preserve-3d;
  backface-visibility: hidden;
  position: relative;
  pointer-events: none;

  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;

}

.banner-image-col img:nth-child(1){
  position: relative;
  transition: transform 0.5s ease-out;
  backface-visibility: hidden;
  display: block;
  left: 0px;
  top: 0px;
}

.banner-image-col img:nth-child(2){
  position: inherit;
  left: -40px;
  top: 0px;
  transition: transform 0.5s ease-out;

  backface-visibility: hidden;
  display: block;
}

@media(max-width:482px){

  .banner-image-col img:nth-child(1){
    width: 48% !important;
  }

  .banner-image-col img:nth-child(2){
    position: inherit;
    left: -6% !important;
    width: 40% !important;
  }
}

@media(max-width:992px){
  .banner-text-col{
    order: 2;
  }

  /* .banner-content-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */

  .banner-image-col{
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 20px;
  }

  .banner-image-col img:nth-child(1){
    width: 60%;
  }

  .banner-image-col img:nth-child(2){
    left: -6%;
    right: 0;
    width: 45%;
  }
}




/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about{
  background-color: var(--section-bg);
}

.about .section-main-title{
  margin-bottom: 20px;
  text-transform: capitalize;
}

.about .section-description{
  font-size: 18px;
}

.about  .count-col{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.about  .count-col img{
position: relative;
}

.about  .count-col .row{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.about .count{
color: var(--main-title-color);
font-weight: 700;
font-size: 48px;
padding-top: 20px;
}

.about .count-desc{
color: var(--normal-text-color);
text-transform: capitalize;
font-weight: 700;
font-size: 18px;
padding-bottom: 20px;
}

.about .update-title-content{
display: flex;
justify-content: space-between;
display: -webkit-flex;
-webkit-justify-content: space-between;
}

@media(max-width:992px){
.about .count-col img{
  display: none;
}

.about  .count-col .row{
  position: relative;
  top: auto;
  left: auto;
  transform: translate(0, 0);
}

.about .border-btn{
  display: none;
}

.about .card .card-body .count{
  font-size: 28px;
}

}

@media (max-width: 480px){
.about .border-btn {
  padding: 3px 5px;
  font-size: 12px;
}

.about .card .card-body .count-desc{
  font-size: 12px;
}
}


/*--------------------------------------------------------------
# Values section
--------------------------------------------------------------*/

.values{
  background: linear-gradient(to bottom, var(--main-title-color) 60%, var(--section-bg) 40%);
  position: relative; 
}

.values .top-border-img{
  position: absolute;
  top: -1px;
  bottom: auto;
  left: 0;
  right: 0;
  transform: rotate(180deg);
  width: -webkit-fill-available;
}

.values .bottom-border-img{
  position: absolute;
  top: 59%;
  bottom: auto;
  left: 0;
  right: 0;
  width: -webkit-fill-available;
}

.values .section-main-title{
  color: var(--sub-title-color);
  text-transform: capitalize;
  text-align: center;
}

.values .card-section{
  background: #fff;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 70px;
  border-radius: 25px;
  margin-top: 50px;
  position: relative;
}

.values .card-section .col-lg-6:nth-child(1){
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.values .card-section img{
  border-radius: 25px;
  min-height: 30vh;
  max-height: 30vh;
}

.values .card-section .sub-title{
  text-align: start;
  font-size: 21px;
}

.values .card-section .section-description{
  text-align: start;
  margin-bottom: 40px;
  font-size: 18px;
}

/* .values .card-section .vision-mission{
padding-top: 25px;
padding-bottom: 25px;
} */

.mob-values-img{
  display: none;
}

@media(max-width:480px){
  .values .bottom-border-img {
    top: 60%;
  }
}

@media(max-width:768px){
  .mob-values-img{
    display: block;
  }

  .values .card-section img{
    display: none;
  }

  .values .card-section{
    padding-top: 30px;
  }
}


/*--------------------------------------------------------------
# Offer section
--------------------------------------------------------------*/
.offer .section-main-title{
  text-transform: capitalize;
}

.offer .card {
  background-color: transparent;
  border: none;
}

.team-card-sec .card{
  background-color: #fff;
  border: none;
  border-radius: 25px;
}

.offer .card .small-section-main-title{
  margin: 10px 0px;
  /* line-height: 45px; */
  text-transform: capitalize;
}

.offer .card .card-image-wrapper{
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 150px;
  position: relative;
}

.team-card-sec .card .card-image-wrapper{
        height:300px;
    }

.offer .card .card-image-wrapper img{
  /* display: block;
  width: 100%;
  max-height: 100%; */
  position: absolute;
  width: 100%;
  height: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.offer .card .card-title {
  color: var(--main-title-color);
  /* height: 100%; */
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

@media(max-width:576px){
    .team-card-sec .card .card-image-wrapper{
        height:260px;
    }
}


/*--------------------------------------------------------------
# Why choose us
--------------------------------------------------------------*/
#whyUs{
  margin-top: 0px;
  position: relative;
}

#whyUs .content-col{
  position: absolute;
  left: 30%;
  right: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.whyUs-container{
  padding-bottom: 84px;
  padding-top: 84px;
  position: relative;
}

#whyUs .whyUs-content-container{
  background-color: transparent;
  color: var(--normal-text-color);
  /* padding: 50px 32px; */
}

#whyUs .small-section-main-title{
  border-bottom: 2px solid var(--sub-title-color);
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
}

#whyUs .small-section-main-title::first-letter{
  text-transform: capitalize;
}


#whyUs .whyUs-content{
  font-size: 18px;
  margin-bottom: 20px;
}

.author-name{
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.author-desc{
  font-size: 16px;
  text-transform: capitalize;
}

.whyUsSwiper-wrapper .owl-nav{
  display: none;
}

.whyUsSwiper-wrapper .owl-dots{
  position: absolute;
  bottom: 10%;
  top: auto;
  left: 0;
  right: auto;
}

.whyUsSwiper-wrapper .owl-item:not(.active){
  opacity: 0 !important;
}

@media(min-width:992px){
  #whyUs .content-col{
    background-image: none !important;
  }
}

@media(min-width:1200px) and (max-width:1350px){
.whyUsSwiper-wrapper .owl-dots{
  left: 43vw;
  bottom: 0;
  top: 75%;
}

}

@media(max-width:992px){
#whyUs .right-col{
  display: none;
}  

#whyUs .content-col{
    background-image: block !important;
  }

.whyUs-container{
  padding-top: 0;
}

#whyUs .content-col {
  position: relative;
  left: 0;
  top: auto;
  right: auto;
  bottom: 0;
}

.whyUsSwiper-wrapper .owl-dots {
  top: auto;
  left: 0;
  right: 0;
}
}

@media(max-width:480px){
#whyUs .content-col {
  position: relative;
  left: 0;
  top: auto;
  right: auto;
  bottom: -30%;
}
}



/*--------------------------------------------------------------
# Partners section section
--------------------------------------------------------------*/

.clients .section-main-title{
  text-transform: capitalize;
}

.client-content{
  position: relative;
}

.clients .grid-container{
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.clients-content-img-container{
  overflow: hidden;
  min-height: 100%;
  height: 120px;
  position: relative;
  border-radius: 15px;
}

.clients-content-img-container img{
  width: 100%;
  height: 100%;
  transition: 0.5s;
  object-fit: contain;
  display: block;
  position: absolute; 
}

.clients-content-img-container img:hover{
  transform: scale(1.1);
}

.clients .service-content p{
  position: absolute;
  bottom: 10%;
  left: 2%;
  color: #fff;
} 

.clients .service-content p i{
  color: var(--btn-bg);
}

.clients .view-all{
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  margin-top: 30px;
}

.clients .view-all a{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center; 
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

/*--------------------------------------------------------------
# news-update section
--------------------------------------------------------------*/
.news-update .section-main-title{
  text-transform: capitalize;
}

.news-update .card {
  border: none;
  border-radius: 25px;
}

.news-update .card .small-section-main-title{
  margin: 10px 0px;
  text-transform: capitalize;
}

.news-update .card .card-image-wrapper{
  display: flex;
  width: 100%;
  height: 250px;
}

.news-update .card .card-image-wrapper img{
  display: block;
  width: 100%;
  max-height: 100%;
  /* margin: auto; */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.news-update .card .sub-title{
  font-size: 14px;
}

.news-update .card .card-desc{
  display: none;
}

.news-update .card p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: start;
  padding: 0px 20px;
  margin-bottom: 20px;
}

@media(max-width:990px){
  .news-update .slick-slide{
    margin: 0px 15px;
  }
}

/*--------------------------------------------------------------
# team section
--------------------------------------------------------------*/

.team .section-main-title{
  text-transform: capitalize;
}

/* .team .avatar img{
  height: 200px;
  width: 200px;
  object-fit: cover;
  position: relative;
} */

.team .avatar{
  position: relative;
  width: 10vw;
  height: 10vw;
  overflow: hidden;
  border-radius: 50%;
}

.team .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team .avatar:nth-child(3){
  position: relative;
  width: 15vw;
  height: 15vw;
  overflow: hidden;
  border-radius: 50%;
}

.team .avatar:nth-child(3) img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team .avatar:nth-child(1){
  z-index: -2;
  /* transform: translateX(20px); */
}
.team .avatar:nth-child(2){
  z-index: -1;
  /* transform: translateX(10px); */
}

.team .avatar:nth-child(4){
  z-index: -1;
  /* transform: translateX(-20px); */
}
.team .avatar:nth-child(5){
  z-index: -2;
  /* transform: translateX(-30px); */
}

@media(max-width:480px){
  .team .avatar{
    width: 15vw;
    height: 15vw;
  }

  .team .avatar:nth-child(3){
    width: 30vw;
    height: 30vw;
  }
  
}

@media(max-width:768px){
  .team .avatar{
    width: 15vw;
    height: 15vw;
  }

  .team .avatar:nth-child(3){
    width: 30vw;
    height: 30vw;
  }
  
}


/*--------------------------------------------------------------
# Footer top
--------------------------------------------------------------*/

.footer-top-section{
  margin-top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-top-section-text-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  text-align: center;
}

.footer-top-section-text-container h2{
  color: #fff;
}

.footer-top-buttons{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:992px){
.footer-top-section-text-container h2 {
  font-size: 46px;
}

.footer-top-buttons{
  flex-direction: column;
}

.footer-top-buttons .border-button:nth-child(1){
  margin-bottom: 30px;
}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
main{
  position: relative;
  z-index: 10;
  min-height: 100vh;
  background: var(--section-bg);
}
#footer {
  font-size: 14px;
  background: var(--main-white);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  height: auto;
}

#footer .footer-top {
  padding-top:60px;
  font-size: 18px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact .logo{
  /*position: relative;*/
  /*height: 30vh;*/
  /*width: 100%;*/
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
}

#footer .footer-top .footer-contact .logo img{
  /*position: absolute;*/
  /*width: 100%;*/
  /*height: 100%;*/
  height:200px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: bold;
  font-family: UniNeueBold;
}

#footer .footer-top .footer-contact p {
  font-size: 18px;
  /* line-height: 30px; */
  margin-bottom: 0;
  font-family: 'Exo 2', sans-serif;
  color: var(--main-title-color);
}

#footer .footer-top h4 {
  color: var(--main-title-color);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links p{
  color: var(--sub-title-color);
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 14px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--main-title-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--main-title-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--main-title-color);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--main-title-color);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--main-title-color);
  color: var(--main-title-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--main-title-color);
  color: var(--main-title-color);
  text-decoration: none;
}

#footer .copyright{
  color: var(--main-title-color);
  opacity: 0.3;
}

#footer .bottom-links ul{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#footer .bottom-links ul li{
  list-style: none;
}

#footer .bottom-links ul li a{
  text-decoration: none;
  color: var(--main-title-color);
}

#footer .social-links{
  display: none;
}

@media(max-width:992px){
  #footer .footer-top .footer-contact .logo{
    height: 28vh;
  }
  #footer .footer-top .footer-contact .logo img{
      height:110px;
  }
#footer .copyright{
  margin-bottom: 20px;
}
#footer .bottom-links ul{
  padding-left: 0px;
}

#footer .social-links{
  display: block;
}

#footer .services-links,
#footer .company-links,
#footer .contact-links{
  display: none;
}

#footer .social-links a {
  background: transparent;
}

#footer .social-links a:hover{
  background: transparent;
}
}



/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

#about-banner{
  background-color: transparent;
  height: 50vh !important;
  min-height: 50vh !important;
  padding: 0px;
  position: relative;
}

#about-banner img:nth-child(1){
  position: relative;
}

#about-banner img:nth-child(2){
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 10%;
  width: -webkit-fill-available;
}

.about-count-row .count{
  font-weight: 700;
  color: var(--sub-title-color);
}

.about-count-row .count-desc{
  font-weight: 700;
}

.member .member-name{
  font-size: 24px;
  font-weight: 700;
  color: var(--main-title-color);
  text-transform: capitalize;
}

.member .member-designation{
  font-size: 14px;
  font-weight: 700;
  color: var(--sub-title-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
}

/* .member img{
  object-fit: cover !important;
} */


@media(max-width:992px){
  #about-banner{
    height: auto !important;
    min-height: auto !important;
  }

  #about-banner img:nth-child(2){
    bottom: -1px;
  }
}

@media(min-width:1360px){
  #about-banner img:nth-child(2){
    bottom: -10px;
  }
}


/*--------------------------------------------------------------
# Programme Page
--------------------------------------------------------------*/

.event-card .date{
font-size: 14px;
font-weight: 700;
color: var(--sub-title-color); 
margin-top: 20px; 
}

.event-card .event-title{
font-size: 24px;
font-weight: 700;
color: var(--main-title-color);
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-form-section .contact-title{
font-size: 36px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--sub-title-color);
}

.contact-form-section .section-description{
font-size: 21px;
color: var(--normal-text-color);
}

.contact-form-section .phone-number,
.contact-form-section .email{
  font-size: 18px;
  font-weight: 700;
  color: var(--normal-text-color);
  text-decoration: none;
}

.contact-form-section .address-title{
font-size: 14px;
font-weight: 700;
color: var(--sub-title-color);
text-transform: uppercase;
letter-spacing: 2px;
}

.contact-form{
/* display: flex;
flex-direction: column; */
background: #fff;
padding: 50px;
border-radius: 10px;
}

.contact-form .form-title{
font-size: 21px;
font-weight: 700;
color: var(--normal-text-color);
margin-bottom: 20px;
}

.contact-form input{
margin-bottom: 20px;
border: 1px solid lightgray;
padding: 5px 10px;
width: 100%;
}

.contact-form textarea{
margin-bottom: 20px;
border: 1px solid lightgray;
padding: 5px 10px;
width: 100%;
}

.contact-form .self-declaration{
font-size: 12px;
color: var(--normal-text-color);
margin-top: 20px;
}

.careers-title{
text-transform: uppercase;
letter-spacing: 2px;
font-size: 16px;
font-weight: 700;
color: var(--sub-title-color);
}



/*--------------------------------------------------------------
# Single Update Page
--------------------------------------------------------------*/

.single-update-page .section-sub-title{
  color: var(--sub-title-color);
  font-weight: 700;
}

.single-update-page .section-main-title{
  text-transform: capitalize;
}

.single-update-page .detail-section{
  border-right: 1px solid var(--main-title-color);
}

.single-update-page .related-articles .section-description{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 700;
}

.single-update-page .related-articles a:nth-child(1){
  text-decoration: none;
}

@media(max-width:992px){
  .single-update-page .detail-section{
    border-right: none;
  }
  
  .related-articles-column.section-sub-title{
    margin-top: 30px;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/  
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;

  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  transform: translateY(0);
  transition: transform 1s ease;
}

#status {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

#preloader-overlay{
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255, 255, 255,0.7);
  transform: translateY(0%);
  transition: transform 0.5s;
  z-index: 2;
}

#preloader img{
  max-height: 60px;
  height: 60px;
  z-index: 1;
}

/* fade animation */
.fade{
  opacity: 0;
}

/* iqraa logo */
.iqraa-logo-container{
  background-color: #fff;
  height: 70px;
  position: relative;
  width: 30%;
  border-radius: 25px;
  margin-top: 20px;
}

.iqraa-logo-container img{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 10px 14px;
  object-fit: contain;
}

@media(max-width:480px){
  .iqraa-logo-container{
    width: 40%;
  }
}

@media(max-width:992px){
  .iqraa-logo-container{
    height: 43px;
  }
}